diff options
author | Inderpal Singh <inderpal.singh@linaro.org> | 2013-04-04 23:09:20 +0000 |
---|---|---|
committer | Minkyu Kang <mk7.kang@samsung.com> | 2013-06-04 15:23:17 +0900 |
commit | b5f9756f7f2449cf1b6c3e64dbc40f159f7dcbe2 (patch) | |
tree | 41410111266598c7e69a237fe41ae460fc8c6d00 /board/samsung | |
parent | 72af2fc8504daccd2f8ae2459e3e225e9c2cc512 (diff) | |
download | u-boot-imx-b5f9756f7f2449cf1b6c3e64dbc40f159f7dcbe2.zip u-boot-imx-b5f9756f7f2449cf1b6c3e64dbc40f159f7dcbe2.tar.gz u-boot-imx-b5f9756f7f2449cf1b6c3e64dbc40f159f7dcbe2.tar.bz2 |
exynos: update tzpc to make it common for exynos4 and exynos5
This requires that cpu_is_exynos4/5 should be made available before tzpc_init.
Hence this patch also makes necessary changes to have cpu_info in spl and
invokes arch_cpu_init before tzpc_init in low_level_init.S for smdk5250.
Signed-off-by: Inderpal Singh <inderpal.singh@linaro.org>
Acked-by: Chander Kashyap <chander.kashyap@linaro.org>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'board/samsung')
-rw-r--r-- | board/samsung/smdk5250/lowlevel_init.S | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/board/samsung/smdk5250/lowlevel_init.S b/board/samsung/smdk5250/lowlevel_init.S index bc6cb6f..edc565e 100644 --- a/board/samsung/smdk5250/lowlevel_init.S +++ b/board/samsung/smdk5250/lowlevel_init.S @@ -75,12 +75,14 @@ lowlevel_init: bl mem_ctrl_init 1: + bl arch_cpu_init bl tzpc_init ldmia r13!, {ip,pc} wakeup_reset: bl system_clock_init bl mem_ctrl_init + bl arch_cpu_init bl tzpc_init exit_wakeup: |