Roman Zippel | 0aa7810 | 2006-06-25 05:47:02 -0700 | [diff] [blame] | 1 | #include <linux/interrupt.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | #include <asm/irq.h> |
| 4 | #include <asm/traps.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | #include <asm/apollohw.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | |
Roman Zippel | 0aa7810 | 2006-06-25 05:47:02 -0700 | [diff] [blame] | 7 | void dn_process_int(unsigned int irq, struct pt_regs *fp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | { |
Al Viro | 2850bc2 | 2006-10-07 14:16:45 +0100 | [diff] [blame] | 9 | __m68k_handle_int(irq, fp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | |
Roman Zippel | 0aa7810 | 2006-06-25 05:47:02 -0700 | [diff] [blame] | 11 | *(volatile unsigned char *)(pica)=0x20; |
| 12 | *(volatile unsigned char *)(picb)=0x20; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | } |
| 14 | |
Roman Zippel | 0aa7810 | 2006-06-25 05:47:02 -0700 | [diff] [blame] | 15 | int apollo_irq_startup(unsigned int irq) |
| 16 | { |
| 17 | if (irq < 8) |
| 18 | *(volatile unsigned char *)(pica+1) &= ~(1 << irq); |
| 19 | else |
| 20 | *(volatile unsigned char *)(picb+1) &= ~(1 << (irq - 8)); |
| 21 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | } |
| 23 | |
Roman Zippel | 0aa7810 | 2006-06-25 05:47:02 -0700 | [diff] [blame] | 24 | void apollo_irq_shutdown(unsigned int irq) |
| 25 | { |
| 26 | if (irq < 8) |
| 27 | *(volatile unsigned char *)(pica+1) |= (1 << irq); |
| 28 | else |
| 29 | *(volatile unsigned char *)(picb+1) |= (1 << (irq - 8)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | } |
| 31 | |
Roman Zippel | 0aa7810 | 2006-06-25 05:47:02 -0700 | [diff] [blame] | 32 | static struct irq_controller apollo_irq_controller = { |
| 33 | .name = "apollo", |
Milind Arun Choudhary | 241258d | 2007-05-06 14:50:54 -0700 | [diff] [blame] | 34 | .lock = __SPIN_LOCK_UNLOCKED(apollo_irq_controller.lock), |
Roman Zippel | 0aa7810 | 2006-06-25 05:47:02 -0700 | [diff] [blame] | 35 | .startup = apollo_irq_startup, |
| 36 | .shutdown = apollo_irq_shutdown, |
| 37 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Al Viro | 66a3f82 | 2007-07-20 04:33:28 +0100 | [diff] [blame] | 40 | void __init dn_init_IRQ(void) |
Roman Zippel | 0aa7810 | 2006-06-25 05:47:02 -0700 | [diff] [blame] | 41 | { |
| 42 | m68k_setup_user_interrupt(VEC_USER + 96, 16, dn_process_int); |
| 43 | m68k_setup_irq_controller(&apollo_irq_controller, IRQ_APOLLO, 16); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | } |