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