1 // SPDX-License-Identifier: GPL-2.0-only
3 * linux/arch/unicore32/kernel/irq.c
5 * Code specific to PKUnity SoC and UniCore ISA
7 * Copyright (C) 2001-2010 GUAN Xue-tao
9 #include <linux/kernel_stat.h>
10 #include <linux/module.h>
11 #include <linux/signal.h>
12 #include <linux/ioport.h>
13 #include <linux/interrupt.h>
14 #include <linux/irq.h>
15 #include <linux/random.h>
16 #include <linux/smp.h>
17 #include <linux/init.h>
18 #include <linux/seq_file.h>
19 #include <linux/errno.h>
20 #include <linux/list.h>
21 #include <linux/kallsyms.h>
22 #include <linux/proc_fs.h>
23 #include <linux/syscore_ops.h>
25 #include <mach/hardware.h>
30 * PKUnity GPIO edge detection for IRQs:
31 * IRQs are generated on Falling-Edge, Rising-Edge, or both.
32 * Use this instead of directly setting GRER/GFER.
34 static int GPIO_IRQ_rising_edge
;
35 static int GPIO_IRQ_falling_edge
;
36 static int GPIO_IRQ_mask
= 0;
38 #define GPIO_MASK(irq) (1 << (irq - IRQ_GPIO0))
40 static int puv3_gpio_type(struct irq_data
*d
, unsigned int type
)
44 if (d
->irq
< IRQ_GPIOHIGH
)
47 mask
= GPIO_MASK(d
->irq
);
49 if (type
== IRQ_TYPE_PROBE
) {
50 if ((GPIO_IRQ_rising_edge
| GPIO_IRQ_falling_edge
) & mask
)
52 type
= IRQ_TYPE_EDGE_RISING
| IRQ_TYPE_EDGE_FALLING
;
55 if (type
& IRQ_TYPE_EDGE_RISING
)
56 GPIO_IRQ_rising_edge
|= mask
;
58 GPIO_IRQ_rising_edge
&= ~mask
;
59 if (type
& IRQ_TYPE_EDGE_FALLING
)
60 GPIO_IRQ_falling_edge
|= mask
;
62 GPIO_IRQ_falling_edge
&= ~mask
;
64 writel(GPIO_IRQ_rising_edge
& GPIO_IRQ_mask
, GPIO_GRER
);
65 writel(GPIO_IRQ_falling_edge
& GPIO_IRQ_mask
, GPIO_GFER
);
71 * GPIO IRQs must be acknowledged. This is for IRQs from 0 to 7.
73 static void puv3_low_gpio_ack(struct irq_data
*d
)
75 writel((1 << d
->irq
), GPIO_GEDR
);
78 static void puv3_low_gpio_mask(struct irq_data
*d
)
80 writel(readl(INTC_ICMR
) & ~(1 << d
->irq
), INTC_ICMR
);
83 static void puv3_low_gpio_unmask(struct irq_data
*d
)
85 writel(readl(INTC_ICMR
) | (1 << d
->irq
), INTC_ICMR
);
88 static int puv3_low_gpio_wake(struct irq_data
*d
, unsigned int on
)
91 writel(readl(PM_PWER
) | (1 << d
->irq
), PM_PWER
);
93 writel(readl(PM_PWER
) & ~(1 << d
->irq
), PM_PWER
);
97 static struct irq_chip puv3_low_gpio_chip
= {
99 .irq_ack
= puv3_low_gpio_ack
,
100 .irq_mask
= puv3_low_gpio_mask
,
101 .irq_unmask
= puv3_low_gpio_unmask
,
102 .irq_set_type
= puv3_gpio_type
,
103 .irq_set_wake
= puv3_low_gpio_wake
,
107 * IRQ8 (GPIO0 through 27) handler. We enter here with the
108 * irq_controller_lock held, and IRQs disabled. Decode the IRQ
109 * and call the handler.
111 static void puv3_gpio_handler(struct irq_desc
*desc
)
113 unsigned int mask
, irq
;
115 mask
= readl(GPIO_GEDR
);
118 * clear down all currently active IRQ sources.
119 * We will be processing them all.
121 writel(mask
, GPIO_GEDR
);
126 generic_handle_irq(irq
);
130 mask
= readl(GPIO_GEDR
);
135 * GPIO0-27 edge IRQs need to be handled specially.
136 * In addition, the IRQs are all collected up into one bit in the
137 * interrupt controller registers.
139 static void puv3_high_gpio_ack(struct irq_data
*d
)
141 unsigned int mask
= GPIO_MASK(d
->irq
);
143 writel(mask
, GPIO_GEDR
);
146 static void puv3_high_gpio_mask(struct irq_data
*d
)
148 unsigned int mask
= GPIO_MASK(d
->irq
);
150 GPIO_IRQ_mask
&= ~mask
;
152 writel(readl(GPIO_GRER
) & ~mask
, GPIO_GRER
);
153 writel(readl(GPIO_GFER
) & ~mask
, GPIO_GFER
);
156 static void puv3_high_gpio_unmask(struct irq_data
*d
)
158 unsigned int mask
= GPIO_MASK(d
->irq
);
160 GPIO_IRQ_mask
|= mask
;
162 writel(GPIO_IRQ_rising_edge
& GPIO_IRQ_mask
, GPIO_GRER
);
163 writel(GPIO_IRQ_falling_edge
& GPIO_IRQ_mask
, GPIO_GFER
);
166 static int puv3_high_gpio_wake(struct irq_data
*d
, unsigned int on
)
169 writel(readl(PM_PWER
) | PM_PWER_GPIOHIGH
, PM_PWER
);
171 writel(readl(PM_PWER
) & ~PM_PWER_GPIOHIGH
, PM_PWER
);
175 static struct irq_chip puv3_high_gpio_chip
= {
177 .irq_ack
= puv3_high_gpio_ack
,
178 .irq_mask
= puv3_high_gpio_mask
,
179 .irq_unmask
= puv3_high_gpio_unmask
,
180 .irq_set_type
= puv3_gpio_type
,
181 .irq_set_wake
= puv3_high_gpio_wake
,
185 * We don't need to ACK IRQs on the PKUnity unless they're GPIOs
186 * this is for internal IRQs i.e. from 8 to 31.
188 static void puv3_mask_irq(struct irq_data
*d
)
190 writel(readl(INTC_ICMR
) & ~(1 << d
->irq
), INTC_ICMR
);
193 static void puv3_unmask_irq(struct irq_data
*d
)
195 writel(readl(INTC_ICMR
) | (1 << d
->irq
), INTC_ICMR
);
199 * Apart form GPIOs, only the RTC alarm can be a wakeup event.
201 static int puv3_set_wake(struct irq_data
*d
, unsigned int on
)
203 if (d
->irq
== IRQ_RTCAlarm
) {
205 writel(readl(PM_PWER
) | PM_PWER_RTC
, PM_PWER
);
207 writel(readl(PM_PWER
) & ~PM_PWER_RTC
, PM_PWER
);
213 static struct irq_chip puv3_normal_chip
= {
214 .name
= "PKUnity-v3",
215 .irq_ack
= puv3_mask_irq
,
216 .irq_mask
= puv3_mask_irq
,
217 .irq_unmask
= puv3_unmask_irq
,
218 .irq_set_wake
= puv3_set_wake
,
221 static struct resource irq_resource
= {
223 .start
= io_v2p(PKUNITY_INTC_BASE
),
224 .end
= io_v2p(PKUNITY_INTC_BASE
) + 0xFFFFF,
227 static struct puv3_irq_state
{
234 static int puv3_irq_suspend(void)
236 struct puv3_irq_state
*st
= &puv3_irq_state
;
239 st
->icmr
= readl(INTC_ICMR
);
240 st
->iclr
= readl(INTC_ICLR
);
241 st
->iccr
= readl(INTC_ICCR
);
244 * Disable all GPIO-based interrupts.
246 writel(readl(INTC_ICMR
) & ~(0x1ff), INTC_ICMR
);
249 * Set the appropriate edges for wakeup.
251 writel(readl(PM_PWER
) & GPIO_IRQ_rising_edge
, GPIO_GRER
);
252 writel(readl(PM_PWER
) & GPIO_IRQ_falling_edge
, GPIO_GFER
);
255 * Clear any pending GPIO interrupts.
257 writel(readl(GPIO_GEDR
), GPIO_GEDR
);
262 static void puv3_irq_resume(void)
264 struct puv3_irq_state
*st
= &puv3_irq_state
;
267 writel(st
->iccr
, INTC_ICCR
);
268 writel(st
->iclr
, INTC_ICLR
);
270 writel(GPIO_IRQ_rising_edge
& GPIO_IRQ_mask
, GPIO_GRER
);
271 writel(GPIO_IRQ_falling_edge
& GPIO_IRQ_mask
, GPIO_GFER
);
273 writel(st
->icmr
, INTC_ICMR
);
277 static struct syscore_ops puv3_irq_syscore_ops
= {
278 .suspend
= puv3_irq_suspend
,
279 .resume
= puv3_irq_resume
,
282 static int __init
puv3_irq_init_syscore(void)
284 register_syscore_ops(&puv3_irq_syscore_ops
);
288 device_initcall(puv3_irq_init_syscore
);
290 void __init
init_IRQ(void)
294 request_resource(&iomem_resource
, &irq_resource
);
296 /* disable all IRQs */
297 writel(0, INTC_ICMR
);
299 /* all IRQs are IRQ, not REAL */
300 writel(0, INTC_ICLR
);
302 /* clear all GPIO edge detects */
303 writel(FMASK(8, 0) & ~FIELD(1, 1, GPI_SOFF_REQ
), GPIO_GPIR
);
304 writel(0, GPIO_GFER
);
305 writel(0, GPIO_GRER
);
306 writel(0x0FFFFFFF, GPIO_GEDR
);
308 writel(1, INTC_ICCR
);
310 for (irq
= 0; irq
< IRQ_GPIOHIGH
; irq
++) {
311 irq_set_chip(irq
, &puv3_low_gpio_chip
);
312 irq_set_handler(irq
, handle_edge_irq
);
313 irq_modify_status(irq
,
314 IRQ_NOREQUEST
| IRQ_NOPROBE
| IRQ_NOAUTOEN
,
318 for (irq
= IRQ_GPIOHIGH
+ 1; irq
< IRQ_GPIO0
; irq
++) {
319 irq_set_chip(irq
, &puv3_normal_chip
);
320 irq_set_handler(irq
, handle_level_irq
);
321 irq_modify_status(irq
,
322 IRQ_NOREQUEST
| IRQ_NOAUTOEN
,
326 for (irq
= IRQ_GPIO0
; irq
<= IRQ_GPIO27
; irq
++) {
327 irq_set_chip(irq
, &puv3_high_gpio_chip
);
328 irq_set_handler(irq
, handle_edge_irq
);
329 irq_modify_status(irq
,
330 IRQ_NOREQUEST
| IRQ_NOPROBE
| IRQ_NOAUTOEN
,
335 * Install handler for GPIO 0-27 edge detect interrupts
337 irq_set_chip(IRQ_GPIOHIGH
, &puv3_normal_chip
);
338 irq_set_chained_handler(IRQ_GPIOHIGH
, puv3_gpio_handler
);
340 #ifdef CONFIG_PUV3_GPIO
346 * do_IRQ handles all hardware IRQ's. Decoded IRQs should not
347 * come via this function. Instead, they should provide their
350 asmlinkage
void asm_do_IRQ(unsigned int irq
, struct pt_regs
*regs
)
352 struct pt_regs
*old_regs
= set_irq_regs(regs
);
357 * Some hardware gives randomly wrong interrupts. Rather
358 * than crashing, do something sensible.
360 if (unlikely(irq
>= nr_irqs
)) {
361 if (printk_ratelimit())
362 printk(KERN_WARNING
"Bad IRQ%u\n", irq
);
365 generic_handle_irq(irq
);
369 set_irq_regs(old_regs
);