Commit 711505f0 authored by Manish Pandey's avatar Manish Pandey Committed by TrustedFirmware Code Review
Browse files

Merge changes from topic "imx8mp_fix" into integration

* changes:
  plat: imx8mp: change the bl31 physical load address
  plat: imx8m: Fix the macro define error
parents dd6efc9e 7f9390d3
......@@ -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 {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment