diff options
author | Marek Vasut <marek.vasut+renesas@gmail.com> | 2019-05-07 21:52:47 +0200 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2019-05-10 22:43:18 +0200 |
commit | 7de3ea8b98a531c516505f07902e56077bf78816 (patch) | |
tree | 2cc2816ddca0073fd77d29e812dccc9f9df3d972 /arch/sh/lib | |
parent | 54eac8b3a3cc4c05d981ecefc8bcd5151f0d928c (diff) | |
download | u-boot-7de3ea8b98a531c516505f07902e56077bf78816.tar.gz u-boot-7de3ea8b98a531c516505f07902e56077bf78816.tar.bz2 u-boot-7de3ea8b98a531c516505f07902e56077bf78816.zip |
sh: sh2: Remove CPU support
This CPU core is old, no boards using the CPU are left in mainline,
it has no prospects of ever being converted to DM, drop it.
Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
Cc: Chris Brandt <chris.brandt@renesas.com>
Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Cc: Vladimir Zapolskiy <vz@mleia.com>
Cc: Yoshihiro Shimoda <shimoda.yoshihiro.uh@renesas.com>
Diffstat (limited to 'arch/sh/lib')
-rw-r--r-- | arch/sh/lib/Makefile | 4 | ||||
-rw-r--r-- | arch/sh/lib/start.S | 6 |
2 files changed, 0 insertions, 10 deletions
diff --git a/arch/sh/lib/Makefile b/arch/sh/lib/Makefile index 4171e2b0b8..fbc4cc9d7f 100644 --- a/arch/sh/lib/Makefile +++ b/arch/sh/lib/Makefile @@ -7,11 +7,7 @@ extra-y += start.o obj-y += board.o obj-$(CONFIG_CMD_BOOTM) += bootm.o -ifeq ($(CONFIG_CPU_SH2),y) -obj-y += time_sh2.o -else obj-y += time.o -endif obj-$(CONFIG_CMD_SH_ZIMAGEBOOT) += zimageboot.o udivsi3-y := udivsi3_i4i-Os.o diff --git a/arch/sh/lib/start.S b/arch/sh/lib/start.S index ee79b4fdd0..f5350b9064 100644 --- a/arch/sh/lib/start.S +++ b/arch/sh/lib/start.S @@ -12,12 +12,6 @@ .global _start _start: -#ifdef CONFIG_CPU_SH2 - .long 0x00000010 /* Ppower ON reset PC*/ - .long 0x00000000 - .long 0x00000010 /* Manual reset PC */ - .long 0x00000000 -#endif mov.l ._lowlevel_init, r0 100: bsrf r0 nop |