diff options
author | Udit Agarwal <udit.agarwal@nxp.com> | 2017-08-16 07:13:29 -0400 |
---|---|---|
committer | York Sun <york.sun@nxp.com> | 2017-09-11 07:55:36 -0700 |
commit | 15e7c681e171a761609bbf1571dc81486ba783af (patch) | |
tree | c020ef3476169f475e0e86a5a9f6c0ed571f0a08 /board/freescale/ls2080aqds/ls2080aqds.c | |
parent | 06fb06f66c57912b53bda9fd1772d5d069433cbd (diff) |
LS2080ARDB: QSPI boot: Secure Boot image validation
Adds header address for PPA to be validated during ESBC phase for
ARCH_LS2088 and QSPI_BOOT. Moves sec_init prior to ppa_init(). It
must be initialized before the PPA.
Signed-off-by: Udit Agarwal <udit.agarwal@nxp.com>
[YS: revised commit message]
Reviewed-by: York Sun <york.sun@nxp.com>
Diffstat (limited to 'board/freescale/ls2080aqds/ls2080aqds.c')
-rw-r--r-- | board/freescale/ls2080aqds/ls2080aqds.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/board/freescale/ls2080aqds/ls2080aqds.c b/board/freescale/ls2080aqds/ls2080aqds.c index 83773d0af5..1842d14e87 100644 --- a/board/freescale/ls2080aqds/ls2080aqds.c +++ b/board/freescale/ls2080aqds/ls2080aqds.c @@ -226,15 +226,14 @@ int board_init(void) #endif select_i2c_ch_pca9547(I2C_MUX_CH_DEFAULT); rtc_enable_32khz_output(); +#ifdef CONFIG_FSL_CAAM + sec_init(); +#endif #ifdef CONFIG_FSL_LS_PPA ppa_init(); #endif -#ifdef CONFIG_FSL_CAAM - sec_init(); -#endif - return 0; } |