[SPARC64]: Allocate and register the 4 sun4v mondo queues at bootup.
[deliverable/linux.git] / arch / sparc64 / kernel / irq.c
CommitLineData
1da177e4
LT
1/* $Id: irq.c,v 1.114 2002/01/11 08:45:38 davem Exp $
2 * irq.c: UltraSparc IRQ handling/init/registry.
3 *
4 * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu)
5 * Copyright (C) 1998 Eddie C. Dost (ecd@skynet.be)
6 * Copyright (C) 1998 Jakub Jelinek (jj@ultra.linux.cz)
7 */
8
9#include <linux/config.h>
10#include <linux/module.h>
11#include <linux/sched.h>
12#include <linux/ptrace.h>
13#include <linux/errno.h>
14#include <linux/kernel_stat.h>
15#include <linux/signal.h>
16#include <linux/mm.h>
17#include <linux/interrupt.h>
18#include <linux/slab.h>
19#include <linux/random.h>
20#include <linux/init.h>
21#include <linux/delay.h>
22#include <linux/proc_fs.h>
23#include <linux/seq_file.h>
24
25#include <asm/ptrace.h>
26#include <asm/processor.h>
27#include <asm/atomic.h>
28#include <asm/system.h>
29#include <asm/irq.h>
2e457ef6 30#include <asm/io.h>
1da177e4
LT
31#include <asm/sbus.h>
32#include <asm/iommu.h>
33#include <asm/upa.h>
34#include <asm/oplib.h>
35#include <asm/timer.h>
36#include <asm/smp.h>
37#include <asm/starfire.h>
38#include <asm/uaccess.h>
39#include <asm/cache.h>
40#include <asm/cpudata.h>
63b61452 41#include <asm/auxio.h>
92704a1c 42#include <asm/head.h>
1da177e4
LT
43
44#ifdef CONFIG_SMP
45static void distribute_irqs(void);
46#endif
47
48/* UPA nodes send interrupt packet to UltraSparc with first data reg
49 * value low 5 (7 on Starfire) bits holding the IRQ identifier being
50 * delivered. We must translate this into a non-vector IRQ so we can
51 * set the softint on this cpu.
52 *
53 * To make processing these packets efficient and race free we use
54 * an array of irq buckets below. The interrupt vector handler in
55 * entry.S feeds incoming packets into per-cpu pil-indexed lists.
56 * The IVEC handler does not need to act atomically, the PIL dispatch
57 * code uses CAS to get an atomic snapshot of the list and clear it
58 * at the same time.
59 */
60
61struct ino_bucket ivector_table[NUM_IVECS] __attribute__ ((aligned (SMP_CACHE_BYTES)));
62
63/* This has to be in the main kernel image, it cannot be
64 * turned into per-cpu data. The reason is that the main
65 * kernel image is locked into the TLB and this structure
66 * is accessed from the vectored interrupt trap handler. If
67 * access to this structure takes a TLB miss it could cause
68 * the 5-level sparc v9 trap stack to overflow.
69 */
70struct irq_work_struct {
71 unsigned int irq_worklists[16];
72};
73struct irq_work_struct __irq_work[NR_CPUS];
74#define irq_work(__cpu, __pil) &(__irq_work[(__cpu)].irq_worklists[(__pil)])
75
088dd1f8 76static struct irqaction *irq_action[NR_IRQS+1];
1da177e4
LT
77
78/* This only synchronizes entities which modify IRQ handler
79 * state and some selected user-level spots that want to
80 * read things in the table. IRQ handler processing orders
81 * its' accesses such that no locking is needed.
82 */
83static DEFINE_SPINLOCK(irq_action_lock);
84
85static void register_irq_proc (unsigned int irq);
86
87/*
88 * Upper 2b of irqaction->flags holds the ino.
89 * irqaction->mask holds the smp affinity information.
90 */
91#define put_ino_in_irqaction(action, irq) \
92 action->flags &= 0xffffffffffffUL; \
93 if (__bucket(irq) == &pil0_dummy_bucket) \
94 action->flags |= 0xdeadUL << 48; \
95 else \
96 action->flags |= __irq_ino(irq) << 48;
97#define get_ino_in_irqaction(action) (action->flags >> 48)
98
99#define put_smpaff_in_irqaction(action, smpaff) (action)->mask = (smpaff)
100#define get_smpaff_in_irqaction(action) ((action)->mask)
101
102int show_interrupts(struct seq_file *p, void *v)
103{
104 unsigned long flags;
105 int i = *(loff_t *) v;
106 struct irqaction *action;
107#ifdef CONFIG_SMP
108 int j;
109#endif
110
111 spin_lock_irqsave(&irq_action_lock, flags);
112 if (i <= NR_IRQS) {
113 if (!(action = *(i + irq_action)))
114 goto out_unlock;
115 seq_printf(p, "%3d: ", i);
116#ifndef CONFIG_SMP
117 seq_printf(p, "%10u ", kstat_irqs(i));
118#else
119 for (j = 0; j < NR_CPUS; j++) {
120 if (!cpu_online(j))
121 continue;
122 seq_printf(p, "%10u ",
123 kstat_cpu(j).irqs[i]);
124 }
125#endif
126 seq_printf(p, " %s:%lx", action->name,
127 get_ino_in_irqaction(action));
128 for (action = action->next; action; action = action->next) {
129 seq_printf(p, ", %s:%lx", action->name,
130 get_ino_in_irqaction(action));
131 }
132 seq_putc(p, '\n');
133 }
134out_unlock:
135 spin_unlock_irqrestore(&irq_action_lock, flags);
136
137 return 0;
138}
139
140/* Now these are always passed a true fully specified sun4u INO. */
141void enable_irq(unsigned int irq)
142{
143 struct ino_bucket *bucket = __bucket(irq);
144 unsigned long imap;
145 unsigned long tid;
146
147 imap = bucket->imap;
148 if (imap == 0UL)
149 return;
150
151 preempt_disable();
152
153 if (tlb_type == cheetah || tlb_type == cheetah_plus) {
154 unsigned long ver;
155
156 __asm__ ("rdpr %%ver, %0" : "=r" (ver));
92704a1c
DM
157 if ((ver >> 32) == __JALAPENO_ID ||
158 (ver >> 32) == __SERRANO_ID) {
1da177e4
LT
159 /* We set it to our JBUS ID. */
160 __asm__ __volatile__("ldxa [%%g0] %1, %0"
161 : "=r" (tid)
162 : "i" (ASI_JBUS_CONFIG));
163 tid = ((tid & (0x1fUL<<17)) << 9);
164 tid &= IMAP_TID_JBUS;
165 } else {
166 /* We set it to our Safari AID. */
167 __asm__ __volatile__("ldxa [%%g0] %1, %0"
168 : "=r" (tid)
169 : "i" (ASI_SAFARI_CONFIG));
170 tid = ((tid & (0x3ffUL<<17)) << 9);
171 tid &= IMAP_AID_SAFARI;
172 }
173 } else if (this_is_starfire == 0) {
174 /* We set it to our UPA MID. */
175 __asm__ __volatile__("ldxa [%%g0] %1, %0"
176 : "=r" (tid)
177 : "i" (ASI_UPA_CONFIG));
178 tid = ((tid & UPA_CONFIG_MID) << 9);
179 tid &= IMAP_TID_UPA;
180 } else {
181 tid = (starfire_translate(imap, smp_processor_id()) << 26);
182 tid &= IMAP_TID_UPA;
183 }
184
185 /* NOTE NOTE NOTE, IGN and INO are read-only, IGN is a product
186 * of this SYSIO's preconfigured IGN in the SYSIO Control
187 * Register, the hardware just mirrors that value here.
188 * However for Graphics and UPA Slave devices the full
189 * IMAP_INR field can be set by the programmer here.
190 *
191 * Things like FFB can now be handled via the new IRQ mechanism.
192 */
193 upa_writel(tid | IMAP_VALID, imap);
194
195 preempt_enable();
196}
197
198/* This now gets passed true ino's as well. */
199void disable_irq(unsigned int irq)
200{
201 struct ino_bucket *bucket = __bucket(irq);
202 unsigned long imap;
203
204 imap = bucket->imap;
205 if (imap != 0UL) {
206 u32 tmp;
207
208 /* NOTE: We do not want to futz with the IRQ clear registers
209 * and move the state to IDLE, the SCSI code does call
210 * disable_irq() to assure atomicity in the queue cmd
211 * SCSI adapter driver code. Thus we'd lose interrupts.
212 */
213 tmp = upa_readl(imap);
214 tmp &= ~IMAP_VALID;
215 upa_writel(tmp, imap);
216 }
217}
218
219/* The timer is the one "weird" interrupt which is generated by
220 * the CPU %tick register and not by some normal vectored interrupt
221 * source. To handle this special case, we use this dummy INO bucket.
222 */
088dd1f8 223static struct irq_desc pil0_dummy_desc;
1da177e4 224static struct ino_bucket pil0_dummy_bucket = {
088dd1f8 225 .irq_info = &pil0_dummy_desc,
1da177e4
LT
226};
227
088dd1f8
DM
228static void build_irq_error(const char *msg, unsigned int ino, int pil, int inofixup,
229 unsigned long iclr, unsigned long imap,
230 struct ino_bucket *bucket)
231{
232 prom_printf("IRQ: INO %04x (%d:%016lx:%016lx) --> "
233 "(%d:%d:%016lx:%016lx), halting...\n",
234 ino, bucket->pil, bucket->iclr, bucket->imap,
235 pil, inofixup, iclr, imap);
236 prom_halt();
237}
238
1da177e4
LT
239unsigned int build_irq(int pil, int inofixup, unsigned long iclr, unsigned long imap)
240{
241 struct ino_bucket *bucket;
242 int ino;
243
244 if (pil == 0) {
245 if (iclr != 0UL || imap != 0UL) {
246 prom_printf("Invalid dummy bucket for PIL0 (%lx:%lx)\n",
247 iclr, imap);
248 prom_halt();
249 }
250 return __irq(&pil0_dummy_bucket);
251 }
252
253 /* RULE: Both must be specified in all other cases. */
254 if (iclr == 0UL || imap == 0UL) {
255 prom_printf("Invalid build_irq %d %d %016lx %016lx\n",
256 pil, inofixup, iclr, imap);
257 prom_halt();
258 }
259
260 ino = (upa_readl(imap) & (IMAP_IGN | IMAP_INO)) + inofixup;
261 if (ino > NUM_IVECS) {
262 prom_printf("Invalid INO %04x (%d:%d:%016lx:%016lx)\n",
263 ino, pil, inofixup, iclr, imap);
264 prom_halt();
265 }
266
1da177e4 267 bucket = &ivector_table[ino];
088dd1f8
DM
268 if (bucket->flags & IBF_ACTIVE)
269 build_irq_error("IRQ: Trying to build active INO bucket.\n",
270 ino, pil, inofixup, iclr, imap, bucket);
271
272 if (bucket->irq_info) {
273 if (bucket->imap != imap || bucket->iclr != iclr)
274 build_irq_error("IRQ: Trying to reinit INO bucket.\n",
275 ino, pil, inofixup, iclr, imap, bucket);
276
277 goto out;
278 }
279
280 bucket->irq_info = kmalloc(sizeof(struct irq_desc), GFP_ATOMIC);
281 if (!bucket->irq_info) {
282 prom_printf("IRQ: Error, kmalloc(irq_desc) failed.\n");
1da177e4
LT
283 prom_halt();
284 }
088dd1f8
DM
285 memset(bucket->irq_info, 0, sizeof(struct irq_desc));
286
287 /* Ok, looks good, set it up. Don't touch the irq_chain or
288 * the pending flag.
289 */
1da177e4
LT
290 bucket->imap = imap;
291 bucket->iclr = iclr;
292 bucket->pil = pil;
293 bucket->flags = 0;
294
088dd1f8 295out:
1da177e4
LT
296 return __irq(bucket);
297}
298
299static void atomic_bucket_insert(struct ino_bucket *bucket)
300{
301 unsigned long pstate;
302 unsigned int *ent;
303
304 __asm__ __volatile__("rdpr %%pstate, %0" : "=r" (pstate));
305 __asm__ __volatile__("wrpr %0, %1, %%pstate"
306 : : "r" (pstate), "i" (PSTATE_IE));
307 ent = irq_work(smp_processor_id(), bucket->pil);
308 bucket->irq_chain = *ent;
309 *ent = __irq(bucket);
310 __asm__ __volatile__("wrpr %0, 0x0, %%pstate" : : "r" (pstate));
311}
312
088dd1f8
DM
313static int check_irq_sharing(int pil, unsigned long irqflags)
314{
315 struct irqaction *action, *tmp;
316
317 action = *(irq_action + pil);
318 if (action) {
319 if ((action->flags & SA_SHIRQ) && (irqflags & SA_SHIRQ)) {
320 for (tmp = action; tmp->next; tmp = tmp->next)
321 ;
322 } else {
323 return -EBUSY;
324 }
325 }
326 return 0;
327}
328
329static void append_irq_action(int pil, struct irqaction *action)
330{
331 struct irqaction **pp = irq_action + pil;
332
333 while (*pp)
334 pp = &((*pp)->next);
335 *pp = action;
336}
337
338static struct irqaction *get_action_slot(struct ino_bucket *bucket)
339{
340 struct irq_desc *desc = bucket->irq_info;
341 int max_irq, i;
342
343 max_irq = 1;
344 if (bucket->flags & IBF_PCI)
345 max_irq = MAX_IRQ_DESC_ACTION;
346 for (i = 0; i < max_irq; i++) {
347 struct irqaction *p = &desc->action[i];
348 u32 mask = (1 << i);
349
350 if (desc->action_active_mask & mask)
351 continue;
352
353 desc->action_active_mask |= mask;
354 return p;
355 }
356 return NULL;
357}
358
1da177e4
LT
359int request_irq(unsigned int irq, irqreturn_t (*handler)(int, void *, struct pt_regs *),
360 unsigned long irqflags, const char *name, void *dev_id)
361{
088dd1f8 362 struct irqaction *action;
1da177e4
LT
363 struct ino_bucket *bucket = __bucket(irq);
364 unsigned long flags;
365 int pending = 0;
366
088dd1f8 367 if (unlikely(!handler))
1da177e4 368 return -EINVAL;
088dd1f8
DM
369
370 if (unlikely(!bucket->irq_info))
371 return -ENODEV;
1da177e4
LT
372
373 if ((bucket != &pil0_dummy_bucket) && (irqflags & SA_SAMPLE_RANDOM)) {
374 /*
375 * This function might sleep, we want to call it first,
376 * outside of the atomic block. In SA_STATIC_ALLOC case,
377 * random driver's kmalloc will fail, but it is safe.
378 * If already initialized, random driver will not reinit.
379 * Yes, this might clear the entropy pool if the wrong
380 * driver is attempted to be loaded, without actually
381 * installing a new handler, but is this really a problem,
382 * only the sysadmin is able to do this.
383 */
384 rand_initialize_irq(irq);
385 }
386
387 spin_lock_irqsave(&irq_action_lock, flags);
388
088dd1f8
DM
389 if (check_irq_sharing(bucket->pil, irqflags)) {
390 spin_unlock_irqrestore(&irq_action_lock, flags);
391 return -EBUSY;
1da177e4
LT
392 }
393
088dd1f8 394 action = get_action_slot(bucket);
1da177e4
LT
395 if (!action) {
396 spin_unlock_irqrestore(&irq_action_lock, flags);
397 return -ENOMEM;
398 }
399
088dd1f8
DM
400 bucket->flags |= IBF_ACTIVE;
401 pending = 0;
402 if (bucket != &pil0_dummy_bucket) {
1da177e4
LT
403 pending = bucket->pending;
404 if (pending)
405 bucket->pending = 0;
406 }
407
408 action->handler = handler;
409 action->flags = irqflags;
410 action->name = name;
411 action->next = NULL;
412 action->dev_id = dev_id;
413 put_ino_in_irqaction(action, irq);
414 put_smpaff_in_irqaction(action, CPU_MASK_NONE);
415
088dd1f8 416 append_irq_action(bucket->pil, action);
1da177e4
LT
417
418 enable_irq(irq);
419
420 /* We ate the IVEC already, this makes sure it does not get lost. */
421 if (pending) {
422 atomic_bucket_insert(bucket);
423 set_softint(1 << bucket->pil);
424 }
088dd1f8 425
1da177e4 426 spin_unlock_irqrestore(&irq_action_lock, flags);
088dd1f8
DM
427
428 if (bucket != &pil0_dummy_bucket)
1da177e4
LT
429 register_irq_proc(__irq_ino(irq));
430
431#ifdef CONFIG_SMP
432 distribute_irqs();
433#endif
434 return 0;
1da177e4
LT
435}
436
437EXPORT_SYMBOL(request_irq);
438
088dd1f8 439static struct irqaction *unlink_irq_action(unsigned int irq, void *dev_id)
1da177e4 440{
088dd1f8
DM
441 struct ino_bucket *bucket = __bucket(irq);
442 struct irqaction *action, **pp;
1da177e4 443
088dd1f8
DM
444 pp = irq_action + bucket->pil;
445 action = *pp;
446 if (unlikely(!action))
447 return NULL;
1da177e4 448
088dd1f8 449 if (unlikely(!action->handler)) {
1da177e4 450 printk("Freeing free IRQ %d\n", bucket->pil);
088dd1f8 451 return NULL;
1da177e4
LT
452 }
453
088dd1f8
DM
454 while (action && action->dev_id != dev_id) {
455 pp = &action->next;
456 action = *pp;
1da177e4
LT
457 }
458
088dd1f8
DM
459 if (likely(action))
460 *pp = action->next;
461
462 return action;
463}
464
465void free_irq(unsigned int irq, void *dev_id)
466{
467 struct irqaction *action;
468 struct ino_bucket *bucket;
469 unsigned long flags;
470
471 spin_lock_irqsave(&irq_action_lock, flags);
472
473 action = unlink_irq_action(irq, dev_id);
1da177e4
LT
474
475 spin_unlock_irqrestore(&irq_action_lock, flags);
476
088dd1f8
DM
477 if (unlikely(!action))
478 return;
479
1da177e4
LT
480 synchronize_irq(irq);
481
482 spin_lock_irqsave(&irq_action_lock, flags);
483
088dd1f8 484 bucket = __bucket(irq);
1da177e4 485 if (bucket != &pil0_dummy_bucket) {
088dd1f8 486 struct irq_desc *desc = bucket->irq_info;
1da177e4 487 unsigned long imap = bucket->imap;
088dd1f8 488 int ent, i;
1da177e4 489
088dd1f8
DM
490 for (i = 0; i < MAX_IRQ_DESC_ACTION; i++) {
491 struct irqaction *p = &desc->action[i];
492
493 if (p == action) {
494 desc->action_active_mask &= ~(1 << i);
495 break;
1da177e4 496 }
1da177e4
LT
497 }
498
088dd1f8
DM
499 if (!desc->action_active_mask) {
500 /* This unique interrupt source is now inactive. */
501 bucket->flags &= ~IBF_ACTIVE;
1da177e4 502
088dd1f8
DM
503 /* See if any other buckets share this bucket's IMAP
504 * and are still active.
505 */
506 for (ent = 0; ent < NUM_IVECS; ent++) {
507 struct ino_bucket *bp = &ivector_table[ent];
508 if (bp != bucket &&
509 bp->imap == imap &&
510 (bp->flags & IBF_ACTIVE) != 0)
511 break;
512 }
1da177e4 513
088dd1f8
DM
514 /* Only disable when no other sub-irq levels of
515 * the same IMAP are active.
516 */
517 if (ent == NUM_IVECS)
518 disable_irq(irq);
519 }
1da177e4
LT
520 }
521
1da177e4
LT
522 spin_unlock_irqrestore(&irq_action_lock, flags);
523}
524
525EXPORT_SYMBOL(free_irq);
526
527#ifdef CONFIG_SMP
528void synchronize_irq(unsigned int irq)
529{
530 struct ino_bucket *bucket = __bucket(irq);
531
532#if 0
533 /* The following is how I wish I could implement this.
534 * Unfortunately the ICLR registers are read-only, you can
535 * only write ICLR_foo values to them. To get the current
536 * IRQ status you would need to get at the IRQ diag registers
537 * in the PCI/SBUS controller and the layout of those vary
538 * from one controller to the next, sigh... -DaveM
539 */
540 unsigned long iclr = bucket->iclr;
541
542 while (1) {
543 u32 tmp = upa_readl(iclr);
544
545 if (tmp == ICLR_TRANSMIT ||
546 tmp == ICLR_PENDING) {
547 cpu_relax();
548 continue;
549 }
550 break;
551 }
552#else
553 /* So we have to do this with a INPROGRESS bit just like x86. */
554 while (bucket->flags & IBF_INPROGRESS)
555 cpu_relax();
556#endif
557}
558#endif /* CONFIG_SMP */
559
088dd1f8 560static void process_bucket(int irq, struct ino_bucket *bp, struct pt_regs *regs)
1da177e4 561{
088dd1f8
DM
562 struct irq_desc *desc = bp->irq_info;
563 unsigned char flags = bp->flags;
564 u32 action_mask, i;
565 int random;
1da177e4 566
088dd1f8 567 bp->flags |= IBF_INPROGRESS;
1da177e4 568
088dd1f8
DM
569 if (unlikely(!(flags & IBF_ACTIVE))) {
570 bp->pending = 1;
1da177e4 571 goto out;
1da177e4
LT
572 }
573
088dd1f8
DM
574 if (desc->pre_handler)
575 desc->pre_handler(bp,
576 desc->pre_handler_arg1,
577 desc->pre_handler_arg2);
1da177e4 578
088dd1f8
DM
579 action_mask = desc->action_active_mask;
580 random = 0;
581 for (i = 0; i < MAX_IRQ_DESC_ACTION; i++) {
582 struct irqaction *p = &desc->action[i];
583 u32 mask = (1 << i);
1da177e4 584
088dd1f8
DM
585 if (!(action_mask & mask))
586 continue;
1da177e4 587
088dd1f8 588 action_mask &= ~mask;
1da177e4 589
088dd1f8
DM
590 if (p->handler(__irq(bp), p->dev_id, regs) == IRQ_HANDLED)
591 random |= p->flags;
592
593 if (!action_mask)
594 break;
595 }
596 if (bp->pil != 0) {
597 upa_writel(ICLR_IDLE, bp->iclr);
598 /* Test and add entropy */
599 if (random & SA_SAMPLE_RANDOM)
600 add_interrupt_randomness(irq);
601 }
1da177e4 602out:
088dd1f8 603 bp->flags &= ~IBF_INPROGRESS;
1da177e4
LT
604}
605
1da177e4
LT
606void handler_irq(int irq, struct pt_regs *regs)
607{
088dd1f8 608 struct ino_bucket *bp;
1da177e4
LT
609 int cpu = smp_processor_id();
610
611#ifndef CONFIG_SMP
612 /*
613 * Check for TICK_INT on level 14 softint.
614 */
615 {
616 unsigned long clr_mask = 1 << irq;
617 unsigned long tick_mask = tick_ops->softint_mask;
618
619 if ((irq == 14) && (get_softint() & tick_mask)) {
620 irq = 0;
621 clr_mask = tick_mask;
622 }
623 clear_softint(clr_mask);
624 }
625#else
1da177e4
LT
626 clear_softint(1 << irq);
627#endif
628
629 irq_enter();
630 kstat_this_cpu.irqs[irq]++;
631
632 /* Sliiiick... */
633#ifndef CONFIG_SMP
634 bp = ((irq != 0) ?
635 __bucket(xchg32(irq_work(cpu, irq), 0)) :
636 &pil0_dummy_bucket);
637#else
638 bp = __bucket(xchg32(irq_work(cpu, irq), 0));
639#endif
088dd1f8
DM
640 while (bp) {
641 struct ino_bucket *nbp = __bucket(bp->irq_chain);
1da177e4 642
1da177e4 643 bp->irq_chain = 0;
088dd1f8
DM
644 process_bucket(irq, bp, regs);
645 bp = nbp;
1da177e4
LT
646 }
647 irq_exit();
648}
649
650#ifdef CONFIG_BLK_DEV_FD
63b61452 651extern irqreturn_t floppy_interrupt(int, void *, struct pt_regs *);;
1da177e4 652
63b61452
DM
653/* XXX No easy way to include asm/floppy.h XXX */
654extern unsigned char *pdma_vaddr;
655extern unsigned long pdma_size;
656extern volatile int doing_pdma;
657extern unsigned long fdc_status;
1da177e4 658
63b61452 659irqreturn_t sparc_floppy_irq(int irq, void *dev_cookie, struct pt_regs *regs)
1da177e4 660{
63b61452
DM
661 if (likely(doing_pdma)) {
662 void __iomem *stat = (void __iomem *) fdc_status;
663 unsigned char *vaddr = pdma_vaddr;
664 unsigned long size = pdma_size;
665 u8 val;
666
667 while (size) {
668 val = readb(stat);
669 if (unlikely(!(val & 0x80))) {
670 pdma_vaddr = vaddr;
671 pdma_size = size;
672 return IRQ_HANDLED;
673 }
674 if (unlikely(!(val & 0x20))) {
675 pdma_vaddr = vaddr;
676 pdma_size = size;
677 doing_pdma = 0;
678 goto main_interrupt;
679 }
680 if (val & 0x40) {
681 /* read */
682 *vaddr++ = readb(stat + 1);
683 } else {
684 unsigned char data = *vaddr++;
1da177e4 685
63b61452
DM
686 /* write */
687 writeb(data, stat + 1);
688 }
689 size--;
690 }
1da177e4 691
63b61452
DM
692 pdma_vaddr = vaddr;
693 pdma_size = size;
1da177e4 694
63b61452
DM
695 /* Send Terminal Count pulse to floppy controller. */
696 val = readb(auxio_register);
697 val |= AUXIO_AUX1_FTCNT;
698 writeb(val, auxio_register);
94bbc176 699 val &= ~AUXIO_AUX1_FTCNT;
63b61452 700 writeb(val, auxio_register);
1da177e4 701
63b61452 702 doing_pdma = 0;
1da177e4 703 }
1da177e4 704
63b61452
DM
705main_interrupt:
706 return floppy_interrupt(irq, dev_cookie, regs);
1da177e4 707}
63b61452
DM
708EXPORT_SYMBOL(sparc_floppy_irq);
709#endif
1da177e4
LT
710
711/* We really don't need these at all on the Sparc. We only have
712 * stubs here because they are exported to modules.
713 */
714unsigned long probe_irq_on(void)
715{
716 return 0;
717}
718
719EXPORT_SYMBOL(probe_irq_on);
720
721int probe_irq_off(unsigned long mask)
722{
723 return 0;
724}
725
726EXPORT_SYMBOL(probe_irq_off);
727
728#ifdef CONFIG_SMP
729static int retarget_one_irq(struct irqaction *p, int goal_cpu)
730{
731 struct ino_bucket *bucket = get_ino_in_irqaction(p) + ivector_table;
732 unsigned long imap = bucket->imap;
733 unsigned int tid;
734
735 while (!cpu_online(goal_cpu)) {
736 if (++goal_cpu >= NR_CPUS)
737 goal_cpu = 0;
738 }
739
740 if (tlb_type == cheetah || tlb_type == cheetah_plus) {
741 tid = goal_cpu << 26;
742 tid &= IMAP_AID_SAFARI;
743 } else if (this_is_starfire == 0) {
744 tid = goal_cpu << 26;
745 tid &= IMAP_TID_UPA;
746 } else {
747 tid = (starfire_translate(imap, goal_cpu) << 26);
748 tid &= IMAP_TID_UPA;
749 }
750 upa_writel(tid | IMAP_VALID, imap);
751
cee2824f 752 do {
1da177e4
LT
753 if (++goal_cpu >= NR_CPUS)
754 goal_cpu = 0;
cee2824f 755 } while (!cpu_online(goal_cpu));
1da177e4
LT
756
757 return goal_cpu;
758}
759
760/* Called from request_irq. */
761static void distribute_irqs(void)
762{
763 unsigned long flags;
764 int cpu, level;
765
766 spin_lock_irqsave(&irq_action_lock, flags);
767 cpu = 0;
768
769 /*
770 * Skip the timer at [0], and very rare error/power intrs at [15].
771 * Also level [12], it causes problems on Ex000 systems.
772 */
773 for (level = 1; level < NR_IRQS; level++) {
774 struct irqaction *p = irq_action[level];
088dd1f8
DM
775
776 if (level == 12)
777 continue;
778
1da177e4
LT
779 while(p) {
780 cpu = retarget_one_irq(p, cpu);
781 p = p->next;
782 }
783 }
784 spin_unlock_irqrestore(&irq_action_lock, flags);
785}
786#endif
787
cdd5186f
DM
788struct sun5_timer {
789 u64 count0;
790 u64 limit0;
791 u64 count1;
792 u64 limit1;
793};
1da177e4 794
cdd5186f 795static struct sun5_timer *prom_timers;
1da177e4
LT
796static u64 prom_limit0, prom_limit1;
797
798static void map_prom_timers(void)
799{
800 unsigned int addr[3];
801 int tnode, err;
802
803 /* PROM timer node hangs out in the top level of device siblings... */
804 tnode = prom_finddevice("/counter-timer");
805
806 /* Assume if node is not present, PROM uses different tick mechanism
807 * which we should not care about.
808 */
809 if (tnode == 0 || tnode == -1) {
810 prom_timers = (struct sun5_timer *) 0;
811 return;
812 }
813
814 /* If PROM is really using this, it must be mapped by him. */
815 err = prom_getproperty(tnode, "address", (char *)addr, sizeof(addr));
816 if (err == -1) {
817 prom_printf("PROM does not have timer mapped, trying to continue.\n");
818 prom_timers = (struct sun5_timer *) 0;
819 return;
820 }
821 prom_timers = (struct sun5_timer *) ((unsigned long)addr[0]);
822}
823
824static void kill_prom_timer(void)
825{
826 if (!prom_timers)
827 return;
828
829 /* Save them away for later. */
830 prom_limit0 = prom_timers->limit0;
831 prom_limit1 = prom_timers->limit1;
832
833 /* Just as in sun4c/sun4m PROM uses timer which ticks at IRQ 14.
834 * We turn both off here just to be paranoid.
835 */
836 prom_timers->limit0 = 0;
837 prom_timers->limit1 = 0;
838
839 /* Wheee, eat the interrupt packet too... */
840 __asm__ __volatile__(
841" mov 0x40, %%g2\n"
842" ldxa [%%g0] %0, %%g1\n"
843" ldxa [%%g2] %1, %%g1\n"
844" stxa %%g0, [%%g0] %0\n"
845" membar #Sync\n"
846 : /* no outputs */
847 : "i" (ASI_INTR_RECEIVE), "i" (ASI_INTR_R)
848 : "g1", "g2");
849}
850
1da177e4
LT
851void init_irqwork_curcpu(void)
852{
1da177e4
LT
853 int cpu = hard_smp_processor_id();
854
56fb4df6 855 memset(__irq_work + cpu, 0, sizeof(struct irq_work_struct));
1da177e4
LT
856}
857
ac29c11d
DM
858static void __cpuinit init_one_mondo(unsigned long *pa_ptr, unsigned long type)
859{
860 register unsigned long func __asm__("%o0");
861 register unsigned long arg0 __asm__("%o1");
862 register unsigned long arg1 __asm__("%o2");
863 register unsigned long arg2 __asm__("%o3");
864 unsigned long page = get_zeroed_page(GFP_ATOMIC);
865
866 if (!page) {
867 prom_printf("SUN4V: Error, cannot allocate mondo queue.\n");
868 prom_halt();
869 }
870
871 *pa_ptr = __pa(page);
872
873 func = HV_FAST_CPU_QCONF;
874 arg0 = type;
875 arg1 = *pa_ptr;
876 arg2 = 128; /* XXX Implied by Niagara queue offsets. XXX */
877 __asm__ __volatile__("ta %8"
878 : "=&r" (func), "=&r" (arg0),
879 "=&r" (arg1), "=&r" (arg2)
880 : "0" (func), "1" (arg0),
881 "2" (arg1), "3" (arg2),
882 "i" (HV_FAST_TRAP));
883
884 if (func != HV_EOK) {
885 prom_printf("SUN4V: cpu_qconf(%lu) failed with error %lu\n",
886 type, func);
887 prom_halt();
888 }
889}
890
891/* Allocate and init the mondo queues for this cpu. */
892void __cpuinit sun4v_init_mondo_queues(void)
893{
894 int cpu = hard_smp_processor_id();
895 struct trap_per_cpu *tb = &trap_block[cpu];
896
897 init_one_mondo(&tb->cpu_mondo_pa, HV_CPU_QUEUE_CPU_MONDO);
898 init_one_mondo(&tb->dev_mondo_pa, HV_CPU_QUEUE_DEVICE_MONDO);
899 init_one_mondo(&tb->resum_mondo_pa, HV_CPU_QUEUE_RES_ERROR);
900 init_one_mondo(&tb->nonresum_mondo_pa, HV_CPU_QUEUE_NONRES_ERROR);
901}
902
1da177e4
LT
903/* Only invoked on boot processor. */
904void __init init_IRQ(void)
905{
906 map_prom_timers();
907 kill_prom_timer();
908 memset(&ivector_table[0], 0, sizeof(ivector_table));
909
ac29c11d
DM
910 if (tlb_type == hypervisor)
911 sun4v_init_mondo_queues();
912
1da177e4
LT
913 /* We need to clear any IRQ's pending in the soft interrupt
914 * registers, a spurious one could be left around from the
915 * PROM timer which we just disabled.
916 */
917 clear_softint(get_softint());
918
919 /* Now that ivector table is initialized, it is safe
920 * to receive IRQ vector traps. We will normally take
921 * one or two right now, in case some device PROM used
922 * to boot us wants to speak to us. We just ignore them.
923 */
924 __asm__ __volatile__("rdpr %%pstate, %%g1\n\t"
925 "or %%g1, %0, %%g1\n\t"
926 "wrpr %%g1, 0x0, %%pstate"
927 : /* No outputs */
928 : "i" (PSTATE_IE)
929 : "g1");
930}
931
932static struct proc_dir_entry * root_irq_dir;
933static struct proc_dir_entry * irq_dir [NUM_IVECS];
934
935#ifdef CONFIG_SMP
936
937static int irq_affinity_read_proc (char *page, char **start, off_t off,
938 int count, int *eof, void *data)
939{
940 struct ino_bucket *bp = ivector_table + (long)data;
12cf649f
ED
941 struct irq_desc *desc = bp->irq_info;
942 struct irqaction *ap = desc->action;
1da177e4
LT
943 cpumask_t mask;
944 int len;
945
946 mask = get_smpaff_in_irqaction(ap);
947 if (cpus_empty(mask))
948 mask = cpu_online_map;
949
950 len = cpumask_scnprintf(page, count, mask);
951 if (count - len < 2)
952 return -EINVAL;
953 len += sprintf(page + len, "\n");
954 return len;
955}
956
957static inline void set_intr_affinity(int irq, cpumask_t hw_aff)
958{
959 struct ino_bucket *bp = ivector_table + irq;
12cf649f
ED
960 struct irq_desc *desc = bp->irq_info;
961 struct irqaction *ap = desc->action;
1da177e4
LT
962
963 /* Users specify affinity in terms of hw cpu ids.
964 * As soon as we do this, handler_irq() might see and take action.
965 */
12cf649f 966 put_smpaff_in_irqaction(ap, hw_aff);
1da177e4
LT
967
968 /* Migration is simply done by the next cpu to service this
969 * interrupt.
970 */
971}
972
973static int irq_affinity_write_proc (struct file *file, const char __user *buffer,
974 unsigned long count, void *data)
975{
976 int irq = (long) data, full_count = count, err;
977 cpumask_t new_value;
978
979 err = cpumask_parse(buffer, count, new_value);
980
981 /*
982 * Do not allow disabling IRQs completely - it's a too easy
983 * way to make the system unusable accidentally :-) At least
984 * one online CPU still has to be targeted.
985 */
986 cpus_and(new_value, new_value, cpu_online_map);
987 if (cpus_empty(new_value))
988 return -EINVAL;
989
990 set_intr_affinity(irq, new_value);
991
992 return full_count;
993}
994
995#endif
996
997#define MAX_NAMELEN 10
998
999static void register_irq_proc (unsigned int irq)
1000{
1001 char name [MAX_NAMELEN];
1002
1003 if (!root_irq_dir || irq_dir[irq])
1004 return;
1005
1006 memset(name, 0, MAX_NAMELEN);
1007 sprintf(name, "%x", irq);
1008
1009 /* create /proc/irq/1234 */
1010 irq_dir[irq] = proc_mkdir(name, root_irq_dir);
1011
1012#ifdef CONFIG_SMP
1013 /* XXX SMP affinity not supported on starfire yet. */
1014 if (this_is_starfire == 0) {
1015 struct proc_dir_entry *entry;
1016
1017 /* create /proc/irq/1234/smp_affinity */
1018 entry = create_proc_entry("smp_affinity", 0600, irq_dir[irq]);
1019
1020 if (entry) {
1021 entry->nlink = 1;
1022 entry->data = (void *)(long)irq;
1023 entry->read_proc = irq_affinity_read_proc;
1024 entry->write_proc = irq_affinity_write_proc;
1025 }
1026 }
1027#endif
1028}
1029
1030void init_irq_proc (void)
1031{
1032 /* create /proc/irq */
1033 root_irq_dir = proc_mkdir("irq", NULL);
1034}
1035
This page took 0.522676 seconds and 5 git commands to generate.