diff options
author | Minkyu Kang <mk7.kang@samsung.com> | 2009-06-25 19:21:33 +0900 |
---|---|---|
committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2009-06-26 00:02:35 +0200 |
commit | 6bde171a4c4116cee179167cb65335a28f99932d (patch) | |
tree | 27566c517b8ed19080d3e4013e60ba16730b9328 /cpu/arm1176/s3c64xx/Makefile | |
parent | 576afd4faeba1519bcb8c0083c3e4d45e5643a48 (diff) | |
download | u-boot-imx-6bde171a4c4116cee179167cb65335a28f99932d.zip u-boot-imx-6bde171a4c4116cee179167cb65335a28f99932d.tar.gz u-boot-imx-6bde171a4c4116cee179167cb65335a28f99932d.tar.bz2 |
s3c64xx: move the reset_cpu function
Because of the reset_cpu is soc specific, should be move to soc
And read reset value from SYS_ID register instead of hard code
this patch also supports s3c6410
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'cpu/arm1176/s3c64xx/Makefile')
-rw-r--r-- | cpu/arm1176/s3c64xx/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpu/arm1176/s3c64xx/Makefile b/cpu/arm1176/s3c64xx/Makefile index 4656d9a..b527939 100644 --- a/cpu/arm1176/s3c64xx/Makefile +++ b/cpu/arm1176/s3c64xx/Makefile @@ -28,6 +28,8 @@ include $(TOPDIR)/config.mk LIB = $(obj)lib$(SOC).a +SOBJS = reset.o + COBJS-$(CONFIG_S3C6400) += cpu_init.o speed.o COBJS-y += timer.o |