Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Arm Trusted Firmware
Commits
422a40d9
Commit
422a40d9
authored
8 years ago
by
danh-arm
Committed by
GitHub
8 years ago
Browse files
Options
Download
Plain Diff
Merge pull request #670 from achingupta/ag/psci_retention_fix
Fix use of stale power states in PSCI standby finisher
parents
fabd0a86
61eae524
master
v2.5
v2.5-rc1
v2.5-rc0
v2.4
v2.4-rc2
v2.4-rc1
v2.4-rc0
v2.3
v2.3-rc2
v2.3-rc1
v2.3-rc0
v2.2
v2.2-rc2
v2.2-rc1
v2.2-rc0
v2.1
v2.1-rc1
v2.1-rc0
v2.0
v2.0-rc0
v1.6
v1.6-rc1
v1.6-rc0
v1.5
v1.5-rc3
v1.5-rc2
v1.5-rc1
v1.5-rc0
v1.4
v1.4-rc0
v1.3
v1.3_rc2
v1.3_rc1
v1.3-rc0
arm_cca_v0.2
arm_cca_v0.1
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
lib/psci/psci_common.c
+2
-2
lib/psci/psci_common.c
lib/psci/psci_private.h
+2
-0
lib/psci/psci_private.h
lib/psci/psci_suspend.c
+11
-3
lib/psci/psci_suspend.c
with
15 additions
and
5 deletions
+15
-5
lib/psci/psci_common.c
View file @
422a40d9
...
...
@@ -252,8 +252,8 @@ static plat_local_state_t *psci_get_req_local_pwr_states(unsigned int pwrlvl,
* function will be called after a cpu is powered on to find the local state
* each power domain has emerged from.
*****************************************************************************/
static
void
psci_get_target_local_pwr_states
(
unsigned
int
end_pwrlvl
,
psci_power_state_t
*
target_state
)
void
psci_get_target_local_pwr_states
(
unsigned
int
end_pwrlvl
,
psci_power_state_t
*
target_state
)
{
unsigned
int
parent_idx
,
lvl
;
plat_local_state_t
*
pd_state
=
target_state
->
pwr_domain_state
;
...
...
This diff is collapsed.
Click to expand it.
lib/psci/psci_private.h
View file @
422a40d9
...
...
@@ -192,6 +192,8 @@ int psci_validate_power_state(unsigned int power_state,
void
psci_query_sys_suspend_pwrstate
(
psci_power_state_t
*
state_info
);
int
psci_validate_mpidr
(
u_register_t
mpidr
);
void
psci_init_req_local_pwr_states
(
void
);
void
psci_get_target_local_pwr_states
(
unsigned
int
end_pwrlvl
,
psci_power_state_t
*
target_state
);
int
psci_validate_entry_point
(
entry_point_info_t
*
ep
,
uintptr_t
entrypoint
,
u_register_t
context_id
);
void
psci_get_parent_pwr_domain_nodes
(
unsigned
int
cpu_idx
,
...
...
This diff is collapsed.
Click to expand it.
lib/psci/psci_suspend.c
View file @
422a40d9
...
...
@@ -45,17 +45,25 @@
* from standby/retention states at multiple power levels.
******************************************************************************/
static
void
psci_suspend_to_standby_finisher
(
unsigned
int
cpu_idx
,
psci_power_state_t
*
state_info
,
unsigned
int
end_pwrlvl
)
{
psci_power_state_t
state_info
;
psci_acquire_pwr_domain_locks
(
end_pwrlvl
,
cpu_idx
);
/*
* Find out which retention states this CPU has exited from until the
* 'end_pwrlvl'. The exit retention state could be deeper than the entry
* state as a result of state coordination amongst other CPUs post wfi.
*/
psci_get_target_local_pwr_states
(
end_pwrlvl
,
&
state_info
);
/*
* Plat. management: Allow the platform to do operations
* on waking up from retention.
*/
psci_plat_pm_ops
->
pwr_domain_suspend_finish
(
state_info
);
psci_plat_pm_ops
->
pwr_domain_suspend_finish
(
&
state_info
);
/*
* Set the requested and target state of this CPU and all the higher
...
...
@@ -222,7 +230,7 @@ exit:
* After we wake up from context retaining suspend, call the
* context retaining suspend finisher.
*/
psci_suspend_to_standby_finisher
(
idx
,
state_info
,
end_pwrlvl
);
psci_suspend_to_standby_finisher
(
idx
,
end_pwrlvl
);
}
/*******************************************************************************
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help