aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Miao <eric.miao@marvell.com>2009-02-25 20:34:35 -0500
committerEric Miao <eric.miao@marvell.com>2009-03-22 22:11:34 -0400
commit40305a583a3e080a8d1aa126fa810480ec8cbabd (patch)
tree78f1bee117af5eb2a3aba3fddabe9713e9dcac38
parent49cbe78637eb0503f45fc9b556ec08918a616534 (diff)
[ARM] pxa: add iWMMXt support for pxa168
Signed-off-by: Eric Miao <eric.miao@marvell.com>
-rw-r--r--arch/arm/Kconfig4
-rw-r--r--arch/arm/kernel/Makefile1
2 files changed, 3 insertions, 2 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index fdcd2d54e939..5385d8743c6a 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -712,8 +712,8 @@ source arch/arm/mm/Kconfig
712 712
713config IWMMXT 713config IWMMXT
714 bool "Enable iWMMXt support" 714 bool "Enable iWMMXt support"
715 depends on CPU_XSCALE || CPU_XSC3 715 depends on CPU_XSCALE || CPU_XSC3 || CPU_MOHAWK
716 default y if PXA27x || PXA3xx 716 default y if PXA27x || PXA3xx || ARCH_MMP
717 help 717 help
718 Enable support for iWMMXt context switching at run time if 718 Enable support for iWMMXt context switching at run time if
719 running on a CPU that supports it. 719 running on a CPU that supports it.
diff --git a/arch/arm/kernel/Makefile b/arch/arm/kernel/Makefile
index ca60d335e8fa..11a5197a221f 100644
--- a/arch/arm/kernel/Makefile
+++ b/arch/arm/kernel/Makefile
@@ -36,6 +36,7 @@ AFLAGS_crunch-bits.o := -Wa,-mcpu=ep9312
36 36
37obj-$(CONFIG_CPU_XSCALE) += xscale-cp0.o 37obj-$(CONFIG_CPU_XSCALE) += xscale-cp0.o
38obj-$(CONFIG_CPU_XSC3) += xscale-cp0.o 38obj-$(CONFIG_CPU_XSC3) += xscale-cp0.o
39obj-$(CONFIG_CPU_MOHAWK) += xscale-cp0.o
39obj-$(CONFIG_IWMMXT) += iwmmxt.o 40obj-$(CONFIG_IWMMXT) += iwmmxt.o
40AFLAGS_iwmmxt.o := -Wa,-mcpu=iwmmxt 41AFLAGS_iwmmxt.o := -Wa,-mcpu=iwmmxt
41 42