blob: 6251e3f5c62c0399a8c019d71e576de1cab49974 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/mach-pxa/irq.c
3 *
eric miaoe3630db2008-03-04 11:42:26 +08004 * Generic PXA IRQ handling
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Author: Nicolas Pitre
7 * Created: Jun 15, 2001
8 * Copyright: MontaVista Software Inc.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
14
15#include <linux/init.h>
16#include <linux/module.h>
17#include <linux/interrupt.h>
eric miaoc01655042008-01-28 23:00:02 +000018#include <linux/sysdev.h>
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080019#include <linux/io.h>
20#include <linux/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Russell Kinga09e64f2008-08-05 16:14:15 +010022#include <mach/hardware.h>
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080023#include <mach/irqs.h>
Eric Miaoa58fbcd2009-01-06 17:37:37 +080024#include <mach/gpio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26#include "generic.h"
27
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080028#define IRQ_BASE (void __iomem *)io_p2v(0x40d00000)
Haojian Zhuangc482ae42009-11-02 14:02:21 -050029
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080030#define ICIP (0x000)
31#define ICMR (0x004)
32#define ICLR (0x008)
33#define ICFR (0x00c)
34#define ICPR (0x010)
35#define ICCR (0x014)
36#define ICHP (0x018)
37#define IPR(i) (((i) < 32) ? (0x01c + ((i) << 2)) : \
38 ((i) < 64) ? (0x0b0 + (((i) - 32) << 2)) : \
39 (0x144 + (((i) - 64) << 2)))
40#define IPR_VALID (1 << 31)
41#define IRQ_BIT(n) (((n) - PXA_IRQ(0)) & 0x1f)
42
43#define MAX_INTERNAL_IRQS 128
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45/*
46 * This is for peripheral IRQs internal to the PXA chip.
47 */
48
eric miaof6fb7af2008-03-04 13:53:05 +080049static int pxa_internal_irq_nr;
50
Haojian Zhuangbb71bdd2010-11-17 19:03:36 +080051static inline int cpu_has_ipr(void)
52{
53 return !cpu_is_pxa25x();
54}
55
Eric Miaoa1015a12011-01-12 16:42:24 -060056static inline void __iomem *irq_base(int i)
57{
58 static unsigned long phys_base[] = {
59 0x40d00000,
60 0x40d0009c,
61 0x40d00130,
62 };
63
64 return (void __iomem *)io_p2v(phys_base[i]);
65}
66
Lennert Buytenheka3f4c922010-11-29 11:18:26 +010067static void pxa_mask_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
Lennert Buytenheka3f4c922010-11-29 11:18:26 +010069 void __iomem *base = irq_data_get_irq_chip_data(d);
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080070 uint32_t icmr = __raw_readl(base + ICMR);
71
Lennert Buytenheka3f4c922010-11-29 11:18:26 +010072 icmr &= ~(1 << IRQ_BIT(d->irq));
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080073 __raw_writel(icmr, base + ICMR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074}
75
Lennert Buytenheka3f4c922010-11-29 11:18:26 +010076static void pxa_unmask_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
Lennert Buytenheka3f4c922010-11-29 11:18:26 +010078 void __iomem *base = irq_data_get_irq_chip_data(d);
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080079 uint32_t icmr = __raw_readl(base + ICMR);
80
Lennert Buytenheka3f4c922010-11-29 11:18:26 +010081 icmr |= 1 << IRQ_BIT(d->irq);
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +080082 __raw_writel(icmr, base + ICMR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083}
84
eric miaof6fb7af2008-03-04 13:53:05 +080085static struct irq_chip pxa_internal_irq_chip = {
David Brownell38c677c2006-08-01 22:26:25 +010086 .name = "SC",
Lennert Buytenheka3f4c922010-11-29 11:18:26 +010087 .irq_ack = pxa_mask_irq,
88 .irq_mask = pxa_mask_irq,
89 .irq_unmask = pxa_unmask_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -070090};
91
Eric Miaoa58fbcd2009-01-06 17:37:37 +080092/*
93 * GPIO IRQs for GPIO 0 and 1
94 */
Lennert Buytenheka3f4c922010-11-29 11:18:26 +010095static int pxa_set_low_gpio_type(struct irq_data *d, unsigned int type)
Eric Miaoa58fbcd2009-01-06 17:37:37 +080096{
Lennert Buytenheka3f4c922010-11-29 11:18:26 +010097 int gpio = d->irq - IRQ_GPIO0;
Eric Miaoa58fbcd2009-01-06 17:37:37 +080098
99 if (__gpio_is_occupied(gpio)) {
100 pr_err("%s failed: GPIO is configured\n", __func__);
101 return -EINVAL;
102 }
103
104 if (type & IRQ_TYPE_EDGE_RISING)
105 GRER0 |= GPIO_bit(gpio);
106 else
107 GRER0 &= ~GPIO_bit(gpio);
108
109 if (type & IRQ_TYPE_EDGE_FALLING)
110 GFER0 |= GPIO_bit(gpio);
111 else
112 GFER0 &= ~GPIO_bit(gpio);
113
114 return 0;
115}
116
Lennert Buytenheka3f4c922010-11-29 11:18:26 +0100117static void pxa_ack_low_gpio(struct irq_data *d)
Eric Miaoa58fbcd2009-01-06 17:37:37 +0800118{
Lennert Buytenheka3f4c922010-11-29 11:18:26 +0100119 GEDR0 = (1 << (d->irq - IRQ_GPIO0));
Eric Miaoa58fbcd2009-01-06 17:37:37 +0800120}
121
Eric Miaoa58fbcd2009-01-06 17:37:37 +0800122static struct irq_chip pxa_low_gpio_chip = {
123 .name = "GPIO-l",
Lennert Buytenheka3f4c922010-11-29 11:18:26 +0100124 .irq_ack = pxa_ack_low_gpio,
Eric Miaoa1015a12011-01-12 16:42:24 -0600125 .irq_mask = pxa_mask_irq,
126 .irq_unmask = pxa_unmask_irq,
Lennert Buytenheka3f4c922010-11-29 11:18:26 +0100127 .irq_set_type = pxa_set_low_gpio_type,
Eric Miaoa58fbcd2009-01-06 17:37:37 +0800128};
129
130static void __init pxa_init_low_gpio_irq(set_wake_t fn)
131{
132 int irq;
133
134 /* clear edge detection on GPIO 0 and 1 */
135 GFER0 &= ~0x3;
136 GRER0 &= ~0x3;
137 GEDR0 = 0x3;
138
139 for (irq = IRQ_GPIO0; irq <= IRQ_GPIO1; irq++) {
Thomas Gleixnerf38c02f2011-03-24 13:35:09 +0100140 irq_set_chip_and_handler(irq, &pxa_low_gpio_chip,
141 handle_edge_irq);
Thomas Gleixner9323f2612011-03-24 13:29:39 +0100142 irq_set_chip_data(irq, irq_base(0));
Eric Miaoa58fbcd2009-01-06 17:37:37 +0800143 set_irq_flags(irq, IRQF_VALID);
144 }
145
Lennert Buytenheka3f4c922010-11-29 11:18:26 +0100146 pxa_low_gpio_chip.irq_set_wake = fn;
Eric Miaoa58fbcd2009-01-06 17:37:37 +0800147}
148
eric miaob9e25ac2008-03-04 14:19:58 +0800149void __init pxa_init_irq(int irq_nr, set_wake_t fn)
Eric Miao53665a52007-06-06 06:36:04 +0100150{
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800151 int irq, i, n;
Eric Miao53665a52007-06-06 06:36:04 +0100152
Haojian Zhuangc482ae42009-11-02 14:02:21 -0500153 BUG_ON(irq_nr > MAX_INTERNAL_IRQS);
154
eric miaof6fb7af2008-03-04 13:53:05 +0800155 pxa_internal_irq_nr = irq_nr;
Eric Miao53665a52007-06-06 06:36:04 +0100156
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800157 for (n = 0; n < irq_nr; n += 32) {
Marek Vasut1b624fb2011-01-10 23:53:12 +0100158 void __iomem *base = irq_base(n >> 5);
Eric Miao53665a52007-06-06 06:36:04 +0100159
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800160 __raw_writel(0, base + ICMR); /* disable all IRQs */
161 __raw_writel(0, base + ICLR); /* all IRQs are IRQ, not FIQ */
162 for (i = n; (i < (n + 32)) && (i < irq_nr); i++) {
163 /* initialize interrupt priority */
164 if (cpu_has_ipr())
165 __raw_writel(i | IPR_VALID, IRQ_BASE + IPR(i));
166
167 irq = PXA_IRQ(i);
Thomas Gleixnerf38c02f2011-03-24 13:35:09 +0100168 irq_set_chip_and_handler(irq, &pxa_internal_irq_chip,
169 handle_level_irq);
Thomas Gleixner9323f2612011-03-24 13:29:39 +0100170 irq_set_chip_data(irq, base);
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800171 set_irq_flags(irq, IRQF_VALID);
172 }
Haojian Zhuangd2c37062009-08-19 19:49:31 +0800173 }
174
Eric Miao53665a52007-06-06 06:36:04 +0100175 /* only unmasked interrupts kick us out of idle */
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800176 __raw_writel(1, irq_base(0) + ICCR);
Eric Miao53665a52007-06-06 06:36:04 +0100177
Lennert Buytenheka3f4c922010-11-29 11:18:26 +0100178 pxa_internal_irq_chip.irq_set_wake = fn;
Eric Miaoa58fbcd2009-01-06 17:37:37 +0800179 pxa_init_low_gpio_irq(fn);
eric miaoc95530c2007-08-29 10:22:17 +0100180}
eric miaoc01655042008-01-28 23:00:02 +0000181
182#ifdef CONFIG_PM
Haojian Zhuangc482ae42009-11-02 14:02:21 -0500183static unsigned long saved_icmr[MAX_INTERNAL_IRQS/32];
184static unsigned long saved_ipr[MAX_INTERNAL_IRQS];
eric miaoc01655042008-01-28 23:00:02 +0000185
186static int pxa_irq_suspend(struct sys_device *dev, pm_message_t state)
187{
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800188 int i;
eric miaof6fb7af2008-03-04 13:53:05 +0800189
Marek Vasut1b624fb2011-01-10 23:53:12 +0100190 for (i = 0; i < pxa_internal_irq_nr / 32; i++) {
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800191 void __iomem *base = irq_base(i);
192
193 saved_icmr[i] = __raw_readl(base + ICMR);
194 __raw_writel(0, base + ICMR);
eric miaoc01655042008-01-28 23:00:02 +0000195 }
Eric Miaoc70f5a62010-01-11 20:39:37 +0800196
Haojian Zhuangbb71bdd2010-11-17 19:03:36 +0800197 if (cpu_has_ipr()) {
Eric Miaoc70f5a62010-01-11 20:39:37 +0800198 for (i = 0; i < pxa_internal_irq_nr; i++)
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800199 saved_ipr[i] = __raw_readl(IRQ_BASE + IPR(i));
Eric Miaoc70f5a62010-01-11 20:39:37 +0800200 }
eric miaoc01655042008-01-28 23:00:02 +0000201
202 return 0;
203}
204
205static int pxa_irq_resume(struct sys_device *dev)
206{
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800207 int i;
eric miaof6fb7af2008-03-04 13:53:05 +0800208
Marek Vasut1b624fb2011-01-10 23:53:12 +0100209 for (i = 0; i < pxa_internal_irq_nr / 32; i++) {
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800210 void __iomem *base = irq_base(i);
211
212 __raw_writel(saved_icmr[i], base + ICMR);
213 __raw_writel(0, base + ICLR);
214 }
215
Marek Vasut57879b82011-01-10 00:29:04 +0100216 if (cpu_has_ipr())
Eric Miaoc70f5a62010-01-11 20:39:37 +0800217 for (i = 0; i < pxa_internal_irq_nr; i++)
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800218 __raw_writel(saved_ipr[i], IRQ_BASE + IPR(i));
Eric Miaoc70f5a62010-01-11 20:39:37 +0800219
Haojian Zhuanga79a9ad2010-11-24 11:54:22 +0800220 __raw_writel(1, IRQ_BASE + ICCR);
eric miaoc01655042008-01-28 23:00:02 +0000221 return 0;
222}
223#else
224#define pxa_irq_suspend NULL
225#define pxa_irq_resume NULL
226#endif
227
228struct sysdev_class pxa_irq_sysclass = {
229 .name = "irq",
230 .suspend = pxa_irq_suspend,
231 .resume = pxa_irq_resume,
232};
233
234static int __init pxa_irq_init(void)
235{
236 return sysdev_class_register(&pxa_irq_sysclass);
237}
238
239core_initcall(pxa_irq_init);