]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * linux/arch/arm/mach-pxa/irq.c | |
3 | * | |
e3630db1 | 4 | * Generic PXA IRQ handling |
1da177e4 LT |
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 | */ | |
d6cf30ca | 14 | #include <linux/bitops.h> |
1da177e4 LT |
15 | #include <linux/init.h> |
16 | #include <linux/module.h> | |
17 | #include <linux/interrupt.h> | |
2eaa03b5 | 18 | #include <linux/syscore_ops.h> |
a79a9ad9 HZ |
19 | #include <linux/io.h> |
20 | #include <linux/irq.h> | |
089d0362 DM |
21 | #include <linux/of_address.h> |
22 | #include <linux/of_irq.h> | |
1da177e4 | 23 | |
5a567d78 JI |
24 | #include <asm/exception.h> |
25 | ||
a09e64fb | 26 | #include <mach/hardware.h> |
a79a9ad9 | 27 | #include <mach/irqs.h> |
1da177e4 LT |
28 | |
29 | #include "generic.h" | |
30 | ||
a79a9ad9 HZ |
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))) | |
a551e4f7 EM |
41 | #define ICHP_VAL_IRQ (1 << 31) |
42 | #define ICHP_IRQ(i) (((i) >> 16) & 0x7fff) | |
a79a9ad9 | 43 | #define IPR_VALID (1 << 31) |
c482ae4d | 44 | |
a79a9ad9 | 45 | #define MAX_INTERNAL_IRQS 128 |
1da177e4 LT |
46 | |
47 | /* | |
48 | * This is for peripheral IRQs internal to the PXA chip. | |
49 | */ | |
50 | ||
089d0362 | 51 | static void __iomem *pxa_irq_base; |
f6fb7af4 | 52 | static int pxa_internal_irq_nr; |
089d0362 | 53 | static bool cpu_has_ipr; |
d6cf30ca | 54 | static struct irq_domain *pxa_irq_domain; |
bb71bdd3 | 55 | |
a1015a15 EM |
56 | static inline void __iomem *irq_base(int i) |
57 | { | |
089d0362 DM |
58 | static unsigned long phys_base_offset[] = { |
59 | 0x0, | |
60 | 0x9c, | |
61 | 0x130, | |
a1015a15 EM |
62 | }; |
63 | ||
089d0362 | 64 | return pxa_irq_base + phys_base_offset[i]; |
a1015a15 EM |
65 | } |
66 | ||
5d284e35 | 67 | void pxa_mask_irq(struct irq_data *d) |
1da177e4 | 68 | { |
a3f4c927 | 69 | void __iomem *base = irq_data_get_irq_chip_data(d); |
d6cf30ca | 70 | irq_hw_number_t irq = irqd_to_hwirq(d); |
a79a9ad9 HZ |
71 | uint32_t icmr = __raw_readl(base + ICMR); |
72 | ||
d6cf30ca | 73 | icmr &= ~BIT(irq & 0x1f); |
a79a9ad9 | 74 | __raw_writel(icmr, base + ICMR); |
1da177e4 LT |
75 | } |
76 | ||
5d284e35 | 77 | void pxa_unmask_irq(struct irq_data *d) |
1da177e4 | 78 | { |
a3f4c927 | 79 | void __iomem *base = irq_data_get_irq_chip_data(d); |
d6cf30ca | 80 | irq_hw_number_t irq = irqd_to_hwirq(d); |
a79a9ad9 HZ |
81 | uint32_t icmr = __raw_readl(base + ICMR); |
82 | ||
d6cf30ca | 83 | icmr |= BIT(irq & 0x1f); |
a79a9ad9 | 84 | __raw_writel(icmr, base + ICMR); |
1da177e4 LT |
85 | } |
86 | ||
f6fb7af4 | 87 | static struct irq_chip pxa_internal_irq_chip = { |
38c677cb | 88 | .name = "SC", |
a3f4c927 LB |
89 | .irq_ack = pxa_mask_irq, |
90 | .irq_mask = pxa_mask_irq, | |
91 | .irq_unmask = pxa_unmask_irq, | |
1da177e4 LT |
92 | }; |
93 | ||
a551e4f7 EM |
94 | asmlinkage void __exception_irq_entry icip_handle_irq(struct pt_regs *regs) |
95 | { | |
96 | uint32_t icip, icmr, mask; | |
97 | ||
98 | do { | |
089d0362 DM |
99 | icip = __raw_readl(pxa_irq_base + ICIP); |
100 | icmr = __raw_readl(pxa_irq_base + ICMR); | |
a551e4f7 EM |
101 | mask = icip & icmr; |
102 | ||
103 | if (mask == 0) | |
104 | break; | |
105 | ||
106 | handle_IRQ(PXA_IRQ(fls(mask) - 1), regs); | |
107 | } while (1); | |
108 | } | |
109 | ||
110 | asmlinkage void __exception_irq_entry ichp_handle_irq(struct pt_regs *regs) | |
111 | { | |
112 | uint32_t ichp; | |
113 | ||
114 | do { | |
115 | __asm__ __volatile__("mrc p6, 0, %0, c5, c0, 0\n": "=r"(ichp)); | |
116 | ||
117 | if ((ichp & ICHP_VAL_IRQ) == 0) | |
118 | break; | |
119 | ||
120 | handle_IRQ(PXA_IRQ(ICHP_IRQ(ichp)), regs); | |
121 | } while (1); | |
122 | } | |
123 | ||
d6cf30ca RJ |
124 | static int pxa_irq_map(struct irq_domain *h, unsigned int virq, |
125 | irq_hw_number_t hw) | |
53665a50 | 126 | { |
d6cf30ca | 127 | void __iomem *base = irq_base(hw / 32); |
53665a50 | 128 | |
d6cf30ca RJ |
129 | /* initialize interrupt priority */ |
130 | if (cpu_has_ipr) | |
131 | __raw_writel(hw | IPR_VALID, pxa_irq_base + IPR(hw)); | |
132 | ||
133 | irq_set_chip_and_handler(virq, &pxa_internal_irq_chip, | |
134 | handle_level_irq); | |
135 | irq_set_chip_data(virq, base); | |
136 | set_irq_flags(virq, IRQF_VALID); | |
137 | ||
138 | return 0; | |
139 | } | |
140 | ||
141 | static struct irq_domain_ops pxa_irq_ops = { | |
142 | .map = pxa_irq_map, | |
143 | .xlate = irq_domain_xlate_onecell, | |
144 | }; | |
145 | ||
146 | static __init void | |
147 | pxa_init_irq_common(struct device_node *node, int irq_nr, | |
148 | int (*fn)(struct irq_data *, unsigned int)) | |
149 | { | |
150 | int n; | |
c482ae4d | 151 | |
f6fb7af4 | 152 | pxa_internal_irq_nr = irq_nr; |
d6cf30ca RJ |
153 | pxa_irq_domain = irq_domain_add_legacy(node, irq_nr, |
154 | PXA_IRQ(0), 0, | |
155 | &pxa_irq_ops, NULL); | |
156 | if (!pxa_irq_domain) | |
157 | panic("Unable to add PXA IRQ domain\n"); | |
158 | irq_set_default_host(pxa_irq_domain); | |
53665a50 | 159 | |
a79a9ad9 | 160 | for (n = 0; n < irq_nr; n += 32) { |
1b624fb6 | 161 | void __iomem *base = irq_base(n >> 5); |
a79a9ad9 HZ |
162 | |
163 | __raw_writel(0, base + ICMR); /* disable all IRQs */ | |
164 | __raw_writel(0, base + ICLR); /* all IRQs are IRQ, not FIQ */ | |
d2c37068 | 165 | } |
53665a50 | 166 | /* only unmasked interrupts kick us out of idle */ |
a79a9ad9 | 167 | __raw_writel(1, irq_base(0) + ICCR); |
1da177e4 | 168 | |
a3f4c927 | 169 | pxa_internal_irq_chip.irq_set_wake = fn; |
c95530c7 | 170 | } |
c0165504 | 171 | |
d6cf30ca RJ |
172 | void __init pxa_init_irq(int irq_nr, int (*fn)(struct irq_data *, unsigned int)) |
173 | { | |
174 | BUG_ON(irq_nr > MAX_INTERNAL_IRQS); | |
175 | ||
176 | pxa_irq_base = io_p2v(0x40d00000); | |
177 | cpu_has_ipr = !cpu_is_pxa25x(); | |
178 | pxa_init_irq_common(NULL, irq_nr, fn); | |
179 | } | |
180 | ||
c0165504 | 181 | #ifdef CONFIG_PM |
c482ae4d HZ |
182 | static unsigned long saved_icmr[MAX_INTERNAL_IRQS/32]; |
183 | static unsigned long saved_ipr[MAX_INTERNAL_IRQS]; | |
c0165504 | 184 | |
2eaa03b5 | 185 | static int pxa_irq_suspend(void) |
c0165504 | 186 | { |
a79a9ad9 HZ |
187 | int i; |
188 | ||
1b624fb6 | 189 | for (i = 0; i < pxa_internal_irq_nr / 32; i++) { |
a79a9ad9 | 190 | void __iomem *base = irq_base(i); |
f6fb7af4 | 191 | |
a79a9ad9 HZ |
192 | saved_icmr[i] = __raw_readl(base + ICMR); |
193 | __raw_writel(0, base + ICMR); | |
c0165504 | 194 | } |
c70f5a60 | 195 | |
089d0362 | 196 | if (cpu_has_ipr) { |
c70f5a60 | 197 | for (i = 0; i < pxa_internal_irq_nr; i++) |
089d0362 | 198 | saved_ipr[i] = __raw_readl(pxa_irq_base + IPR(i)); |
c70f5a60 | 199 | } |
c0165504 | 200 | |
201 | return 0; | |
202 | } | |
203 | ||
2eaa03b5 | 204 | static void pxa_irq_resume(void) |
c0165504 | 205 | { |
a79a9ad9 | 206 | int i; |
f6fb7af4 | 207 | |
1b624fb6 | 208 | for (i = 0; i < pxa_internal_irq_nr / 32; i++) { |
a79a9ad9 | 209 | void __iomem *base = irq_base(i); |
c70f5a60 | 210 | |
a79a9ad9 HZ |
211 | __raw_writel(saved_icmr[i], base + ICMR); |
212 | __raw_writel(0, base + ICLR); | |
c0165504 | 213 | } |
214 | ||
089d0362 | 215 | if (cpu_has_ipr) |
a79a9ad9 | 216 | for (i = 0; i < pxa_internal_irq_nr; i++) |
089d0362 | 217 | __raw_writel(saved_ipr[i], pxa_irq_base + IPR(i)); |
a79a9ad9 | 218 | |
089d0362 | 219 | __raw_writel(1, pxa_irq_base + ICCR); |
c0165504 | 220 | } |
221 | #else | |
222 | #define pxa_irq_suspend NULL | |
223 | #define pxa_irq_resume NULL | |
224 | #endif | |
225 | ||
2eaa03b5 | 226 | struct syscore_ops pxa_irq_syscore_ops = { |
c0165504 | 227 | .suspend = pxa_irq_suspend, |
228 | .resume = pxa_irq_resume, | |
229 | }; | |
089d0362 DM |
230 | |
231 | #ifdef CONFIG_OF | |
089d0362 DM |
232 | static const struct of_device_id intc_ids[] __initconst = { |
233 | { .compatible = "marvell,pxa-intc", }, | |
234 | {} | |
235 | }; | |
236 | ||
237 | void __init pxa_dt_irq_init(int (*fn)(struct irq_data *, unsigned int)) | |
238 | { | |
239 | struct device_node *node; | |
089d0362 | 240 | struct resource res; |
d6cf30ca | 241 | int ret; |
089d0362 DM |
242 | |
243 | node = of_find_matching_node(NULL, intc_ids); | |
244 | if (!node) { | |
245 | pr_err("Failed to find interrupt controller in arch-pxa\n"); | |
246 | return; | |
247 | } | |
089d0362 DM |
248 | |
249 | ret = of_property_read_u32(node, "marvell,intc-nr-irqs", | |
250 | &pxa_internal_irq_nr); | |
251 | if (ret) { | |
252 | pr_err("Not found marvell,intc-nr-irqs property\n"); | |
253 | return; | |
254 | } | |
255 | ||
256 | ret = of_address_to_resource(node, 0, &res); | |
257 | if (ret < 0) { | |
258 | pr_err("No registers defined for node\n"); | |
259 | return; | |
260 | } | |
261 | pxa_irq_base = io_p2v(res.start); | |
262 | ||
263 | if (of_find_property(node, "marvell,intc-priority", NULL)) | |
264 | cpu_has_ipr = 1; | |
265 | ||
266 | ret = irq_alloc_descs(-1, 0, pxa_internal_irq_nr, 0); | |
267 | if (ret < 0) { | |
268 | pr_err("Failed to allocate IRQ numbers\n"); | |
269 | return; | |
270 | } | |
271 | ||
d6cf30ca | 272 | pxa_init_irq_common(node, pxa_internal_irq_nr, fn); |
089d0362 DM |
273 | } |
274 | #endif /* CONFIG_OF */ |