diff options
author | Ben Dooks <ben-linux@fluff.org> | 2008-10-21 09:06:39 -0400 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2008-12-15 16:47:24 -0500 |
commit | a08ab63761730634bbbf8f361d1a058c1f4af9c5 (patch) | |
tree | 65eaf971a69a7e8a17ba473b8b39ddd774c187e4 /arch/arm | |
parent | 9bc1aaeac0118611c30edf84995ebad5adfd6822 (diff) |
[ARM] S3C64XX: Initial arch directory
Add the initial PLAT_S3C64XX support files
and directory structure.
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/Kconfig | 13 | ||||
-rw-r--r-- | arch/arm/Makefile | 2 | ||||
-rw-r--r-- | arch/arm/mach-s3c6400/Kconfig | 8 | ||||
-rw-r--r-- | arch/arm/mach-s3c6400/Makefile | 15 | ||||
-rw-r--r-- | arch/arm/mach-s3c6400/Makefile.boot | 2 | ||||
-rw-r--r-- | arch/arm/mach-s3c6400/include/mach/memory.h | 21 | ||||
-rw-r--r-- | arch/arm/mach-s3c6410/Kconfig | 8 | ||||
-rw-r--r-- | arch/arm/plat-s3c/Kconfig | 2 | ||||
-rw-r--r-- | arch/arm/plat-s3c64xx/Kconfig | 23 | ||||
-rw-r--r-- | arch/arm/plat-s3c64xx/Makefile | 13 |
10 files changed, 106 insertions, 1 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 4546f8b2ce8c..f512b5530ef1 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig | |||
@@ -517,6 +517,13 @@ config ARCH_S3C2410 | |||
517 | BAST (<http://www.simtec.co.uk/products/EB110ITX/>), the IPAQ 1940 or | 517 | BAST (<http://www.simtec.co.uk/products/EB110ITX/>), the IPAQ 1940 or |
518 | the Samsung SMDK2410 development board (and derivatives). | 518 | the Samsung SMDK2410 development board (and derivatives). |
519 | 519 | ||
520 | config ARCH_S3C64XX | ||
521 | bool "Samsung S3C64XX" | ||
522 | select GENERIC_GPIO | ||
523 | select HAVE_CLK | ||
524 | help | ||
525 | Samsung S3C64XX series based systems | ||
526 | |||
520 | config ARCH_SHARK | 527 | config ARCH_SHARK |
521 | bool "Shark" | 528 | bool "Shark" |
522 | select CPU_SA110 | 529 | select CPU_SA110 |
@@ -620,6 +627,7 @@ source "arch/arm/mach-orion5x/Kconfig" | |||
620 | source "arch/arm/mach-kirkwood/Kconfig" | 627 | source "arch/arm/mach-kirkwood/Kconfig" |
621 | 628 | ||
622 | source "arch/arm/plat-s3c24xx/Kconfig" | 629 | source "arch/arm/plat-s3c24xx/Kconfig" |
630 | source "arch/arm/plat-s3c64xx/Kconfig" | ||
623 | source "arch/arm/plat-s3c/Kconfig" | 631 | source "arch/arm/plat-s3c/Kconfig" |
624 | 632 | ||
625 | if ARCH_S3C2410 | 633 | if ARCH_S3C2410 |
@@ -631,6 +639,11 @@ source "arch/arm/mach-s3c2442/Kconfig" | |||
631 | source "arch/arm/mach-s3c2443/Kconfig" | 639 | source "arch/arm/mach-s3c2443/Kconfig" |
632 | endif | 640 | endif |
633 | 641 | ||
642 | if ARCH_S3C64XX | ||
643 | source "arch/arm/mach-s3c6400/Kconfig" | ||
644 | source "arch/arm/mach-s3c6410/Kconfig" | ||
645 | endif | ||
646 | |||
634 | source "arch/arm/mach-lh7a40x/Kconfig" | 647 | source "arch/arm/mach-lh7a40x/Kconfig" |
635 | 648 | ||
636 | source "arch/arm/mach-imx/Kconfig" | 649 | source "arch/arm/mach-imx/Kconfig" |
diff --git a/arch/arm/Makefile b/arch/arm/Makefile index 27ff1e90d277..fed7753ff7e2 100644 --- a/arch/arm/Makefile +++ b/arch/arm/Makefile | |||
@@ -123,6 +123,8 @@ endif | |||
123 | machine-$(CONFIG_ARCH_S3C2410) := s3c2410 s3c2400 s3c2412 s3c2440 s3c2442 s3c2443 | 123 | machine-$(CONFIG_ARCH_S3C2410) := s3c2410 s3c2400 s3c2412 s3c2440 s3c2442 s3c2443 |
124 | machine-$(CONFIG_ARCH_S3C24A0) := s3c24a0 | 124 | machine-$(CONFIG_ARCH_S3C24A0) := s3c24a0 |
125 | plat-$(CONFIG_PLAT_S3C24XX) := s3c24xx s3c | 125 | plat-$(CONFIG_PLAT_S3C24XX) := s3c24xx s3c |
126 | machine-$(CONFIG_ARCH_S3C64XX) := s3c6400 | ||
127 | plat-$(CONFIG_PLAT_S3C64XX) := s3c64xx s3c | ||
126 | machine-$(CONFIG_ARCH_LH7A40X) := lh7a40x | 128 | machine-$(CONFIG_ARCH_LH7A40X) := lh7a40x |
127 | machine-$(CONFIG_ARCH_VERSATILE) := versatile | 129 | machine-$(CONFIG_ARCH_VERSATILE) := versatile |
128 | machine-$(CONFIG_ARCH_IMX) := imx | 130 | machine-$(CONFIG_ARCH_IMX) := imx |
diff --git a/arch/arm/mach-s3c6400/Kconfig b/arch/arm/mach-s3c6400/Kconfig new file mode 100644 index 000000000000..6da82b5c09ba --- /dev/null +++ b/arch/arm/mach-s3c6400/Kconfig | |||
@@ -0,0 +1,8 @@ | |||
1 | # arch/arm/mach-s3c6400/Kconfig | ||
2 | # | ||
3 | # Copyright 2008 Openmoko, Inc. | ||
4 | # Simtec Electronics, Ben Dooks <ben@simtec.co.uk> | ||
5 | # | ||
6 | # Licensed under GPLv2 | ||
7 | |||
8 | # Currently nothing here, this will be added later | ||
diff --git a/arch/arm/mach-s3c6400/Makefile b/arch/arm/mach-s3c6400/Makefile new file mode 100644 index 000000000000..8f397db25b87 --- /dev/null +++ b/arch/arm/mach-s3c6400/Makefile | |||
@@ -0,0 +1,15 @@ | |||
1 | # arch/arm/mach-s3c6400/Makefile | ||
2 | # | ||
3 | # Copyright 2008 Openmoko, Inc. | ||
4 | # Copyright 2008 Simtec Electronics | ||
5 | # | ||
6 | # Licensed under GPLv2 | ||
7 | |||
8 | obj-y := | ||
9 | obj-m := | ||
10 | obj-n := | ||
11 | obj- := | ||
12 | |||
13 | # Core support for S3C6400 system | ||
14 | |||
15 | obj-n += blank.o | ||
diff --git a/arch/arm/mach-s3c6400/Makefile.boot b/arch/arm/mach-s3c6400/Makefile.boot new file mode 100644 index 000000000000..ba41fdc0a586 --- /dev/null +++ b/arch/arm/mach-s3c6400/Makefile.boot | |||
@@ -0,0 +1,2 @@ | |||
1 | zreladdr-y := 0x50008000 | ||
2 | params_phys-y := 0x50000100 | ||
diff --git a/arch/arm/mach-s3c6400/include/mach/memory.h b/arch/arm/mach-s3c6400/include/mach/memory.h new file mode 100644 index 000000000000..38c381132f24 --- /dev/null +++ b/arch/arm/mach-s3c6400/include/mach/memory.h | |||
@@ -0,0 +1,21 @@ | |||
1 | /* arch/arm/mach-s3c6400/include/mach/memory.h | ||
2 | * | ||
3 | * Copyright 2008 Openmoko, Inc. | ||
4 | * Copyright 2008 Simtec Electronics | ||
5 | * Ben Dooks <ben@simtec.co.uk> | ||
6 | * http://armlinux.simtec.co.uk/ | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License version 2 as | ||
10 | * published by the Free Software Foundation. | ||
11 | */ | ||
12 | |||
13 | #ifndef __ASM_ARCH_MEMORY_H | ||
14 | #define __ASM_ARCH_MEMORY_H | ||
15 | |||
16 | #define PHYS_OFFSET UL(0x50000000) | ||
17 | |||
18 | #define __virt_to_bus(x) __virt_to_phys(x) | ||
19 | #define __bus_to_virt(x) __phys_to_virt(x) | ||
20 | |||
21 | #endif | ||
diff --git a/arch/arm/mach-s3c6410/Kconfig b/arch/arm/mach-s3c6410/Kconfig new file mode 100644 index 000000000000..6ef4c94d622d --- /dev/null +++ b/arch/arm/mach-s3c6410/Kconfig | |||
@@ -0,0 +1,8 @@ | |||
1 | # arch/arm/mach-s3c6410/Kconfig | ||
2 | # | ||
3 | # Copyright 2008 Openmoko, Inc. | ||
4 | # Copyright 2008 Simtec Electronics | ||
5 | # | ||
6 | # Licensed under GPLv2 | ||
7 | |||
8 | # Configuration options for the S3C6410 CPU | ||
diff --git a/arch/arm/plat-s3c/Kconfig b/arch/arm/plat-s3c/Kconfig index b57ada400f90..6fa261a3d405 100644 --- a/arch/arm/plat-s3c/Kconfig +++ b/arch/arm/plat-s3c/Kconfig | |||
@@ -6,7 +6,7 @@ | |||
6 | 6 | ||
7 | config PLAT_S3C | 7 | config PLAT_S3C |
8 | bool | 8 | bool |
9 | depends on ARCH_S3C2410 || ARCH_S3C24A0 | 9 | depends on ARCH_S3C2410 || ARCH_S3C24A0 || ARCH_S3C64XX |
10 | default y | 10 | default y |
11 | select NO_IOPORT | 11 | select NO_IOPORT |
12 | help | 12 | help |
diff --git a/arch/arm/plat-s3c64xx/Kconfig b/arch/arm/plat-s3c64xx/Kconfig new file mode 100644 index 000000000000..756c166051bf --- /dev/null +++ b/arch/arm/plat-s3c64xx/Kconfig | |||
@@ -0,0 +1,23 @@ | |||
1 | # arch/arm/plat-s3c64xx/Kconfig | ||
2 | # | ||
3 | # Copyright 2008 Openmoko, Inc. | ||
4 | # Copyright 2008 Simtec Electronics | ||
5 | # Ben Dooks <ben@simtec.co.uk> | ||
6 | # | ||
7 | # Licensed under GPLv2 | ||
8 | |||
9 | config PLAT_S3C64XX | ||
10 | bool | ||
11 | depends on ARCH_S3C64XX | ||
12 | select PLAT_S3C | ||
13 | default y | ||
14 | select NO_IOPORT | ||
15 | select ARCH_REQUIRE_GPIOLIB | ||
16 | help | ||
17 | Base platform code for any Samsung S3C64XX device | ||
18 | |||
19 | if PLAT_S3C64XX | ||
20 | |||
21 | # Configuration options shared by all S3C64XX implementations | ||
22 | |||
23 | endif | ||
diff --git a/arch/arm/plat-s3c64xx/Makefile b/arch/arm/plat-s3c64xx/Makefile new file mode 100644 index 000000000000..900c86367e1b --- /dev/null +++ b/arch/arm/plat-s3c64xx/Makefile | |||
@@ -0,0 +1,13 @@ | |||
1 | # arch/arm/plat-s3c64xx/Makefile | ||
2 | # | ||
3 | # Copyright 2008 Openmoko, Inc. | ||
4 | # Copyright 2008 Simtec Electronics | ||
5 | # | ||
6 | # Licensed under GPLv2 | ||
7 | |||
8 | obj-y := | ||
9 | obj-m := | ||
10 | obj-n := dummy.o | ||
11 | obj- := | ||
12 | |||
13 | # Core files | ||