blob: ca75613231c84474ad276c667eb4cd415027532e [file] [log] [blame]
Bryan Wu1394f032007-05-06 14:50:22 -07001/*
Robin Getz96f10502009-09-24 14:11:24 +00002 * Set up the interrupt priorities
Bryan Wu1394f032007-05-06 14:50:22 -07003 *
Robin Getz96f10502009-09-24 14:11:24 +00004 * Copyright 2004-2009 Analog Devices Inc.
5 * 2003 Bas Vermeulen <bas@buyways.nl>
6 * 2002 Arcturus Networks Inc. MaTed <mated@sympatico.ca>
7 * 2000-2001 Lineo, Inc. D. Jefff Dionne <jeff@lineo.ca>
8 * 1999 D. Jeff Dionne <jeff@uclinux.org>
9 * 1996 Roman Zippel
Bryan Wu1394f032007-05-06 14:50:22 -070010 *
Robin Getz96f10502009-09-24 14:11:24 +000011 * Licensed under the GPL-2
Bryan Wu1394f032007-05-06 14:50:22 -070012 */
13
14#include <linux/module.h>
15#include <linux/kernel_stat.h>
16#include <linux/seq_file.h>
17#include <linux/irq.h>
Philippe Gerum5b5da4c2011-03-17 02:12:48 -040018#include <linux/sched.h>
Steven Miao4f6b6002012-05-16 17:56:51 +080019#include <linux/syscore_ops.h>
20#include <asm/delay.h>
Yi Li6a01f232009-01-07 23:14:39 +080021#ifdef CONFIG_IPIPE
22#include <linux/ipipe.h>
23#endif
Bryan Wu1394f032007-05-06 14:50:22 -070024#include <asm/traps.h>
25#include <asm/blackfin.h>
26#include <asm/gpio.h>
27#include <asm/irq_handler.h>
Mike Frysinger761ec442009-10-15 17:12:05 +000028#include <asm/dpmc.h>
Sonic Zhang06051fd2012-07-04 19:22:55 +080029#include <asm/traps.h>
Bryan Wu1394f032007-05-06 14:50:22 -070030
Bryan Wu1394f032007-05-06 14:50:22 -070031/*
32 * NOTES:
33 * - we have separated the physical Hardware interrupt from the
34 * levels that the LINUX kernel sees (see the description in irq.h)
35 * -
36 */
37
Graf Yang6b3087c2009-01-07 23:14:39 +080038#ifndef CONFIG_SMP
Mike Frysingera99bbcc2007-10-22 00:19:31 +080039/* Initialize this to an actual value to force it into the .data
40 * section so that we know it is properly initialized at entry into
41 * the kernel but before bss is initialized to zero (which is where
42 * it would live otherwise). The 0x1f magic represents the IRQs we
43 * cannot actually mask out in hardware.
44 */
Mike Frysinger40059782008-11-18 17:48:22 +080045unsigned long bfin_irq_flags = 0x1f;
46EXPORT_SYMBOL(bfin_irq_flags);
Graf Yang6b3087c2009-01-07 23:14:39 +080047#endif
Bryan Wu1394f032007-05-06 14:50:22 -070048
Michael Hennerichcfefe3c2008-02-09 04:12:37 +080049#ifdef CONFIG_PM
50unsigned long bfin_sic_iwr[3]; /* Up to 3 SIC_IWRx registers */
Michael Hennerich4a88d0c2008-08-05 17:38:41 +080051unsigned vr_wakeup;
Michael Hennerichcfefe3c2008-02-09 04:12:37 +080052#endif
53
Sonic Zhang11b27cb2012-06-28 19:16:48 +080054#ifndef SEC_GCTL
Mike Frysingere9e334c2011-03-30 00:43:52 -040055static struct ivgx {
Michael Hennerich464abc52008-02-25 13:50:20 +080056 /* irq number for request_irq, available in mach-bf5xx/irq.h */
Roy Huang24a07a12007-07-12 22:41:45 +080057 unsigned int irqno;
Bryan Wu1394f032007-05-06 14:50:22 -070058 /* corresponding bit in the SIC_ISR register */
Roy Huang24a07a12007-07-12 22:41:45 +080059 unsigned int isrflag;
Bryan Wu1394f032007-05-06 14:50:22 -070060} ivg_table[NR_PERI_INTS];
61
Mike Frysingere9e334c2011-03-30 00:43:52 -040062static struct ivg_slice {
Bryan Wu1394f032007-05-06 14:50:22 -070063 /* position of first irq in ivg_table for given ivg */
64 struct ivgx *ifirst;
65 struct ivgx *istop;
66} ivg7_13[IVG13 - IVG7 + 1];
67
Bryan Wu1394f032007-05-06 14:50:22 -070068
69/*
70 * Search SIC_IAR and fill tables with the irqvalues
71 * and their positions in the SIC_ISR register.
72 */
73static void __init search_IAR(void)
74{
75 unsigned ivg, irq_pos = 0;
76 for (ivg = 0; ivg <= IVG13 - IVG7; ivg++) {
Mike Frysinger80fcdb92010-04-22 21:15:00 +000077 int irqN;
Bryan Wu1394f032007-05-06 14:50:22 -070078
Michael Hennerich34e0fc82007-07-12 16:17:18 +080079 ivg7_13[ivg].istop = ivg7_13[ivg].ifirst = &ivg_table[irq_pos];
Bryan Wu1394f032007-05-06 14:50:22 -070080
Mike Frysinger80fcdb92010-04-22 21:15:00 +000081 for (irqN = 0; irqN < NR_PERI_INTS; irqN += 4) {
82 int irqn;
Steven Miao4f6b6002012-05-16 17:56:51 +080083 u32 iar =
84 bfin_read32((unsigned long *)SIC_IAR0 +
Mike Frysinger80fcdb92010-04-22 21:15:00 +000085#if defined(CONFIG_BF51x) || defined(CONFIG_BF52x) || \
86 defined(CONFIG_BF538) || defined(CONFIG_BF539)
87 ((irqN % 32) >> 3) + ((irqN / 32) * ((SIC_IAR4 - SIC_IAR0) / 4))
Michael Hennerich59003142007-10-21 16:54:27 +080088#else
Mike Frysinger80fcdb92010-04-22 21:15:00 +000089 (irqN >> 3)
Michael Hennerich59003142007-10-21 16:54:27 +080090#endif
Mike Frysinger80fcdb92010-04-22 21:15:00 +000091 );
Mike Frysinger80fcdb92010-04-22 21:15:00 +000092 for (irqn = irqN; irqn < irqN + 4; ++irqn) {
93 int iar_shift = (irqn & 7) * 4;
94 if (ivg == (0xf & (iar >> iar_shift))) {
95 ivg_table[irq_pos].irqno = IVG7 + irqn;
96 ivg_table[irq_pos].isrflag = 1 << (irqn % 32);
97 ivg7_13[ivg].istop++;
98 irq_pos++;
99 }
Bryan Wu1394f032007-05-06 14:50:22 -0700100 }
101 }
102 }
103}
Steven Miao4f6b6002012-05-16 17:56:51 +0800104#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700105
106/*
Michael Hennerich464abc52008-02-25 13:50:20 +0800107 * This is for core internal IRQs
Bryan Wu1394f032007-05-06 14:50:22 -0700108 */
Mike Frysingerf58c3272011-04-15 03:08:20 -0400109void bfin_ack_noop(struct irq_data *d)
Bryan Wu1394f032007-05-06 14:50:22 -0700110{
111 /* Dummy function. */
112}
113
Thomas Gleixner4f19ea42011-02-06 18:23:27 +0000114static void bfin_core_mask_irq(struct irq_data *d)
Bryan Wu1394f032007-05-06 14:50:22 -0700115{
Thomas Gleixner4f19ea42011-02-06 18:23:27 +0000116 bfin_irq_flags &= ~(1 << d->irq);
David Howells3b139cd2010-10-07 14:08:52 +0100117 if (!hard_irqs_disabled())
118 hard_local_irq_enable();
Bryan Wu1394f032007-05-06 14:50:22 -0700119}
120
Thomas Gleixner4f19ea42011-02-06 18:23:27 +0000121static void bfin_core_unmask_irq(struct irq_data *d)
Bryan Wu1394f032007-05-06 14:50:22 -0700122{
Thomas Gleixner4f19ea42011-02-06 18:23:27 +0000123 bfin_irq_flags |= 1 << d->irq;
Bryan Wu1394f032007-05-06 14:50:22 -0700124 /*
125 * If interrupts are enabled, IMASK must contain the same value
Mike Frysinger40059782008-11-18 17:48:22 +0800126 * as bfin_irq_flags. Make sure that invariant holds. If interrupts
Bryan Wu1394f032007-05-06 14:50:22 -0700127 * are currently disabled we need not do anything; one of the
128 * callers will take care of setting IMASK to the proper value
129 * when reenabling interrupts.
Mike Frysinger40059782008-11-18 17:48:22 +0800130 * local_irq_enable just does "STI bfin_irq_flags", so it's exactly
Bryan Wu1394f032007-05-06 14:50:22 -0700131 * what we need.
132 */
David Howells3b139cd2010-10-07 14:08:52 +0100133 if (!hard_irqs_disabled())
134 hard_local_irq_enable();
Bryan Wu1394f032007-05-06 14:50:22 -0700135 return;
136}
137
Sonic Zhang86794b42012-12-14 11:19:24 +0800138#ifndef SEC_GCTL
Mike Frysingerf58c3272011-04-15 03:08:20 -0400139void bfin_internal_mask_irq(unsigned int irq)
Bryan Wu1394f032007-05-06 14:50:22 -0700140{
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400141 unsigned long flags = hard_local_irq_save();
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400142#ifdef SIC_IMASK0
Sonic Zhang86794b42012-12-14 11:19:24 +0800143 unsigned mask_bank = BFIN_SYSIRQ(irq) / 32;
144 unsigned mask_bit = BFIN_SYSIRQ(irq) % 32;
Bryan Wuc04d66b2007-07-12 17:26:31 +0800145 bfin_write_SIC_IMASK(mask_bank, bfin_read_SIC_IMASK(mask_bank) &
Steven Miao4f6b6002012-05-16 17:56:51 +0800146 ~(1 << mask_bit));
147# if defined(CONFIG_SMP) || defined(CONFIG_ICC)
Graf Yang6b3087c2009-01-07 23:14:39 +0800148 bfin_write_SICB_IMASK(mask_bank, bfin_read_SICB_IMASK(mask_bank) &
Steven Miao4f6b6002012-05-16 17:56:51 +0800149 ~(1 << mask_bit));
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400150# endif
151#else
152 bfin_write_SIC_IMASK(bfin_read_SIC_IMASK() &
Sonic Zhang86794b42012-12-14 11:19:24 +0800153 ~(1 << BFIN_SYSIRQ(irq)));
Steven Miao4f6b6002012-05-16 17:56:51 +0800154#endif /* end of SIC_IMASK0 */
David Howells3b139cd2010-10-07 14:08:52 +0100155 hard_local_irq_restore(flags);
Bryan Wu1394f032007-05-06 14:50:22 -0700156}
157
Thomas Gleixnerff43a672011-02-06 18:23:29 +0000158static void bfin_internal_mask_irq_chip(struct irq_data *d)
159{
160 bfin_internal_mask_irq(d->irq);
161}
162
Sonic Zhang0325f252009-12-28 07:29:57 +0000163#ifdef CONFIG_SMP
Steven Miao4f6b6002012-05-16 17:56:51 +0800164void bfin_internal_unmask_irq_affinity(unsigned int irq,
Sonic Zhang0325f252009-12-28 07:29:57 +0000165 const struct cpumask *affinity)
166#else
Mike Frysingerf58c3272011-04-15 03:08:20 -0400167void bfin_internal_unmask_irq(unsigned int irq)
Sonic Zhang0325f252009-12-28 07:29:57 +0000168#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700169{
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400170 unsigned long flags = hard_local_irq_save();
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800171
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400172#ifdef SIC_IMASK0
Sonic Zhang86794b42012-12-14 11:19:24 +0800173 unsigned mask_bank = BFIN_SYSIRQ(irq) / 32;
174 unsigned mask_bit = BFIN_SYSIRQ(irq) % 32;
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400175# ifdef CONFIG_SMP
Sonic Zhang0325f252009-12-28 07:29:57 +0000176 if (cpumask_test_cpu(0, affinity))
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400177# endif
Sonic Zhang0325f252009-12-28 07:29:57 +0000178 bfin_write_SIC_IMASK(mask_bank,
Steven Miao4f6b6002012-05-16 17:56:51 +0800179 bfin_read_SIC_IMASK(mask_bank) |
180 (1 << mask_bit));
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400181# ifdef CONFIG_SMP
Sonic Zhang0325f252009-12-28 07:29:57 +0000182 if (cpumask_test_cpu(1, affinity))
183 bfin_write_SICB_IMASK(mask_bank,
Steven Miao4f6b6002012-05-16 17:56:51 +0800184 bfin_read_SICB_IMASK(mask_bank) |
185 (1 << mask_bit));
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400186# endif
187#else
188 bfin_write_SIC_IMASK(bfin_read_SIC_IMASK() |
Sonic Zhang86794b42012-12-14 11:19:24 +0800189 (1 << BFIN_SYSIRQ(irq)));
Steven Miao4f6b6002012-05-16 17:56:51 +0800190#endif
191 hard_local_irq_restore(flags);
192}
193
Sonic Zhang86794b42012-12-14 11:19:24 +0800194#ifdef CONFIG_SMP
195static void bfin_internal_unmask_irq_chip(struct irq_data *d)
196{
197 bfin_internal_unmask_irq_affinity(d->irq, d->affinity);
198}
199
200static int bfin_internal_set_affinity(struct irq_data *d,
201 const struct cpumask *mask, bool force)
202{
203 bfin_internal_mask_irq(d->irq);
204 bfin_internal_unmask_irq_affinity(d->irq, mask);
205
206 return 0;
207}
208#else
209static void bfin_internal_unmask_irq_chip(struct irq_data *d)
210{
211 bfin_internal_unmask_irq(d->irq);
212}
213#endif
214
215#if defined(CONFIG_PM)
216int bfin_internal_set_wake(unsigned int irq, unsigned int state)
217{
218 u32 bank, bit, wakeup = 0;
219 unsigned long flags;
220 bank = BFIN_SYSIRQ(irq) / 32;
221 bit = BFIN_SYSIRQ(irq) % 32;
222
223 switch (irq) {
224#ifdef IRQ_RTC
225 case IRQ_RTC:
226 wakeup |= WAKE;
227 break;
228#endif
229#ifdef IRQ_CAN0_RX
230 case IRQ_CAN0_RX:
231 wakeup |= CANWE;
232 break;
233#endif
234#ifdef IRQ_CAN1_RX
235 case IRQ_CAN1_RX:
236 wakeup |= CANWE;
237 break;
238#endif
239#ifdef IRQ_USB_INT0
240 case IRQ_USB_INT0:
241 wakeup |= USBWE;
242 break;
243#endif
244#ifdef CONFIG_BF54x
245 case IRQ_CNT:
246 wakeup |= ROTWE;
247 break;
248#endif
249 default:
250 break;
251 }
252
253 flags = hard_local_irq_save();
254
255 if (state) {
256 bfin_sic_iwr[bank] |= (1 << bit);
257 vr_wakeup |= wakeup;
258
259 } else {
260 bfin_sic_iwr[bank] &= ~(1 << bit);
261 vr_wakeup &= ~wakeup;
262 }
263
264 hard_local_irq_restore(flags);
265
266 return 0;
267}
268
269static int bfin_internal_set_wake_chip(struct irq_data *d, unsigned int state)
270{
271 return bfin_internal_set_wake(d->irq, state);
272}
273#else
274inline int bfin_internal_set_wake(unsigned int irq, unsigned int state)
275{
276 return 0;
277}
278# define bfin_internal_set_wake_chip NULL
279#endif
280
281#else /* SEC_GCTL */
Steven Miao4f6b6002012-05-16 17:56:51 +0800282static void bfin_sec_preflow_handler(struct irq_data *d)
283{
284 unsigned long flags = hard_local_irq_save();
Sonic Zhang86794b42012-12-14 11:19:24 +0800285 unsigned int sid = BFIN_SYSIRQ(d->irq);
Steven Miao4f6b6002012-05-16 17:56:51 +0800286
287 bfin_write_SEC_SCI(0, SEC_CSID, sid);
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400288
David Howells3b139cd2010-10-07 14:08:52 +0100289 hard_local_irq_restore(flags);
Bryan Wu1394f032007-05-06 14:50:22 -0700290}
291
Steven Miao4f6b6002012-05-16 17:56:51 +0800292static void bfin_sec_mask_ack_irq(struct irq_data *d)
293{
294 unsigned long flags = hard_local_irq_save();
Sonic Zhang86794b42012-12-14 11:19:24 +0800295 unsigned int sid = BFIN_SYSIRQ(d->irq);
Steven Miao4f6b6002012-05-16 17:56:51 +0800296
297 bfin_write_SEC_SCI(0, SEC_CSID, sid);
298
299 hard_local_irq_restore(flags);
300}
301
302static void bfin_sec_unmask_irq(struct irq_data *d)
303{
304 unsigned long flags = hard_local_irq_save();
Sonic Zhang86794b42012-12-14 11:19:24 +0800305 unsigned int sid = BFIN_SYSIRQ(d->irq);
Steven Miao4f6b6002012-05-16 17:56:51 +0800306
307 bfin_write32(SEC_END, sid);
308
309 hard_local_irq_restore(flags);
310}
311
312static void bfin_sec_enable_ssi(unsigned int sid)
313{
314 unsigned long flags = hard_local_irq_save();
315 uint32_t reg_sctl = bfin_read_SEC_SCTL(sid);
316
317 reg_sctl |= SEC_SCTL_SRC_EN;
318 bfin_write_SEC_SCTL(sid, reg_sctl);
319
320 hard_local_irq_restore(flags);
321}
322
323static void bfin_sec_disable_ssi(unsigned int sid)
324{
325 unsigned long flags = hard_local_irq_save();
326 uint32_t reg_sctl = bfin_read_SEC_SCTL(sid);
327
328 reg_sctl &= ((uint32_t)~SEC_SCTL_SRC_EN);
329 bfin_write_SEC_SCTL(sid, reg_sctl);
330
331 hard_local_irq_restore(flags);
332}
333
334static void bfin_sec_set_ssi_coreid(unsigned int sid, unsigned int coreid)
335{
336 unsigned long flags = hard_local_irq_save();
337 uint32_t reg_sctl = bfin_read_SEC_SCTL(sid);
338
339 reg_sctl &= ((uint32_t)~SEC_SCTL_CTG);
340 bfin_write_SEC_SCTL(sid, reg_sctl | ((coreid << 20) & SEC_SCTL_CTG));
341
342 hard_local_irq_restore(flags);
343}
344
345static void bfin_sec_enable_sci(unsigned int sid)
346{
347 unsigned long flags = hard_local_irq_save();
348 uint32_t reg_sctl = bfin_read_SEC_SCTL(sid);
349
Sonic Zhang86794b42012-12-14 11:19:24 +0800350 if (sid == BFIN_SYSIRQ(IRQ_WATCH0))
Steven Miao4f6b6002012-05-16 17:56:51 +0800351 reg_sctl |= SEC_SCTL_FAULT_EN;
352 else
353 reg_sctl |= SEC_SCTL_INT_EN;
354 bfin_write_SEC_SCTL(sid, reg_sctl);
355
356 hard_local_irq_restore(flags);
357}
358
359static void bfin_sec_disable_sci(unsigned int sid)
360{
361 unsigned long flags = hard_local_irq_save();
362 uint32_t reg_sctl = bfin_read_SEC_SCTL(sid);
363
364 reg_sctl &= ((uint32_t)~SEC_SCTL_INT_EN);
365 bfin_write_SEC_SCTL(sid, reg_sctl);
366
367 hard_local_irq_restore(flags);
368}
369
370static void bfin_sec_enable(struct irq_data *d)
371{
372 unsigned long flags = hard_local_irq_save();
Sonic Zhang86794b42012-12-14 11:19:24 +0800373 unsigned int sid = BFIN_SYSIRQ(d->irq);
Steven Miao4f6b6002012-05-16 17:56:51 +0800374
375 bfin_sec_enable_sci(sid);
376 bfin_sec_enable_ssi(sid);
377
378 hard_local_irq_restore(flags);
379}
380
381static void bfin_sec_disable(struct irq_data *d)
382{
383 unsigned long flags = hard_local_irq_save();
Sonic Zhang86794b42012-12-14 11:19:24 +0800384 unsigned int sid = BFIN_SYSIRQ(d->irq);
Steven Miao4f6b6002012-05-16 17:56:51 +0800385
386 bfin_sec_disable_sci(sid);
387 bfin_sec_disable_ssi(sid);
388
389 hard_local_irq_restore(flags);
390}
391
Sonic Zhange0a59312012-06-29 18:19:29 +0800392static void bfin_sec_set_priority(unsigned int sec_int_levels, u8 *sec_int_priority)
393{
394 unsigned long flags = hard_local_irq_save();
395 uint32_t reg_sctl;
396 int i;
397
398 bfin_write_SEC_SCI(0, SEC_CPLVL, sec_int_levels);
399
400 for (i = 0; i < SYS_IRQS - BFIN_IRQ(0); i++) {
401 reg_sctl = bfin_read_SEC_SCTL(i) & ~SEC_SCTL_PRIO;
402 reg_sctl |= sec_int_priority[i] << SEC_SCTL_PRIO_OFFSET;
403 bfin_write_SEC_SCTL(i, reg_sctl);
404 }
405
406 hard_local_irq_restore(flags);
407}
408
Sonic Zhang86794b42012-12-14 11:19:24 +0800409void bfin_sec_raise_irq(unsigned int irq)
Steven Miao4f6b6002012-05-16 17:56:51 +0800410{
411 unsigned long flags = hard_local_irq_save();
Sonic Zhang86794b42012-12-14 11:19:24 +0800412 unsigned int sid = BFIN_SYSIRQ(irq);
Steven Miao4f6b6002012-05-16 17:56:51 +0800413
414 bfin_write32(SEC_RAISE, sid);
415
416 hard_local_irq_restore(flags);
417}
418
419static void init_software_driven_irq(void)
420{
421 bfin_sec_set_ssi_coreid(34, 0);
422 bfin_sec_set_ssi_coreid(35, 1);
Sonic Zhang86794b42012-12-14 11:19:24 +0800423
424 bfin_sec_enable_sci(35);
425 bfin_sec_enable_ssi(35);
Steven Miao4f6b6002012-05-16 17:56:51 +0800426 bfin_sec_set_ssi_coreid(36, 0);
427 bfin_sec_set_ssi_coreid(37, 1);
Sonic Zhang86794b42012-12-14 11:19:24 +0800428 bfin_sec_enable_sci(37);
429 bfin_sec_enable_ssi(37);
Steven Miao4f6b6002012-05-16 17:56:51 +0800430}
431
432void bfin_sec_resume(void)
433{
434 bfin_write_SEC_SCI(0, SEC_CCTL, SEC_CCTL_RESET);
435 udelay(100);
436 bfin_write_SEC_GCTL(SEC_GCTL_EN);
437 bfin_write_SEC_SCI(0, SEC_CCTL, SEC_CCTL_EN | SEC_CCTL_NMI_EN);
438}
439
440void handle_sec_sfi_fault(uint32_t gstat)
441{
442
443}
444
445void handle_sec_sci_fault(uint32_t gstat)
446{
447 uint32_t core_id;
448 uint32_t cstat;
449
450 core_id = gstat & SEC_GSTAT_SCI;
451 cstat = bfin_read_SEC_SCI(core_id, SEC_CSTAT);
452 if (cstat & SEC_CSTAT_ERR) {
453 switch (cstat & SEC_CSTAT_ERRC) {
454 case SEC_CSTAT_ACKERR:
455 printk(KERN_DEBUG "sec ack err\n");
456 break;
457 default:
458 printk(KERN_DEBUG "sec sci unknow err\n");
459 }
460 }
461
462}
463
464void handle_sec_ssi_fault(uint32_t gstat)
465{
466 uint32_t sid;
467 uint32_t sstat;
468
469 sid = gstat & SEC_GSTAT_SID;
470 sstat = bfin_read_SEC_SSTAT(sid);
471
472}
473
474void handle_sec_fault(unsigned int irq, struct irq_desc *desc)
475{
476 uint32_t sec_gstat;
477
478 raw_spin_lock(&desc->lock);
479
480 sec_gstat = bfin_read32(SEC_GSTAT);
481 if (sec_gstat & SEC_GSTAT_ERR) {
482
483 switch (sec_gstat & SEC_GSTAT_ERRC) {
484 case 0:
485 handle_sec_sfi_fault(sec_gstat);
486 break;
487 case SEC_GSTAT_SCIERR:
488 handle_sec_sci_fault(sec_gstat);
489 break;
490 case SEC_GSTAT_SSIERR:
491 handle_sec_ssi_fault(sec_gstat);
492 break;
493 }
494
495
496 }
497
498 raw_spin_unlock(&desc->lock);
Sonic Zhang86794b42012-12-14 11:19:24 +0800499
500 handle_fasteoi_irq(irq, desc);
Steven Miao4f6b6002012-05-16 17:56:51 +0800501}
502
Sonic Zhang06051fd2012-07-04 19:22:55 +0800503void handle_core_fault(unsigned int irq, struct irq_desc *desc)
504{
505 struct pt_regs *fp = get_irq_regs();
506
507 raw_spin_lock(&desc->lock);
508
509 switch (irq) {
510 case IRQ_C0_DBL_FAULT:
511 double_fault_c(fp);
512 break;
513 case IRQ_C0_HW_ERR:
514 dump_bfin_process(fp);
515 dump_bfin_mem(fp);
516 show_regs(fp);
517 printk(KERN_NOTICE "Kernel Stack\n");
518 show_stack(current, NULL);
519 print_modules();
Sonic Zhang86794b42012-12-14 11:19:24 +0800520 panic("Core 0 hardware error");
Sonic Zhang06051fd2012-07-04 19:22:55 +0800521 break;
522 case IRQ_C0_NMI_L1_PARITY_ERR:
Sonic Zhang86794b42012-12-14 11:19:24 +0800523 panic("Core 0 NMI L1 parity error");
Sonic Zhang06051fd2012-07-04 19:22:55 +0800524 break;
525 default:
Sonic Zhang86794b42012-12-14 11:19:24 +0800526 panic("Core 1 fault %d occurs unexpectedly", irq);
Sonic Zhang06051fd2012-07-04 19:22:55 +0800527 }
528
529 raw_spin_unlock(&desc->lock);
530}
Sonic Zhang86794b42012-12-14 11:19:24 +0800531#endif /* SEC_GCTL */
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800532
Bryan Wu1394f032007-05-06 14:50:22 -0700533static struct irq_chip bfin_core_irqchip = {
Graf Yang763e63c2008-10-08 17:08:15 +0800534 .name = "CORE",
Thomas Gleixner4f19ea42011-02-06 18:23:27 +0000535 .irq_mask = bfin_core_mask_irq,
536 .irq_unmask = bfin_core_unmask_irq,
Bryan Wu1394f032007-05-06 14:50:22 -0700537};
538
Sonic Zhang86794b42012-12-14 11:19:24 +0800539#ifndef SEC_GCTL
Bryan Wu1394f032007-05-06 14:50:22 -0700540static struct irq_chip bfin_internal_irqchip = {
Graf Yang763e63c2008-10-08 17:08:15 +0800541 .name = "INTN",
Thomas Gleixnerff43a672011-02-06 18:23:29 +0000542 .irq_mask = bfin_internal_mask_irq_chip,
543 .irq_unmask = bfin_internal_unmask_irq_chip,
Thomas Gleixnerff43a672011-02-06 18:23:29 +0000544 .irq_disable = bfin_internal_mask_irq_chip,
545 .irq_enable = bfin_internal_unmask_irq_chip,
Sonic Zhang0325f252009-12-28 07:29:57 +0000546#ifdef CONFIG_SMP
Thomas Gleixnerff43a672011-02-06 18:23:29 +0000547 .irq_set_affinity = bfin_internal_set_affinity,
Sonic Zhang0325f252009-12-28 07:29:57 +0000548#endif
Thomas Gleixnerff43a672011-02-06 18:23:29 +0000549 .irq_set_wake = bfin_internal_set_wake_chip,
Bryan Wu1394f032007-05-06 14:50:22 -0700550};
Sonic Zhang86794b42012-12-14 11:19:24 +0800551#else
Steven Miao4f6b6002012-05-16 17:56:51 +0800552static struct irq_chip bfin_sec_irqchip = {
553 .name = "SEC",
554 .irq_mask_ack = bfin_sec_mask_ack_irq,
555 .irq_mask = bfin_sec_mask_ack_irq,
556 .irq_unmask = bfin_sec_unmask_irq,
557 .irq_eoi = bfin_sec_unmask_irq,
558 .irq_disable = bfin_sec_disable,
559 .irq_enable = bfin_sec_enable,
560};
561#endif
562
Mike Frysingerf58c3272011-04-15 03:08:20 -0400563void bfin_handle_irq(unsigned irq)
Yi Li6a01f232009-01-07 23:14:39 +0800564{
565#ifdef CONFIG_IPIPE
566 struct pt_regs regs; /* Contents not used. */
567 ipipe_trace_irq_entry(irq);
568 __ipipe_handle_irq(irq, &regs);
569 ipipe_trace_irq_exit(irq);
570#else /* !CONFIG_IPIPE */
Thomas Gleixnerb10bbbb2011-02-06 18:23:25 +0000571 generic_handle_irq(irq);
Yi Li6a01f232009-01-07 23:14:39 +0800572#endif /* !CONFIG_IPIPE */
573}
574
Michael Hennerichaec59c92010-02-19 15:09:10 +0000575#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
576static int mac_stat_int_mask;
577
578static void bfin_mac_status_ack_irq(unsigned int irq)
579{
580 switch (irq) {
581 case IRQ_MAC_MMCINT:
582 bfin_write_EMAC_MMC_TIRQS(
583 bfin_read_EMAC_MMC_TIRQE() &
584 bfin_read_EMAC_MMC_TIRQS());
585 bfin_write_EMAC_MMC_RIRQS(
586 bfin_read_EMAC_MMC_RIRQE() &
587 bfin_read_EMAC_MMC_RIRQS());
588 break;
589 case IRQ_MAC_RXFSINT:
590 bfin_write_EMAC_RX_STKY(
591 bfin_read_EMAC_RX_IRQE() &
592 bfin_read_EMAC_RX_STKY());
593 break;
594 case IRQ_MAC_TXFSINT:
595 bfin_write_EMAC_TX_STKY(
596 bfin_read_EMAC_TX_IRQE() &
597 bfin_read_EMAC_TX_STKY());
598 break;
599 case IRQ_MAC_WAKEDET:
600 bfin_write_EMAC_WKUP_CTL(
601 bfin_read_EMAC_WKUP_CTL() | MPKS | RWKS);
602 break;
603 default:
604 /* These bits are W1C */
605 bfin_write_EMAC_SYSTAT(1L << (irq - IRQ_MAC_PHYINT));
606 break;
607 }
608}
609
Thomas Gleixner172d2d12011-02-06 18:23:34 +0000610static void bfin_mac_status_mask_irq(struct irq_data *d)
Michael Hennerichaec59c92010-02-19 15:09:10 +0000611{
Thomas Gleixner172d2d12011-02-06 18:23:34 +0000612 unsigned int irq = d->irq;
613
Michael Hennerichaec59c92010-02-19 15:09:10 +0000614 mac_stat_int_mask &= ~(1L << (irq - IRQ_MAC_PHYINT));
Mike Frysingerf58c3272011-04-15 03:08:20 -0400615#ifdef BF537_FAMILY
Michael Hennerichaec59c92010-02-19 15:09:10 +0000616 switch (irq) {
617 case IRQ_MAC_PHYINT:
618 bfin_write_EMAC_SYSCTL(bfin_read_EMAC_SYSCTL() & ~PHYIE);
619 break;
620 default:
621 break;
622 }
623#else
624 if (!mac_stat_int_mask)
625 bfin_internal_mask_irq(IRQ_MAC_ERROR);
626#endif
627 bfin_mac_status_ack_irq(irq);
628}
629
Thomas Gleixner172d2d12011-02-06 18:23:34 +0000630static void bfin_mac_status_unmask_irq(struct irq_data *d)
Michael Hennerichaec59c92010-02-19 15:09:10 +0000631{
Thomas Gleixner172d2d12011-02-06 18:23:34 +0000632 unsigned int irq = d->irq;
633
Mike Frysingerf58c3272011-04-15 03:08:20 -0400634#ifdef BF537_FAMILY
Michael Hennerichaec59c92010-02-19 15:09:10 +0000635 switch (irq) {
636 case IRQ_MAC_PHYINT:
637 bfin_write_EMAC_SYSCTL(bfin_read_EMAC_SYSCTL() | PHYIE);
638 break;
639 default:
640 break;
641 }
642#else
643 if (!mac_stat_int_mask)
644 bfin_internal_unmask_irq(IRQ_MAC_ERROR);
645#endif
646 mac_stat_int_mask |= 1L << (irq - IRQ_MAC_PHYINT);
647}
648
649#ifdef CONFIG_PM
Thomas Gleixner172d2d12011-02-06 18:23:34 +0000650int bfin_mac_status_set_wake(struct irq_data *d, unsigned int state)
Michael Hennerichaec59c92010-02-19 15:09:10 +0000651{
Mike Frysingerf58c3272011-04-15 03:08:20 -0400652#ifdef BF537_FAMILY
Michael Hennerichaec59c92010-02-19 15:09:10 +0000653 return bfin_internal_set_wake(IRQ_GENERIC_ERROR, state);
654#else
655 return bfin_internal_set_wake(IRQ_MAC_ERROR, state);
656#endif
657}
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400658#else
659# define bfin_mac_status_set_wake NULL
Michael Hennerichaec59c92010-02-19 15:09:10 +0000660#endif
661
662static struct irq_chip bfin_mac_status_irqchip = {
663 .name = "MACST",
Thomas Gleixner172d2d12011-02-06 18:23:34 +0000664 .irq_mask = bfin_mac_status_mask_irq,
665 .irq_unmask = bfin_mac_status_unmask_irq,
Thomas Gleixner172d2d12011-02-06 18:23:34 +0000666 .irq_set_wake = bfin_mac_status_set_wake,
Michael Hennerichaec59c92010-02-19 15:09:10 +0000667};
668
Mike Frysingerf58c3272011-04-15 03:08:20 -0400669void bfin_demux_mac_status_irq(unsigned int int_err_irq,
670 struct irq_desc *inta_desc)
Michael Hennerichaec59c92010-02-19 15:09:10 +0000671{
672 int i, irq = 0;
673 u32 status = bfin_read_EMAC_SYSTAT();
674
Michael Hennerichbedeea62010-08-20 11:59:27 +0000675 for (i = 0; i <= (IRQ_MAC_STMDONE - IRQ_MAC_PHYINT); i++)
Michael Hennerichaec59c92010-02-19 15:09:10 +0000676 if (status & (1L << i)) {
677 irq = IRQ_MAC_PHYINT + i;
678 break;
679 }
680
681 if (irq) {
682 if (mac_stat_int_mask & (1L << (irq - IRQ_MAC_PHYINT))) {
683 bfin_handle_irq(irq);
684 } else {
685 bfin_mac_status_ack_irq(irq);
686 pr_debug("IRQ %d:"
Steven Miao4f6b6002012-05-16 17:56:51 +0800687 " MASKED MAC ERROR INTERRUPT ASSERTED\n",
688 irq);
Michael Hennerichaec59c92010-02-19 15:09:10 +0000689 }
690 } else
691 printk(KERN_ERR
Steven Miao4f6b6002012-05-16 17:56:51 +0800692 "%s : %s : LINE %d :\nIRQ ?: MAC ERROR"
693 " INTERRUPT ASSERTED BUT NO SOURCE FOUND"
694 "(EMAC_SYSTAT=0x%X)\n",
695 __func__, __FILE__, __LINE__, status);
Michael Hennerichaec59c92010-02-19 15:09:10 +0000696}
697#endif
698
Graf Yangbfd15112008-10-08 18:02:44 +0800699static inline void bfin_set_irq_handler(unsigned irq, irq_flow_handler_t handle)
700{
Yi Li6a01f232009-01-07 23:14:39 +0800701#ifdef CONFIG_IPIPE
Philippe Gerum5b5da4c2011-03-17 02:12:48 -0400702 handle = handle_level_irq;
Yi Li6a01f232009-01-07 23:14:39 +0800703#endif
Thomas Gleixner43f2f112011-03-24 17:22:30 +0100704 __irq_set_handler_locked(irq, handle);
Graf Yangbfd15112008-10-08 18:02:44 +0800705}
706
Sonic Zhang54e4ff42013-05-30 18:37:28 +0800707#ifdef CONFIG_GPIO_ADI
Michael Hennerich6fce6a82007-12-24 16:56:12 +0800708
Sonic Zhang54e4ff42013-05-30 18:37:28 +0800709static DECLARE_BITMAP(gpio_enabled, MAX_BLACKFIN_GPIOS);
Michael Hennerich8d022372008-11-18 17:48:22 +0800710
Thomas Gleixnere9502852011-02-06 18:23:36 +0000711static void bfin_gpio_ack_irq(struct irq_data *d)
Bryan Wu1394f032007-05-06 14:50:22 -0700712{
Michael Hennerich8d022372008-11-18 17:48:22 +0800713 /* AFAIK ack_irq in case mask_ack is provided
714 * get's only called for edge sense irqs
715 */
Thomas Gleixnere9502852011-02-06 18:23:36 +0000716 set_gpio_data(irq_to_gpio(d->irq), 0);
Bryan Wu1394f032007-05-06 14:50:22 -0700717}
718
Thomas Gleixnere9502852011-02-06 18:23:36 +0000719static void bfin_gpio_mask_ack_irq(struct irq_data *d)
Bryan Wu1394f032007-05-06 14:50:22 -0700720{
Thomas Gleixnere9502852011-02-06 18:23:36 +0000721 unsigned int irq = d->irq;
Michael Hennerich8d022372008-11-18 17:48:22 +0800722 u32 gpionr = irq_to_gpio(irq);
Bryan Wu1394f032007-05-06 14:50:22 -0700723
Thomas Gleixner1907d8b2011-03-24 17:21:01 +0100724 if (!irqd_is_level_type(d))
Bryan Wu1394f032007-05-06 14:50:22 -0700725 set_gpio_data(gpionr, 0);
Bryan Wu1394f032007-05-06 14:50:22 -0700726
727 set_gpio_maska(gpionr, 0);
Bryan Wu1394f032007-05-06 14:50:22 -0700728}
729
Thomas Gleixnere9502852011-02-06 18:23:36 +0000730static void bfin_gpio_mask_irq(struct irq_data *d)
Bryan Wu1394f032007-05-06 14:50:22 -0700731{
Thomas Gleixnere9502852011-02-06 18:23:36 +0000732 set_gpio_maska(irq_to_gpio(d->irq), 0);
Bryan Wu1394f032007-05-06 14:50:22 -0700733}
734
Thomas Gleixnere9502852011-02-06 18:23:36 +0000735static void bfin_gpio_unmask_irq(struct irq_data *d)
Bryan Wu1394f032007-05-06 14:50:22 -0700736{
Thomas Gleixnere9502852011-02-06 18:23:36 +0000737 set_gpio_maska(irq_to_gpio(d->irq), 1);
Bryan Wu1394f032007-05-06 14:50:22 -0700738}
739
Thomas Gleixnere9502852011-02-06 18:23:36 +0000740static unsigned int bfin_gpio_irq_startup(struct irq_data *d)
Bryan Wu1394f032007-05-06 14:50:22 -0700741{
Thomas Gleixnere9502852011-02-06 18:23:36 +0000742 u32 gpionr = irq_to_gpio(d->irq);
Bryan Wu1394f032007-05-06 14:50:22 -0700743
Michael Hennerich8d022372008-11-18 17:48:22 +0800744 if (__test_and_set_bit(gpionr, gpio_enabled))
Michael Hennerichaffee2b2008-04-24 08:10:10 +0800745 bfin_gpio_irq_prepare(gpionr);
Bryan Wu1394f032007-05-06 14:50:22 -0700746
Thomas Gleixnere9502852011-02-06 18:23:36 +0000747 bfin_gpio_unmask_irq(d);
Bryan Wu1394f032007-05-06 14:50:22 -0700748
Michael Hennerichaffee2b2008-04-24 08:10:10 +0800749 return 0;
Bryan Wu1394f032007-05-06 14:50:22 -0700750}
751
Thomas Gleixnere9502852011-02-06 18:23:36 +0000752static void bfin_gpio_irq_shutdown(struct irq_data *d)
Bryan Wu1394f032007-05-06 14:50:22 -0700753{
Thomas Gleixnere9502852011-02-06 18:23:36 +0000754 u32 gpionr = irq_to_gpio(d->irq);
Graf Yang30af6d42008-11-18 17:48:21 +0800755
Thomas Gleixnere9502852011-02-06 18:23:36 +0000756 bfin_gpio_mask_irq(d);
Graf Yang30af6d42008-11-18 17:48:21 +0800757 __clear_bit(gpionr, gpio_enabled);
Graf Yang9570ff42009-01-07 23:14:38 +0800758 bfin_gpio_irq_free(gpionr);
Bryan Wu1394f032007-05-06 14:50:22 -0700759}
760
Thomas Gleixnere9502852011-02-06 18:23:36 +0000761static int bfin_gpio_irq_type(struct irq_data *d, unsigned int type)
Bryan Wu1394f032007-05-06 14:50:22 -0700762{
Thomas Gleixnere9502852011-02-06 18:23:36 +0000763 unsigned int irq = d->irq;
Graf Yang8eb3e3b2008-11-18 17:48:22 +0800764 int ret;
765 char buf[16];
Michael Hennerich8d022372008-11-18 17:48:22 +0800766 u32 gpionr = irq_to_gpio(irq);
Bryan Wu1394f032007-05-06 14:50:22 -0700767
768 if (type == IRQ_TYPE_PROBE) {
769 /* only probe unenabled GPIO interrupt lines */
Mike Frysingerc3695342009-06-13 10:32:29 -0400770 if (test_bit(gpionr, gpio_enabled))
Bryan Wu1394f032007-05-06 14:50:22 -0700771 return 0;
772 type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING;
773 }
774
775 if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING |
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800776 IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW)) {
Michael Hennerich8d022372008-11-18 17:48:22 +0800777
Graf Yang9570ff42009-01-07 23:14:38 +0800778 snprintf(buf, 16, "gpio-irq%d", irq);
779 ret = bfin_gpio_irq_request(gpionr, buf);
780 if (ret)
781 return ret;
782
Michael Hennerich8d022372008-11-18 17:48:22 +0800783 if (__test_and_set_bit(gpionr, gpio_enabled))
Michael Hennerichaffee2b2008-04-24 08:10:10 +0800784 bfin_gpio_irq_prepare(gpionr);
Bryan Wu1394f032007-05-06 14:50:22 -0700785
Bryan Wu1394f032007-05-06 14:50:22 -0700786 } else {
Michael Hennerich8d022372008-11-18 17:48:22 +0800787 __clear_bit(gpionr, gpio_enabled);
Bryan Wu1394f032007-05-06 14:50:22 -0700788 return 0;
789 }
790
Michael Hennerichf1bceb42008-02-02 16:17:52 +0800791 set_gpio_inen(gpionr, 0);
Bryan Wu1394f032007-05-06 14:50:22 -0700792 set_gpio_dir(gpionr, 0);
Bryan Wu1394f032007-05-06 14:50:22 -0700793
794 if ((type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING))
795 == (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING))
796 set_gpio_both(gpionr, 1);
797 else
798 set_gpio_both(gpionr, 0);
799
800 if ((type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_LEVEL_LOW)))
801 set_gpio_polar(gpionr, 1); /* low or falling edge denoted by one */
802 else
803 set_gpio_polar(gpionr, 0); /* high or rising edge denoted by zero */
804
Michael Hennerichf1bceb42008-02-02 16:17:52 +0800805 if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING)) {
806 set_gpio_edge(gpionr, 1);
807 set_gpio_inen(gpionr, 1);
Michael Hennerichf1bceb42008-02-02 16:17:52 +0800808 set_gpio_data(gpionr, 0);
809
810 } else {
811 set_gpio_edge(gpionr, 0);
Michael Hennerichf1bceb42008-02-02 16:17:52 +0800812 set_gpio_inen(gpionr, 1);
813 }
814
Bryan Wu1394f032007-05-06 14:50:22 -0700815 if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING))
Graf Yangbfd15112008-10-08 18:02:44 +0800816 bfin_set_irq_handler(irq, handle_edge_irq);
Bryan Wu1394f032007-05-06 14:50:22 -0700817 else
Graf Yangbfd15112008-10-08 18:02:44 +0800818 bfin_set_irq_handler(irq, handle_level_irq);
Bryan Wu1394f032007-05-06 14:50:22 -0700819
820 return 0;
821}
822
Mike Frysingere2a80922011-04-15 12:51:33 -0400823static void bfin_demux_gpio_block(unsigned int irq)
824{
825 unsigned int gpio, mask;
826
827 gpio = irq_to_gpio(irq);
828 mask = get_gpiop_data(gpio) & get_gpiop_maska(gpio);
829
830 while (mask) {
831 if (mask & 1)
832 bfin_handle_irq(irq);
833 irq++;
834 mask >>= 1;
835 }
836}
837
Mike Frysinger8c054102011-04-15 13:04:59 -0400838void bfin_demux_gpio_irq(unsigned int inta_irq,
Steven Miao4f6b6002012-05-16 17:56:51 +0800839 struct irq_desc *desc)
Bryan Wu1394f032007-05-06 14:50:22 -0700840{
Mike Frysingere2a80922011-04-15 12:51:33 -0400841 unsigned int irq;
Bryan Wu1394f032007-05-06 14:50:22 -0700842
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800843 switch (inta_irq) {
Mike Frysingere2a80922011-04-15 12:51:33 -0400844#if defined(BF537_FAMILY)
Mike Frysinger8c054102011-04-15 13:04:59 -0400845 case IRQ_PF_INTA_PG_INTA:
Mike Frysingere2a80922011-04-15 12:51:33 -0400846 bfin_demux_gpio_block(IRQ_PF0);
847 irq = IRQ_PG0;
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800848 break;
Mike Frysinger8c054102011-04-15 13:04:59 -0400849 case IRQ_PH_INTA_MAC_RX:
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800850 irq = IRQ_PH0;
851 break;
Mike Frysingere2a80922011-04-15 12:51:33 -0400852#elif defined(BF533_FAMILY)
853 case IRQ_PROG_INTA:
854 irq = IRQ_PF0;
855 break;
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400856#elif defined(BF538_FAMILY)
Michael Hennerichdc26aec2008-11-18 17:48:22 +0800857 case IRQ_PORTF_INTA:
858 irq = IRQ_PF0;
859 break;
Bryan Wu2f6f4bc2008-11-18 17:48:21 +0800860#elif defined(CONFIG_BF52x) || defined(CONFIG_BF51x)
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800861 case IRQ_PORTF_INTA:
862 irq = IRQ_PF0;
863 break;
864 case IRQ_PORTG_INTA:
865 irq = IRQ_PG0;
866 break;
867 case IRQ_PORTH_INTA:
868 irq = IRQ_PH0;
869 break;
870#elif defined(CONFIG_BF561)
871 case IRQ_PROG0_INTA:
872 irq = IRQ_PF0;
873 break;
874 case IRQ_PROG1_INTA:
875 irq = IRQ_PF16;
876 break;
877 case IRQ_PROG2_INTA:
878 irq = IRQ_PF32;
879 break;
880#endif
881 default:
882 BUG();
883 return;
Bryan Wu1394f032007-05-06 14:50:22 -0700884 }
Michael Hennerich2c4f8292008-02-09 04:11:14 +0800885
Mike Frysingere2a80922011-04-15 12:51:33 -0400886 bfin_demux_gpio_block(irq);
Bryan Wu1394f032007-05-06 14:50:22 -0700887}
888
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800889#ifdef CONFIG_PM
Steven Miaod49cdf8402012-06-14 18:04:01 +0800890
Mike Frysingerdd8cb372011-04-15 03:19:22 -0400891static int bfin_gpio_set_wake(struct irq_data *d, unsigned int state)
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800892{
Sonic Zhang54e4ff42013-05-30 18:37:28 +0800893 return bfin_gpio_pm_wakeup_ctrl(irq_to_gpio(d->irq), state);
894}
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800895
Sonic Zhang54e4ff42013-05-30 18:37:28 +0800896#else
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800897
Sonic Zhang54e4ff42013-05-30 18:37:28 +0800898# define bfin_gpio_set_wake NULL
899
Sonic Zhang86794b42012-12-14 11:19:24 +0800900#endif
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800901
Sonic Zhang54e4ff42013-05-30 18:37:28 +0800902static struct irq_chip bfin_gpio_irqchip = {
903 .name = "GPIO",
904 .irq_ack = bfin_gpio_ack_irq,
905 .irq_mask = bfin_gpio_mask_irq,
906 .irq_mask_ack = bfin_gpio_mask_ack_irq,
907 .irq_unmask = bfin_gpio_unmask_irq,
908 .irq_disable = bfin_gpio_mask_irq,
909 .irq_enable = bfin_gpio_unmask_irq,
910 .irq_set_type = bfin_gpio_irq_type,
911 .irq_startup = bfin_gpio_irq_startup,
912 .irq_shutdown = bfin_gpio_irq_shutdown,
913 .irq_set_wake = bfin_gpio_set_wake,
914};
Steven Miaod49cdf8402012-06-14 18:04:01 +0800915
Sonic Zhang54e4ff42013-05-30 18:37:28 +0800916#endif
Steven Miaod49cdf8402012-06-14 18:04:01 +0800917
Sonic Zhang54e4ff42013-05-30 18:37:28 +0800918#ifdef CONFIG_PM
Steven Miaod49cdf8402012-06-14 18:04:01 +0800919
Sonic Zhang11b27cb2012-06-28 19:16:48 +0800920#ifdef SEC_GCTL
Sonic Zhang54e4ff42013-05-30 18:37:28 +0800921static u32 save_pint_sec_ctl[NR_PINT_SYS_IRQS];
922
Steven Miaod49cdf8402012-06-14 18:04:01 +0800923static int sec_suspend(void)
924{
925 u32 bank;
926
927 for (bank = 0; bank < NR_PINT_SYS_IRQS; bank++)
Sonic Zhang86794b42012-12-14 11:19:24 +0800928 save_pint_sec_ctl[bank] = bfin_read_SEC_SCTL(bank + BFIN_SYSIRQ(IRQ_PINT0));
Steven Miaod49cdf8402012-06-14 18:04:01 +0800929 return 0;
930}
931
932static void sec_resume(void)
933{
934 u32 bank;
935
936 bfin_write_SEC_SCI(0, SEC_CCTL, SEC_CCTL_RESET);
937 udelay(100);
938 bfin_write_SEC_GCTL(SEC_GCTL_EN);
939 bfin_write_SEC_SCI(0, SEC_CCTL, SEC_CCTL_EN | SEC_CCTL_NMI_EN);
940
941 for (bank = 0; bank < NR_PINT_SYS_IRQS; bank++)
Sonic Zhang86794b42012-12-14 11:19:24 +0800942 bfin_write_SEC_SCTL(bank + BFIN_SYSIRQ(IRQ_PINT0), save_pint_sec_ctl[bank]);
Steven Miaod49cdf8402012-06-14 18:04:01 +0800943}
944
945static struct syscore_ops sec_pm_syscore_ops = {
946 .suspend = sec_suspend,
947 .resume = sec_resume,
948};
Michael Hennerichcfefe3c2008-02-09 04:12:37 +0800949#endif
950
Steven Miao4f6b6002012-05-16 17:56:51 +0800951#endif
Michael Hennerich8d022372008-11-18 17:48:22 +0800952
Paul Gortmaker13dff622013-06-18 16:56:21 -0400953void init_exception_vectors(void)
Bernd Schmidt8be80ed2007-07-25 14:44:49 +0800954{
Mike Frysingerf0b5d122007-08-05 17:03:59 +0800955 /* cannot program in software:
956 * evt0 - emulation (jtag)
957 * evt1 - reset
958 */
959 bfin_write_EVT2(evt_nmi);
Bernd Schmidt8be80ed2007-07-25 14:44:49 +0800960 bfin_write_EVT3(trap);
961 bfin_write_EVT5(evt_ivhw);
962 bfin_write_EVT6(evt_timer);
963 bfin_write_EVT7(evt_evt7);
964 bfin_write_EVT8(evt_evt8);
965 bfin_write_EVT9(evt_evt9);
966 bfin_write_EVT10(evt_evt10);
967 bfin_write_EVT11(evt_evt11);
968 bfin_write_EVT12(evt_evt12);
969 bfin_write_EVT13(evt_evt13);
Philippe Gerum9703a732009-06-22 18:23:48 +0200970 bfin_write_EVT14(evt_evt14);
Bernd Schmidt8be80ed2007-07-25 14:44:49 +0800971 bfin_write_EVT15(evt_system_call);
972 CSYNC();
973}
974
Sonic Zhang11b27cb2012-06-28 19:16:48 +0800975#ifndef SEC_GCTL
Bryan Wu1394f032007-05-06 14:50:22 -0700976/*
977 * This function should be called during kernel startup to initialize
978 * the BFin IRQ handling routines.
979 */
Michael Hennerich8d022372008-11-18 17:48:22 +0800980
Bryan Wu1394f032007-05-06 14:50:22 -0700981int __init init_arch_irq(void)
982{
983 int irq;
984 unsigned long ilat = 0;
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400985
Bryan Wu1394f032007-05-06 14:50:22 -0700986 /* Disable all the peripheral intrs - page 4-29 HW Ref manual */
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400987#ifdef SIC_IMASK0
Roy Huang24a07a12007-07-12 22:41:45 +0800988 bfin_write_SIC_IMASK0(SIC_UNMASK_ALL);
989 bfin_write_SIC_IMASK1(SIC_UNMASK_ALL);
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -0400990# ifdef SIC_IMASK2
Michael Hennerich59003142007-10-21 16:54:27 +0800991 bfin_write_SIC_IMASK2(SIC_UNMASK_ALL);
Mike Frysingera055b2b2007-11-15 21:12:32 +0800992# endif
Steven Miao4f6b6002012-05-16 17:56:51 +0800993# if defined(CONFIG_SMP) || defined(CONFIG_ICC)
Graf Yang6b3087c2009-01-07 23:14:39 +0800994 bfin_write_SICB_IMASK0(SIC_UNMASK_ALL);
995 bfin_write_SICB_IMASK1(SIC_UNMASK_ALL);
996# endif
Roy Huang24a07a12007-07-12 22:41:45 +0800997#else
Bryan Wu1394f032007-05-06 14:50:22 -0700998 bfin_write_SIC_IMASK(SIC_UNMASK_ALL);
Roy Huang24a07a12007-07-12 22:41:45 +0800999#endif
Bryan Wu1394f032007-05-06 14:50:22 -07001000
1001 local_irq_disable();
1002
Michael Hennerich34e0fc82007-07-12 16:17:18 +08001003 for (irq = 0; irq <= SYS_IRQS; irq++) {
Bryan Wu1394f032007-05-06 14:50:22 -07001004 if (irq <= IRQ_CORETMR)
Thomas Gleixner43f2f112011-03-24 17:22:30 +01001005 irq_set_chip(irq, &bfin_core_irqchip);
Bryan Wu1394f032007-05-06 14:50:22 -07001006 else
Thomas Gleixner43f2f112011-03-24 17:22:30 +01001007 irq_set_chip(irq, &bfin_internal_irqchip);
Bryan Wu1394f032007-05-06 14:50:22 -07001008
Michael Hennerich464abc52008-02-25 13:50:20 +08001009 switch (irq) {
Sonic Zhang54e4ff42013-05-30 18:37:28 +08001010#if !BFIN_GPIO_PINT
1011#if defined(BF537_FAMILY)
Mike Frysinger01f8e342011-06-26 13:56:23 -04001012 case IRQ_PH_INTA_MAC_RX:
1013 case IRQ_PF_INTA_PG_INTA:
1014#elif defined(BF533_FAMILY)
1015 case IRQ_PROG_INTA:
Bryan Wu2f6f4bc2008-11-18 17:48:21 +08001016#elif defined(CONFIG_BF52x) || defined(CONFIG_BF51x)
Michael Hennerich464abc52008-02-25 13:50:20 +08001017 case IRQ_PORTF_INTA:
1018 case IRQ_PORTG_INTA:
1019 case IRQ_PORTH_INTA:
Michael Hennerich2c4f8292008-02-09 04:11:14 +08001020#elif defined(CONFIG_BF561)
Michael Hennerich464abc52008-02-25 13:50:20 +08001021 case IRQ_PROG0_INTA:
1022 case IRQ_PROG1_INTA:
1023 case IRQ_PROG2_INTA:
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -04001024#elif defined(BF538_FAMILY)
Michael Hennerichdc26aec2008-11-18 17:48:22 +08001025 case IRQ_PORTF_INTA:
Michael Hennerich59003142007-10-21 16:54:27 +08001026#endif
Thomas Gleixner43f2f112011-03-24 17:22:30 +01001027 irq_set_chained_handler(irq, bfin_demux_gpio_irq);
Michael Hennerich464abc52008-02-25 13:50:20 +08001028 break;
Sonic Zhang54e4ff42013-05-30 18:37:28 +08001029#endif
Michael Hennerichaec59c92010-02-19 15:09:10 +00001030#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
1031 case IRQ_MAC_ERROR:
Thomas Gleixner43f2f112011-03-24 17:22:30 +01001032 irq_set_chained_handler(irq,
1033 bfin_demux_mac_status_irq);
Michael Hennerichaec59c92010-02-19 15:09:10 +00001034 break;
1035#endif
Steven Miao4f6b6002012-05-16 17:56:51 +08001036#if defined(CONFIG_SMP) || defined(CONFIG_ICC)
Graf Yang6b3087c2009-01-07 23:14:39 +08001037 case IRQ_SUPPLE_0:
1038 case IRQ_SUPPLE_1:
Thomas Gleixner43f2f112011-03-24 17:22:30 +01001039 irq_set_handler(irq, handle_percpu_irq);
Graf Yang6b3087c2009-01-07 23:14:39 +08001040 break;
1041#endif
Graf Yang179413142009-08-18 04:29:33 +00001042
Yi Licb191712009-12-30 07:12:50 +00001043#ifdef CONFIG_TICKSOURCE_CORETMR
1044 case IRQ_CORETMR:
1045# ifdef CONFIG_SMP
Thomas Gleixner43f2f112011-03-24 17:22:30 +01001046 irq_set_handler(irq, handle_percpu_irq);
Yi Licb191712009-12-30 07:12:50 +00001047# else
Thomas Gleixner43f2f112011-03-24 17:22:30 +01001048 irq_set_handler(irq, handle_simple_irq);
Yi Licb191712009-12-30 07:12:50 +00001049# endif
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -04001050 break;
Yi Licb191712009-12-30 07:12:50 +00001051#endif
1052
1053#ifdef CONFIG_TICKSOURCE_GPTMR0
Philippe Geruma40494a2009-06-16 05:25:42 +02001054 case IRQ_TIMER0:
Thomas Gleixner43f2f112011-03-24 17:22:30 +01001055 irq_set_handler(irq, handle_simple_irq);
Michael Hennerich464abc52008-02-25 13:50:20 +08001056 break;
Graf Yang179413142009-08-18 04:29:33 +00001057#endif
Yi Licb191712009-12-30 07:12:50 +00001058
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -04001059 default:
Yi Licb191712009-12-30 07:12:50 +00001060#ifdef CONFIG_IPIPE
Thomas Gleixner43f2f112011-03-24 17:22:30 +01001061 irq_set_handler(irq, handle_level_irq);
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -04001062#else
Thomas Gleixner43f2f112011-03-24 17:22:30 +01001063 irq_set_handler(irq, handle_simple_irq);
Mike Frysingerfc6bd7b2011-04-15 01:35:53 -04001064#endif
Philippe Geruma40494a2009-06-16 05:25:42 +02001065 break;
Bryan Wu1394f032007-05-06 14:50:22 -07001066 }
Bryan Wu1394f032007-05-06 14:50:22 -07001067 }
Michael Hennerich464abc52008-02-25 13:50:20 +08001068
Mike Frysingerf58c3272011-04-15 03:08:20 -04001069 init_mach_irq();
Bryan Wu1394f032007-05-06 14:50:22 -07001070
Sonic Zhang11b27cb2012-06-28 19:16:48 +08001071#if (defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE))
Michael Hennerichaec59c92010-02-19 15:09:10 +00001072 for (irq = IRQ_MAC_PHYINT; irq <= IRQ_MAC_STMDONE; irq++)
Thomas Gleixner43f2f112011-03-24 17:22:30 +01001073 irq_set_chip_and_handler(irq, &bfin_mac_status_irqchip,
Michael Hennerichaec59c92010-02-19 15:09:10 +00001074 handle_level_irq);
1075#endif
Michael Hennerich464abc52008-02-25 13:50:20 +08001076 /* if configured as edge, then will be changed to do_edge_IRQ */
Sonic Zhang54e4ff42013-05-30 18:37:28 +08001077#ifdef CONFIG_GPIO_ADI
Michael Hennerichaec59c92010-02-19 15:09:10 +00001078 for (irq = GPIO_IRQ_BASE;
1079 irq < (GPIO_IRQ_BASE + MAX_BLACKFIN_GPIOS); irq++)
Thomas Gleixner43f2f112011-03-24 17:22:30 +01001080 irq_set_chip_and_handler(irq, &bfin_gpio_irqchip,
Michael Hennerich464abc52008-02-25 13:50:20 +08001081 handle_level_irq);
Sonic Zhang54e4ff42013-05-30 18:37:28 +08001082#endif
Bryan Wu1394f032007-05-06 14:50:22 -07001083 bfin_write_IMASK(0);
1084 CSYNC();
1085 ilat = bfin_read_ILAT();
1086 CSYNC();
1087 bfin_write_ILAT(ilat);
1088 CSYNC();
1089
Michael Hennerich34e0fc82007-07-12 16:17:18 +08001090 printk(KERN_INFO "Configuring Blackfin Priority Driven Interrupts\n");
Mike Frysinger40059782008-11-18 17:48:22 +08001091 /* IMASK=xxx is equivalent to STI xx or bfin_irq_flags=xx,
Bryan Wu1394f032007-05-06 14:50:22 -07001092 * local_irq_enable()
1093 */
1094 program_IAR();
1095 /* Therefore it's better to setup IARs before interrupts enabled */
1096 search_IAR();
1097
1098 /* Enable interrupts IVG7-15 */
Mike Frysinger40059782008-11-18 17:48:22 +08001099 bfin_irq_flags |= IMASK_IVG15 |
Steven Miao4f6b6002012-05-16 17:56:51 +08001100 IMASK_IVG14 | IMASK_IVG13 | IMASK_IVG12 | IMASK_IVG11 |
1101 IMASK_IVG10 | IMASK_IVG9 | IMASK_IVG8 | IMASK_IVG7 | IMASK_IVGHW;
1102
Bryan Wu1394f032007-05-06 14:50:22 -07001103
Michael Hennerich349ebbc2009-04-15 08:48:08 +00001104 /* This implicitly covers ANOMALY_05000171
1105 * Boot-ROM code modifies SICA_IWRx wakeup registers
1106 */
Mike Frysingerbe1d8542009-02-04 16:49:45 +08001107#ifdef SIC_IWR0
Michael Hennerich56f5f592008-08-06 17:55:32 +08001108 bfin_write_SIC_IWR0(IWR_DISABLE_ALL);
Mike Frysingerbe1d8542009-02-04 16:49:45 +08001109# ifdef SIC_IWR1
Bryan Wu2f6f4bc2008-11-18 17:48:21 +08001110 /* BF52x/BF51x system reset does not properly reset SIC_IWR1 which
Michael Hennerich55546ac2008-08-13 17:41:13 +08001111 * will screw up the bootrom as it relies on MDMA0/1 waking it
1112 * up from IDLE instructions. See this report for more info:
1113 * http://blackfin.uclinux.org/gf/tracker/4323
1114 */
Mike Frysingerb7e11292008-11-18 17:48:22 +08001115 if (ANOMALY_05000435)
1116 bfin_write_SIC_IWR1(IWR_ENABLE(10) | IWR_ENABLE(11));
1117 else
1118 bfin_write_SIC_IWR1(IWR_DISABLE_ALL);
Mike Frysingerbe1d8542009-02-04 16:49:45 +08001119# endif
1120# ifdef SIC_IWR2
Michael Hennerich56f5f592008-08-06 17:55:32 +08001121 bfin_write_SIC_IWR2(IWR_DISABLE_ALL);
Michael Hennerichfe9ec9b2008-02-25 12:04:57 +08001122# endif
1123#else
Michael Hennerich56f5f592008-08-06 17:55:32 +08001124 bfin_write_SIC_IWR(IWR_DISABLE_ALL);
Michael Hennerichfe9ec9b2008-02-25 12:04:57 +08001125#endif
Bryan Wu1394f032007-05-06 14:50:22 -07001126 return 0;
1127}
1128
1129#ifdef CONFIG_DO_IRQ_L1
Mike Frysingera055b2b2007-11-15 21:12:32 +08001130__attribute__((l1_text))
Bryan Wu1394f032007-05-06 14:50:22 -07001131#endif
Mike Frysinger6b108042011-03-30 01:35:41 -04001132static int vec_to_irq(int vec)
1133{
1134 struct ivgx *ivg = ivg7_13[vec - IVG7].ifirst;
1135 struct ivgx *ivg_stop = ivg7_13[vec - IVG7].istop;
1136 unsigned long sic_status[3];
Mike Frysinger6b108042011-03-30 01:35:41 -04001137 if (likely(vec == EVT_IVTMR_P))
1138 return IRQ_CORETMR;
Mike Frysinger6b108042011-03-30 01:35:41 -04001139#ifdef SIC_ISR
1140 sic_status[0] = bfin_read_SIC_IMASK() & bfin_read_SIC_ISR();
1141#else
1142 if (smp_processor_id()) {
1143# ifdef SICB_ISR0
1144 /* This will be optimized out in UP mode. */
1145 sic_status[0] = bfin_read_SICB_ISR0() & bfin_read_SICB_IMASK0();
1146 sic_status[1] = bfin_read_SICB_ISR1() & bfin_read_SICB_IMASK1();
1147# endif
1148 } else {
1149 sic_status[0] = bfin_read_SIC_ISR0() & bfin_read_SIC_IMASK0();
1150 sic_status[1] = bfin_read_SIC_ISR1() & bfin_read_SIC_IMASK1();
1151 }
1152#endif
1153#ifdef SIC_ISR2
1154 sic_status[2] = bfin_read_SIC_ISR2() & bfin_read_SIC_IMASK2();
1155#endif
1156
1157 for (;; ivg++) {
1158 if (ivg >= ivg_stop)
1159 return -1;
1160#ifdef SIC_ISR
1161 if (sic_status[0] & ivg->isrflag)
1162#else
1163 if (sic_status[(ivg->irqno - IVG7) / 32] & ivg->isrflag)
1164#endif
1165 return ivg->irqno;
1166 }
1167}
1168
Sonic Zhang11b27cb2012-06-28 19:16:48 +08001169#else /* SEC_GCTL */
1170
1171/*
1172 * This function should be called during kernel startup to initialize
1173 * the BFin IRQ handling routines.
1174 */
1175
1176int __init init_arch_irq(void)
1177{
1178 int irq;
1179 unsigned long ilat = 0;
1180
1181 bfin_write_SEC_GCTL(SEC_GCTL_RESET);
1182
1183 local_irq_disable();
1184
Sonic Zhang11b27cb2012-06-28 19:16:48 +08001185 for (irq = 0; irq <= SYS_IRQS; irq++) {
1186 if (irq <= IRQ_CORETMR) {
Sonic Zhang86794b42012-12-14 11:19:24 +08001187 irq_set_chip_and_handler(irq, &bfin_core_irqchip,
1188 handle_simple_irq);
1189#if defined(CONFIG_TICKSOURCE_CORETMR) && defined(CONFIG_SMP)
Sonic Zhang11b27cb2012-06-28 19:16:48 +08001190 if (irq == IRQ_CORETMR)
Sonic Zhang11b27cb2012-06-28 19:16:48 +08001191 irq_set_handler(irq, handle_percpu_irq);
Sonic Zhang11b27cb2012-06-28 19:16:48 +08001192#endif
Sonic Zhang11b27cb2012-06-28 19:16:48 +08001193 } else if (irq >= BFIN_IRQ(34) && irq <= BFIN_IRQ(37)) {
Sonic Zhang11b27cb2012-06-28 19:16:48 +08001194 irq_set_chip_and_handler(irq, &bfin_sec_irqchip,
Sonic Zhang86794b42012-12-14 11:19:24 +08001195 handle_percpu_irq);
1196 } else {
1197 irq_set_chip(irq, &bfin_sec_irqchip);
1198 if (irq == IRQ_SEC_ERR)
1199 irq_set_handler(irq, handle_sec_fault);
1200 else if (irq >= IRQ_C0_DBL_FAULT && irq < CORE_IRQS)
1201 irq_set_handler(irq, handle_core_fault);
1202 else
1203 irq_set_handler(irq, handle_fasteoi_irq);
Sonic Zhang11b27cb2012-06-28 19:16:48 +08001204 __irq_set_preflow_handler(irq, bfin_sec_preflow_handler);
1205 }
1206 }
Sonic Zhang11b27cb2012-06-28 19:16:48 +08001207
1208 bfin_write_IMASK(0);
1209 CSYNC();
1210 ilat = bfin_read_ILAT();
1211 CSYNC();
1212 bfin_write_ILAT(ilat);
1213 CSYNC();
1214
1215 printk(KERN_INFO "Configuring Blackfin Priority Driven Interrupts\n");
1216
Sonic Zhange0a59312012-06-29 18:19:29 +08001217 bfin_sec_set_priority(CONFIG_SEC_IRQ_PRIORITY_LEVELS, sec_int_priority);
1218
1219 bfin_sec_set_priority(CONFIG_SEC_IRQ_PRIORITY_LEVELS, sec_int_priority);
1220
Sonic Zhang11b27cb2012-06-28 19:16:48 +08001221 /* Enable interrupts IVG7-15 */
1222 bfin_irq_flags |= IMASK_IVG15 |
1223 IMASK_IVG14 | IMASK_IVG13 | IMASK_IVG12 | IMASK_IVG11 |
1224 IMASK_IVG10 | IMASK_IVG9 | IMASK_IVG8 | IMASK_IVG7 | IMASK_IVGHW;
1225
1226
1227 bfin_write_SEC_FCTL(SEC_FCTL_EN | SEC_FCTL_SYSRST_EN | SEC_FCTL_FLTIN_EN);
Sonic Zhang86794b42012-12-14 11:19:24 +08001228 bfin_sec_enable_sci(BFIN_SYSIRQ(IRQ_WATCH0));
1229 bfin_sec_enable_ssi(BFIN_SYSIRQ(IRQ_WATCH0));
Sonic Zhang11b27cb2012-06-28 19:16:48 +08001230 bfin_write_SEC_SCI(0, SEC_CCTL, SEC_CCTL_RESET);
1231 udelay(100);
1232 bfin_write_SEC_GCTL(SEC_GCTL_EN);
1233 bfin_write_SEC_SCI(0, SEC_CCTL, SEC_CCTL_EN | SEC_CCTL_NMI_EN);
1234 bfin_write_SEC_SCI(1, SEC_CCTL, SEC_CCTL_EN | SEC_CCTL_NMI_EN);
1235
1236 init_software_driven_irq();
Steven Miao36c47232012-12-21 14:34:16 +08001237
1238#ifdef CONFIG_PM
Sonic Zhang11b27cb2012-06-28 19:16:48 +08001239 register_syscore_ops(&sec_pm_syscore_ops);
Steven Miao36c47232012-12-21 14:34:16 +08001240#endif
Sonic Zhang11b27cb2012-06-28 19:16:48 +08001241
1242 return 0;
1243}
1244
1245#ifdef CONFIG_DO_IRQ_L1
1246__attribute__((l1_text))
1247#endif
1248static int vec_to_irq(int vec)
1249{
1250 if (likely(vec == EVT_IVTMR_P))
1251 return IRQ_CORETMR;
1252
1253 return BFIN_IRQ(bfin_read_SEC_SCI(0, SEC_CSID));
1254}
1255#endif /* SEC_GCTL */
1256
Mike Frysinger6b108042011-03-30 01:35:41 -04001257#ifdef CONFIG_DO_IRQ_L1
1258__attribute__((l1_text))
1259#endif
Bryan Wu1394f032007-05-06 14:50:22 -07001260void do_irq(int vec, struct pt_regs *fp)
1261{
Mike Frysinger6b108042011-03-30 01:35:41 -04001262 int irq = vec_to_irq(vec);
1263 if (irq == -1)
1264 return;
1265 asm_do_IRQ(irq, fp);
Bryan Wu1394f032007-05-06 14:50:22 -07001266}
Yi Li6a01f232009-01-07 23:14:39 +08001267
1268#ifdef CONFIG_IPIPE
1269
1270int __ipipe_get_irq_priority(unsigned irq)
1271{
1272 int ient, prio;
1273
1274 if (irq <= IRQ_CORETMR)
1275 return irq;
1276
Sonic Zhang11b27cb2012-06-28 19:16:48 +08001277#ifdef SEC_GCTL
1278 if (irq >= BFIN_IRQ(0))
1279 return IVG11;
1280#else
Yi Li6a01f232009-01-07 23:14:39 +08001281 for (ient = 0; ient < NR_PERI_INTS; ient++) {
1282 struct ivgx *ivg = ivg_table + ient;
1283 if (ivg->irqno == irq) {
1284 for (prio = 0; prio <= IVG13-IVG7; prio++) {
1285 if (ivg7_13[prio].ifirst <= ivg &&
1286 ivg7_13[prio].istop > ivg)
1287 return IVG7 + prio;
1288 }
1289 }
1290 }
Sonic Zhang11b27cb2012-06-28 19:16:48 +08001291#endif
Yi Li6a01f232009-01-07 23:14:39 +08001292
1293 return IVG15;
1294}
1295
Yi Li6a01f232009-01-07 23:14:39 +08001296/* Hw interrupts are disabled on entry (check SAVE_CONTEXT). */
1297#ifdef CONFIG_DO_IRQ_L1
1298__attribute__((l1_text))
1299#endif
1300asmlinkage int __ipipe_grab_irq(int vec, struct pt_regs *regs)
1301{
Philippe Gerum9bd50df2009-03-04 16:52:38 +08001302 struct ipipe_percpu_domain_data *p = ipipe_root_cpudom_ptr();
Philippe Geruma40494a2009-06-16 05:25:42 +02001303 struct ipipe_domain *this_domain = __ipipe_current_domain;
Philippe Gerum5b5da4c2011-03-17 02:12:48 -04001304 int irq, s = 0;
Yi Li6a01f232009-01-07 23:14:39 +08001305
Mike Frysinger6b108042011-03-30 01:35:41 -04001306 irq = vec_to_irq(vec);
1307 if (irq == -1)
1308 return 0;
Yi Li6a01f232009-01-07 23:14:39 +08001309
1310 if (irq == IRQ_SYSTMR) {
Philippe Geruma40494a2009-06-16 05:25:42 +02001311#if !defined(CONFIG_GENERIC_CLOCKEVENTS) || defined(CONFIG_TICKSOURCE_GPTMR0)
Yi Li6a01f232009-01-07 23:14:39 +08001312 bfin_write_TIMER_STATUS(1); /* Latch TIMIL0 */
Philippe Gerum9bd50df2009-03-04 16:52:38 +08001313#endif
Yi Li6a01f232009-01-07 23:14:39 +08001314 /* This is basically what we need from the register frame. */
1315 __raw_get_cpu_var(__ipipe_tick_regs).ipend = regs->ipend;
1316 __raw_get_cpu_var(__ipipe_tick_regs).pc = regs->pc;
Philippe Gerum9bd50df2009-03-04 16:52:38 +08001317 if (this_domain != ipipe_root_domain)
Yi Li6a01f232009-01-07 23:14:39 +08001318 __raw_get_cpu_var(__ipipe_tick_regs).ipend &= ~0x10;
Philippe Gerum9bd50df2009-03-04 16:52:38 +08001319 else
1320 __raw_get_cpu_var(__ipipe_tick_regs).ipend |= 0x10;
Yi Li6a01f232009-01-07 23:14:39 +08001321 }
1322
Philippe Gerum5b5da4c2011-03-17 02:12:48 -04001323 /*
1324 * We don't want Linux interrupt handlers to run at the
1325 * current core priority level (i.e. < EVT15), since this
1326 * might delay other interrupts handled by a high priority
1327 * domain. Here is what we do instead:
1328 *
1329 * - we raise the SYNCDEFER bit to prevent
1330 * __ipipe_handle_irq() to sync the pipeline for the root
1331 * stage for the incoming interrupt. Upon return, that IRQ is
1332 * pending in the interrupt log.
1333 *
1334 * - we raise the TIF_IRQ_SYNC bit for the current thread, so
1335 * that _schedule_and_signal_from_int will eventually sync the
1336 * pipeline from EVT15.
1337 */
Philippe Gerum9bd50df2009-03-04 16:52:38 +08001338 if (this_domain == ipipe_root_domain) {
1339 s = __test_and_set_bit(IPIPE_SYNCDEFER_FLAG, &p->status);
1340 barrier();
1341 }
Yi Li6a01f232009-01-07 23:14:39 +08001342
1343 ipipe_trace_irq_entry(irq);
1344 __ipipe_handle_irq(irq, regs);
Philippe Gerum9bd50df2009-03-04 16:52:38 +08001345 ipipe_trace_irq_exit(irq);
Yi Li6a01f232009-01-07 23:14:39 +08001346
Philippe Gerum5b5da4c2011-03-17 02:12:48 -04001347 if (user_mode(regs) &&
1348 !ipipe_test_foreign_stack() &&
1349 (current->ipipe_flags & PF_EVTRET) != 0) {
1350 /*
1351 * Testing for user_regs() does NOT fully eliminate
1352 * foreign stack contexts, because of the forged
1353 * interrupt returns we do through
1354 * __ipipe_call_irqtail. In that case, we might have
1355 * preempted a foreign stack context in a high
1356 * priority domain, with a single interrupt level now
1357 * pending after the irqtail unwinding is done. In
1358 * which case user_mode() is now true, and the event
1359 * gets dispatched spuriously.
1360 */
1361 current->ipipe_flags &= ~PF_EVTRET;
1362 __ipipe_dispatch_event(IPIPE_EVENT_RETURN, regs);
1363 }
1364
Philippe Gerum9bd50df2009-03-04 16:52:38 +08001365 if (this_domain == ipipe_root_domain) {
1366 set_thread_flag(TIF_IRQ_SYNC);
1367 if (!s) {
1368 __clear_bit(IPIPE_SYNCDEFER_FLAG, &p->status);
1369 return !test_bit(IPIPE_STALL_FLAG, &p->status);
1370 }
1371 }
Yi Li6a01f232009-01-07 23:14:39 +08001372
Graf Yang1fa9be72009-05-15 11:01:59 +00001373 return 0;
Yi Li6a01f232009-01-07 23:14:39 +08001374}
1375
1376#endif /* CONFIG_IPIPE */