2 * arch/powerpc/sysdev/uic.c
4 * IBM PowerPC 4xx Universal Interrupt Controller
6 * Copyright 2007 David Gibson <dwg@au1.ibm.com>, IBM Corporation.
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
13 #include <linux/kernel.h>
14 #include <linux/init.h>
15 #include <linux/errno.h>
16 #include <linux/reboot.h>
17 #include <linux/slab.h>
18 #include <linux/stddef.h>
19 #include <linux/sched.h>
20 #include <linux/signal.h>
21 #include <linux/sysdev.h>
22 #include <linux/device.h>
23 #include <linux/bootmem.h>
24 #include <linux/spinlock.h>
25 #include <linux/irq.h>
26 #include <linux/interrupt.h>
27 #include <linux/kernel_stat.h>
33 #define NR_UIC_INTS 32
44 #define uic_irq_to_hw(virq) (irq_map[virq].hwirq)
46 struct uic
*primary_uic
;
54 /* The remapper for this UIC */
55 struct irq_host
*irqhost
;
57 /* For secondary UICs, the cascade interrupt's irqaction */
58 struct irqaction cascade
;
61 static void uic_unmask_irq(unsigned int virq
)
63 struct uic
*uic
= get_irq_chip_data(virq
);
64 unsigned int src
= uic_irq_to_hw(virq
);
68 spin_lock_irqsave(&uic
->lock
, flags
);
69 er
= mfdcr(uic
->dcrbase
+ UIC_ER
);
70 er
|= 1 << (31 - src
);
71 mtdcr(uic
->dcrbase
+ UIC_ER
, er
);
72 spin_unlock_irqrestore(&uic
->lock
, flags
);
75 static void uic_mask_irq(unsigned int virq
)
77 struct uic
*uic
= get_irq_chip_data(virq
);
78 unsigned int src
= uic_irq_to_hw(virq
);
82 spin_lock_irqsave(&uic
->lock
, flags
);
83 er
= mfdcr(uic
->dcrbase
+ UIC_ER
);
84 er
&= ~(1 << (31 - src
));
85 mtdcr(uic
->dcrbase
+ UIC_ER
, er
);
86 spin_unlock_irqrestore(&uic
->lock
, flags
);
89 static void uic_ack_irq(unsigned int virq
)
91 struct uic
*uic
= get_irq_chip_data(virq
);
92 unsigned int src
= uic_irq_to_hw(virq
);
95 spin_lock_irqsave(&uic
->lock
, flags
);
96 mtdcr(uic
->dcrbase
+ UIC_SR
, 1 << (31-src
));
97 spin_unlock_irqrestore(&uic
->lock
, flags
);
100 static void uic_mask_ack_irq(unsigned int virq
)
102 struct uic
*uic
= get_irq_chip_data(virq
);
103 unsigned int src
= uic_irq_to_hw(virq
);
108 spin_lock_irqsave(&uic
->lock
, flags
);
109 er
= mfdcr(uic
->dcrbase
+ UIC_ER
);
111 mtdcr(uic
->dcrbase
+ UIC_ER
, er
);
112 mtdcr(uic
->dcrbase
+ UIC_SR
, sr
);
113 spin_unlock_irqrestore(&uic
->lock
, flags
);
116 static int uic_set_irq_type(unsigned int virq
, unsigned int flow_type
)
118 struct uic
*uic
= get_irq_chip_data(virq
);
119 unsigned int src
= uic_irq_to_hw(virq
);
120 struct irq_desc
*desc
= get_irq_desc(virq
);
122 int trigger
, polarity
;
125 switch (flow_type
& IRQ_TYPE_SENSE_MASK
) {
130 case IRQ_TYPE_EDGE_RISING
:
131 trigger
= 1; polarity
= 1;
133 case IRQ_TYPE_EDGE_FALLING
:
134 trigger
= 1; polarity
= 0;
136 case IRQ_TYPE_LEVEL_HIGH
:
137 trigger
= 0; polarity
= 1;
139 case IRQ_TYPE_LEVEL_LOW
:
140 trigger
= 0; polarity
= 0;
146 mask
= ~(1 << (31 - src
));
148 spin_lock_irqsave(&uic
->lock
, flags
);
149 tr
= mfdcr(uic
->dcrbase
+ UIC_TR
);
150 pr
= mfdcr(uic
->dcrbase
+ UIC_PR
);
151 tr
= (tr
& mask
) | (trigger
<< (31-src
));
152 pr
= (pr
& mask
) | (polarity
<< (31-src
));
154 mtdcr(uic
->dcrbase
+ UIC_PR
, pr
);
155 mtdcr(uic
->dcrbase
+ UIC_TR
, tr
);
157 desc
->status
&= ~(IRQ_TYPE_SENSE_MASK
| IRQ_LEVEL
);
158 desc
->status
|= flow_type
& IRQ_TYPE_SENSE_MASK
;
160 desc
->status
|= IRQ_LEVEL
;
162 spin_unlock_irqrestore(&uic
->lock
, flags
);
167 static struct irq_chip uic_irq_chip
= {
169 .unmask
= uic_unmask_irq
,
170 .mask
= uic_mask_irq
,
171 .mask_ack
= uic_mask_ack_irq
,
173 .set_type
= uic_set_irq_type
,
177 * handle_uic_irq - irq flow handler for UIC
178 * @irq: the interrupt number
179 * @desc: the interrupt description structure for this irq
181 * This is modified version of the generic handle_level_irq() suitable
182 * for the UIC. On the UIC, acking (i.e. clearing the SR bit) a level
183 * irq will have no effect if the interrupt is still asserted by the
184 * device, even if the interrupt is already masked. Therefore, unlike
185 * the standard handle_level_irq(), we must ack the interrupt *after*
186 * invoking the ISR (which should have de-asserted the interrupt in
187 * the external source). For edge interrupts we ack at the beginning
188 * instead of the end, to keep the window in which we can miss an
189 * interrupt as small as possible.
191 void fastcall
handle_uic_irq(unsigned int irq
, struct irq_desc
*desc
)
193 unsigned int cpu
= smp_processor_id();
194 struct irqaction
*action
;
195 irqreturn_t action_ret
;
197 spin_lock(&desc
->lock
);
198 if (desc
->status
& IRQ_LEVEL
)
199 desc
->chip
->mask(irq
);
201 desc
->chip
->mask_ack(irq
);
203 if (unlikely(desc
->status
& IRQ_INPROGRESS
))
205 desc
->status
&= ~(IRQ_REPLAY
| IRQ_WAITING
);
206 kstat_cpu(cpu
).irqs
[irq
]++;
209 * If its disabled or no action available
210 * keep it masked and get out of here
212 action
= desc
->action
;
213 if (unlikely(!action
|| (desc
->status
& IRQ_DISABLED
))) {
214 desc
->status
|= IRQ_PENDING
;
218 desc
->status
|= IRQ_INPROGRESS
;
219 desc
->status
&= ~IRQ_PENDING
;
220 spin_unlock(&desc
->lock
);
222 action_ret
= handle_IRQ_event(irq
, action
);
224 spin_lock(&desc
->lock
);
225 desc
->status
&= ~IRQ_INPROGRESS
;
226 if (desc
->status
& IRQ_LEVEL
)
227 desc
->chip
->ack(irq
);
228 if (!(desc
->status
& IRQ_DISABLED
) && desc
->chip
->unmask
)
229 desc
->chip
->unmask(irq
);
231 spin_unlock(&desc
->lock
);
234 static int uic_host_map(struct irq_host
*h
, unsigned int virq
,
237 struct uic
*uic
= h
->host_data
;
239 set_irq_chip_data(virq
, uic
);
240 /* Despite the name, handle_level_irq() works for both level
241 * and edge irqs on UIC. FIXME: check this is correct */
242 set_irq_chip_and_handler(virq
, &uic_irq_chip
, handle_uic_irq
);
244 /* Set default irq type */
245 set_irq_type(virq
, IRQ_TYPE_NONE
);
250 static int uic_host_xlate(struct irq_host
*h
, struct device_node
*ct
,
251 u32
*intspec
, unsigned int intsize
,
252 irq_hw_number_t
*out_hwirq
, unsigned int *out_type
)
255 /* UIC intspecs must have 2 cells */
256 BUG_ON(intsize
!= 2);
257 *out_hwirq
= intspec
[0];
258 *out_type
= intspec
[1];
262 static struct irq_host_ops uic_host_ops
= {
264 .xlate
= uic_host_xlate
,
267 irqreturn_t
uic_cascade(int virq
, void *data
)
269 struct uic
*uic
= data
;
274 msr
= mfdcr(uic
->dcrbase
+ UIC_MSR
);
275 if (!msr
) /* spurious interrupt */
280 subvirq
= irq_linear_revmap(uic
->irqhost
, src
);
281 generic_handle_irq(subvirq
);
286 static struct uic
* __init
uic_init_one(struct device_node
*node
)
289 const u32
*indexp
, *dcrreg
;
292 BUG_ON(! of_device_is_compatible(node
, "ibm,uic"));
294 uic
= alloc_bootmem(sizeof(*uic
));
296 return NULL
; /* FIXME: panic? */
298 memset(uic
, 0, sizeof(*uic
));
299 spin_lock_init(&uic
->lock
);
300 indexp
= of_get_property(node
, "cell-index", &len
);
301 if (!indexp
|| (len
!= sizeof(u32
))) {
302 printk(KERN_ERR
"uic: Device node %s has missing or invalid "
303 "cell-index property\n", node
->full_name
);
306 uic
->index
= *indexp
;
308 dcrreg
= of_get_property(node
, "dcr-reg", &len
);
309 if (!dcrreg
|| (len
!= 2*sizeof(u32
))) {
310 printk(KERN_ERR
"uic: Device node %s has missing or invalid "
311 "dcr-reg property\n", node
->full_name
);
314 uic
->dcrbase
= *dcrreg
;
316 uic
->irqhost
= irq_alloc_host(of_node_get(node
), IRQ_HOST_MAP_LINEAR
,
317 NR_UIC_INTS
, &uic_host_ops
, -1);
318 if (! uic
->irqhost
) {
320 return NULL
; /* FIXME: panic? */
323 uic
->irqhost
->host_data
= uic
;
325 /* Start with all interrupts disabled, level and non-critical */
326 mtdcr(uic
->dcrbase
+ UIC_ER
, 0);
327 mtdcr(uic
->dcrbase
+ UIC_CR
, 0);
328 mtdcr(uic
->dcrbase
+ UIC_TR
, 0);
329 /* Clear any pending interrupts, in case the firmware left some */
330 mtdcr(uic
->dcrbase
+ UIC_SR
, 0xffffffff);
332 printk ("UIC%d (%d IRQ sources) at DCR 0x%x\n", uic
->index
,
333 NR_UIC_INTS
, uic
->dcrbase
);
338 void __init
uic_init_tree(void)
340 struct device_node
*np
;
342 const u32
*interrupts
;
344 /* First locate and initialize the top-level UIC */
346 np
= of_find_compatible_node(NULL
, NULL
, "ibm,uic");
348 interrupts
= of_get_property(np
, "interrupts", NULL
);
352 np
= of_find_compatible_node(np
, NULL
, "ibm,uic");
355 BUG_ON(!np
); /* uic_init_tree() assumes there's a UIC as the
356 * top-level interrupt controller */
357 primary_uic
= uic_init_one(np
);
359 panic("Unable to initialize primary UIC %s\n", np
->full_name
);
361 irq_set_default_host(primary_uic
->irqhost
);
364 /* The scan again for cascaded UICs */
365 np
= of_find_compatible_node(NULL
, NULL
, "ibm,uic");
367 interrupts
= of_get_property(np
, "interrupts", NULL
);
373 uic
= uic_init_one(np
);
375 panic("Unable to initialize a secondary UIC %s\n",
378 cascade_virq
= irq_of_parse_and_map(np
, 0);
380 uic
->cascade
.handler
= uic_cascade
;
381 uic
->cascade
.name
= "UIC cascade";
382 uic
->cascade
.dev_id
= uic
;
384 ret
= setup_irq(cascade_virq
, &uic
->cascade
);
386 printk(KERN_ERR
"Failed to setup_irq(%d) for "
387 "UIC%d cascade\n", cascade_virq
,
390 /* FIXME: setup critical cascade?? */
393 np
= of_find_compatible_node(np
, NULL
, "ibm,uic");
397 /* Return an interrupt vector or NO_IRQ if no interrupt is pending. */
398 unsigned int uic_get_irq(void)
403 BUG_ON(! primary_uic
);
405 msr
= mfdcr(primary_uic
->dcrbase
+ UIC_MSR
);
408 return irq_linear_revmap(primary_uic
->irqhost
, src
);