diff options
author | Ye Li <ye.li@nxp.com> | 2016-03-10 17:18:57 +0800 |
---|---|---|
committer | Ye Li <ye.li@nxp.com> | 2016-03-25 16:01:45 +0800 |
commit | f66842f79d4e33ace45762466eed23a86d367642 (patch) | |
tree | ef2886bedf4e87462e3fa841d4e57912ee5007e2 /arch | |
parent | 43fe988af28c5e51fb23aa846e04bc9698256926 (diff) | |
download | u-boot-imx-f66842f79d4e33ace45762466eed23a86d367642.zip u-boot-imx-f66842f79d4e33ace45762466eed23a86d367642.tar.gz u-boot-imx-f66842f79d4e33ace45762466eed23a86d367642.tar.bz2 |
MLK-12531 mx6sxsabresd: Add CM4 fast boot up demo
This is a demo that CM4 will boot up by u-boot without typing any
command. It boots up at u-boot early init, try to minimize the time
from power up to the CM4 running.
Since CM4 runs on QSPI NOR XIP, we have to disable the QSPI driver in
u-boot to avoid conflict.
RDC for shared GPIO1 is added, but not enabled, because the kernel is
not ready for shared GPIO1. Users can uncomment the CONFIG_IMX_RDC to
enable it.
Some legacy codes in mx6sxsabreauto are removed. We only need this work
on mx6sxsabresd as a demo.
Signed-off-by: Ye Li <ye.li@nxp.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/include/asm/imx-common/sys_proto.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/include/asm/imx-common/sys_proto.h b/arch/arm/include/asm/imx-common/sys_proto.h index 189765b..93d0b20 100644 --- a/arch/arm/include/asm/imx-common/sys_proto.h +++ b/arch/arm/include/asm/imx-common/sys_proto.h @@ -60,4 +60,7 @@ void board_late_mmc_env_init(void); void vadc_power_up(void); void vadc_power_down(void); + +int arch_auxiliary_core_up(u32 core_id, u32 boot_private_data); +int arch_auxiliary_core_check_up(u32 core_id); #endif |