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 | */ |
| 14 | |
| 15 | #include <linux/init.h> |
| 16 | #include <linux/module.h> |
| 17 | #include <linux/interrupt.h> |
Rafael J. Wysocki | 2eaa03b | 2011-04-22 22:03:11 +0200 | [diff] [blame^] | 18 | #include <linux/syscore_ops.h> |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 19 | #include <linux/io.h> |
| 20 | #include <linux/irq.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 22 | #include <mach/hardware.h> |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 23 | #include <mach/irqs.h> |
Eric Miao | a58fbcd | 2009-01-06 17:37:37 +0800 | [diff] [blame] | 24 | #include <mach/gpio.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
| 26 | #include "generic.h" |
| 27 | |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 28 | #define IRQ_BASE (void __iomem *)io_p2v(0x40d00000) |
Haojian Zhuang | c482ae4 | 2009-11-02 14:02:21 -0500 | [diff] [blame] | 29 | |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 30 | #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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
| 45 | /* |
| 46 | * This is for peripheral IRQs internal to the PXA chip. |
| 47 | */ |
| 48 | |
eric miao | f6fb7af | 2008-03-04 13:53:05 +0800 | [diff] [blame] | 49 | static int pxa_internal_irq_nr; |
| 50 | |
Haojian Zhuang | bb71bdd | 2010-11-17 19:03:36 +0800 | [diff] [blame] | 51 | static inline int cpu_has_ipr(void) |
| 52 | { |
| 53 | return !cpu_is_pxa25x(); |
| 54 | } |
| 55 | |
Eric Miao | a1015a1 | 2011-01-12 16:42:24 -0600 | [diff] [blame] | 56 | static 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 Buytenhek | a3f4c92 | 2010-11-29 11:18:26 +0100 | [diff] [blame] | 67 | static void pxa_mask_irq(struct irq_data *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | { |
Lennert Buytenhek | a3f4c92 | 2010-11-29 11:18:26 +0100 | [diff] [blame] | 69 | void __iomem *base = irq_data_get_irq_chip_data(d); |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 70 | uint32_t icmr = __raw_readl(base + ICMR); |
| 71 | |
Lennert Buytenhek | a3f4c92 | 2010-11-29 11:18:26 +0100 | [diff] [blame] | 72 | icmr &= ~(1 << IRQ_BIT(d->irq)); |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 73 | __raw_writel(icmr, base + ICMR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | } |
| 75 | |
Lennert Buytenhek | a3f4c92 | 2010-11-29 11:18:26 +0100 | [diff] [blame] | 76 | static void pxa_unmask_irq(struct irq_data *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | { |
Lennert Buytenhek | a3f4c92 | 2010-11-29 11:18:26 +0100 | [diff] [blame] | 78 | void __iomem *base = irq_data_get_irq_chip_data(d); |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 79 | uint32_t icmr = __raw_readl(base + ICMR); |
| 80 | |
Lennert Buytenhek | a3f4c92 | 2010-11-29 11:18:26 +0100 | [diff] [blame] | 81 | icmr |= 1 << IRQ_BIT(d->irq); |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 82 | __raw_writel(icmr, base + ICMR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | } |
| 84 | |
eric miao | f6fb7af | 2008-03-04 13:53:05 +0800 | [diff] [blame] | 85 | static struct irq_chip pxa_internal_irq_chip = { |
David Brownell | 38c677c | 2006-08-01 22:26:25 +0100 | [diff] [blame] | 86 | .name = "SC", |
Lennert Buytenhek | a3f4c92 | 2010-11-29 11:18:26 +0100 | [diff] [blame] | 87 | .irq_ack = pxa_mask_irq, |
| 88 | .irq_mask = pxa_mask_irq, |
| 89 | .irq_unmask = pxa_unmask_irq, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | }; |
| 91 | |
Eric Miao | a58fbcd | 2009-01-06 17:37:37 +0800 | [diff] [blame] | 92 | /* |
| 93 | * GPIO IRQs for GPIO 0 and 1 |
| 94 | */ |
Lennert Buytenhek | a3f4c92 | 2010-11-29 11:18:26 +0100 | [diff] [blame] | 95 | 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] | 96 | { |
Lennert Buytenhek | a3f4c92 | 2010-11-29 11:18:26 +0100 | [diff] [blame] | 97 | int gpio = d->irq - IRQ_GPIO0; |
Eric Miao | a58fbcd | 2009-01-06 17:37:37 +0800 | [diff] [blame] | 98 | |
| 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 Buytenhek | a3f4c92 | 2010-11-29 11:18:26 +0100 | [diff] [blame] | 117 | static void pxa_ack_low_gpio(struct irq_data *d) |
Eric Miao | a58fbcd | 2009-01-06 17:37:37 +0800 | [diff] [blame] | 118 | { |
Lennert Buytenhek | a3f4c92 | 2010-11-29 11:18:26 +0100 | [diff] [blame] | 119 | GEDR0 = (1 << (d->irq - IRQ_GPIO0)); |
Eric Miao | a58fbcd | 2009-01-06 17:37:37 +0800 | [diff] [blame] | 120 | } |
| 121 | |
Eric Miao | a58fbcd | 2009-01-06 17:37:37 +0800 | [diff] [blame] | 122 | static struct irq_chip pxa_low_gpio_chip = { |
| 123 | .name = "GPIO-l", |
Lennert Buytenhek | a3f4c92 | 2010-11-29 11:18:26 +0100 | [diff] [blame] | 124 | .irq_ack = pxa_ack_low_gpio, |
Eric Miao | a1015a1 | 2011-01-12 16:42:24 -0600 | [diff] [blame] | 125 | .irq_mask = pxa_mask_irq, |
| 126 | .irq_unmask = pxa_unmask_irq, |
Lennert Buytenhek | a3f4c92 | 2010-11-29 11:18:26 +0100 | [diff] [blame] | 127 | .irq_set_type = pxa_set_low_gpio_type, |
Eric Miao | a58fbcd | 2009-01-06 17:37:37 +0800 | [diff] [blame] | 128 | }; |
| 129 | |
| 130 | static 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 Gleixner | f38c02f | 2011-03-24 13:35:09 +0100 | [diff] [blame] | 140 | irq_set_chip_and_handler(irq, &pxa_low_gpio_chip, |
| 141 | handle_edge_irq); |
Thomas Gleixner | 9323f261 | 2011-03-24 13:29:39 +0100 | [diff] [blame] | 142 | irq_set_chip_data(irq, irq_base(0)); |
Eric Miao | a58fbcd | 2009-01-06 17:37:37 +0800 | [diff] [blame] | 143 | set_irq_flags(irq, IRQF_VALID); |
| 144 | } |
| 145 | |
Lennert Buytenhek | a3f4c92 | 2010-11-29 11:18:26 +0100 | [diff] [blame] | 146 | pxa_low_gpio_chip.irq_set_wake = fn; |
Eric Miao | a58fbcd | 2009-01-06 17:37:37 +0800 | [diff] [blame] | 147 | } |
| 148 | |
eric miao | b9e25ac | 2008-03-04 14:19:58 +0800 | [diff] [blame] | 149 | void __init pxa_init_irq(int irq_nr, set_wake_t fn) |
Eric Miao | 53665a5 | 2007-06-06 06:36:04 +0100 | [diff] [blame] | 150 | { |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 151 | int irq, i, n; |
Eric Miao | 53665a5 | 2007-06-06 06:36:04 +0100 | [diff] [blame] | 152 | |
Haojian Zhuang | c482ae4 | 2009-11-02 14:02:21 -0500 | [diff] [blame] | 153 | BUG_ON(irq_nr > MAX_INTERNAL_IRQS); |
| 154 | |
eric miao | f6fb7af | 2008-03-04 13:53:05 +0800 | [diff] [blame] | 155 | pxa_internal_irq_nr = irq_nr; |
Eric Miao | 53665a5 | 2007-06-06 06:36:04 +0100 | [diff] [blame] | 156 | |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 157 | for (n = 0; n < irq_nr; n += 32) { |
Marek Vasut | 1b624fb | 2011-01-10 23:53:12 +0100 | [diff] [blame] | 158 | void __iomem *base = irq_base(n >> 5); |
Eric Miao | 53665a5 | 2007-06-06 06:36:04 +0100 | [diff] [blame] | 159 | |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 160 | __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 Gleixner | f38c02f | 2011-03-24 13:35:09 +0100 | [diff] [blame] | 168 | irq_set_chip_and_handler(irq, &pxa_internal_irq_chip, |
| 169 | handle_level_irq); |
Thomas Gleixner | 9323f261 | 2011-03-24 13:29:39 +0100 | [diff] [blame] | 170 | irq_set_chip_data(irq, base); |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 171 | set_irq_flags(irq, IRQF_VALID); |
| 172 | } |
Haojian Zhuang | d2c3706 | 2009-08-19 19:49:31 +0800 | [diff] [blame] | 173 | } |
| 174 | |
Eric Miao | 53665a5 | 2007-06-06 06:36:04 +0100 | [diff] [blame] | 175 | /* only unmasked interrupts kick us out of idle */ |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 176 | __raw_writel(1, irq_base(0) + ICCR); |
Eric Miao | 53665a5 | 2007-06-06 06:36:04 +0100 | [diff] [blame] | 177 | |
Lennert Buytenhek | a3f4c92 | 2010-11-29 11:18:26 +0100 | [diff] [blame] | 178 | pxa_internal_irq_chip.irq_set_wake = fn; |
Eric Miao | a58fbcd | 2009-01-06 17:37:37 +0800 | [diff] [blame] | 179 | pxa_init_low_gpio_irq(fn); |
eric miao | c95530c | 2007-08-29 10:22:17 +0100 | [diff] [blame] | 180 | } |
eric miao | c0165504 | 2008-01-28 23:00:02 +0000 | [diff] [blame] | 181 | |
| 182 | #ifdef CONFIG_PM |
Haojian Zhuang | c482ae4 | 2009-11-02 14:02:21 -0500 | [diff] [blame] | 183 | static unsigned long saved_icmr[MAX_INTERNAL_IRQS/32]; |
| 184 | static unsigned long saved_ipr[MAX_INTERNAL_IRQS]; |
eric miao | c0165504 | 2008-01-28 23:00:02 +0000 | [diff] [blame] | 185 | |
Rafael J. Wysocki | 2eaa03b | 2011-04-22 22:03:11 +0200 | [diff] [blame^] | 186 | static int pxa_irq_suspend(void) |
eric miao | c0165504 | 2008-01-28 23:00:02 +0000 | [diff] [blame] | 187 | { |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 188 | int i; |
eric miao | f6fb7af | 2008-03-04 13:53:05 +0800 | [diff] [blame] | 189 | |
Marek Vasut | 1b624fb | 2011-01-10 23:53:12 +0100 | [diff] [blame] | 190 | for (i = 0; i < pxa_internal_irq_nr / 32; i++) { |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 191 | void __iomem *base = irq_base(i); |
| 192 | |
| 193 | saved_icmr[i] = __raw_readl(base + ICMR); |
| 194 | __raw_writel(0, base + ICMR); |
eric miao | c0165504 | 2008-01-28 23:00:02 +0000 | [diff] [blame] | 195 | } |
Eric Miao | c70f5a6 | 2010-01-11 20:39:37 +0800 | [diff] [blame] | 196 | |
Haojian Zhuang | bb71bdd | 2010-11-17 19:03:36 +0800 | [diff] [blame] | 197 | if (cpu_has_ipr()) { |
Eric Miao | c70f5a6 | 2010-01-11 20:39:37 +0800 | [diff] [blame] | 198 | for (i = 0; i < pxa_internal_irq_nr; i++) |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 199 | saved_ipr[i] = __raw_readl(IRQ_BASE + IPR(i)); |
Eric Miao | c70f5a6 | 2010-01-11 20:39:37 +0800 | [diff] [blame] | 200 | } |
eric miao | c0165504 | 2008-01-28 23:00:02 +0000 | [diff] [blame] | 201 | |
| 202 | return 0; |
| 203 | } |
| 204 | |
Rafael J. Wysocki | 2eaa03b | 2011-04-22 22:03:11 +0200 | [diff] [blame^] | 205 | static void pxa_irq_resume(void) |
eric miao | c0165504 | 2008-01-28 23:00:02 +0000 | [diff] [blame] | 206 | { |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 207 | int i; |
eric miao | f6fb7af | 2008-03-04 13:53:05 +0800 | [diff] [blame] | 208 | |
Marek Vasut | 1b624fb | 2011-01-10 23:53:12 +0100 | [diff] [blame] | 209 | for (i = 0; i < pxa_internal_irq_nr / 32; i++) { |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 210 | void __iomem *base = irq_base(i); |
| 211 | |
| 212 | __raw_writel(saved_icmr[i], base + ICMR); |
| 213 | __raw_writel(0, base + ICLR); |
| 214 | } |
| 215 | |
Marek Vasut | 57879b8 | 2011-01-10 00:29:04 +0100 | [diff] [blame] | 216 | if (cpu_has_ipr()) |
Eric Miao | c70f5a6 | 2010-01-11 20:39:37 +0800 | [diff] [blame] | 217 | for (i = 0; i < pxa_internal_irq_nr; i++) |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 218 | __raw_writel(saved_ipr[i], IRQ_BASE + IPR(i)); |
Eric Miao | c70f5a6 | 2010-01-11 20:39:37 +0800 | [diff] [blame] | 219 | |
Haojian Zhuang | a79a9ad | 2010-11-24 11:54:22 +0800 | [diff] [blame] | 220 | __raw_writel(1, IRQ_BASE + ICCR); |
eric miao | c0165504 | 2008-01-28 23:00:02 +0000 | [diff] [blame] | 221 | } |
| 222 | #else |
| 223 | #define pxa_irq_suspend NULL |
| 224 | #define pxa_irq_resume NULL |
| 225 | #endif |
| 226 | |
Rafael J. Wysocki | 2eaa03b | 2011-04-22 22:03:11 +0200 | [diff] [blame^] | 227 | struct syscore_ops pxa_irq_syscore_ops = { |
eric miao | c0165504 | 2008-01-28 23:00:02 +0000 | [diff] [blame] | 228 | .suspend = pxa_irq_suspend, |
| 229 | .resume = pxa_irq_resume, |
| 230 | }; |