2 * Allwinner A1X SoCs IRQ chip driver.
4 * Copyright (C) 2012 Maxime Ripard
6 * Maxime Ripard <maxime.ripard@free-electrons.com>
9 * Allwinner Technology Co., Ltd. <www.allwinnertech.com>
10 * Benn Huang <benn@allwinnertech.com>
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.
18 #include <linux/irq.h>
20 #include <linux/of_address.h>
21 #include <linux/of_irq.h>
23 #include <asm/exception.h>
24 #include <asm/mach/irq.h>
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)
36 static void __iomem
*sun4i_irq_base
;
37 static struct irq_domain
*sun4i_irq_domain
;
39 static void __exception_irq_entry
sun4i_handle_irq(struct pt_regs
*regs
);
41 static void sun4i_irq_ack(struct irq_data
*irqd
)
43 unsigned int irq
= irqd_to_hwirq(irqd
);
46 return; /* Only IRQ 0 / the ENMI needs to be acked */
48 writel(BIT(0), sun4i_irq_base
+ SUN4I_IRQ_PENDING_REG(0));
51 static void sun4i_irq_mask(struct irq_data
*irqd
)
53 unsigned int irq
= irqd_to_hwirq(irqd
);
54 unsigned int irq_off
= irq
% 32;
58 val
= readl(sun4i_irq_base
+ SUN4I_IRQ_ENABLE_REG(reg
));
59 writel(val
& ~(1 << irq_off
),
60 sun4i_irq_base
+ SUN4I_IRQ_ENABLE_REG(reg
));
63 static void sun4i_irq_unmask(struct irq_data
*irqd
)
65 unsigned int irq
= irqd_to_hwirq(irqd
);
66 unsigned int irq_off
= irq
% 32;
70 val
= readl(sun4i_irq_base
+ SUN4I_IRQ_ENABLE_REG(reg
));
71 writel(val
| (1 << irq_off
),
72 sun4i_irq_base
+ SUN4I_IRQ_ENABLE_REG(reg
));
75 static struct irq_chip sun4i_irq_chip
= {
77 .irq_eoi
= sun4i_irq_ack
,
78 .irq_mask
= sun4i_irq_mask
,
79 .irq_unmask
= sun4i_irq_unmask
,
80 .flags
= IRQCHIP_EOI_THREADED
| IRQCHIP_EOI_IF_HANDLED
,
83 static int sun4i_irq_map(struct irq_domain
*d
, unsigned int virq
,
86 irq_set_chip_and_handler(virq
, &sun4i_irq_chip
, handle_fasteoi_irq
);
87 set_irq_flags(virq
, IRQF_VALID
| IRQF_PROBE
);
92 static struct irq_domain_ops sun4i_irq_ops
= {
94 .xlate
= irq_domain_xlate_onecell
,
97 static int __init
sun4i_of_init(struct device_node
*node
,
98 struct device_node
*parent
)
100 sun4i_irq_base
= of_iomap(node
, 0);
102 panic("%s: unable to map IC registers\n",
105 /* Disable all interrupts */
106 writel(0, sun4i_irq_base
+ SUN4I_IRQ_ENABLE_REG(0));
107 writel(0, sun4i_irq_base
+ SUN4I_IRQ_ENABLE_REG(1));
108 writel(0, sun4i_irq_base
+ SUN4I_IRQ_ENABLE_REG(2));
110 /* Unmask all the interrupts, ENABLE_REG(x) is used for masking */
111 writel(0, sun4i_irq_base
+ SUN4I_IRQ_MASK_REG(0));
112 writel(0, sun4i_irq_base
+ SUN4I_IRQ_MASK_REG(1));
113 writel(0, sun4i_irq_base
+ SUN4I_IRQ_MASK_REG(2));
115 /* Clear all the pending interrupts */
116 writel(0xffffffff, sun4i_irq_base
+ SUN4I_IRQ_PENDING_REG(0));
117 writel(0xffffffff, sun4i_irq_base
+ SUN4I_IRQ_PENDING_REG(1));
118 writel(0xffffffff, sun4i_irq_base
+ SUN4I_IRQ_PENDING_REG(2));
120 /* Enable protection mode */
121 writel(0x01, sun4i_irq_base
+ SUN4I_IRQ_PROTECTION_REG
);
123 /* Configure the external interrupt source type */
124 writel(0x00, sun4i_irq_base
+ SUN4I_IRQ_NMI_CTRL_REG
);
126 sun4i_irq_domain
= irq_domain_add_linear(node
, 3 * 32,
127 &sun4i_irq_ops
, NULL
);
128 if (!sun4i_irq_domain
)
129 panic("%s: unable to create IRQ domain\n", node
->full_name
);
131 set_handle_irq(sun4i_handle_irq
);
135 IRQCHIP_DECLARE(allwinner_sun4i_ic
, "allwinner,sun4i-a10-ic", sun4i_of_init
);
137 static void __exception_irq_entry
sun4i_handle_irq(struct pt_regs
*regs
)
142 * hwirq == 0 can mean one of 3 things:
143 * 1) no more irqs pending
146 * So if we immediately get a reading of 0, check the irq-pending reg
147 * to differentiate between 2 and 3. We only do this once to avoid
148 * the extra check in the common case of 1 hapening after having
149 * read the vector-reg once.
151 hwirq
= readl(sun4i_irq_base
+ SUN4I_IRQ_VECTOR_REG
) >> 2;
153 !(readl(sun4i_irq_base
+ SUN4I_IRQ_PENDING_REG(0)) & BIT(0)))
157 irq
= irq_find_mapping(sun4i_irq_domain
, hwirq
);
158 handle_IRQ(irq
, regs
);
159 hwirq
= readl(sun4i_irq_base
+ SUN4I_IRQ_VECTOR_REG
) >> 2;
160 } while (hwirq
!= 0);