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