[SPARC/64]: Move of_platform_driver initialisations: arch/sparc{,64}.
[deliverable/linux.git] / arch / sparc64 / kernel / irq.c
CommitLineData
4a907dec 1/* irq.c: UltraSparc IRQ handling/init/registry.
1da177e4 2 *
4a907dec 3 * Copyright (C) 1997, 2007 David S. Miller (davem@davemloft.net)
1da177e4
LT
4 * Copyright (C) 1998 Eddie C. Dost (ecd@skynet.be)
5 * Copyright (C) 1998 Jakub Jelinek (jj@ultra.linux.cz)
6 */
7
1da177e4
LT
8#include <linux/module.h>
9#include <linux/sched.h>
10#include <linux/ptrace.h>
11#include <linux/errno.h>
12#include <linux/kernel_stat.h>
13#include <linux/signal.h>
14#include <linux/mm.h>
15#include <linux/interrupt.h>
16#include <linux/slab.h>
17#include <linux/random.h>
18#include <linux/init.h>
19#include <linux/delay.h>
20#include <linux/proc_fs.h>
21#include <linux/seq_file.h>
b5a37e96 22#include <linux/bootmem.h>
e18e2a00 23#include <linux/irq.h>
35a17eb6 24#include <linux/msi.h>
1da177e4
LT
25
26#include <asm/ptrace.h>
27#include <asm/processor.h>
28#include <asm/atomic.h>
29#include <asm/system.h>
30#include <asm/irq.h>
2e457ef6 31#include <asm/io.h>
1da177e4
LT
32#include <asm/sbus.h>
33#include <asm/iommu.h>
34#include <asm/upa.h>
35#include <asm/oplib.h>
25c7581b 36#include <asm/prom.h>
1da177e4
LT
37#include <asm/timer.h>
38#include <asm/smp.h>
39#include <asm/starfire.h>
40#include <asm/uaccess.h>
41#include <asm/cache.h>
42#include <asm/cpudata.h>
63b61452 43#include <asm/auxio.h>
92704a1c 44#include <asm/head.h>
4a907dec 45#include <asm/hypervisor.h>
1da177e4 46
1da177e4
LT
47/* UPA nodes send interrupt packet to UltraSparc with first data reg
48 * value low 5 (7 on Starfire) bits holding the IRQ identifier being
49 * delivered. We must translate this into a non-vector IRQ so we can
50 * set the softint on this cpu.
51 *
52 * To make processing these packets efficient and race free we use
53 * an array of irq buckets below. The interrupt vector handler in
54 * entry.S feeds incoming packets into per-cpu pil-indexed lists.
55 * The IVEC handler does not need to act atomically, the PIL dispatch
56 * code uses CAS to get an atomic snapshot of the list and clear it
57 * at the same time.
e18e2a00
DM
58 *
59 * If you make changes to ino_bucket, please update hand coded assembler
60 * of the vectored interrupt trap handler(s) in entry.S and sun4v_ivec.S
1da177e4 61 */
e18e2a00
DM
62struct ino_bucket {
63 /* Next handler in per-CPU IRQ worklist. We know that
64 * bucket pointers have the high 32-bits clear, so to
65 * save space we only store the bits we need.
66 */
67/*0x00*/unsigned int irq_chain;
1da177e4 68
e18e2a00
DM
69 /* Virtual interrupt number assigned to this INO. */
70/*0x04*/unsigned int virt_irq;
71};
72
73#define NUM_IVECS (IMAP_INR + 1)
1da177e4
LT
74struct ino_bucket ivector_table[NUM_IVECS] __attribute__ ((aligned (SMP_CACHE_BYTES)));
75
e18e2a00
DM
76#define __irq_ino(irq) \
77 (((struct ino_bucket *)(unsigned long)(irq)) - &ivector_table[0])
78#define __bucket(irq) ((struct ino_bucket *)(unsigned long)(irq))
79#define __irq(bucket) ((unsigned int)(unsigned long)(bucket))
80
1da177e4
LT
81/* This has to be in the main kernel image, it cannot be
82 * turned into per-cpu data. The reason is that the main
83 * kernel image is locked into the TLB and this structure
84 * is accessed from the vectored interrupt trap handler. If
85 * access to this structure takes a TLB miss it could cause
86 * the 5-level sparc v9 trap stack to overflow.
87 */
fd0504c3 88#define irq_work(__cpu) &(trap_block[(__cpu)].irq_worklist)
1da177e4 89
93b3238e
DM
90static struct {
91 unsigned int irq;
92 unsigned int dev_handle;
93 unsigned int dev_ino;
94} virt_to_real_irq_table[NR_IRQS];
8047e247
DM
95
96static unsigned char virt_irq_alloc(unsigned int real_irq)
97{
98 unsigned char ent;
99
100 BUILD_BUG_ON(NR_IRQS >= 256);
101
35a17eb6 102 for (ent = 1; ent < NR_IRQS; ent++) {
93b3238e 103 if (!virt_to_real_irq_table[ent].irq)
35a17eb6
DM
104 break;
105 }
8047e247
DM
106 if (ent >= NR_IRQS) {
107 printk(KERN_ERR "IRQ: Out of virtual IRQs.\n");
108 return 0;
109 }
110
93b3238e 111 virt_to_real_irq_table[ent].irq = real_irq;
8047e247
DM
112
113 return ent;
114}
115
5746c99d 116#ifdef CONFIG_PCI_MSI
35a17eb6 117static void virt_irq_free(unsigned int virt_irq)
8047e247 118{
35a17eb6 119 unsigned int real_irq;
8047e247 120
35a17eb6
DM
121 if (virt_irq >= NR_IRQS)
122 return;
123
93b3238e
DM
124 real_irq = virt_to_real_irq_table[virt_irq].irq;
125 virt_to_real_irq_table[virt_irq].irq = 0;
35a17eb6
DM
126
127 __bucket(real_irq)->virt_irq = 0;
8047e247 128}
5746c99d 129#endif
8047e247
DM
130
131static unsigned int virt_to_real_irq(unsigned char virt_irq)
132{
93b3238e 133 return virt_to_real_irq_table[virt_irq].irq;
8047e247
DM
134}
135
1da177e4 136/*
e18e2a00 137 * /proc/interrupts printing:
1da177e4 138 */
1da177e4
LT
139
140int show_interrupts(struct seq_file *p, void *v)
141{
e18e2a00
DM
142 int i = *(loff_t *) v, j;
143 struct irqaction * action;
1da177e4 144 unsigned long flags;
1da177e4 145
e18e2a00
DM
146 if (i == 0) {
147 seq_printf(p, " ");
148 for_each_online_cpu(j)
149 seq_printf(p, "CPU%d ",j);
150 seq_putc(p, '\n');
151 }
152
153 if (i < NR_IRQS) {
154 spin_lock_irqsave(&irq_desc[i].lock, flags);
155 action = irq_desc[i].action;
156 if (!action)
157 goto skip;
158 seq_printf(p, "%3d: ",i);
1da177e4
LT
159#ifndef CONFIG_SMP
160 seq_printf(p, "%10u ", kstat_irqs(i));
161#else
e18e2a00
DM
162 for_each_online_cpu(j)
163 seq_printf(p, "%10u ", kstat_cpu(j).irqs[i]);
1da177e4 164#endif
d1bef4ed 165 seq_printf(p, " %9s", irq_desc[i].chip->typename);
e18e2a00
DM
166 seq_printf(p, " %s", action->name);
167
168 for (action=action->next; action; action = action->next)
37cdcd9e 169 seq_printf(p, ", %s", action->name);
e18e2a00 170
1da177e4 171 seq_putc(p, '\n');
e18e2a00
DM
172skip:
173 spin_unlock_irqrestore(&irq_desc[i].lock, flags);
1da177e4 174 }
1da177e4
LT
175 return 0;
176}
177
ebd8c56c
DM
178static unsigned int sun4u_compute_tid(unsigned long imap, unsigned long cpuid)
179{
180 unsigned int tid;
181
182 if (this_is_starfire) {
183 tid = starfire_translate(imap, cpuid);
184 tid <<= IMAP_TID_SHIFT;
185 tid &= IMAP_TID_UPA;
186 } else {
187 if (tlb_type == cheetah || tlb_type == cheetah_plus) {
188 unsigned long ver;
189
190 __asm__ ("rdpr %%ver, %0" : "=r" (ver));
191 if ((ver >> 32UL) == __JALAPENO_ID ||
192 (ver >> 32UL) == __SERRANO_ID) {
193 tid = cpuid << IMAP_TID_SHIFT;
194 tid &= IMAP_TID_JBUS;
195 } else {
196 unsigned int a = cpuid & 0x1f;
197 unsigned int n = (cpuid >> 5) & 0x1f;
198
199 tid = ((a << IMAP_AID_SHIFT) |
200 (n << IMAP_NID_SHIFT));
201 tid &= (IMAP_AID_SAFARI |
202 IMAP_NID_SAFARI);;
203 }
204 } else {
205 tid = cpuid << IMAP_TID_SHIFT;
206 tid &= IMAP_TID_UPA;
207 }
208 }
209
210 return tid;
211}
212
e18e2a00
DM
213struct irq_handler_data {
214 unsigned long iclr;
215 unsigned long imap;
8047e247 216
e18e2a00
DM
217 void (*pre_handler)(unsigned int, void *, void *);
218 void *pre_handler_arg1;
219 void *pre_handler_arg2;
5f92c329
DM
220
221 u32 msi;
e18e2a00 222};
1da177e4 223
5f92c329
DM
224void sparc64_set_msi(unsigned int virt_irq, u32 msi)
225{
226 struct irq_handler_data *data = get_irq_chip_data(virt_irq);
227
228 if (data)
229 data->msi = msi;
230}
231
232u32 sparc64_get_msi(unsigned int virt_irq)
233{
234 struct irq_handler_data *data = get_irq_chip_data(virt_irq);
235
236 if (data)
237 return data->msi;
238 return 0xffffffff;
239}
240
e18e2a00 241static inline struct ino_bucket *virt_irq_to_bucket(unsigned int virt_irq)
1da177e4 242{
8047e247 243 unsigned int real_irq = virt_to_real_irq(virt_irq);
e18e2a00 244 struct ino_bucket *bucket = NULL;
1da177e4 245
e18e2a00
DM
246 if (likely(real_irq))
247 bucket = __bucket(real_irq);
8047e247 248
e18e2a00 249 return bucket;
1da177e4
LT
250}
251
e18e2a00
DM
252#ifdef CONFIG_SMP
253static int irq_choose_cpu(unsigned int virt_irq)
088dd1f8 254{
a53da52f 255 cpumask_t mask = irq_desc[virt_irq].affinity;
e18e2a00 256 int cpuid;
088dd1f8 257
e18e2a00
DM
258 if (cpus_equal(mask, CPU_MASK_ALL)) {
259 static int irq_rover;
260 static DEFINE_SPINLOCK(irq_rover_lock);
261 unsigned long flags;
1da177e4 262
e18e2a00
DM
263 /* Round-robin distribution... */
264 do_round_robin:
265 spin_lock_irqsave(&irq_rover_lock, flags);
10951ee6 266
e18e2a00
DM
267 while (!cpu_online(irq_rover)) {
268 if (++irq_rover >= NR_CPUS)
269 irq_rover = 0;
270 }
271 cpuid = irq_rover;
272 do {
273 if (++irq_rover >= NR_CPUS)
274 irq_rover = 0;
275 } while (!cpu_online(irq_rover));
1da177e4 276
e18e2a00
DM
277 spin_unlock_irqrestore(&irq_rover_lock, flags);
278 } else {
279 cpumask_t tmp;
088dd1f8 280
e18e2a00 281 cpus_and(tmp, cpu_online_map, mask);
088dd1f8 282
e18e2a00
DM
283 if (cpus_empty(tmp))
284 goto do_round_robin;
088dd1f8 285
e18e2a00 286 cpuid = first_cpu(tmp);
1da177e4 287 }
088dd1f8 288
e18e2a00
DM
289 return cpuid;
290}
291#else
292static int irq_choose_cpu(unsigned int virt_irq)
293{
294 return real_hard_smp_processor_id();
1da177e4 295}
e18e2a00 296#endif
1da177e4 297
e18e2a00 298static void sun4u_irq_enable(unsigned int virt_irq)
e3999574 299{
68c92186 300 struct irq_handler_data *data = get_irq_chip_data(virt_irq);
e3999574 301
e18e2a00 302 if (likely(data)) {
861fe906 303 unsigned long cpuid, imap, val;
e18e2a00 304 unsigned int tid;
e3999574 305
e18e2a00
DM
306 cpuid = irq_choose_cpu(virt_irq);
307 imap = data->imap;
e3999574 308
e18e2a00 309 tid = sun4u_compute_tid(imap, cpuid);
e3999574 310
861fe906
DM
311 val = upa_readq(imap);
312 val &= ~(IMAP_TID_UPA | IMAP_TID_JBUS |
313 IMAP_AID_SAFARI | IMAP_NID_SAFARI);
314 val |= tid | IMAP_VALID;
315 upa_writeq(val, imap);
e3999574 316 }
e3999574
DM
317}
318
b53bcb67
DM
319static void sun4u_set_affinity(unsigned int virt_irq, cpumask_t mask)
320{
321 sun4u_irq_enable(virt_irq);
322}
323
e18e2a00 324static void sun4u_irq_disable(unsigned int virt_irq)
1da177e4 325{
68c92186 326 struct irq_handler_data *data = get_irq_chip_data(virt_irq);
1da177e4 327
e18e2a00
DM
328 if (likely(data)) {
329 unsigned long imap = data->imap;
6e69d606 330 unsigned long tmp = upa_readq(imap);
1da177e4 331
e18e2a00 332 tmp &= ~IMAP_VALID;
861fe906 333 upa_writeq(tmp, imap);
088dd1f8 334 }
088dd1f8
DM
335}
336
e18e2a00 337static void sun4u_irq_end(unsigned int virt_irq)
088dd1f8 338{
68c92186 339 struct irq_handler_data *data = get_irq_chip_data(virt_irq);
5a606b72
DM
340 struct irq_desc *desc = irq_desc + virt_irq;
341
342 if (unlikely(desc->status & (IRQ_DISABLED|IRQ_INPROGRESS)))
343 return;
088dd1f8 344
e18e2a00 345 if (likely(data))
861fe906 346 upa_writeq(ICLR_IDLE, data->iclr);
088dd1f8
DM
347}
348
e18e2a00 349static void sun4v_irq_enable(unsigned int virt_irq)
088dd1f8 350{
e18e2a00
DM
351 struct ino_bucket *bucket = virt_irq_to_bucket(virt_irq);
352 unsigned int ino = bucket - &ivector_table[0];
088dd1f8 353
e18e2a00
DM
354 if (likely(bucket)) {
355 unsigned long cpuid;
356 int err;
088dd1f8 357
e18e2a00 358 cpuid = irq_choose_cpu(virt_irq);
088dd1f8 359
e18e2a00
DM
360 err = sun4v_intr_settarget(ino, cpuid);
361 if (err != HV_EOK)
e83fb17f
DM
362 printk(KERN_ERR "sun4v_intr_settarget(%x,%lu): "
363 "err(%d)\n", ino, cpuid, err);
a357b8f4
DM
364 err = sun4v_intr_setstate(ino, HV_INTR_STATE_IDLE);
365 if (err != HV_EOK)
e83fb17f 366 printk(KERN_ERR "sun4v_intr_setstate(%x): "
a357b8f4 367 "err(%d)\n", ino, err);
e18e2a00
DM
368 err = sun4v_intr_setenabled(ino, HV_INTR_ENABLED);
369 if (err != HV_EOK)
e83fb17f 370 printk(KERN_ERR "sun4v_intr_setenabled(%x): err(%d)\n",
e18e2a00 371 ino, err);
088dd1f8 372 }
088dd1f8
DM
373}
374
b53bcb67
DM
375static void sun4v_set_affinity(unsigned int virt_irq, cpumask_t mask)
376{
377 struct ino_bucket *bucket = virt_irq_to_bucket(virt_irq);
378 unsigned int ino = bucket - &ivector_table[0];
379
380 if (likely(bucket)) {
381 unsigned long cpuid;
382 int err;
383
384 cpuid = irq_choose_cpu(virt_irq);
385
386 err = sun4v_intr_settarget(ino, cpuid);
387 if (err != HV_EOK)
e83fb17f
DM
388 printk(KERN_ERR "sun4v_intr_settarget(%x,%lu): "
389 "err(%d)\n", ino, cpuid, err);
b53bcb67
DM
390 }
391}
392
e18e2a00 393static void sun4v_irq_disable(unsigned int virt_irq)
1da177e4 394{
e18e2a00
DM
395 struct ino_bucket *bucket = virt_irq_to_bucket(virt_irq);
396 unsigned int ino = bucket - &ivector_table[0];
1da177e4 397
e18e2a00
DM
398 if (likely(bucket)) {
399 int err;
1da177e4 400
e18e2a00
DM
401 err = sun4v_intr_setenabled(ino, HV_INTR_DISABLED);
402 if (err != HV_EOK)
e83fb17f 403 printk(KERN_ERR "sun4v_intr_setenabled(%x): "
e18e2a00 404 "err(%d)\n", ino, err);
1da177e4 405 }
e18e2a00 406}
1da177e4 407
35a17eb6 408#ifdef CONFIG_PCI_MSI
9bb3c227
DM
409static void sun4u_msi_enable(unsigned int virt_irq)
410{
411 sun4u_irq_enable(virt_irq);
412 unmask_msi_irq(virt_irq);
413}
414
415static void sun4u_msi_disable(unsigned int virt_irq)
416{
417 mask_msi_irq(virt_irq);
418 sun4u_irq_disable(virt_irq);
419}
420
35a17eb6
DM
421static void sun4v_msi_enable(unsigned int virt_irq)
422{
423 sun4v_irq_enable(virt_irq);
424 unmask_msi_irq(virt_irq);
425}
426
427static void sun4v_msi_disable(unsigned int virt_irq)
428{
429 mask_msi_irq(virt_irq);
430 sun4v_irq_disable(virt_irq);
431}
432#endif
433
e18e2a00
DM
434static void sun4v_irq_end(unsigned int virt_irq)
435{
436 struct ino_bucket *bucket = virt_irq_to_bucket(virt_irq);
437 unsigned int ino = bucket - &ivector_table[0];
5a606b72
DM
438 struct irq_desc *desc = irq_desc + virt_irq;
439
440 if (unlikely(desc->status & (IRQ_DISABLED|IRQ_INPROGRESS)))
441 return;
1da177e4 442
e18e2a00
DM
443 if (likely(bucket)) {
444 int err;
1da177e4 445
e18e2a00
DM
446 err = sun4v_intr_setstate(ino, HV_INTR_STATE_IDLE);
447 if (err != HV_EOK)
e83fb17f 448 printk(KERN_ERR "sun4v_intr_setstate(%x): "
e18e2a00 449 "err(%d)\n", ino, err);
1da177e4 450 }
1da177e4
LT
451}
452
4a907dec
DM
453static void sun4v_virq_enable(unsigned int virt_irq)
454{
455 struct ino_bucket *bucket = virt_irq_to_bucket(virt_irq);
4a907dec
DM
456
457 if (likely(bucket)) {
458 unsigned long cpuid, dev_handle, dev_ino;
459 int err;
460
461 cpuid = irq_choose_cpu(virt_irq);
462
93b3238e
DM
463 dev_handle = virt_to_real_irq_table[virt_irq].dev_handle;
464 dev_ino = virt_to_real_irq_table[virt_irq].dev_ino;
4a907dec
DM
465
466 err = sun4v_vintr_set_target(dev_handle, dev_ino, cpuid);
467 if (err != HV_EOK)
e83fb17f 468 printk(KERN_ERR "sun4v_vintr_set_target(%lx,%lx,%lu): "
4a907dec
DM
469 "err(%d)\n",
470 dev_handle, dev_ino, cpuid, err);
471 err = sun4v_vintr_set_state(dev_handle, dev_ino,
12450884
DM
472 HV_INTR_STATE_IDLE);
473 if (err != HV_EOK)
e83fb17f 474 printk(KERN_ERR "sun4v_vintr_set_state(%lx,%lx,"
12450884
DM
475 "HV_INTR_STATE_IDLE): err(%d)\n",
476 dev_handle, dev_ino, err);
477 err = sun4v_vintr_set_valid(dev_handle, dev_ino,
4a907dec
DM
478 HV_INTR_ENABLED);
479 if (err != HV_EOK)
e83fb17f 480 printk(KERN_ERR "sun4v_vintr_set_state(%lx,%lx,"
4a907dec
DM
481 "HV_INTR_ENABLED): err(%d)\n",
482 dev_handle, dev_ino, err);
483 }
484}
485
b53bcb67
DM
486static void sun4v_virt_set_affinity(unsigned int virt_irq, cpumask_t mask)
487{
488 struct ino_bucket *bucket = virt_irq_to_bucket(virt_irq);
b53bcb67
DM
489
490 if (likely(bucket)) {
491 unsigned long cpuid, dev_handle, dev_ino;
492 int err;
493
494 cpuid = irq_choose_cpu(virt_irq);
495
93b3238e
DM
496 dev_handle = virt_to_real_irq_table[virt_irq].dev_handle;
497 dev_ino = virt_to_real_irq_table[virt_irq].dev_ino;
b53bcb67
DM
498
499 err = sun4v_vintr_set_target(dev_handle, dev_ino, cpuid);
500 if (err != HV_EOK)
e83fb17f 501 printk(KERN_ERR "sun4v_vintr_set_target(%lx,%lx,%lu): "
b53bcb67
DM
502 "err(%d)\n",
503 dev_handle, dev_ino, cpuid, err);
504 }
505}
506
4a907dec
DM
507static void sun4v_virq_disable(unsigned int virt_irq)
508{
509 struct ino_bucket *bucket = virt_irq_to_bucket(virt_irq);
4a907dec
DM
510
511 if (likely(bucket)) {
512 unsigned long dev_handle, dev_ino;
513 int err;
514
93b3238e
DM
515 dev_handle = virt_to_real_irq_table[virt_irq].dev_handle;
516 dev_ino = virt_to_real_irq_table[virt_irq].dev_ino;
4a907dec 517
12450884 518 err = sun4v_vintr_set_valid(dev_handle, dev_ino,
4a907dec
DM
519 HV_INTR_DISABLED);
520 if (err != HV_EOK)
e83fb17f 521 printk(KERN_ERR "sun4v_vintr_set_state(%lx,%lx,"
4a907dec
DM
522 "HV_INTR_DISABLED): err(%d)\n",
523 dev_handle, dev_ino, err);
524 }
525}
526
527static void sun4v_virq_end(unsigned int virt_irq)
528{
529 struct ino_bucket *bucket = virt_irq_to_bucket(virt_irq);
5a606b72
DM
530 struct irq_desc *desc = irq_desc + virt_irq;
531
532 if (unlikely(desc->status & (IRQ_DISABLED|IRQ_INPROGRESS)))
533 return;
4a907dec
DM
534
535 if (likely(bucket)) {
536 unsigned long dev_handle, dev_ino;
537 int err;
538
93b3238e
DM
539 dev_handle = virt_to_real_irq_table[virt_irq].dev_handle;
540 dev_ino = virt_to_real_irq_table[virt_irq].dev_ino;
4a907dec
DM
541
542 err = sun4v_vintr_set_state(dev_handle, dev_ino,
543 HV_INTR_STATE_IDLE);
544 if (err != HV_EOK)
e83fb17f 545 printk(KERN_ERR "sun4v_vintr_set_state(%lx,%lx,"
4a907dec
DM
546 "HV_INTR_STATE_IDLE): err(%d)\n",
547 dev_handle, dev_ino, err);
548 }
549}
550
e18e2a00 551static void run_pre_handler(unsigned int virt_irq)
1da177e4 552{
e18e2a00 553 struct ino_bucket *bucket = virt_irq_to_bucket(virt_irq);
68c92186 554 struct irq_handler_data *data = get_irq_chip_data(virt_irq);
1da177e4 555
e18e2a00
DM
556 if (likely(data->pre_handler)) {
557 data->pre_handler(__irq_ino(__irq(bucket)),
558 data->pre_handler_arg1,
559 data->pre_handler_arg2);
1da177e4 560 }
088dd1f8
DM
561}
562
729e7d7e 563static struct irq_chip sun4u_irq = {
e18e2a00
DM
564 .typename = "sun4u",
565 .enable = sun4u_irq_enable,
566 .disable = sun4u_irq_disable,
567 .end = sun4u_irq_end,
b53bcb67 568 .set_affinity = sun4u_set_affinity,
e18e2a00 569};
8047e247 570
729e7d7e 571static struct irq_chip sun4u_irq_ack = {
e18e2a00
DM
572 .typename = "sun4u+ack",
573 .enable = sun4u_irq_enable,
574 .disable = sun4u_irq_disable,
575 .ack = run_pre_handler,
576 .end = sun4u_irq_end,
b53bcb67 577 .set_affinity = sun4u_set_affinity,
e18e2a00 578};
088dd1f8 579
729e7d7e 580static struct irq_chip sun4v_irq = {
e18e2a00
DM
581 .typename = "sun4v",
582 .enable = sun4v_irq_enable,
583 .disable = sun4v_irq_disable,
584 .end = sun4v_irq_end,
b53bcb67 585 .set_affinity = sun4v_set_affinity,
e18e2a00 586};
1da177e4 587
729e7d7e 588static struct irq_chip sun4v_irq_ack = {
e18e2a00
DM
589 .typename = "sun4v+ack",
590 .enable = sun4v_irq_enable,
591 .disable = sun4v_irq_disable,
592 .ack = run_pre_handler,
593 .end = sun4v_irq_end,
b53bcb67 594 .set_affinity = sun4v_set_affinity,
e18e2a00 595};
1da177e4 596
35a17eb6 597#ifdef CONFIG_PCI_MSI
9bb3c227
DM
598static struct irq_chip sun4u_msi = {
599 .typename = "sun4u+msi",
600 .mask = mask_msi_irq,
601 .unmask = unmask_msi_irq,
602 .enable = sun4u_msi_enable,
603 .disable = sun4u_msi_disable,
604 .ack = run_pre_handler,
605 .end = sun4u_irq_end,
606 .set_affinity = sun4u_set_affinity,
607};
608
35a17eb6
DM
609static struct irq_chip sun4v_msi = {
610 .typename = "sun4v+msi",
611 .mask = mask_msi_irq,
612 .unmask = unmask_msi_irq,
613 .enable = sun4v_msi_enable,
614 .disable = sun4v_msi_disable,
615 .ack = run_pre_handler,
616 .end = sun4v_irq_end,
b53bcb67 617 .set_affinity = sun4v_set_affinity,
35a17eb6
DM
618};
619#endif
620
4a907dec
DM
621static struct irq_chip sun4v_virq = {
622 .typename = "vsun4v",
623 .enable = sun4v_virq_enable,
624 .disable = sun4v_virq_disable,
625 .end = sun4v_virq_end,
b53bcb67 626 .set_affinity = sun4v_virt_set_affinity,
4a907dec
DM
627};
628
629static struct irq_chip sun4v_virq_ack = {
630 .typename = "vsun4v+ack",
631 .enable = sun4v_virq_enable,
632 .disable = sun4v_virq_disable,
633 .ack = run_pre_handler,
634 .end = sun4v_virq_end,
b53bcb67 635 .set_affinity = sun4v_virt_set_affinity,
4a907dec
DM
636};
637
e18e2a00
DM
638void irq_install_pre_handler(int virt_irq,
639 void (*func)(unsigned int, void *, void *),
640 void *arg1, void *arg2)
641{
68c92186
DM
642 struct irq_handler_data *data = get_irq_chip_data(virt_irq);
643 struct irq_chip *chip;
088dd1f8 644
e18e2a00
DM
645 data->pre_handler = func;
646 data->pre_handler_arg1 = arg1;
647 data->pre_handler_arg2 = arg2;
1da177e4 648
68c92186
DM
649 chip = get_irq_chip(virt_irq);
650 if (chip == &sun4u_irq_ack ||
4a907dec
DM
651 chip == &sun4v_irq_ack ||
652 chip == &sun4v_virq_ack
35a17eb6 653#ifdef CONFIG_PCI_MSI
9bb3c227 654 || chip == &sun4u_msi
35a17eb6
DM
655 || chip == &sun4v_msi
656#endif
657 )
24ac26d4
DM
658 return;
659
68c92186 660 chip = (chip == &sun4u_irq ?
4a907dec
DM
661 &sun4u_irq_ack :
662 (chip == &sun4v_irq ?
663 &sun4v_irq_ack : &sun4v_virq_ack));
68c92186 664 set_irq_chip(virt_irq, chip);
e18e2a00 665}
1da177e4 666
e18e2a00
DM
667unsigned int build_irq(int inofixup, unsigned long iclr, unsigned long imap)
668{
669 struct ino_bucket *bucket;
670 struct irq_handler_data *data;
e18e2a00 671 int ino;
1da177e4 672
e18e2a00 673 BUG_ON(tlb_type == hypervisor);
088dd1f8 674
861fe906 675 ino = (upa_readq(imap) & (IMAP_IGN | IMAP_INO)) + inofixup;
e18e2a00
DM
676 bucket = &ivector_table[ino];
677 if (!bucket->virt_irq) {
678 bucket->virt_irq = virt_irq_alloc(__irq(bucket));
68c92186 679 set_irq_chip(bucket->virt_irq, &sun4u_irq);
fd0504c3 680 }
1da177e4 681
68c92186
DM
682 data = get_irq_chip_data(bucket->virt_irq);
683 if (unlikely(data))
e18e2a00 684 goto out;
fd0504c3 685
e18e2a00
DM
686 data = kzalloc(sizeof(struct irq_handler_data), GFP_ATOMIC);
687 if (unlikely(!data)) {
688 prom_printf("IRQ: kzalloc(irq_handler_data) failed.\n");
689 prom_halt();
1da177e4 690 }
68c92186 691 set_irq_chip_data(bucket->virt_irq, data);
1da177e4 692
e18e2a00
DM
693 data->imap = imap;
694 data->iclr = iclr;
1da177e4 695
e18e2a00
DM
696out:
697 return bucket->virt_irq;
698}
1da177e4 699
4a907dec
DM
700static unsigned int sun4v_build_common(unsigned long sysino,
701 struct irq_chip *chip)
1da177e4 702{
8047e247 703 struct ino_bucket *bucket;
e18e2a00 704 struct irq_handler_data *data;
8047e247 705
e18e2a00 706 BUG_ON(tlb_type != hypervisor);
1da177e4 707
e18e2a00
DM
708 bucket = &ivector_table[sysino];
709 if (!bucket->virt_irq) {
710 bucket->virt_irq = virt_irq_alloc(__irq(bucket));
4a907dec 711 set_irq_chip(bucket->virt_irq, chip);
1da177e4 712 }
1da177e4 713
68c92186
DM
714 data = get_irq_chip_data(bucket->virt_irq);
715 if (unlikely(data))
1da177e4 716 goto out;
1da177e4 717
e18e2a00
DM
718 data = kzalloc(sizeof(struct irq_handler_data), GFP_ATOMIC);
719 if (unlikely(!data)) {
720 prom_printf("IRQ: kzalloc(irq_handler_data) failed.\n");
721 prom_halt();
722 }
68c92186 723 set_irq_chip_data(bucket->virt_irq, data);
1da177e4 724
e18e2a00
DM
725 /* Catch accidental accesses to these things. IMAP/ICLR handling
726 * is done by hypervisor calls on sun4v platforms, not by direct
727 * register accesses.
728 */
729 data->imap = ~0UL;
730 data->iclr = ~0UL;
1da177e4 731
e18e2a00
DM
732out:
733 return bucket->virt_irq;
734}
1da177e4 735
4a907dec
DM
736unsigned int sun4v_build_irq(u32 devhandle, unsigned int devino)
737{
738 unsigned long sysino = sun4v_devino_to_sysino(devhandle, devino);
739
740 return sun4v_build_common(sysino, &sun4v_irq);
741}
742
743unsigned int sun4v_build_virq(u32 devhandle, unsigned int devino)
744{
745 unsigned long sysino, hv_err;
93b3238e 746 unsigned int virq;
4a907dec 747
5f7426c0 748 BUG_ON(devhandle & devino);
4a907dec
DM
749
750 sysino = devhandle | devino;
5f7426c0 751 BUG_ON(sysino & ~(IMAP_IGN | IMAP_INO));
4a907dec
DM
752
753 hv_err = sun4v_vintr_set_cookie(devhandle, devino, sysino);
754 if (hv_err) {
755 prom_printf("IRQ: Fatal, cannot set cookie for [%x:%x] "
756 "err=%lu\n", devhandle, devino, hv_err);
757 prom_halt();
758 }
759
93b3238e
DM
760 virq = sun4v_build_common(sysino, &sun4v_virq);
761
762 virt_to_real_irq_table[virq].dev_handle = devhandle;
763 virt_to_real_irq_table[virq].dev_ino = devino;
764
765 return virq;
4a907dec
DM
766}
767
35a17eb6
DM
768#ifdef CONFIG_PCI_MSI
769unsigned int sun4v_build_msi(u32 devhandle, unsigned int *virt_irq_p,
770 unsigned int msi_start, unsigned int msi_end)
771{
772 struct ino_bucket *bucket;
773 struct irq_handler_data *data;
774 unsigned long sysino;
775 unsigned int devino;
776
777 BUG_ON(tlb_type != hypervisor);
778
779 /* Find a free devino in the given range. */
780 for (devino = msi_start; devino < msi_end; devino++) {
781 sysino = sun4v_devino_to_sysino(devhandle, devino);
782 bucket = &ivector_table[sysino];
783 if (!bucket->virt_irq)
784 break;
785 }
786 if (devino >= msi_end)
5f92c329 787 return -ENOSPC;
35a17eb6
DM
788
789 sysino = sun4v_devino_to_sysino(devhandle, devino);
790 bucket = &ivector_table[sysino];
791 bucket->virt_irq = virt_irq_alloc(__irq(bucket));
792 *virt_irq_p = bucket->virt_irq;
793 set_irq_chip(bucket->virt_irq, &sun4v_msi);
794
795 data = get_irq_chip_data(bucket->virt_irq);
796 if (unlikely(data))
797 return devino;
798
799 data = kzalloc(sizeof(struct irq_handler_data), GFP_ATOMIC);
800 if (unlikely(!data)) {
5f92c329
DM
801 virt_irq_free(*virt_irq_p);
802 return -ENOMEM;
35a17eb6
DM
803 }
804 set_irq_chip_data(bucket->virt_irq, data);
805
806 data->imap = ~0UL;
807 data->iclr = ~0UL;
808
809 return devino;
810}
811
812void sun4v_destroy_msi(unsigned int virt_irq)
813{
814 virt_irq_free(virt_irq);
815}
9bb3c227
DM
816
817unsigned int sun4u_build_msi(u32 portid, unsigned int *virt_irq_p,
818 unsigned int msi_start, unsigned int msi_end,
819 unsigned long imap_base, unsigned long iclr_base)
820{
821 struct ino_bucket *bucket;
822 struct irq_handler_data *data;
823 unsigned long sysino;
824 unsigned int devino;
825
826 /* Find a free devino in the given range. */
827 for (devino = msi_start; devino < msi_end; devino++) {
828 sysino = (portid << 6) | devino;
829 bucket = &ivector_table[sysino];
830 if (!bucket->virt_irq)
831 break;
832 }
833 if (devino >= msi_end)
834 return -ENOSPC;
835
836 sysino = (portid << 6) | devino;
837 bucket = &ivector_table[sysino];
838 bucket->virt_irq = virt_irq_alloc(__irq(bucket));
839 *virt_irq_p = bucket->virt_irq;
840 set_irq_chip(bucket->virt_irq, &sun4u_msi);
841
842 data = get_irq_chip_data(bucket->virt_irq);
843 if (unlikely(data))
844 return devino;
845
846 data = kzalloc(sizeof(struct irq_handler_data), GFP_ATOMIC);
847 if (unlikely(!data)) {
848 virt_irq_free(*virt_irq_p);
849 return -ENOMEM;
850 }
851 set_irq_chip_data(bucket->virt_irq, data);
852
853 data->imap = (imap_base + (devino * 0x8UL));
854 data->iclr = (iclr_base + (devino * 0x8UL));
855
856 return devino;
857}
858
859void sun4u_destroy_msi(unsigned int virt_irq)
860{
861 virt_irq_free(virt_irq);
862}
35a17eb6
DM
863#endif
864
e18e2a00
DM
865void ack_bad_irq(unsigned int virt_irq)
866{
867 struct ino_bucket *bucket = virt_irq_to_bucket(virt_irq);
868 unsigned int ino = 0xdeadbeef;
ab66a50e 869
e18e2a00
DM
870 if (bucket)
871 ino = bucket - &ivector_table[0];
6a76267f 872
e18e2a00
DM
873 printk(KERN_CRIT "Unexpected IRQ from ino[%x] virt_irq[%u]\n",
874 ino, virt_irq);
1da177e4
LT
875}
876
1da177e4
LT
877void handler_irq(int irq, struct pt_regs *regs)
878{
e18e2a00 879 struct ino_bucket *bucket;
6d24c8dc 880 struct pt_regs *old_regs;
1da177e4 881
1da177e4 882 clear_softint(1 << irq);
1da177e4 883
6d24c8dc 884 old_regs = set_irq_regs(regs);
1da177e4 885 irq_enter();
1da177e4
LT
886
887 /* Sliiiick... */
e18e2a00
DM
888 bucket = __bucket(xchg32(irq_work(smp_processor_id()), 0));
889 while (bucket) {
890 struct ino_bucket *next = __bucket(bucket->irq_chain);
1da177e4 891
e18e2a00 892 bucket->irq_chain = 0;
6d24c8dc 893 __do_IRQ(bucket->virt_irq);
fd0504c3 894
e18e2a00 895 bucket = next;
1da177e4 896 }
e18e2a00 897
1da177e4 898 irq_exit();
6d24c8dc 899 set_irq_regs(old_regs);
1da177e4
LT
900}
901
e0204409
DM
902#ifdef CONFIG_HOTPLUG_CPU
903void fixup_irqs(void)
904{
905 unsigned int irq;
906
907 for (irq = 0; irq < NR_IRQS; irq++) {
908 unsigned long flags;
909
910 spin_lock_irqsave(&irq_desc[irq].lock, flags);
911 if (irq_desc[irq].action &&
912 !(irq_desc[irq].status & IRQ_PER_CPU)) {
913 if (irq_desc[irq].chip->set_affinity)
914 irq_desc[irq].chip->set_affinity(irq,
915 irq_desc[irq].affinity);
916 }
917 spin_unlock_irqrestore(&irq_desc[irq].lock, flags);
918 }
919}
920#endif
921
cdd5186f
DM
922struct sun5_timer {
923 u64 count0;
924 u64 limit0;
925 u64 count1;
926 u64 limit1;
927};
1da177e4 928
cdd5186f 929static struct sun5_timer *prom_timers;
1da177e4
LT
930static u64 prom_limit0, prom_limit1;
931
932static void map_prom_timers(void)
933{
25c7581b 934 struct device_node *dp;
6a23acf3 935 const unsigned int *addr;
1da177e4
LT
936
937 /* PROM timer node hangs out in the top level of device siblings... */
25c7581b
DM
938 dp = of_find_node_by_path("/");
939 dp = dp->child;
940 while (dp) {
941 if (!strcmp(dp->name, "counter-timer"))
942 break;
943 dp = dp->sibling;
944 }
1da177e4
LT
945
946 /* Assume if node is not present, PROM uses different tick mechanism
947 * which we should not care about.
948 */
25c7581b 949 if (!dp) {
1da177e4
LT
950 prom_timers = (struct sun5_timer *) 0;
951 return;
952 }
953
954 /* If PROM is really using this, it must be mapped by him. */
25c7581b
DM
955 addr = of_get_property(dp, "address", NULL);
956 if (!addr) {
1da177e4
LT
957 prom_printf("PROM does not have timer mapped, trying to continue.\n");
958 prom_timers = (struct sun5_timer *) 0;
959 return;
960 }
961 prom_timers = (struct sun5_timer *) ((unsigned long)addr[0]);
962}
963
964static void kill_prom_timer(void)
965{
966 if (!prom_timers)
967 return;
968
969 /* Save them away for later. */
970 prom_limit0 = prom_timers->limit0;
971 prom_limit1 = prom_timers->limit1;
972
973 /* Just as in sun4c/sun4m PROM uses timer which ticks at IRQ 14.
974 * We turn both off here just to be paranoid.
975 */
976 prom_timers->limit0 = 0;
977 prom_timers->limit1 = 0;
978
979 /* Wheee, eat the interrupt packet too... */
980 __asm__ __volatile__(
981" mov 0x40, %%g2\n"
982" ldxa [%%g0] %0, %%g1\n"
983" ldxa [%%g2] %1, %%g1\n"
984" stxa %%g0, [%%g0] %0\n"
985" membar #Sync\n"
986 : /* no outputs */
987 : "i" (ASI_INTR_RECEIVE), "i" (ASI_INTR_R)
988 : "g1", "g2");
989}
990
1da177e4
LT
991void init_irqwork_curcpu(void)
992{
1da177e4
LT
993 int cpu = hard_smp_processor_id();
994
fd0504c3 995 trap_block[cpu].irq_worklist = 0;
1da177e4
LT
996}
997
5cbc3073
DM
998/* Please be very careful with register_one_mondo() and
999 * sun4v_register_mondo_queues().
1000 *
1001 * On SMP this gets invoked from the CPU trampoline before
1002 * the cpu has fully taken over the trap table from OBP,
1003 * and it's kernel stack + %g6 thread register state is
1004 * not fully cooked yet.
1005 *
1006 * Therefore you cannot make any OBP calls, not even prom_printf,
1007 * from these two routines.
1008 */
1009static void __cpuinit register_one_mondo(unsigned long paddr, unsigned long type, unsigned long qmask)
ac29c11d 1010{
5cbc3073 1011 unsigned long num_entries = (qmask + 1) / 64;
94f8762d
DM
1012 unsigned long status;
1013
1014 status = sun4v_cpu_qconf(type, paddr, num_entries);
1015 if (status != HV_EOK) {
1016 prom_printf("SUN4V: sun4v_cpu_qconf(%lu:%lx:%lu) failed, "
1017 "err %lu\n", type, paddr, num_entries, status);
ac29c11d
DM
1018 prom_halt();
1019 }
1020}
1021
b434e719 1022void __cpuinit sun4v_register_mondo_queues(int this_cpu)
5b0c0572 1023{
b5a37e96
DM
1024 struct trap_per_cpu *tb = &trap_block[this_cpu];
1025
5cbc3073
DM
1026 register_one_mondo(tb->cpu_mondo_pa, HV_CPU_QUEUE_CPU_MONDO,
1027 tb->cpu_mondo_qmask);
1028 register_one_mondo(tb->dev_mondo_pa, HV_CPU_QUEUE_DEVICE_MONDO,
1029 tb->dev_mondo_qmask);
1030 register_one_mondo(tb->resum_mondo_pa, HV_CPU_QUEUE_RES_ERROR,
1031 tb->resum_qmask);
1032 register_one_mondo(tb->nonresum_mondo_pa, HV_CPU_QUEUE_NONRES_ERROR,
1033 tb->nonresum_qmask);
b5a37e96
DM
1034}
1035
b434e719 1036static void __init alloc_one_mondo(unsigned long *pa_ptr, unsigned long qmask)
b5a37e96 1037{
5cbc3073 1038 unsigned long size = PAGE_ALIGN(qmask + 1);
b434e719 1039 void *p = __alloc_bootmem_low(size, size, 0);
5cbc3073 1040 if (!p) {
b5a37e96
DM
1041 prom_printf("SUN4V: Error, cannot allocate mondo queue.\n");
1042 prom_halt();
1043 }
1044
5cbc3073 1045 *pa_ptr = __pa(p);
b5a37e96
DM
1046}
1047
b434e719 1048static void __init alloc_one_kbuf(unsigned long *pa_ptr, unsigned long qmask)
b5a37e96 1049{
5cbc3073 1050 unsigned long size = PAGE_ALIGN(qmask + 1);
b434e719 1051 void *p = __alloc_bootmem_low(size, size, 0);
5b0c0572 1052
5cbc3073 1053 if (!p) {
5b0c0572
DM
1054 prom_printf("SUN4V: Error, cannot allocate kbuf page.\n");
1055 prom_halt();
1056 }
1057
5cbc3073 1058 *pa_ptr = __pa(p);
5b0c0572
DM
1059}
1060
b434e719 1061static void __init init_cpu_send_mondo_info(struct trap_per_cpu *tb)
1d2f1f90
DM
1062{
1063#ifdef CONFIG_SMP
b5a37e96 1064 void *page;
1d2f1f90
DM
1065
1066 BUILD_BUG_ON((NR_CPUS * sizeof(u16)) > (PAGE_SIZE - 64));
1067
b434e719 1068 page = alloc_bootmem_low_pages(PAGE_SIZE);
1d2f1f90
DM
1069 if (!page) {
1070 prom_printf("SUN4V: Error, cannot allocate cpu mondo page.\n");
1071 prom_halt();
1072 }
1073
1074 tb->cpu_mondo_block_pa = __pa(page);
1075 tb->cpu_list_pa = __pa(page + 64);
1076#endif
1077}
1078
b434e719
DM
1079/* Allocate mondo and error queues for all possible cpus. */
1080static void __init sun4v_init_mondo_queues(void)
ac29c11d 1081{
b434e719 1082 int cpu;
ac29c11d 1083
b434e719
DM
1084 for_each_possible_cpu(cpu) {
1085 struct trap_per_cpu *tb = &trap_block[cpu];
1d2f1f90 1086
b434e719
DM
1087 alloc_one_mondo(&tb->cpu_mondo_pa, tb->cpu_mondo_qmask);
1088 alloc_one_mondo(&tb->dev_mondo_pa, tb->dev_mondo_qmask);
1089 alloc_one_mondo(&tb->resum_mondo_pa, tb->resum_qmask);
1090 alloc_one_kbuf(&tb->resum_kernel_buf_pa, tb->resum_qmask);
1091 alloc_one_mondo(&tb->nonresum_mondo_pa, tb->nonresum_qmask);
1092 alloc_one_kbuf(&tb->nonresum_kernel_buf_pa,
1093 tb->nonresum_qmask);
1d2f1f90 1094
b434e719 1095 init_cpu_send_mondo_info(tb);
72aff53f 1096 }
b434e719
DM
1097
1098 /* Load up the boot cpu's entries. */
1099 sun4v_register_mondo_queues(hard_smp_processor_id());
ac29c11d
DM
1100}
1101
e18e2a00
DM
1102static struct irqaction timer_irq_action = {
1103 .name = "timer",
1104};
1105
1da177e4
LT
1106/* Only invoked on boot processor. */
1107void __init init_IRQ(void)
1108{
1109 map_prom_timers();
1110 kill_prom_timer();
1111 memset(&ivector_table[0], 0, sizeof(ivector_table));
1112
ac29c11d 1113 if (tlb_type == hypervisor)
b434e719 1114 sun4v_init_mondo_queues();
ac29c11d 1115
1da177e4
LT
1116 /* We need to clear any IRQ's pending in the soft interrupt
1117 * registers, a spurious one could be left around from the
1118 * PROM timer which we just disabled.
1119 */
1120 clear_softint(get_softint());
1121
1122 /* Now that ivector table is initialized, it is safe
1123 * to receive IRQ vector traps. We will normally take
1124 * one or two right now, in case some device PROM used
1125 * to boot us wants to speak to us. We just ignore them.
1126 */
1127 __asm__ __volatile__("rdpr %%pstate, %%g1\n\t"
1128 "or %%g1, %0, %%g1\n\t"
1129 "wrpr %%g1, 0x0, %%pstate"
1130 : /* No outputs */
1131 : "i" (PSTATE_IE)
1132 : "g1");
1da177e4 1133
e18e2a00 1134 irq_desc[0].action = &timer_irq_action;
1da177e4 1135}
This page took 0.585604 seconds and 5 git commands to generate.