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 int uic_set_irq_type(unsigned int virq, unsigned int flow_type)
102 struct uic *uic = get_irq_chip_data(virq);
103 unsigned int src = uic_irq_to_hw(virq);
104 struct irq_desc *desc = get_irq_desc(virq);
106 int trigger, polarity;
109 switch (flow_type & IRQ_TYPE_SENSE_MASK) {
114 case IRQ_TYPE_EDGE_RISING:
115 trigger = 1; polarity = 1;
117 case IRQ_TYPE_EDGE_FALLING:
118 trigger = 1; polarity = 0;
120 case IRQ_TYPE_LEVEL_HIGH:
121 trigger = 0; polarity = 1;
123 case IRQ_TYPE_LEVEL_LOW:
124 trigger = 0; polarity = 0;
130 mask = ~(1 << (31 - src));
132 spin_lock_irqsave(&uic->lock, flags);
133 tr = mfdcr(uic->dcrbase + UIC_TR);
134 pr = mfdcr(uic->dcrbase + UIC_PR);
135 tr = (tr & mask) | (trigger << (31-src));
136 pr = (pr & mask) | (polarity << (31-src));
138 mtdcr(uic->dcrbase + UIC_PR, pr);
139 mtdcr(uic->dcrbase + UIC_TR, tr);
141 desc->status &= ~(IRQ_TYPE_SENSE_MASK | IRQ_LEVEL);
142 desc->status |= flow_type & IRQ_TYPE_SENSE_MASK;
144 desc->status |= IRQ_LEVEL;
146 spin_unlock_irqrestore(&uic->lock, flags);
151 static struct irq_chip uic_irq_chip = {
153 .unmask = uic_unmask_irq,
154 .mask = uic_mask_irq,
155 /* .mask_ack = uic_mask_irq_and_ack, */
157 .set_type = uic_set_irq_type,
161 * handle_uic_irq - irq flow handler for UIC
162 * @irq: the interrupt number
163 * @desc: the interrupt description structure for this irq
165 * This is modified version of the generic handle_level_irq() suitable
166 * for the UIC. On the UIC, acking (i.e. clearing the SR bit) a level
167 * irq will have no effect if the interrupt is still asserted by the
168 * device, even if the interrupt is already masked. Therefore, unlike
169 * the standard handle_level_irq(), we must ack the interrupt *after*
170 * invoking the ISR (which should have de-asserted the interrupt in
171 * the external source). For edge interrupts we ack at the beginning
172 * instead of the end, to keep the window in which we can miss an
173 * interrupt as small as possible.
175 void fastcall handle_uic_irq(unsigned int irq, struct irq_desc *desc)
177 unsigned int cpu = smp_processor_id();
178 struct irqaction *action;
179 irqreturn_t action_ret;
181 spin_lock(&desc->lock);
182 if (desc->status & IRQ_LEVEL)
183 desc->chip->mask(irq);
185 desc->chip->mask_ack(irq);
187 if (unlikely(desc->status & IRQ_INPROGRESS))
189 desc->status &= ~(IRQ_REPLAY | IRQ_WAITING);
190 kstat_cpu(cpu).irqs[irq]++;
193 * If its disabled or no action available
194 * keep it masked and get out of here
196 action = desc->action;
197 if (unlikely(!action || (desc->status & IRQ_DISABLED))) {
198 desc->status |= IRQ_PENDING;
202 desc->status |= IRQ_INPROGRESS;
203 desc->status &= ~IRQ_PENDING;
204 spin_unlock(&desc->lock);
206 action_ret = handle_IRQ_event(irq, action);
208 spin_lock(&desc->lock);
209 desc->status &= ~IRQ_INPROGRESS;
210 if (desc->status & IRQ_LEVEL)
211 desc->chip->ack(irq);
212 if (!(desc->status & IRQ_DISABLED) && desc->chip->unmask)
213 desc->chip->unmask(irq);
215 spin_unlock(&desc->lock);
218 static int uic_host_map(struct irq_host *h, unsigned int virq,
221 struct uic *uic = h->host_data;
223 set_irq_chip_data(virq, uic);
224 /* Despite the name, handle_level_irq() works for both level
225 * and edge irqs on UIC. FIXME: check this is correct */
226 set_irq_chip_and_handler(virq, &uic_irq_chip, handle_uic_irq);
228 /* Set default irq type */
229 set_irq_type(virq, IRQ_TYPE_NONE);
234 static int uic_host_xlate(struct irq_host *h, struct device_node *ct,
235 u32 *intspec, unsigned int intsize,
236 irq_hw_number_t *out_hwirq, unsigned int *out_type)
239 /* UIC intspecs must have 2 cells */
240 BUG_ON(intsize != 2);
241 *out_hwirq = intspec[0];
242 *out_type = intspec[1];
246 static struct irq_host_ops uic_host_ops = {
248 .xlate = uic_host_xlate,
251 irqreturn_t uic_cascade(int virq, void *data)
253 struct uic *uic = data;
258 msr = mfdcr(uic->dcrbase + UIC_MSR);
259 if (!msr) /* spurious interrupt */
264 subvirq = irq_linear_revmap(uic->irqhost, src);
265 generic_handle_irq(subvirq);
270 static struct uic * __init uic_init_one(struct device_node *node)
273 const u32 *indexp, *dcrreg;
276 BUG_ON(! of_device_is_compatible(node, "ibm,uic"));
278 uic = alloc_bootmem(sizeof(*uic));
280 return NULL; /* FIXME: panic? */
282 memset(uic, 0, sizeof(*uic));
283 spin_lock_init(&uic->lock);
284 indexp = of_get_property(node, "cell-index", &len);
285 if (!indexp || (len != sizeof(u32))) {
286 printk(KERN_ERR "uic: Device node %s has missing or invalid "
287 "cell-index property\n", node->full_name);
290 uic->index = *indexp;
292 dcrreg = of_get_property(node, "dcr-reg", &len);
293 if (!dcrreg || (len != 2*sizeof(u32))) {
294 printk(KERN_ERR "uic: Device node %s has missing or invalid "
295 "dcr-reg property\n", node->full_name);
298 uic->dcrbase = *dcrreg;
300 uic->irqhost = irq_alloc_host(of_node_get(node), IRQ_HOST_MAP_LINEAR,
301 NR_UIC_INTS, &uic_host_ops, -1);
302 if (! uic->irqhost) {
304 return NULL; /* FIXME: panic? */
307 uic->irqhost->host_data = uic;
309 /* Start with all interrupts disabled, level and non-critical */
310 mtdcr(uic->dcrbase + UIC_ER, 0);
311 mtdcr(uic->dcrbase + UIC_CR, 0);
312 mtdcr(uic->dcrbase + UIC_TR, 0);
313 /* Clear any pending interrupts, in case the firmware left some */
314 mtdcr(uic->dcrbase + UIC_SR, 0xffffffff);
316 printk ("UIC%d (%d IRQ sources) at DCR 0x%x\n", uic->index,
317 NR_UIC_INTS, uic->dcrbase);
322 void __init uic_init_tree(void)
324 struct device_node *np;
326 const u32 *interrupts;
328 /* First locate and initialize the top-level UIC */
330 np = of_find_compatible_node(NULL, NULL, "ibm,uic");
332 interrupts = of_get_property(np, "interrupts", NULL);
336 np = of_find_compatible_node(np, NULL, "ibm,uic");
339 BUG_ON(!np); /* uic_init_tree() assumes there's a UIC as the
340 * top-level interrupt controller */
341 primary_uic = uic_init_one(np);
343 panic("Unable to initialize primary UIC %s\n", np->full_name);
345 irq_set_default_host(primary_uic->irqhost);
348 /* The scan again for cascaded UICs */
349 np = of_find_compatible_node(NULL, NULL, "ibm,uic");
351 interrupts = of_get_property(np, "interrupts", NULL);
357 uic = uic_init_one(np);
359 panic("Unable to initialize a secondary UIC %s\n",
362 cascade_virq = irq_of_parse_and_map(np, 0);
364 uic->cascade.handler = uic_cascade;
365 uic->cascade.name = "UIC cascade";
366 uic->cascade.dev_id = uic;
368 ret = setup_irq(cascade_virq, &uic->cascade);
370 printk(KERN_ERR "Failed to setup_irq(%d) for "
371 "UIC%d cascade\n", cascade_virq,
374 /* FIXME: setup critical cascade?? */
377 np = of_find_compatible_node(np, NULL, "ibm,uic");
381 /* Return an interrupt vector or NO_IRQ if no interrupt is pending. */
382 unsigned int uic_get_irq(void)
387 BUG_ON(! primary_uic);
389 msr = mfdcr(primary_uic->dcrbase + UIC_MSR);
392 return irq_linear_revmap(primary_uic->irqhost, src);