Vineet Gupta | ac4c244 | 2013-01-18 15:12:16 +0530 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011-12 Synopsys, Inc. (www.synopsys.com) |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License version 2 as |
| 6 | * published by the Free Software Foundation. |
| 7 | * |
| 8 | */ |
| 9 | |
| 10 | #include <linux/interrupt.h> |
| 11 | #include <linux/module.h> |
Vineet Gupta | abe11dd | 2013-01-18 15:12:21 +0530 | [diff] [blame] | 12 | #include <linux/of.h> |
| 13 | #include <linux/irqdomain.h> |
Vineet Gupta | bacdf48 | 2013-01-18 15:12:18 +0530 | [diff] [blame] | 14 | #include <asm/sections.h> |
| 15 | #include <asm/irq.h> |
Vineet Gupta | 03a6d28 | 2013-01-18 15:12:26 +0530 | [diff] [blame^] | 16 | #include <asm/mach_desc.h> |
Vineet Gupta | bacdf48 | 2013-01-18 15:12:18 +0530 | [diff] [blame] | 17 | |
| 18 | /* |
| 19 | * Early Hardware specific Interrupt setup |
| 20 | * -Called very early (start_kernel -> setup_arch -> setup_processor) |
| 21 | * -Platform Independent (must for any ARC700) |
| 22 | * -Needed for each CPU (hence not foldable into init_IRQ) |
| 23 | * |
| 24 | * what it does ? |
| 25 | * -setup Vector Table Base Reg - in case Linux not linked at 0x8000_0000 |
| 26 | * -Disable all IRQs (on CPU side) |
Vineet Gupta | 4788a59 | 2013-01-18 15:12:22 +0530 | [diff] [blame] | 27 | * -Optionally, setup the High priority Interrupts as Level 2 IRQs |
Vineet Gupta | bacdf48 | 2013-01-18 15:12:18 +0530 | [diff] [blame] | 28 | */ |
| 29 | void __init arc_init_IRQ(void) |
| 30 | { |
Vineet Gupta | 4788a59 | 2013-01-18 15:12:22 +0530 | [diff] [blame] | 31 | int level_mask = 0; |
Vineet Gupta | bacdf48 | 2013-01-18 15:12:18 +0530 | [diff] [blame] | 32 | |
| 33 | write_aux_reg(AUX_INTR_VEC_BASE, _int_vec_base_lds); |
| 34 | |
| 35 | /* Disable all IRQs: enable them as devices request */ |
| 36 | write_aux_reg(AUX_IENABLE, 0); |
Vineet Gupta | 4788a59 | 2013-01-18 15:12:22 +0530 | [diff] [blame] | 37 | |
| 38 | /* setup any high priority Interrupts (Level2 in ARCompact jargon) */ |
| 39 | #ifdef CONFIG_ARC_IRQ3_LV2 |
| 40 | level_mask |= (1 << 3); |
| 41 | #endif |
| 42 | #ifdef CONFIG_ARC_IRQ5_LV2 |
| 43 | level_mask |= (1 << 5); |
| 44 | #endif |
| 45 | #ifdef CONFIG_ARC_IRQ6_LV2 |
| 46 | level_mask |= (1 << 6); |
| 47 | #endif |
| 48 | |
| 49 | if (level_mask) { |
| 50 | pr_info("Level-2 interrupts bitset %x\n", level_mask); |
| 51 | write_aux_reg(AUX_IRQ_LEV, level_mask); |
| 52 | } |
Vineet Gupta | bacdf48 | 2013-01-18 15:12:18 +0530 | [diff] [blame] | 53 | } |
| 54 | |
| 55 | /* |
| 56 | * ARC700 core includes a simple on-chip intc supporting |
| 57 | * -per IRQ enable/disable |
| 58 | * -2 levels of interrupts (high/low) |
| 59 | * -all interrupts being level triggered |
| 60 | * |
| 61 | * To reduce platform code, we assume all IRQs directly hooked-up into intc. |
| 62 | * Platforms with external intc, hence cascaded IRQs, are free to over-ride |
| 63 | * below, per IRQ. |
| 64 | */ |
| 65 | |
| 66 | static void arc_mask_irq(struct irq_data *data) |
| 67 | { |
| 68 | arch_mask_irq(data->irq); |
| 69 | } |
| 70 | |
| 71 | static void arc_unmask_irq(struct irq_data *data) |
| 72 | { |
| 73 | arch_unmask_irq(data->irq); |
| 74 | } |
| 75 | |
| 76 | static struct irq_chip onchip_intc = { |
| 77 | .name = "ARC In-core Intc", |
| 78 | .irq_mask = arc_mask_irq, |
| 79 | .irq_unmask = arc_unmask_irq, |
| 80 | }; |
| 81 | |
Vineet Gupta | abe11dd | 2013-01-18 15:12:21 +0530 | [diff] [blame] | 82 | static int arc_intc_domain_map(struct irq_domain *d, unsigned int irq, |
| 83 | irq_hw_number_t hw) |
| 84 | { |
| 85 | if (irq == TIMER0_IRQ) |
| 86 | irq_set_chip_and_handler(irq, &onchip_intc, handle_percpu_irq); |
| 87 | else |
| 88 | irq_set_chip_and_handler(irq, &onchip_intc, handle_level_irq); |
| 89 | |
| 90 | return 0; |
| 91 | } |
| 92 | |
| 93 | static const struct irq_domain_ops arc_intc_domain_ops = { |
| 94 | .xlate = irq_domain_xlate_onecell, |
| 95 | .map = arc_intc_domain_map, |
| 96 | }; |
| 97 | |
| 98 | static struct irq_domain *root_domain; |
| 99 | |
Vineet Gupta | bacdf48 | 2013-01-18 15:12:18 +0530 | [diff] [blame] | 100 | void __init init_onchip_IRQ(void) |
| 101 | { |
Vineet Gupta | abe11dd | 2013-01-18 15:12:21 +0530 | [diff] [blame] | 102 | struct device_node *intc = NULL; |
Vineet Gupta | bacdf48 | 2013-01-18 15:12:18 +0530 | [diff] [blame] | 103 | |
Vineet Gupta | abe11dd | 2013-01-18 15:12:21 +0530 | [diff] [blame] | 104 | intc = of_find_compatible_node(NULL, NULL, "snps,arc700-intc"); |
| 105 | if(!intc) |
| 106 | panic("DeviceTree Missing incore intc\n"); |
Vineet Gupta | bacdf48 | 2013-01-18 15:12:18 +0530 | [diff] [blame] | 107 | |
Vineet Gupta | abe11dd | 2013-01-18 15:12:21 +0530 | [diff] [blame] | 108 | root_domain = irq_domain_add_legacy(intc, NR_IRQS, 0, 0, |
| 109 | &arc_intc_domain_ops, NULL); |
| 110 | |
| 111 | if (!root_domain) |
| 112 | panic("root irq domain not avail\n"); |
| 113 | |
| 114 | /* with this we don't need to export root_domain */ |
| 115 | irq_set_default_host(root_domain); |
Vineet Gupta | bacdf48 | 2013-01-18 15:12:18 +0530 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | /* |
| 119 | * Late Interrupt system init called from start_kernel for Boot CPU only |
| 120 | * |
| 121 | * Since slab must already be initialized, platforms can start doing any |
| 122 | * needed request_irq( )s |
| 123 | */ |
| 124 | void __init init_IRQ(void) |
| 125 | { |
| 126 | init_onchip_IRQ(); |
| 127 | plat_init_IRQ(); |
Vineet Gupta | 41195d2 | 2013-01-18 15:12:23 +0530 | [diff] [blame] | 128 | |
Vineet Gupta | 03a6d28 | 2013-01-18 15:12:26 +0530 | [diff] [blame^] | 129 | /* Any external intc can be setup here */ |
| 130 | if (machine_desc->init_irq) |
| 131 | machine_desc->init_irq(); |
| 132 | |
Vineet Gupta | 41195d2 | 2013-01-18 15:12:23 +0530 | [diff] [blame] | 133 | #ifdef CONFIG_SMP |
| 134 | /* Master CPU can initialize it's side of IPI */ |
| 135 | arc_platform_smp_init_cpu(); |
Vineet Gupta | 03a6d28 | 2013-01-18 15:12:26 +0530 | [diff] [blame^] | 136 | if (machine_desc->init_smp) |
| 137 | machine_desc->init_smp(smp_processor_id()); |
Vineet Gupta | 41195d2 | 2013-01-18 15:12:23 +0530 | [diff] [blame] | 138 | #endif |
Vineet Gupta | bacdf48 | 2013-01-18 15:12:18 +0530 | [diff] [blame] | 139 | } |
| 140 | |
| 141 | /* |
| 142 | * "C" Entry point for any ARC ISR, called from low level vector handler |
| 143 | * @irq is the vector number read from ICAUSE reg of on-chip intc |
| 144 | */ |
| 145 | void arch_do_IRQ(unsigned int irq, struct pt_regs *regs) |
| 146 | { |
| 147 | struct pt_regs *old_regs = set_irq_regs(regs); |
| 148 | |
| 149 | irq_enter(); |
| 150 | generic_handle_irq(irq); |
| 151 | irq_exit(); |
| 152 | set_irq_regs(old_regs); |
| 153 | } |
| 154 | |
| 155 | int __init get_hw_config_num_irq(void) |
| 156 | { |
| 157 | uint32_t val = read_aux_reg(ARC_REG_VECBASE_BCR); |
| 158 | |
| 159 | switch (val & 0x03) { |
| 160 | case 0: |
| 161 | return 16; |
| 162 | case 1: |
| 163 | return 32; |
| 164 | case 2: |
| 165 | return 8; |
| 166 | default: |
| 167 | return 0; |
| 168 | } |
| 169 | |
| 170 | return 0; |
| 171 | } |
Vineet Gupta | ac4c244 | 2013-01-18 15:12:16 +0530 | [diff] [blame] | 172 | |
Vineet Gupta | 4788a59 | 2013-01-18 15:12:22 +0530 | [diff] [blame] | 173 | /* |
| 174 | * arch_local_irq_enable - Enable interrupts. |
| 175 | * |
| 176 | * 1. Explicitly called to re-enable interrupts |
| 177 | * 2. Implicitly called from spin_unlock_irq, write_unlock_irq etc |
| 178 | * which maybe in hard ISR itself |
| 179 | * |
| 180 | * Semantics of this function change depending on where it is called from: |
| 181 | * |
| 182 | * -If called from hard-ISR, it must not invert interrupt priorities |
| 183 | * e.g. suppose TIMER is high priority (Level 2) IRQ |
| 184 | * Time hard-ISR, timer_interrupt( ) calls spin_unlock_irq several times. |
| 185 | * Here local_irq_enable( ) shd not re-enable lower priority interrupts |
| 186 | * -If called from soft-ISR, it must re-enable all interrupts |
| 187 | * soft ISR are low prioity jobs which can be very slow, thus all IRQs |
| 188 | * must be enabled while they run. |
| 189 | * Now hardware context wise we may still be in L2 ISR (not done rtie) |
| 190 | * still we must re-enable both L1 and L2 IRQs |
| 191 | * Another twist is prev scenario with flow being |
| 192 | * L1 ISR ==> interrupted by L2 ISR ==> L2 soft ISR |
| 193 | * here we must not re-enable Ll as prev Ll Interrupt's h/w context will get |
| 194 | * over-written (this is deficiency in ARC700 Interrupt mechanism) |
| 195 | */ |
| 196 | |
| 197 | #ifdef CONFIG_ARC_COMPACT_IRQ_LEVELS /* Complex version for 2 IRQ levels */ |
| 198 | |
| 199 | void arch_local_irq_enable(void) |
| 200 | { |
| 201 | |
| 202 | unsigned long flags; |
| 203 | flags = arch_local_save_flags(); |
| 204 | |
| 205 | /* Allow both L1 and L2 at the onset */ |
| 206 | flags |= (STATUS_E1_MASK | STATUS_E2_MASK); |
| 207 | |
| 208 | /* Called from hard ISR (between irq_enter and irq_exit) */ |
| 209 | if (in_irq()) { |
| 210 | |
| 211 | /* If in L2 ISR, don't re-enable any further IRQs as this can |
| 212 | * cause IRQ priorities to get upside down. e.g. it could allow |
| 213 | * L1 be taken while in L2 hard ISR which is wrong not only in |
| 214 | * theory, it can also cause the dreaded L1-L2-L1 scenario |
| 215 | */ |
| 216 | if (flags & STATUS_A2_MASK) |
| 217 | flags &= ~(STATUS_E1_MASK | STATUS_E2_MASK); |
| 218 | |
| 219 | /* Even if in L1 ISR, allowe Higher prio L2 IRQs */ |
| 220 | else if (flags & STATUS_A1_MASK) |
| 221 | flags &= ~(STATUS_E1_MASK); |
| 222 | } |
| 223 | |
| 224 | /* called from soft IRQ, ideally we want to re-enable all levels */ |
| 225 | |
| 226 | else if (in_softirq()) { |
| 227 | |
| 228 | /* However if this is case of L1 interrupted by L2, |
| 229 | * re-enabling both may cause whaco L1-L2-L1 scenario |
| 230 | * because ARC700 allows level 1 to interrupt an active L2 ISR |
| 231 | * Thus we disable both |
| 232 | * However some code, executing in soft ISR wants some IRQs |
| 233 | * to be enabled so we re-enable L2 only |
| 234 | * |
| 235 | * How do we determine L1 intr by L2 |
| 236 | * -A2 is set (means in L2 ISR) |
| 237 | * -E1 is set in this ISR's pt_regs->status32 which is |
| 238 | * saved copy of status32_l2 when l2 ISR happened |
| 239 | */ |
| 240 | struct pt_regs *pt = get_irq_regs(); |
| 241 | if ((flags & STATUS_A2_MASK) && pt && |
| 242 | (pt->status32 & STATUS_A1_MASK)) { |
| 243 | /*flags &= ~(STATUS_E1_MASK | STATUS_E2_MASK); */ |
| 244 | flags &= ~(STATUS_E1_MASK); |
| 245 | } |
| 246 | } |
| 247 | |
| 248 | arch_local_irq_restore(flags); |
| 249 | } |
| 250 | |
| 251 | #else /* ! CONFIG_ARC_COMPACT_IRQ_LEVELS */ |
| 252 | |
| 253 | /* |
| 254 | * Simpler version for only 1 level of interrupt |
| 255 | * Here we only Worry about Level 1 Bits |
| 256 | */ |
Vineet Gupta | ac4c244 | 2013-01-18 15:12:16 +0530 | [diff] [blame] | 257 | void arch_local_irq_enable(void) |
| 258 | { |
| 259 | unsigned long flags; |
| 260 | |
| 261 | /* |
| 262 | * ARC IDE Drivers tries to re-enable interrupts from hard-isr |
| 263 | * context which is simply wrong |
| 264 | */ |
| 265 | if (in_irq()) { |
| 266 | WARN_ONCE(1, "IRQ enabled from hard-isr"); |
| 267 | return; |
| 268 | } |
| 269 | |
| 270 | flags = arch_local_save_flags(); |
| 271 | flags |= (STATUS_E1_MASK | STATUS_E2_MASK); |
| 272 | arch_local_irq_restore(flags); |
| 273 | } |
Vineet Gupta | 4788a59 | 2013-01-18 15:12:22 +0530 | [diff] [blame] | 274 | #endif |
Vineet Gupta | ac4c244 | 2013-01-18 15:12:16 +0530 | [diff] [blame] | 275 | EXPORT_SYMBOL(arch_local_irq_enable); |