mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 01:54:22 +00:00
Merge changes from topic "imx8mp_fix" into integration
* changes: plat: imx8mp: change the bl31 physical load address plat: imx8m: Fix the macro define error
This commit is contained in:
commit
711505f045
2 changed files with 4 additions and 4 deletions
|
@ -34,8 +34,8 @@
|
|||
#define PLAT_WAIT_RET_STATE U(1)
|
||||
#define PLAT_STOP_OFF_STATE U(3)
|
||||
|
||||
#define BL31_BASE U(0x960000)
|
||||
#define BL31_LIMIT U(0x980000)
|
||||
#define BL31_BASE U(0x970000)
|
||||
#define BL31_LIMIT U(0x990000)
|
||||
|
||||
/* non-secure uboot base */
|
||||
#define PLAT_NS_IMAGE_OFFSET U(0x40200000)
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
.pwr_req = name##_PWR_REQ, \
|
||||
.pgc_offset = name##_PGC, \
|
||||
.need_sync = false, \
|
||||
.always_on = true, \
|
||||
.always_on = (on), \
|
||||
}
|
||||
|
||||
#define IMX_MIX_DOMAIN(name, on) \
|
||||
|
@ -42,7 +42,7 @@
|
|||
.adb400_sync = name##_ADB400_SYNC, \
|
||||
.adb400_ack = name##_ADB400_ACK, \
|
||||
.need_sync = true, \
|
||||
.always_on = true, \
|
||||
.always_on = (on), \
|
||||
}
|
||||
|
||||
struct imx_pwr_domain {
|
||||
|
|
Loading…
Add table
Reference in a new issue