]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/mips/txx9/rbtx4938/irq.c
[MIPS] TXx9: Reorganize code
[linux-2.6-omap-h63xx.git] / arch / mips / txx9 / rbtx4938 / irq.c
1 /*
2  * Toshiba RBTX4938 specific interrupt handlers
3  * Copyright (C) 2000-2001 Toshiba Corporation
4  *
5  * 2003-2005 (c) MontaVista Software, Inc. This file is licensed under the
6  * terms of the GNU General Public License version 2. This program is
7  * licensed "as is" without any warranty of any kind, whether express
8  * or implied.
9  *
10  * Support for TX4938 in 2.6 - Manish Lachwani (mlachwani@mvista.com)
11  */
12
13 /*
14 IRQ  Device
15
16 16   TX4938-CP0/00 Software 0
17 17   TX4938-CP0/01 Software 1
18 18   TX4938-CP0/02 Cascade TX4938-CP0
19 19   TX4938-CP0/03 Multiplexed -- do not use
20 20   TX4938-CP0/04 Multiplexed -- do not use
21 21   TX4938-CP0/05 Multiplexed -- do not use
22 22   TX4938-CP0/06 Multiplexed -- do not use
23 23   TX4938-CP0/07 CPU TIMER
24
25 24   TX4938-PIC/00
26 25   TX4938-PIC/01
27 26   TX4938-PIC/02 Cascade RBTX4938-IOC
28 27   TX4938-PIC/03 RBTX4938 RTL-8019AS Ethernet
29 28   TX4938-PIC/04
30 29   TX4938-PIC/05 TX4938 ETH1
31 30   TX4938-PIC/06 TX4938 ETH0
32 31   TX4938-PIC/07
33 32   TX4938-PIC/08 TX4938 SIO 0
34 33   TX4938-PIC/09 TX4938 SIO 1
35 34   TX4938-PIC/10 TX4938 DMA0
36 35   TX4938-PIC/11 TX4938 DMA1
37 36   TX4938-PIC/12 TX4938 DMA2
38 37   TX4938-PIC/13 TX4938 DMA3
39 38   TX4938-PIC/14
40 39   TX4938-PIC/15
41 40   TX4938-PIC/16 TX4938 PCIC
42 41   TX4938-PIC/17 TX4938 TMR0
43 42   TX4938-PIC/18 TX4938 TMR1
44 43   TX4938-PIC/19 TX4938 TMR2
45 44   TX4938-PIC/20
46 45   TX4938-PIC/21
47 46   TX4938-PIC/22 TX4938 PCIERR
48 47   TX4938-PIC/23
49 48   TX4938-PIC/24
50 49   TX4938-PIC/25
51 50   TX4938-PIC/26
52 51   TX4938-PIC/27
53 52   TX4938-PIC/28
54 53   TX4938-PIC/29
55 54   TX4938-PIC/30
56 55   TX4938-PIC/31 TX4938 SPI
57
58 56 RBTX4938-IOC/00 PCI-D
59 57 RBTX4938-IOC/01 PCI-C
60 58 RBTX4938-IOC/02 PCI-B
61 59 RBTX4938-IOC/03 PCI-A
62 60 RBTX4938-IOC/04 RTC
63 61 RBTX4938-IOC/05 ATA
64 62 RBTX4938-IOC/06 MODEM
65 63 RBTX4938-IOC/07 SWINT
66 */
67 #include <linux/init.h>
68 #include <linux/interrupt.h>
69 #include <asm/txx9/rbtx4938.h>
70
71 static void toshiba_rbtx4938_irq_ioc_enable(unsigned int irq);
72 static void toshiba_rbtx4938_irq_ioc_disable(unsigned int irq);
73
74 #define TOSHIBA_RBTX4938_IOC_NAME "RBTX4938-IOC"
75 static struct irq_chip toshiba_rbtx4938_irq_ioc_type = {
76         .name = TOSHIBA_RBTX4938_IOC_NAME,
77         .ack = toshiba_rbtx4938_irq_ioc_disable,
78         .mask = toshiba_rbtx4938_irq_ioc_disable,
79         .mask_ack = toshiba_rbtx4938_irq_ioc_disable,
80         .unmask = toshiba_rbtx4938_irq_ioc_enable,
81 };
82
83 int
84 toshiba_rbtx4938_irq_nested(int sw_irq)
85 {
86         u8 level3;
87
88         level3 = readb(rbtx4938_imstat_addr);
89         if (level3)
90                 /* must use fls so onboard ATA has priority */
91                 sw_irq = TOSHIBA_RBTX4938_IRQ_IOC_BEG + fls(level3) - 1;
92
93         return sw_irq;
94 }
95
96 static struct irqaction toshiba_rbtx4938_irq_ioc_action = {
97         .handler = no_action,
98         .flags = 0,
99         .mask = CPU_MASK_NONE,
100         .name = TOSHIBA_RBTX4938_IOC_NAME,
101 };
102
103 /**********************************************************************************/
104 /* Functions for ioc                                                              */
105 /**********************************************************************************/
106 static void __init
107 toshiba_rbtx4938_irq_ioc_init(void)
108 {
109         int i;
110
111         for (i = TOSHIBA_RBTX4938_IRQ_IOC_BEG;
112              i <= TOSHIBA_RBTX4938_IRQ_IOC_END; i++)
113                 set_irq_chip_and_handler(i, &toshiba_rbtx4938_irq_ioc_type,
114                                          handle_level_irq);
115
116         setup_irq(RBTX4938_IRQ_IOCINT,
117                   &toshiba_rbtx4938_irq_ioc_action);
118 }
119
120 static void
121 toshiba_rbtx4938_irq_ioc_enable(unsigned int irq)
122 {
123         unsigned char v;
124
125         v = readb(rbtx4938_imask_addr);
126         v |= (1 << (irq - TOSHIBA_RBTX4938_IRQ_IOC_BEG));
127         writeb(v, rbtx4938_imask_addr);
128         mmiowb();
129 }
130
131 static void
132 toshiba_rbtx4938_irq_ioc_disable(unsigned int irq)
133 {
134         unsigned char v;
135
136         v = readb(rbtx4938_imask_addr);
137         v &= ~(1 << (irq - TOSHIBA_RBTX4938_IRQ_IOC_BEG));
138         writeb(v, rbtx4938_imask_addr);
139         mmiowb();
140 }
141
142 void __init arch_init_irq(void)
143 {
144         extern void tx4938_irq_init(void);
145
146         /* Now, interrupt control disabled, */
147         /* all IRC interrupts are masked, */
148         /* all IRC interrupt mode are Low Active. */
149
150         /* mask all IOC interrupts */
151         writeb(0, rbtx4938_imask_addr);
152
153         /* clear SoftInt interrupts */
154         writeb(0, rbtx4938_softint_addr);
155         tx4938_irq_init();
156         toshiba_rbtx4938_irq_ioc_init();
157         /* Onboard 10M Ether: High Active */
158         set_irq_type(RBTX4938_IRQ_ETHER, IRQF_TRIGGER_HIGH);
159 }