aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/plat-s5p
diff options
context:
space:
mode:
authorKukjin Kim <kgene.kim@samsung.com>2010-01-13 18:19:36 -0500
committerBen Dooks <ben-linux@fluff.org>2010-01-15 05:16:32 -0500
commitc4ffccddd54b669cc9683f2c69e31035e916a1a0 (patch)
treea5571183e70ca0dbb8610ee882e1ffcb4fb8da35 /arch/arm/plat-s5p
parent5f3545f64a44b2b2dac34141dba23d18cdf40a92 (diff)
ARM: S5P6440: Add new Kconfig and Makefiles
This patch adds the Kconfig and Makefile for the new S5P6440 machine and platform directories. It also updates arch/arm Kconfig and Makefiles to include the support for the new S5P6440 CPU. Signed-off-by: Kukjin Kim <kgene.kim@samsung.com> Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/plat-s5p')
-rw-r--r--arch/arm/plat-s5p/Kconfig38
-rw-r--r--arch/arm/plat-s5p/Makefile24
2 files changed, 62 insertions, 0 deletions
diff --git a/arch/arm/plat-s5p/Kconfig b/arch/arm/plat-s5p/Kconfig
new file mode 100644
index 00000000000..7e08b406441
--- /dev/null
+++ b/arch/arm/plat-s5p/Kconfig
@@ -0,0 +1,38 @@
1# arch/arm/plat-s5p/Kconfig
2#
3# Copyright (c) 2009 Samsung Electronics Co., Ltd.
4# http://www.samsung.com/
5#
6# Licensed under GPLv2
7
8config PLAT_S5P
9 bool
10 depends on ARCH_S5P6440
11 default y
12 select PLAT_S3C
13 select ARM_VIC
14 select NO_IOPORT
15 select ARCH_REQUIRE_GPIOLIB
16 select S3C_GPIO_TRACK
17 select PLAT_SAMSUNG
18 select SAMSUNG_CLKSRC
19 select SAMSUNG_IRQ_VIC_TIMER
20 select SAMSUNG_IRQ_UART
21 help
22 Base platform code for Samsung's S5P series SoC.
23
24if (PLAT_S5P && ARCH_S5P6440)
25
26# Configuration options shared by all S5P64XX implementations
27
28config CPU_S5P6440_INIT
29 bool
30 help
31 Initialisation code for the S5P6440.
32
33config CPU_S5P6440_CLOCK
34 bool
35 help
36 Clock support code for the S5P6440.
37
38endif
diff --git a/arch/arm/plat-s5p/Makefile b/arch/arm/plat-s5p/Makefile
new file mode 100644
index 00000000000..92b64745054
--- /dev/null
+++ b/arch/arm/plat-s5p/Makefile
@@ -0,0 +1,24 @@
1# arch/arm/plat-s5p/Makefile
2#
3# Copyright (c) 2009 Samsung Electronics Co., Ltd.
4# http://www.samsung.com/
5#
6# Licensed under GPLv2
7
8obj-y :=
9obj-m :=
10obj-n := dummy.o
11obj- :=
12
13# Core files
14
15obj-y += dev-uart.o
16obj-y += cpu.o
17obj-y += clock.o
18obj-y += irq.o
19obj-y += setup-i2c0.o
20
21# CPU support
22
23obj-$(CONFIG_CPU_S5P6440_INIT) += s5p6440-init.o
24obj-$(CONFIG_CPU_S5P6440_CLOCK) += s5p6440-clock.o