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