]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/powerpc/sysdev/mpic.c
Merge branch 'sched-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[net-next-2.6.git] / arch / powerpc / sysdev / mpic.c
CommitLineData
14cf11af
PM
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
1beb6a7d
BH
16#undef DEBUG_IPI
17#undef DEBUG_IRQ
18#undef DEBUG_LOW
14cf11af 19
14cf11af
PM
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>
5a0e3ad6 29#include <linux/slab.h>
14cf11af
PM
30
31#include <asm/ptrace.h>
32#include <asm/signal.h>
33#include <asm/io.h>
34#include <asm/pgtable.h>
35#include <asm/irq.h>
36#include <asm/machdep.h>
37#include <asm/mpic.h>
38#include <asm/smp.h>
39
a7de7c74
ME
40#include "mpic.h"
41
14cf11af
PM
42#ifdef DEBUG
43#define DBG(fmt...) printk(fmt)
44#else
45#define DBG(fmt...)
46#endif
47
48static struct mpic *mpics;
49static struct mpic *mpic_primary;
203041ad 50static DEFINE_RAW_SPINLOCK(mpic_lock);
14cf11af 51
c0c0d996 52#ifdef CONFIG_PPC32 /* XXX for now */
e40c7f02
AW
53#ifdef CONFIG_IRQ_ALL_CPUS
54#define distribute_irqs (1)
55#else
56#define distribute_irqs (0)
57#endif
c0c0d996 58#endif
14cf11af 59
7233593b
ZR
60#ifdef CONFIG_MPIC_WEIRD
61static u32 mpic_infos[][MPIC_IDX_END] = {
62 [0] = { /* Original OpenPIC compatible MPIC */
63 MPIC_GREG_BASE,
64 MPIC_GREG_FEATURE_0,
65 MPIC_GREG_GLOBAL_CONF_0,
66 MPIC_GREG_VENDOR_ID,
67 MPIC_GREG_IPI_VECTOR_PRI_0,
68 MPIC_GREG_IPI_STRIDE,
69 MPIC_GREG_SPURIOUS,
70 MPIC_GREG_TIMER_FREQ,
71
72 MPIC_TIMER_BASE,
73 MPIC_TIMER_STRIDE,
74 MPIC_TIMER_CURRENT_CNT,
75 MPIC_TIMER_BASE_CNT,
76 MPIC_TIMER_VECTOR_PRI,
77 MPIC_TIMER_DESTINATION,
78
79 MPIC_CPU_BASE,
80 MPIC_CPU_STRIDE,
81 MPIC_CPU_IPI_DISPATCH_0,
82 MPIC_CPU_IPI_DISPATCH_STRIDE,
83 MPIC_CPU_CURRENT_TASK_PRI,
84 MPIC_CPU_WHOAMI,
85 MPIC_CPU_INTACK,
86 MPIC_CPU_EOI,
f365355e 87 MPIC_CPU_MCACK,
7233593b
ZR
88
89 MPIC_IRQ_BASE,
90 MPIC_IRQ_STRIDE,
91 MPIC_IRQ_VECTOR_PRI,
92 MPIC_VECPRI_VECTOR_MASK,
93 MPIC_VECPRI_POLARITY_POSITIVE,
94 MPIC_VECPRI_POLARITY_NEGATIVE,
95 MPIC_VECPRI_SENSE_LEVEL,
96 MPIC_VECPRI_SENSE_EDGE,
97 MPIC_VECPRI_POLARITY_MASK,
98 MPIC_VECPRI_SENSE_MASK,
99 MPIC_IRQ_DESTINATION
100 },
101 [1] = { /* Tsi108/109 PIC */
102 TSI108_GREG_BASE,
103 TSI108_GREG_FEATURE_0,
104 TSI108_GREG_GLOBAL_CONF_0,
105 TSI108_GREG_VENDOR_ID,
106 TSI108_GREG_IPI_VECTOR_PRI_0,
107 TSI108_GREG_IPI_STRIDE,
108 TSI108_GREG_SPURIOUS,
109 TSI108_GREG_TIMER_FREQ,
110
111 TSI108_TIMER_BASE,
112 TSI108_TIMER_STRIDE,
113 TSI108_TIMER_CURRENT_CNT,
114 TSI108_TIMER_BASE_CNT,
115 TSI108_TIMER_VECTOR_PRI,
116 TSI108_TIMER_DESTINATION,
117
118 TSI108_CPU_BASE,
119 TSI108_CPU_STRIDE,
120 TSI108_CPU_IPI_DISPATCH_0,
121 TSI108_CPU_IPI_DISPATCH_STRIDE,
122 TSI108_CPU_CURRENT_TASK_PRI,
123 TSI108_CPU_WHOAMI,
124 TSI108_CPU_INTACK,
125 TSI108_CPU_EOI,
f365355e 126 TSI108_CPU_MCACK,
7233593b
ZR
127
128 TSI108_IRQ_BASE,
129 TSI108_IRQ_STRIDE,
130 TSI108_IRQ_VECTOR_PRI,
131 TSI108_VECPRI_VECTOR_MASK,
132 TSI108_VECPRI_POLARITY_POSITIVE,
133 TSI108_VECPRI_POLARITY_NEGATIVE,
134 TSI108_VECPRI_SENSE_LEVEL,
135 TSI108_VECPRI_SENSE_EDGE,
136 TSI108_VECPRI_POLARITY_MASK,
137 TSI108_VECPRI_SENSE_MASK,
138 TSI108_IRQ_DESTINATION
139 },
140};
141
142#define MPIC_INFO(name) mpic->hw_set[MPIC_IDX_##name]
143
144#else /* CONFIG_MPIC_WEIRD */
145
146#define MPIC_INFO(name) MPIC_##name
147
148#endif /* CONFIG_MPIC_WEIRD */
149
14cf11af
PM
150/*
151 * Register accessor functions
152 */
153
154
fbf0274e
BH
155static inline u32 _mpic_read(enum mpic_reg_type type,
156 struct mpic_reg_bank *rb,
157 unsigned int reg)
14cf11af 158{
fbf0274e
BH
159 switch(type) {
160#ifdef CONFIG_PPC_DCR
161 case mpic_access_dcr:
83f34df4 162 return dcr_read(rb->dhost, reg);
fbf0274e
BH
163#endif
164 case mpic_access_mmio_be:
165 return in_be32(rb->base + (reg >> 2));
166 case mpic_access_mmio_le:
167 default:
168 return in_le32(rb->base + (reg >> 2));
169 }
14cf11af
PM
170}
171
fbf0274e
BH
172static inline void _mpic_write(enum mpic_reg_type type,
173 struct mpic_reg_bank *rb,
174 unsigned int reg, u32 value)
14cf11af 175{
fbf0274e
BH
176 switch(type) {
177#ifdef CONFIG_PPC_DCR
178 case mpic_access_dcr:
d9d1063d
JB
179 dcr_write(rb->dhost, reg, value);
180 break;
fbf0274e
BH
181#endif
182 case mpic_access_mmio_be:
d9d1063d
JB
183 out_be32(rb->base + (reg >> 2), value);
184 break;
fbf0274e
BH
185 case mpic_access_mmio_le:
186 default:
d9d1063d
JB
187 out_le32(rb->base + (reg >> 2), value);
188 break;
fbf0274e 189 }
14cf11af
PM
190}
191
192static inline u32 _mpic_ipi_read(struct mpic *mpic, unsigned int ipi)
193{
fbf0274e 194 enum mpic_reg_type type = mpic->reg_type;
7233593b
ZR
195 unsigned int offset = MPIC_INFO(GREG_IPI_VECTOR_PRI_0) +
196 (ipi * MPIC_INFO(GREG_IPI_STRIDE));
14cf11af 197
fbf0274e
BH
198 if ((mpic->flags & MPIC_BROKEN_IPI) && type == mpic_access_mmio_le)
199 type = mpic_access_mmio_be;
200 return _mpic_read(type, &mpic->gregs, offset);
14cf11af
PM
201}
202
203static inline void _mpic_ipi_write(struct mpic *mpic, unsigned int ipi, u32 value)
204{
7233593b
ZR
205 unsigned int offset = MPIC_INFO(GREG_IPI_VECTOR_PRI_0) +
206 (ipi * MPIC_INFO(GREG_IPI_STRIDE));
14cf11af 207
fbf0274e 208 _mpic_write(mpic->reg_type, &mpic->gregs, offset, value);
14cf11af
PM
209}
210
211static inline u32 _mpic_cpu_read(struct mpic *mpic, unsigned int reg)
212{
213 unsigned int cpu = 0;
214
215 if (mpic->flags & MPIC_PRIMARY)
216 cpu = hard_smp_processor_id();
fbf0274e 217 return _mpic_read(mpic->reg_type, &mpic->cpuregs[cpu], reg);
14cf11af
PM
218}
219
220static inline void _mpic_cpu_write(struct mpic *mpic, unsigned int reg, u32 value)
221{
222 unsigned int cpu = 0;
223
224 if (mpic->flags & MPIC_PRIMARY)
225 cpu = hard_smp_processor_id();
226
fbf0274e 227 _mpic_write(mpic->reg_type, &mpic->cpuregs[cpu], reg, value);
14cf11af
PM
228}
229
230static inline u32 _mpic_irq_read(struct mpic *mpic, unsigned int src_no, unsigned int reg)
231{
232 unsigned int isu = src_no >> mpic->isu_shift;
233 unsigned int idx = src_no & mpic->isu_mask;
11a6b292 234 unsigned int val;
14cf11af 235
11a6b292
ME
236 val = _mpic_read(mpic->reg_type, &mpic->isus[isu],
237 reg + (idx * MPIC_INFO(IRQ_STRIDE)));
0d72ba93
OJ
238#ifdef CONFIG_MPIC_BROKEN_REGREAD
239 if (reg == 0)
11a6b292
ME
240 val = (val & (MPIC_VECPRI_MASK | MPIC_VECPRI_ACTIVITY)) |
241 mpic->isu_reg0_shadow[src_no];
0d72ba93 242#endif
11a6b292 243 return val;
14cf11af
PM
244}
245
246static inline void _mpic_irq_write(struct mpic *mpic, unsigned int src_no,
247 unsigned int reg, u32 value)
248{
249 unsigned int isu = src_no >> mpic->isu_shift;
250 unsigned int idx = src_no & mpic->isu_mask;
251
fbf0274e 252 _mpic_write(mpic->reg_type, &mpic->isus[isu],
7233593b 253 reg + (idx * MPIC_INFO(IRQ_STRIDE)), value);
0d72ba93
OJ
254
255#ifdef CONFIG_MPIC_BROKEN_REGREAD
256 if (reg == 0)
11a6b292
ME
257 mpic->isu_reg0_shadow[src_no] =
258 value & ~(MPIC_VECPRI_MASK | MPIC_VECPRI_ACTIVITY);
0d72ba93 259#endif
14cf11af
PM
260}
261
fbf0274e
BH
262#define mpic_read(b,r) _mpic_read(mpic->reg_type,&(b),(r))
263#define mpic_write(b,r,v) _mpic_write(mpic->reg_type,&(b),(r),(v))
14cf11af
PM
264#define mpic_ipi_read(i) _mpic_ipi_read(mpic,(i))
265#define mpic_ipi_write(i,v) _mpic_ipi_write(mpic,(i),(v))
266#define mpic_cpu_read(i) _mpic_cpu_read(mpic,(i))
267#define mpic_cpu_write(i,v) _mpic_cpu_write(mpic,(i),(v))
268#define mpic_irq_read(s,r) _mpic_irq_read(mpic,(s),(r))
269#define mpic_irq_write(s,r,v) _mpic_irq_write(mpic,(s),(r),(v))
270
271
272/*
273 * Low level utility functions
274 */
275
276
c51a3fdc 277static void _mpic_map_mmio(struct mpic *mpic, phys_addr_t phys_addr,
fbf0274e
BH
278 struct mpic_reg_bank *rb, unsigned int offset,
279 unsigned int size)
280{
281 rb->base = ioremap(phys_addr + offset, size);
282 BUG_ON(rb->base == NULL);
283}
284
285#ifdef CONFIG_PPC_DCR
5a2642f6
BH
286static void _mpic_map_dcr(struct mpic *mpic, struct device_node *node,
287 struct mpic_reg_bank *rb,
fbf0274e
BH
288 unsigned int offset, unsigned int size)
289{
0411a5e2
ME
290 const u32 *dbasep;
291
5a2642f6 292 dbasep = of_get_property(node, "dcr-reg", NULL);
0411a5e2 293
5a2642f6 294 rb->dhost = dcr_map(node, *dbasep + offset, size);
fbf0274e
BH
295 BUG_ON(!DCR_MAP_OK(rb->dhost));
296}
297
5a2642f6
BH
298static inline void mpic_map(struct mpic *mpic, struct device_node *node,
299 phys_addr_t phys_addr, struct mpic_reg_bank *rb,
300 unsigned int offset, unsigned int size)
fbf0274e
BH
301{
302 if (mpic->flags & MPIC_USES_DCR)
5a2642f6 303 _mpic_map_dcr(mpic, node, rb, offset, size);
fbf0274e
BH
304 else
305 _mpic_map_mmio(mpic, phys_addr, rb, offset, size);
306}
307#else /* CONFIG_PPC_DCR */
5a2642f6 308#define mpic_map(m,n,p,b,o,s) _mpic_map_mmio(m,p,b,o,s)
fbf0274e
BH
309#endif /* !CONFIG_PPC_DCR */
310
311
14cf11af
PM
312
313/* Check if we have one of those nice broken MPICs with a flipped endian on
314 * reads from IPI registers
315 */
316static void __init mpic_test_broken_ipi(struct mpic *mpic)
317{
318 u32 r;
319
7233593b
ZR
320 mpic_write(mpic->gregs, MPIC_INFO(GREG_IPI_VECTOR_PRI_0), MPIC_VECPRI_MASK);
321 r = mpic_read(mpic->gregs, MPIC_INFO(GREG_IPI_VECTOR_PRI_0));
14cf11af
PM
322
323 if (r == le32_to_cpu(MPIC_VECPRI_MASK)) {
324 printk(KERN_INFO "mpic: Detected reversed IPI registers\n");
325 mpic->flags |= MPIC_BROKEN_IPI;
326 }
327}
328
6cfef5b2 329#ifdef CONFIG_MPIC_U3_HT_IRQS
14cf11af
PM
330
331/* Test if an interrupt is sourced from HyperTransport (used on broken U3s)
332 * to force the edge setting on the MPIC and do the ack workaround.
333 */
1beb6a7d 334static inline int mpic_is_ht_interrupt(struct mpic *mpic, unsigned int source)
14cf11af 335{
1beb6a7d 336 if (source >= 128 || !mpic->fixups)
14cf11af 337 return 0;
1beb6a7d 338 return mpic->fixups[source].base != NULL;
14cf11af
PM
339}
340
c4b22f26 341
1beb6a7d 342static inline void mpic_ht_end_irq(struct mpic *mpic, unsigned int source)
14cf11af 343{
1beb6a7d 344 struct mpic_irq_fixup *fixup = &mpic->fixups[source];
14cf11af 345
1beb6a7d
BH
346 if (fixup->applebase) {
347 unsigned int soff = (fixup->index >> 3) & ~3;
348 unsigned int mask = 1U << (fixup->index & 0x1f);
349 writel(mask, fixup->applebase + soff);
350 } else {
203041ad 351 raw_spin_lock(&mpic->fixup_lock);
1beb6a7d
BH
352 writeb(0x11 + 2 * fixup->index, fixup->base + 2);
353 writel(fixup->data, fixup->base + 4);
203041ad 354 raw_spin_unlock(&mpic->fixup_lock);
1beb6a7d 355 }
14cf11af
PM
356}
357
1beb6a7d
BH
358static void mpic_startup_ht_interrupt(struct mpic *mpic, unsigned int source,
359 unsigned int irqflags)
360{
361 struct mpic_irq_fixup *fixup = &mpic->fixups[source];
362 unsigned long flags;
363 u32 tmp;
364
365 if (fixup->base == NULL)
366 return;
367
06fe98e6 368 DBG("startup_ht_interrupt(0x%x, 0x%x) index: %d\n",
1beb6a7d 369 source, irqflags, fixup->index);
203041ad 370 raw_spin_lock_irqsave(&mpic->fixup_lock, flags);
1beb6a7d
BH
371 /* Enable and configure */
372 writeb(0x10 + 2 * fixup->index, fixup->base + 2);
373 tmp = readl(fixup->base + 4);
374 tmp &= ~(0x23U);
375 if (irqflags & IRQ_LEVEL)
376 tmp |= 0x22;
377 writel(tmp, fixup->base + 4);
203041ad 378 raw_spin_unlock_irqrestore(&mpic->fixup_lock, flags);
3669e930
JB
379
380#ifdef CONFIG_PM
381 /* use the lowest bit inverted to the actual HW,
382 * set if this fixup was enabled, clear otherwise */
383 mpic->save_data[source].fixup_data = tmp | 1;
384#endif
1beb6a7d
BH
385}
386
387static void mpic_shutdown_ht_interrupt(struct mpic *mpic, unsigned int source,
388 unsigned int irqflags)
389{
390 struct mpic_irq_fixup *fixup = &mpic->fixups[source];
391 unsigned long flags;
392 u32 tmp;
393
394 if (fixup->base == NULL)
395 return;
396
06fe98e6 397 DBG("shutdown_ht_interrupt(0x%x, 0x%x)\n", source, irqflags);
1beb6a7d
BH
398
399 /* Disable */
203041ad 400 raw_spin_lock_irqsave(&mpic->fixup_lock, flags);
1beb6a7d
BH
401 writeb(0x10 + 2 * fixup->index, fixup->base + 2);
402 tmp = readl(fixup->base + 4);
72b13819 403 tmp |= 1;
1beb6a7d 404 writel(tmp, fixup->base + 4);
203041ad 405 raw_spin_unlock_irqrestore(&mpic->fixup_lock, flags);
3669e930
JB
406
407#ifdef CONFIG_PM
408 /* use the lowest bit inverted to the actual HW,
409 * set if this fixup was enabled, clear otherwise */
410 mpic->save_data[source].fixup_data = tmp & ~1;
411#endif
1beb6a7d 412}
14cf11af 413
812fd1fd
ME
414#ifdef CONFIG_PCI_MSI
415static void __init mpic_scan_ht_msi(struct mpic *mpic, u8 __iomem *devbase,
416 unsigned int devfn)
417{
418 u8 __iomem *base;
419 u8 pos, flags;
420 u64 addr = 0;
421
422 for (pos = readb(devbase + PCI_CAPABILITY_LIST); pos != 0;
423 pos = readb(devbase + pos + PCI_CAP_LIST_NEXT)) {
424 u8 id = readb(devbase + pos + PCI_CAP_LIST_ID);
425 if (id == PCI_CAP_ID_HT) {
426 id = readb(devbase + pos + 3);
427 if ((id & HT_5BIT_CAP_MASK) == HT_CAPTYPE_MSI_MAPPING)
428 break;
429 }
430 }
431
432 if (pos == 0)
433 return;
434
435 base = devbase + pos;
436
437 flags = readb(base + HT_MSI_FLAGS);
438 if (!(flags & HT_MSI_FLAGS_FIXED)) {
439 addr = readl(base + HT_MSI_ADDR_LO) & HT_MSI_ADDR_LO_MASK;
440 addr = addr | ((u64)readl(base + HT_MSI_ADDR_HI) << 32);
441 }
442
fe333321 443 printk(KERN_DEBUG "mpic: - HT:%02x.%x %s MSI mapping found @ 0x%llx\n",
812fd1fd
ME
444 PCI_SLOT(devfn), PCI_FUNC(devfn),
445 flags & HT_MSI_FLAGS_ENABLE ? "enabled" : "disabled", addr);
446
447 if (!(flags & HT_MSI_FLAGS_ENABLE))
448 writeb(flags | HT_MSI_FLAGS_ENABLE, base + HT_MSI_FLAGS);
449}
450#else
451static void __init mpic_scan_ht_msi(struct mpic *mpic, u8 __iomem *devbase,
452 unsigned int devfn)
453{
454 return;
455}
456#endif
457
1beb6a7d
BH
458static void __init mpic_scan_ht_pic(struct mpic *mpic, u8 __iomem *devbase,
459 unsigned int devfn, u32 vdid)
14cf11af 460{
c4b22f26 461 int i, irq, n;
1beb6a7d 462 u8 __iomem *base;
14cf11af 463 u32 tmp;
c4b22f26 464 u8 pos;
14cf11af 465
1beb6a7d
BH
466 for (pos = readb(devbase + PCI_CAPABILITY_LIST); pos != 0;
467 pos = readb(devbase + pos + PCI_CAP_LIST_NEXT)) {
468 u8 id = readb(devbase + pos + PCI_CAP_LIST_ID);
46ff3463 469 if (id == PCI_CAP_ID_HT) {
c4b22f26 470 id = readb(devbase + pos + 3);
beb7cc82 471 if ((id & HT_5BIT_CAP_MASK) == HT_CAPTYPE_IRQ)
c4b22f26
SB
472 break;
473 }
14cf11af 474 }
c4b22f26
SB
475 if (pos == 0)
476 return;
477
1beb6a7d
BH
478 base = devbase + pos;
479 writeb(0x01, base + 2);
480 n = (readl(base + 4) >> 16) & 0xff;
14cf11af 481
1beb6a7d
BH
482 printk(KERN_INFO "mpic: - HT:%02x.%x [0x%02x] vendor %04x device %04x"
483 " has %d irqs\n",
484 devfn >> 3, devfn & 0x7, pos, vdid & 0xffff, vdid >> 16, n + 1);
c4b22f26
SB
485
486 for (i = 0; i <= n; i++) {
1beb6a7d
BH
487 writeb(0x10 + 2 * i, base + 2);
488 tmp = readl(base + 4);
14cf11af 489 irq = (tmp >> 16) & 0xff;
1beb6a7d
BH
490 DBG("HT PIC index 0x%x, irq 0x%x, tmp: %08x\n", i, irq, tmp);
491 /* mask it , will be unmasked later */
492 tmp |= 0x1;
493 writel(tmp, base + 4);
494 mpic->fixups[irq].index = i;
495 mpic->fixups[irq].base = base;
496 /* Apple HT PIC has a non-standard way of doing EOIs */
497 if ((vdid & 0xffff) == 0x106b)
498 mpic->fixups[irq].applebase = devbase + 0x60;
499 else
500 mpic->fixups[irq].applebase = NULL;
501 writeb(0x11 + 2 * i, base + 2);
502 mpic->fixups[irq].data = readl(base + 4) | 0x80000000;
14cf11af
PM
503 }
504}
505
c4b22f26 506
1beb6a7d 507static void __init mpic_scan_ht_pics(struct mpic *mpic)
14cf11af
PM
508{
509 unsigned int devfn;
510 u8 __iomem *cfgspace;
511
1beb6a7d 512 printk(KERN_INFO "mpic: Setting up HT PICs workarounds for U3/U4\n");
14cf11af
PM
513
514 /* Allocate fixups array */
ea96025a 515 mpic->fixups = kzalloc(128 * sizeof(*mpic->fixups), GFP_KERNEL);
14cf11af 516 BUG_ON(mpic->fixups == NULL);
14cf11af
PM
517
518 /* Init spinlock */
203041ad 519 raw_spin_lock_init(&mpic->fixup_lock);
14cf11af 520
c4b22f26
SB
521 /* Map U3 config space. We assume all IO-APICs are on the primary bus
522 * so we only need to map 64kB.
14cf11af 523 */
c4b22f26 524 cfgspace = ioremap(0xf2000000, 0x10000);
14cf11af
PM
525 BUG_ON(cfgspace == NULL);
526
1beb6a7d
BH
527 /* Now we scan all slots. We do a very quick scan, we read the header
528 * type, vendor ID and device ID only, that's plenty enough
14cf11af 529 */
c4b22f26 530 for (devfn = 0; devfn < 0x100; devfn++) {
14cf11af
PM
531 u8 __iomem *devbase = cfgspace + (devfn << 8);
532 u8 hdr_type = readb(devbase + PCI_HEADER_TYPE);
533 u32 l = readl(devbase + PCI_VENDOR_ID);
1beb6a7d 534 u16 s;
14cf11af
PM
535
536 DBG("devfn %x, l: %x\n", devfn, l);
537
538 /* If no device, skip */
539 if (l == 0xffffffff || l == 0x00000000 ||
540 l == 0x0000ffff || l == 0xffff0000)
541 goto next;
1beb6a7d
BH
542 /* Check if is supports capability lists */
543 s = readw(devbase + PCI_STATUS);
544 if (!(s & PCI_STATUS_CAP_LIST))
545 goto next;
14cf11af 546
1beb6a7d 547 mpic_scan_ht_pic(mpic, devbase, devfn, l);
812fd1fd 548 mpic_scan_ht_msi(mpic, devbase, devfn);
c4b22f26 549
14cf11af
PM
550 next:
551 /* next device, if function 0 */
c4b22f26 552 if (PCI_FUNC(devfn) == 0 && (hdr_type & 0x80) == 0)
14cf11af
PM
553 devfn += 7;
554 }
555}
556
6cfef5b2 557#else /* CONFIG_MPIC_U3_HT_IRQS */
6e99e458
BH
558
559static inline int mpic_is_ht_interrupt(struct mpic *mpic, unsigned int source)
560{
561 return 0;
562}
563
564static void __init mpic_scan_ht_pics(struct mpic *mpic)
565{
566}
567
6cfef5b2 568#endif /* CONFIG_MPIC_U3_HT_IRQS */
14cf11af 569
3c10c9c4 570#ifdef CONFIG_SMP
2ef613cb 571static int irq_choose_cpu(const struct cpumask *mask)
3c10c9c4 572{
3c10c9c4
KG
573 int cpuid;
574
38e1313f 575 if (cpumask_equal(mask, cpu_all_mask)) {
2ef613cb 576 static int irq_rover = 0;
203041ad 577 static DEFINE_RAW_SPINLOCK(irq_rover_lock);
3c10c9c4
KG
578 unsigned long flags;
579
580 /* Round-robin distribution... */
581 do_round_robin:
203041ad 582 raw_spin_lock_irqsave(&irq_rover_lock, flags);
3c10c9c4 583
2ef613cb
BH
584 irq_rover = cpumask_next(irq_rover, cpu_online_mask);
585 if (irq_rover >= nr_cpu_ids)
586 irq_rover = cpumask_first(cpu_online_mask);
587
3c10c9c4 588 cpuid = irq_rover;
3c10c9c4 589
203041ad 590 raw_spin_unlock_irqrestore(&irq_rover_lock, flags);
3c10c9c4 591 } else {
38e1313f
YL
592 cpuid = cpumask_first_and(mask, cpu_online_mask);
593 if (cpuid >= nr_cpu_ids)
3c10c9c4 594 goto do_round_robin;
3c10c9c4
KG
595 }
596
7a0d7940 597 return get_hard_smp_processor_id(cpuid);
3c10c9c4
KG
598}
599#else
2ef613cb 600static int irq_choose_cpu(const struct cpumask *mask)
3c10c9c4
KG
601{
602 return hard_smp_processor_id();
603}
604#endif
14cf11af 605
0ebfff14
BH
606#define mpic_irq_to_hw(virq) ((unsigned int)irq_map[virq].hwirq)
607
14cf11af 608/* Find an mpic associated with a given linux interrupt */
d69a78d7 609static struct mpic *mpic_find(unsigned int irq)
14cf11af 610{
0ebfff14
BH
611 if (irq < NUM_ISA_INTERRUPTS)
612 return NULL;
7df2457d 613
6cff46f4 614 return irq_to_desc(irq)->chip_data;
d69a78d7 615}
7df2457d 616
d69a78d7
TB
617/* Determine if the linux irq is an IPI */
618static unsigned int mpic_is_ipi(struct mpic *mpic, unsigned int irq)
619{
620 unsigned int src = mpic_irq_to_hw(irq);
0ebfff14 621
d69a78d7 622 return (src >= mpic->ipi_vecs[0] && src <= mpic->ipi_vecs[3]);
14cf11af
PM
623}
624
d69a78d7 625
14cf11af
PM
626/* Convert a cpu mask from logical to physical cpu numbers. */
627static inline u32 mpic_physmask(u32 cpumask)
628{
629 int i;
630 u32 mask = 0;
631
632 for (i = 0; i < NR_CPUS; ++i, cpumask >>= 1)
633 mask |= (cpumask & 1) << get_hard_smp_processor_id(i);
634 return mask;
635}
636
637#ifdef CONFIG_SMP
638/* Get the mpic structure from the IPI number */
639static inline struct mpic * mpic_from_ipi(unsigned int ipi)
640{
6cff46f4 641 return irq_to_desc(ipi)->chip_data;
14cf11af
PM
642}
643#endif
644
645/* Get the mpic structure from the irq number */
646static inline struct mpic * mpic_from_irq(unsigned int irq)
647{
6cff46f4 648 return irq_to_desc(irq)->chip_data;
14cf11af
PM
649}
650
651/* Send an EOI */
652static inline void mpic_eoi(struct mpic *mpic)
653{
7233593b
ZR
654 mpic_cpu_write(MPIC_INFO(CPU_EOI), 0);
655 (void)mpic_cpu_read(MPIC_INFO(CPU_WHOAMI));
14cf11af
PM
656}
657
14cf11af
PM
658/*
659 * Linux descriptor level callbacks
660 */
661
662
05af7bd2 663void mpic_unmask_irq(unsigned int irq)
14cf11af
PM
664{
665 unsigned int loops = 100000;
666 struct mpic *mpic = mpic_from_irq(irq);
0ebfff14 667 unsigned int src = mpic_irq_to_hw(irq);
14cf11af 668
bd561c79 669 DBG("%p: %s: enable_irq: %d (src %d)\n", mpic, mpic->name, irq, src);
14cf11af 670
7233593b
ZR
671 mpic_irq_write(src, MPIC_INFO(IRQ_VECTOR_PRI),
672 mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI)) &
e5356640 673 ~MPIC_VECPRI_MASK);
14cf11af
PM
674 /* make sure mask gets to controller before we return to user */
675 do {
676 if (!loops--) {
677 printk(KERN_ERR "mpic_enable_irq timeout\n");
678 break;
679 }
7233593b 680 } while(mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI)) & MPIC_VECPRI_MASK);
14cf11af
PM
681}
682
05af7bd2 683void mpic_mask_irq(unsigned int irq)
14cf11af
PM
684{
685 unsigned int loops = 100000;
686 struct mpic *mpic = mpic_from_irq(irq);
0ebfff14 687 unsigned int src = mpic_irq_to_hw(irq);
14cf11af
PM
688
689 DBG("%s: disable_irq: %d (src %d)\n", mpic->name, irq, src);
690
7233593b
ZR
691 mpic_irq_write(src, MPIC_INFO(IRQ_VECTOR_PRI),
692 mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI)) |
e5356640 693 MPIC_VECPRI_MASK);
14cf11af
PM
694
695 /* make sure mask gets to controller before we return to user */
696 do {
697 if (!loops--) {
698 printk(KERN_ERR "mpic_enable_irq timeout\n");
699 break;
700 }
7233593b 701 } while(!(mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI)) & MPIC_VECPRI_MASK));
14cf11af
PM
702}
703
05af7bd2 704void mpic_end_irq(unsigned int irq)
1beb6a7d 705{
b9e5b4e6
BH
706 struct mpic *mpic = mpic_from_irq(irq);
707
708#ifdef DEBUG_IRQ
709 DBG("%s: end_irq: %d\n", mpic->name, irq);
710#endif
711 /* We always EOI on end_irq() even for edge interrupts since that
712 * should only lower the priority, the MPIC should have properly
713 * latched another edge interrupt coming in anyway
714 */
715
716 mpic_eoi(mpic);
717}
718
6cfef5b2 719#ifdef CONFIG_MPIC_U3_HT_IRQS
b9e5b4e6
BH
720
721static void mpic_unmask_ht_irq(unsigned int irq)
722{
1beb6a7d 723 struct mpic *mpic = mpic_from_irq(irq);
0ebfff14 724 unsigned int src = mpic_irq_to_hw(irq);
1beb6a7d 725
b9e5b4e6 726 mpic_unmask_irq(irq);
1beb6a7d 727
6cff46f4 728 if (irq_to_desc(irq)->status & IRQ_LEVEL)
b9e5b4e6
BH
729 mpic_ht_end_irq(mpic, src);
730}
731
732static unsigned int mpic_startup_ht_irq(unsigned int irq)
733{
734 struct mpic *mpic = mpic_from_irq(irq);
0ebfff14 735 unsigned int src = mpic_irq_to_hw(irq);
1beb6a7d 736
b9e5b4e6 737 mpic_unmask_irq(irq);
6cff46f4 738 mpic_startup_ht_interrupt(mpic, src, irq_to_desc(irq)->status);
b9e5b4e6
BH
739
740 return 0;
1beb6a7d
BH
741}
742
b9e5b4e6
BH
743static void mpic_shutdown_ht_irq(unsigned int irq)
744{
745 struct mpic *mpic = mpic_from_irq(irq);
0ebfff14 746 unsigned int src = mpic_irq_to_hw(irq);
b9e5b4e6 747
6cff46f4 748 mpic_shutdown_ht_interrupt(mpic, src, irq_to_desc(irq)->status);
b9e5b4e6
BH
749 mpic_mask_irq(irq);
750}
751
752static void mpic_end_ht_irq(unsigned int irq)
14cf11af
PM
753{
754 struct mpic *mpic = mpic_from_irq(irq);
0ebfff14 755 unsigned int src = mpic_irq_to_hw(irq);
14cf11af 756
1beb6a7d 757#ifdef DEBUG_IRQ
14cf11af 758 DBG("%s: end_irq: %d\n", mpic->name, irq);
1beb6a7d 759#endif
14cf11af
PM
760 /* We always EOI on end_irq() even for edge interrupts since that
761 * should only lower the priority, the MPIC should have properly
762 * latched another edge interrupt coming in anyway
763 */
764
6cff46f4 765 if (irq_to_desc(irq)->status & IRQ_LEVEL)
b9e5b4e6 766 mpic_ht_end_irq(mpic, src);
14cf11af
PM
767 mpic_eoi(mpic);
768}
6cfef5b2 769#endif /* !CONFIG_MPIC_U3_HT_IRQS */
b9e5b4e6 770
14cf11af
PM
771#ifdef CONFIG_SMP
772
b9e5b4e6 773static void mpic_unmask_ipi(unsigned int irq)
14cf11af
PM
774{
775 struct mpic *mpic = mpic_from_ipi(irq);
7df2457d 776 unsigned int src = mpic_irq_to_hw(irq) - mpic->ipi_vecs[0];
14cf11af
PM
777
778 DBG("%s: enable_ipi: %d (ipi %d)\n", mpic->name, irq, src);
779 mpic_ipi_write(src, mpic_ipi_read(src) & ~MPIC_VECPRI_MASK);
780}
781
b9e5b4e6 782static void mpic_mask_ipi(unsigned int irq)
14cf11af
PM
783{
784 /* NEVER disable an IPI... that's just plain wrong! */
785}
786
787static void mpic_end_ipi(unsigned int irq)
788{
789 struct mpic *mpic = mpic_from_ipi(irq);
790
791 /*
792 * IPIs are marked IRQ_PER_CPU. This has the side effect of
793 * preventing the IRQ_PENDING/IRQ_INPROGRESS logic from
794 * applying to them. We EOI them late to avoid re-entering.
6714465e 795 * We mark IPI's with IRQF_DISABLED as they must run with
14cf11af
PM
796 * irqs disabled.
797 */
798 mpic_eoi(mpic);
799}
800
801#endif /* CONFIG_SMP */
802
d5dedd45 803int mpic_set_affinity(unsigned int irq, const struct cpumask *cpumask)
14cf11af
PM
804{
805 struct mpic *mpic = mpic_from_irq(irq);
0ebfff14 806 unsigned int src = mpic_irq_to_hw(irq);
14cf11af 807
3c10c9c4 808 if (mpic->flags & MPIC_SINGLE_DEST_CPU) {
38e1313f 809 int cpuid = irq_choose_cpu(cpumask);
14cf11af 810
3c10c9c4
KG
811 mpic_irq_write(src, MPIC_INFO(IRQ_DESTINATION), 1 << cpuid);
812 } else {
2ef613cb 813 cpumask_var_t tmp;
14cf11af 814
2ef613cb
BH
815 alloc_cpumask_var(&tmp, GFP_KERNEL);
816
817 cpumask_and(tmp, cpumask, cpu_online_mask);
3c10c9c4
KG
818
819 mpic_irq_write(src, MPIC_INFO(IRQ_DESTINATION),
2ef613cb
BH
820 mpic_physmask(cpumask_bits(tmp)[0]));
821
822 free_cpumask_var(tmp);
3c10c9c4 823 }
d5dedd45
YL
824
825 return 0;
14cf11af
PM
826}
827
7233593b 828static unsigned int mpic_type_to_vecpri(struct mpic *mpic, unsigned int type)
0ebfff14 829{
0ebfff14 830 /* Now convert sense value */
6e99e458 831 switch(type & IRQ_TYPE_SENSE_MASK) {
0ebfff14 832 case IRQ_TYPE_EDGE_RISING:
7233593b
ZR
833 return MPIC_INFO(VECPRI_SENSE_EDGE) |
834 MPIC_INFO(VECPRI_POLARITY_POSITIVE);
0ebfff14 835 case IRQ_TYPE_EDGE_FALLING:
6e99e458 836 case IRQ_TYPE_EDGE_BOTH:
7233593b
ZR
837 return MPIC_INFO(VECPRI_SENSE_EDGE) |
838 MPIC_INFO(VECPRI_POLARITY_NEGATIVE);
0ebfff14 839 case IRQ_TYPE_LEVEL_HIGH:
7233593b
ZR
840 return MPIC_INFO(VECPRI_SENSE_LEVEL) |
841 MPIC_INFO(VECPRI_POLARITY_POSITIVE);
0ebfff14
BH
842 case IRQ_TYPE_LEVEL_LOW:
843 default:
7233593b
ZR
844 return MPIC_INFO(VECPRI_SENSE_LEVEL) |
845 MPIC_INFO(VECPRI_POLARITY_NEGATIVE);
0ebfff14 846 }
6e99e458
BH
847}
848
05af7bd2 849int mpic_set_irq_type(unsigned int virq, unsigned int flow_type)
6e99e458
BH
850{
851 struct mpic *mpic = mpic_from_irq(virq);
852 unsigned int src = mpic_irq_to_hw(virq);
6cff46f4 853 struct irq_desc *desc = irq_to_desc(virq);
6e99e458
BH
854 unsigned int vecpri, vold, vnew;
855
06fe98e6
BH
856 DBG("mpic: set_irq_type(mpic:@%p,virq:%d,src:0x%x,type:0x%x)\n",
857 mpic, virq, src, flow_type);
6e99e458
BH
858
859 if (src >= mpic->irq_count)
860 return -EINVAL;
861
862 if (flow_type == IRQ_TYPE_NONE)
863 if (mpic->senses && src < mpic->senses_count)
864 flow_type = mpic->senses[src];
865 if (flow_type == IRQ_TYPE_NONE)
866 flow_type = IRQ_TYPE_LEVEL_LOW;
867
868 desc->status &= ~(IRQ_TYPE_SENSE_MASK | IRQ_LEVEL);
869 desc->status |= flow_type & IRQ_TYPE_SENSE_MASK;
870 if (flow_type & (IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW))
871 desc->status |= IRQ_LEVEL;
872
873 if (mpic_is_ht_interrupt(mpic, src))
874 vecpri = MPIC_VECPRI_POLARITY_POSITIVE |
875 MPIC_VECPRI_SENSE_EDGE;
876 else
7233593b 877 vecpri = mpic_type_to_vecpri(mpic, flow_type);
6e99e458 878
7233593b
ZR
879 vold = mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI));
880 vnew = vold & ~(MPIC_INFO(VECPRI_POLARITY_MASK) |
881 MPIC_INFO(VECPRI_SENSE_MASK));
6e99e458
BH
882 vnew |= vecpri;
883 if (vold != vnew)
7233593b 884 mpic_irq_write(src, MPIC_INFO(IRQ_VECTOR_PRI), vnew);
6e99e458
BH
885
886 return 0;
0ebfff14
BH
887}
888
38958dd9
OJ
889void mpic_set_vector(unsigned int virq, unsigned int vector)
890{
891 struct mpic *mpic = mpic_from_irq(virq);
892 unsigned int src = mpic_irq_to_hw(virq);
893 unsigned int vecpri;
894
895 DBG("mpic: set_vector(mpic:@%p,virq:%d,src:%d,vector:0x%x)\n",
896 mpic, virq, src, vector);
897
898 if (src >= mpic->irq_count)
899 return;
900
901 vecpri = mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI));
902 vecpri = vecpri & ~MPIC_INFO(VECPRI_VECTOR_MASK);
903 vecpri |= vector;
904 mpic_irq_write(src, MPIC_INFO(IRQ_VECTOR_PRI), vecpri);
905}
906
b9e5b4e6 907static struct irq_chip mpic_irq_chip = {
6e99e458
BH
908 .mask = mpic_mask_irq,
909 .unmask = mpic_unmask_irq,
910 .eoi = mpic_end_irq,
911 .set_type = mpic_set_irq_type,
b9e5b4e6
BH
912};
913
914#ifdef CONFIG_SMP
915static struct irq_chip mpic_ipi_chip = {
6e99e458
BH
916 .mask = mpic_mask_ipi,
917 .unmask = mpic_unmask_ipi,
918 .eoi = mpic_end_ipi,
b9e5b4e6
BH
919};
920#endif /* CONFIG_SMP */
921
6cfef5b2 922#ifdef CONFIG_MPIC_U3_HT_IRQS
b9e5b4e6
BH
923static struct irq_chip mpic_irq_ht_chip = {
924 .startup = mpic_startup_ht_irq,
925 .shutdown = mpic_shutdown_ht_irq,
926 .mask = mpic_mask_irq,
927 .unmask = mpic_unmask_ht_irq,
928 .eoi = mpic_end_ht_irq,
6e99e458 929 .set_type = mpic_set_irq_type,
b9e5b4e6 930};
6cfef5b2 931#endif /* CONFIG_MPIC_U3_HT_IRQS */
b9e5b4e6 932
14cf11af 933
0ebfff14
BH
934static int mpic_host_match(struct irq_host *h, struct device_node *node)
935{
0ebfff14 936 /* Exact match, unless mpic node is NULL */
52964f87 937 return h->of_node == NULL || h->of_node == node;
0ebfff14
BH
938}
939
940static int mpic_host_map(struct irq_host *h, unsigned int virq,
6e99e458 941 irq_hw_number_t hw)
0ebfff14 942{
0ebfff14 943 struct mpic *mpic = h->host_data;
6e99e458 944 struct irq_chip *chip;
0ebfff14 945
06fe98e6 946 DBG("mpic: map virq %d, hwirq 0x%lx\n", virq, hw);
0ebfff14 947
7df2457d 948 if (hw == mpic->spurious_vec)
0ebfff14 949 return -EINVAL;
7fd72186
BH
950 if (mpic->protected && test_bit(hw, mpic->protected))
951 return -EINVAL;
06fe98e6 952
0ebfff14 953#ifdef CONFIG_SMP
7df2457d 954 else if (hw >= mpic->ipi_vecs[0]) {
0ebfff14
BH
955 WARN_ON(!(mpic->flags & MPIC_PRIMARY));
956
06fe98e6 957 DBG("mpic: mapping as IPI\n");
0ebfff14
BH
958 set_irq_chip_data(virq, mpic);
959 set_irq_chip_and_handler(virq, &mpic->hc_ipi,
960 handle_percpu_irq);
961 return 0;
962 }
963#endif /* CONFIG_SMP */
964
965 if (hw >= mpic->irq_count)
966 return -EINVAL;
967
a7de7c74
ME
968 mpic_msi_reserve_hwirq(mpic, hw);
969
6e99e458 970 /* Default chip */
0ebfff14
BH
971 chip = &mpic->hc_irq;
972
6cfef5b2 973#ifdef CONFIG_MPIC_U3_HT_IRQS
0ebfff14 974 /* Check for HT interrupts, override vecpri */
6e99e458 975 if (mpic_is_ht_interrupt(mpic, hw))
0ebfff14 976 chip = &mpic->hc_ht_irq;
6cfef5b2 977#endif /* CONFIG_MPIC_U3_HT_IRQS */
0ebfff14 978
06fe98e6 979 DBG("mpic: mapping to irq chip @%p\n", chip);
0ebfff14
BH
980
981 set_irq_chip_data(virq, mpic);
982 set_irq_chip_and_handler(virq, chip, handle_fasteoi_irq);
6e99e458
BH
983
984 /* Set default irq type */
985 set_irq_type(virq, IRQ_TYPE_NONE);
986
0ebfff14
BH
987 return 0;
988}
989
990static int mpic_host_xlate(struct irq_host *h, struct device_node *ct,
40d50cf7 991 const u32 *intspec, unsigned int intsize,
0ebfff14
BH
992 irq_hw_number_t *out_hwirq, unsigned int *out_flags)
993
994{
995 static unsigned char map_mpic_senses[4] = {
996 IRQ_TYPE_EDGE_RISING,
997 IRQ_TYPE_LEVEL_LOW,
998 IRQ_TYPE_LEVEL_HIGH,
999 IRQ_TYPE_EDGE_FALLING,
1000 };
1001
1002 *out_hwirq = intspec[0];
06fe98e6
BH
1003 if (intsize > 1) {
1004 u32 mask = 0x3;
1005
1006 /* Apple invented a new race of encoding on machines with
1007 * an HT APIC. They encode, among others, the index within
1008 * the HT APIC. We don't care about it here since thankfully,
1009 * it appears that they have the APIC already properly
1010 * configured, and thus our current fixup code that reads the
1011 * APIC config works fine. However, we still need to mask out
1012 * bits in the specifier to make sure we only get bit 0 which
1013 * is the level/edge bit (the only sense bit exposed by Apple),
1014 * as their bit 1 means something else.
1015 */
1016 if (machine_is(powermac))
1017 mask = 0x1;
1018 *out_flags = map_mpic_senses[intspec[1] & mask];
1019 } else
0ebfff14
BH
1020 *out_flags = IRQ_TYPE_NONE;
1021
06fe98e6
BH
1022 DBG("mpic: xlate (%d cells: 0x%08x 0x%08x) to line 0x%lx sense 0x%x\n",
1023 intsize, intspec[0], intspec[1], *out_hwirq, *out_flags);
1024
0ebfff14
BH
1025 return 0;
1026}
1027
1028static struct irq_host_ops mpic_host_ops = {
1029 .match = mpic_host_match,
1030 .map = mpic_host_map,
1031 .xlate = mpic_host_xlate,
1032};
1033
14cf11af
PM
1034/*
1035 * Exported functions
1036 */
1037
0ebfff14 1038struct mpic * __init mpic_alloc(struct device_node *node,
a959ff56 1039 phys_addr_t phys_addr,
14cf11af
PM
1040 unsigned int flags,
1041 unsigned int isu_size,
14cf11af 1042 unsigned int irq_count,
14cf11af
PM
1043 const char *name)
1044{
1045 struct mpic *mpic;
d9d1063d 1046 u32 greg_feature;
14cf11af
PM
1047 const char *vers;
1048 int i;
7df2457d 1049 int intvec_top;
a959ff56 1050 u64 paddr = phys_addr;
14cf11af 1051
85355bb2 1052 mpic = kzalloc(sizeof(struct mpic), GFP_KERNEL);
14cf11af
PM
1053 if (mpic == NULL)
1054 return NULL;
85355bb2 1055
14cf11af
PM
1056 mpic->name = name;
1057
b9e5b4e6 1058 mpic->hc_irq = mpic_irq_chip;
b27df672 1059 mpic->hc_irq.name = name;
14cf11af
PM
1060 if (flags & MPIC_PRIMARY)
1061 mpic->hc_irq.set_affinity = mpic_set_affinity;
6cfef5b2 1062#ifdef CONFIG_MPIC_U3_HT_IRQS
b9e5b4e6 1063 mpic->hc_ht_irq = mpic_irq_ht_chip;
b27df672 1064 mpic->hc_ht_irq.name = name;
b9e5b4e6
BH
1065 if (flags & MPIC_PRIMARY)
1066 mpic->hc_ht_irq.set_affinity = mpic_set_affinity;
6cfef5b2 1067#endif /* CONFIG_MPIC_U3_HT_IRQS */
fbf0274e 1068
14cf11af 1069#ifdef CONFIG_SMP
b9e5b4e6 1070 mpic->hc_ipi = mpic_ipi_chip;
b27df672 1071 mpic->hc_ipi.name = name;
14cf11af
PM
1072#endif /* CONFIG_SMP */
1073
1074 mpic->flags = flags;
1075 mpic->isu_size = isu_size;
14cf11af 1076 mpic->irq_count = irq_count;
14cf11af 1077 mpic->num_sources = 0; /* so far */
14cf11af 1078
7df2457d
OJ
1079 if (flags & MPIC_LARGE_VECTORS)
1080 intvec_top = 2047;
1081 else
1082 intvec_top = 255;
1083
1084 mpic->timer_vecs[0] = intvec_top - 8;
1085 mpic->timer_vecs[1] = intvec_top - 7;
1086 mpic->timer_vecs[2] = intvec_top - 6;
1087 mpic->timer_vecs[3] = intvec_top - 5;
1088 mpic->ipi_vecs[0] = intvec_top - 4;
1089 mpic->ipi_vecs[1] = intvec_top - 3;
1090 mpic->ipi_vecs[2] = intvec_top - 2;
1091 mpic->ipi_vecs[3] = intvec_top - 1;
1092 mpic->spurious_vec = intvec_top;
1093
a959ff56 1094 /* Check for "big-endian" in device-tree */
e2eb6392 1095 if (node && of_get_property(node, "big-endian", NULL) != NULL)
a959ff56
BH
1096 mpic->flags |= MPIC_BIG_ENDIAN;
1097
7fd72186
BH
1098 /* Look for protected sources */
1099 if (node) {
d9d1063d
JB
1100 int psize;
1101 unsigned int bits, mapsize;
7fd72186
BH
1102 const u32 *psrc =
1103 of_get_property(node, "protected-sources", &psize);
1104 if (psrc) {
1105 psize /= 4;
1106 bits = intvec_top + 1;
1107 mapsize = BITS_TO_LONGS(bits) * sizeof(unsigned long);
ea96025a 1108 mpic->protected = kzalloc(mapsize, GFP_KERNEL);
7fd72186 1109 BUG_ON(mpic->protected == NULL);
7fd72186
BH
1110 for (i = 0; i < psize; i++) {
1111 if (psrc[i] > intvec_top)
1112 continue;
1113 __set_bit(psrc[i], mpic->protected);
1114 }
1115 }
1116 }
a959ff56 1117
7233593b
ZR
1118#ifdef CONFIG_MPIC_WEIRD
1119 mpic->hw_set = mpic_infos[MPIC_GET_REGSET(flags)];
1120#endif
1121
fbf0274e
BH
1122 /* default register type */
1123 mpic->reg_type = (flags & MPIC_BIG_ENDIAN) ?
1124 mpic_access_mmio_be : mpic_access_mmio_le;
1125
a959ff56
BH
1126 /* If no physical address is passed in, a device-node is mandatory */
1127 BUG_ON(paddr == 0 && node == NULL);
1128
1129 /* If no physical address passed in, check if it's dcr based */
0411a5e2 1130 if (paddr == 0 && of_get_property(node, "dcr-reg", NULL) != NULL) {
fbf0274e 1131#ifdef CONFIG_PPC_DCR
0411a5e2 1132 mpic->flags |= MPIC_USES_DCR;
fbf0274e 1133 mpic->reg_type = mpic_access_dcr;
fbf0274e 1134#else
0411a5e2 1135 BUG();
fbf0274e 1136#endif /* CONFIG_PPC_DCR */
0411a5e2 1137 }
fbf0274e 1138
a959ff56
BH
1139 /* If the MPIC is not DCR based, and no physical address was passed
1140 * in, try to obtain one
1141 */
1142 if (paddr == 0 && !(mpic->flags & MPIC_USES_DCR)) {
d9d1063d 1143 const u32 *reg = of_get_property(node, "reg", NULL);
a959ff56
BH
1144 BUG_ON(reg == NULL);
1145 paddr = of_translate_address(node, reg);
1146 BUG_ON(paddr == OF_BAD_ADDR);
1147 }
1148
14cf11af 1149 /* Map the global registers */
5a2642f6
BH
1150 mpic_map(mpic, node, paddr, &mpic->gregs, MPIC_INFO(GREG_BASE), 0x1000);
1151 mpic_map(mpic, node, paddr, &mpic->tmregs, MPIC_INFO(TIMER_BASE), 0x1000);
14cf11af
PM
1152
1153 /* Reset */
1154 if (flags & MPIC_WANTS_RESET) {
7233593b
ZR
1155 mpic_write(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0),
1156 mpic_read(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0))
14cf11af 1157 | MPIC_GREG_GCONF_RESET);
7233593b 1158 while( mpic_read(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0))
14cf11af
PM
1159 & MPIC_GREG_GCONF_RESET)
1160 mb();
1161 }
1162
d91e4ea7
KG
1163 /* CoreInt */
1164 if (flags & MPIC_ENABLE_COREINT)
1165 mpic_write(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0),
1166 mpic_read(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0))
1167 | MPIC_GREG_GCONF_COREINT);
1168
f365355e
OJ
1169 if (flags & MPIC_ENABLE_MCK)
1170 mpic_write(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0),
1171 mpic_read(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0))
1172 | MPIC_GREG_GCONF_MCK);
1173
14cf11af
PM
1174 /* Read feature register, calculate num CPUs and, for non-ISU
1175 * MPICs, num sources as well. On ISU MPICs, sources are counted
1176 * as ISUs are added
1177 */
d9d1063d
JB
1178 greg_feature = mpic_read(mpic->gregs, MPIC_INFO(GREG_FEATURE_0));
1179 mpic->num_cpus = ((greg_feature & MPIC_GREG_FEATURE_LAST_CPU_MASK)
14cf11af 1180 >> MPIC_GREG_FEATURE_LAST_CPU_SHIFT) + 1;
5073e7ee 1181 if (isu_size == 0) {
475ca391
KG
1182 if (flags & MPIC_BROKEN_FRR_NIRQS)
1183 mpic->num_sources = mpic->irq_count;
1184 else
1185 mpic->num_sources =
1186 ((greg_feature & MPIC_GREG_FEATURE_LAST_SRC_MASK)
1187 >> MPIC_GREG_FEATURE_LAST_SRC_SHIFT) + 1;
5073e7ee 1188 }
14cf11af
PM
1189
1190 /* Map the per-CPU registers */
1191 for (i = 0; i < mpic->num_cpus; i++) {
5a2642f6 1192 mpic_map(mpic, node, paddr, &mpic->cpuregs[i],
fbf0274e
BH
1193 MPIC_INFO(CPU_BASE) + i * MPIC_INFO(CPU_STRIDE),
1194 0x1000);
14cf11af
PM
1195 }
1196
1197 /* Initialize main ISU if none provided */
1198 if (mpic->isu_size == 0) {
1199 mpic->isu_size = mpic->num_sources;
5a2642f6 1200 mpic_map(mpic, node, paddr, &mpic->isus[0],
fbf0274e 1201 MPIC_INFO(IRQ_BASE), MPIC_INFO(IRQ_STRIDE) * mpic->isu_size);
14cf11af
PM
1202 }
1203 mpic->isu_shift = 1 + __ilog2(mpic->isu_size - 1);
1204 mpic->isu_mask = (1 << mpic->isu_shift) - 1;
1205
31207dab
KG
1206 mpic->irqhost = irq_alloc_host(node, IRQ_HOST_MAP_LINEAR,
1207 isu_size ? isu_size : mpic->num_sources,
1208 &mpic_host_ops,
1209 flags & MPIC_LARGE_VECTORS ? 2048 : 256);
1210 if (mpic->irqhost == NULL)
1211 return NULL;
1212
1213 mpic->irqhost->host_data = mpic;
1214
14cf11af 1215 /* Display version */
d9d1063d 1216 switch (greg_feature & MPIC_GREG_FEATURE_VERSION_MASK) {
14cf11af
PM
1217 case 1:
1218 vers = "1.0";
1219 break;
1220 case 2:
1221 vers = "1.2";
1222 break;
1223 case 3:
1224 vers = "1.3";
1225 break;
1226 default:
1227 vers = "<unknown>";
1228 break;
1229 }
a959ff56
BH
1230 printk(KERN_INFO "mpic: Setting up MPIC \"%s\" version %s at %llx,"
1231 " max %d CPUs\n",
1232 name, vers, (unsigned long long)paddr, mpic->num_cpus);
1233 printk(KERN_INFO "mpic: ISU size: %d, shift: %d, mask: %x\n",
1234 mpic->isu_size, mpic->isu_shift, mpic->isu_mask);
14cf11af
PM
1235
1236 mpic->next = mpics;
1237 mpics = mpic;
1238
0ebfff14 1239 if (flags & MPIC_PRIMARY) {
14cf11af 1240 mpic_primary = mpic;
0ebfff14
BH
1241 irq_set_default_host(mpic->irqhost);
1242 }
14cf11af
PM
1243
1244 return mpic;
1245}
1246
1247void __init mpic_assign_isu(struct mpic *mpic, unsigned int isu_num,
a959ff56 1248 phys_addr_t paddr)
14cf11af
PM
1249{
1250 unsigned int isu_first = isu_num * mpic->isu_size;
1251
1252 BUG_ON(isu_num >= MPIC_MAX_ISU);
1253
5a2642f6
BH
1254 mpic_map(mpic, mpic->irqhost->of_node,
1255 paddr, &mpic->isus[isu_num], 0,
fbf0274e 1256 MPIC_INFO(IRQ_STRIDE) * mpic->isu_size);
5a2642f6 1257
14cf11af
PM
1258 if ((isu_first + mpic->isu_size) > mpic->num_sources)
1259 mpic->num_sources = isu_first + mpic->isu_size;
1260}
1261
0ebfff14
BH
1262void __init mpic_set_default_senses(struct mpic *mpic, u8 *senses, int count)
1263{
1264 mpic->senses = senses;
1265 mpic->senses_count = count;
1266}
1267
14cf11af
PM
1268void __init mpic_init(struct mpic *mpic)
1269{
1270 int i;
cc353c30 1271 int cpu;
14cf11af
PM
1272
1273 BUG_ON(mpic->num_sources == 0);
1274
1275 printk(KERN_INFO "mpic: Initializing for %d sources\n", mpic->num_sources);
1276
1277 /* Set current processor priority to max */
7233593b 1278 mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), 0xf);
14cf11af
PM
1279
1280 /* Initialize timers: just disable them all */
1281 for (i = 0; i < 4; i++) {
1282 mpic_write(mpic->tmregs,
7233593b
ZR
1283 i * MPIC_INFO(TIMER_STRIDE) +
1284 MPIC_INFO(TIMER_DESTINATION), 0);
14cf11af 1285 mpic_write(mpic->tmregs,
7233593b
ZR
1286 i * MPIC_INFO(TIMER_STRIDE) +
1287 MPIC_INFO(TIMER_VECTOR_PRI),
14cf11af 1288 MPIC_VECPRI_MASK |
7df2457d 1289 (mpic->timer_vecs[0] + i));
14cf11af
PM
1290 }
1291
1292 /* Initialize IPIs to our reserved vectors and mark them disabled for now */
1293 mpic_test_broken_ipi(mpic);
1294 for (i = 0; i < 4; i++) {
1295 mpic_ipi_write(i,
1296 MPIC_VECPRI_MASK |
1297 (10 << MPIC_VECPRI_PRIORITY_SHIFT) |
7df2457d 1298 (mpic->ipi_vecs[0] + i));
14cf11af
PM
1299 }
1300
1301 /* Initialize interrupt sources */
1302 if (mpic->irq_count == 0)
1303 mpic->irq_count = mpic->num_sources;
1304
1beb6a7d 1305 /* Do the HT PIC fixups on U3 broken mpic */
14cf11af 1306 DBG("MPIC flags: %x\n", mpic->flags);
05af7bd2 1307 if ((mpic->flags & MPIC_U3_HT_IRQS) && (mpic->flags & MPIC_PRIMARY)) {
3669e930 1308 mpic_scan_ht_pics(mpic);
05af7bd2
ME
1309 mpic_u3msi_init(mpic);
1310 }
14cf11af 1311
38958dd9
OJ
1312 mpic_pasemi_msi_init(mpic);
1313
cc353c30
AB
1314 if (mpic->flags & MPIC_PRIMARY)
1315 cpu = hard_smp_processor_id();
1316 else
1317 cpu = 0;
1318
14cf11af
PM
1319 for (i = 0; i < mpic->num_sources; i++) {
1320 /* start with vector = source number, and masked */
6e99e458
BH
1321 u32 vecpri = MPIC_VECPRI_MASK | i |
1322 (8 << MPIC_VECPRI_PRIORITY_SHIFT);
14cf11af 1323
7fd72186
BH
1324 /* check if protected */
1325 if (mpic->protected && test_bit(i, mpic->protected))
1326 continue;
14cf11af 1327 /* init hw */
7233593b 1328 mpic_irq_write(i, MPIC_INFO(IRQ_VECTOR_PRI), vecpri);
cc353c30 1329 mpic_irq_write(i, MPIC_INFO(IRQ_DESTINATION), 1 << cpu);
14cf11af
PM
1330 }
1331
7df2457d
OJ
1332 /* Init spurious vector */
1333 mpic_write(mpic->gregs, MPIC_INFO(GREG_SPURIOUS), mpic->spurious_vec);
14cf11af 1334
7233593b
ZR
1335 /* Disable 8259 passthrough, if supported */
1336 if (!(mpic->flags & MPIC_NO_PTHROU_DIS))
1337 mpic_write(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0),
1338 mpic_read(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0))
1339 | MPIC_GREG_GCONF_8259_PTHROU_DIS);
14cf11af 1340
d87bf3be
OJ
1341 if (mpic->flags & MPIC_NO_BIAS)
1342 mpic_write(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0),
1343 mpic_read(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0))
1344 | MPIC_GREG_GCONF_NO_BIAS);
1345
14cf11af 1346 /* Set current processor priority to 0 */
7233593b 1347 mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), 0);
3669e930
JB
1348
1349#ifdef CONFIG_PM
1350 /* allocate memory to save mpic state */
ea96025a
AV
1351 mpic->save_data = kmalloc(mpic->num_sources * sizeof(*mpic->save_data),
1352 GFP_KERNEL);
3669e930
JB
1353 BUG_ON(mpic->save_data == NULL);
1354#endif
14cf11af
PM
1355}
1356
868ea0c9
MG
1357void __init mpic_set_clk_ratio(struct mpic *mpic, u32 clock_ratio)
1358{
1359 u32 v;
1360
1361 v = mpic_read(mpic->gregs, MPIC_GREG_GLOBAL_CONF_1);
1362 v &= ~MPIC_GREG_GLOBAL_CONF_1_CLK_RATIO_MASK;
1363 v |= MPIC_GREG_GLOBAL_CONF_1_CLK_RATIO(clock_ratio);
1364 mpic_write(mpic->gregs, MPIC_GREG_GLOBAL_CONF_1, v);
1365}
14cf11af 1366
868ea0c9
MG
1367void __init mpic_set_serial_int(struct mpic *mpic, int enable)
1368{
ba1826e5 1369 unsigned long flags;
868ea0c9
MG
1370 u32 v;
1371
203041ad 1372 raw_spin_lock_irqsave(&mpic_lock, flags);
868ea0c9
MG
1373 v = mpic_read(mpic->gregs, MPIC_GREG_GLOBAL_CONF_1);
1374 if (enable)
1375 v |= MPIC_GREG_GLOBAL_CONF_1_SIE;
1376 else
1377 v &= ~MPIC_GREG_GLOBAL_CONF_1_SIE;
1378 mpic_write(mpic->gregs, MPIC_GREG_GLOBAL_CONF_1, v);
203041ad 1379 raw_spin_unlock_irqrestore(&mpic_lock, flags);
868ea0c9 1380}
14cf11af
PM
1381
1382void mpic_irq_set_priority(unsigned int irq, unsigned int pri)
1383{
d69a78d7 1384 struct mpic *mpic = mpic_find(irq);
0ebfff14 1385 unsigned int src = mpic_irq_to_hw(irq);
14cf11af
PM
1386 unsigned long flags;
1387 u32 reg;
1388
06a901c5
SR
1389 if (!mpic)
1390 return;
1391
203041ad 1392 raw_spin_lock_irqsave(&mpic_lock, flags);
d69a78d7 1393 if (mpic_is_ipi(mpic, irq)) {
7df2457d 1394 reg = mpic_ipi_read(src - mpic->ipi_vecs[0]) &
e5356640 1395 ~MPIC_VECPRI_PRIORITY_MASK;
7df2457d 1396 mpic_ipi_write(src - mpic->ipi_vecs[0],
14cf11af
PM
1397 reg | (pri << MPIC_VECPRI_PRIORITY_SHIFT));
1398 } else {
7233593b 1399 reg = mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI))
e5356640 1400 & ~MPIC_VECPRI_PRIORITY_MASK;
7233593b 1401 mpic_irq_write(src, MPIC_INFO(IRQ_VECTOR_PRI),
14cf11af
PM
1402 reg | (pri << MPIC_VECPRI_PRIORITY_SHIFT));
1403 }
203041ad 1404 raw_spin_unlock_irqrestore(&mpic_lock, flags);
14cf11af
PM
1405}
1406
14cf11af
PM
1407void mpic_setup_this_cpu(void)
1408{
1409#ifdef CONFIG_SMP
1410 struct mpic *mpic = mpic_primary;
1411 unsigned long flags;
1412 u32 msk = 1 << hard_smp_processor_id();
1413 unsigned int i;
1414
1415 BUG_ON(mpic == NULL);
1416
1417 DBG("%s: setup_this_cpu(%d)\n", mpic->name, hard_smp_processor_id());
1418
203041ad 1419 raw_spin_lock_irqsave(&mpic_lock, flags);
14cf11af
PM
1420
1421 /* let the mpic know we want intrs. default affinity is 0xffffffff
1422 * until changed via /proc. That's how it's done on x86. If we want
1423 * it differently, then we should make sure we also change the default
a53da52f 1424 * values of irq_desc[].affinity in irq.c.
14cf11af
PM
1425 */
1426 if (distribute_irqs) {
1427 for (i = 0; i < mpic->num_sources ; i++)
7233593b
ZR
1428 mpic_irq_write(i, MPIC_INFO(IRQ_DESTINATION),
1429 mpic_irq_read(i, MPIC_INFO(IRQ_DESTINATION)) | msk);
14cf11af
PM
1430 }
1431
1432 /* Set current processor priority to 0 */
7233593b 1433 mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), 0);
14cf11af 1434
203041ad 1435 raw_spin_unlock_irqrestore(&mpic_lock, flags);
14cf11af
PM
1436#endif /* CONFIG_SMP */
1437}
1438
1439int mpic_cpu_get_priority(void)
1440{
1441 struct mpic *mpic = mpic_primary;
1442
7233593b 1443 return mpic_cpu_read(MPIC_INFO(CPU_CURRENT_TASK_PRI));
14cf11af
PM
1444}
1445
1446void mpic_cpu_set_priority(int prio)
1447{
1448 struct mpic *mpic = mpic_primary;
1449
1450 prio &= MPIC_CPU_TASKPRI_MASK;
7233593b 1451 mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), prio);
14cf11af
PM
1452}
1453
14cf11af
PM
1454void mpic_teardown_this_cpu(int secondary)
1455{
1456 struct mpic *mpic = mpic_primary;
1457 unsigned long flags;
1458 u32 msk = 1 << hard_smp_processor_id();
1459 unsigned int i;
1460
1461 BUG_ON(mpic == NULL);
1462
1463 DBG("%s: teardown_this_cpu(%d)\n", mpic->name, hard_smp_processor_id());
203041ad 1464 raw_spin_lock_irqsave(&mpic_lock, flags);
14cf11af
PM
1465
1466 /* let the mpic know we don't want intrs. */
1467 for (i = 0; i < mpic->num_sources ; i++)
7233593b
ZR
1468 mpic_irq_write(i, MPIC_INFO(IRQ_DESTINATION),
1469 mpic_irq_read(i, MPIC_INFO(IRQ_DESTINATION)) & ~msk);
14cf11af
PM
1470
1471 /* Set current processor priority to max */
7233593b 1472 mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), 0xf);
7132799b
VB
1473 /* We need to EOI the IPI since not all platforms reset the MPIC
1474 * on boot and new interrupts wouldn't get delivered otherwise.
1475 */
1476 mpic_eoi(mpic);
14cf11af 1477
203041ad 1478 raw_spin_unlock_irqrestore(&mpic_lock, flags);
14cf11af
PM
1479}
1480
1481
f365355e 1482static unsigned int _mpic_get_one_irq(struct mpic *mpic, int reg)
14cf11af 1483{
0ebfff14 1484 u32 src;
14cf11af 1485
f365355e 1486 src = mpic_cpu_read(reg) & MPIC_INFO(VECPRI_VECTOR_MASK);
1beb6a7d 1487#ifdef DEBUG_LOW
f365355e 1488 DBG("%s: get_one_irq(reg 0x%x): %d\n", mpic->name, reg, src);
1beb6a7d 1489#endif
5cddd2e3
JB
1490 if (unlikely(src == mpic->spurious_vec)) {
1491 if (mpic->flags & MPIC_SPV_EOI)
1492 mpic_eoi(mpic);
0ebfff14 1493 return NO_IRQ;
5cddd2e3 1494 }
7fd72186
BH
1495 if (unlikely(mpic->protected && test_bit(src, mpic->protected))) {
1496 if (printk_ratelimit())
1497 printk(KERN_WARNING "%s: Got protected source %d !\n",
1498 mpic->name, (int)src);
1499 mpic_eoi(mpic);
1500 return NO_IRQ;
1501 }
1502
0ebfff14 1503 return irq_linear_revmap(mpic->irqhost, src);
14cf11af
PM
1504}
1505
f365355e
OJ
1506unsigned int mpic_get_one_irq(struct mpic *mpic)
1507{
1508 return _mpic_get_one_irq(mpic, MPIC_INFO(CPU_INTACK));
1509}
1510
35a84c2f 1511unsigned int mpic_get_irq(void)
14cf11af
PM
1512{
1513 struct mpic *mpic = mpic_primary;
1514
1515 BUG_ON(mpic == NULL);
1516
35a84c2f 1517 return mpic_get_one_irq(mpic);
14cf11af
PM
1518}
1519
d91e4ea7
KG
1520unsigned int mpic_get_coreint_irq(void)
1521{
1522#ifdef CONFIG_BOOKE
1523 struct mpic *mpic = mpic_primary;
1524 u32 src;
1525
1526 BUG_ON(mpic == NULL);
1527
1528 src = mfspr(SPRN_EPR);
1529
1530 if (unlikely(src == mpic->spurious_vec)) {
1531 if (mpic->flags & MPIC_SPV_EOI)
1532 mpic_eoi(mpic);
1533 return NO_IRQ;
1534 }
1535 if (unlikely(mpic->protected && test_bit(src, mpic->protected))) {
1536 if (printk_ratelimit())
1537 printk(KERN_WARNING "%s: Got protected source %d !\n",
1538 mpic->name, (int)src);
1539 return NO_IRQ;
1540 }
1541
1542 return irq_linear_revmap(mpic->irqhost, src);
1543#else
1544 return NO_IRQ;
1545#endif
1546}
1547
f365355e
OJ
1548unsigned int mpic_get_mcirq(void)
1549{
1550 struct mpic *mpic = mpic_primary;
1551
1552 BUG_ON(mpic == NULL);
1553
1554 return _mpic_get_one_irq(mpic, MPIC_INFO(CPU_MCACK));
1555}
14cf11af
PM
1556
1557#ifdef CONFIG_SMP
1558void mpic_request_ipis(void)
1559{
1560 struct mpic *mpic = mpic_primary;
78608dd3 1561 int i;
14cf11af 1562 BUG_ON(mpic == NULL);
14cf11af 1563
8354be9c 1564 printk(KERN_INFO "mpic: requesting IPIs...\n");
0ebfff14
BH
1565
1566 for (i = 0; i < 4; i++) {
1567 unsigned int vipi = irq_create_mapping(mpic->irqhost,
7df2457d 1568 mpic->ipi_vecs[0] + i);
0ebfff14 1569 if (vipi == NO_IRQ) {
78608dd3
MM
1570 printk(KERN_ERR "Failed to map %s\n", smp_ipi_name[i]);
1571 continue;
d16f1b64 1572 }
78608dd3 1573 smp_request_message_ipi(vipi, i);
0ebfff14 1574 }
14cf11af 1575}
a9c59264 1576
2ef613cb
BH
1577static void mpic_send_ipi(unsigned int ipi_no, const struct cpumask *cpu_mask)
1578{
1579 struct mpic *mpic = mpic_primary;
1580
1581 BUG_ON(mpic == NULL);
1582
1583#ifdef DEBUG_IPI
1584 DBG("%s: send_ipi(ipi_no: %d)\n", mpic->name, ipi_no);
1585#endif
1586
1587 mpic_cpu_write(MPIC_INFO(CPU_IPI_DISPATCH_0) +
1588 ipi_no * MPIC_INFO(CPU_IPI_DISPATCH_STRIDE),
1589 mpic_physmask(cpumask_bits(cpu_mask)[0]));
1590}
1591
a9c59264
PM
1592void smp_mpic_message_pass(int target, int msg)
1593{
2ef613cb
BH
1594 cpumask_var_t tmp;
1595
a9c59264
PM
1596 /* make sure we're sending something that translates to an IPI */
1597 if ((unsigned int)msg > 3) {
1598 printk("SMP %d: smp_message_pass: unknown msg %d\n",
1599 smp_processor_id(), msg);
1600 return;
1601 }
1602 switch (target) {
1603 case MSG_ALL:
2ef613cb 1604 mpic_send_ipi(msg, cpu_online_mask);
a9c59264
PM
1605 break;
1606 case MSG_ALL_BUT_SELF:
2ef613cb
BH
1607 alloc_cpumask_var(&tmp, GFP_NOWAIT);
1608 cpumask_andnot(tmp, cpu_online_mask,
1609 cpumask_of(smp_processor_id()));
1610 mpic_send_ipi(msg, tmp);
1611 free_cpumask_var(tmp);
a9c59264
PM
1612 break;
1613 default:
2ef613cb 1614 mpic_send_ipi(msg, cpumask_of(target));
a9c59264
PM
1615 break;
1616 }
1617}
775aeff4
ME
1618
1619int __init smp_mpic_probe(void)
1620{
1621 int nr_cpus;
1622
1623 DBG("smp_mpic_probe()...\n");
1624
2ef613cb 1625 nr_cpus = cpumask_weight(cpu_possible_mask);
775aeff4
ME
1626
1627 DBG("nr_cpus: %d\n", nr_cpus);
1628
1629 if (nr_cpus > 1)
1630 mpic_request_ipis();
1631
1632 return nr_cpus;
1633}
1634
1635void __devinit smp_mpic_setup_cpu(int cpu)
1636{
1637 mpic_setup_this_cpu();
1638}
14cf11af 1639#endif /* CONFIG_SMP */
3669e930
JB
1640
1641#ifdef CONFIG_PM
1642static int mpic_suspend(struct sys_device *dev, pm_message_t state)
1643{
1644 struct mpic *mpic = container_of(dev, struct mpic, sysdev);
1645 int i;
1646
1647 for (i = 0; i < mpic->num_sources; i++) {
1648 mpic->save_data[i].vecprio =
1649 mpic_irq_read(i, MPIC_INFO(IRQ_VECTOR_PRI));
1650 mpic->save_data[i].dest =
1651 mpic_irq_read(i, MPIC_INFO(IRQ_DESTINATION));
1652 }
1653
1654 return 0;
1655}
1656
1657static int mpic_resume(struct sys_device *dev)
1658{
1659 struct mpic *mpic = container_of(dev, struct mpic, sysdev);
1660 int i;
1661
1662 for (i = 0; i < mpic->num_sources; i++) {
1663 mpic_irq_write(i, MPIC_INFO(IRQ_VECTOR_PRI),
1664 mpic->save_data[i].vecprio);
1665 mpic_irq_write(i, MPIC_INFO(IRQ_DESTINATION),
1666 mpic->save_data[i].dest);
1667
1668#ifdef CONFIG_MPIC_U3_HT_IRQS
7c9d9360 1669 if (mpic->fixups) {
3669e930
JB
1670 struct mpic_irq_fixup *fixup = &mpic->fixups[i];
1671
1672 if (fixup->base) {
1673 /* we use the lowest bit in an inverted meaning */
1674 if ((mpic->save_data[i].fixup_data & 1) == 0)
1675 continue;
1676
1677 /* Enable and configure */
1678 writeb(0x10 + 2 * fixup->index, fixup->base + 2);
1679
1680 writel(mpic->save_data[i].fixup_data & ~1,
1681 fixup->base + 4);
1682 }
1683 }
1684#endif
1685 } /* end for loop */
1686
1687 return 0;
1688}
1689#endif
1690
1691static struct sysdev_class mpic_sysclass = {
1692#ifdef CONFIG_PM
1693 .resume = mpic_resume,
1694 .suspend = mpic_suspend,
1695#endif
af5ca3f4 1696 .name = "mpic",
3669e930
JB
1697};
1698
1699static int mpic_init_sys(void)
1700{
1701 struct mpic *mpic = mpics;
1702 int error, id = 0;
1703
1704 error = sysdev_class_register(&mpic_sysclass);
1705
1706 while (mpic && !error) {
1707 mpic->sysdev.cls = &mpic_sysclass;
1708 mpic->sysdev.id = id++;
1709 error = sysdev_register(&mpic->sysdev);
1710 mpic = mpic->next;
1711 }
1712 return error;
1713}
1714
1715device_initcall(mpic_init_sys);