ARC: [SMP] unify cpu private IRQ requests (TIMER/IPI)
[deliverable/linux.git] / arch / arc / kernel / irq.c
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>
12 #include <linux/of.h>
13 #include <linux/irqdomain.h>
14 #include <linux/irqchip.h>
15 #include "../../drivers/irqchip/irqchip.h"
16 #include <asm/sections.h>
17 #include <asm/irq.h>
18 #include <asm/mach_desc.h>
19
20 /*
21 * Early Hardware specific Interrupt setup
22 * -Called very early (start_kernel -> setup_arch -> setup_processor)
23 * -Platform Independent (must for any ARC700)
24 * -Needed for each CPU (hence not foldable into init_IRQ)
25 *
26 * what it does ?
27 * -Disable all IRQs (on CPU side)
28 * -Optionally, setup the High priority Interrupts as Level 2 IRQs
29 */
30 void arc_init_IRQ(void)
31 {
32 int level_mask = 0;
33
34 /* Disable all IRQs: enable them as devices request */
35 write_aux_reg(AUX_IENABLE, 0);
36
37 /* setup any high priority Interrupts (Level2 in ARCompact jargon) */
38 level_mask |= IS_ENABLED(CONFIG_ARC_IRQ3_LV2) << 3;
39 level_mask |= IS_ENABLED(CONFIG_ARC_IRQ5_LV2) << 5;
40 level_mask |= IS_ENABLED(CONFIG_ARC_IRQ6_LV2) << 6;
41
42 /*
43 * Write to register, even if no LV2 IRQs configured to reset it
44 * in case bootloader had mucked with it
45 */
46 write_aux_reg(AUX_IRQ_LEV, level_mask);
47
48 if (level_mask)
49 pr_info("Level-2 interrupts bitset %x\n", level_mask);
50 }
51
52 /*
53 * ARC700 core includes a simple on-chip intc supporting
54 * -per IRQ enable/disable
55 * -2 levels of interrupts (high/low)
56 * -all interrupts being level triggered
57 *
58 * To reduce platform code, we assume all IRQs directly hooked-up into intc.
59 * Platforms with external intc, hence cascaded IRQs, are free to over-ride
60 * below, per IRQ.
61 */
62
63 static void arc_mask_irq(struct irq_data *data)
64 {
65 arch_mask_irq(data->irq);
66 }
67
68 static void arc_unmask_irq(struct irq_data *data)
69 {
70 arch_unmask_irq(data->irq);
71 }
72
73 static struct irq_chip onchip_intc = {
74 .name = "ARC In-core Intc",
75 .irq_mask = arc_mask_irq,
76 .irq_unmask = arc_unmask_irq,
77 };
78
79 static int arc_intc_domain_map(struct irq_domain *d, unsigned int irq,
80 irq_hw_number_t hw)
81 {
82 if (irq == TIMER0_IRQ)
83 irq_set_chip_and_handler(irq, &onchip_intc, handle_percpu_irq);
84 else
85 irq_set_chip_and_handler(irq, &onchip_intc, handle_level_irq);
86
87 return 0;
88 }
89
90 static const struct irq_domain_ops arc_intc_domain_ops = {
91 .xlate = irq_domain_xlate_onecell,
92 .map = arc_intc_domain_map,
93 };
94
95 static struct irq_domain *root_domain;
96
97 static int __init
98 init_onchip_IRQ(struct device_node *intc, struct device_node *parent)
99 {
100 if (parent)
101 panic("DeviceTree incore intc not a root irq controller\n");
102
103 root_domain = irq_domain_add_legacy(intc, NR_CPU_IRQS, 0, 0,
104 &arc_intc_domain_ops, NULL);
105
106 if (!root_domain)
107 panic("root irq domain not avail\n");
108
109 /* with this we don't need to export root_domain */
110 irq_set_default_host(root_domain);
111
112 return 0;
113 }
114
115 IRQCHIP_DECLARE(arc_intc, "snps,arc700-intc", init_onchip_IRQ);
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 */
123 void __init init_IRQ(void)
124 {
125 /* Any external intc can be setup here */
126 if (machine_desc->init_irq)
127 machine_desc->init_irq();
128
129 /* process the entire interrupt tree in one go */
130 irqchip_init();
131
132 #ifdef CONFIG_SMP
133 /* Master CPU can initialize it's side of IPI */
134 if (machine_desc->init_smp)
135 machine_desc->init_smp(smp_processor_id());
136 #endif
137 }
138
139 /*
140 * "C" Entry point for any ARC ISR, called from low level vector handler
141 * @irq is the vector number read from ICAUSE reg of on-chip intc
142 */
143 void arch_do_IRQ(unsigned int irq, struct pt_regs *regs)
144 {
145 struct pt_regs *old_regs = set_irq_regs(regs);
146
147 irq_enter();
148 generic_handle_irq(irq);
149 irq_exit();
150 set_irq_regs(old_regs);
151 }
152
153 void arc_request_percpu_irq(int irq, int cpu,
154 irqreturn_t (*isr)(int irq, void *dev),
155 const char *irq_nm,
156 void *percpu_dev)
157 {
158 /* Boot cpu calls request, all call enable */
159 if (!cpu) {
160 int rc;
161
162 /*
163 * These 2 calls are essential to making percpu IRQ APIs work
164 * Ideally these details could be hidden in irq chip map function
165 * but the issue is IPIs IRQs being static (non-DT) and platform
166 * specific, so we can't identify them there.
167 */
168 irq_set_percpu_devid(irq);
169 irq_modify_status(irq, IRQ_NOAUTOEN, 0); /* @irq, @clr, @set */
170
171 rc = request_percpu_irq(irq, isr, irq_nm, percpu_dev);
172 if (rc)
173 panic("Percpu IRQ request failed for %d\n", irq);
174 }
175
176 enable_percpu_irq(irq, 0);
177 }
178
179 /*
180 * arch_local_irq_enable - Enable interrupts.
181 *
182 * 1. Explicitly called to re-enable interrupts
183 * 2. Implicitly called from spin_unlock_irq, write_unlock_irq etc
184 * which maybe in hard ISR itself
185 *
186 * Semantics of this function change depending on where it is called from:
187 *
188 * -If called from hard-ISR, it must not invert interrupt priorities
189 * e.g. suppose TIMER is high priority (Level 2) IRQ
190 * Time hard-ISR, timer_interrupt( ) calls spin_unlock_irq several times.
191 * Here local_irq_enable( ) shd not re-enable lower priority interrupts
192 * -If called from soft-ISR, it must re-enable all interrupts
193 * soft ISR are low prioity jobs which can be very slow, thus all IRQs
194 * must be enabled while they run.
195 * Now hardware context wise we may still be in L2 ISR (not done rtie)
196 * still we must re-enable both L1 and L2 IRQs
197 * Another twist is prev scenario with flow being
198 * L1 ISR ==> interrupted by L2 ISR ==> L2 soft ISR
199 * here we must not re-enable Ll as prev Ll Interrupt's h/w context will get
200 * over-written (this is deficiency in ARC700 Interrupt mechanism)
201 */
202
203 #ifdef CONFIG_ARC_COMPACT_IRQ_LEVELS /* Complex version for 2 IRQ levels */
204
205 void arch_local_irq_enable(void)
206 {
207
208 unsigned long flags;
209 flags = arch_local_save_flags();
210
211 /* Allow both L1 and L2 at the onset */
212 flags |= (STATUS_E1_MASK | STATUS_E2_MASK);
213
214 /* Called from hard ISR (between irq_enter and irq_exit) */
215 if (in_irq()) {
216
217 /* If in L2 ISR, don't re-enable any further IRQs as this can
218 * cause IRQ priorities to get upside down. e.g. it could allow
219 * L1 be taken while in L2 hard ISR which is wrong not only in
220 * theory, it can also cause the dreaded L1-L2-L1 scenario
221 */
222 if (flags & STATUS_A2_MASK)
223 flags &= ~(STATUS_E1_MASK | STATUS_E2_MASK);
224
225 /* Even if in L1 ISR, allowe Higher prio L2 IRQs */
226 else if (flags & STATUS_A1_MASK)
227 flags &= ~(STATUS_E1_MASK);
228 }
229
230 /* called from soft IRQ, ideally we want to re-enable all levels */
231
232 else if (in_softirq()) {
233
234 /* However if this is case of L1 interrupted by L2,
235 * re-enabling both may cause whaco L1-L2-L1 scenario
236 * because ARC700 allows level 1 to interrupt an active L2 ISR
237 * Thus we disable both
238 * However some code, executing in soft ISR wants some IRQs
239 * to be enabled so we re-enable L2 only
240 *
241 * How do we determine L1 intr by L2
242 * -A2 is set (means in L2 ISR)
243 * -E1 is set in this ISR's pt_regs->status32 which is
244 * saved copy of status32_l2 when l2 ISR happened
245 */
246 struct pt_regs *pt = get_irq_regs();
247 if ((flags & STATUS_A2_MASK) && pt &&
248 (pt->status32 & STATUS_A1_MASK)) {
249 /*flags &= ~(STATUS_E1_MASK | STATUS_E2_MASK); */
250 flags &= ~(STATUS_E1_MASK);
251 }
252 }
253
254 arch_local_irq_restore(flags);
255 }
256
257 #else /* ! CONFIG_ARC_COMPACT_IRQ_LEVELS */
258
259 /*
260 * Simpler version for only 1 level of interrupt
261 * Here we only Worry about Level 1 Bits
262 */
263 void arch_local_irq_enable(void)
264 {
265 unsigned long flags;
266
267 /*
268 * ARC IDE Drivers tries to re-enable interrupts from hard-isr
269 * context which is simply wrong
270 */
271 if (in_irq()) {
272 WARN_ONCE(1, "IRQ enabled from hard-isr");
273 return;
274 }
275
276 flags = arch_local_save_flags();
277 flags |= (STATUS_E1_MASK | STATUS_E2_MASK);
278 arch_local_irq_restore(flags);
279 }
280 #endif
281 EXPORT_SYMBOL(arch_local_irq_enable);
This page took 0.037362 seconds and 5 git commands to generate.