diff options
author | Hou Zhiqiang <Zhiqiang.Hou@nxp.com> | 2016-07-29 19:26:34 +0800 |
---|---|---|
committer | York Sun <york.sun@nxp.com> | 2016-08-02 09:51:29 -0700 |
commit | ab01ef5fa617444fd95543ee04ea53ccda273269 (patch) | |
tree | ab8ce4218c177dc843ec0e43f61c9cd332cb1d4f /include/configs/ls1043ardb.h | |
parent | bded21895d4e58e7770579fc5d7905ec34cc06a9 (diff) | |
download | u-boot-ab01ef5fa617444fd95543ee04ea53ccda273269.tar.gz |
ARMv8/fsl-ppa: Consolidate PPA image stored-media flag for XIP
The PPA binary may be stored on QSPI flash instead of NOR.
So, deprecated CONFIG_SYS_LS_PPA_FW_IN_NOR in favour of
CONFIG_SYS_LS_PPA_FW_IN_XIP to prevent fragmentation of code
by addition of a new QSPI specific flag.
Signed-off-by: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
Signed-off-by: Abhimanyu Saini <abhimanyu.saini@nxp.com>
Reviewed-by: York Sun <york.sun@nxp.com>
Diffstat (limited to 'include/configs/ls1043ardb.h')
-rw-r--r-- | include/configs/ls1043ardb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/configs/ls1043ardb.h b/include/configs/ls1043ardb.h index 44f86fabd5..857ad7b6cc 100644 --- a/include/configs/ls1043ardb.h +++ b/include/configs/ls1043ardb.h @@ -14,8 +14,8 @@ #define SEC_FIRMWARE_ERET_ADDR_REVERT #define CONFIG_ARMV8_PSCI -#define CONFIG_SYS_LS_PPA_FW_IN_NOR -#ifdef CONFIG_SYS_LS_PPA_FW_IN_NOR +#define CONFIG_SYS_LS_PPA_FW_IN_XIP +#ifdef CONFIG_SYS_LS_PPA_FW_IN_XIP #define CONFIG_SYS_LS_PPA_FW_ADDR 0x60500000 #endif #endif |