diff options
author | Kukjin Kim <kgene.kim@samsung.com> | 2010-01-13 18:19:36 -0500 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2010-01-15 05:16:32 -0500 |
commit | c4ffccddd54b669cc9683f2c69e31035e916a1a0 (patch) | |
tree | a5571183e70ca0dbb8610ee882e1ffcb4fb8da35 /arch/arm/plat-s5p | |
parent | 5f3545f64a44b2b2dac34141dba23d18cdf40a92 (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/Kconfig | 38 | ||||
-rw-r--r-- | arch/arm/plat-s5p/Makefile | 24 |
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 000000000000..7e08b4064414 --- /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 | |||
8 | config 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 | |||
24 | if (PLAT_S5P && ARCH_S5P6440) | ||
25 | |||
26 | # Configuration options shared by all S5P64XX implementations | ||
27 | |||
28 | config CPU_S5P6440_INIT | ||
29 | bool | ||
30 | help | ||
31 | Initialisation code for the S5P6440. | ||
32 | |||
33 | config CPU_S5P6440_CLOCK | ||
34 | bool | ||
35 | help | ||
36 | Clock support code for the S5P6440. | ||
37 | |||
38 | endif | ||
diff --git a/arch/arm/plat-s5p/Makefile b/arch/arm/plat-s5p/Makefile new file mode 100644 index 000000000000..92b647450542 --- /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 | |||
8 | obj-y := | ||
9 | obj-m := | ||
10 | obj-n := dummy.o | ||
11 | obj- := | ||
12 | |||
13 | # Core files | ||
14 | |||
15 | obj-y += dev-uart.o | ||
16 | obj-y += cpu.o | ||
17 | obj-y += clock.o | ||
18 | obj-y += irq.o | ||
19 | obj-y += setup-i2c0.o | ||
20 | |||
21 | # CPU support | ||
22 | |||
23 | obj-$(CONFIG_CPU_S5P6440_INIT) += s5p6440-init.o | ||
24 | obj-$(CONFIG_CPU_S5P6440_CLOCK) += s5p6440-clock.o | ||