Roman Zippel | 0aa7810 | 2006-06-25 05:47:02 -0700 | [diff] [blame] | 1 | #include <linux/interrupt.h> |
Geert Uytterhoeven | bc7485a | 2011-08-18 14:45:57 +0200 | [diff] [blame] | 2 | #include <linux/irq.h> |
Geert Uytterhoeven | bc7485a | 2011-08-18 14:45:57 +0200 | [diff] [blame] | 3 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Geert Uytterhoeven | e8abf5e | 2011-04-17 22:53:04 +0200 | [diff] [blame] | 7 | unsigned int apollo_irq_startup(struct irq_data *data) |
Roman Zippel | 0aa7810 | 2006-06-25 05:47:02 -0700 | [diff] [blame] | 8 | { |
Geert Uytterhoeven | e8abf5e | 2011-04-17 22:53:04 +0200 | [diff] [blame] | 9 | unsigned int irq = data->irq; |
| 10 | |
Roman Zippel | 0aa7810 | 2006-06-25 05:47:02 -0700 | [diff] [blame] | 11 | if (irq < 8) |
| 12 | *(volatile unsigned char *)(pica+1) &= ~(1 << irq); |
| 13 | else |
| 14 | *(volatile unsigned char *)(picb+1) &= ~(1 << (irq - 8)); |
| 15 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | } |
| 17 | |
Geert Uytterhoeven | e8abf5e | 2011-04-17 22:53:04 +0200 | [diff] [blame] | 18 | void apollo_irq_shutdown(struct irq_data *data) |
Roman Zippel | 0aa7810 | 2006-06-25 05:47:02 -0700 | [diff] [blame] | 19 | { |
Geert Uytterhoeven | e8abf5e | 2011-04-17 22:53:04 +0200 | [diff] [blame] | 20 | unsigned int irq = data->irq; |
| 21 | |
Roman Zippel | 0aa7810 | 2006-06-25 05:47:02 -0700 | [diff] [blame] | 22 | if (irq < 8) |
| 23 | *(volatile unsigned char *)(pica+1) |= (1 << irq); |
| 24 | else |
| 25 | *(volatile unsigned char *)(picb+1) |= (1 << (irq - 8)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | } |
| 27 | |
Geert Uytterhoeven | bc7485a | 2011-08-18 14:45:57 +0200 | [diff] [blame] | 28 | void apollo_irq_eoi(struct irq_data *data) |
| 29 | { |
| 30 | *(volatile unsigned char *)(pica) = 0x20; |
| 31 | *(volatile unsigned char *)(picb) = 0x20; |
| 32 | } |
Geert Uytterhoeven | bc7485a | 2011-08-18 14:45:57 +0200 | [diff] [blame] | 33 | |
Geert Uytterhoeven | c288bf2 | 2011-04-13 22:31:28 +0200 | [diff] [blame] | 34 | static struct irq_chip apollo_irq_chip = { |
Roman Zippel | 0aa7810 | 2006-06-25 05:47:02 -0700 | [diff] [blame] | 35 | .name = "apollo", |
Geert Uytterhoeven | c288bf2 | 2011-04-13 22:31:28 +0200 | [diff] [blame] | 36 | .irq_startup = apollo_irq_startup, |
| 37 | .irq_shutdown = apollo_irq_shutdown, |
Geert Uytterhoeven | bc7485a | 2011-08-18 14:45:57 +0200 | [diff] [blame] | 38 | .irq_eoi = apollo_irq_eoi, |
Roman Zippel | 0aa7810 | 2006-06-25 05:47:02 -0700 | [diff] [blame] | 39 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Al Viro | 66a3f82 | 2007-07-20 04:33:28 +0100 | [diff] [blame] | 42 | void __init dn_init_IRQ(void) |
Roman Zippel | 0aa7810 | 2006-06-25 05:47:02 -0700 | [diff] [blame] | 43 | { |
Geert Uytterhoeven | f30a648 | 2011-09-11 11:54:50 +0200 | [diff] [blame] | 44 | m68k_setup_user_interrupt(VEC_USER + 96, 16); |
Geert Uytterhoeven | bc7485a | 2011-08-18 14:45:57 +0200 | [diff] [blame] | 45 | m68k_setup_irq_controller(&apollo_irq_chip, handle_fasteoi_irq, |
Geert Uytterhoeven | edb3472 | 2011-06-01 11:15:21 +0200 | [diff] [blame] | 46 | IRQ_APOLLO, 16); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | } |