2 * linux/arch/arm/mach-pxa/irq.c
4 * Generic PXA IRQ handling
6 * Author: Nicolas Pitre
7 * Created: Jun 15, 2001
8 * Copyright: MontaVista Software Inc.
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.
14 #include <linux/init.h>
15 #include <linux/module.h>
16 #include <linux/interrupt.h>
17 #include <linux/syscore_ops.h>
19 #include <linux/irq.h>
20 #include <linux/of_address.h>
21 #include <linux/of_irq.h>
23 #include <asm/exception.h>
25 #include <mach/hardware.h>
26 #include <mach/irqs.h>
37 #define IPR(i) (((i) < 32) ? (0x01c + ((i) << 2)) : \
38 ((i) < 64) ? (0x0b0 + (((i) - 32) << 2)) : \
39 (0x144 + (((i) - 64) << 2)))
40 #define ICHP_VAL_IRQ (1 << 31)
41 #define ICHP_IRQ(i) (((i) >> 16) & 0x7fff)
42 #define IPR_VALID (1 << 31)
43 #define IRQ_BIT(n) (((n) - PXA_IRQ(0)) & 0x1f)
45 #define MAX_INTERNAL_IRQS 128
48 * This is for peripheral IRQs internal to the PXA chip.
51 static void __iomem
*pxa_irq_base
;
52 static int pxa_internal_irq_nr
;
53 static bool cpu_has_ipr
;
55 static inline void __iomem
*irq_base(int i
)
57 static unsigned long phys_base_offset
[] = {
63 return pxa_irq_base
+ phys_base_offset
[i
];
66 void pxa_mask_irq(struct irq_data
*d
)
68 void __iomem
*base
= irq_data_get_irq_chip_data(d
);
69 uint32_t icmr
= __raw_readl(base
+ ICMR
);
71 icmr
&= ~(1 << IRQ_BIT(d
->irq
));
72 __raw_writel(icmr
, base
+ ICMR
);
75 void pxa_unmask_irq(struct irq_data
*d
)
77 void __iomem
*base
= irq_data_get_irq_chip_data(d
);
78 uint32_t icmr
= __raw_readl(base
+ ICMR
);
80 icmr
|= 1 << IRQ_BIT(d
->irq
);
81 __raw_writel(icmr
, base
+ ICMR
);
84 static struct irq_chip pxa_internal_irq_chip
= {
86 .irq_ack
= pxa_mask_irq
,
87 .irq_mask
= pxa_mask_irq
,
88 .irq_unmask
= pxa_unmask_irq
,
91 asmlinkage
void __exception_irq_entry
icip_handle_irq(struct pt_regs
*regs
)
93 uint32_t icip
, icmr
, mask
;
96 icip
= __raw_readl(pxa_irq_base
+ ICIP
);
97 icmr
= __raw_readl(pxa_irq_base
+ ICMR
);
103 handle_IRQ(PXA_IRQ(fls(mask
) - 1), regs
);
107 asmlinkage
void __exception_irq_entry
ichp_handle_irq(struct pt_regs
*regs
)
112 __asm__
__volatile__("mrc p6, 0, %0, c5, c0, 0\n": "=r"(ichp
));
114 if ((ichp
& ICHP_VAL_IRQ
) == 0)
117 handle_IRQ(PXA_IRQ(ICHP_IRQ(ichp
)), regs
);
121 void __init
pxa_init_irq(int irq_nr
, int (*fn
)(struct irq_data
*, unsigned int))
125 BUG_ON(irq_nr
> MAX_INTERNAL_IRQS
);
127 pxa_internal_irq_nr
= irq_nr
;
128 cpu_has_ipr
= !cpu_is_pxa25x();
129 pxa_irq_base
= io_p2v(0x40d00000);
131 for (n
= 0; n
< irq_nr
; n
+= 32) {
132 void __iomem
*base
= irq_base(n
>> 5);
134 __raw_writel(0, base
+ ICMR
); /* disable all IRQs */
135 __raw_writel(0, base
+ ICLR
); /* all IRQs are IRQ, not FIQ */
136 for (i
= n
; (i
< (n
+ 32)) && (i
< irq_nr
); i
++) {
137 /* initialize interrupt priority */
139 __raw_writel(i
| IPR_VALID
, pxa_irq_base
+ IPR(i
));
142 irq_set_chip_and_handler(irq
, &pxa_internal_irq_chip
,
144 irq_set_chip_data(irq
, base
);
145 set_irq_flags(irq
, IRQF_VALID
);
149 /* only unmasked interrupts kick us out of idle */
150 __raw_writel(1, irq_base(0) + ICCR
);
152 pxa_internal_irq_chip
.irq_set_wake
= fn
;
156 static unsigned long saved_icmr
[MAX_INTERNAL_IRQS
/32];
157 static unsigned long saved_ipr
[MAX_INTERNAL_IRQS
];
159 static int pxa_irq_suspend(void)
163 for (i
= 0; i
< pxa_internal_irq_nr
/ 32; i
++) {
164 void __iomem
*base
= irq_base(i
);
166 saved_icmr
[i
] = __raw_readl(base
+ ICMR
);
167 __raw_writel(0, base
+ ICMR
);
171 for (i
= 0; i
< pxa_internal_irq_nr
; i
++)
172 saved_ipr
[i
] = __raw_readl(pxa_irq_base
+ IPR(i
));
178 static void pxa_irq_resume(void)
182 for (i
= 0; i
< pxa_internal_irq_nr
/ 32; i
++) {
183 void __iomem
*base
= irq_base(i
);
185 __raw_writel(saved_icmr
[i
], base
+ ICMR
);
186 __raw_writel(0, base
+ ICLR
);
190 for (i
= 0; i
< pxa_internal_irq_nr
; i
++)
191 __raw_writel(saved_ipr
[i
], pxa_irq_base
+ IPR(i
));
193 __raw_writel(1, pxa_irq_base
+ ICCR
);
196 #define pxa_irq_suspend NULL
197 #define pxa_irq_resume NULL
200 struct syscore_ops pxa_irq_syscore_ops
= {
201 .suspend
= pxa_irq_suspend
,
202 .resume
= pxa_irq_resume
,
206 static struct irq_domain
*pxa_irq_domain
;
208 static int pxa_irq_map(struct irq_domain
*h
, unsigned int virq
,
211 void __iomem
*base
= irq_base(hw
/ 32);
213 /* initialize interrupt priority */
215 __raw_writel(hw
| IPR_VALID
, pxa_irq_base
+ IPR(hw
));
217 irq_set_chip_and_handler(hw
, &pxa_internal_irq_chip
,
219 irq_set_chip_data(hw
, base
);
220 set_irq_flags(hw
, IRQF_VALID
);
225 static struct irq_domain_ops pxa_irq_ops
= {
227 .xlate
= irq_domain_xlate_onecell
,
230 static const struct of_device_id intc_ids
[] __initconst
= {
231 { .compatible
= "marvell,pxa-intc", },
235 void __init
pxa_dt_irq_init(int (*fn
)(struct irq_data
*, unsigned int))
237 struct device_node
*node
;
238 const struct of_device_id
*of_id
;
239 struct pxa_intc_conf
*conf
;
243 node
= of_find_matching_node(NULL
, intc_ids
);
245 pr_err("Failed to find interrupt controller in arch-pxa\n");
248 of_id
= of_match_node(intc_ids
, node
);
251 ret
= of_property_read_u32(node
, "marvell,intc-nr-irqs",
252 &pxa_internal_irq_nr
);
254 pr_err("Not found marvell,intc-nr-irqs property\n");
258 ret
= of_address_to_resource(node
, 0, &res
);
260 pr_err("No registers defined for node\n");
263 pxa_irq_base
= io_p2v(res
.start
);
265 if (of_find_property(node
, "marvell,intc-priority", NULL
))
268 ret
= irq_alloc_descs(-1, 0, pxa_internal_irq_nr
, 0);
270 pr_err("Failed to allocate IRQ numbers\n");
274 pxa_irq_domain
= irq_domain_add_legacy(node
, pxa_internal_irq_nr
, 0, 0,
277 panic("Unable to add PXA IRQ domain\n");
279 irq_set_default_host(pxa_irq_domain
);
281 for (n
= 0; n
< pxa_internal_irq_nr
; n
+= 32) {
282 void __iomem
*base
= irq_base(n
>> 5);
284 __raw_writel(0, base
+ ICMR
); /* disable all IRQs */
285 __raw_writel(0, base
+ ICLR
); /* all IRQs are IRQ, not FIQ */
288 /* only unmasked interrupts kick us out of idle */
289 __raw_writel(1, irq_base(0) + ICCR
);
291 pxa_internal_irq_chip
.irq_set_wake
= fn
;
293 #endif /* CONFIG_OF */