Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1282784

[PATCH 3/4] irqchip/sunxi-nmi: Support sun9i A80 NMI controller

From Chen-Yu Tsai <wens@csie.org>
Newsgroups linux.kernel
Subject [PATCH 3/4] irqchip/sunxi-nmi: Support sun9i A80 NMI controller
Date 2015-12-03 09:30 +0100
Message-ID <qBxr4-2rt-25@gated-at.bofh.it> (permalink)
References <qBxr3-2rt-9@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


The A80 moves the NMI controller into the PRCM address space, and also
rearranges the registers.

Signed-off-by: Chen-Yu Tsai <wens@csie.org>
---
 drivers/irqchip/irq-sunxi-nmi.c | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/drivers/irqchip/irq-sunxi-nmi.c b/drivers/irqchip/irq-sunxi-nmi.c
index 4ef178078e5b..0820f67cc9a7 100644
--- a/drivers/irqchip/irq-sunxi-nmi.c
+++ b/drivers/irqchip/irq-sunxi-nmi.c
@@ -50,6 +50,12 @@ static struct sunxi_sc_nmi_reg_offs sun6i_reg_offs = {
 	.enable	= 0x34,
 };
 
+static struct sunxi_sc_nmi_reg_offs sun9i_reg_offs = {
+	.ctrl	= 0x00,
+	.pend	= 0x08,
+	.enable	= 0x04,
+};
+
 static inline void sunxi_sc_nmi_write(struct irq_chip_generic *gc, u32 off,
 				      u32 val)
 {
@@ -207,3 +213,10 @@ static int __init sun7i_sc_nmi_irq_init(struct device_node *node,
 	return sunxi_sc_nmi_irq_init(node, &sun7i_reg_offs);
 }
 IRQCHIP_DECLARE(sun7i_sc_nmi, "allwinner,sun7i-a20-sc-nmi", sun7i_sc_nmi_irq_init);
+
+static int __init sun9i_nmi_irq_init(struct device_node *node,
+				     struct device_node *parent)
+{
+	return sunxi_sc_nmi_irq_init(node, &sun9i_reg_offs);
+}
+IRQCHIP_DECLARE(sun9i_nmi, "allwinner,sun9i-a80-nmi", sun9i_nmi_irq_init);
-- 
2.6.2

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH 0/4] ARM: sun9i: Support Allwinner A80 NMI controller Chen-Yu Tsai <wens@csie.org> - 2015-12-03 09:30 +0100
  [PATCH 3/4] irqchip/sunxi-nmi: Support sun9i A80 NMI controller Chen-Yu Tsai <wens@csie.org> - 2015-12-03 09:30 +0100
    Re: [PATCH 3/4] irqchip/sunxi-nmi: Support sun9i A80 NMI controller Maxime Ripard <maxime.ripard@free-electrons.com> - 2015-12-03 10:50 +0100
  Re: [linux-sunxi] [PATCH 0/4] ARM: sun9i: Support Allwinner A80 NMI  controller Hans de Goede <hdegoede@redhat.com> - 2015-12-03 09:50 +0100
  Re: [PATCH 0/4] ARM: sun9i: Support Allwinner A80 NMI controller Jason Cooper <jason@lakedaemon.net> - 2015-12-03 13:10 +0100
  Re: [PATCH 0/4] ARM: sun9i: Support Allwinner A80 NMI controller Jason Cooper <jason@lakedaemon.net> - 2015-12-03 14:20 +0100

csiph-web