2 * File: arch/blackfin/mach-common/ints-priority-sc.c
7 * Description: Set up the interupt priorities
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>
16 * Copyright 2004-2006 Analog Devices Inc.
18 * Bugs: Enter bugs at http://blackfin.uclinux.org/
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.
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.
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
36 #include <linux/module.h>
37 #include <linux/kernel_stat.h>
38 #include <linux/seq_file.h>
39 #include <linux/irq.h>
41 #include <linux/kgdb.h>
43 #include <asm/traps.h>
44 #include <asm/blackfin.h>
46 #include <asm/irq_handler.h>
49 # define BF537_GENERIC_ERROR_INT_DEMUX
51 # undef BF537_GENERIC_ERROR_INT_DEMUX
56 * - we have separated the physical Hardware interrupt from the
57 * levels that the LINUX kernel sees (see the description in irq.h)
61 unsigned long irq_flags
= 0;
63 /* The number of spurious interrupts */
64 atomic_t num_spurious
;
67 /* irq number for request_irq, available in mach-bf533/irq.h */
69 /* corresponding bit in the SIC_ISR register */
71 } ivg_table
[NR_PERI_INTS
];
74 /* position of first irq in ivg_table for given ivg */
77 } ivg7_13
[IVG13
- IVG7
+ 1];
79 static void search_IAR(void);
82 * Search SIC_IAR and fill tables with the irqvalues
83 * and their positions in the SIC_ISR register.
85 static void __init
search_IAR(void)
87 unsigned ivg
, irq_pos
= 0;
88 for (ivg
= 0; ivg
<= IVG13
- IVG7
; ivg
++) {
91 ivg7_13
[ivg
].istop
= ivg7_13
[ivg
].ifirst
=
94 for (irqn
= 0; irqn
< NR_PERI_INTS
; irqn
++) {
95 int iar_shift
= (irqn
& 7) * 4;
98 bfin_read32((unsigned long *) SIC_IAR0
+
99 (irqn
>> 3)) >> iar_shift
)) {
100 ivg_table
[irq_pos
].irqno
= IVG7
+ irqn
;
101 ivg_table
[irq_pos
].isrflag
= 1 << irqn
;
102 ivg7_13
[ivg
].istop
++;
110 * This is for BF533 internal IRQs
113 static void ack_noop(unsigned int irq
)
115 /* Dummy function. */
118 static void bfin_core_mask_irq(unsigned int irq
)
120 irq_flags
&= ~(1 << irq
);
121 if (!irqs_disabled())
125 static void bfin_core_unmask_irq(unsigned int irq
)
127 irq_flags
|= 1 << irq
;
129 * If interrupts are enabled, IMASK must contain the same value
130 * as irq_flags. Make sure that invariant holds. If interrupts
131 * are currently disabled we need not do anything; one of the
132 * callers will take care of setting IMASK to the proper value
133 * when reenabling interrupts.
134 * local_irq_enable just does "STI irq_flags", so it's exactly
137 if (!irqs_disabled())
142 static void bfin_internal_mask_irq(unsigned int irq
)
144 bfin_write_SIC_IMASK(bfin_read_SIC_IMASK() &
145 ~(1 << (irq
- (IRQ_CORETMR
+ 1))));
149 static void bfin_internal_unmask_irq(unsigned int irq
)
151 bfin_write_SIC_IMASK(bfin_read_SIC_IMASK() |
152 (1 << (irq
- (IRQ_CORETMR
+ 1))));
156 static struct irq_chip bfin_core_irqchip
= {
158 .mask
= bfin_core_mask_irq
,
159 .unmask
= bfin_core_unmask_irq
,
162 static struct irq_chip bfin_internal_irqchip
= {
164 .mask
= bfin_internal_mask_irq
,
165 .unmask
= bfin_internal_unmask_irq
,
168 #ifdef BF537_GENERIC_ERROR_INT_DEMUX
169 static int error_int_mask
;
171 static void bfin_generic_error_ack_irq(unsigned int irq
)
176 static void bfin_generic_error_mask_irq(unsigned int irq
)
178 error_int_mask
&= ~(1L << (irq
- IRQ_PPI_ERROR
));
180 if (!error_int_mask
) {
182 bfin_write_SIC_IMASK(bfin_read_SIC_IMASK() &
185 (IRQ_CORETMR
+ 1))));
191 static void bfin_generic_error_unmask_irq(unsigned int irq
)
194 bfin_write_SIC_IMASK(bfin_read_SIC_IMASK() | 1 <<
195 (IRQ_GENERIC_ERROR
- (IRQ_CORETMR
+ 1)));
199 error_int_mask
|= 1L << (irq
- IRQ_PPI_ERROR
);
202 static struct irq_chip bfin_generic_error_irqchip
= {
203 .ack
= bfin_generic_error_ack_irq
,
204 .mask
= bfin_generic_error_mask_irq
,
205 .unmask
= bfin_generic_error_unmask_irq
,
208 static void bfin_demux_error_irq(unsigned int int_err_irq
,
209 struct irq_desc
*intb_desc
)
215 #if (defined(CONFIG_BF537) || defined(CONFIG_BF536))
216 if (bfin_read_EMAC_SYSTAT() & EMAC_ERR_MASK
)
220 if (bfin_read_SPORT0_STAT() & SPORT_ERR_MASK
)
221 irq
= IRQ_SPORT0_ERROR
;
222 else if (bfin_read_SPORT1_STAT() & SPORT_ERR_MASK
)
223 irq
= IRQ_SPORT1_ERROR
;
224 else if (bfin_read_PPI_STATUS() & PPI_ERR_MASK
)
226 else if (bfin_read_CAN_GIF() & CAN_ERR_MASK
)
228 else if (bfin_read_SPI_STAT() & SPI_ERR_MASK
)
230 else if ((bfin_read_UART0_IIR() & UART_ERR_MASK_STAT1
) &&
231 (bfin_read_UART0_IIR() & UART_ERR_MASK_STAT0
))
232 irq
= IRQ_UART0_ERROR
;
233 else if ((bfin_read_UART1_IIR() & UART_ERR_MASK_STAT1
) &&
234 (bfin_read_UART1_IIR() & UART_ERR_MASK_STAT0
))
235 irq
= IRQ_UART1_ERROR
;
238 if (error_int_mask
& (1L << (irq
- IRQ_PPI_ERROR
))) {
239 struct irq_desc
*desc
= irq_desc
+ irq
;
240 desc
->handle_irq(irq
, desc
);
245 bfin_write_PPI_STATUS(PPI_ERR_MASK
);
247 #if (defined(CONFIG_BF537) || defined(CONFIG_BF536))
249 bfin_write_EMAC_SYSTAT(EMAC_ERR_MASK
);
252 case IRQ_SPORT0_ERROR
:
253 bfin_write_SPORT0_STAT(SPORT_ERR_MASK
);
256 case IRQ_SPORT1_ERROR
:
257 bfin_write_SPORT1_STAT(SPORT_ERR_MASK
);
261 bfin_write_CAN_GIS(CAN_ERR_MASK
);
265 bfin_write_SPI_STAT(SPI_ERR_MASK
);
273 " MASKED PERIPHERAL ERROR INTERRUPT ASSERTED\n",
278 "%s : %s : LINE %d :\nIRQ ?: PERIPHERAL ERROR"
279 " INTERRUPT ASSERTED BUT NO SOURCE FOUND\n",
280 __FUNCTION__
, __FILE__
, __LINE__
);
284 #endif /* BF537_GENERIC_ERROR_INT_DEMUX */
286 #ifdef CONFIG_IRQCHIP_DEMUX_GPIO
288 static unsigned short gpio_enabled
[gpio_bank(MAX_BLACKFIN_GPIOS
)];
289 static unsigned short gpio_edge_triggered
[gpio_bank(MAX_BLACKFIN_GPIOS
)];
291 static void bfin_gpio_ack_irq(unsigned int irq
)
293 u16 gpionr
= irq
- IRQ_PF0
;
295 if (gpio_edge_triggered
[gpio_bank(gpionr
)] & gpio_bit(gpionr
)) {
296 set_gpio_data(gpionr
, 0);
301 static void bfin_gpio_mask_ack_irq(unsigned int irq
)
303 u16 gpionr
= irq
- IRQ_PF0
;
305 if (gpio_edge_triggered
[gpio_bank(gpionr
)] & gpio_bit(gpionr
)) {
306 set_gpio_data(gpionr
, 0);
310 set_gpio_maska(gpionr
, 0);
314 static void bfin_gpio_mask_irq(unsigned int irq
)
316 set_gpio_maska(irq
- IRQ_PF0
, 0);
320 static void bfin_gpio_unmask_irq(unsigned int irq
)
322 set_gpio_maska(irq
- IRQ_PF0
, 1);
326 static unsigned int bfin_gpio_irq_startup(unsigned int irq
)
329 u16 gpionr
= irq
- IRQ_PF0
;
331 if (!(gpio_enabled
[gpio_bank(gpionr
)] & gpio_bit(gpionr
))) {
332 ret
= gpio_request(gpionr
, NULL
);
337 gpio_enabled
[gpio_bank(gpionr
)] |= gpio_bit(gpionr
);
338 bfin_gpio_unmask_irq(irq
);
343 static void bfin_gpio_irq_shutdown(unsigned int irq
)
345 bfin_gpio_mask_irq(irq
);
346 gpio_free(irq
- IRQ_PF0
);
347 gpio_enabled
[gpio_bank(irq
- IRQ_PF0
)] &= ~gpio_bit(irq
- IRQ_PF0
);
350 static int bfin_gpio_irq_type(unsigned int irq
, unsigned int type
)
354 u16 gpionr
= irq
- IRQ_PF0
;
356 if (type
== IRQ_TYPE_PROBE
) {
357 /* only probe unenabled GPIO interrupt lines */
358 if (gpio_enabled
[gpio_bank(gpionr
)] & gpio_bit(gpionr
))
360 type
= IRQ_TYPE_EDGE_RISING
| IRQ_TYPE_EDGE_FALLING
;
363 if (type
& (IRQ_TYPE_EDGE_RISING
| IRQ_TYPE_EDGE_FALLING
|
364 IRQ_TYPE_LEVEL_HIGH
| IRQ_TYPE_LEVEL_LOW
))
366 if (!(gpio_enabled
[gpio_bank(gpionr
)] & gpio_bit(gpionr
))) {
367 ret
= gpio_request(gpionr
, NULL
);
372 gpio_enabled
[gpio_bank(gpionr
)] |= gpio_bit(gpionr
);
374 gpio_enabled
[gpio_bank(gpionr
)] &= ~gpio_bit(gpionr
);
378 set_gpio_dir(gpionr
, 0);
379 set_gpio_inen(gpionr
, 1);
381 if (type
& (IRQ_TYPE_EDGE_RISING
| IRQ_TYPE_EDGE_FALLING
)) {
382 gpio_edge_triggered
[gpio_bank(gpionr
)] |= gpio_bit(gpionr
);
383 set_gpio_edge(gpionr
, 1);
385 set_gpio_edge(gpionr
, 0);
386 gpio_edge_triggered
[gpio_bank(gpionr
)] &= ~gpio_bit(gpionr
);
389 if ((type
& (IRQ_TYPE_EDGE_RISING
| IRQ_TYPE_EDGE_FALLING
))
390 == (IRQ_TYPE_EDGE_RISING
| IRQ_TYPE_EDGE_FALLING
))
391 set_gpio_both(gpionr
, 1);
393 set_gpio_both(gpionr
, 0);
395 if ((type
& (IRQ_TYPE_EDGE_FALLING
| IRQ_TYPE_LEVEL_LOW
)))
396 set_gpio_polar(gpionr
, 1); /* low or falling edge denoted by one */
398 set_gpio_polar(gpionr
, 0); /* high or rising edge denoted by zero */
402 if (type
& (IRQ_TYPE_EDGE_RISING
| IRQ_TYPE_EDGE_FALLING
))
403 set_irq_handler(irq
, handle_edge_irq
);
405 set_irq_handler(irq
, handle_level_irq
);
411 static struct irq_chip bfin_gpio_irqchip
= {
412 .ack
= bfin_gpio_ack_irq
,
413 .mask
= bfin_gpio_mask_irq
,
414 .mask_ack
= bfin_gpio_mask_ack_irq
,
415 .unmask
= bfin_gpio_unmask_irq
,
416 .set_type
= bfin_gpio_irq_type
,
417 .startup
= bfin_gpio_irq_startup
,
418 .shutdown
= bfin_gpio_irq_shutdown
421 static void bfin_demux_gpio_irq(unsigned int intb_irq
,
422 struct irq_desc
*intb_desc
)
426 for (i
= 0; i
< MAX_BLACKFIN_GPIOS
; i
+=16) {
427 int irq
= IRQ_PF0
+ i
;
428 int flag_d
= get_gpiop_data(i
);
430 flag_d
& (gpio_enabled
[gpio_bank(i
)] &
435 struct irq_desc
*desc
= irq_desc
+ irq
;
436 desc
->handle_irq(irq
, desc
);
444 #endif /* CONFIG_IRQCHIP_DEMUX_GPIO */
447 * This function should be called during kernel startup to initialize
448 * the BFin IRQ handling routines.
450 int __init
init_arch_irq(void)
453 unsigned long ilat
= 0;
454 /* Disable all the peripheral intrs - page 4-29 HW Ref manual */
455 bfin_write_SIC_IMASK(SIC_UNMASK_ALL
);
461 bfin_write_EVT0(evt_emulation
);
463 bfin_write_EVT2(evt_evt2
);
464 bfin_write_EVT3(trap
);
465 bfin_write_EVT5(evt_ivhw
);
466 bfin_write_EVT6(evt_timer
);
467 bfin_write_EVT7(evt_evt7
);
468 bfin_write_EVT8(evt_evt8
);
469 bfin_write_EVT9(evt_evt9
);
470 bfin_write_EVT10(evt_evt10
);
471 bfin_write_EVT11(evt_evt11
);
472 bfin_write_EVT12(evt_evt12
);
473 bfin_write_EVT13(evt_evt13
);
474 bfin_write_EVT14(evt14_softirq
);
475 bfin_write_EVT15(evt_system_call
);
478 for (irq
= 0; irq
< SYS_IRQS
; irq
++) {
479 if (irq
<= IRQ_CORETMR
)
480 set_irq_chip(irq
, &bfin_core_irqchip
);
482 set_irq_chip(irq
, &bfin_internal_irqchip
);
483 #ifdef BF537_GENERIC_ERROR_INT_DEMUX
484 if (irq
!= IRQ_GENERIC_ERROR
) {
487 #ifdef CONFIG_IRQCHIP_DEMUX_GPIO
488 if ((irq
!= IRQ_PROG_INTA
) /*PORT F & G MASK_A Interrupt*/
489 # if defined(BF537_FAMILY) && !(defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE))
490 && (irq
!= IRQ_MAC_RX
) /*PORT H MASK_A Interrupt*/
494 set_irq_handler(irq
, handle_simple_irq
);
495 #ifdef CONFIG_IRQCHIP_DEMUX_GPIO
497 set_irq_chained_handler(irq
,
498 bfin_demux_gpio_irq
);
502 #ifdef BF537_GENERIC_ERROR_INT_DEMUX
504 set_irq_handler(irq
, bfin_demux_error_irq
);
508 #ifdef BF537_GENERIC_ERROR_INT_DEMUX
509 for (irq
= IRQ_PPI_ERROR
; irq
<= IRQ_UART1_ERROR
; irq
++) {
510 set_irq_chip(irq
, &bfin_generic_error_irqchip
);
511 set_irq_handler(irq
, handle_level_irq
);
515 #ifdef CONFIG_IRQCHIP_DEMUX_GPIO
516 for (irq
= IRQ_PF0
; irq
< NR_IRQS
; irq
++) {
517 set_irq_chip(irq
, &bfin_gpio_irqchip
);
518 /* if configured as edge, then will be changed to do_edge_IRQ */
519 set_irq_handler(irq
, handle_level_irq
);
524 ilat
= bfin_read_ILAT();
526 bfin_write_ILAT(ilat
);
530 "Configuring Blackfin Priority Driven Interrupts\n");
531 /* IMASK=xxx is equivalent to STI xx or irq_flags=xx,
535 /* Therefore it's better to setup IARs before interrupts enabled */
538 /* Enable interrupts IVG7-15 */
539 irq_flags
= irq_flags
| IMASK_IVG15
|
540 IMASK_IVG14
| IMASK_IVG13
| IMASK_IVG12
| IMASK_IVG11
|
541 IMASK_IVG10
| IMASK_IVG9
| IMASK_IVG8
| IMASK_IVG7
|
547 #ifdef CONFIG_DO_IRQ_L1
548 void do_irq(int vec
, struct pt_regs
*fp
)__attribute__((l1_text
));
551 void do_irq(int vec
, struct pt_regs
*fp
)
553 if (vec
== EVT_IVTMR_P
) {
556 struct ivgx
*ivg
= ivg7_13
[vec
- IVG7
].ifirst
;
557 struct ivgx
*ivg_stop
= ivg7_13
[vec
- IVG7
].istop
;
558 unsigned long sic_status
;
561 sic_status
= bfin_read_SIC_IMASK() & bfin_read_SIC_ISR();
564 if (ivg
>= ivg_stop
) {
565 atomic_inc(&num_spurious
);
567 } else if (sic_status
& ivg
->isrflag
)
575 kgdb_process_breakpoint();