diff options
author | Inderpal Singh | 2013-04-04 23:09:20 +0000 |
---|---|---|
committer | Minkyu Kang | 2013-06-04 15:23:17 +0900 |
commit | b5f9756f7f2449cf1b6c3e64dbc40f159f7dcbe2 (patch) | |
tree | 41410111266598c7e69a237fe41ae460fc8c6d00 /spl/Makefile | |
parent | 72af2fc8504daccd2f8ae2459e3e225e9c2cc512 (diff) |
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 'spl/Makefile')
-rw-r--r-- | spl/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/spl/Makefile b/spl/Makefile index 8b655c485aa..09752bf3467 100644 --- a/spl/Makefile +++ b/spl/Makefile @@ -102,6 +102,10 @@ ifneq ($(CONFIG_MX23)$(CONFIG_MX35),) LIBS-y += arch/$(ARCH)/imx-common/libimx-common.o endif +ifeq ($(SOC),exynos) +LIBS-y += $(CPUDIR)/s5p-common/libs5p-common.o +endif + # Add GCC lib ifeq ("$(USE_PRIVATE_LIBGCC)", "yes") PLATFORM_LIBGCC = $(SPLTREE)/arch/$(ARCH)/lib/libgcc.o |