From: Jongsun Han <jongsun.han@samsung.com>
To: linux-arm-kernel@lists.infradead.org, linux-samsung-soc@vger.kernel.org
Cc: kgene.kim@samsung.com, ben-linux@fluff.org,
Jongsun Han <jongsun.han@samsung.com>
Subject: [PATCH 2/3] ARM: S5PV310: Add the definition for external interrupt
Date: Thu, 7 Oct 2010 20:24:57 +0900 [thread overview]
Message-ID: <1286450698-12029-3-git-send-email-jongsun.han@samsung.com> (raw)
In-Reply-To: <1286450698-12029-1-git-send-email-jongsun.han@samsung.com>
This patch add the definition for both IRQs and GPIO registers for external
interrupt.
Signed-off-by: Jongsun Han <jongsun.han@samsung.com>
---
arch/arm/mach-s5pv310/include/mach/irqs.h | 26 +++++++++++++++-
arch/arm/mach-s5pv310/include/mach/regs-gpio.h | 37 ++++++++++++++++++++++++
2 files changed, 61 insertions(+), 2 deletions(-)
create mode 100644 arch/arm/mach-s5pv310/include/mach/regs-gpio.h
diff --git a/arch/arm/mach-s5pv310/include/mach/irqs.h b/arch/arm/mach-s5pv310/include/mach/irqs.h
index e81332f..9faea58 100644
--- a/arch/arm/mach-s5pv310/include/mach/irqs.h
+++ b/arch/arm/mach-s5pv310/include/mach/irqs.h
@@ -78,10 +78,32 @@
#define IRQ_ONENAND_AUDI COMBINER_IRQ(34, 0)
+#define IRQ_EINT4 COMBINER_IRQ(37, 0)
+#define IRQ_EINT5 COMBINER_IRQ(37, 1)
+#define IRQ_EINT6 COMBINER_IRQ(37, 2)
+#define IRQ_EINT7 COMBINER_IRQ(37, 3)
+#define IRQ_EINT8 COMBINER_IRQ(38, 0)
+
+#define IRQ_EINT9 COMBINER_IRQ(38, 1)
+#define IRQ_EINT10 COMBINER_IRQ(38, 2)
+#define IRQ_EINT11 COMBINER_IRQ(38, 3)
+#define IRQ_EINT12 COMBINER_IRQ(38, 4)
+#define IRQ_EINT13 COMBINER_IRQ(38, 5)
+#define IRQ_EINT14 COMBINER_IRQ(38, 6)
+#define IRQ_EINT15 COMBINER_IRQ(38, 7)
+
+#define IRQ_EINT16_31 COMBINER_IRQ(39, 0)
+
+#define IRQ_EINT_BASE (IRQ_EINT16_31 + 1)
+
/* Set the default NR_IRQS */
+#define NR_IRQS (IRQ_EINT_BASE + 32)
+
+#define EINT_NUMBER(x) ((x) + IRQ_EINT_BASE)
-#define NR_IRQS COMBINER_IRQ(MAX_COMBINER_NR, 0)
+#define S5P_EINT_BASE1 EINT_NUMBER(0)
+#define S5P_EINT_BASE2 EINT_NUMBER(16)
-#define MAX_COMBINER_NR 39
+#define MAX_COMBINER_NR 40
#endif /* __ASM_ARCH_IRQS_H */
diff --git a/arch/arm/mach-s5pv310/include/mach/regs-gpio.h b/arch/arm/mach-s5pv310/include/mach/regs-gpio.h
new file mode 100644
index 0000000..4fddb12
--- /dev/null
+++ b/arch/arm/mach-s5pv310/include/mach/regs-gpio.h
@@ -0,0 +1,37 @@
+/* linux/arch/arm/mach-s5pv310/include/mach/regs-gpio.h
+ *
+ * Copyright (c) 2010 Samsung Electronics Co., Ltd.
+ * http://www.samsung.com
+ *
+ * S5PV310 - GPIO (including EINT) register definitions
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+*/
+
+#ifndef __ASM_ARCH_REGS_GPIO_H
+#define __ASM_ARCH_REGS_GPIO_H __FILE__
+
+#include <mach/map.h>
+
+#define S5PV310_EINT40CON (S5P_VA_GPIO2 + 0xE00)
+#define S5P_EINT_CON(x) (S5PV310_EINT40CON + ((x) * 0x4))
+
+#define S5PV310_EINT40FLTCON0 (S5P_VA_GPIO2 + 0xE80)
+#define S5P_EINT_FLTCON(x) (S5PV310_EINT40FLTCON0 + ((x) * 0x4))
+
+#define S5PV310_EINT40MASK (S5P_VA_GPIO2 + 0xF00)
+#define S5P_EINT_MASK(x) (S5PV310_EINT40MASK + ((x) * 0x4))
+
+#define S5PV310_EINT40PEND (S5P_VA_GPIO2 + 0xF40)
+#define S5P_EINT_PEND(x) (S5PV310_EINT40PEND + ((x) * 0x4))
+
+#define EINT_MODE S3C_GPIO_SFN(0xf)
+
+#define EINT_GPIO_0(x) S5PV310_GPX0(x)
+#define EINT_GPIO_1(x) S5PV310_GPX1(x)
+#define EINT_GPIO_2(x) S5PV310_GPX2(x)
+#define EINT_GPIO_3(x) S5PV310_GPX3(x)
+
+#endif /* __ASM_ARCH_REGS_GPIO_H */
--
1.6.3.3
next prev parent reply other threads:[~2010-10-07 11:34 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-10-07 11:24 [PATCH 0/3] ARM: S5PV310: Add EINT support Jongsun Han
2010-10-07 11:24 ` [PATCH 1/3] ARM: S5P: Add GPIO2 memory map definition Jongsun Han
2010-10-07 11:24 ` Jongsun Han [this message]
2010-10-15 1:58 ` [PATCH 2/3] ARM: S5PV310: Add the definition for external interrupt Kukjin Kim
2010-10-07 11:24 ` [PATCH 3/3] ARM: S5PV310: Add external interrupt support Jongsun Han
2010-10-07 12:30 ` Marek Szyprowski
2010-10-08 10:06 ` Jongsun Han
2010-10-09 10:16 ` Russell King - ARM Linux
2010-10-15 1:18 ` Kukjin Kim
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1286450698-12029-3-git-send-email-jongsun.han@samsung.com \
--to=jongsun.han@samsung.com \
--cc=ben-linux@fluff.org \
--cc=kgene.kim@samsung.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-samsung-soc@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox