+- add patches.fixes/linux-post-2.6.3-20040220
[linux-flexiantxendom0-3.2.10.git] / arch / ppc64 / kernel / iSeries_irq.c
1 /************************************************************************/
2 /* This module supports the iSeries PCI bus interrupt handling          */
3 /* Copyright (C) 20yy  <Robert L Holtorf> <IBM Corp>                    */
4 /*                                                                      */
5 /* This program is free software; you can redistribute it and/or modify */
6 /* it under the terms of the GNU General Public License as published by */
7 /* the Free Software Foundation; either version 2 of the License, or    */
8 /* (at your option) any later version.                                  */
9 /*                                                                      */
10 /* This program is distributed in the hope that it will be useful,      */ 
11 /* but WITHOUT ANY WARRANTY; without even the implied warranty of       */
12 /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        */
13 /* GNU General Public License for more details.                         */
14 /*                                                                      */
15 /* You should have received a copy of the GNU General Public License    */ 
16 /* along with this program; if not, write to the:                       */
17 /* Free Software Foundation, Inc.,                                      */ 
18 /* 59 Temple Place, Suite 330,                                          */ 
19 /* Boston, MA  02111-1307  USA                                          */
20 /************************************************************************/
21 /* Change Activity:                                                     */
22 /*   Created, December 13, 2000 by Wayne Holm                           */ 
23 /* End Change Activity                                                  */
24 /************************************************************************/
25 #include <linux/pci.h>
26 #include <linux/init.h>
27 #include <linux/threads.h>
28 #include <linux/smp.h>
29 #include <linux/param.h>
30 #include <linux/string.h>
31 #include <linux/bootmem.h>
32 #include <linux/ide.h>
33
34 #include <linux/irq.h>
35 #include <linux/spinlock.h>
36 #include <asm/ppcdebug.h>
37
38 #include <asm/iSeries/HvCallPci.h>
39 #include <asm/iSeries/HvCallXm.h>
40 #include <asm/iSeries/iSeries_irq.h>
41 #include <asm/iSeries/XmPciLpEvent.h>
42
43 static unsigned int iSeries_startup_IRQ(unsigned int irq);
44 static void iSeries_shutdown_IRQ(unsigned int irq);
45 static void iSeries_enable_IRQ(unsigned int irq);
46 static void iSeries_disable_IRQ(unsigned int irq);
47 static void iSeries_end_IRQ(unsigned int irq);
48
49 static hw_irq_controller iSeries_IRQ_handler = {
50         .typename = "iSeries irq controller",
51         .startup = iSeries_startup_IRQ,
52         .shutdown = iSeries_shutdown_IRQ,
53         .enable = iSeries_enable_IRQ,
54         .disable = iSeries_disable_IRQ,
55         .end = iSeries_end_IRQ
56 };
57
58 void iSeries_init_irq_desc(irq_desc_t *desc)
59 {
60         desc->handler = &iSeries_IRQ_handler;
61 }
62
63 /* This is called by init_IRQ.  set in ppc_md.init_IRQ by iSeries_setup.c */
64 void __init iSeries_init_IRQ(void)
65 {
66         /* Register PCI event handler and open an event path */
67         PPCDBG(PPCDBG_BUSWALK,
68                         "Register PCI event handler and open an event path\n");
69         XmPciLpEvent_init();
70         return;
71 }
72
73 /*
74  * This is called out of iSeries_scan_slot to allocate an IRQ for an EADS slot
75  * It calculates the irq value for the slot.
76  * Note that subBusNumber is always 0 (at the moment at least).
77  */
78 int __init iSeries_allocate_IRQ(HvBusNumber busNumber,
79                 HvSubBusNumber subBusNumber, HvAgentId deviceId)
80 {
81         u8 idsel = (deviceId >> 4);
82         u8 function = deviceId & 7;
83
84         return ((busNumber - 1) << 6) + ((idsel - 1) << 3) + function + 1;
85 }
86
87 #define IRQ_TO_BUS(irq)         (((((irq) - 1) >> 6) & 0xff) + 1)
88 #define IRQ_TO_IDSEL(irq)       (((((irq) - 1) >> 3) & 7) + 1)
89 #define IRQ_TO_FUNC(irq)        (((irq) - 1) & 7)
90
91 /* This is called by iSeries_activate_IRQs */
92 static unsigned int iSeries_startup_IRQ(unsigned int irq)
93 {
94         u32 bus, deviceId, function, mask;
95         const u32 subBus = 0;
96
97         bus = IRQ_TO_BUS(irq);
98         function = IRQ_TO_FUNC(irq);
99         deviceId = (IRQ_TO_IDSEL(irq) << 4) + function;
100
101         /* Link the IRQ number to the bridge */
102         HvCallXm_connectBusUnit(bus, subBus, deviceId, irq);
103
104         /* Unmask bridge interrupts in the FISR */
105         mask = 0x01010000 << function;
106         HvCallPci_unmaskFisr(bus, subBus, deviceId, mask);
107         PPCDBG(PPCDBG_BUSWALK, "iSeries_activate_IRQ 0x%02X.%02X.%02X  Irq:0x%02X\n",
108                                 bus, subBus, deviceId, irq);
109         return 0;
110 }
111
112 /*
113  * Temporary hack
114  */
115 #define get_irq_desc(irq)       &irq_desc[(irq)]
116
117 /*
118  * This is called out of iSeries_fixup to activate interrupt
119  * generation for usable slots
120  */
121 void __init iSeries_activate_IRQs()
122 {
123         int irq;
124         unsigned long flags;
125
126         for_each_irq (irq) {
127                 irq_desc_t *desc = get_irq_desc(irq);
128
129                 if (desc && desc->handler && desc->handler->startup) {
130                         spin_lock_irqsave(&desc->lock, flags);
131                         desc->handler->startup(irq);
132                         spin_unlock_irqrestore(&desc->lock, flags);
133                 }
134         }
135 }
136
137 /*  this is not called anywhere currently */
138 static void iSeries_shutdown_IRQ(unsigned int irq)
139 {
140         u32 bus, deviceId, function, mask;
141         const u32 subBus = 0;
142
143         /* irq should be locked by the caller */
144         bus = IRQ_TO_BUS(irq);
145         function = IRQ_TO_FUNC(irq);
146         deviceId = (IRQ_TO_IDSEL(irq) << 4) + function;
147
148         /* Invalidate the IRQ number in the bridge */
149         HvCallXm_connectBusUnit(bus, subBus, deviceId, 0);
150
151         /* Mask bridge interrupts in the FISR */
152         mask = 0x01010000 << function;
153         HvCallPci_maskFisr(bus, subBus, deviceId, mask);
154 }
155
156 /*
157  * This will be called by device drivers (via disable_IRQ)
158  * to disable INTA in the bridge interrupt status register.
159  */
160 static void iSeries_disable_IRQ(unsigned int irq)
161 {
162         u32 bus, deviceId, function, mask;
163         const u32 subBus = 0;
164
165         /* The IRQ has already been locked by the caller */
166         bus = IRQ_TO_BUS(irq);
167         function = IRQ_TO_FUNC(irq);
168         deviceId = (IRQ_TO_IDSEL(irq) << 4) + function;
169
170         /* Mask secondary INTA   */
171         mask = 0x80000000;
172         HvCallPci_maskInterrupts(bus, subBus, deviceId, mask);
173         PPCDBG(PPCDBG_BUSWALK, "iSeries_disable_IRQ 0x%02X.%02X.%02X 0x%04X\n",
174                bus, subBus, deviceId, irq);
175 }
176
177 /*
178  * This will be called by device drivers (via enable_IRQ)
179  * to enable INTA in the bridge interrupt status register.
180  */
181 static void iSeries_enable_IRQ(unsigned int irq)
182 {
183         u32 bus, deviceId, function, mask;
184         const u32 subBus = 0;
185
186         /* The IRQ has already been locked by the caller */
187         bus = IRQ_TO_BUS(irq);
188         function = IRQ_TO_FUNC(irq);
189         deviceId = (IRQ_TO_IDSEL(irq) << 4) + function;
190
191         /* Unmask secondary INTA */
192         mask = 0x80000000;
193         HvCallPci_unmaskInterrupts(bus, subBus, deviceId, mask);
194         PPCDBG(PPCDBG_BUSWALK, "iSeries_enable_IRQ 0x%02X.%02X.%02X 0x%04X\n",
195                bus, subBus, deviceId, irq);
196 }
197
198 /*
199  * Need to define this so ppc_irq_dispatch_handler will NOT call
200  * enable_IRQ at the end of interrupt handling.  However, this does
201  * nothing because there is not enough information provided to do
202  * the EOI HvCall.  This is done by XmPciLpEvent.c
203  */
204 static void iSeries_end_IRQ(unsigned int irq)
205 {
206 }