115b5c826f43aea48bbcb1ee77f4d20f1aeeb824
[linux-flexiantxendom0-3.2.10.git] / arch / mips / kernel / irq.c
1 /*
2  * This file is subject to the terms and conditions of the GNU General Public
3  * License.  See the file "COPYING" in the main directory of this archive
4  * for more details.
5  *
6  * Code to handle x86 style IRQs plus some generic interrupt stuff.
7  *
8  * Copyright (C) 1992 Linus Torvalds
9  * Copyright (C) 1994 - 2000 Ralf Baechle
10  */
11 #include <linux/config.h>
12 #include <linux/kernel.h>
13 #include <linux/delay.h>
14 #include <linux/init.h>
15 #include <linux/interrupt.h>
16 #include <linux/kernel_stat.h>
17 #include <linux/module.h>
18 #include <linux/proc_fs.h>
19 #include <linux/slab.h>
20 #include <linux/mm.h>
21 #include <linux/random.h>
22 #include <linux/sched.h>
23 #include <linux/seq_file.h>
24 #include <linux/kallsyms.h>
25
26 #include <asm/atomic.h>
27 #include <asm/system.h>
28 #include <asm/uaccess.h>
29
30 /*
31  * Controller mappings for all interrupt sources:
32  */
33 irq_desc_t irq_desc[NR_IRQS] __cacheline_aligned = {
34         [0 ... NR_IRQS-1] = {
35                 .handler = &no_irq_type,
36                 .lock = SPIN_LOCK_UNLOCKED
37         }
38 };
39
40 static void register_irq_proc (unsigned int irq);
41
42 /*
43  * Special irq handlers.
44  */
45
46 irqreturn_t no_action(int cpl, void *dev_id, struct pt_regs *regs)
47 { return IRQ_NONE; }
48
49 /*
50  * Generic no controller code
51  */
52
53 static void enable_none(unsigned int irq) { }
54 static unsigned int startup_none(unsigned int irq) { return 0; }
55 static void disable_none(unsigned int irq) { }
56 static void ack_none(unsigned int irq)
57 {
58         /*
59          * 'what should we do if we get a hw irq event on an illegal vector'.
60          * each architecture has to answer this themselves, it doesn't deserve
61          * a generic callback i think.
62          */
63         printk("unexpected interrupt %d\n", irq);
64 }
65
66 /* startup is the same as "enable", shutdown is same as "disable" */
67 #define shutdown_none   disable_none
68 #define end_none        enable_none
69
70 struct hw_interrupt_type no_irq_type = {
71         "none",
72         startup_none,
73         shutdown_none,
74         enable_none,
75         disable_none,
76         ack_none,
77         end_none
78 };
79
80 atomic_t irq_err_count;
81
82 /*
83  * Generic, controller-independent functions:
84  */
85
86 int show_interrupts(struct seq_file *p, void *v)
87 {
88         int i = *(loff_t *) v, j;
89         struct irqaction * action;
90         unsigned long flags;
91
92         if (i == 0) {
93                 seq_printf(p, "           ");
94                 for (j=0; j<NR_CPUS; j++)
95                         if (cpu_online(j))
96                                 seq_printf(p, "CPU%d       ",j);
97                 seq_putc(p, '\n');
98         }
99
100         if (i < NR_IRQS) {
101                 spin_lock_irqsave(&irq_desc[i].lock, flags);
102                 action = irq_desc[i].action;
103                 if (!action) 
104                         goto skip;
105                 seq_printf(p, "%3d: ",i);
106 #ifndef CONFIG_SMP
107                 seq_printf(p, "%10u ", kstat_irqs(i));
108 #else
109                 for (j = 0; j < NR_CPUS; j++)
110                         if (cpu_online(j))
111                                 seq_printf(p, "%10u ", kstat_cpu(j).irqs[i]);
112 #endif
113                 seq_printf(p, " %14s", irq_desc[i].handler->typename);
114                 seq_printf(p, "  %s", action->name);
115
116                 for (action=action->next; action; action = action->next)
117                         seq_printf(p, ", %s", action->name);
118
119                 seq_putc(p, '\n');
120 skip:
121                 spin_unlock_irqrestore(&irq_desc[i].lock, flags);
122         } else if (i == NR_IRQS) {
123                 seq_putc(p, '\n');
124                 seq_printf(p, "ERR: %10u\n", atomic_read(&irq_err_count));
125         }
126         return 0;
127 }
128
129 #ifdef CONFIG_SMP
130 inline void synchronize_irq(unsigned int irq)
131 {
132         while (irq_desc[irq].status & IRQ_INPROGRESS)
133                 cpu_relax();
134 }
135 #endif
136
137 /*
138  * This should really return information about whether
139  * we should do bottom half handling etc. Right now we
140  * end up _always_ checking the bottom half, which is a
141  * waste of time and is not what some drivers would
142  * prefer.
143  */
144 int handle_IRQ_event(unsigned int irq, struct pt_regs * regs, struct irqaction * action)
145 {
146         int status = 1; /* Force the "do bottom halves" bit */
147         int retval = 0;
148
149         if (!(action->flags & SA_INTERRUPT))
150                 local_irq_enable();
151
152         do {
153                 status |= action->flags;
154                 retval |= action->handler(irq, action->dev_id, regs);
155                 action = action->next;
156         } while (action);
157         if (status & SA_SAMPLE_RANDOM)
158                 add_interrupt_randomness(irq);
159         local_irq_disable();
160
161         return retval;
162 }
163
164 static void __report_bad_irq(int irq, irq_desc_t *desc, irqreturn_t action_ret)
165 {
166         struct irqaction *action;
167
168         if (action_ret != IRQ_HANDLED && action_ret != IRQ_NONE) {
169                 printk(KERN_ERR "irq event %d: bogus return value %x\n",
170                                 irq, action_ret);
171         } else {
172                 printk(KERN_ERR "irq %d: nobody cared!\n", irq);
173         }
174         dump_stack();
175         printk(KERN_ERR "handlers:\n");
176         action = desc->action;
177         do {
178                 printk(KERN_ERR "[<%p>]", action->handler);
179                 print_symbol(" (%s)",
180                         (unsigned long)action->handler);
181                 printk("\n");
182                 action = action->next;
183         } while (action);
184 }
185
186 static void report_bad_irq(int irq, irq_desc_t *desc, irqreturn_t action_ret)
187 {
188         static int count = 100;
189
190         if (count) {
191                 count--;
192                 __report_bad_irq(irq, desc, action_ret);
193         }
194 }
195
196 static int noirqdebug;
197
198 static int __init noirqdebug_setup(char *str)
199 {
200         noirqdebug = 1;
201         printk("IRQ lockup detection disabled\n");
202         return 1;
203 }
204
205 __setup("noirqdebug", noirqdebug_setup);
206
207 /*
208  * If 99,900 of the previous 100,000 interrupts have not been handled then
209  * assume that the IRQ is stuck in some manner.  Drop a diagnostic and try to
210  * turn the IRQ off.
211  *
212  * (The other 100-of-100,000 interrupts may have been a correctly-functioning
213  *  device sharing an IRQ with the failing one)
214  *
215  * Called under desc->lock
216  */
217 static void note_interrupt(int irq, irq_desc_t *desc, irqreturn_t action_ret)
218 {
219         if (action_ret != IRQ_HANDLED) {
220                 desc->irqs_unhandled++;
221                 if (action_ret != IRQ_NONE)
222                         report_bad_irq(irq, desc, action_ret);
223         }
224
225         desc->irq_count++;
226         if (desc->irq_count < 100000)
227                 return;
228
229         desc->irq_count = 0;
230         if (desc->irqs_unhandled > 99900) {
231                 /*
232                  * The interrupt is stuck
233                  */
234                 __report_bad_irq(irq, desc, action_ret);
235                 /*
236                  * Now kill the IRQ
237                  */
238                 printk(KERN_EMERG "Disabling IRQ #%d\n", irq);
239                 desc->status |= IRQ_DISABLED;
240                 desc->handler->disable(irq);
241         }
242         desc->irqs_unhandled = 0;
243 }
244
245 /*
246  * Generic enable/disable code: this just calls
247  * down into the PIC-specific version for the actual
248  * hardware disable after having gotten the irq
249  * controller lock.
250  */
251
252 /**
253  *      disable_irq_nosync - disable an irq without waiting
254  *      @irq: Interrupt to disable
255  *
256  *      Disable the selected interrupt line. Disables of an interrupt
257  *      stack. Unlike disable_irq(), this function does not ensure existing
258  *      instances of the IRQ handler have completed before returning.
259  *
260  *      This function may be called from IRQ context.
261  */
262
263 void inline disable_irq_nosync(unsigned int irq)
264 {
265         irq_desc_t *desc = irq_desc + irq;
266         unsigned long flags;
267
268         spin_lock_irqsave(&desc->lock, flags);
269         if (!desc->depth++) {
270                 desc->status |= IRQ_DISABLED;
271                 desc->handler->disable(irq);
272         }
273         spin_unlock_irqrestore(&desc->lock, flags);
274 }
275
276 /**
277  *      disable_irq - disable an irq and wait for completion
278  *      @irq: Interrupt to disable
279  *
280  *      Disable the selected interrupt line. Disables of an interrupt
281  *      stack. That is for two disables you need two enables. This
282  *      function waits for any pending IRQ handlers for this interrupt
283  *      to complete before returning. If you use this function while
284  *      holding a resource the IRQ handler may need you will deadlock.
285  *
286  *      This function may be called - with care - from IRQ context.
287  */
288
289 void disable_irq(unsigned int irq)
290 {
291         disable_irq_nosync(irq);
292         synchronize_irq(irq);
293 }
294
295 /**
296  *      enable_irq - enable interrupt handling on an irq
297  *      @irq: Interrupt to enable
298  *
299  *      Re-enables the processing of interrupts on this IRQ line
300  *      providing no disable_irq calls are now in effect.
301  *
302  *      This function may be called from IRQ context.
303  */
304
305 void enable_irq(unsigned int irq)
306 {
307         irq_desc_t *desc = irq_desc + irq;
308         unsigned long flags;
309
310         spin_lock_irqsave(&desc->lock, flags);
311         switch (desc->depth) {
312         case 1: {
313                 unsigned int status = desc->status & ~IRQ_DISABLED;
314                 desc->status = status;
315                 if ((status & (IRQ_PENDING | IRQ_REPLAY)) == IRQ_PENDING) {
316                         desc->status = status | IRQ_REPLAY;
317                         hw_resend_irq(desc->handler,irq);
318                 }
319                 desc->handler->enable(irq);
320                 /* fall-through */
321         }
322         default:
323                 desc->depth--;
324                 break;
325         case 0:
326                 printk("enable_irq(%u) unbalanced from %p\n", irq,
327                        __builtin_return_address(0));
328         }
329         spin_unlock_irqrestore(&desc->lock, flags);
330 }
331
332 /*
333  * do_IRQ handles all normal device IRQ's (the special
334  * SMP cross-CPU interrupts have their own specific
335  * handlers).
336  */
337 asmlinkage unsigned int do_IRQ(int irq, struct pt_regs *regs)
338 {
339         /*
340          * We ack quickly, we don't want the irq controller
341          * thinking we're snobs just because some other CPU has
342          * disabled global interrupts (we have already done the
343          * INT_ACK cycles, it's too late to try to pretend to the
344          * controller that we aren't taking the interrupt).
345          *
346          * 0 return value means that this irq is already being
347          * handled by some other CPU. (or is disabled)
348          */
349         irq_desc_t *desc = irq_desc + irq;
350         struct irqaction * action;
351         unsigned int status;
352
353         irq_enter();
354         kstat_this_cpu.irqs[irq]++;
355         spin_lock(&desc->lock);
356         desc->handler->ack(irq);
357         /*
358            REPLAY is when Linux resends an IRQ that was dropped earlier
359            WAITING is used by probe to mark irqs that are being tested
360            */
361         status = desc->status & ~(IRQ_REPLAY | IRQ_WAITING);
362         status |= IRQ_PENDING; /* we _want_ to handle it */
363
364         /*
365          * If the IRQ is disabled for whatever reason, we cannot
366          * use the action we have.
367          */
368         action = NULL;
369         if (likely(!(status & (IRQ_DISABLED | IRQ_INPROGRESS)))) {
370                 action = desc->action;
371                 status &= ~IRQ_PENDING; /* we commit to handling */
372                 status |= IRQ_INPROGRESS; /* we are handling it */
373         }
374         desc->status = status;
375
376         /*
377          * If there is no IRQ handler or it was disabled, exit early.
378            Since we set PENDING, if another processor is handling
379            a different instance of this same irq, the other processor
380            will take care of it.
381          */
382         if (unlikely(!action))
383                 goto out;
384
385         /*
386          * Edge triggered interrupts need to remember
387          * pending events.
388          * This applies to any hw interrupts that allow a second
389          * instance of the same irq to arrive while we are in do_IRQ
390          * or in the handler. But the code here only handles the _second_
391          * instance of the irq, not the third or fourth. So it is mostly
392          * useful for irq hardware that does not mask cleanly in an
393          * SMP environment.
394          */
395         for (;;) {
396                 irqreturn_t action_ret;
397
398                 spin_unlock(&desc->lock);
399                 action_ret = handle_IRQ_event(irq, regs, action);
400                 spin_lock(&desc->lock);
401                 if (!noirqdebug)
402                         note_interrupt(irq, desc, action_ret);
403                 if (likely(!(desc->status & IRQ_PENDING)))
404                         break;
405                 desc->status &= ~IRQ_PENDING;
406         }
407         desc->status &= ~IRQ_INPROGRESS;
408
409 out:
410         /*
411          * The ->end() handler has to deal with interrupts which got
412          * disabled while the handler was running.
413          */
414         desc->handler->end(irq);
415         spin_unlock(&desc->lock);
416
417         irq_exit();
418
419         return 1;
420 }
421
422 /**
423  *      request_irq - allocate an interrupt line
424  *      @irq: Interrupt line to allocate
425  *      @handler: Function to be called when the IRQ occurs
426  *      @irqflags: Interrupt type flags
427  *      @devname: An ascii name for the claiming device
428  *      @dev_id: A cookie passed back to the handler function
429  *
430  *      This call allocates interrupt resources and enables the
431  *      interrupt line and IRQ handling. From the point this
432  *      call is made your handler function may be invoked. Since
433  *      your handler function must clear any interrupt the board
434  *      raises, you must take care both to initialise your hardware
435  *      and to set up the interrupt handler in the right order.
436  *
437  *      Dev_id must be globally unique. Normally the address of the
438  *      device data structure is used as the cookie. Since the handler
439  *      receives this value it makes sense to use it.
440  *
441  *      If your interrupt is shared you must pass a non NULL dev_id
442  *      as this is required when freeing the interrupt.
443  *
444  *      Flags:
445  *
446  *      SA_SHIRQ                Interrupt is shared
447  *
448  *      SA_INTERRUPT            Disable local interrupts while processing
449  *
450  *      SA_SAMPLE_RANDOM        The interrupt can be used for entropy
451  *
452  */
453
454 int request_irq(unsigned int irq,
455                 irqreturn_t (*handler)(int, void *, struct pt_regs *),
456                 unsigned long irqflags,
457                 const char * devname,
458                 void *dev_id)
459 {
460         int retval;
461         struct irqaction * action;
462
463 #if 1
464         /*
465          * Sanity-check: shared interrupts should REALLY pass in
466          * a real dev-ID, otherwise we'll have trouble later trying
467          * to figure out which interrupt is which (messes up the
468          * interrupt freeing logic etc).
469          */
470         if (irqflags & SA_SHIRQ) {
471                 if (!dev_id)
472                         printk("Bad boy: %s (at 0x%x) called us without a dev_id!\n", devname, (&irq)[-1]);
473         }
474 #endif
475
476         if (irq >= NR_IRQS)
477                 return -EINVAL;
478         if (!handler)
479                 return -EINVAL;
480
481         action = (struct irqaction *)
482                         kmalloc(sizeof(struct irqaction), GFP_ATOMIC);
483         if (!action)
484                 return -ENOMEM;
485
486         action->handler = handler;
487         action->flags = irqflags;
488         action->mask = 0;
489         action->name = devname;
490         action->next = NULL;
491         action->dev_id = dev_id;
492
493         retval = setup_irq(irq, action);
494         if (retval)
495                 kfree(action);
496         return retval;
497 }
498
499 EXPORT_SYMBOL(request_irq);
500
501 /**
502  *      free_irq - free an interrupt
503  *      @irq: Interrupt line to free
504  *      @dev_id: Device identity to free
505  *
506  *      Remove an interrupt handler. The handler is removed and if the
507  *      interrupt line is no longer in use by any driver it is disabled.
508  *      On a shared IRQ the caller must ensure the interrupt is disabled
509  *      on the card it drives before calling this function. The function
510  *      does not return until any executing interrupts for this IRQ
511  *      have completed.
512  *
513  *      This function must not be called from interrupt context.
514  */
515
516 void free_irq(unsigned int irq, void *dev_id)
517 {
518         irq_desc_t *desc;
519         struct irqaction **p;
520         unsigned long flags;
521
522         if (irq >= NR_IRQS)
523                 return;
524
525         desc = irq_desc + irq;
526         spin_lock_irqsave(&desc->lock,flags);
527         p = &desc->action;
528         for (;;) {
529                 struct irqaction * action = *p;
530                 if (action) {
531                         struct irqaction **pp = p;
532                         p = &action->next;
533                         if (action->dev_id != dev_id)
534                                 continue;
535
536                         /* Found it - now remove it from the list of entries */
537                         *pp = action->next;
538                         if (!desc->action) {
539                                 desc->status |= IRQ_DISABLED;
540                                 desc->handler->shutdown(irq);
541                         }
542                         spin_unlock_irqrestore(&desc->lock,flags);
543
544                         /* Wait to make sure it's not being used on another CPU */
545                         synchronize_irq(irq);
546                         kfree(action);
547                         return;
548                 }
549                 printk("Trying to free free IRQ%d\n",irq);
550                 spin_unlock_irqrestore(&desc->lock,flags);
551                 return;
552         }
553 }
554
555 EXPORT_SYMBOL(free_irq);
556
557 /*
558  * IRQ autodetection code..
559  *
560  * This depends on the fact that any interrupt that
561  * comes in on to an unassigned handler will get stuck
562  * with "IRQ_WAITING" cleared and the interrupt
563  * disabled.
564  */
565
566 static DECLARE_MUTEX(probe_sem);
567
568 /**
569  *      probe_irq_on    - begin an interrupt autodetect
570  *
571  *      Commence probing for an interrupt. The interrupts are scanned
572  *      and a mask of potential interrupt lines is returned.
573  *
574  */
575
576 unsigned long probe_irq_on(void)
577 {
578         unsigned int i;
579         irq_desc_t *desc;
580         unsigned long val;
581         unsigned long delay;
582
583         down(&probe_sem);
584         /*
585          * something may have generated an irq long ago and we want to
586          * flush such a longstanding irq before considering it as spurious.
587          */
588         for (i = NR_IRQS-1; i > 0; i--)  {
589                 desc = irq_desc + i;
590
591                 spin_lock_irq(&desc->lock);
592                 if (!irq_desc[i].action)
593                         irq_desc[i].handler->startup(i);
594                 spin_unlock_irq(&desc->lock);
595         }
596
597         /* Wait for longstanding interrupts to trigger. */
598         for (delay = jiffies + HZ/50; time_after(delay, jiffies); )
599                 /* about 20ms delay */ barrier();
600
601         /*
602          * enable any unassigned irqs
603          * (we must startup again here because if a longstanding irq
604          * happened in the previous stage, it may have masked itself)
605          */
606         for (i = NR_IRQS-1; i > 0; i--) {
607                 desc = irq_desc + i;
608
609                 spin_lock_irq(&desc->lock);
610                 if (!desc->action) {
611                         desc->status |= IRQ_AUTODETECT | IRQ_WAITING;
612                         if (desc->handler->startup(i))
613                                 desc->status |= IRQ_PENDING;
614                 }
615                 spin_unlock_irq(&desc->lock);
616         }
617
618         /*
619          * Wait for spurious interrupts to trigger
620          */
621         for (delay = jiffies + HZ/10; time_after(delay, jiffies); )
622                 /* about 100ms delay */ barrier();
623
624         /*
625          * Now filter out any obviously spurious interrupts
626          */
627         val = 0;
628         for (i = 0; i < NR_IRQS; i++) {
629                 irq_desc_t *desc = irq_desc + i;
630                 unsigned int status;
631
632                 spin_lock_irq(&desc->lock);
633                 status = desc->status;
634
635                 if (status & IRQ_AUTODETECT) {
636                         /* It triggered already - consider it spurious. */
637                         if (!(status & IRQ_WAITING)) {
638                                 desc->status = status & ~IRQ_AUTODETECT;
639                                 desc->handler->shutdown(i);
640                         } else
641                                 if (i < 32)
642                                         val |= 1 << i;
643                 }
644                 spin_unlock_irq(&desc->lock);
645         }
646
647         return val;
648 }
649
650 EXPORT_SYMBOL(probe_irq_on);
651
652 /*
653  * Return a mask of triggered interrupts (this
654  * can handle only legacy ISA interrupts).
655  */
656
657 /**
658  *      probe_irq_mask - scan a bitmap of interrupt lines
659  *      @val:   mask of interrupts to consider
660  *
661  *      Scan the ISA bus interrupt lines and return a bitmap of
662  *      active interrupts. The interrupt probe logic state is then
663  *      returned to its previous value.
664  *
665  *      Note: we need to scan all the irq's even though we will
666  *      only return ISA irq numbers - just so that we reset them
667  *      all to a known state.
668  */
669 unsigned int probe_irq_mask(unsigned long val)
670 {
671         int i;
672         unsigned int mask;
673
674         mask = 0;
675         for (i = 0; i < NR_IRQS; i++) {
676                 irq_desc_t *desc = irq_desc + i;
677                 unsigned int status;
678
679                 spin_lock_irq(&desc->lock);
680                 status = desc->status;
681
682                 if (status & IRQ_AUTODETECT) {
683                         if (i < 16 && !(status & IRQ_WAITING))
684                                 mask |= 1 << i;
685
686                         desc->status = status & ~IRQ_AUTODETECT;
687                         desc->handler->shutdown(i);
688                 }
689                 spin_unlock_irq(&desc->lock);
690         }
691         up(&probe_sem);
692
693         return mask & val;
694 }
695
696 /*
697  * Return the one interrupt that triggered (this can
698  * handle any interrupt source).
699  */
700
701 /**
702  *      probe_irq_off   - end an interrupt autodetect
703  *      @val: mask of potential interrupts (unused)
704  *
705  *      Scans the unused interrupt lines and returns the line which
706  *      appears to have triggered the interrupt. If no interrupt was
707  *      found then zero is returned. If more than one interrupt is
708  *      found then minus the first candidate is returned to indicate
709  *      their is doubt.
710  *
711  *      The interrupt probe logic state is returned to its previous
712  *      value.
713  *
714  *      BUGS: When used in a module (which arguably shouldnt happen)
715  *      nothing prevents two IRQ probe callers from overlapping. The
716  *      results of this are non-optimal.
717  */
718
719 int probe_irq_off(unsigned long val)
720 {
721         int i, irq_found, nr_irqs;
722
723         nr_irqs = 0;
724         irq_found = 0;
725         for (i = 0; i < NR_IRQS; i++) {
726                 irq_desc_t *desc = irq_desc + i;
727                 unsigned int status;
728
729                 spin_lock_irq(&desc->lock);
730                 status = desc->status;
731
732                 if (status & IRQ_AUTODETECT) {
733                         if (!(status & IRQ_WAITING)) {
734                                 if (!nr_irqs)
735                                         irq_found = i;
736                                 nr_irqs++;
737                         }
738                         desc->status = status & ~IRQ_AUTODETECT;
739                         desc->handler->shutdown(i);
740                 }
741                 spin_unlock_irq(&desc->lock);
742         }
743         up(&probe_sem);
744
745         if (nr_irqs > 1)
746                 irq_found = -irq_found;
747         return irq_found;
748 }
749
750 EXPORT_SYMBOL(probe_irq_off);
751
752 /* this was setup_x86_irq but it seems pretty generic */
753 int setup_irq(unsigned int irq, struct irqaction * new)
754 {
755         int shared = 0;
756         unsigned long flags;
757         struct irqaction *old, **p;
758         irq_desc_t *desc = irq_desc + irq;
759
760         /*
761          * Some drivers like serial.c use request_irq() heavily,
762          * so we have to be careful not to interfere with a
763          * running system.
764          */
765         if (new->flags & SA_SAMPLE_RANDOM) {
766                 /*
767                  * This function might sleep, we want to call it first,
768                  * outside of the atomic block.
769                  * Yes, this might clear the entropy pool if the wrong
770                  * driver is attempted to be loaded, without actually
771                  * installing a new handler, but is this really a problem,
772                  * only the sysadmin is able to do this.
773                  */
774                 rand_initialize_irq(irq);
775         }
776
777         /*
778          * The following block of code has to be executed atomically
779          */
780         spin_lock_irqsave(&desc->lock,flags);
781         p = &desc->action;
782         if ((old = *p) != NULL) {
783                 /* Can't share interrupts unless both agree to */
784                 if (!(old->flags & new->flags & SA_SHIRQ)) {
785                         spin_unlock_irqrestore(&desc->lock,flags);
786                         return -EBUSY;
787                 }
788
789                 /* add new interrupt at end of irq queue */
790                 do {
791                         p = &old->next;
792                         old = *p;
793                 } while (old);
794                 shared = 1;
795         }
796
797         *p = new;
798
799         if (!shared) {
800                 desc->depth = 0;
801                 desc->status &= ~(IRQ_DISABLED | IRQ_AUTODETECT | IRQ_WAITING | IRQ_INPROGRESS);
802                 desc->handler->startup(irq);
803         }
804         spin_unlock_irqrestore(&desc->lock,flags);
805
806         register_irq_proc(irq);
807         return 0;
808 }
809
810 void __init init_generic_irq(void)
811 {
812         int i;
813
814         for (i = 0; i < NR_IRQS; i++) {
815                 irq_desc[i].status  = IRQ_DISABLED;
816                 irq_desc[i].action  = NULL;
817                 irq_desc[i].depth   = 1;
818                 irq_desc[i].handler = &no_irq_type;
819         }
820 }
821
822 EXPORT_SYMBOL(disable_irq_nosync);
823 EXPORT_SYMBOL(disable_irq);
824 EXPORT_SYMBOL(enable_irq);
825 EXPORT_SYMBOL(probe_irq_mask);
826
827 static struct proc_dir_entry * root_irq_dir;
828 static struct proc_dir_entry * irq_dir [NR_IRQS];
829
830 #ifdef CONFIG_SMP
831
832 static struct proc_dir_entry * smp_affinity_entry [NR_IRQS];
833
834 static cpumask_t irq_affinity [NR_IRQS] = { [0 ... NR_IRQS-1] = ~0UL };
835 static int irq_affinity_read_proc (char *page, char **start, off_t off,
836                         int count, int *eof, void *data)
837 {
838         int len = cpumask_snprintf(page, count, irq_affinity[(long)data]);
839         if (count - len < 2)
840                 return -EINVAL;
841         len += sprintf(page + len, "\n");
842         return len;
843 }
844
845 static int irq_affinity_write_proc (struct file *file, const char *buffer,
846                                         unsigned long count, void *data)
847 {
848         int irq = (long) data, full_count = count, err;
849         cpumask_t new_value, tmp;
850
851         if (!irq_desc[irq].handler->set_affinity)
852                 return -EIO;
853
854         err = cpumask_parse(buffer, count, new_value);
855
856         /*
857          * Do not allow disabling IRQs completely - it's a too easy
858          * way to make the system unusable accidentally :-) At least
859          * one online CPU still has to be targeted.
860          */
861         cpus_and(tmp, tmp, cpu_online_map);
862         if (cpus_empty(tmp))
863                 return -EINVAL;
864
865         irq_affinity[irq] = new_value;
866         irq_desc[irq].handler->set_affinity(irq, new_value);
867
868         return full_count;
869 }
870
871 #endif
872
873 static int prof_cpu_mask_read_proc (char *page, char **start, off_t off,
874                         int count, int *eof, void *data)
875 {
876         int len = cpumask_snprintf(page, count, *(cpumask_t *)data);
877         if (count - len < 2)
878                 return -EINVAL;
879         len += sprintf(page + len, "\n");
880         return len;
881 }
882
883 static int prof_cpu_mask_write_proc (struct file *file, const char *buffer,
884                                         unsigned long count, void *data)
885 {
886         cpumask_t *mask = (cpumask_t *)data, new_value;
887         unsigned long full_count = count, err;
888
889         err = cpumask_parse(buffer, count, new_value);
890         if (err)
891                 return err;
892
893         *mask = new_value;
894         return full_count;
895 }
896
897 #define MAX_NAMELEN 10
898
899 static void register_irq_proc (unsigned int irq)
900 {
901         char name [MAX_NAMELEN];
902
903         if (!root_irq_dir || (irq_desc[irq].handler == &no_irq_type) ||
904                         irq_dir[irq])
905                 return;
906
907         memset(name, 0, MAX_NAMELEN);
908         sprintf(name, "%d", irq);
909
910         /* create /proc/irq/1234 */
911         irq_dir[irq] = proc_mkdir(name, root_irq_dir);
912
913 #ifdef CONFIG_SMP
914         {
915                 struct proc_dir_entry *entry;
916
917                 /* create /proc/irq/1234/smp_affinity */
918                 entry = create_proc_entry("smp_affinity", 0600, irq_dir[irq]);
919
920                 if (entry) {
921                         entry->nlink = 1;
922                         entry->data = (void *)(long)irq;
923                         entry->read_proc = irq_affinity_read_proc;
924                         entry->write_proc = irq_affinity_write_proc;
925                 }
926
927                 smp_affinity_entry[irq] = entry;
928         }
929 #endif
930 }
931
932 unsigned long prof_cpu_mask = -1;
933
934 void init_irq_proc (void)
935 {
936         struct proc_dir_entry *entry;
937         int i;
938
939         /* create /proc/irq */
940         root_irq_dir = proc_mkdir("irq", 0);
941
942         /* create /proc/irq/prof_cpu_mask */
943         entry = create_proc_entry("prof_cpu_mask", 0600, root_irq_dir);
944
945         if (!entry)
946             return;
947
948         entry->nlink = 1;
949         entry->data = (void *)&prof_cpu_mask;
950         entry->read_proc = prof_cpu_mask_read_proc;
951         entry->write_proc = prof_cpu_mask_write_proc;
952
953         /*
954          * Create entries for all existing IRQs.
955          */
956         for (i = 0; i < NR_IRQS; i++)
957                 register_irq_proc(i);
958 }