diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2012-05-04 07:04:26 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2012-05-05 00:50:50 -0400 |
commit | 357c9c1f07d4546bc3fbc0fd1044d96b114d14ed (patch) | |
tree | a355e9cd73ab9f7b536b4c7562d931cfb3f5a885 /arch/arm/lib/Makefile | |
parent | 69964ea4c7b68c9399f7977aa5b9aa6539a6a98a (diff) |
ARM: Remove support for ARMv3 ARM610 and ARM710 CPUs
This patch removes support for ARMv3 CPUs, which haven't worked properly
for quite some time (see the FIXME comment in arch/arm/mm/fault.c). The
only V3 parts left is the cache model for ARMv3, which is needed for some
odd reason by ARM740T CPUs, and being able to build with -march=armv3,
which is required for the RiscPC platform due to its bus structure.
Acked-by: Will Deacon <will.deacon@arm.com>
Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/lib/Makefile')
-rw-r--r-- | arch/arm/lib/Makefile | 23 |
1 files changed, 3 insertions, 20 deletions
diff --git a/arch/arm/lib/Makefile b/arch/arm/lib/Makefile index 0ade0acc1ed9..992769ae2599 100644 --- a/arch/arm/lib/Makefile +++ b/arch/arm/lib/Makefile | |||
@@ -17,30 +17,13 @@ lib-y := backtrace.o changebit.o csumipv6.o csumpartial.o \ | |||
17 | call_with_stack.o | 17 | call_with_stack.o |
18 | 18 | ||
19 | mmu-y := clear_user.o copy_page.o getuser.o putuser.o | 19 | mmu-y := clear_user.o copy_page.o getuser.o putuser.o |
20 | 20 | mmu-y += copy_from_user.o copy_to_user.o | |
21 | # the code in uaccess.S is not preemption safe and | ||
22 | # probably faster on ARMv3 only | ||
23 | ifeq ($(CONFIG_PREEMPT),y) | ||
24 | mmu-y += copy_from_user.o copy_to_user.o | ||
25 | else | ||
26 | ifneq ($(CONFIG_CPU_32v3),y) | ||
27 | mmu-y += copy_from_user.o copy_to_user.o | ||
28 | else | ||
29 | mmu-y += uaccess.o | ||
30 | endif | ||
31 | endif | ||
32 | 21 | ||
33 | # using lib_ here won't override already available weak symbols | 22 | # using lib_ here won't override already available weak symbols |
34 | obj-$(CONFIG_UACCESS_WITH_MEMCPY) += uaccess_with_memcpy.o | 23 | obj-$(CONFIG_UACCESS_WITH_MEMCPY) += uaccess_with_memcpy.o |
35 | 24 | ||
36 | lib-$(CONFIG_MMU) += $(mmu-y) | 25 | lib-$(CONFIG_MMU) += $(mmu-y) |
37 | 26 | lib-y += io-readsw-armv4.o io-writesw-armv4.o | |
38 | ifeq ($(CONFIG_CPU_32v3),y) | ||
39 | lib-y += io-readsw-armv3.o io-writesw-armv3.o | ||
40 | else | ||
41 | lib-y += io-readsw-armv4.o io-writesw-armv4.o | ||
42 | endif | ||
43 | |||
44 | lib-$(CONFIG_ARCH_RPC) += ecard.o io-acorn.o floppydma.o | 27 | lib-$(CONFIG_ARCH_RPC) += ecard.o io-acorn.o floppydma.o |
45 | lib-$(CONFIG_ARCH_SHARK) += io-shark.o | 28 | lib-$(CONFIG_ARCH_SHARK) += io-shark.o |
46 | 29 | ||