xref: /openbmc/linux/arch/powerpc/sysdev/mpic.c (revision fbf0274e)
1 /*
2  *  arch/powerpc/kernel/mpic.c
3  *
4  *  Driver for interrupt controllers following the OpenPIC standard, the
5  *  common implementation beeing IBM's MPIC. This driver also can deal
6  *  with various broken implementations of this HW.
7  *
8  *  Copyright (C) 2004 Benjamin Herrenschmidt, IBM Corp.
9  *
10  *  This file is subject to the terms and conditions of the GNU General Public
11  *  License.  See the file COPYING in the main directory of this archive
12  *  for more details.
13  */
14 
15 #undef DEBUG
16 #undef DEBUG_IPI
17 #undef DEBUG_IRQ
18 #undef DEBUG_LOW
19 
20 #include <linux/types.h>
21 #include <linux/kernel.h>
22 #include <linux/init.h>
23 #include <linux/irq.h>
24 #include <linux/smp.h>
25 #include <linux/interrupt.h>
26 #include <linux/bootmem.h>
27 #include <linux/spinlock.h>
28 #include <linux/pci.h>
29 
30 #include <asm/ptrace.h>
31 #include <asm/signal.h>
32 #include <asm/io.h>
33 #include <asm/pgtable.h>
34 #include <asm/irq.h>
35 #include <asm/machdep.h>
36 #include <asm/mpic.h>
37 #include <asm/smp.h>
38 
39 #ifdef DEBUG
40 #define DBG(fmt...) printk(fmt)
41 #else
42 #define DBG(fmt...)
43 #endif
44 
45 static struct mpic *mpics;
46 static struct mpic *mpic_primary;
47 static DEFINE_SPINLOCK(mpic_lock);
48 
49 #ifdef CONFIG_PPC32	/* XXX for now */
50 #ifdef CONFIG_IRQ_ALL_CPUS
51 #define distribute_irqs	(1)
52 #else
53 #define distribute_irqs	(0)
54 #endif
55 #endif
56 
57 #ifdef CONFIG_MPIC_WEIRD
58 static u32 mpic_infos[][MPIC_IDX_END] = {
59 	[0] = {	/* Original OpenPIC compatible MPIC */
60 		MPIC_GREG_BASE,
61 		MPIC_GREG_FEATURE_0,
62 		MPIC_GREG_GLOBAL_CONF_0,
63 		MPIC_GREG_VENDOR_ID,
64 		MPIC_GREG_IPI_VECTOR_PRI_0,
65 		MPIC_GREG_IPI_STRIDE,
66 		MPIC_GREG_SPURIOUS,
67 		MPIC_GREG_TIMER_FREQ,
68 
69 		MPIC_TIMER_BASE,
70 		MPIC_TIMER_STRIDE,
71 		MPIC_TIMER_CURRENT_CNT,
72 		MPIC_TIMER_BASE_CNT,
73 		MPIC_TIMER_VECTOR_PRI,
74 		MPIC_TIMER_DESTINATION,
75 
76 		MPIC_CPU_BASE,
77 		MPIC_CPU_STRIDE,
78 		MPIC_CPU_IPI_DISPATCH_0,
79 		MPIC_CPU_IPI_DISPATCH_STRIDE,
80 		MPIC_CPU_CURRENT_TASK_PRI,
81 		MPIC_CPU_WHOAMI,
82 		MPIC_CPU_INTACK,
83 		MPIC_CPU_EOI,
84 
85 		MPIC_IRQ_BASE,
86 		MPIC_IRQ_STRIDE,
87 		MPIC_IRQ_VECTOR_PRI,
88 		MPIC_VECPRI_VECTOR_MASK,
89 		MPIC_VECPRI_POLARITY_POSITIVE,
90 		MPIC_VECPRI_POLARITY_NEGATIVE,
91 		MPIC_VECPRI_SENSE_LEVEL,
92 		MPIC_VECPRI_SENSE_EDGE,
93 		MPIC_VECPRI_POLARITY_MASK,
94 		MPIC_VECPRI_SENSE_MASK,
95 		MPIC_IRQ_DESTINATION
96 	},
97 	[1] = {	/* Tsi108/109 PIC */
98 		TSI108_GREG_BASE,
99 		TSI108_GREG_FEATURE_0,
100 		TSI108_GREG_GLOBAL_CONF_0,
101 		TSI108_GREG_VENDOR_ID,
102 		TSI108_GREG_IPI_VECTOR_PRI_0,
103 		TSI108_GREG_IPI_STRIDE,
104 		TSI108_GREG_SPURIOUS,
105 		TSI108_GREG_TIMER_FREQ,
106 
107 		TSI108_TIMER_BASE,
108 		TSI108_TIMER_STRIDE,
109 		TSI108_TIMER_CURRENT_CNT,
110 		TSI108_TIMER_BASE_CNT,
111 		TSI108_TIMER_VECTOR_PRI,
112 		TSI108_TIMER_DESTINATION,
113 
114 		TSI108_CPU_BASE,
115 		TSI108_CPU_STRIDE,
116 		TSI108_CPU_IPI_DISPATCH_0,
117 		TSI108_CPU_IPI_DISPATCH_STRIDE,
118 		TSI108_CPU_CURRENT_TASK_PRI,
119 		TSI108_CPU_WHOAMI,
120 		TSI108_CPU_INTACK,
121 		TSI108_CPU_EOI,
122 
123 		TSI108_IRQ_BASE,
124 		TSI108_IRQ_STRIDE,
125 		TSI108_IRQ_VECTOR_PRI,
126 		TSI108_VECPRI_VECTOR_MASK,
127 		TSI108_VECPRI_POLARITY_POSITIVE,
128 		TSI108_VECPRI_POLARITY_NEGATIVE,
129 		TSI108_VECPRI_SENSE_LEVEL,
130 		TSI108_VECPRI_SENSE_EDGE,
131 		TSI108_VECPRI_POLARITY_MASK,
132 		TSI108_VECPRI_SENSE_MASK,
133 		TSI108_IRQ_DESTINATION
134 	},
135 };
136 
137 #define MPIC_INFO(name) mpic->hw_set[MPIC_IDX_##name]
138 
139 #else /* CONFIG_MPIC_WEIRD */
140 
141 #define MPIC_INFO(name) MPIC_##name
142 
143 #endif /* CONFIG_MPIC_WEIRD */
144 
145 /*
146  * Register accessor functions
147  */
148 
149 
150 static inline u32 _mpic_read(enum mpic_reg_type type,
151 			     struct mpic_reg_bank *rb,
152 			     unsigned int reg)
153 {
154 	switch(type) {
155 #ifdef CONFIG_PPC_DCR
156 	case mpic_access_dcr:
157 		return dcr_read(rb->dhost,
158 				rb->dbase + reg + rb->doff);
159 #endif
160 	case mpic_access_mmio_be:
161 		return in_be32(rb->base + (reg >> 2));
162 	case mpic_access_mmio_le:
163 	default:
164 		return in_le32(rb->base + (reg >> 2));
165 	}
166 }
167 
168 static inline void _mpic_write(enum mpic_reg_type type,
169 			       struct mpic_reg_bank *rb,
170  			       unsigned int reg, u32 value)
171 {
172 	switch(type) {
173 #ifdef CONFIG_PPC_DCR
174 	case mpic_access_dcr:
175 		return dcr_write(rb->dhost,
176 				 rb->dbase + reg + rb->doff, value);
177 #endif
178 	case mpic_access_mmio_be:
179 		return out_be32(rb->base + (reg >> 2), value);
180 	case mpic_access_mmio_le:
181 	default:
182 		return out_le32(rb->base + (reg >> 2), value);
183 	}
184 }
185 
186 static inline u32 _mpic_ipi_read(struct mpic *mpic, unsigned int ipi)
187 {
188 	enum mpic_reg_type type = mpic->reg_type;
189 	unsigned int offset = MPIC_INFO(GREG_IPI_VECTOR_PRI_0) +
190 			      (ipi * MPIC_INFO(GREG_IPI_STRIDE));
191 
192 	if ((mpic->flags & MPIC_BROKEN_IPI) && type == mpic_access_mmio_le)
193 		type = mpic_access_mmio_be;
194 	return _mpic_read(type, &mpic->gregs, offset);
195 }
196 
197 static inline void _mpic_ipi_write(struct mpic *mpic, unsigned int ipi, u32 value)
198 {
199 	unsigned int offset = MPIC_INFO(GREG_IPI_VECTOR_PRI_0) +
200 			      (ipi * MPIC_INFO(GREG_IPI_STRIDE));
201 
202 	_mpic_write(mpic->reg_type, &mpic->gregs, offset, value);
203 }
204 
205 static inline u32 _mpic_cpu_read(struct mpic *mpic, unsigned int reg)
206 {
207 	unsigned int cpu = 0;
208 
209 	if (mpic->flags & MPIC_PRIMARY)
210 		cpu = hard_smp_processor_id();
211 	return _mpic_read(mpic->reg_type, &mpic->cpuregs[cpu], reg);
212 }
213 
214 static inline void _mpic_cpu_write(struct mpic *mpic, unsigned int reg, u32 value)
215 {
216 	unsigned int cpu = 0;
217 
218 	if (mpic->flags & MPIC_PRIMARY)
219 		cpu = hard_smp_processor_id();
220 
221 	_mpic_write(mpic->reg_type, &mpic->cpuregs[cpu], reg, value);
222 }
223 
224 static inline u32 _mpic_irq_read(struct mpic *mpic, unsigned int src_no, unsigned int reg)
225 {
226 	unsigned int	isu = src_no >> mpic->isu_shift;
227 	unsigned int	idx = src_no & mpic->isu_mask;
228 
229 	return _mpic_read(mpic->reg_type, &mpic->isus[isu],
230 			  reg + (idx * MPIC_INFO(IRQ_STRIDE)));
231 }
232 
233 static inline void _mpic_irq_write(struct mpic *mpic, unsigned int src_no,
234 				   unsigned int reg, u32 value)
235 {
236 	unsigned int	isu = src_no >> mpic->isu_shift;
237 	unsigned int	idx = src_no & mpic->isu_mask;
238 
239 	_mpic_write(mpic->reg_type, &mpic->isus[isu],
240 		    reg + (idx * MPIC_INFO(IRQ_STRIDE)), value);
241 }
242 
243 #define mpic_read(b,r)		_mpic_read(mpic->reg_type,&(b),(r))
244 #define mpic_write(b,r,v)	_mpic_write(mpic->reg_type,&(b),(r),(v))
245 #define mpic_ipi_read(i)	_mpic_ipi_read(mpic,(i))
246 #define mpic_ipi_write(i,v)	_mpic_ipi_write(mpic,(i),(v))
247 #define mpic_cpu_read(i)	_mpic_cpu_read(mpic,(i))
248 #define mpic_cpu_write(i,v)	_mpic_cpu_write(mpic,(i),(v))
249 #define mpic_irq_read(s,r)	_mpic_irq_read(mpic,(s),(r))
250 #define mpic_irq_write(s,r,v)	_mpic_irq_write(mpic,(s),(r),(v))
251 
252 
253 /*
254  * Low level utility functions
255  */
256 
257 
258 static void _mpic_map_mmio(struct mpic *mpic, unsigned long phys_addr,
259 			   struct mpic_reg_bank *rb, unsigned int offset,
260 			   unsigned int size)
261 {
262 	rb->base = ioremap(phys_addr + offset, size);
263 	BUG_ON(rb->base == NULL);
264 }
265 
266 #ifdef CONFIG_PPC_DCR
267 static void _mpic_map_dcr(struct mpic *mpic, struct mpic_reg_bank *rb,
268 			  unsigned int offset, unsigned int size)
269 {
270 	rb->dbase = mpic->dcr_base;
271 	rb->doff = offset;
272 	rb->dhost = dcr_map(mpic->of_node, rb->dbase + rb->doff, size);
273 	BUG_ON(!DCR_MAP_OK(rb->dhost));
274 }
275 
276 static inline void mpic_map(struct mpic *mpic, unsigned long phys_addr,
277 			    struct mpic_reg_bank *rb, unsigned int offset,
278 			    unsigned int size)
279 {
280 	if (mpic->flags & MPIC_USES_DCR)
281 		_mpic_map_dcr(mpic, rb, offset, size);
282 	else
283 		_mpic_map_mmio(mpic, phys_addr, rb, offset, size);
284 }
285 #else /* CONFIG_PPC_DCR */
286 #define mpic_map(m,p,b,o,s)	_mpic_map_mmio(m,p,b,o,s)
287 #endif /* !CONFIG_PPC_DCR */
288 
289 
290 
291 /* Check if we have one of those nice broken MPICs with a flipped endian on
292  * reads from IPI registers
293  */
294 static void __init mpic_test_broken_ipi(struct mpic *mpic)
295 {
296 	u32 r;
297 
298 	mpic_write(mpic->gregs, MPIC_INFO(GREG_IPI_VECTOR_PRI_0), MPIC_VECPRI_MASK);
299 	r = mpic_read(mpic->gregs, MPIC_INFO(GREG_IPI_VECTOR_PRI_0));
300 
301 	if (r == le32_to_cpu(MPIC_VECPRI_MASK)) {
302 		printk(KERN_INFO "mpic: Detected reversed IPI registers\n");
303 		mpic->flags |= MPIC_BROKEN_IPI;
304 	}
305 }
306 
307 #ifdef CONFIG_MPIC_BROKEN_U3
308 
309 /* Test if an interrupt is sourced from HyperTransport (used on broken U3s)
310  * to force the edge setting on the MPIC and do the ack workaround.
311  */
312 static inline int mpic_is_ht_interrupt(struct mpic *mpic, unsigned int source)
313 {
314 	if (source >= 128 || !mpic->fixups)
315 		return 0;
316 	return mpic->fixups[source].base != NULL;
317 }
318 
319 
320 static inline void mpic_ht_end_irq(struct mpic *mpic, unsigned int source)
321 {
322 	struct mpic_irq_fixup *fixup = &mpic->fixups[source];
323 
324 	if (fixup->applebase) {
325 		unsigned int soff = (fixup->index >> 3) & ~3;
326 		unsigned int mask = 1U << (fixup->index & 0x1f);
327 		writel(mask, fixup->applebase + soff);
328 	} else {
329 		spin_lock(&mpic->fixup_lock);
330 		writeb(0x11 + 2 * fixup->index, fixup->base + 2);
331 		writel(fixup->data, fixup->base + 4);
332 		spin_unlock(&mpic->fixup_lock);
333 	}
334 }
335 
336 static void mpic_startup_ht_interrupt(struct mpic *mpic, unsigned int source,
337 				      unsigned int irqflags)
338 {
339 	struct mpic_irq_fixup *fixup = &mpic->fixups[source];
340 	unsigned long flags;
341 	u32 tmp;
342 
343 	if (fixup->base == NULL)
344 		return;
345 
346 	DBG("startup_ht_interrupt(0x%x, 0x%x) index: %d\n",
347 	    source, irqflags, fixup->index);
348 	spin_lock_irqsave(&mpic->fixup_lock, flags);
349 	/* Enable and configure */
350 	writeb(0x10 + 2 * fixup->index, fixup->base + 2);
351 	tmp = readl(fixup->base + 4);
352 	tmp &= ~(0x23U);
353 	if (irqflags & IRQ_LEVEL)
354 		tmp |= 0x22;
355 	writel(tmp, fixup->base + 4);
356 	spin_unlock_irqrestore(&mpic->fixup_lock, flags);
357 }
358 
359 static void mpic_shutdown_ht_interrupt(struct mpic *mpic, unsigned int source,
360 				       unsigned int irqflags)
361 {
362 	struct mpic_irq_fixup *fixup = &mpic->fixups[source];
363 	unsigned long flags;
364 	u32 tmp;
365 
366 	if (fixup->base == NULL)
367 		return;
368 
369 	DBG("shutdown_ht_interrupt(0x%x, 0x%x)\n", source, irqflags);
370 
371 	/* Disable */
372 	spin_lock_irqsave(&mpic->fixup_lock, flags);
373 	writeb(0x10 + 2 * fixup->index, fixup->base + 2);
374 	tmp = readl(fixup->base + 4);
375 	tmp |= 1;
376 	writel(tmp, fixup->base + 4);
377 	spin_unlock_irqrestore(&mpic->fixup_lock, flags);
378 }
379 
380 static void __init mpic_scan_ht_pic(struct mpic *mpic, u8 __iomem *devbase,
381 				    unsigned int devfn, u32 vdid)
382 {
383 	int i, irq, n;
384 	u8 __iomem *base;
385 	u32 tmp;
386 	u8 pos;
387 
388 	for (pos = readb(devbase + PCI_CAPABILITY_LIST); pos != 0;
389 	     pos = readb(devbase + pos + PCI_CAP_LIST_NEXT)) {
390 		u8 id = readb(devbase + pos + PCI_CAP_LIST_ID);
391 		if (id == PCI_CAP_ID_HT) {
392 			id = readb(devbase + pos + 3);
393 			if (id == HT_CAPTYPE_IRQ)
394 				break;
395 		}
396 	}
397 	if (pos == 0)
398 		return;
399 
400 	base = devbase + pos;
401 	writeb(0x01, base + 2);
402 	n = (readl(base + 4) >> 16) & 0xff;
403 
404 	printk(KERN_INFO "mpic:   - HT:%02x.%x [0x%02x] vendor %04x device %04x"
405 	       " has %d irqs\n",
406 	       devfn >> 3, devfn & 0x7, pos, vdid & 0xffff, vdid >> 16, n + 1);
407 
408 	for (i = 0; i <= n; i++) {
409 		writeb(0x10 + 2 * i, base + 2);
410 		tmp = readl(base + 4);
411 		irq = (tmp >> 16) & 0xff;
412 		DBG("HT PIC index 0x%x, irq 0x%x, tmp: %08x\n", i, irq, tmp);
413 		/* mask it , will be unmasked later */
414 		tmp |= 0x1;
415 		writel(tmp, base + 4);
416 		mpic->fixups[irq].index = i;
417 		mpic->fixups[irq].base = base;
418 		/* Apple HT PIC has a non-standard way of doing EOIs */
419 		if ((vdid & 0xffff) == 0x106b)
420 			mpic->fixups[irq].applebase = devbase + 0x60;
421 		else
422 			mpic->fixups[irq].applebase = NULL;
423 		writeb(0x11 + 2 * i, base + 2);
424 		mpic->fixups[irq].data = readl(base + 4) | 0x80000000;
425 	}
426 }
427 
428 
429 static void __init mpic_scan_ht_pics(struct mpic *mpic)
430 {
431 	unsigned int devfn;
432 	u8 __iomem *cfgspace;
433 
434 	printk(KERN_INFO "mpic: Setting up HT PICs workarounds for U3/U4\n");
435 
436 	/* Allocate fixups array */
437 	mpic->fixups = alloc_bootmem(128 * sizeof(struct mpic_irq_fixup));
438 	BUG_ON(mpic->fixups == NULL);
439 	memset(mpic->fixups, 0, 128 * sizeof(struct mpic_irq_fixup));
440 
441 	/* Init spinlock */
442 	spin_lock_init(&mpic->fixup_lock);
443 
444 	/* Map U3 config space. We assume all IO-APICs are on the primary bus
445 	 * so we only need to map 64kB.
446 	 */
447 	cfgspace = ioremap(0xf2000000, 0x10000);
448 	BUG_ON(cfgspace == NULL);
449 
450 	/* Now we scan all slots. We do a very quick scan, we read the header
451 	 * type, vendor ID and device ID only, that's plenty enough
452 	 */
453 	for (devfn = 0; devfn < 0x100; devfn++) {
454 		u8 __iomem *devbase = cfgspace + (devfn << 8);
455 		u8 hdr_type = readb(devbase + PCI_HEADER_TYPE);
456 		u32 l = readl(devbase + PCI_VENDOR_ID);
457 		u16 s;
458 
459 		DBG("devfn %x, l: %x\n", devfn, l);
460 
461 		/* If no device, skip */
462 		if (l == 0xffffffff || l == 0x00000000 ||
463 		    l == 0x0000ffff || l == 0xffff0000)
464 			goto next;
465 		/* Check if is supports capability lists */
466 		s = readw(devbase + PCI_STATUS);
467 		if (!(s & PCI_STATUS_CAP_LIST))
468 			goto next;
469 
470 		mpic_scan_ht_pic(mpic, devbase, devfn, l);
471 
472 	next:
473 		/* next device, if function 0 */
474 		if (PCI_FUNC(devfn) == 0 && (hdr_type & 0x80) == 0)
475 			devfn += 7;
476 	}
477 }
478 
479 #else /* CONFIG_MPIC_BROKEN_U3 */
480 
481 static inline int mpic_is_ht_interrupt(struct mpic *mpic, unsigned int source)
482 {
483 	return 0;
484 }
485 
486 static void __init mpic_scan_ht_pics(struct mpic *mpic)
487 {
488 }
489 
490 #endif /* CONFIG_MPIC_BROKEN_U3 */
491 
492 
493 #define mpic_irq_to_hw(virq)	((unsigned int)irq_map[virq].hwirq)
494 
495 /* Find an mpic associated with a given linux interrupt */
496 static struct mpic *mpic_find(unsigned int irq, unsigned int *is_ipi)
497 {
498 	unsigned int src = mpic_irq_to_hw(irq);
499 
500 	if (irq < NUM_ISA_INTERRUPTS)
501 		return NULL;
502 	if (is_ipi)
503 		*is_ipi = (src >= MPIC_VEC_IPI_0 && src <= MPIC_VEC_IPI_3);
504 
505 	return irq_desc[irq].chip_data;
506 }
507 
508 /* Convert a cpu mask from logical to physical cpu numbers. */
509 static inline u32 mpic_physmask(u32 cpumask)
510 {
511 	int i;
512 	u32 mask = 0;
513 
514 	for (i = 0; i < NR_CPUS; ++i, cpumask >>= 1)
515 		mask |= (cpumask & 1) << get_hard_smp_processor_id(i);
516 	return mask;
517 }
518 
519 #ifdef CONFIG_SMP
520 /* Get the mpic structure from the IPI number */
521 static inline struct mpic * mpic_from_ipi(unsigned int ipi)
522 {
523 	return irq_desc[ipi].chip_data;
524 }
525 #endif
526 
527 /* Get the mpic structure from the irq number */
528 static inline struct mpic * mpic_from_irq(unsigned int irq)
529 {
530 	return irq_desc[irq].chip_data;
531 }
532 
533 /* Send an EOI */
534 static inline void mpic_eoi(struct mpic *mpic)
535 {
536 	mpic_cpu_write(MPIC_INFO(CPU_EOI), 0);
537 	(void)mpic_cpu_read(MPIC_INFO(CPU_WHOAMI));
538 }
539 
540 #ifdef CONFIG_SMP
541 static irqreturn_t mpic_ipi_action(int irq, void *dev_id)
542 {
543 	smp_message_recv(mpic_irq_to_hw(irq) - MPIC_VEC_IPI_0);
544 	return IRQ_HANDLED;
545 }
546 #endif /* CONFIG_SMP */
547 
548 /*
549  * Linux descriptor level callbacks
550  */
551 
552 
553 static void mpic_unmask_irq(unsigned int irq)
554 {
555 	unsigned int loops = 100000;
556 	struct mpic *mpic = mpic_from_irq(irq);
557 	unsigned int src = mpic_irq_to_hw(irq);
558 
559 	DBG("%p: %s: enable_irq: %d (src %d)\n", mpic, mpic->name, irq, src);
560 
561 	mpic_irq_write(src, MPIC_INFO(IRQ_VECTOR_PRI),
562 		       mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI)) &
563 		       ~MPIC_VECPRI_MASK);
564 	/* make sure mask gets to controller before we return to user */
565 	do {
566 		if (!loops--) {
567 			printk(KERN_ERR "mpic_enable_irq timeout\n");
568 			break;
569 		}
570 	} while(mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI)) & MPIC_VECPRI_MASK);
571 }
572 
573 static void mpic_mask_irq(unsigned int irq)
574 {
575 	unsigned int loops = 100000;
576 	struct mpic *mpic = mpic_from_irq(irq);
577 	unsigned int src = mpic_irq_to_hw(irq);
578 
579 	DBG("%s: disable_irq: %d (src %d)\n", mpic->name, irq, src);
580 
581 	mpic_irq_write(src, MPIC_INFO(IRQ_VECTOR_PRI),
582 		       mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI)) |
583 		       MPIC_VECPRI_MASK);
584 
585 	/* make sure mask gets to controller before we return to user */
586 	do {
587 		if (!loops--) {
588 			printk(KERN_ERR "mpic_enable_irq timeout\n");
589 			break;
590 		}
591 	} while(!(mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI)) & MPIC_VECPRI_MASK));
592 }
593 
594 static void mpic_end_irq(unsigned int irq)
595 {
596 	struct mpic *mpic = mpic_from_irq(irq);
597 
598 #ifdef DEBUG_IRQ
599 	DBG("%s: end_irq: %d\n", mpic->name, irq);
600 #endif
601 	/* We always EOI on end_irq() even for edge interrupts since that
602 	 * should only lower the priority, the MPIC should have properly
603 	 * latched another edge interrupt coming in anyway
604 	 */
605 
606 	mpic_eoi(mpic);
607 }
608 
609 #ifdef CONFIG_MPIC_BROKEN_U3
610 
611 static void mpic_unmask_ht_irq(unsigned int irq)
612 {
613 	struct mpic *mpic = mpic_from_irq(irq);
614 	unsigned int src = mpic_irq_to_hw(irq);
615 
616 	mpic_unmask_irq(irq);
617 
618 	if (irq_desc[irq].status & IRQ_LEVEL)
619 		mpic_ht_end_irq(mpic, src);
620 }
621 
622 static unsigned int mpic_startup_ht_irq(unsigned int irq)
623 {
624 	struct mpic *mpic = mpic_from_irq(irq);
625 	unsigned int src = mpic_irq_to_hw(irq);
626 
627 	mpic_unmask_irq(irq);
628 	mpic_startup_ht_interrupt(mpic, src, irq_desc[irq].status);
629 
630 	return 0;
631 }
632 
633 static void mpic_shutdown_ht_irq(unsigned int irq)
634 {
635 	struct mpic *mpic = mpic_from_irq(irq);
636 	unsigned int src = mpic_irq_to_hw(irq);
637 
638 	mpic_shutdown_ht_interrupt(mpic, src, irq_desc[irq].status);
639 	mpic_mask_irq(irq);
640 }
641 
642 static void mpic_end_ht_irq(unsigned int irq)
643 {
644 	struct mpic *mpic = mpic_from_irq(irq);
645 	unsigned int src = mpic_irq_to_hw(irq);
646 
647 #ifdef DEBUG_IRQ
648 	DBG("%s: end_irq: %d\n", mpic->name, irq);
649 #endif
650 	/* We always EOI on end_irq() even for edge interrupts since that
651 	 * should only lower the priority, the MPIC should have properly
652 	 * latched another edge interrupt coming in anyway
653 	 */
654 
655 	if (irq_desc[irq].status & IRQ_LEVEL)
656 		mpic_ht_end_irq(mpic, src);
657 	mpic_eoi(mpic);
658 }
659 #endif /* !CONFIG_MPIC_BROKEN_U3 */
660 
661 #ifdef CONFIG_SMP
662 
663 static void mpic_unmask_ipi(unsigned int irq)
664 {
665 	struct mpic *mpic = mpic_from_ipi(irq);
666 	unsigned int src = mpic_irq_to_hw(irq) - MPIC_VEC_IPI_0;
667 
668 	DBG("%s: enable_ipi: %d (ipi %d)\n", mpic->name, irq, src);
669 	mpic_ipi_write(src, mpic_ipi_read(src) & ~MPIC_VECPRI_MASK);
670 }
671 
672 static void mpic_mask_ipi(unsigned int irq)
673 {
674 	/* NEVER disable an IPI... that's just plain wrong! */
675 }
676 
677 static void mpic_end_ipi(unsigned int irq)
678 {
679 	struct mpic *mpic = mpic_from_ipi(irq);
680 
681 	/*
682 	 * IPIs are marked IRQ_PER_CPU. This has the side effect of
683 	 * preventing the IRQ_PENDING/IRQ_INPROGRESS logic from
684 	 * applying to them. We EOI them late to avoid re-entering.
685 	 * We mark IPI's with IRQF_DISABLED as they must run with
686 	 * irqs disabled.
687 	 */
688 	mpic_eoi(mpic);
689 }
690 
691 #endif /* CONFIG_SMP */
692 
693 static void mpic_set_affinity(unsigned int irq, cpumask_t cpumask)
694 {
695 	struct mpic *mpic = mpic_from_irq(irq);
696 	unsigned int src = mpic_irq_to_hw(irq);
697 
698 	cpumask_t tmp;
699 
700 	cpus_and(tmp, cpumask, cpu_online_map);
701 
702 	mpic_irq_write(src, MPIC_INFO(IRQ_DESTINATION),
703 		       mpic_physmask(cpus_addr(tmp)[0]));
704 }
705 
706 static unsigned int mpic_type_to_vecpri(struct mpic *mpic, unsigned int type)
707 {
708 	/* Now convert sense value */
709 	switch(type & IRQ_TYPE_SENSE_MASK) {
710 	case IRQ_TYPE_EDGE_RISING:
711 		return MPIC_INFO(VECPRI_SENSE_EDGE) |
712 		       MPIC_INFO(VECPRI_POLARITY_POSITIVE);
713 	case IRQ_TYPE_EDGE_FALLING:
714 	case IRQ_TYPE_EDGE_BOTH:
715 		return MPIC_INFO(VECPRI_SENSE_EDGE) |
716 		       MPIC_INFO(VECPRI_POLARITY_NEGATIVE);
717 	case IRQ_TYPE_LEVEL_HIGH:
718 		return MPIC_INFO(VECPRI_SENSE_LEVEL) |
719 		       MPIC_INFO(VECPRI_POLARITY_POSITIVE);
720 	case IRQ_TYPE_LEVEL_LOW:
721 	default:
722 		return MPIC_INFO(VECPRI_SENSE_LEVEL) |
723 		       MPIC_INFO(VECPRI_POLARITY_NEGATIVE);
724 	}
725 }
726 
727 static int mpic_set_irq_type(unsigned int virq, unsigned int flow_type)
728 {
729 	struct mpic *mpic = mpic_from_irq(virq);
730 	unsigned int src = mpic_irq_to_hw(virq);
731 	struct irq_desc *desc = get_irq_desc(virq);
732 	unsigned int vecpri, vold, vnew;
733 
734 	DBG("mpic: set_irq_type(mpic:@%p,virq:%d,src:0x%x,type:0x%x)\n",
735 	    mpic, virq, src, flow_type);
736 
737 	if (src >= mpic->irq_count)
738 		return -EINVAL;
739 
740 	if (flow_type == IRQ_TYPE_NONE)
741 		if (mpic->senses && src < mpic->senses_count)
742 			flow_type = mpic->senses[src];
743 	if (flow_type == IRQ_TYPE_NONE)
744 		flow_type = IRQ_TYPE_LEVEL_LOW;
745 
746 	desc->status &= ~(IRQ_TYPE_SENSE_MASK | IRQ_LEVEL);
747 	desc->status |= flow_type & IRQ_TYPE_SENSE_MASK;
748 	if (flow_type & (IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW))
749 		desc->status |= IRQ_LEVEL;
750 
751 	if (mpic_is_ht_interrupt(mpic, src))
752 		vecpri = MPIC_VECPRI_POLARITY_POSITIVE |
753 			MPIC_VECPRI_SENSE_EDGE;
754 	else
755 		vecpri = mpic_type_to_vecpri(mpic, flow_type);
756 
757 	vold = mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI));
758 	vnew = vold & ~(MPIC_INFO(VECPRI_POLARITY_MASK) |
759 			MPIC_INFO(VECPRI_SENSE_MASK));
760 	vnew |= vecpri;
761 	if (vold != vnew)
762 		mpic_irq_write(src, MPIC_INFO(IRQ_VECTOR_PRI), vnew);
763 
764 	return 0;
765 }
766 
767 static struct irq_chip mpic_irq_chip = {
768 	.mask		= mpic_mask_irq,
769 	.unmask		= mpic_unmask_irq,
770 	.eoi		= mpic_end_irq,
771 	.set_type	= mpic_set_irq_type,
772 };
773 
774 #ifdef CONFIG_SMP
775 static struct irq_chip mpic_ipi_chip = {
776 	.mask		= mpic_mask_ipi,
777 	.unmask		= mpic_unmask_ipi,
778 	.eoi		= mpic_end_ipi,
779 };
780 #endif /* CONFIG_SMP */
781 
782 #ifdef CONFIG_MPIC_BROKEN_U3
783 static struct irq_chip mpic_irq_ht_chip = {
784 	.startup	= mpic_startup_ht_irq,
785 	.shutdown	= mpic_shutdown_ht_irq,
786 	.mask		= mpic_mask_irq,
787 	.unmask		= mpic_unmask_ht_irq,
788 	.eoi		= mpic_end_ht_irq,
789 	.set_type	= mpic_set_irq_type,
790 };
791 #endif /* CONFIG_MPIC_BROKEN_U3 */
792 
793 
794 static int mpic_host_match(struct irq_host *h, struct device_node *node)
795 {
796 	struct mpic *mpic = h->host_data;
797 
798 	/* Exact match, unless mpic node is NULL */
799 	return mpic->of_node == NULL || mpic->of_node == node;
800 }
801 
802 static int mpic_host_map(struct irq_host *h, unsigned int virq,
803 			 irq_hw_number_t hw)
804 {
805 	struct mpic *mpic = h->host_data;
806 	struct irq_chip *chip;
807 
808 	DBG("mpic: map virq %d, hwirq 0x%lx\n", virq, hw);
809 
810 	if (hw == MPIC_VEC_SPURRIOUS)
811 		return -EINVAL;
812 
813 #ifdef CONFIG_SMP
814 	else if (hw >= MPIC_VEC_IPI_0) {
815 		WARN_ON(!(mpic->flags & MPIC_PRIMARY));
816 
817 		DBG("mpic: mapping as IPI\n");
818 		set_irq_chip_data(virq, mpic);
819 		set_irq_chip_and_handler(virq, &mpic->hc_ipi,
820 					 handle_percpu_irq);
821 		return 0;
822 	}
823 #endif /* CONFIG_SMP */
824 
825 	if (hw >= mpic->irq_count)
826 		return -EINVAL;
827 
828 	/* Default chip */
829 	chip = &mpic->hc_irq;
830 
831 #ifdef CONFIG_MPIC_BROKEN_U3
832 	/* Check for HT interrupts, override vecpri */
833 	if (mpic_is_ht_interrupt(mpic, hw))
834 		chip = &mpic->hc_ht_irq;
835 #endif /* CONFIG_MPIC_BROKEN_U3 */
836 
837 	DBG("mpic: mapping to irq chip @%p\n", chip);
838 
839 	set_irq_chip_data(virq, mpic);
840 	set_irq_chip_and_handler(virq, chip, handle_fasteoi_irq);
841 
842 	/* Set default irq type */
843 	set_irq_type(virq, IRQ_TYPE_NONE);
844 
845 	return 0;
846 }
847 
848 static int mpic_host_xlate(struct irq_host *h, struct device_node *ct,
849 			   u32 *intspec, unsigned int intsize,
850 			   irq_hw_number_t *out_hwirq, unsigned int *out_flags)
851 
852 {
853 	static unsigned char map_mpic_senses[4] = {
854 		IRQ_TYPE_EDGE_RISING,
855 		IRQ_TYPE_LEVEL_LOW,
856 		IRQ_TYPE_LEVEL_HIGH,
857 		IRQ_TYPE_EDGE_FALLING,
858 	};
859 
860 	*out_hwirq = intspec[0];
861 	if (intsize > 1) {
862 		u32 mask = 0x3;
863 
864 		/* Apple invented a new race of encoding on machines with
865 		 * an HT APIC. They encode, among others, the index within
866 		 * the HT APIC. We don't care about it here since thankfully,
867 		 * it appears that they have the APIC already properly
868 		 * configured, and thus our current fixup code that reads the
869 		 * APIC config works fine. However, we still need to mask out
870 		 * bits in the specifier to make sure we only get bit 0 which
871 		 * is the level/edge bit (the only sense bit exposed by Apple),
872 		 * as their bit 1 means something else.
873 		 */
874 		if (machine_is(powermac))
875 			mask = 0x1;
876 		*out_flags = map_mpic_senses[intspec[1] & mask];
877 	} else
878 		*out_flags = IRQ_TYPE_NONE;
879 
880 	DBG("mpic: xlate (%d cells: 0x%08x 0x%08x) to line 0x%lx sense 0x%x\n",
881 	    intsize, intspec[0], intspec[1], *out_hwirq, *out_flags);
882 
883 	return 0;
884 }
885 
886 static struct irq_host_ops mpic_host_ops = {
887 	.match = mpic_host_match,
888 	.map = mpic_host_map,
889 	.xlate = mpic_host_xlate,
890 };
891 
892 /*
893  * Exported functions
894  */
895 
896 struct mpic * __init mpic_alloc(struct device_node *node,
897 				unsigned long phys_addr,
898 				unsigned int flags,
899 				unsigned int isu_size,
900 				unsigned int irq_count,
901 				const char *name)
902 {
903 	struct mpic	*mpic;
904 	u32		reg;
905 	const char	*vers;
906 	int		i;
907 
908 	mpic = alloc_bootmem(sizeof(struct mpic));
909 	if (mpic == NULL)
910 		return NULL;
911 
912 	memset(mpic, 0, sizeof(struct mpic));
913 	mpic->name = name;
914 	mpic->of_node = node ? of_node_get(node) : NULL;
915 
916 	mpic->irqhost = irq_alloc_host(IRQ_HOST_MAP_LINEAR, 256,
917 				       &mpic_host_ops,
918 				       MPIC_VEC_SPURRIOUS);
919 	if (mpic->irqhost == NULL) {
920 		of_node_put(node);
921 		return NULL;
922 	}
923 
924 	mpic->irqhost->host_data = mpic;
925 	mpic->hc_irq = mpic_irq_chip;
926 	mpic->hc_irq.typename = name;
927 	if (flags & MPIC_PRIMARY)
928 		mpic->hc_irq.set_affinity = mpic_set_affinity;
929 #ifdef CONFIG_MPIC_BROKEN_U3
930 	mpic->hc_ht_irq = mpic_irq_ht_chip;
931 	mpic->hc_ht_irq.typename = name;
932 	if (flags & MPIC_PRIMARY)
933 		mpic->hc_ht_irq.set_affinity = mpic_set_affinity;
934 #endif /* CONFIG_MPIC_BROKEN_U3 */
935 
936 #ifdef CONFIG_SMP
937 	mpic->hc_ipi = mpic_ipi_chip;
938 	mpic->hc_ipi.typename = name;
939 #endif /* CONFIG_SMP */
940 
941 	mpic->flags = flags;
942 	mpic->isu_size = isu_size;
943 	mpic->irq_count = irq_count;
944 	mpic->num_sources = 0; /* so far */
945 
946 #ifdef CONFIG_MPIC_WEIRD
947 	mpic->hw_set = mpic_infos[MPIC_GET_REGSET(flags)];
948 #endif
949 
950 	/* default register type */
951 	mpic->reg_type = (flags & MPIC_BIG_ENDIAN) ?
952 		mpic_access_mmio_be : mpic_access_mmio_le;
953 
954 #ifdef CONFIG_PPC_DCR
955 	if (mpic->flags & MPIC_USES_DCR) {
956 		const u32 *dbasep;
957 		BUG_ON(mpic->of_node == NULL);
958 		dbasep = get_property(mpic->of_node, "dcr-reg", NULL);
959 		BUG_ON(dbasep == NULL);
960 		mpic->dcr_base = *dbasep;
961 		mpic->reg_type = mpic_access_dcr;
962 	}
963 #else
964 	BUG_ON (mpic->flags & MPIC_USES_DCR);
965 #endif /* CONFIG_PPC_DCR */
966 
967 	/* Map the global registers */
968 	mpic_map(mpic, phys_addr, &mpic->gregs, MPIC_INFO(GREG_BASE), 0x1000);
969 	mpic_map(mpic, phys_addr, &mpic->tmregs, MPIC_INFO(TIMER_BASE), 0x1000);
970 
971 	/* Reset */
972 	if (flags & MPIC_WANTS_RESET) {
973 		mpic_write(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0),
974 			   mpic_read(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0))
975 			   | MPIC_GREG_GCONF_RESET);
976 		while( mpic_read(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0))
977 		       & MPIC_GREG_GCONF_RESET)
978 			mb();
979 	}
980 
981 	/* Read feature register, calculate num CPUs and, for non-ISU
982 	 * MPICs, num sources as well. On ISU MPICs, sources are counted
983 	 * as ISUs are added
984 	 */
985 	reg = mpic_read(mpic->gregs, MPIC_INFO(GREG_FEATURE_0));
986 	mpic->num_cpus = ((reg & MPIC_GREG_FEATURE_LAST_CPU_MASK)
987 			  >> MPIC_GREG_FEATURE_LAST_CPU_SHIFT) + 1;
988 	if (isu_size == 0)
989 		mpic->num_sources = ((reg & MPIC_GREG_FEATURE_LAST_SRC_MASK)
990 				     >> MPIC_GREG_FEATURE_LAST_SRC_SHIFT) + 1;
991 
992 	/* Map the per-CPU registers */
993 	for (i = 0; i < mpic->num_cpus; i++) {
994 		mpic_map(mpic, phys_addr, &mpic->cpuregs[i],
995 			 MPIC_INFO(CPU_BASE) + i * MPIC_INFO(CPU_STRIDE),
996 			 0x1000);
997 	}
998 
999 	/* Initialize main ISU if none provided */
1000 	if (mpic->isu_size == 0) {
1001 		mpic->isu_size = mpic->num_sources;
1002 		mpic_map(mpic, phys_addr, &mpic->isus[0],
1003 			 MPIC_INFO(IRQ_BASE), MPIC_INFO(IRQ_STRIDE) * mpic->isu_size);
1004 	}
1005 	mpic->isu_shift = 1 + __ilog2(mpic->isu_size - 1);
1006 	mpic->isu_mask = (1 << mpic->isu_shift) - 1;
1007 
1008 	/* Display version */
1009 	switch (reg & MPIC_GREG_FEATURE_VERSION_MASK) {
1010 	case 1:
1011 		vers = "1.0";
1012 		break;
1013 	case 2:
1014 		vers = "1.2";
1015 		break;
1016 	case 3:
1017 		vers = "1.3";
1018 		break;
1019 	default:
1020 		vers = "<unknown>";
1021 		break;
1022 	}
1023 	printk(KERN_INFO "mpic: Setting up MPIC \"%s\" version %s at %lx, max %d CPUs\n",
1024 	       name, vers, phys_addr, mpic->num_cpus);
1025 	printk(KERN_INFO "mpic: ISU size: %d, shift: %d, mask: %x\n", mpic->isu_size,
1026 	       mpic->isu_shift, mpic->isu_mask);
1027 
1028 	mpic->next = mpics;
1029 	mpics = mpic;
1030 
1031 	if (flags & MPIC_PRIMARY) {
1032 		mpic_primary = mpic;
1033 		irq_set_default_host(mpic->irqhost);
1034 	}
1035 
1036 	return mpic;
1037 }
1038 
1039 void __init mpic_assign_isu(struct mpic *mpic, unsigned int isu_num,
1040 			    unsigned long phys_addr)
1041 {
1042 	unsigned int isu_first = isu_num * mpic->isu_size;
1043 
1044 	BUG_ON(isu_num >= MPIC_MAX_ISU);
1045 
1046 	mpic_map(mpic, phys_addr, &mpic->isus[isu_num], 0,
1047 		 MPIC_INFO(IRQ_STRIDE) * mpic->isu_size);
1048 	if ((isu_first + mpic->isu_size) > mpic->num_sources)
1049 		mpic->num_sources = isu_first + mpic->isu_size;
1050 }
1051 
1052 void __init mpic_set_default_senses(struct mpic *mpic, u8 *senses, int count)
1053 {
1054 	mpic->senses = senses;
1055 	mpic->senses_count = count;
1056 }
1057 
1058 void __init mpic_init(struct mpic *mpic)
1059 {
1060 	int i;
1061 
1062 	BUG_ON(mpic->num_sources == 0);
1063 	WARN_ON(mpic->num_sources > MPIC_VEC_IPI_0);
1064 
1065 	/* Sanitize source count */
1066 	if (mpic->num_sources > MPIC_VEC_IPI_0)
1067 		mpic->num_sources = MPIC_VEC_IPI_0;
1068 
1069 	printk(KERN_INFO "mpic: Initializing for %d sources\n", mpic->num_sources);
1070 
1071 	/* Set current processor priority to max */
1072 	mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), 0xf);
1073 
1074 	/* Initialize timers: just disable them all */
1075 	for (i = 0; i < 4; i++) {
1076 		mpic_write(mpic->tmregs,
1077 			   i * MPIC_INFO(TIMER_STRIDE) +
1078 			   MPIC_INFO(TIMER_DESTINATION), 0);
1079 		mpic_write(mpic->tmregs,
1080 			   i * MPIC_INFO(TIMER_STRIDE) +
1081 			   MPIC_INFO(TIMER_VECTOR_PRI),
1082 			   MPIC_VECPRI_MASK |
1083 			   (MPIC_VEC_TIMER_0 + i));
1084 	}
1085 
1086 	/* Initialize IPIs to our reserved vectors and mark them disabled for now */
1087 	mpic_test_broken_ipi(mpic);
1088 	for (i = 0; i < 4; i++) {
1089 		mpic_ipi_write(i,
1090 			       MPIC_VECPRI_MASK |
1091 			       (10 << MPIC_VECPRI_PRIORITY_SHIFT) |
1092 			       (MPIC_VEC_IPI_0 + i));
1093 	}
1094 
1095 	/* Initialize interrupt sources */
1096 	if (mpic->irq_count == 0)
1097 		mpic->irq_count = mpic->num_sources;
1098 
1099 	/* Do the HT PIC fixups on U3 broken mpic */
1100 	DBG("MPIC flags: %x\n", mpic->flags);
1101 	if ((mpic->flags & MPIC_BROKEN_U3) && (mpic->flags & MPIC_PRIMARY))
1102  		mpic_scan_ht_pics(mpic);
1103 
1104 	for (i = 0; i < mpic->num_sources; i++) {
1105 		/* start with vector = source number, and masked */
1106 		u32 vecpri = MPIC_VECPRI_MASK | i |
1107 			(8 << MPIC_VECPRI_PRIORITY_SHIFT);
1108 
1109 		/* init hw */
1110 		mpic_irq_write(i, MPIC_INFO(IRQ_VECTOR_PRI), vecpri);
1111 		mpic_irq_write(i, MPIC_INFO(IRQ_DESTINATION),
1112 			       1 << hard_smp_processor_id());
1113 	}
1114 
1115 	/* Init spurrious vector */
1116 	mpic_write(mpic->gregs, MPIC_INFO(GREG_SPURIOUS), MPIC_VEC_SPURRIOUS);
1117 
1118 	/* Disable 8259 passthrough, if supported */
1119 	if (!(mpic->flags & MPIC_NO_PTHROU_DIS))
1120 		mpic_write(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0),
1121 			   mpic_read(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0))
1122 			   | MPIC_GREG_GCONF_8259_PTHROU_DIS);
1123 
1124 	/* Set current processor priority to 0 */
1125 	mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), 0);
1126 }
1127 
1128 void __init mpic_set_clk_ratio(struct mpic *mpic, u32 clock_ratio)
1129 {
1130 	u32 v;
1131 
1132 	v = mpic_read(mpic->gregs, MPIC_GREG_GLOBAL_CONF_1);
1133 	v &= ~MPIC_GREG_GLOBAL_CONF_1_CLK_RATIO_MASK;
1134 	v |= MPIC_GREG_GLOBAL_CONF_1_CLK_RATIO(clock_ratio);
1135 	mpic_write(mpic->gregs, MPIC_GREG_GLOBAL_CONF_1, v);
1136 }
1137 
1138 void __init mpic_set_serial_int(struct mpic *mpic, int enable)
1139 {
1140 	unsigned long flags;
1141 	u32 v;
1142 
1143 	spin_lock_irqsave(&mpic_lock, flags);
1144 	v = mpic_read(mpic->gregs, MPIC_GREG_GLOBAL_CONF_1);
1145 	if (enable)
1146 		v |= MPIC_GREG_GLOBAL_CONF_1_SIE;
1147 	else
1148 		v &= ~MPIC_GREG_GLOBAL_CONF_1_SIE;
1149 	mpic_write(mpic->gregs, MPIC_GREG_GLOBAL_CONF_1, v);
1150 	spin_unlock_irqrestore(&mpic_lock, flags);
1151 }
1152 
1153 void mpic_irq_set_priority(unsigned int irq, unsigned int pri)
1154 {
1155 	int is_ipi;
1156 	struct mpic *mpic = mpic_find(irq, &is_ipi);
1157 	unsigned int src = mpic_irq_to_hw(irq);
1158 	unsigned long flags;
1159 	u32 reg;
1160 
1161 	spin_lock_irqsave(&mpic_lock, flags);
1162 	if (is_ipi) {
1163 		reg = mpic_ipi_read(src - MPIC_VEC_IPI_0) &
1164 			~MPIC_VECPRI_PRIORITY_MASK;
1165 		mpic_ipi_write(src - MPIC_VEC_IPI_0,
1166 			       reg | (pri << MPIC_VECPRI_PRIORITY_SHIFT));
1167 	} else {
1168 		reg = mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI))
1169 			& ~MPIC_VECPRI_PRIORITY_MASK;
1170 		mpic_irq_write(src, MPIC_INFO(IRQ_VECTOR_PRI),
1171 			       reg | (pri << MPIC_VECPRI_PRIORITY_SHIFT));
1172 	}
1173 	spin_unlock_irqrestore(&mpic_lock, flags);
1174 }
1175 
1176 unsigned int mpic_irq_get_priority(unsigned int irq)
1177 {
1178 	int is_ipi;
1179 	struct mpic *mpic = mpic_find(irq, &is_ipi);
1180 	unsigned int src = mpic_irq_to_hw(irq);
1181 	unsigned long flags;
1182 	u32 reg;
1183 
1184 	spin_lock_irqsave(&mpic_lock, flags);
1185 	if (is_ipi)
1186 		reg = mpic_ipi_read(src = MPIC_VEC_IPI_0);
1187 	else
1188 		reg = mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI));
1189 	spin_unlock_irqrestore(&mpic_lock, flags);
1190 	return (reg & MPIC_VECPRI_PRIORITY_MASK) >> MPIC_VECPRI_PRIORITY_SHIFT;
1191 }
1192 
1193 void mpic_setup_this_cpu(void)
1194 {
1195 #ifdef CONFIG_SMP
1196 	struct mpic *mpic = mpic_primary;
1197 	unsigned long flags;
1198 	u32 msk = 1 << hard_smp_processor_id();
1199 	unsigned int i;
1200 
1201 	BUG_ON(mpic == NULL);
1202 
1203 	DBG("%s: setup_this_cpu(%d)\n", mpic->name, hard_smp_processor_id());
1204 
1205 	spin_lock_irqsave(&mpic_lock, flags);
1206 
1207  	/* let the mpic know we want intrs. default affinity is 0xffffffff
1208 	 * until changed via /proc. That's how it's done on x86. If we want
1209 	 * it differently, then we should make sure we also change the default
1210 	 * values of irq_desc[].affinity in irq.c.
1211  	 */
1212 	if (distribute_irqs) {
1213 	 	for (i = 0; i < mpic->num_sources ; i++)
1214 			mpic_irq_write(i, MPIC_INFO(IRQ_DESTINATION),
1215 				mpic_irq_read(i, MPIC_INFO(IRQ_DESTINATION)) | msk);
1216 	}
1217 
1218 	/* Set current processor priority to 0 */
1219 	mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), 0);
1220 
1221 	spin_unlock_irqrestore(&mpic_lock, flags);
1222 #endif /* CONFIG_SMP */
1223 }
1224 
1225 int mpic_cpu_get_priority(void)
1226 {
1227 	struct mpic *mpic = mpic_primary;
1228 
1229 	return mpic_cpu_read(MPIC_INFO(CPU_CURRENT_TASK_PRI));
1230 }
1231 
1232 void mpic_cpu_set_priority(int prio)
1233 {
1234 	struct mpic *mpic = mpic_primary;
1235 
1236 	prio &= MPIC_CPU_TASKPRI_MASK;
1237 	mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), prio);
1238 }
1239 
1240 /*
1241  * XXX: someone who knows mpic should check this.
1242  * do we need to eoi the ipi including for kexec cpu here (see xics comments)?
1243  * or can we reset the mpic in the new kernel?
1244  */
1245 void mpic_teardown_this_cpu(int secondary)
1246 {
1247 	struct mpic *mpic = mpic_primary;
1248 	unsigned long flags;
1249 	u32 msk = 1 << hard_smp_processor_id();
1250 	unsigned int i;
1251 
1252 	BUG_ON(mpic == NULL);
1253 
1254 	DBG("%s: teardown_this_cpu(%d)\n", mpic->name, hard_smp_processor_id());
1255 	spin_lock_irqsave(&mpic_lock, flags);
1256 
1257 	/* let the mpic know we don't want intrs.  */
1258 	for (i = 0; i < mpic->num_sources ; i++)
1259 		mpic_irq_write(i, MPIC_INFO(IRQ_DESTINATION),
1260 			mpic_irq_read(i, MPIC_INFO(IRQ_DESTINATION)) & ~msk);
1261 
1262 	/* Set current processor priority to max */
1263 	mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), 0xf);
1264 
1265 	spin_unlock_irqrestore(&mpic_lock, flags);
1266 }
1267 
1268 
1269 void mpic_send_ipi(unsigned int ipi_no, unsigned int cpu_mask)
1270 {
1271 	struct mpic *mpic = mpic_primary;
1272 
1273 	BUG_ON(mpic == NULL);
1274 
1275 #ifdef DEBUG_IPI
1276 	DBG("%s: send_ipi(ipi_no: %d)\n", mpic->name, ipi_no);
1277 #endif
1278 
1279 	mpic_cpu_write(MPIC_INFO(CPU_IPI_DISPATCH_0) +
1280 		       ipi_no * MPIC_INFO(CPU_IPI_DISPATCH_STRIDE),
1281 		       mpic_physmask(cpu_mask & cpus_addr(cpu_online_map)[0]));
1282 }
1283 
1284 unsigned int mpic_get_one_irq(struct mpic *mpic)
1285 {
1286 	u32 src;
1287 
1288 	src = mpic_cpu_read(MPIC_INFO(CPU_INTACK)) & MPIC_INFO(VECPRI_VECTOR_MASK);
1289 #ifdef DEBUG_LOW
1290 	DBG("%s: get_one_irq(): %d\n", mpic->name, src);
1291 #endif
1292 	if (unlikely(src == MPIC_VEC_SPURRIOUS))
1293 		return NO_IRQ;
1294 	return irq_linear_revmap(mpic->irqhost, src);
1295 }
1296 
1297 unsigned int mpic_get_irq(void)
1298 {
1299 	struct mpic *mpic = mpic_primary;
1300 
1301 	BUG_ON(mpic == NULL);
1302 
1303 	return mpic_get_one_irq(mpic);
1304 }
1305 
1306 
1307 #ifdef CONFIG_SMP
1308 void mpic_request_ipis(void)
1309 {
1310 	struct mpic *mpic = mpic_primary;
1311 	int i;
1312 	static char *ipi_names[] = {
1313 		"IPI0 (call function)",
1314 		"IPI1 (reschedule)",
1315 		"IPI2 (unused)",
1316 		"IPI3 (debugger break)",
1317 	};
1318 	BUG_ON(mpic == NULL);
1319 
1320 	printk(KERN_INFO "mpic: requesting IPIs ... \n");
1321 
1322 	for (i = 0; i < 4; i++) {
1323 		unsigned int vipi = irq_create_mapping(mpic->irqhost,
1324 						       MPIC_VEC_IPI_0 + i);
1325 		if (vipi == NO_IRQ) {
1326 			printk(KERN_ERR "Failed to map IPI %d\n", i);
1327 			break;
1328 		}
1329 		request_irq(vipi, mpic_ipi_action, IRQF_DISABLED,
1330 			    ipi_names[i], mpic);
1331 	}
1332 }
1333 
1334 void smp_mpic_message_pass(int target, int msg)
1335 {
1336 	/* make sure we're sending something that translates to an IPI */
1337 	if ((unsigned int)msg > 3) {
1338 		printk("SMP %d: smp_message_pass: unknown msg %d\n",
1339 		       smp_processor_id(), msg);
1340 		return;
1341 	}
1342 	switch (target) {
1343 	case MSG_ALL:
1344 		mpic_send_ipi(msg, 0xffffffff);
1345 		break;
1346 	case MSG_ALL_BUT_SELF:
1347 		mpic_send_ipi(msg, 0xffffffff & ~(1 << smp_processor_id()));
1348 		break;
1349 	default:
1350 		mpic_send_ipi(msg, 1 << target);
1351 		break;
1352 	}
1353 }
1354 #endif /* CONFIG_SMP */
1355