diff options
author | Hou Zhiqiang <Zhiqiang.Hou@nxp.com> | 2016-06-28 20:18:17 +0800 |
---|---|---|
committer | York Sun <york.sun@nxp.com> | 2016-07-19 11:34:26 -0700 |
commit | 0e68a3694d1f33c69be7d1cec5a4261aa1d3d01d (patch) | |
tree | 57623366c6747ec1f0a7f40aed34b9397a070d93 /board/freescale/ls1043ardb | |
parent | 45684ae37bf96b455a1d4a957b80551dc2c85959 (diff) | |
download | u-boot-imx-0e68a3694d1f33c69be7d1cec5a4261aa1d3d01d.zip u-boot-imx-0e68a3694d1f33c69be7d1cec5a4261aa1d3d01d.tar.gz u-boot-imx-0e68a3694d1f33c69be7d1cec5a4261aa1d3d01d.tar.bz2 |
ARMv8/ls1043ardb: Integrate FSL PPA
The PPA use PSCI to make secondary cores bootup. So when PPA was
enabled, add the CONFIG_ARMV8_PSCI to identify the SMP boot-method
between PSCI and spin-table.
Signed-off-by: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
Reviewed-by: York Sun <york.sun@nxp.com>
Diffstat (limited to 'board/freescale/ls1043ardb')
-rw-r--r-- | board/freescale/ls1043ardb/ls1043ardb.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/board/freescale/ls1043ardb/ls1043ardb.c b/board/freescale/ls1043ardb/ls1043ardb.c index 1436520..d3e37b4 100644 --- a/board/freescale/ls1043ardb/ls1043ardb.c +++ b/board/freescale/ls1043ardb/ls1043ardb.c @@ -24,7 +24,9 @@ #ifdef CONFIG_U_QE #include <fsl_qe.h> #endif - +#ifdef CONFIG_FSL_LS_PPA +#include <asm/arch/ppa.h> +#endif DECLARE_GLOBAL_DATA_PTR; @@ -92,6 +94,10 @@ int board_init(void) enable_layerscape_ns_access(); #endif +#ifdef CONFIG_FSL_LS_PPA + ppa_init(); +#endif + #ifdef CONFIG_U_QE u_qe_init(); #endif |