David VomLehn | a3a0f8c | 2009-08-30 17:15:11 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Portions copyright (C) 2005-2009 Scientific Atlanta |
| 3 | * Portions copyright (C) 2009 Cisco Systems, Inc. |
| 4 | * |
| 5 | * Modified from arch/mips/kernel/irq-rm7000.c: |
| 6 | * Copyright (C) 2003 Ralf Baechle |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify it |
| 9 | * under the terms of the GNU General Public License as published by the |
| 10 | * Free Software Foundation; either version 2 of the License, or (at your |
| 11 | * option) any later version. |
| 12 | */ |
| 13 | #include <linux/init.h> |
| 14 | #include <linux/interrupt.h> |
| 15 | #include <linux/kernel.h> |
David Howells | ca4d3e67 | 2010-10-07 14:08:54 +0100 | [diff] [blame] | 16 | #include <linux/irq.h> |
David VomLehn | a3a0f8c | 2009-08-30 17:15:11 -0700 | [diff] [blame] | 17 | |
| 18 | #include <asm/irq_cpu.h> |
| 19 | #include <asm/mipsregs.h> |
David VomLehn | a3a0f8c | 2009-08-30 17:15:11 -0700 | [diff] [blame] | 20 | |
| 21 | #include <asm/mach-powertv/asic_regs.h> |
| 22 | |
Thomas Gleixner | 2f8d36e | 2011-03-23 21:09:09 +0000 | [diff] [blame] | 23 | static inline void unmask_asic_irq(struct irq_data *d) |
David VomLehn | a3a0f8c | 2009-08-30 17:15:11 -0700 | [diff] [blame] | 24 | { |
| 25 | unsigned long enable_bit; |
Thomas Gleixner | 2f8d36e | 2011-03-23 21:09:09 +0000 | [diff] [blame] | 26 | unsigned int irq = d->irq; |
David VomLehn | a3a0f8c | 2009-08-30 17:15:11 -0700 | [diff] [blame] | 27 | |
| 28 | enable_bit = (1 << (irq & 0x1f)); |
| 29 | |
| 30 | switch (irq >> 5) { |
| 31 | case 0: |
| 32 | asic_write(asic_read(ien_int_0) | enable_bit, ien_int_0); |
| 33 | break; |
| 34 | case 1: |
| 35 | asic_write(asic_read(ien_int_1) | enable_bit, ien_int_1); |
| 36 | break; |
| 37 | case 2: |
| 38 | asic_write(asic_read(ien_int_2) | enable_bit, ien_int_2); |
| 39 | break; |
| 40 | case 3: |
| 41 | asic_write(asic_read(ien_int_3) | enable_bit, ien_int_3); |
| 42 | break; |
| 43 | default: |
| 44 | BUG(); |
| 45 | } |
| 46 | } |
| 47 | |
Thomas Gleixner | 2f8d36e | 2011-03-23 21:09:09 +0000 | [diff] [blame] | 48 | static inline void mask_asic_irq(struct irq_data *d) |
David VomLehn | a3a0f8c | 2009-08-30 17:15:11 -0700 | [diff] [blame] | 49 | { |
| 50 | unsigned long disable_mask; |
Thomas Gleixner | 2f8d36e | 2011-03-23 21:09:09 +0000 | [diff] [blame] | 51 | unsigned int irq = d->irq; |
David VomLehn | a3a0f8c | 2009-08-30 17:15:11 -0700 | [diff] [blame] | 52 | |
| 53 | disable_mask = ~(1 << (irq & 0x1f)); |
| 54 | |
| 55 | switch (irq >> 5) { |
| 56 | case 0: |
| 57 | asic_write(asic_read(ien_int_0) & disable_mask, ien_int_0); |
| 58 | break; |
| 59 | case 1: |
| 60 | asic_write(asic_read(ien_int_1) & disable_mask, ien_int_1); |
| 61 | break; |
| 62 | case 2: |
| 63 | asic_write(asic_read(ien_int_2) & disable_mask, ien_int_2); |
| 64 | break; |
| 65 | case 3: |
| 66 | asic_write(asic_read(ien_int_3) & disable_mask, ien_int_3); |
| 67 | break; |
| 68 | default: |
| 69 | BUG(); |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | static struct irq_chip asic_irq_chip = { |
| 74 | .name = "ASIC Level", |
Thomas Gleixner | 2f8d36e | 2011-03-23 21:09:09 +0000 | [diff] [blame] | 75 | .irq_mask = mask_asic_irq, |
| 76 | .irq_unmask = unmask_asic_irq, |
David VomLehn | a3a0f8c | 2009-08-30 17:15:11 -0700 | [diff] [blame] | 77 | }; |
| 78 | |
| 79 | void __init asic_irq_init(void) |
| 80 | { |
| 81 | int i; |
| 82 | |
| 83 | /* set priority to 0 */ |
| 84 | write_c0_status(read_c0_status() & ~(0x0000fc00)); |
| 85 | |
| 86 | asic_write(0, ien_int_0); |
| 87 | asic_write(0, ien_int_1); |
| 88 | asic_write(0, ien_int_2); |
| 89 | asic_write(0, ien_int_3); |
| 90 | |
| 91 | asic_write(0x0fffffff, int_level_3_3); |
| 92 | asic_write(0xffffffff, int_level_3_2); |
| 93 | asic_write(0xffffffff, int_level_3_1); |
| 94 | asic_write(0xffffffff, int_level_3_0); |
| 95 | asic_write(0xffffffff, int_level_2_3); |
| 96 | asic_write(0xffffffff, int_level_2_2); |
| 97 | asic_write(0xffffffff, int_level_2_1); |
| 98 | asic_write(0xffffffff, int_level_2_0); |
| 99 | asic_write(0xffffffff, int_level_1_3); |
| 100 | asic_write(0xffffffff, int_level_1_2); |
| 101 | asic_write(0xffffffff, int_level_1_1); |
| 102 | asic_write(0xffffffff, int_level_1_0); |
| 103 | asic_write(0xffffffff, int_level_0_3); |
| 104 | asic_write(0xffffffff, int_level_0_2); |
| 105 | asic_write(0xffffffff, int_level_0_1); |
| 106 | asic_write(0xffffffff, int_level_0_0); |
| 107 | |
| 108 | asic_write(0xf, int_int_scan); |
| 109 | |
| 110 | /* |
| 111 | * Initialize interrupt handlers. |
| 112 | */ |
| 113 | for (i = 0; i < NR_IRQS; i++) |
Thomas Gleixner | e4ec798 | 2011-03-27 15:19:28 +0200 | [diff] [blame] | 114 | irq_set_chip_and_handler(i, &asic_irq_chip, handle_level_irq); |
David VomLehn | a3a0f8c | 2009-08-30 17:15:11 -0700 | [diff] [blame] | 115 | } |