blob: d3b7672b2b94ce91dd970c9ce30490cdf4362bae [file] [log] [blame]
Bryan Wu1394f032007-05-06 14:50:22 -07001/*
2 * File: arch/blackfin/mach-common/ints-priority-sc.c
3 * Based on:
4 * Author:
5 *
6 * Created: ?
Simon Arlottd2d50aa2007-06-11 15:31:30 +08007 * Description: Set up the interrupt priorities
Bryan Wu1394f032007-05-06 14:50:22 -07008 *
9 * Modified:
10 * 1996 Roman Zippel
11 * 1999 D. Jeff Dionne <jeff@uclinux.org>
12 * 2000-2001 Lineo, Inc. D. Jefff Dionne <jeff@lineo.ca>
13 * 2002 Arcturus Networks Inc. MaTed <mated@sympatico.ca>
14 * 2003 Metrowerks/Motorola
15 * 2003 Bas Vermeulen <bas@buyways.nl>
Roy Huang24a07a12007-07-12 22:41:45 +080016 * Copyright 2004-2007 Analog Devices Inc.
Bryan Wu1394f032007-05-06 14:50:22 -070017 *
18 * Bugs: Enter bugs at http://blackfin.uclinux.org/
19 *
20 * This program is free software; you can redistribute it and/or modify
21 * it under the terms of the GNU General Public License as published by
22 * the Free Software Foundation; either version 2 of the License, or
23 * (at your option) any later version.
24 *
25 * This program is distributed in the hope that it will be useful,
26 * but WITHOUT ANY WARRANTY; without even the implied warranty of
27 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 * GNU General Public License for more details.
29 *
30 * You should have received a copy of the GNU General Public License
31 * along with this program; if not, see the file COPYING, or write
32 * to the Free Software Foundation, Inc.,
33 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
34 */
35
36#include <linux/module.h>
37#include <linux/kernel_stat.h>
38#include <linux/seq_file.h>
39#include <linux/irq.h>
40#ifdef CONFIG_KGDB
41#include <linux/kgdb.h>
42#endif
43#include <asm/traps.h>
44#include <asm/blackfin.h>
45#include <asm/gpio.h>
46#include <asm/irq_handler.h>
47
48#ifdef BF537_FAMILY
49# define BF537_GENERIC_ERROR_INT_DEMUX
50#else
51# undef BF537_GENERIC_ERROR_INT_DEMUX
52#endif
53
54/*
55 * NOTES:
56 * - we have separated the physical Hardware interrupt from the
57 * levels that the LINUX kernel sees (see the description in irq.h)
58 * -
59 */
60
61unsigned long irq_flags = 0;
62
63/* The number of spurious interrupts */
64atomic_t num_spurious;
65
66struct ivgx {
67 /* irq number for request_irq, available in mach-bf533/irq.h */
Roy Huang24a07a12007-07-12 22:41:45 +080068 unsigned int irqno;
Bryan Wu1394f032007-05-06 14:50:22 -070069 /* corresponding bit in the SIC_ISR register */
Roy Huang24a07a12007-07-12 22:41:45 +080070 unsigned int isrflag;
Bryan Wu1394f032007-05-06 14:50:22 -070071} ivg_table[NR_PERI_INTS];
72
73struct ivg_slice {
74 /* position of first irq in ivg_table for given ivg */
75 struct ivgx *ifirst;
76 struct ivgx *istop;
77} ivg7_13[IVG13 - IVG7 + 1];
78
79static void search_IAR(void);
80
81/*
82 * Search SIC_IAR and fill tables with the irqvalues
83 * and their positions in the SIC_ISR register.
84 */
85static void __init search_IAR(void)
86{
87 unsigned ivg, irq_pos = 0;
88 for (ivg = 0; ivg <= IVG13 - IVG7; ivg++) {
89 int irqn;
90
Michael Hennerich34e0fc82007-07-12 16:17:18 +080091 ivg7_13[ivg].istop = ivg7_13[ivg].ifirst = &ivg_table[irq_pos];
Bryan Wu1394f032007-05-06 14:50:22 -070092
93 for (irqn = 0; irqn < NR_PERI_INTS; irqn++) {
94 int iar_shift = (irqn & 7) * 4;
95 if (ivg ==
96 (0xf &
Michael Hennerich34e0fc82007-07-12 16:17:18 +080097 bfin_read32((unsigned long *)SIC_IAR0 +
Bryan Wu1394f032007-05-06 14:50:22 -070098 (irqn >> 3)) >> iar_shift)) {
99 ivg_table[irq_pos].irqno = IVG7 + irqn;
Roy Huang24a07a12007-07-12 22:41:45 +0800100 ivg_table[irq_pos].isrflag = 1 << (irqn % 32);
Bryan Wu1394f032007-05-06 14:50:22 -0700101 ivg7_13[ivg].istop++;
102 irq_pos++;
103 }
104 }
105 }
106}
107
108/*
109 * This is for BF533 internal IRQs
110 */
111
112static void ack_noop(unsigned int irq)
113{
114 /* Dummy function. */
115}
116
117static void bfin_core_mask_irq(unsigned int irq)
118{
119 irq_flags &= ~(1 << irq);
120 if (!irqs_disabled())
121 local_irq_enable();
122}
123
124static void bfin_core_unmask_irq(unsigned int irq)
125{
126 irq_flags |= 1 << irq;
127 /*
128 * If interrupts are enabled, IMASK must contain the same value
129 * as irq_flags. Make sure that invariant holds. If interrupts
130 * are currently disabled we need not do anything; one of the
131 * callers will take care of setting IMASK to the proper value
132 * when reenabling interrupts.
133 * local_irq_enable just does "STI irq_flags", so it's exactly
134 * what we need.
135 */
136 if (!irqs_disabled())
137 local_irq_enable();
138 return;
139}
140
141static void bfin_internal_mask_irq(unsigned int irq)
142{
Roy Huang24a07a12007-07-12 22:41:45 +0800143#ifndef CONFIG_BF54x
Bryan Wu1394f032007-05-06 14:50:22 -0700144 bfin_write_SIC_IMASK(bfin_read_SIC_IMASK() &
145 ~(1 << (irq - (IRQ_CORETMR + 1))));
Roy Huang24a07a12007-07-12 22:41:45 +0800146#else
147 unsigned mask_bank, mask_bit;
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800148 mask_bank = (irq - (IRQ_CORETMR + 1)) / 32;
149 mask_bit = (irq - (IRQ_CORETMR + 1)) % 32;
Bryan Wuc04d66b2007-07-12 17:26:31 +0800150 bfin_write_SIC_IMASK(mask_bank, bfin_read_SIC_IMASK(mask_bank) &
151 ~(1 << mask_bit));
Roy Huang24a07a12007-07-12 22:41:45 +0800152#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700153 SSYNC();
154}
155
156static void bfin_internal_unmask_irq(unsigned int irq)
157{
Roy Huang24a07a12007-07-12 22:41:45 +0800158#ifndef CONFIG_BF54x
Bryan Wu1394f032007-05-06 14:50:22 -0700159 bfin_write_SIC_IMASK(bfin_read_SIC_IMASK() |
160 (1 << (irq - (IRQ_CORETMR + 1))));
Roy Huang24a07a12007-07-12 22:41:45 +0800161#else
162 unsigned mask_bank, mask_bit;
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800163 mask_bank = (irq - (IRQ_CORETMR + 1)) / 32;
Bryan Wuc04d66b2007-07-12 17:26:31 +0800164 mask_bit = (irq - (IRQ_CORETMR + 1)) % 32;
165 bfin_write_SIC_IMASK(mask_bank, bfin_read_SIC_IMASK(mask_bank) |
166 (1 << mask_bit));
Roy Huang24a07a12007-07-12 22:41:45 +0800167#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700168 SSYNC();
169}
170
171static struct irq_chip bfin_core_irqchip = {
172 .ack = ack_noop,
173 .mask = bfin_core_mask_irq,
174 .unmask = bfin_core_unmask_irq,
175};
176
177static struct irq_chip bfin_internal_irqchip = {
178 .ack = ack_noop,
179 .mask = bfin_internal_mask_irq,
180 .unmask = bfin_internal_unmask_irq,
181};
182
183#ifdef BF537_GENERIC_ERROR_INT_DEMUX
184static int error_int_mask;
185
186static void bfin_generic_error_ack_irq(unsigned int irq)
187{
188
189}
190
191static void bfin_generic_error_mask_irq(unsigned int irq)
192{
193 error_int_mask &= ~(1L << (irq - IRQ_PPI_ERROR));
194
195 if (!error_int_mask) {
196 local_irq_disable();
197 bfin_write_SIC_IMASK(bfin_read_SIC_IMASK() &
198 ~(1 <<
199 (IRQ_GENERIC_ERROR -
200 (IRQ_CORETMR + 1))));
201 SSYNC();
202 local_irq_enable();
203 }
204}
205
206static void bfin_generic_error_unmask_irq(unsigned int irq)
207{
208 local_irq_disable();
209 bfin_write_SIC_IMASK(bfin_read_SIC_IMASK() | 1 <<
210 (IRQ_GENERIC_ERROR - (IRQ_CORETMR + 1)));
211 SSYNC();
212 local_irq_enable();
213
214 error_int_mask |= 1L << (irq - IRQ_PPI_ERROR);
215}
216
217static struct irq_chip bfin_generic_error_irqchip = {
218 .ack = bfin_generic_error_ack_irq,
219 .mask = bfin_generic_error_mask_irq,
220 .unmask = bfin_generic_error_unmask_irq,
221};
222
223static void bfin_demux_error_irq(unsigned int int_err_irq,
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800224 struct irq_desc *intb_desc)
Bryan Wu1394f032007-05-06 14:50:22 -0700225{
226 int irq = 0;
227
228 SSYNC();
229
230#if (defined(CONFIG_BF537) || defined(CONFIG_BF536))
231 if (bfin_read_EMAC_SYSTAT() & EMAC_ERR_MASK)
232 irq = IRQ_MAC_ERROR;
233 else
234#endif
235 if (bfin_read_SPORT0_STAT() & SPORT_ERR_MASK)
236 irq = IRQ_SPORT0_ERROR;
237 else if (bfin_read_SPORT1_STAT() & SPORT_ERR_MASK)
238 irq = IRQ_SPORT1_ERROR;
239 else if (bfin_read_PPI_STATUS() & PPI_ERR_MASK)
240 irq = IRQ_PPI_ERROR;
241 else if (bfin_read_CAN_GIF() & CAN_ERR_MASK)
242 irq = IRQ_CAN_ERROR;
243 else if (bfin_read_SPI_STAT() & SPI_ERR_MASK)
244 irq = IRQ_SPI_ERROR;
245 else if ((bfin_read_UART0_IIR() & UART_ERR_MASK_STAT1) &&
246 (bfin_read_UART0_IIR() & UART_ERR_MASK_STAT0))
247 irq = IRQ_UART0_ERROR;
248 else if ((bfin_read_UART1_IIR() & UART_ERR_MASK_STAT1) &&
249 (bfin_read_UART1_IIR() & UART_ERR_MASK_STAT0))
250 irq = IRQ_UART1_ERROR;
251
252 if (irq) {
253 if (error_int_mask & (1L << (irq - IRQ_PPI_ERROR))) {
254 struct irq_desc *desc = irq_desc + irq;
255 desc->handle_irq(irq, desc);
256 } else {
257
258 switch (irq) {
259 case IRQ_PPI_ERROR:
260 bfin_write_PPI_STATUS(PPI_ERR_MASK);
261 break;
262#if (defined(CONFIG_BF537) || defined(CONFIG_BF536))
263 case IRQ_MAC_ERROR:
264 bfin_write_EMAC_SYSTAT(EMAC_ERR_MASK);
265 break;
266#endif
267 case IRQ_SPORT0_ERROR:
268 bfin_write_SPORT0_STAT(SPORT_ERR_MASK);
269 break;
270
271 case IRQ_SPORT1_ERROR:
272 bfin_write_SPORT1_STAT(SPORT_ERR_MASK);
273 break;
274
275 case IRQ_CAN_ERROR:
276 bfin_write_CAN_GIS(CAN_ERR_MASK);
277 break;
278
279 case IRQ_SPI_ERROR:
280 bfin_write_SPI_STAT(SPI_ERR_MASK);
281 break;
282
283 default:
284 break;
285 }
286
287 pr_debug("IRQ %d:"
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800288 " MASKED PERIPHERAL ERROR INTERRUPT ASSERTED\n",
289 irq);
Bryan Wu1394f032007-05-06 14:50:22 -0700290 }
291 } else
292 printk(KERN_ERR
293 "%s : %s : LINE %d :\nIRQ ?: PERIPHERAL ERROR"
294 " INTERRUPT ASSERTED BUT NO SOURCE FOUND\n",
295 __FUNCTION__, __FILE__, __LINE__);
296
Bryan Wu1394f032007-05-06 14:50:22 -0700297}
298#endif /* BF537_GENERIC_ERROR_INT_DEMUX */
299
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800300#if defined(CONFIG_IRQCHIP_DEMUX_GPIO) && !defined(CONFIG_BF54x)
Bryan Wu1394f032007-05-06 14:50:22 -0700301
302static unsigned short gpio_enabled[gpio_bank(MAX_BLACKFIN_GPIOS)];
303static unsigned short gpio_edge_triggered[gpio_bank(MAX_BLACKFIN_GPIOS)];
304
305static void bfin_gpio_ack_irq(unsigned int irq)
306{
307 u16 gpionr = irq - IRQ_PF0;
308
309 if (gpio_edge_triggered[gpio_bank(gpionr)] & gpio_bit(gpionr)) {
310 set_gpio_data(gpionr, 0);
311 SSYNC();
312 }
313}
314
315static void bfin_gpio_mask_ack_irq(unsigned int irq)
316{
317 u16 gpionr = irq - IRQ_PF0;
318
319 if (gpio_edge_triggered[gpio_bank(gpionr)] & gpio_bit(gpionr)) {
320 set_gpio_data(gpionr, 0);
321 SSYNC();
322 }
323
324 set_gpio_maska(gpionr, 0);
325 SSYNC();
326}
327
328static void bfin_gpio_mask_irq(unsigned int irq)
329{
330 set_gpio_maska(irq - IRQ_PF0, 0);
331 SSYNC();
332}
333
334static void bfin_gpio_unmask_irq(unsigned int irq)
335{
336 set_gpio_maska(irq - IRQ_PF0, 1);
337 SSYNC();
338}
339
340static unsigned int bfin_gpio_irq_startup(unsigned int irq)
341{
342 unsigned int ret;
343 u16 gpionr = irq - IRQ_PF0;
344
345 if (!(gpio_enabled[gpio_bank(gpionr)] & gpio_bit(gpionr))) {
Michael Hennerich6782ea92007-07-24 15:16:59 +0800346 ret = gpio_request(gpionr, "IRQ");
Bryan Wu1394f032007-05-06 14:50:22 -0700347 if (ret)
348 return ret;
349 }
350
351 gpio_enabled[gpio_bank(gpionr)] |= gpio_bit(gpionr);
352 bfin_gpio_unmask_irq(irq);
353
354 return ret;
355}
356
357static void bfin_gpio_irq_shutdown(unsigned int irq)
358{
359 bfin_gpio_mask_irq(irq);
360 gpio_free(irq - IRQ_PF0);
361 gpio_enabled[gpio_bank(irq - IRQ_PF0)] &= ~gpio_bit(irq - IRQ_PF0);
362}
363
364static int bfin_gpio_irq_type(unsigned int irq, unsigned int type)
365{
366
367 unsigned int ret;
368 u16 gpionr = irq - IRQ_PF0;
369
370 if (type == IRQ_TYPE_PROBE) {
371 /* only probe unenabled GPIO interrupt lines */
372 if (gpio_enabled[gpio_bank(gpionr)] & gpio_bit(gpionr))
373 return 0;
374 type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING;
375 }
376
377 if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING |
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800378 IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW)) {
Bryan Wu1394f032007-05-06 14:50:22 -0700379 if (!(gpio_enabled[gpio_bank(gpionr)] & gpio_bit(gpionr))) {
Michael Hennerich6782ea92007-07-24 15:16:59 +0800380 ret = gpio_request(gpionr, "IRQ");
Bryan Wu1394f032007-05-06 14:50:22 -0700381 if (ret)
382 return ret;
383 }
384
385 gpio_enabled[gpio_bank(gpionr)] |= gpio_bit(gpionr);
386 } else {
387 gpio_enabled[gpio_bank(gpionr)] &= ~gpio_bit(gpionr);
388 return 0;
389 }
390
391 set_gpio_dir(gpionr, 0);
392 set_gpio_inen(gpionr, 1);
393
394 if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING)) {
395 gpio_edge_triggered[gpio_bank(gpionr)] |= gpio_bit(gpionr);
396 set_gpio_edge(gpionr, 1);
397 } else {
398 set_gpio_edge(gpionr, 0);
399 gpio_edge_triggered[gpio_bank(gpionr)] &= ~gpio_bit(gpionr);
400 }
401
402 if ((type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING))
403 == (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING))
404 set_gpio_both(gpionr, 1);
405 else
406 set_gpio_both(gpionr, 0);
407
408 if ((type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_LEVEL_LOW)))
409 set_gpio_polar(gpionr, 1); /* low or falling edge denoted by one */
410 else
411 set_gpio_polar(gpionr, 0); /* high or rising edge denoted by zero */
412
413 SSYNC();
414
415 if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING))
416 set_irq_handler(irq, handle_edge_irq);
417 else
418 set_irq_handler(irq, handle_level_irq);
419
420 return 0;
421}
422
Bryan Wu1394f032007-05-06 14:50:22 -0700423static struct irq_chip bfin_gpio_irqchip = {
424 .ack = bfin_gpio_ack_irq,
425 .mask = bfin_gpio_mask_irq,
426 .mask_ack = bfin_gpio_mask_ack_irq,
427 .unmask = bfin_gpio_unmask_irq,
428 .set_type = bfin_gpio_irq_type,
429 .startup = bfin_gpio_irq_startup,
430 .shutdown = bfin_gpio_irq_shutdown
431};
432
433static void bfin_demux_gpio_irq(unsigned int intb_irq,
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800434 struct irq_desc *intb_desc)
Bryan Wu1394f032007-05-06 14:50:22 -0700435{
436 u16 i;
Michael Henneriche3f23002007-07-12 16:39:29 +0800437 struct irq_desc *desc;
Bryan Wu1394f032007-05-06 14:50:22 -0700438
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800439 for (i = 0; i < MAX_BLACKFIN_GPIOS; i += 16) {
Bryan Wu1394f032007-05-06 14:50:22 -0700440 int irq = IRQ_PF0 + i;
441 int flag_d = get_gpiop_data(i);
442 int mask =
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800443 flag_d & (gpio_enabled[gpio_bank(i)] & get_gpiop_maska(i));
Bryan Wu1394f032007-05-06 14:50:22 -0700444
445 while (mask) {
446 if (mask & 1) {
Michael Henneriche3f23002007-07-12 16:39:29 +0800447 desc = irq_desc + irq;
Bryan Wu1394f032007-05-06 14:50:22 -0700448 desc->handle_irq(irq, desc);
449 }
450 irq++;
451 mask >>= 1;
452 }
453 }
454}
455
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800456#else /* CONFIG_IRQCHIP_DEMUX_GPIO */
457
458#define NR_PINT_SYS_IRQS 4
459#define NR_PINT_BITS 32
460#define NR_PINTS 160
461#define IRQ_NOT_AVAIL 0xFF
462
463#define PINT_2_BANK(x) ((x) >> 5)
464#define PINT_2_BIT(x) ((x) & 0x1F)
465#define PINT_BIT(x) (1 << (PINT_2_BIT(x)))
466
467static unsigned char irq2pint_lut[NR_PINTS];
Michael Henneriche3f23002007-07-12 16:39:29 +0800468static unsigned char pint2irq_lut[NR_PINT_SYS_IRQS * NR_PINT_BITS];
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800469
470struct pin_int_t {
471 unsigned int mask_set;
472 unsigned int mask_clear;
473 unsigned int request;
474 unsigned int assign;
475 unsigned int edge_set;
476 unsigned int edge_clear;
477 unsigned int invert_set;
478 unsigned int invert_clear;
479 unsigned int pinstate;
480 unsigned int latch;
481};
482
483static struct pin_int_t *pint[NR_PINT_SYS_IRQS] = {
484 (struct pin_int_t *)PINT0_MASK_SET,
485 (struct pin_int_t *)PINT1_MASK_SET,
486 (struct pin_int_t *)PINT2_MASK_SET,
487 (struct pin_int_t *)PINT3_MASK_SET,
488};
489
490unsigned short get_irq_base(u8 bank, u8 bmap)
491{
492
493 u16 irq_base;
494
495 if (bank < 2) { /*PA-PB */
496 irq_base = IRQ_PA0 + bmap * 16;
497 } else { /*PC-PJ */
498 irq_base = IRQ_PC0 + bmap * 16;
499 }
500
501 return irq_base;
502
503}
504
505 /* Whenever PINTx_ASSIGN is altered init_pint_lut() must be executed! */
506void init_pint_lut(void)
507{
508 u16 bank, bit, irq_base, bit_pos;
509 u32 pint_assign;
510 u8 bmap;
511
512 memset(irq2pint_lut, IRQ_NOT_AVAIL, sizeof(irq2pint_lut));
513
514 for (bank = 0; bank < NR_PINT_SYS_IRQS; bank++) {
515
516 pint_assign = pint[bank]->assign;
517
518 for (bit = 0; bit < NR_PINT_BITS; bit++) {
519
520 bmap = (pint_assign >> ((bit / 8) * 8)) & 0xFF;
521
522 irq_base = get_irq_base(bank, bmap);
523
524 irq_base += (bit % 8) + ((bit / 8) & 1 ? 8 : 0);
525 bit_pos = bit + bank * NR_PINT_BITS;
526
Michael Henneriche3f23002007-07-12 16:39:29 +0800527 pint2irq_lut[bit_pos] = irq_base - SYS_IRQS;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800528 irq2pint_lut[irq_base - SYS_IRQS] = bit_pos;
529
530 }
531
532 }
533
534}
535
536static unsigned short gpio_enabled[gpio_bank(MAX_BLACKFIN_GPIOS)];
537
538static void bfin_gpio_ack_irq(unsigned int irq)
539{
540 u8 pint_val = irq2pint_lut[irq - SYS_IRQS];
541
542 pint[PINT_2_BANK(pint_val)]->request = PINT_BIT(pint_val);
543 SSYNC();
544}
545
546static void bfin_gpio_mask_ack_irq(unsigned int irq)
547{
548 u8 pint_val = irq2pint_lut[irq - SYS_IRQS];
Michael Henneriche3f23002007-07-12 16:39:29 +0800549 u32 pintbit = PINT_BIT(pint_val);
550 u8 bank = PINT_2_BANK(pint_val);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800551
Michael Henneriche3f23002007-07-12 16:39:29 +0800552 pint[bank]->request = pintbit;
553 pint[bank]->mask_clear = pintbit;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800554 SSYNC();
555}
556
557static void bfin_gpio_mask_irq(unsigned int irq)
558{
559 u8 pint_val = irq2pint_lut[irq - SYS_IRQS];
560
561 pint[PINT_2_BANK(pint_val)]->mask_clear = PINT_BIT(pint_val);
562 SSYNC();
563}
564
565static void bfin_gpio_unmask_irq(unsigned int irq)
566{
567 u8 pint_val = irq2pint_lut[irq - SYS_IRQS];
Michael Henneriche3f23002007-07-12 16:39:29 +0800568 u32 pintbit = PINT_BIT(pint_val);
569 u8 bank = PINT_2_BANK(pint_val);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800570
Michael Henneriche3f23002007-07-12 16:39:29 +0800571 pint[bank]->request = pintbit;
572 pint[bank]->mask_set = pintbit;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800573 SSYNC();
574}
575
576static unsigned int bfin_gpio_irq_startup(unsigned int irq)
577{
578 unsigned int ret;
579 u16 gpionr = irq - IRQ_PA0;
580 u8 pint_val = irq2pint_lut[irq - SYS_IRQS];
581
Michael Hennerich50e163c2007-07-24 16:17:28 +0800582 if (pint_val == IRQ_NOT_AVAIL) {
583 printk(KERN_ERR
584 "GPIO IRQ %d :Not in PINT Assign table "
585 "Reconfigure Interrupt to Port Assignemt\n", irq);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800586 return -ENODEV;
Michael Hennerich50e163c2007-07-24 16:17:28 +0800587 }
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800588
589 if (!(gpio_enabled[gpio_bank(gpionr)] & gpio_bit(gpionr))) {
Michael Hennerich6782ea92007-07-24 15:16:59 +0800590 ret = gpio_request(gpionr, "IRQ");
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800591 if (ret)
592 return ret;
593 }
594
595 gpio_enabled[gpio_bank(gpionr)] |= gpio_bit(gpionr);
596 bfin_gpio_unmask_irq(irq);
597
598 return ret;
599}
600
601static void bfin_gpio_irq_shutdown(unsigned int irq)
602{
603 bfin_gpio_mask_irq(irq);
604 gpio_free(irq - IRQ_PA0);
605 gpio_enabled[gpio_bank(irq - IRQ_PA0)] &= ~gpio_bit(irq - IRQ_PA0);
606}
607
608static int bfin_gpio_irq_type(unsigned int irq, unsigned int type)
609{
610
611 unsigned int ret;
612 u16 gpionr = irq - IRQ_PA0;
613 u8 pint_val = irq2pint_lut[irq - SYS_IRQS];
Michael Henneriche3f23002007-07-12 16:39:29 +0800614 u32 pintbit = PINT_BIT(pint_val);
615 u8 bank = PINT_2_BANK(pint_val);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800616
617 if (pint_val == IRQ_NOT_AVAIL)
618 return -ENODEV;
619
620 if (type == IRQ_TYPE_PROBE) {
621 /* only probe unenabled GPIO interrupt lines */
622 if (gpio_enabled[gpio_bank(gpionr)] & gpio_bit(gpionr))
623 return 0;
624 type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING;
625 }
626
627 if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING |
628 IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW)) {
629 if (!(gpio_enabled[gpio_bank(gpionr)] & gpio_bit(gpionr))) {
Michael Hennerich6782ea92007-07-24 15:16:59 +0800630 ret = gpio_request(gpionr, "IRQ");
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800631 if (ret)
632 return ret;
633 }
634
635 gpio_enabled[gpio_bank(gpionr)] |= gpio_bit(gpionr);
636 } else {
637 gpio_enabled[gpio_bank(gpionr)] &= ~gpio_bit(gpionr);
638 return 0;
639 }
640
641 gpio_direction_input(gpionr);
642
643 if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING)) {
Michael Henneriche3f23002007-07-12 16:39:29 +0800644 pint[bank]->edge_set = pintbit;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800645 } else {
Michael Henneriche3f23002007-07-12 16:39:29 +0800646 pint[bank]->edge_clear = pintbit;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800647 }
648
649 if ((type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_LEVEL_LOW)))
Michael Henneriche3f23002007-07-12 16:39:29 +0800650 pint[bank]->invert_set = pintbit; /* low or falling edge denoted by one */
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800651 else
Michael Henneriche3f23002007-07-12 16:39:29 +0800652 pint[bank]->invert_set = pintbit; /* high or rising edge denoted by zero */
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800653
654 if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING))
Michael Henneriche3f23002007-07-12 16:39:29 +0800655 pint[bank]->invert_set = pintbit;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800656 else
Michael Henneriche3f23002007-07-12 16:39:29 +0800657 pint[bank]->invert_set = pintbit;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800658
659 SSYNC();
660
661 if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING))
662 set_irq_handler(irq, handle_edge_irq);
663 else
664 set_irq_handler(irq, handle_level_irq);
665
666 return 0;
667}
668
669static struct irq_chip bfin_gpio_irqchip = {
670 .ack = bfin_gpio_ack_irq,
671 .mask = bfin_gpio_mask_irq,
672 .mask_ack = bfin_gpio_mask_ack_irq,
673 .unmask = bfin_gpio_unmask_irq,
674 .set_type = bfin_gpio_irq_type,
675 .startup = bfin_gpio_irq_startup,
676 .shutdown = bfin_gpio_irq_shutdown
677};
678
679static void bfin_demux_gpio_irq(unsigned int intb_irq,
680 struct irq_desc *intb_desc)
681{
682 u8 bank, pint_val;
683 u32 request, irq;
Michael Henneriche3f23002007-07-12 16:39:29 +0800684 struct irq_desc *desc;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800685
686 switch (intb_irq) {
687 case IRQ_PINT0:
688 bank = 0;
689 break;
690 case IRQ_PINT2:
691 bank = 2;
692 break;
693 case IRQ_PINT3:
694 bank = 3;
695 break;
696 case IRQ_PINT1:
697 bank = 1;
698 break;
Michael Henneriche3f23002007-07-12 16:39:29 +0800699 default:
700 return;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800701 }
702
703 pint_val = bank * NR_PINT_BITS;
704
705 request = pint[bank]->request;
706
707 while (request) {
708 if (request & 1) {
Michael Henneriche3f23002007-07-12 16:39:29 +0800709 irq = pint2irq_lut[pint_val] + SYS_IRQS;
710 desc = irq_desc + irq;
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800711 desc->handle_irq(irq, desc);
712 }
713 pint_val++;
714 request >>= 1;
715 }
716
717}
Bryan Wu1394f032007-05-06 14:50:22 -0700718#endif /* CONFIG_IRQCHIP_DEMUX_GPIO */
719
Bernd Schmidt8be80ed2007-07-25 14:44:49 +0800720void __init init_exception_vectors(void)
721{
722 SSYNC();
723
Mike Frysingerf0b5d122007-08-05 17:03:59 +0800724 /* cannot program in software:
725 * evt0 - emulation (jtag)
726 * evt1 - reset
727 */
728 bfin_write_EVT2(evt_nmi);
Bernd Schmidt8be80ed2007-07-25 14:44:49 +0800729 bfin_write_EVT3(trap);
730 bfin_write_EVT5(evt_ivhw);
731 bfin_write_EVT6(evt_timer);
732 bfin_write_EVT7(evt_evt7);
733 bfin_write_EVT8(evt_evt8);
734 bfin_write_EVT9(evt_evt9);
735 bfin_write_EVT10(evt_evt10);
736 bfin_write_EVT11(evt_evt11);
737 bfin_write_EVT12(evt_evt12);
738 bfin_write_EVT13(evt_evt13);
739 bfin_write_EVT14(evt14_softirq);
740 bfin_write_EVT15(evt_system_call);
741 CSYNC();
742}
743
Bryan Wu1394f032007-05-06 14:50:22 -0700744/*
745 * This function should be called during kernel startup to initialize
746 * the BFin IRQ handling routines.
747 */
748int __init init_arch_irq(void)
749{
750 int irq;
751 unsigned long ilat = 0;
752 /* Disable all the peripheral intrs - page 4-29 HW Ref manual */
Roy Huang24a07a12007-07-12 22:41:45 +0800753#ifdef CONFIG_BF54x
754 bfin_write_SIC_IMASK0(SIC_UNMASK_ALL);
755 bfin_write_SIC_IMASK1(SIC_UNMASK_ALL);
756 bfin_write_SIC_IMASK2(SIC_UNMASK_ALL);
Michael Hennerich1c5d2262007-06-21 11:34:16 +0800757 bfin_write_SIC_IWR0(IWR_ENABLE_ALL);
758 bfin_write_SIC_IWR1(IWR_ENABLE_ALL);
Bryan Wuc04d66b2007-07-12 17:26:31 +0800759 bfin_write_SIC_IWR2(IWR_ENABLE_ALL);
Roy Huang24a07a12007-07-12 22:41:45 +0800760#else
Bryan Wu1394f032007-05-06 14:50:22 -0700761 bfin_write_SIC_IMASK(SIC_UNMASK_ALL);
Michael Hennerich1c5d2262007-06-21 11:34:16 +0800762 bfin_write_SIC_IWR(IWR_ENABLE_ALL);
Roy Huang24a07a12007-07-12 22:41:45 +0800763#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700764 SSYNC();
765
766 local_irq_disable();
767
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800768#if defined(CONFIG_IRQCHIP_DEMUX_GPIO) && defined(CONFIG_BF54x)
769#ifdef CONFIG_PINTx_REASSIGN
770 pint[0]->assign = CONFIG_PINT0_ASSIGN;
771 pint[1]->assign = CONFIG_PINT1_ASSIGN;
772 pint[2]->assign = CONFIG_PINT2_ASSIGN;
773 pint[3]->assign = CONFIG_PINT3_ASSIGN;
774#endif
775 /* Whenever PINTx_ASSIGN is altered init_pint_lut() must be executed! */
776 init_pint_lut();
777#endif
778
779 for (irq = 0; irq <= SYS_IRQS; irq++) {
Bryan Wu1394f032007-05-06 14:50:22 -0700780 if (irq <= IRQ_CORETMR)
781 set_irq_chip(irq, &bfin_core_irqchip);
782 else
783 set_irq_chip(irq, &bfin_internal_irqchip);
784#ifdef BF537_GENERIC_ERROR_INT_DEMUX
785 if (irq != IRQ_GENERIC_ERROR) {
786#endif
787
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800788 switch (irq) {
Bryan Wu1394f032007-05-06 14:50:22 -0700789#ifdef CONFIG_IRQCHIP_DEMUX_GPIO
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800790#ifndef CONFIG_BF54x
791 case IRQ_PROG_INTA:
Bryan Wu1394f032007-05-06 14:50:22 -0700792 set_irq_chained_handler(irq,
793 bfin_demux_gpio_irq);
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800794 break;
795#if defined(BF537_FAMILY) && !(defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE))
796 case IRQ_MAC_RX:
797 set_irq_chained_handler(irq,
798 bfin_demux_gpio_irq);
799 break;
Bryan Wu1394f032007-05-06 14:50:22 -0700800#endif
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800801#else
802 case IRQ_PINT0:
803 set_irq_chained_handler(irq,
804 bfin_demux_gpio_irq);
805 break;
806 case IRQ_PINT1:
807 set_irq_chained_handler(irq,
808 bfin_demux_gpio_irq);
809 break;
810 case IRQ_PINT2:
811 set_irq_chained_handler(irq,
812 bfin_demux_gpio_irq);
813 break;
814 case IRQ_PINT3:
815 set_irq_chained_handler(irq,
816 bfin_demux_gpio_irq);
817 break;
818#endif /*CONFIG_BF54x */
819#endif
820 default:
821 set_irq_handler(irq, handle_simple_irq);
822 break;
823 }
Bryan Wu1394f032007-05-06 14:50:22 -0700824
825#ifdef BF537_GENERIC_ERROR_INT_DEMUX
826 } else {
827 set_irq_handler(irq, bfin_demux_error_irq);
828 }
829#endif
830 }
831#ifdef BF537_GENERIC_ERROR_INT_DEMUX
832 for (irq = IRQ_PPI_ERROR; irq <= IRQ_UART1_ERROR; irq++) {
833 set_irq_chip(irq, &bfin_generic_error_irqchip);
834 set_irq_handler(irq, handle_level_irq);
835 }
836#endif
837
838#ifdef CONFIG_IRQCHIP_DEMUX_GPIO
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800839#ifndef CONFIG_BF54x
Bryan Wu1394f032007-05-06 14:50:22 -0700840 for (irq = IRQ_PF0; irq < NR_IRQS; irq++) {
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800841#else
842 for (irq = IRQ_PA0; irq < NR_IRQS; irq++) {
843#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700844 set_irq_chip(irq, &bfin_gpio_irqchip);
845 /* if configured as edge, then will be changed to do_edge_IRQ */
846 set_irq_handler(irq, handle_level_irq);
847 }
848#endif
849 bfin_write_IMASK(0);
850 CSYNC();
851 ilat = bfin_read_ILAT();
852 CSYNC();
853 bfin_write_ILAT(ilat);
854 CSYNC();
855
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800856 printk(KERN_INFO "Configuring Blackfin Priority Driven Interrupts\n");
Bryan Wu1394f032007-05-06 14:50:22 -0700857 /* IMASK=xxx is equivalent to STI xx or irq_flags=xx,
858 * local_irq_enable()
859 */
860 program_IAR();
861 /* Therefore it's better to setup IARs before interrupts enabled */
862 search_IAR();
863
864 /* Enable interrupts IVG7-15 */
865 irq_flags = irq_flags | IMASK_IVG15 |
866 IMASK_IVG14 | IMASK_IVG13 | IMASK_IVG12 | IMASK_IVG11 |
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800867 IMASK_IVG10 | IMASK_IVG9 | IMASK_IVG8 | IMASK_IVG7 | IMASK_IVGHW;
Bryan Wu1394f032007-05-06 14:50:22 -0700868
869 return 0;
870}
871
872#ifdef CONFIG_DO_IRQ_L1
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800873void do_irq(int vec, struct pt_regs *fp) __attribute__((l1_text));
Bryan Wu1394f032007-05-06 14:50:22 -0700874#endif
875
876void do_irq(int vec, struct pt_regs *fp)
877{
878 if (vec == EVT_IVTMR_P) {
879 vec = IRQ_CORETMR;
880 } else {
881 struct ivgx *ivg = ivg7_13[vec - IVG7].ifirst;
882 struct ivgx *ivg_stop = ivg7_13[vec - IVG7].istop;
Roy Huang24a07a12007-07-12 22:41:45 +0800883#ifdef CONFIG_BF54x
884 unsigned long sic_status[3];
Bryan Wu1394f032007-05-06 14:50:22 -0700885
886 SSYNC();
Roy Huang24a07a12007-07-12 22:41:45 +0800887 sic_status[0] = bfin_read_SIC_ISR(0) & bfin_read_SIC_IMASK(0);
888 sic_status[1] = bfin_read_SIC_ISR(1) & bfin_read_SIC_IMASK(1);
889 sic_status[2] = bfin_read_SIC_ISR(2) & bfin_read_SIC_IMASK(2);
Michael Henneriche3f23002007-07-12 16:39:29 +0800890
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800891 for (;; ivg++) {
Roy Huang24a07a12007-07-12 22:41:45 +0800892 if (ivg >= ivg_stop) {
893 atomic_inc(&num_spurious);
894 return;
895 }
Michael Hennerich34e0fc82007-07-12 16:17:18 +0800896 if (sic_status[(ivg->irqno - IVG7) / 32] & ivg->isrflag)
Roy Huang24a07a12007-07-12 22:41:45 +0800897 break;
898 }
899#else
900 unsigned long sic_status;
901 SSYNC();
Bryan Wu1394f032007-05-06 14:50:22 -0700902 sic_status = bfin_read_SIC_IMASK() & bfin_read_SIC_ISR();
903
904 for (;; ivg++) {
905 if (ivg >= ivg_stop) {
906 atomic_inc(&num_spurious);
907 return;
908 } else if (sic_status & ivg->isrflag)
909 break;
910 }
Roy Huang24a07a12007-07-12 22:41:45 +0800911#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700912 vec = ivg->irqno;
913 }
914 asm_do_IRQ(vec, fp);
915
916#ifdef CONFIG_KGDB
917 kgdb_process_breakpoint();
918#endif
919}