aboutsummaryrefslogtreecommitdiffstats
path: root/arch/blackfin/mach-bf537
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2011-04-15 13:04:59 -0400
committerMike Frysinger <vapier@gentoo.org>2011-05-25 08:13:43 -0400
commit8c0541035007bd8bbacfc5d71c696cdf37696794 (patch)
tree3731d537dcb31b6decfc5493be6f4d5f3d055fb2 /arch/blackfin/mach-bf537
parente2a8092c3fa9766248e9515252ae44e6df2d97a0 (diff)
Blackfin: bf537: demux port H mask A and emac rx ints
The BF537 SIC combines the gpio port H mask A interrupts with the emac rx interrupt, so we need to demux this in software. It also combines the gpio port H mask B and the emac tx interrupts, and the watchdog and port F mask B interrupts, but since we don't support mask B yet, just add the defines for now. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'arch/blackfin/mach-bf537')
-rw-r--r--arch/blackfin/mach-bf537/include/mach/irq.h33
-rw-r--r--arch/blackfin/mach-bf537/ints-priority.c39
2 files changed, 65 insertions, 7 deletions
diff --git a/arch/blackfin/mach-bf537/include/mach/irq.h b/arch/blackfin/mach-bf537/include/mach/irq.h
index cc3132347414..b6ed8235bda4 100644
--- a/arch/blackfin/mach-bf537/include/mach/irq.h
+++ b/arch/blackfin/mach-bf537/include/mach/irq.h
@@ -28,8 +28,8 @@
28#define IRQ_UART1_TX BFIN_IRQ(14) /* DMA11 Interrupt (UART1 TX) */ 28#define IRQ_UART1_TX BFIN_IRQ(14) /* DMA11 Interrupt (UART1 TX) */
29#define IRQ_CAN_RX BFIN_IRQ(15) /* CAN Receive Interrupt */ 29#define IRQ_CAN_RX BFIN_IRQ(15) /* CAN Receive Interrupt */
30#define IRQ_CAN_TX BFIN_IRQ(16) /* CAN Transmit Interrupt */ 30#define IRQ_CAN_TX BFIN_IRQ(16) /* CAN Transmit Interrupt */
31#define IRQ_MAC_RX BFIN_IRQ(17) /* DMA1 (Ethernet RX) Interrupt */ 31#define IRQ_PH_INTA_MAC_RX BFIN_IRQ(17) /* Port H Interrupt A & DMA1 Interrupt (Ethernet RX) */
32#define IRQ_MAC_TX BFIN_IRQ(18) /* DMA2 (Ethernet TX) Interrupt */ 32#define IRQ_PH_INTB_MAC_TX BFIN_IRQ(18) /* Port H Interrupt B & DMA2 Interrupt (Ethernet TX) */
33#define IRQ_TIMER0 BFIN_IRQ(19) /* Timer 0 */ 33#define IRQ_TIMER0 BFIN_IRQ(19) /* Timer 0 */
34#define IRQ_TIMER1 BFIN_IRQ(20) /* Timer 1 */ 34#define IRQ_TIMER1 BFIN_IRQ(20) /* Timer 1 */
35#define IRQ_TIMER2 BFIN_IRQ(21) /* Timer 2 */ 35#define IRQ_TIMER2 BFIN_IRQ(21) /* Timer 2 */
@@ -38,12 +38,11 @@
38#define IRQ_TIMER5 BFIN_IRQ(24) /* Timer 5 */ 38#define IRQ_TIMER5 BFIN_IRQ(24) /* Timer 5 */
39#define IRQ_TIMER6 BFIN_IRQ(25) /* Timer 6 */ 39#define IRQ_TIMER6 BFIN_IRQ(25) /* Timer 6 */
40#define IRQ_TIMER7 BFIN_IRQ(26) /* Timer 7 */ 40#define IRQ_TIMER7 BFIN_IRQ(26) /* Timer 7 */
41#define IRQ_PROG_INTA BFIN_IRQ(27) /* PF Ports F&G (PF15:0) Interrupt A */ 41#define IRQ_PF_INTA_PG_INTA BFIN_IRQ(27) /* Ports F&G Interrupt A */
42#define IRQ_PORTG_INTB BFIN_IRQ(28) /* PF Port G (PF15:0) Interrupt B */ 42#define IRQ_PORTG_INTB BFIN_IRQ(28) /* Port G Interrupt B */
43#define IRQ_MEM_DMA0 BFIN_IRQ(29) /* (Memory DMA Stream 0) */ 43#define IRQ_MEM_DMA0 BFIN_IRQ(29) /* (Memory DMA Stream 0) */
44#define IRQ_MEM_DMA1 BFIN_IRQ(30) /* (Memory DMA Stream 1) */ 44#define IRQ_MEM_DMA1 BFIN_IRQ(30) /* (Memory DMA Stream 1) */
45#define IRQ_PROG_INTB BFIN_IRQ(31) /* PF Ports F (PF15:0) Interrupt B */ 45#define IRQ_PF_INTB_WATCH BFIN_IRQ(31) /* Watchdog & Port F Interrupt B */
46#define IRQ_WATCH BFIN_IRQ(32) /* Watch Dog Timer */
47 46
48#define SYS_IRQS 39 47#define SYS_IRQS 39
49 48
@@ -118,7 +117,27 @@
118#define IRQ_MAC_TXDMAERR 104 /* TX DMA Direction Error Interrupt */ 117#define IRQ_MAC_TXDMAERR 104 /* TX DMA Direction Error Interrupt */
119#define IRQ_MAC_STMDONE 105 /* Station Mgt. Transfer Done Interrupt */ 118#define IRQ_MAC_STMDONE 105 /* Station Mgt. Transfer Done Interrupt */
120 119
121#define NR_MACH_IRQS (IRQ_MAC_STMDONE + 1) 120#define IRQ_MAC_RX 106 /* DMA1 Interrupt (Ethernet RX) */
121#define IRQ_PORTH_INTA 107 /* Port H Interrupt A */
122
123#if 0 /* No Interrupt B support (yet) */
124#define IRQ_MAC_TX 108 /* DMA2 Interrupt (Ethernet TX) */
125#define IRQ_PORTH_INTB 109 /* Port H Interrupt B */
126#else
127#define IRQ_MAC_TX IRQ_PH_INTB_MAC_TX
128#endif
129
130#define IRQ_PORTF_INTA 110 /* Port F Interrupt A */
131#define IRQ_PORTG_INTA 111 /* Port G Interrupt A */
132
133#if 0 /* No Interrupt B support (yet) */
134#define IRQ_WATCH 112 /* Watchdog Timer */
135#define IRQ_PORTF_INTB 113 /* Port F Interrupt B */
136#else
137#define IRQ_WATCH IRQ_PF_INTB_WATCH
138#endif
139
140#define NR_MACH_IRQS (113 + 1)
122 141
123/* IAR0 BIT FIELDS */ 142/* IAR0 BIT FIELDS */
124#define IRQ_PLL_WAKEUP_POS 0 143#define IRQ_PLL_WAKEUP_POS 0
diff --git a/arch/blackfin/mach-bf537/ints-priority.c b/arch/blackfin/mach-bf537/ints-priority.c
index cbf19011667b..2137a209a22b 100644
--- a/arch/blackfin/mach-bf537/ints-priority.c
+++ b/arch/blackfin/mach-bf537/ints-priority.c
@@ -14,6 +14,7 @@
14#include <asm/bfin5xx_spi.h> 14#include <asm/bfin5xx_spi.h>
15#include <asm/bfin_sport.h> 15#include <asm/bfin_sport.h>
16#include <asm/bfin_can.h> 16#include <asm/bfin_can.h>
17#include <asm/bfin_dma.h>
17#include <asm/dpmc.h> 18#include <asm/dpmc.h>
18 19
19void __init program_IAR(void) 20void __init program_IAR(void)
@@ -157,6 +158,40 @@ static void bf537_demux_error_irq(unsigned int int_err_irq,
157 158
158} 159}
159 160
161#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
162static int mac_rx_int_mask;
163
164static void bf537_mac_rx_mask_irq(struct irq_data *d)
165{
166 mac_rx_int_mask &= ~(1L << (d->irq - IRQ_MAC_RX));
167 if (!mac_rx_int_mask)
168 bfin_internal_mask_irq(IRQ_PH_INTA_MAC_RX);
169}
170
171static void bf537_mac_rx_unmask_irq(struct irq_data *d)
172{
173 bfin_internal_unmask_irq(IRQ_PH_INTA_MAC_RX);
174 mac_rx_int_mask |= 1L << (d->irq - IRQ_MAC_RX);
175}
176
177static struct irq_chip bf537_mac_rx_irqchip = {
178 .name = "ERROR",
179 .irq_ack = bfin_ack_noop,
180 .irq_mask_ack = bf537_mac_rx_mask_irq,
181 .irq_mask = bf537_mac_rx_mask_irq,
182 .irq_unmask = bf537_mac_rx_unmask_irq,
183};
184
185static void bf537_demux_mac_rx_irq(unsigned int int_irq,
186 struct irq_desc *desc)
187{
188 if (bfin_read_DMA1_IRQ_STATUS() & (DMA_DONE | DMA_ERR))
189 bfin_handle_irq(IRQ_MAC_RX);
190 else
191 bfin_demux_gpio_irq(int_irq, desc);
192}
193#endif
194
160void __init init_mach_irq(void) 195void __init init_mach_irq(void)
161{ 196{
162 int irq; 197 int irq;
@@ -172,6 +207,10 @@ void __init init_mach_irq(void)
172 handle_level_irq); 207 handle_level_irq);
173 208
174#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) 209#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
210 irq_set_chained_handler(IRQ_PH_INTA_MAC_RX, bf537_demux_mac_rx_irq);
211 irq_set_chip_and_handler(IRQ_MAC_RX, &bf537_mac_rx_irqchip, handle_level_irq);
212 irq_set_chip_and_handler(IRQ_PORTH_INTA, &bf537_mac_rx_irqchip, handle_level_irq);
213
175 irq_set_chained_handler(IRQ_MAC_ERROR, bfin_demux_mac_status_irq); 214 irq_set_chained_handler(IRQ_MAC_ERROR, bfin_demux_mac_status_irq);
176#endif 215#endif
177} 216}