diff options
author | Arnd Bergmann <arnd@arndb.de> | 2013-04-10 08:57:15 -0400 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2013-04-19 07:51:26 -0400 |
commit | bd51de53e1be9896d815bbea30560262216d4616 (patch) | |
tree | bd9f221d20bcc28cd6f4bb80f869c3aa6b1e3721 /arch/arm/plat-samsung/Makefile | |
parent | b9d7c5d3f48fb9582458ce014baa66c1e16d9be6 (diff) |
ARM: exynos: enable multiplatform support
This makes it possible to enable the exynos platform as part of a
multiplatform kernel, in addition to keeping the single-platform
exynos support.
The multiplatform variant has a number of limitations at the moment:
* It only supports DT-enabled machines. This is not a problem in
the long run, as non-DT machines for exynos are going away.
The main problem here is that the gpio code and the exynos_eint
irqchip are not multiplatform capable but still required for
ATAGS based boot.
* The watchdog driver is still missing a conversion.
* sparsemem and memory_holes are currently not supported in
multiplatform.
The the multiplatform aware ARCH_EXYNOS Kconfig symbol is disabled
for now, as dependent patches are still pending in other
subsystem trees. We will enable it once everything comes together.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/plat-samsung/Makefile')
-rw-r--r-- | arch/arm/plat-samsung/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/arch/arm/plat-samsung/Makefile b/arch/arm/plat-samsung/Makefile index 3a7c64d1814a..cf684b2eb6fc 100644 --- a/arch/arm/plat-samsung/Makefile +++ b/arch/arm/plat-samsung/Makefile | |||
@@ -4,6 +4,9 @@ | |||
4 | # | 4 | # |
5 | # Licensed under GPLv2 | 5 | # Licensed under GPLv2 |
6 | 6 | ||
7 | ccflags-$(CONFIG_ARCH_MULTI_V7) += -I$(srctree)/$(src)/include | ||
8 | ccflags-$(CONFIG_ARCH_EXYNOS) += -I$(srctree)/arch/arm/mach-exynos/include | ||
9 | |||
7 | obj-y := | 10 | obj-y := |
8 | obj-m := | 11 | obj-m := |
9 | obj-n := dummy.o | 12 | obj-n := dummy.o |
@@ -34,7 +37,7 @@ obj-$(CONFIG_S3C_ADC) += adc.o | |||
34 | 37 | ||
35 | obj-y += platformdata.o | 38 | obj-y += platformdata.o |
36 | 39 | ||
37 | obj-y += devs.o | 40 | obj-$(CONFIG_PLAT_SAMSUNG_SINGLE) += devs.o |
38 | obj-y += dev-uart.o | 41 | obj-y += dev-uart.o |
39 | obj-$(CONFIG_S5P_DEV_MFC) += s5p-dev-mfc.o | 42 | obj-$(CONFIG_S5P_DEV_MFC) += s5p-dev-mfc.o |
40 | obj-$(CONFIG_S5P_DEV_UART) += s5p-dev-uart.o | 43 | obj-$(CONFIG_S5P_DEV_UART) += s5p-dev-uart.o |
@@ -51,9 +54,10 @@ obj-$(CONFIG_S3C_DMA) += dma.o s3c-dma-ops.o | |||
51 | obj-$(CONFIG_SAMSUNG_DMADEV) += dma-ops.o | 54 | obj-$(CONFIG_SAMSUNG_DMADEV) += dma-ops.o |
52 | 55 | ||
53 | # PM support | 56 | # PM support |
54 | |||
55 | obj-$(CONFIG_PM) += pm.o | 57 | obj-$(CONFIG_PM) += pm.o |
58 | ifdef CONFIG_PLAT_SAMSUNG_SINGLE | ||
56 | obj-$(CONFIG_PM) += pm-gpio.o | 59 | obj-$(CONFIG_PM) += pm-gpio.o |
60 | endif | ||
57 | obj-$(CONFIG_SAMSUNG_PM_CHECK) += pm-check.o | 61 | obj-$(CONFIG_SAMSUNG_PM_CHECK) += pm-check.o |
58 | 62 | ||
59 | obj-$(CONFIG_SAMSUNG_WAKEMASK) += wakeup-mask.o | 63 | obj-$(CONFIG_SAMSUNG_WAKEMASK) += wakeup-mask.o |