Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/arm/mach-pxa/irq.c |
| 3 | * |
eric miao | e3630db | 2008-03-04 11:42:26 +0800 | [diff] [blame] | 4 | * Generic PXA IRQ handling |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * |
| 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 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/init.h> |
| 15 | #include <linux/module.h> |
| 16 | #include <linux/interrupt.h> |
Rafael J. Wysocki | 2eaa03b | 2011-04-22 22:03:11 +0200 | [diff] [blame] | 17 | #include <linux/syscore_ops.h> |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 18 | #include <linux/io.h> |
| 19 | #include <linux/irq.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
Jamie Iles | 5a567d7 | 2011-10-08 11:20:42 +0100 | [diff] [blame] | 21 | #include <asm/exception.h> |
| 22 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 23 | #include <mach/hardware.h> |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 24 | #include <mach/irqs.h> |
Linus Walleij | f55be1b | 2011-09-28 09:11:30 +0100 | [diff] [blame] | 25 | #include <mach/gpio-pxa.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
| 27 | #include "generic.h" |
| 28 | |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 29 | #define IRQ_BASE (void __iomem *)io_p2v(0x40d00000) |
Haojian Zhuang | c482ae4 | 2009-11-02 14:02:21 -0500 | [diff] [blame] | 30 | |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 31 | #define ICIP (0x000) |
| 32 | #define ICMR (0x004) |
| 33 | #define ICLR (0x008) |
| 34 | #define ICFR (0x00c) |
| 35 | #define ICPR (0x010) |
| 36 | #define ICCR (0x014) |
| 37 | #define ICHP (0x018) |
| 38 | #define IPR(i) (((i) < 32) ? (0x01c + ((i) << 2)) : \ |
| 39 | ((i) < 64) ? (0x0b0 + (((i) - 32) << 2)) : \ |
| 40 | (0x144 + (((i) - 64) << 2))) |
Eric Miao | a551e4f | 2011-04-27 22:48:05 +0800 | [diff] [blame] | 41 | #define ICHP_VAL_IRQ (1 << 31) |
| 42 | #define ICHP_IRQ(i) (((i) >> 16) & 0x7fff) |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 43 | #define IPR_VALID (1 << 31) |
| 44 | #define IRQ_BIT(n) (((n) - PXA_IRQ(0)) & 0x1f) |
| 45 | |
| 46 | #define MAX_INTERNAL_IRQS 128 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
| 48 | /* |
| 49 | * This is for peripheral IRQs internal to the PXA chip. |
| 50 | */ |
| 51 | |
eric miao | f6fb7af | 2008-03-04 13:53:05 +0800 | [diff] [blame] | 52 | static int pxa_internal_irq_nr; |
| 53 | |
Haojian Zhuang | bb71bdd | 2010-11-17 19:03:36 +0800 | [diff] [blame] | 54 | static inline int cpu_has_ipr(void) |
| 55 | { |
| 56 | return !cpu_is_pxa25x(); |
| 57 | } |
| 58 | |
Eric Miao | a1015a1 | 2011-01-12 16:42:24 -0600 | [diff] [blame] | 59 | static inline void __iomem *irq_base(int i) |
| 60 | { |
| 61 | static unsigned long phys_base[] = { |
| 62 | 0x40d00000, |
| 63 | 0x40d0009c, |
| 64 | 0x40d00130, |
| 65 | }; |
| 66 | |
| 67 | return (void __iomem *)io_p2v(phys_base[i]); |
| 68 | } |
| 69 | |
Eric Miao | 5d284e3 | 2011-04-27 22:48:04 +0800 | [diff] [blame] | 70 | void pxa_mask_irq(struct irq_data *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | { |
Lennert Buytenhek | a3f4c92 | 2010-11-29 11:18:26 +0100 | [diff] [blame] | 72 | void __iomem *base = irq_data_get_irq_chip_data(d); |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 73 | uint32_t icmr = __raw_readl(base + ICMR); |
| 74 | |
Lennert Buytenhek | a3f4c92 | 2010-11-29 11:18:26 +0100 | [diff] [blame] | 75 | icmr &= ~(1 << IRQ_BIT(d->irq)); |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 76 | __raw_writel(icmr, base + ICMR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | } |
| 78 | |
Eric Miao | 5d284e3 | 2011-04-27 22:48:04 +0800 | [diff] [blame] | 79 | void pxa_unmask_irq(struct irq_data *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | { |
Lennert Buytenhek | a3f4c92 | 2010-11-29 11:18:26 +0100 | [diff] [blame] | 81 | void __iomem *base = irq_data_get_irq_chip_data(d); |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 82 | uint32_t icmr = __raw_readl(base + ICMR); |
| 83 | |
Lennert Buytenhek | a3f4c92 | 2010-11-29 11:18:26 +0100 | [diff] [blame] | 84 | icmr |= 1 << IRQ_BIT(d->irq); |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 85 | __raw_writel(icmr, base + ICMR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | } |
| 87 | |
eric miao | f6fb7af | 2008-03-04 13:53:05 +0800 | [diff] [blame] | 88 | static struct irq_chip pxa_internal_irq_chip = { |
David Brownell | 38c677c | 2006-08-01 22:26:25 +0100 | [diff] [blame] | 89 | .name = "SC", |
Lennert Buytenhek | a3f4c92 | 2010-11-29 11:18:26 +0100 | [diff] [blame] | 90 | .irq_ack = pxa_mask_irq, |
| 91 | .irq_mask = pxa_mask_irq, |
| 92 | .irq_unmask = pxa_unmask_irq, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | }; |
| 94 | |
Eric Miao | a58fbcd | 2009-01-06 17:37:37 +0800 | [diff] [blame] | 95 | /* |
| 96 | * GPIO IRQs for GPIO 0 and 1 |
| 97 | */ |
Lennert Buytenhek | a3f4c92 | 2010-11-29 11:18:26 +0100 | [diff] [blame] | 98 | static int pxa_set_low_gpio_type(struct irq_data *d, unsigned int type) |
Eric Miao | a58fbcd | 2009-01-06 17:37:37 +0800 | [diff] [blame] | 99 | { |
Lennert Buytenhek | a3f4c92 | 2010-11-29 11:18:26 +0100 | [diff] [blame] | 100 | int gpio = d->irq - IRQ_GPIO0; |
Eric Miao | a58fbcd | 2009-01-06 17:37:37 +0800 | [diff] [blame] | 101 | |
| 102 | if (__gpio_is_occupied(gpio)) { |
| 103 | pr_err("%s failed: GPIO is configured\n", __func__); |
| 104 | return -EINVAL; |
| 105 | } |
| 106 | |
| 107 | if (type & IRQ_TYPE_EDGE_RISING) |
| 108 | GRER0 |= GPIO_bit(gpio); |
| 109 | else |
| 110 | GRER0 &= ~GPIO_bit(gpio); |
| 111 | |
| 112 | if (type & IRQ_TYPE_EDGE_FALLING) |
| 113 | GFER0 |= GPIO_bit(gpio); |
| 114 | else |
| 115 | GFER0 &= ~GPIO_bit(gpio); |
| 116 | |
| 117 | return 0; |
| 118 | } |
| 119 | |
Lennert Buytenhek | a3f4c92 | 2010-11-29 11:18:26 +0100 | [diff] [blame] | 120 | static void pxa_ack_low_gpio(struct irq_data *d) |
Eric Miao | a58fbcd | 2009-01-06 17:37:37 +0800 | [diff] [blame] | 121 | { |
Lennert Buytenhek | a3f4c92 | 2010-11-29 11:18:26 +0100 | [diff] [blame] | 122 | GEDR0 = (1 << (d->irq - IRQ_GPIO0)); |
Eric Miao | a58fbcd | 2009-01-06 17:37:37 +0800 | [diff] [blame] | 123 | } |
| 124 | |
Eric Miao | a58fbcd | 2009-01-06 17:37:37 +0800 | [diff] [blame] | 125 | static struct irq_chip pxa_low_gpio_chip = { |
| 126 | .name = "GPIO-l", |
Lennert Buytenhek | a3f4c92 | 2010-11-29 11:18:26 +0100 | [diff] [blame] | 127 | .irq_ack = pxa_ack_low_gpio, |
Eric Miao | a1015a1 | 2011-01-12 16:42:24 -0600 | [diff] [blame] | 128 | .irq_mask = pxa_mask_irq, |
| 129 | .irq_unmask = pxa_unmask_irq, |
Lennert Buytenhek | a3f4c92 | 2010-11-29 11:18:26 +0100 | [diff] [blame] | 130 | .irq_set_type = pxa_set_low_gpio_type, |
Eric Miao | a58fbcd | 2009-01-06 17:37:37 +0800 | [diff] [blame] | 131 | }; |
| 132 | |
Eric Miao | a551e4f | 2011-04-27 22:48:05 +0800 | [diff] [blame] | 133 | asmlinkage void __exception_irq_entry icip_handle_irq(struct pt_regs *regs) |
| 134 | { |
| 135 | uint32_t icip, icmr, mask; |
| 136 | |
| 137 | do { |
| 138 | icip = __raw_readl(IRQ_BASE + ICIP); |
| 139 | icmr = __raw_readl(IRQ_BASE + ICMR); |
| 140 | mask = icip & icmr; |
| 141 | |
| 142 | if (mask == 0) |
| 143 | break; |
| 144 | |
| 145 | handle_IRQ(PXA_IRQ(fls(mask) - 1), regs); |
| 146 | } while (1); |
| 147 | } |
| 148 | |
| 149 | asmlinkage void __exception_irq_entry ichp_handle_irq(struct pt_regs *regs) |
| 150 | { |
| 151 | uint32_t ichp; |
| 152 | |
| 153 | do { |
| 154 | __asm__ __volatile__("mrc p6, 0, %0, c5, c0, 0\n": "=r"(ichp)); |
| 155 | |
| 156 | if ((ichp & ICHP_VAL_IRQ) == 0) |
| 157 | break; |
| 158 | |
| 159 | handle_IRQ(PXA_IRQ(ICHP_IRQ(ichp)), regs); |
| 160 | } while (1); |
| 161 | } |
| 162 | |
Eric Miao | a58fbcd | 2009-01-06 17:37:37 +0800 | [diff] [blame] | 163 | static void __init pxa_init_low_gpio_irq(set_wake_t fn) |
| 164 | { |
| 165 | int irq; |
| 166 | |
| 167 | /* clear edge detection on GPIO 0 and 1 */ |
| 168 | GFER0 &= ~0x3; |
| 169 | GRER0 &= ~0x3; |
| 170 | GEDR0 = 0x3; |
| 171 | |
| 172 | for (irq = IRQ_GPIO0; irq <= IRQ_GPIO1; irq++) { |
Thomas Gleixner | f38c02f | 2011-03-24 13:35:09 +0100 | [diff] [blame] | 173 | irq_set_chip_and_handler(irq, &pxa_low_gpio_chip, |
| 174 | handle_edge_irq); |
Thomas Gleixner | 9323f261 | 2011-03-24 13:29:39 +0100 | [diff] [blame] | 175 | irq_set_chip_data(irq, irq_base(0)); |
Eric Miao | a58fbcd | 2009-01-06 17:37:37 +0800 | [diff] [blame] | 176 | set_irq_flags(irq, IRQF_VALID); |
| 177 | } |
| 178 | |
Lennert Buytenhek | a3f4c92 | 2010-11-29 11:18:26 +0100 | [diff] [blame] | 179 | pxa_low_gpio_chip.irq_set_wake = fn; |
Eric Miao | a58fbcd | 2009-01-06 17:37:37 +0800 | [diff] [blame] | 180 | } |
| 181 | |
eric miao | b9e25ac | 2008-03-04 14:19:58 +0800 | [diff] [blame] | 182 | void __init pxa_init_irq(int irq_nr, set_wake_t fn) |
Eric Miao | 53665a5 | 2007-06-06 06:36:04 +0100 | [diff] [blame] | 183 | { |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 184 | int irq, i, n; |
Eric Miao | 53665a5 | 2007-06-06 06:36:04 +0100 | [diff] [blame] | 185 | |
Haojian Zhuang | c482ae4 | 2009-11-02 14:02:21 -0500 | [diff] [blame] | 186 | BUG_ON(irq_nr > MAX_INTERNAL_IRQS); |
| 187 | |
eric miao | f6fb7af | 2008-03-04 13:53:05 +0800 | [diff] [blame] | 188 | pxa_internal_irq_nr = irq_nr; |
Eric Miao | 53665a5 | 2007-06-06 06:36:04 +0100 | [diff] [blame] | 189 | |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 190 | for (n = 0; n < irq_nr; n += 32) { |
Marek Vasut | 1b624fb | 2011-01-10 23:53:12 +0100 | [diff] [blame] | 191 | void __iomem *base = irq_base(n >> 5); |
Eric Miao | 53665a5 | 2007-06-06 06:36:04 +0100 | [diff] [blame] | 192 | |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 193 | __raw_writel(0, base + ICMR); /* disable all IRQs */ |
| 194 | __raw_writel(0, base + ICLR); /* all IRQs are IRQ, not FIQ */ |
| 195 | for (i = n; (i < (n + 32)) && (i < irq_nr); i++) { |
| 196 | /* initialize interrupt priority */ |
| 197 | if (cpu_has_ipr()) |
| 198 | __raw_writel(i | IPR_VALID, IRQ_BASE + IPR(i)); |
| 199 | |
| 200 | irq = PXA_IRQ(i); |
Thomas Gleixner | f38c02f | 2011-03-24 13:35:09 +0100 | [diff] [blame] | 201 | irq_set_chip_and_handler(irq, &pxa_internal_irq_chip, |
| 202 | handle_level_irq); |
Thomas Gleixner | 9323f261 | 2011-03-24 13:29:39 +0100 | [diff] [blame] | 203 | irq_set_chip_data(irq, base); |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 204 | set_irq_flags(irq, IRQF_VALID); |
| 205 | } |
Haojian Zhuang | d2c3706 | 2009-08-19 19:49:31 +0800 | [diff] [blame] | 206 | } |
| 207 | |
Eric Miao | 53665a5 | 2007-06-06 06:36:04 +0100 | [diff] [blame] | 208 | /* only unmasked interrupts kick us out of idle */ |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 209 | __raw_writel(1, irq_base(0) + ICCR); |
Eric Miao | 53665a5 | 2007-06-06 06:36:04 +0100 | [diff] [blame] | 210 | |
Lennert Buytenhek | a3f4c92 | 2010-11-29 11:18:26 +0100 | [diff] [blame] | 211 | pxa_internal_irq_chip.irq_set_wake = fn; |
Eric Miao | a58fbcd | 2009-01-06 17:37:37 +0800 | [diff] [blame] | 212 | pxa_init_low_gpio_irq(fn); |
eric miao | c95530c | 2007-08-29 10:22:17 +0100 | [diff] [blame] | 213 | } |
eric miao | c0165504 | 2008-01-28 23:00:02 +0000 | [diff] [blame] | 214 | |
| 215 | #ifdef CONFIG_PM |
Haojian Zhuang | c482ae4 | 2009-11-02 14:02:21 -0500 | [diff] [blame] | 216 | static unsigned long saved_icmr[MAX_INTERNAL_IRQS/32]; |
| 217 | static unsigned long saved_ipr[MAX_INTERNAL_IRQS]; |
eric miao | c0165504 | 2008-01-28 23:00:02 +0000 | [diff] [blame] | 218 | |
Rafael J. Wysocki | 2eaa03b | 2011-04-22 22:03:11 +0200 | [diff] [blame] | 219 | static int pxa_irq_suspend(void) |
eric miao | c0165504 | 2008-01-28 23:00:02 +0000 | [diff] [blame] | 220 | { |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 221 | int i; |
eric miao | f6fb7af | 2008-03-04 13:53:05 +0800 | [diff] [blame] | 222 | |
Marek Vasut | 1b624fb | 2011-01-10 23:53:12 +0100 | [diff] [blame] | 223 | for (i = 0; i < pxa_internal_irq_nr / 32; i++) { |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 224 | void __iomem *base = irq_base(i); |
| 225 | |
| 226 | saved_icmr[i] = __raw_readl(base + ICMR); |
| 227 | __raw_writel(0, base + ICMR); |
eric miao | c0165504 | 2008-01-28 23:00:02 +0000 | [diff] [blame] | 228 | } |
Eric Miao | c70f5a6 | 2010-01-11 20:39:37 +0800 | [diff] [blame] | 229 | |
Haojian Zhuang | bb71bdd | 2010-11-17 19:03:36 +0800 | [diff] [blame] | 230 | if (cpu_has_ipr()) { |
Eric Miao | c70f5a6 | 2010-01-11 20:39:37 +0800 | [diff] [blame] | 231 | for (i = 0; i < pxa_internal_irq_nr; i++) |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 232 | saved_ipr[i] = __raw_readl(IRQ_BASE + IPR(i)); |
Eric Miao | c70f5a6 | 2010-01-11 20:39:37 +0800 | [diff] [blame] | 233 | } |
eric miao | c0165504 | 2008-01-28 23:00:02 +0000 | [diff] [blame] | 234 | |
| 235 | return 0; |
| 236 | } |
| 237 | |
Rafael J. Wysocki | 2eaa03b | 2011-04-22 22:03:11 +0200 | [diff] [blame] | 238 | static void pxa_irq_resume(void) |
eric miao | c0165504 | 2008-01-28 23:00:02 +0000 | [diff] [blame] | 239 | { |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 240 | int i; |
eric miao | f6fb7af | 2008-03-04 13:53:05 +0800 | [diff] [blame] | 241 | |
Marek Vasut | 1b624fb | 2011-01-10 23:53:12 +0100 | [diff] [blame] | 242 | for (i = 0; i < pxa_internal_irq_nr / 32; i++) { |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 243 | void __iomem *base = irq_base(i); |
| 244 | |
| 245 | __raw_writel(saved_icmr[i], base + ICMR); |
| 246 | __raw_writel(0, base + ICLR); |
| 247 | } |
| 248 | |
Marek Vasut | 57879b8 | 2011-01-10 00:29:04 +0100 | [diff] [blame] | 249 | if (cpu_has_ipr()) |
Eric Miao | c70f5a6 | 2010-01-11 20:39:37 +0800 | [diff] [blame] | 250 | for (i = 0; i < pxa_internal_irq_nr; i++) |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 251 | __raw_writel(saved_ipr[i], IRQ_BASE + IPR(i)); |
Eric Miao | c70f5a6 | 2010-01-11 20:39:37 +0800 | [diff] [blame] | 252 | |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 253 | __raw_writel(1, IRQ_BASE + ICCR); |
eric miao | c0165504 | 2008-01-28 23:00:02 +0000 | [diff] [blame] | 254 | } |
| 255 | #else |
| 256 | #define pxa_irq_suspend NULL |
| 257 | #define pxa_irq_resume NULL |
| 258 | #endif |
| 259 | |
Rafael J. Wysocki | 2eaa03b | 2011-04-22 22:03:11 +0200 | [diff] [blame] | 260 | struct syscore_ops pxa_irq_syscore_ops = { |
eric miao | c0165504 | 2008-01-28 23:00:02 +0000 | [diff] [blame] | 261 | .suspend = pxa_irq_suspend, |
| 262 | .resume = pxa_irq_resume, |
| 263 | }; |