ARM: S5PC100: Kconfigs and Makefiles

Previous thread: ARM: S5PC100: IRQ and timer by Linux Kernel Mailing List on Monday, September 14, 2009 - 6:08 pm. (1 message)

Next thread: ARM: Show FIQ in /proc/interrupts on CONFIG_FIQ by Linux Kernel Mailing List on Monday, September 14, 2009 - 6:08 pm. (1 message)
From: Linux Kernel Mailing List
Date: Monday, September 14, 2009 - 6:08 pm

Gitweb:     http://git.kernel.org/linus/5a7652f2032b88106c9ba41edf0fb795397008bd
Commit:     5a7652f2032b88106c9ba41edf0fb795397008bd
Parent:     c1cc3db8e9fcf1c9d2db3f34552c73996d3d8a13
Author:     Byungho Min <bhminjames@gmail.com>
AuthorDate: Tue Jun 23 21:39:42 2009 +0900
Committer:  Ben Dooks <ben-linux@fluff.org>
CommitDate: Sun Aug 16 23:35:19 2009 +0100

    ARM: S5PC100: Kconfigs and Makefiles
    
    S5PC100 is a new SoC with ARM coretex-A8 and numerous peripherals. This SoC is
    successor of S3C64XX. S5PC100 has peripherals which are still similar to S3C
    families so some drivers in "arch/arm/plat-s3c" can be shared. S5PC100 specific
    drivers will be added in "arch/arm/plat-s5pcxx" or "arch/arm/mach-s5pc100"
    
    Signed-off-by: Byungho Min <bhmin@samsung.com>
    [ben-linux@fluff.org: tidy and edit description]
    Signed-off-by: Ben Dooks <ben-linux@fluff.org>
---
 arch/arm/Kconfig                              |   13 ++++++
 arch/arm/Makefile                             |    2 +
 arch/arm/mach-s5pc100/Kconfig                 |   22 +++++++++++
 arch/arm/mach-s5pc100/Makefile                |   17 ++++++++
 arch/arm/mach-s5pc100/Makefile.boot           |    2 +
 arch/arm/mach-s5pc100/include/mach/hardware.h |    2 +-
 arch/arm/plat-s5pc1xx/Kconfig                 |   50 +++++++++++++++++++++++++
 arch/arm/plat-s5pc1xx/Makefile                |   26 +++++++++++++
 8 files changed, 133 insertions(+), 1 deletions(-)

diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index f07a4ba..be89ab3 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -588,6 +588,14 @@ config ARCH_S3C64XX
 	help
 	  Samsung S3C64XX series based systems
 
+config ARCH_S5PC1XX
+	bool "Samsung S5PC1XX"
+	select GENERIC_GPIO
+	select HAVE_CLK
+	select CPU_V7
+	help
+	  Samsung S5PC1XX series based systems
+
 config ARCH_SHARK
 	bool "Shark"
 	select CPU_SA110
@@ -698,6 +706,7 @@ source "arch/arm/mach-kirkwood/Kconfig"
 source "arch/arm/plat-s3c24xx/Kconfig"
 source ...
Previous thread: ARM: S5PC100: IRQ and timer by Linux Kernel Mailing List on Monday, September 14, 2009 - 6:08 pm. (1 message)

Next thread: ARM: Show FIQ in /proc/interrupts on CONFIG_FIQ by Linux Kernel Mailing List on Monday, September 14, 2009 - 6:08 pm. (1 message)