Merge branch 'ec-cleanup' into release
[linux-2.6-block.git] / arch / sparc / kernel / irq_32.c
CommitLineData
88278ca2 1/*
fd49bf48
SR
2 * Interrupt request handling routines. On the
3 * Sparc the IRQs are basically 'cast in stone'
4 * and you are supposed to probe the prom's device
5 * node trees to find out who's got which IRQ.
1da177e4
LT
6 *
7 * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
8 * Copyright (C) 1995 Miguel de Icaza (miguel@nuclecu.unam.mx)
9 * Copyright (C) 1995,2002 Pete A. Zaitcev (zaitcev@yahoo.com)
10 * Copyright (C) 1996 Dave Redman (djhr@tadpole.co.uk)
11 * Copyright (C) 1998-2000 Anton Blanchard (anton@samba.org)
12 */
13
1da177e4 14#include <linux/kernel_stat.h>
1da177e4
LT
15#include <linux/seq_file.h>
16
a2a211cb 17#include <asm/cacheflush.h>
1da177e4 18#include <asm/pcic.h>
0fd7ef1f 19#include <asm/leon.h>
1da177e4 20
81265fd9 21#include "kernel.h"
32231a66
AV
22#include "irq.h"
23
1da177e4
LT
24#ifdef CONFIG_SMP
25#define SMP_NOP2 "nop; nop;\n\t"
26#define SMP_NOP3 "nop; nop; nop;\n\t"
27#else
28#define SMP_NOP2
29#define SMP_NOP3
30#endif /* SMP */
fd49bf48 31
bbdc2661
SR
32/* platform specific irq setup */
33struct sparc_irq_config sparc_irq_config;
34
df9ee292 35unsigned long arch_local_irq_save(void)
1da177e4
LT
36{
37 unsigned long retval;
38 unsigned long tmp;
39
40 __asm__ __volatile__(
41 "rd %%psr, %0\n\t"
42 SMP_NOP3 /* Sun4m + Cypress + SMP bug */
43 "or %0, %2, %1\n\t"
44 "wr %1, 0, %%psr\n\t"
45 "nop; nop; nop\n"
46 : "=&r" (retval), "=r" (tmp)
47 : "i" (PSR_PIL)
48 : "memory");
49
50 return retval;
51}
df9ee292 52EXPORT_SYMBOL(arch_local_irq_save);
1da177e4 53
df9ee292 54void arch_local_irq_enable(void)
1da177e4
LT
55{
56 unsigned long tmp;
57
58 __asm__ __volatile__(
59 "rd %%psr, %0\n\t"
60 SMP_NOP3 /* Sun4m + Cypress + SMP bug */
61 "andn %0, %1, %0\n\t"
62 "wr %0, 0, %%psr\n\t"
63 "nop; nop; nop\n"
64 : "=&r" (tmp)
65 : "i" (PSR_PIL)
66 : "memory");
67}
df9ee292 68EXPORT_SYMBOL(arch_local_irq_enable);
1da177e4 69
df9ee292 70void arch_local_irq_restore(unsigned long old_psr)
1da177e4
LT
71{
72 unsigned long tmp;
73
74 __asm__ __volatile__(
75 "rd %%psr, %0\n\t"
76 "and %2, %1, %2\n\t"
77 SMP_NOP2 /* Sun4m + Cypress + SMP bug */
78 "andn %0, %1, %0\n\t"
79 "wr %0, %2, %%psr\n\t"
80 "nop; nop; nop\n"
81 : "=&r" (tmp)
82 : "i" (PSR_PIL), "r" (old_psr)
83 : "memory");
84}
df9ee292 85EXPORT_SYMBOL(arch_local_irq_restore);
1da177e4
LT
86
87/*
88 * Dave Redman (djhr@tadpole.co.uk)
89 *
90 * IRQ numbers.. These are no longer restricted to 15..
91 *
92 * this is done to enable SBUS cards and onboard IO to be masked
93 * correctly. using the interrupt level isn't good enough.
94 *
95 * For example:
96 * A device interrupting at sbus level6 and the Floppy both come in
97 * at IRQ11, but enabling and disabling them requires writing to
98 * different bits in the SLAVIO/SEC.
99 *
100 * As a result of these changes sun4m machines could now support
101 * directed CPU interrupts using the existing enable/disable irq code
102 * with tweaks.
103 *
104 */
105
1da177e4 106
1da177e4
LT
107
108/*
109 * Dave Redman (djhr@tadpole.co.uk)
110 *
111 * There used to be extern calls and hard coded values here.. very sucky!
112 * instead, because some of the devices attach very early, I do something
113 * equally sucky but at least we'll never try to free statically allocated
114 * space or call kmalloc before kmalloc_init :(.
fd49bf48 115 *
1da177e4
LT
116 * In fact it's the timer10 that attaches first.. then timer14
117 * then kmalloc_init is called.. then the tty interrupts attach.
118 * hmmm....
119 *
120 */
121#define MAX_STATIC_ALLOC 4
122struct irqaction static_irqaction[MAX_STATIC_ALLOC];
123int static_irq_count;
124
c61c65cd 125static struct {
a54123e2
BB
126 struct irqaction *action;
127 int flags;
128} sparc_irq[NR_IRQS];
129#define SPARC_IRQ_INPROGRESS 1
1da177e4
LT
130
131/* Used to protect the IRQ action lists */
132DEFINE_SPINLOCK(irq_action_lock);
133
134int show_interrupts(struct seq_file *p, void *v)
135{
fd49bf48
SR
136 int i = *(loff_t *)v;
137 struct irqaction *action;
1da177e4
LT
138 unsigned long flags;
139#ifdef CONFIG_SMP
140 int j;
141#endif
142
fd49bf48 143 if (sparc_cpu_model == sun4d)
1da177e4 144 return show_sun4d_interrupts(p, v);
fd49bf48 145
1da177e4
LT
146 spin_lock_irqsave(&irq_action_lock, flags);
147 if (i < NR_IRQS) {
a54123e2 148 action = sparc_irq[i].action;
fd49bf48 149 if (!action)
1da177e4
LT
150 goto out_unlock;
151 seq_printf(p, "%3d: ", i);
152#ifndef CONFIG_SMP
153 seq_printf(p, "%10u ", kstat_irqs(i));
154#else
394e3902
AM
155 for_each_online_cpu(j) {
156 seq_printf(p, "%10u ",
a54123e2 157 kstat_cpu(j).irqs[i]);
1da177e4
LT
158 }
159#endif
160 seq_printf(p, " %c %s",
67413202 161 (action->flags & IRQF_DISABLED) ? '+' : ' ',
1da177e4 162 action->name);
fd49bf48 163 for (action = action->next; action; action = action->next) {
1da177e4 164 seq_printf(p, ",%s %s",
67413202 165 (action->flags & IRQF_DISABLED) ? " +" : "",
1da177e4
LT
166 action->name);
167 }
168 seq_putc(p, '\n');
169 }
170out_unlock:
171 spin_unlock_irqrestore(&irq_action_lock, flags);
172 return 0;
173}
174
175void free_irq(unsigned int irq, void *dev_id)
176{
fd49bf48 177 struct irqaction *action;
a54123e2 178 struct irqaction **actionp;
fd49bf48 179 unsigned long flags;
1da177e4 180 unsigned int cpu_irq;
fd49bf48 181
1da177e4 182 if (sparc_cpu_model == sun4d) {
1da177e4
LT
183 sun4d_free_irq(irq, dev_id);
184 return;
185 }
186 cpu_irq = irq & (NR_IRQS - 1);
fd49bf48
SR
187 if (cpu_irq > 14) { /* 14 irq levels on the sparc */
188 printk(KERN_ERR "Trying to free bogus IRQ %d\n", irq);
189 return;
190 }
1da177e4
LT
191
192 spin_lock_irqsave(&irq_action_lock, flags);
193
a54123e2
BB
194 actionp = &sparc_irq[cpu_irq].action;
195 action = *actionp;
1da177e4
LT
196
197 if (!action->handler) {
fd49bf48 198 printk(KERN_ERR "Trying to free free IRQ%d\n", irq);
1da177e4
LT
199 goto out_unlock;
200 }
201 if (dev_id) {
202 for (; action; action = action->next) {
203 if (action->dev_id == dev_id)
204 break;
a54123e2 205 actionp = &action->next;
1da177e4
LT
206 }
207 if (!action) {
fd49bf48
SR
208 printk(KERN_ERR "Trying to free free shared IRQ%d\n",
209 irq);
1da177e4
LT
210 goto out_unlock;
211 }
67413202 212 } else if (action->flags & IRQF_SHARED) {
fd49bf48
SR
213 printk(KERN_ERR "Trying to free shared IRQ%d with NULL device ID\n",
214 irq);
1da177e4
LT
215 goto out_unlock;
216 }
fd49bf48
SR
217 if (action->flags & SA_STATIC_ALLOC) {
218 /*
219 * This interrupt is marked as specially allocated
1da177e4
LT
220 * so it is a bad idea to free it.
221 */
fd49bf48 222 printk(KERN_ERR "Attempt to free statically allocated IRQ%d (%s)\n",
1da177e4
LT
223 irq, action->name);
224 goto out_unlock;
225 }
a54123e2
BB
226
227 *actionp = action->next;
1da177e4
LT
228
229 spin_unlock_irqrestore(&irq_action_lock, flags);
230
231 synchronize_irq(irq);
232
233 spin_lock_irqsave(&irq_action_lock, flags);
234
235 kfree(action);
236
a54123e2 237 if (!sparc_irq[cpu_irq].action)
0f516813 238 __disable_irq(irq);
1da177e4
LT
239
240out_unlock:
241 spin_unlock_irqrestore(&irq_action_lock, flags);
242}
1da177e4
LT
243EXPORT_SYMBOL(free_irq);
244
245/*
246 * This is called when we want to synchronize with
247 * interrupts. We may for example tell a device to
248 * stop sending interrupts: but to make sure there
249 * are no interrupts that are executing on another
250 * CPU we need to call this function.
251 */
252#ifdef CONFIG_SMP
253void synchronize_irq(unsigned int irq)
254{
a54123e2
BB
255 unsigned int cpu_irq;
256
257 cpu_irq = irq & (NR_IRQS - 1);
258 while (sparc_irq[cpu_irq].flags & SPARC_IRQ_INPROGRESS)
259 cpu_relax();
1da177e4 260}
6943f3da 261EXPORT_SYMBOL(synchronize_irq);
1da177e4
LT
262#endif /* SMP */
263
fd49bf48 264void unexpected_irq(int irq, void *dev_id, struct pt_regs *regs)
1da177e4 265{
fd49bf48
SR
266 int i;
267 struct irqaction *action;
1da177e4 268 unsigned int cpu_irq;
fd49bf48 269
1da177e4 270 cpu_irq = irq & (NR_IRQS - 1);
a54123e2 271 action = sparc_irq[cpu_irq].action;
1da177e4 272
fd49bf48
SR
273 printk(KERN_ERR "IO device interrupt, irq = %d\n", irq);
274 printk(KERN_ERR "PC = %08lx NPC = %08lx FP=%08lx\n", regs->pc,
1da177e4
LT
275 regs->npc, regs->u_regs[14]);
276 if (action) {
fd49bf48
SR
277 printk(KERN_ERR "Expecting: ");
278 for (i = 0; i < 16; i++)
279 if (action->handler)
280 printk(KERN_CONT "[%s:%d:0x%x] ", action->name,
281 i, (unsigned int)action->handler);
1da177e4 282 }
fd49bf48 283 printk(KERN_ERR "AIEEE\n");
1da177e4
LT
284 panic("bogus interrupt received");
285}
286
fd49bf48 287void handler_irq(int pil, struct pt_regs *regs)
1da177e4 288{
0d84438d 289 struct pt_regs *old_regs;
fd49bf48 290 struct irqaction *action;
1da177e4 291 int cpu = smp_processor_id();
1da177e4 292
0d84438d 293 old_regs = set_irq_regs(regs);
1da177e4 294 irq_enter();
d4d1ec48 295 disable_pil_irq(pil);
1da177e4 296#ifdef CONFIG_SMP
d1a78c32 297 /* Only rotate on lower priority IRQs (scsi, ethernet, etc.). */
fd49bf48 298 if ((sparc_cpu_model==sun4m) && (pil < 10))
1da177e4
LT
299 smp4m_irq_rotate(cpu);
300#endif
d4d1ec48
SR
301 action = sparc_irq[pil].action;
302 sparc_irq[pil].flags |= SPARC_IRQ_INPROGRESS;
303 kstat_cpu(cpu).irqs[pil]++;
1da177e4
LT
304 do {
305 if (!action || !action->handler)
d4d1ec48
SR
306 unexpected_irq(pil, NULL, regs);
307 action->handler(pil, action->dev_id);
1da177e4
LT
308 action = action->next;
309 } while (action);
d4d1ec48
SR
310 sparc_irq[pil].flags &= ~SPARC_IRQ_INPROGRESS;
311 enable_pil_irq(pil);
1da177e4 312 irq_exit();
0d84438d 313 set_irq_regs(old_regs);
1da177e4
LT
314}
315
0a808a31 316#if defined(CONFIG_BLK_DEV_FD) || defined(CONFIG_BLK_DEV_FD_MODULE)
1da177e4 317
fd49bf48
SR
318/*
319 * Fast IRQs on the Sparc can only have one routine attached to them,
1da177e4
LT
320 * thus no sharing possible.
321 */
0a808a31
DM
322static int request_fast_irq(unsigned int irq,
323 void (*handler)(void),
324 unsigned long irqflags, const char *devname)
1da177e4
LT
325{
326 struct irqaction *action;
327 unsigned long flags;
328 unsigned int cpu_irq;
329 int ret;
51672321 330#if defined CONFIG_SMP && !defined CONFIG_SPARC_LEON
1da177e4 331 struct tt_entry *trap_table;
1da177e4 332#endif
1da177e4 333 cpu_irq = irq & (NR_IRQS - 1);
fd49bf48 334 if (cpu_irq > 14) {
1da177e4
LT
335 ret = -EINVAL;
336 goto out;
337 }
fd49bf48 338 if (!handler) {
1da177e4
LT
339 ret = -EINVAL;
340 goto out;
341 }
342
343 spin_lock_irqsave(&irq_action_lock, flags);
344
a54123e2 345 action = sparc_irq[cpu_irq].action;
fd49bf48
SR
346 if (action) {
347 if (action->flags & IRQF_SHARED)
1da177e4 348 panic("Trying to register fast irq when already shared.\n");
fd49bf48 349 if (irqflags & IRQF_SHARED)
1da177e4
LT
350 panic("Trying to register fast irq as shared.\n");
351
352 /* Anyway, someone already owns it so cannot be made fast. */
fd49bf48 353 printk(KERN_ERR "request_fast_irq: Trying to register yet already owned.\n");
1da177e4
LT
354 ret = -EBUSY;
355 goto out_unlock;
356 }
357
fd49bf48
SR
358 /*
359 * If this is flagged as statically allocated then we use our
1da177e4
LT
360 * private struct which is never freed.
361 */
362 if (irqflags & SA_STATIC_ALLOC) {
fd49bf48
SR
363 if (static_irq_count < MAX_STATIC_ALLOC)
364 action = &static_irqaction[static_irq_count++];
365 else
366 printk(KERN_ERR "Fast IRQ%d (%s) SA_STATIC_ALLOC failed using kmalloc\n",
367 irq, devname);
1da177e4 368 }
fd49bf48 369
1da177e4 370 if (action == NULL)
fd49bf48
SR
371 action = kmalloc(sizeof(struct irqaction), GFP_ATOMIC);
372 if (!action) {
1da177e4
LT
373 ret = -ENOMEM;
374 goto out_unlock;
375 }
376
377 /* Dork with trap table if we get this far. */
378#define INSTANTIATE(table) \
379 table[SP_TRAP_IRQ1+(cpu_irq-1)].inst_one = SPARC_RD_PSR_L0; \
380 table[SP_TRAP_IRQ1+(cpu_irq-1)].inst_two = \
381 SPARC_BRANCH((unsigned long) handler, \
382 (unsigned long) &table[SP_TRAP_IRQ1+(cpu_irq-1)].inst_two);\
383 table[SP_TRAP_IRQ1+(cpu_irq-1)].inst_three = SPARC_RD_WIM_L3; \
384 table[SP_TRAP_IRQ1+(cpu_irq-1)].inst_four = SPARC_NOP;
385
386 INSTANTIATE(sparc_ttable)
51672321 387#if defined CONFIG_SMP && !defined CONFIG_SPARC_LEON
fd49bf48
SR
388 trap_table = &trapbase_cpu1;
389 INSTANTIATE(trap_table)
390 trap_table = &trapbase_cpu2;
391 INSTANTIATE(trap_table)
392 trap_table = &trapbase_cpu3;
393 INSTANTIATE(trap_table)
1da177e4
LT
394#endif
395#undef INSTANTIATE
396 /*
397 * XXX Correct thing whould be to flush only I- and D-cache lines
398 * which contain the handler in question. But as of time of the
399 * writing we have no CPU-neutral interface to fine-grained flushes.
400 */
401 flush_cache_all();
402
1da177e4 403 action->flags = irqflags;
1da177e4
LT
404 action->name = devname;
405 action->dev_id = NULL;
406 action->next = NULL;
407
a54123e2 408 sparc_irq[cpu_irq].action = action;
1da177e4 409
0f516813 410 __enable_irq(irq);
1da177e4
LT
411
412 ret = 0;
413out_unlock:
414 spin_unlock_irqrestore(&irq_action_lock, flags);
415out:
416 return ret;
417}
418
fd49bf48
SR
419/*
420 * These variables are used to access state from the assembler
0a808a31
DM
421 * interrupt handler, floppy_hardint, so we cannot put these in
422 * the floppy driver image because that would not work in the
423 * modular case.
424 */
425volatile unsigned char *fdc_status;
426EXPORT_SYMBOL(fdc_status);
427
428char *pdma_vaddr;
429EXPORT_SYMBOL(pdma_vaddr);
430
431unsigned long pdma_size;
432EXPORT_SYMBOL(pdma_size);
433
434volatile int doing_pdma;
435EXPORT_SYMBOL(doing_pdma);
436
437char *pdma_base;
438EXPORT_SYMBOL(pdma_base);
439
440unsigned long pdma_areasize;
441EXPORT_SYMBOL(pdma_areasize);
442
7c239975 443static irq_handler_t floppy_irq_handler;
0a808a31
DM
444
445void sparc_floppy_irq(int irq, void *dev_id, struct pt_regs *regs)
446{
447 struct pt_regs *old_regs;
448 int cpu = smp_processor_id();
449
450 old_regs = set_irq_regs(regs);
451 disable_pil_irq(irq);
452 irq_enter();
453 kstat_cpu(cpu).irqs[irq]++;
454 floppy_irq_handler(irq, dev_id);
455 irq_exit();
456 enable_pil_irq(irq);
457 set_irq_regs(old_regs);
fd49bf48
SR
458 /*
459 * XXX Eek, it's totally changed with preempt_count() and such
460 * if (softirq_pending(cpu))
461 * do_softirq();
462 */
0a808a31
DM
463}
464
465int sparc_floppy_request_irq(int irq, unsigned long flags,
7c239975 466 irq_handler_t irq_handler)
0a808a31
DM
467{
468 floppy_irq_handler = irq_handler;
469 return request_fast_irq(irq, floppy_hardint, flags, "floppy");
470}
471EXPORT_SYMBOL(sparc_floppy_request_irq);
472
473#endif
474
1da177e4 475int request_irq(unsigned int irq,
40220c1a 476 irq_handler_t handler,
fd49bf48 477 unsigned long irqflags, const char *devname, void *dev_id)
1da177e4 478{
fd49bf48 479 struct irqaction *action, **actionp;
1da177e4
LT
480 unsigned long flags;
481 unsigned int cpu_irq;
482 int ret;
fd49bf48
SR
483
484 if (sparc_cpu_model == sun4d)
1da177e4 485 return sun4d_request_irq(irq, handler, irqflags, devname, dev_id);
fd49bf48 486
1da177e4 487 cpu_irq = irq & (NR_IRQS - 1);
fd49bf48 488 if (cpu_irq > 14) {
1da177e4
LT
489 ret = -EINVAL;
490 goto out;
491 }
492 if (!handler) {
493 ret = -EINVAL;
494 goto out;
495 }
fd49bf48 496
1da177e4
LT
497 spin_lock_irqsave(&irq_action_lock, flags);
498
a54123e2
BB
499 actionp = &sparc_irq[cpu_irq].action;
500 action = *actionp;
1da177e4 501 if (action) {
67413202 502 if (!(action->flags & IRQF_SHARED) || !(irqflags & IRQF_SHARED)) {
1da177e4
LT
503 ret = -EBUSY;
504 goto out_unlock;
505 }
67413202 506 if ((action->flags & IRQF_DISABLED) != (irqflags & IRQF_DISABLED)) {
fd49bf48
SR
507 printk(KERN_ERR "Attempt to mix fast and slow interrupts on IRQ%d denied\n",
508 irq);
1da177e4
LT
509 ret = -EBUSY;
510 goto out_unlock;
a54123e2
BB
511 }
512 for ( ; action; action = *actionp)
513 actionp = &action->next;
1da177e4
LT
514 }
515
516 /* If this is flagged as statically allocated then we use our
517 * private struct which is never freed.
518 */
519 if (irqflags & SA_STATIC_ALLOC) {
520 if (static_irq_count < MAX_STATIC_ALLOC)
521 action = &static_irqaction[static_irq_count++];
522 else
fd49bf48
SR
523 printk(KERN_ERR "Request for IRQ%d (%s) SA_STATIC_ALLOC failed using kmalloc\n",
524 irq, devname);
1da177e4 525 }
1da177e4 526 if (action == NULL)
fd49bf48
SR
527 action = kmalloc(sizeof(struct irqaction), GFP_ATOMIC);
528 if (!action) {
1da177e4
LT
529 ret = -ENOMEM;
530 goto out_unlock;
531 }
532
533 action->handler = handler;
534 action->flags = irqflags;
1da177e4
LT
535 action->name = devname;
536 action->next = NULL;
537 action->dev_id = dev_id;
538
a54123e2 539 *actionp = action;
1da177e4 540
0f516813 541 __enable_irq(irq);
1da177e4
LT
542
543 ret = 0;
544out_unlock:
545 spin_unlock_irqrestore(&irq_action_lock, flags);
546out:
547 return ret;
548}
1da177e4
LT
549EXPORT_SYMBOL(request_irq);
550
0f516813
AV
551void disable_irq_nosync(unsigned int irq)
552{
81265fd9 553 __disable_irq(irq);
0f516813
AV
554}
555EXPORT_SYMBOL(disable_irq_nosync);
556
557void disable_irq(unsigned int irq)
558{
81265fd9 559 __disable_irq(irq);
0f516813
AV
560}
561EXPORT_SYMBOL(disable_irq);
562
563void enable_irq(unsigned int irq)
564{
81265fd9 565 __enable_irq(irq);
0f516813 566}
0f516813
AV
567EXPORT_SYMBOL(enable_irq);
568
fd49bf48
SR
569/*
570 * We really don't need these at all on the Sparc. We only have
1da177e4
LT
571 * stubs here because they are exported to modules.
572 */
573unsigned long probe_irq_on(void)
574{
575 return 0;
576}
1da177e4
LT
577EXPORT_SYMBOL(probe_irq_on);
578
579int probe_irq_off(unsigned long mask)
580{
581 return 0;
582}
1da177e4
LT
583EXPORT_SYMBOL(probe_irq_off);
584
1d05995b
SR
585static unsigned int build_device_irq(struct platform_device *op,
586 unsigned int real_irq)
587{
588 return real_irq;
589}
590
1da177e4
LT
591/* djhr
592 * This could probably be made indirect too and assigned in the CPU
593 * bits of the code. That would be much nicer I think and would also
594 * fit in with the idea of being able to tune your kernel for your machine
595 * by removing unrequired machine and device support.
596 *
597 */
598
599void __init init_IRQ(void)
600{
1d05995b
SR
601 sparc_irq_config.build_device_irq = build_device_irq;
602
fd49bf48 603 switch (sparc_cpu_model) {
1da177e4
LT
604 case sun4c:
605 case sun4:
606 sun4c_init_IRQ();
607 break;
608
609 case sun4m:
610#ifdef CONFIG_PCI
611 pcic_probe();
612 if (pcic_present()) {
613 sun4m_pci_init_IRQ();
614 break;
615 }
616#endif
617 sun4m_init_IRQ();
618 break;
fd49bf48 619
1da177e4
LT
620 case sun4d:
621 sun4d_init_IRQ();
622 break;
623
0fd7ef1f
KE
624 case sparc_leon:
625 leon_init_IRQ();
626 break;
627
1da177e4 628 default:
d1a78c32 629 prom_printf("Cannot initialize IRQs on this Sun machine...");
1da177e4
LT
630 break;
631 }
632 btfixup();
633}
634
4696b64d 635#ifdef CONFIG_PROC_FS
1da177e4
LT
636void init_irq_proc(void)
637{
638 /* For now, nothing... */
639}
4696b64d 640#endif /* CONFIG_PROC_FS */