mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-27 15:24:54 +00:00
Merge "feat(imx8m): make psci common code pie compatible" into integration
This commit is contained in:
commit
8f93151aac
1 changed files with 2 additions and 2 deletions
|
@ -40,7 +40,7 @@ int imx_validate_ns_entrypoint(uintptr_t ns_entrypoint)
|
|||
int imx_pwr_domain_on(u_register_t mpidr)
|
||||
{
|
||||
unsigned int core_id;
|
||||
uint64_t base_addr = BL31_BASE;
|
||||
uint64_t base_addr = BL31_START;
|
||||
|
||||
core_id = MPIDR_AFFLVL0_VAL(mpidr);
|
||||
|
||||
|
@ -102,7 +102,7 @@ void imx_cpu_standby(plat_local_state_t cpu_state)
|
|||
|
||||
void imx_domain_suspend(const psci_power_state_t *target_state)
|
||||
{
|
||||
uint64_t base_addr = BL31_BASE;
|
||||
uint64_t base_addr = BL31_START;
|
||||
uint64_t mpidr = read_mpidr_el1();
|
||||
unsigned int core_id = MPIDR_AFFLVL0_VAL(mpidr);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue