blob: 5589b23ed043e039745a70b74b5576fcd094dfac [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/mach-sa1100/irq.c
3 *
4 * Copyright (C) 1999-2001 Nicolas Pitre
5 *
6 * Generic IRQ handling for the SA11x0, GPIO 11-27 IRQ demultiplexing.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12#include <linux/init.h>
13#include <linux/module.h>
Thomas Gleixner119c6412006-07-01 22:32:38 +010014#include <linux/interrupt.h>
Russell King31696632012-06-06 11:42:36 +010015#include <linux/io.h>
Thomas Gleixner119c6412006-07-01 22:32:38 +010016#include <linux/irq.h>
Dmitry Eremin-Solenikov1eca42b2014-11-28 15:56:54 +010017#include <linux/irqdomain.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/ioport.h>
Rafael J. Wysocki90533982011-04-22 22:03:03 +020019#include <linux/syscore_ops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Russell Kinga09e64f2008-08-05 16:14:15 +010021#include <mach/hardware.h>
Rob Herringf314f332012-02-24 00:06:51 +010022#include <mach/irqs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/mach/irq.h>
Dmitry Eremin-Solenikovaffcab32014-11-28 15:55:16 +010024#include <asm/exception.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26#include "generic.h"
27
28
29/*
Dmitry Eremin-Solenikovab71f992014-11-28 15:57:52 +010030 * We don't need to ACK IRQs on the SA1100 unless they're GPIOs
31 * this is for internal IRQs i.e. from IRQ LCD to RTCAlrm.
32 */
33static void sa1100_mask_irq(struct irq_data *d)
34{
35 ICMR &= ~BIT(d->hwirq);
36}
37
38static void sa1100_unmask_irq(struct irq_data *d)
39{
40 ICMR |= BIT(d->hwirq);
41}
42
43/*
44 * Apart form GPIOs, only the RTC alarm can be a wakeup event.
45 */
46static int sa1100_set_wake(struct irq_data *d, unsigned int on)
47{
48 if (BIT(d->hwirq) == IC_RTCAlrm) {
49 if (on)
50 PWER |= PWER_RTC;
51 else
52 PWER &= ~PWER_RTC;
53 return 0;
54 }
55 return -EINVAL;
56}
57
58static struct irq_chip sa1100_normal_chip = {
59 .name = "SC",
60 .irq_ack = sa1100_mask_irq,
61 .irq_mask = sa1100_mask_irq,
62 .irq_unmask = sa1100_unmask_irq,
63 .irq_set_wake = sa1100_set_wake,
64};
65
66static int sa1100_normal_irqdomain_map(struct irq_domain *d,
67 unsigned int irq, irq_hw_number_t hwirq)
68{
69 irq_set_chip_and_handler(irq, &sa1100_normal_chip,
70 handle_level_irq);
71 set_irq_flags(irq, IRQF_VALID);
72
73 return 0;
74}
75
76static struct irq_domain_ops sa1100_normal_irqdomain_ops = {
77 .map = sa1100_normal_irqdomain_map,
78 .xlate = irq_domain_xlate_onetwocell,
79};
80
81static struct irq_domain *sa1100_normal_irqdomain;
82
83/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 * SA1100 GPIO edge detection for IRQs:
85 * IRQs are generated on Falling-Edge, Rising-Edge, or both.
86 * Use this instead of directly setting GRER/GFER.
87 */
88static int GPIO_IRQ_rising_edge;
89static int GPIO_IRQ_falling_edge;
Dmitry Eremin-Solenikov83508092015-01-15 02:29:16 +010090static int GPIO_IRQ_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Lennert Buytenhekc4e89642010-11-29 11:12:06 +010092static int sa1100_gpio_type(struct irq_data *d, unsigned int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
94 unsigned int mask;
95
Dmitry Eremin-Solenikov1eeec6a2014-11-28 15:57:32 +010096 mask = BIT(d->hwirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +010098 if (type == IRQ_TYPE_PROBE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 if ((GPIO_IRQ_rising_edge | GPIO_IRQ_falling_edge) & mask)
100 return 0;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100101 type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 }
103
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100104 if (type & IRQ_TYPE_EDGE_RISING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 GPIO_IRQ_rising_edge |= mask;
106 } else
107 GPIO_IRQ_rising_edge &= ~mask;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100108 if (type & IRQ_TYPE_EDGE_FALLING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 GPIO_IRQ_falling_edge |= mask;
110 } else
111 GPIO_IRQ_falling_edge &= ~mask;
112
113 GRER = GPIO_IRQ_rising_edge & GPIO_IRQ_mask;
114 GFER = GPIO_IRQ_falling_edge & GPIO_IRQ_mask;
115
116 return 0;
117}
118
119/*
Dmitry Eremin-Solenikovab71f992014-11-28 15:57:52 +0100120 * GPIO IRQs must be acknowledged.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 */
Dmitry Eremin-Solenikovab71f992014-11-28 15:57:52 +0100122static void sa1100_gpio_ack(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Dmitry Eremin-Solenikov1eeec6a2014-11-28 15:57:32 +0100124 GEDR = BIT(d->hwirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
126
Dmitry Eremin-Solenikov83508092015-01-15 02:29:16 +0100127static void sa1100_gpio_mask(struct irq_data *d)
128{
129 unsigned int mask = BIT(d->hwirq);
130
131 GPIO_IRQ_mask &= ~mask;
132
133 GRER &= ~mask;
134 GFER &= ~mask;
135}
136
137static void sa1100_gpio_unmask(struct irq_data *d)
138{
139 unsigned int mask = BIT(d->hwirq);
140
141 GPIO_IRQ_mask |= mask;
142
143 GRER = GPIO_IRQ_rising_edge & GPIO_IRQ_mask;
144 GFER = GPIO_IRQ_falling_edge & GPIO_IRQ_mask;
145}
146
Dmitry Eremin-Solenikovab71f992014-11-28 15:57:52 +0100147static int sa1100_gpio_wake(struct irq_data *d, unsigned int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
149 if (on)
Dmitry Eremin-Solenikov1eeec6a2014-11-28 15:57:32 +0100150 PWER |= BIT(d->hwirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 else
Dmitry Eremin-Solenikov1eeec6a2014-11-28 15:57:32 +0100152 PWER &= ~BIT(d->hwirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 return 0;
154}
155
Dmitry Eremin-Solenikovab71f992014-11-28 15:57:52 +0100156/*
Dmitry Eremin-Solenikov590f2662015-01-15 02:30:58 +0100157 * This is for GPIO IRQs
Dmitry Eremin-Solenikovab71f992014-11-28 15:57:52 +0100158 */
Dmitry Eremin-Solenikov590f2662015-01-15 02:30:58 +0100159static struct irq_chip sa1100_gpio_chip = {
160 .name = "GPIO",
Dmitry Eremin-Solenikovab71f992014-11-28 15:57:52 +0100161 .irq_ack = sa1100_gpio_ack,
Dmitry Eremin-Solenikov83508092015-01-15 02:29:16 +0100162 .irq_mask = sa1100_gpio_mask,
163 .irq_unmask = sa1100_gpio_unmask,
Lennert Buytenhekc4e89642010-11-29 11:12:06 +0100164 .irq_set_type = sa1100_gpio_type,
Dmitry Eremin-Solenikovab71f992014-11-28 15:57:52 +0100165 .irq_set_wake = sa1100_gpio_wake,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166};
167
Dmitry Eremin-Solenikov590f2662015-01-15 02:30:58 +0100168static int sa1100_gpio_irqdomain_map(struct irq_domain *d,
Dmitry Eremin-Solenikov1eca42b2014-11-28 15:56:54 +0100169 unsigned int irq, irq_hw_number_t hwirq)
170{
Dmitry Eremin-Solenikov590f2662015-01-15 02:30:58 +0100171 irq_set_chip_and_handler(irq, &sa1100_gpio_chip,
Dmitry Eremin-Solenikov1eca42b2014-11-28 15:56:54 +0100172 handle_edge_irq);
173 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
174
175 return 0;
176}
177
Dmitry Eremin-Solenikov590f2662015-01-15 02:30:58 +0100178static struct irq_domain_ops sa1100_gpio_irqdomain_ops = {
179 .map = sa1100_gpio_irqdomain_map,
Dmitry Eremin-Solenikov1eca42b2014-11-28 15:56:54 +0100180 .xlate = irq_domain_xlate_onetwocell,
181};
182
Dmitry Eremin-Solenikov590f2662015-01-15 02:30:58 +0100183static struct irq_domain *sa1100_gpio_irqdomain;
Dmitry Eremin-Solenikov1eca42b2014-11-28 15:56:54 +0100184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185/*
Dmitry Eremin-Solenikov83508092015-01-15 02:29:16 +0100186 * IRQ 0-11 (GPIO) handler. We enter here with the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 * irq_controller_lock held, and IRQs disabled. Decode the IRQ
188 * and call the handler.
189 */
190static void
Dmitry Eremin-Solenikov83508092015-01-15 02:29:16 +0100191sa1100_gpio_handler(unsigned int irq, struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
193 unsigned int mask;
194
Dmitry Eremin-Solenikov83508092015-01-15 02:29:16 +0100195 mask = GEDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 do {
197 /*
198 * clear down all currently active IRQ sources.
199 * We will be processing them all.
200 */
201 GEDR = mask;
202
Dmitry Eremin-Solenikov83508092015-01-15 02:29:16 +0100203 irq = IRQ_GPIO0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 do {
205 if (mask & 1)
Dmitry Baryshkovd8aa0252008-10-09 13:36:24 +0100206 generic_handle_irq(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 mask >>= 1;
208 irq++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 } while (mask);
210
Dmitry Eremin-Solenikov83508092015-01-15 02:29:16 +0100211 mask = GEDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 } while (mask);
213}
214
Russell Kinga1810992012-01-12 10:25:29 +0000215static struct resource irq_resource =
216 DEFINE_RES_MEM_NAMED(0x90050000, SZ_64K, "irqs");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218static struct sa1100irq_state {
219 unsigned int saved;
220 unsigned int icmr;
221 unsigned int iclr;
222 unsigned int iccr;
223} sa1100irq_state;
224
Rafael J. Wysocki90533982011-04-22 22:03:03 +0200225static int sa1100irq_suspend(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
227 struct sa1100irq_state *st = &sa1100irq_state;
228
229 st->saved = 1;
230 st->icmr = ICMR;
231 st->iclr = ICLR;
232 st->iccr = ICCR;
233
234 /*
235 * Disable all GPIO-based interrupts.
236 */
237 ICMR &= ~(IC_GPIO11_27|IC_GPIO10|IC_GPIO9|IC_GPIO8|IC_GPIO7|
238 IC_GPIO6|IC_GPIO5|IC_GPIO4|IC_GPIO3|IC_GPIO2|
239 IC_GPIO1|IC_GPIO0);
240
241 /*
242 * Set the appropriate edges for wakeup.
243 */
244 GRER = PWER & GPIO_IRQ_rising_edge;
245 GFER = PWER & GPIO_IRQ_falling_edge;
246
247 /*
248 * Clear any pending GPIO interrupts.
249 */
250 GEDR = GEDR;
251
252 return 0;
253}
254
Rafael J. Wysocki90533982011-04-22 22:03:03 +0200255static void sa1100irq_resume(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
257 struct sa1100irq_state *st = &sa1100irq_state;
258
259 if (st->saved) {
260 ICCR = st->iccr;
261 ICLR = st->iclr;
262
263 GRER = GPIO_IRQ_rising_edge & GPIO_IRQ_mask;
264 GFER = GPIO_IRQ_falling_edge & GPIO_IRQ_mask;
265
266 ICMR = st->icmr;
267 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268}
269
Rafael J. Wysocki90533982011-04-22 22:03:03 +0200270static struct syscore_ops sa1100irq_syscore_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 .suspend = sa1100irq_suspend,
272 .resume = sa1100irq_resume,
273};
274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275static int __init sa1100irq_init_devicefs(void)
276{
Rafael J. Wysocki90533982011-04-22 22:03:03 +0200277 register_syscore_ops(&sa1100irq_syscore_ops);
278 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
281device_initcall(sa1100irq_init_devicefs);
282
Dmitry Eremin-Solenikovaffcab32014-11-28 15:55:16 +0100283static asmlinkage void __exception_irq_entry
284sa1100_handle_irq(struct pt_regs *regs)
285{
286 uint32_t icip, icmr, mask;
287
288 do {
289 icip = (ICIP);
290 icmr = (ICMR);
291 mask = icip & icmr;
292
293 if (mask == 0)
294 break;
295
Dmitry Eremin-Solenikov83508092015-01-15 02:29:16 +0100296 handle_IRQ(ffs(mask) - 1 + IRQ_GPIO0_SC, regs);
Dmitry Eremin-Solenikovaffcab32014-11-28 15:55:16 +0100297 } while (1);
298}
299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300void __init sa1100_init_irq(void)
301{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 request_resource(&iomem_resource, &irq_resource);
303
304 /* disable all IRQs */
305 ICMR = 0;
306
307 /* all IRQs are IRQ, not FIQ */
308 ICLR = 0;
309
310 /* clear all GPIO edge detects */
311 GFER = 0;
312 GRER = 0;
313 GEDR = -1;
314
315 /*
316 * Whatever the doc says, this has to be set for the wait-on-irq
317 * instruction to work... on a SA1100 rev 9 at least.
318 */
319 ICCR = 1;
320
Dmitry Eremin-Solenikov83508092015-01-15 02:29:16 +0100321 sa1100_normal_irqdomain = irq_domain_add_legacy(NULL,
322 32, IRQ_GPIO0_SC, 0,
323 &sa1100_normal_irqdomain_ops, NULL);
324
Dmitry Eremin-Solenikov590f2662015-01-15 02:30:58 +0100325 sa1100_gpio_irqdomain = irq_domain_add_legacy(NULL,
326 28, IRQ_GPIO0, 0,
327 &sa1100_gpio_irqdomain_ops, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329 /*
Dmitry Eremin-Solenikov83508092015-01-15 02:29:16 +0100330 * Install handlers for GPIO 0-10 edge detect interrupts
331 */
332 irq_set_chained_handler(IRQ_GPIO0_SC, sa1100_gpio_handler);
333 irq_set_chained_handler(IRQ_GPIO1_SC, sa1100_gpio_handler);
334 irq_set_chained_handler(IRQ_GPIO2_SC, sa1100_gpio_handler);
335 irq_set_chained_handler(IRQ_GPIO3_SC, sa1100_gpio_handler);
336 irq_set_chained_handler(IRQ_GPIO4_SC, sa1100_gpio_handler);
337 irq_set_chained_handler(IRQ_GPIO5_SC, sa1100_gpio_handler);
338 irq_set_chained_handler(IRQ_GPIO6_SC, sa1100_gpio_handler);
339 irq_set_chained_handler(IRQ_GPIO7_SC, sa1100_gpio_handler);
340 irq_set_chained_handler(IRQ_GPIO8_SC, sa1100_gpio_handler);
341 irq_set_chained_handler(IRQ_GPIO9_SC, sa1100_gpio_handler);
342 irq_set_chained_handler(IRQ_GPIO10_SC, sa1100_gpio_handler);
343 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 * Install handler for GPIO 11-27 edge detect interrupts
345 */
Dmitry Eremin-Solenikov83508092015-01-15 02:29:16 +0100346 irq_set_chained_handler(IRQ_GPIO11_27, sa1100_gpio_handler);
Dmitry Baryshkov45528e32008-04-10 13:31:47 +0100347
Dmitry Eremin-Solenikovaffcab32014-11-28 15:55:16 +0100348 set_handle_irq(sa1100_handle_irq);
349
Dmitry Baryshkov45528e32008-04-10 13:31:47 +0100350 sa1100_init_gpio();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}