ARM: S5PC100: IRQ and timer

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

Next thread: ARM: S5PC100: Kconfigs and Makefiles 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/c9b870e7e796eea515a261a314917317ebb1cb4a
Commit:     c9b870e7e796eea515a261a314917317ebb1cb4a
Parent:     0164cbf4390fbcd7125fc8d476a451a3efa14c5d
Author:     Byungho Min <bhminjames@gmail.com>
AuthorDate: Tue Jun 23 21:40:03 2009 +0900
Committer:  Ben Dooks <ben-linux@fluff.org>
CommitDate: Sun Aug 16 23:25:00 2009 +0100

    ARM: S5PC100: IRQ and timer
    
    S5PC100 has 3 VICs(Vectored Interrupt Controller). The VICs come from S3C64xx
    series, so the driver source code can be shared with S3C families. The S5PC100
    has 3 VICs while S3C64xx has only 2.
    
    Signed-off-by: Byungho Min <bhmin@samsung.com>
    [ben-linux@fluff.org: subject fixup]
    Signed-off-by: Ben Dooks <ben-linux@fluff.org>
---
 arch/arm/mach-s5pc100/include/mach/irqs.h      |   14 ++
 arch/arm/mach-s5pc100/include/mach/pwm-clock.h |   56 +++++
 arch/arm/mach-s5pc100/include/mach/regs-irq.h  |   24 +++
 arch/arm/mach-s5pc100/include/mach/tick.h      |   29 +++
 arch/arm/plat-s5pc1xx/include/plat/irqs.h      |  182 +++++++++++++++++
 arch/arm/plat-s5pc1xx/irq.c                    |  259 ++++++++++++++++++++++++
 6 files changed, 564 insertions(+), 0 deletions(-)

diff --git a/arch/arm/mach-s5pc100/include/mach/irqs.h b/arch/arm/mach-s5pc100/include/mach/irqs.h
new file mode 100644
index 0000000..622720d
--- /dev/null
+++ b/arch/arm/mach-s5pc100/include/mach/irqs.h
@@ -0,0 +1,14 @@
+/* linux/arch/arm/mach-s5pc100/include/mach/irqs.h
+ *
+ * Copyright 2009 Samsung Electronics Co.
+ *      Byungho Min <bhmin@samsung.com>
+ *
+ * S5PC100 - IRQ definitions
+ */
+
+#ifndef __ASM_ARCH_IRQS_H
+#define __ASM_ARCH_IRQS_H __FILE__
+
+#include <plat/irqs.h>
+
+#endif /* __ASM_ARCH_IRQ_H */
diff --git a/arch/arm/mach-s5pc100/include/mach/pwm-clock.h b/arch/arm/mach-s5pc100/include/mach/pwm-clock.h
new file mode 100644
index 0000000..b34d2f7
--- /dev/null
+++ b/arch/arm/mach-s5pc100/include/mach/pwm-clock.h
@@ -0,0 +1,56 @@
+/* ...
Previous thread: ARM: S5PC100: CPU initialization by Linux Kernel Mailing List on Monday, September 14, 2009 - 6:08 pm. (1 message)

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