diff options
-rw-r--r-- | arch/arm/Makefile | 1 | ||||
-rw-r--r-- | arch/arm/mach-shmobile/Kconfig | 21 | ||||
-rw-r--r-- | arch/arm/mach-shmobile/Makefile | 2 |
3 files changed, 24 insertions, 0 deletions
diff --git a/arch/arm/Makefile b/arch/arm/Makefile index c0ac0f5e5e5c..d1f717c59e70 100644 --- a/arch/arm/Makefile +++ b/arch/arm/Makefile | |||
@@ -190,6 +190,7 @@ machine-$(CONFIG_ARCH_EXYNOS) += exynos | |||
190 | machine-$(CONFIG_ARCH_SA1100) += sa1100 | 190 | machine-$(CONFIG_ARCH_SA1100) += sa1100 |
191 | machine-$(CONFIG_ARCH_SHARK) += shark | 191 | machine-$(CONFIG_ARCH_SHARK) += shark |
192 | machine-$(CONFIG_ARCH_SHMOBILE) += shmobile | 192 | machine-$(CONFIG_ARCH_SHMOBILE) += shmobile |
193 | machine-$(CONFIG_ARCH_SHMOBILE_MULTI) += shmobile | ||
193 | machine-$(CONFIG_ARCH_TEGRA) += tegra | 194 | machine-$(CONFIG_ARCH_TEGRA) += tegra |
194 | machine-$(CONFIG_ARCH_U300) += u300 | 195 | machine-$(CONFIG_ARCH_U300) += u300 |
195 | machine-$(CONFIG_ARCH_U8500) += ux500 | 196 | machine-$(CONFIG_ARCH_U8500) += ux500 |
diff --git a/arch/arm/mach-shmobile/Kconfig b/arch/arm/mach-shmobile/Kconfig index 7c5034aa1fe3..4c54298db2d4 100644 --- a/arch/arm/mach-shmobile/Kconfig +++ b/arch/arm/mach-shmobile/Kconfig | |||
@@ -1,3 +1,24 @@ | |||
1 | config ARCH_SHMOBILE_MULTI | ||
2 | bool "SH-Mobile Series" if ARCH_MULTI_V7 | ||
3 | depends on MMU | ||
4 | select CPU_V7 | ||
5 | select GENERIC_CLOCKEVENTS | ||
6 | select HAVE_ARM_SCU if SMP | ||
7 | select HAVE_ARM_TWD if LOCAL_TIMERS | ||
8 | select HAVE_SMP | ||
9 | select ARM_GIC | ||
10 | select MIGHT_HAVE_CACHE_L2X0 | ||
11 | select NO_IOPORT | ||
12 | select PINCTRL | ||
13 | select ARCH_REQUIRE_GPIOLIB | ||
14 | select CLKDEV_LOOKUP | ||
15 | |||
16 | if ARCH_SHMOBILE_MULTI | ||
17 | |||
18 | comment "SH-Mobile System Type" | ||
19 | |||
20 | endif | ||
21 | |||
1 | if ARCH_SHMOBILE | 22 | if ARCH_SHMOBILE |
2 | 23 | ||
3 | comment "SH-Mobile System Type" | 24 | comment "SH-Mobile System Type" |
diff --git a/arch/arm/mach-shmobile/Makefile b/arch/arm/mach-shmobile/Makefile index 5884bea3c3da..b150c4508237 100644 --- a/arch/arm/mach-shmobile/Makefile +++ b/arch/arm/mach-shmobile/Makefile | |||
@@ -2,6 +2,8 @@ | |||
2 | # Makefile for the linux kernel. | 2 | # Makefile for the linux kernel. |
3 | # | 3 | # |
4 | 4 | ||
5 | ccflags-$(CONFIG_ARCH_MULTIPLATFORM) := -I$(srctree)/arch/arm/mach-shmobile/include | ||
6 | |||
5 | # Common objects | 7 | # Common objects |
6 | obj-y := timer.o console.o | 8 | obj-y := timer.o console.o |
7 | 9 | ||