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