blob: 2029cc5e71c9669444eb2bc26316a5bfebe4a692 [file] [log] [blame]
Maxime Ripardd7fbc6c2013-03-24 10:10:04 +01001/*
2 * Allwinner A1X SoCs IRQ chip driver.
3 *
4 * Copyright (C) 2012 Maxime Ripard
5 *
6 * Maxime Ripard <maxime.ripard@free-electrons.com>
7 *
8 * Based on code from
9 * Allwinner Technology Co., Ltd. <www.allwinnertech.com>
10 * Benn Huang <benn@allwinnertech.com>
11 *
12 * This file is licensed under the terms of the GNU General Public
13 * License version 2. This program is licensed "as is" without any
14 * warranty of any kind, whether express or implied.
15 */
16
17#include <linux/io.h>
18#include <linux/irq.h>
19#include <linux/of.h>
20#include <linux/of_address.h>
21#include <linux/of_irq.h>
22
23#include <asm/exception.h>
24#include <asm/mach/irq.h>
25
26#include "irqchip.h"
27
28#define SUN4I_IRQ_VECTOR_REG 0x00
29#define SUN4I_IRQ_PROTECTION_REG 0x08
30#define SUN4I_IRQ_NMI_CTRL_REG 0x0c
31#define SUN4I_IRQ_PENDING_REG(x) (0x10 + 0x4 * x)
32#define SUN4I_IRQ_FIQ_PENDING_REG(x) (0x20 + 0x4 * x)
33#define SUN4I_IRQ_ENABLE_REG(x) (0x40 + 0x4 * x)
34#define SUN4I_IRQ_MASK_REG(x) (0x50 + 0x4 * x)
35
36static void __iomem *sun4i_irq_base;
37static struct irq_domain *sun4i_irq_domain;
38
Stephen Boyd8783dd32014-03-04 16:40:30 -080039static void __exception_irq_entry sun4i_handle_irq(struct pt_regs *regs);
Maxime Ripardd7fbc6c2013-03-24 10:10:04 +010040
Axel Linbaaecfa2013-07-05 15:41:10 +080041static void sun4i_irq_ack(struct irq_data *irqd)
Maxime Ripardd7fbc6c2013-03-24 10:10:04 +010042{
43 unsigned int irq = irqd_to_hwirq(irqd);
44 unsigned int irq_off = irq % 32;
45 int reg = irq / 32;
46 u32 val;
47
48 val = readl(sun4i_irq_base + SUN4I_IRQ_PENDING_REG(reg));
49 writel(val | (1 << irq_off),
50 sun4i_irq_base + SUN4I_IRQ_PENDING_REG(reg));
51}
52
53static void sun4i_irq_mask(struct irq_data *irqd)
54{
55 unsigned int irq = irqd_to_hwirq(irqd);
56 unsigned int irq_off = irq % 32;
57 int reg = irq / 32;
58 u32 val;
59
60 val = readl(sun4i_irq_base + SUN4I_IRQ_ENABLE_REG(reg));
61 writel(val & ~(1 << irq_off),
62 sun4i_irq_base + SUN4I_IRQ_ENABLE_REG(reg));
63}
64
65static void sun4i_irq_unmask(struct irq_data *irqd)
66{
67 unsigned int irq = irqd_to_hwirq(irqd);
68 unsigned int irq_off = irq % 32;
69 int reg = irq / 32;
70 u32 val;
71
72 val = readl(sun4i_irq_base + SUN4I_IRQ_ENABLE_REG(reg));
73 writel(val | (1 << irq_off),
74 sun4i_irq_base + SUN4I_IRQ_ENABLE_REG(reg));
75}
76
77static struct irq_chip sun4i_irq_chip = {
78 .name = "sun4i_irq",
Maxime Ripardd7fbc6c2013-03-24 10:10:04 +010079 .irq_mask = sun4i_irq_mask,
80 .irq_unmask = sun4i_irq_unmask,
81};
82
Hans de Goedee9df9e22014-03-13 19:03:54 +010083/* IRQ 0 / the ENMI needs a late eoi call */
84static struct irq_chip sun4i_irq_chip_enmi = {
85 .name = "sun4i_irq",
86 .irq_eoi = sun4i_irq_ack,
87 .irq_mask = sun4i_irq_mask,
88 .irq_unmask = sun4i_irq_unmask,
89 .flags = IRQCHIP_EOI_THREADED | IRQCHIP_EOI_IF_HANDLED,
90};
91
Maxime Ripardd7fbc6c2013-03-24 10:10:04 +010092static int sun4i_irq_map(struct irq_domain *d, unsigned int virq,
93 irq_hw_number_t hw)
94{
Hans de Goedee9df9e22014-03-13 19:03:54 +010095 if (hw == 0)
96 irq_set_chip_and_handler(virq, &sun4i_irq_chip_enmi,
97 handle_fasteoi_irq);
98 else
99 irq_set_chip_and_handler(virq, &sun4i_irq_chip,
100 handle_level_irq);
101
Maxime Ripardd7fbc6c2013-03-24 10:10:04 +0100102 set_irq_flags(virq, IRQF_VALID | IRQF_PROBE);
103
104 return 0;
105}
106
107static struct irq_domain_ops sun4i_irq_ops = {
108 .map = sun4i_irq_map,
109 .xlate = irq_domain_xlate_onecell,
110};
111
112static int __init sun4i_of_init(struct device_node *node,
113 struct device_node *parent)
114{
115 sun4i_irq_base = of_iomap(node, 0);
116 if (!sun4i_irq_base)
117 panic("%s: unable to map IC registers\n",
118 node->full_name);
119
120 /* Disable all interrupts */
121 writel(0, sun4i_irq_base + SUN4I_IRQ_ENABLE_REG(0));
122 writel(0, sun4i_irq_base + SUN4I_IRQ_ENABLE_REG(1));
123 writel(0, sun4i_irq_base + SUN4I_IRQ_ENABLE_REG(2));
124
Hans de Goede649ff462014-03-13 19:03:53 +0100125 /* Unmask all the interrupts, ENABLE_REG(x) is used for masking */
Maxime Ripardd7fbc6c2013-03-24 10:10:04 +0100126 writel(0, sun4i_irq_base + SUN4I_IRQ_MASK_REG(0));
127 writel(0, sun4i_irq_base + SUN4I_IRQ_MASK_REG(1));
128 writel(0, sun4i_irq_base + SUN4I_IRQ_MASK_REG(2));
129
130 /* Clear all the pending interrupts */
131 writel(0xffffffff, sun4i_irq_base + SUN4I_IRQ_PENDING_REG(0));
132 writel(0xffffffff, sun4i_irq_base + SUN4I_IRQ_PENDING_REG(1));
133 writel(0xffffffff, sun4i_irq_base + SUN4I_IRQ_PENDING_REG(2));
134
135 /* Enable protection mode */
136 writel(0x01, sun4i_irq_base + SUN4I_IRQ_PROTECTION_REG);
137
138 /* Configure the external interrupt source type */
139 writel(0x00, sun4i_irq_base + SUN4I_IRQ_NMI_CTRL_REG);
140
141 sun4i_irq_domain = irq_domain_add_linear(node, 3 * 32,
142 &sun4i_irq_ops, NULL);
143 if (!sun4i_irq_domain)
144 panic("%s: unable to create IRQ domain\n", node->full_name);
145
146 set_handle_irq(sun4i_handle_irq);
147
148 return 0;
149}
Maxime Riparda7e8b4b2014-02-07 21:50:25 +0100150IRQCHIP_DECLARE(allwinner_sun4i_ic, "allwinner,sun4i-a10-ic", sun4i_of_init);
Maxime Ripardd7fbc6c2013-03-24 10:10:04 +0100151
Stephen Boyd8783dd32014-03-04 16:40:30 -0800152static void __exception_irq_entry sun4i_handle_irq(struct pt_regs *regs)
Maxime Ripardd7fbc6c2013-03-24 10:10:04 +0100153{
154 u32 irq, hwirq;
155
Hans de Goede56af0412014-03-13 19:03:52 +0100156 /*
157 * hwirq == 0 can mean one of 3 things:
158 * 1) no more irqs pending
159 * 2) irq 0 pending
160 * 3) spurious irq
161 * So if we immediately get a reading of 0, check the irq-pending reg
162 * to differentiate between 2 and 3. We only do this once to avoid
163 * the extra check in the common case of 1 hapening after having
164 * read the vector-reg once.
165 */
Maxime Ripardd7fbc6c2013-03-24 10:10:04 +0100166 hwirq = readl(sun4i_irq_base + SUN4I_IRQ_VECTOR_REG) >> 2;
Hans de Goede56af0412014-03-13 19:03:52 +0100167 if (hwirq == 0 &&
168 !(readl(sun4i_irq_base + SUN4I_IRQ_PENDING_REG(0)) & BIT(0)))
169 return;
170
171 do {
Maxime Ripardd7fbc6c2013-03-24 10:10:04 +0100172 irq = irq_find_mapping(sun4i_irq_domain, hwirq);
173 handle_IRQ(irq, regs);
174 hwirq = readl(sun4i_irq_base + SUN4I_IRQ_VECTOR_REG) >> 2;
Hans de Goede56af0412014-03-13 19:03:52 +0100175 } while (hwirq != 0);
Maxime Ripardd7fbc6c2013-03-24 10:10:04 +0100176}