2 * This module supports the iSeries PCI bus interrupt handling
3 * Copyright (C) 20yy <Robert L Holtorf> <IBM Corp>
4 * Copyright (C) 2004-2005 IBM Corporation
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the:
18 * Free Software Foundation, Inc.,
19 * 59 Temple Place, Suite 330,
20 * Boston, MA 02111-1307 USA
23 * Created, December 13, 2000 by Wayne Holm
26 #include <linux/config.h>
27 #include <linux/pci.h>
28 #include <linux/init.h>
29 #include <linux/threads.h>
30 #include <linux/smp.h>
31 #include <linux/param.h>
32 #include <linux/string.h>
33 #include <linux/bootmem.h>
34 #include <linux/ide.h>
35 #include <linux/irq.h>
36 #include <linux/spinlock.h>
38 #include <asm/ppcdebug.h>
39 #include <asm/iSeries/HvTypes.h>
40 #include <asm/iSeries/HvLpEvent.h>
41 #include <asm/iSeries/HvCallPci.h>
42 #include <asm/iSeries/HvCallXm.h>
43 #include <asm/iSeries/iSeries_irq.h>
45 /* This maps virtual irq numbers to real irqs */
46 unsigned int virt_irq_to_real_map
[NR_IRQS
];
48 /* The next available virtual irq number */
49 /* Note: the pcnet32 driver assumes irq numbers < 2 aren't valid. :( */
50 static int next_virtual_irq
= 2;
52 static long Pci_Interrupt_Count
;
53 static long Pci_Event_Count
;
55 enum XmPciLpEvent_Subtype
{
56 XmPciLpEvent_BusCreated
= 0, // PHB has been created
57 XmPciLpEvent_BusError
= 1, // PHB has failed
58 XmPciLpEvent_BusFailed
= 2, // Msg to Secondary, Primary failed bus
59 XmPciLpEvent_NodeFailed
= 4, // Multi-adapter bridge has failed
60 XmPciLpEvent_NodeRecovered
= 5, // Multi-adapter bridge has recovered
61 XmPciLpEvent_BusRecovered
= 12, // PHB has been recovered
62 XmPciLpEvent_UnQuiesceBus
= 18, // Secondary bus unqiescing
63 XmPciLpEvent_BridgeError
= 21, // Bridge Error
64 XmPciLpEvent_SlotInterrupt
= 22 // Slot interrupt
67 struct XmPciLpEvent_BusInterrupt
{
68 HvBusNumber busNumber
;
69 HvSubBusNumber subBusNumber
;
72 struct XmPciLpEvent_NodeInterrupt
{
73 HvBusNumber busNumber
;
74 HvSubBusNumber subBusNumber
;
79 struct HvLpEvent hvLpEvent
;
82 u64 alignData
; // Align on an 8-byte boundary
86 HvBusNumber busNumber
;
87 HvSubBusNumber subBusNumber
;
91 struct XmPciLpEvent_BusInterrupt busFailed
;
92 struct XmPciLpEvent_BusInterrupt busRecovered
;
93 struct XmPciLpEvent_BusInterrupt busCreated
;
95 struct XmPciLpEvent_NodeInterrupt nodeFailed
;
96 struct XmPciLpEvent_NodeInterrupt nodeRecovered
;
102 static void intReceived(struct XmPciLpEvent
*eventParm
,
103 struct pt_regs
*regsParm
)
107 ++Pci_Interrupt_Count
;
109 switch (eventParm
->hvLpEvent
.xSubtype
) {
110 case XmPciLpEvent_SlotInterrupt
:
111 irq
= eventParm
->hvLpEvent
.xCorrelationToken
;
112 /* Dispatch the interrupt handlers for this irq */
113 ppc_irq_dispatch_handler(regsParm
, irq
);
114 HvCallPci_eoi(eventParm
->eventData
.slotInterrupt
.busNumber
,
115 eventParm
->eventData
.slotInterrupt
.subBusNumber
,
116 eventParm
->eventData
.slotInterrupt
.deviceId
);
118 /* Ignore error recovery events for now */
119 case XmPciLpEvent_BusCreated
:
120 printk(KERN_INFO
"intReceived: system bus %d created\n",
121 eventParm
->eventData
.busCreated
.busNumber
);
123 case XmPciLpEvent_BusError
:
124 case XmPciLpEvent_BusFailed
:
125 printk(KERN_INFO
"intReceived: system bus %d failed\n",
126 eventParm
->eventData
.busFailed
.busNumber
);
128 case XmPciLpEvent_BusRecovered
:
129 case XmPciLpEvent_UnQuiesceBus
:
130 printk(KERN_INFO
"intReceived: system bus %d recovered\n",
131 eventParm
->eventData
.busRecovered
.busNumber
);
133 case XmPciLpEvent_NodeFailed
:
134 case XmPciLpEvent_BridgeError
:
136 "intReceived: multi-adapter bridge %d/%d/%d failed\n",
137 eventParm
->eventData
.nodeFailed
.busNumber
,
138 eventParm
->eventData
.nodeFailed
.subBusNumber
,
139 eventParm
->eventData
.nodeFailed
.deviceId
);
141 case XmPciLpEvent_NodeRecovered
:
143 "intReceived: multi-adapter bridge %d/%d/%d recovered\n",
144 eventParm
->eventData
.nodeRecovered
.busNumber
,
145 eventParm
->eventData
.nodeRecovered
.subBusNumber
,
146 eventParm
->eventData
.nodeRecovered
.deviceId
);
150 "intReceived: unrecognized event subtype 0x%x\n",
151 eventParm
->hvLpEvent
.xSubtype
);
156 static void XmPciLpEvent_handler(struct HvLpEvent
*eventParm
,
157 struct pt_regs
*regsParm
)
162 if (eventParm
&& (eventParm
->xType
== HvLpEvent_Type_PciIo
)) {
163 switch (eventParm
->xFlags
.xFunction
) {
164 case HvLpEvent_Function_Int
:
165 intReceived((struct XmPciLpEvent
*)eventParm
, regsParm
);
167 case HvLpEvent_Function_Ack
:
169 "XmPciLpEvent_handler: unexpected ack received\n");
173 "XmPciLpEvent_handler: unexpected event function %d\n",
174 (int)eventParm
->xFlags
.xFunction
);
177 } else if (eventParm
)
179 "XmPciLpEvent_handler: Unrecognized PCI event type 0x%x\n",
180 (int)eventParm
->xType
);
182 printk(KERN_ERR
"XmPciLpEvent_handler: NULL event received\n");
187 * This is called by init_IRQ. set in ppc_md.init_IRQ by iSeries_setup.c
188 * It must be called before the bus walk.
190 void __init
iSeries_init_IRQ(void)
192 /* Register PCI event handler and open an event path */
195 xRc
= HvLpEvent_registerHandler(HvLpEvent_Type_PciIo
,
196 &XmPciLpEvent_handler
);
198 xRc
= HvLpEvent_openPath(HvLpEvent_Type_PciIo
, 0);
200 printk(KERN_ERR
"iSeries_init_IRQ: open event path "
201 "failed with rc 0x%x\n", xRc
);
203 printk(KERN_ERR
"iSeries_init_IRQ: register handler "
204 "failed with rc 0x%x\n", xRc
);
207 #define REAL_IRQ_TO_BUS(irq) ((((irq) >> 6) & 0xff) + 1)
208 #define REAL_IRQ_TO_IDSEL(irq) ((((irq) >> 3) & 7) + 1)
209 #define REAL_IRQ_TO_FUNC(irq) ((irq) & 7)
212 * This will be called by device drivers (via enable_IRQ)
213 * to enable INTA in the bridge interrupt status register.
215 static void iSeries_enable_IRQ(unsigned int irq
)
217 u32 bus
, deviceId
, function
, mask
;
218 const u32 subBus
= 0;
219 unsigned int rirq
= virt_irq_to_real_map
[irq
];
221 /* The IRQ has already been locked by the caller */
222 bus
= REAL_IRQ_TO_BUS(rirq
);
223 function
= REAL_IRQ_TO_FUNC(rirq
);
224 deviceId
= (REAL_IRQ_TO_IDSEL(rirq
) << 4) + function
;
226 /* Unmask secondary INTA */
228 HvCallPci_unmaskInterrupts(bus
, subBus
, deviceId
, mask
);
229 PPCDBG(PPCDBG_BUSWALK
, "iSeries_enable_IRQ 0x%02X.%02X.%02X 0x%04X\n",
230 bus
, subBus
, deviceId
, irq
);
233 /* This is called by iSeries_activate_IRQs */
234 static unsigned int iSeries_startup_IRQ(unsigned int irq
)
236 u32 bus
, deviceId
, function
, mask
;
237 const u32 subBus
= 0;
238 unsigned int rirq
= virt_irq_to_real_map
[irq
];
240 bus
= REAL_IRQ_TO_BUS(rirq
);
241 function
= REAL_IRQ_TO_FUNC(rirq
);
242 deviceId
= (REAL_IRQ_TO_IDSEL(rirq
) << 4) + function
;
244 /* Link the IRQ number to the bridge */
245 HvCallXm_connectBusUnit(bus
, subBus
, deviceId
, irq
);
247 /* Unmask bridge interrupts in the FISR */
248 mask
= 0x01010000 << function
;
249 HvCallPci_unmaskFisr(bus
, subBus
, deviceId
, mask
);
250 iSeries_enable_IRQ(irq
);
255 * This is called out of iSeries_fixup to activate interrupt
256 * generation for usable slots
258 void __init
iSeries_activate_IRQs()
264 irq_desc_t
*desc
= get_irq_desc(irq
);
266 if (desc
&& desc
->handler
&& desc
->handler
->startup
) {
267 spin_lock_irqsave(&desc
->lock
, flags
);
268 desc
->handler
->startup(irq
);
269 spin_unlock_irqrestore(&desc
->lock
, flags
);
274 /* this is not called anywhere currently */
275 static void iSeries_shutdown_IRQ(unsigned int irq
)
277 u32 bus
, deviceId
, function
, mask
;
278 const u32 subBus
= 0;
279 unsigned int rirq
= virt_irq_to_real_map
[irq
];
281 /* irq should be locked by the caller */
282 bus
= REAL_IRQ_TO_BUS(rirq
);
283 function
= REAL_IRQ_TO_FUNC(rirq
);
284 deviceId
= (REAL_IRQ_TO_IDSEL(rirq
) << 4) + function
;
286 /* Invalidate the IRQ number in the bridge */
287 HvCallXm_connectBusUnit(bus
, subBus
, deviceId
, 0);
289 /* Mask bridge interrupts in the FISR */
290 mask
= 0x01010000 << function
;
291 HvCallPci_maskFisr(bus
, subBus
, deviceId
, mask
);
295 * This will be called by device drivers (via disable_IRQ)
296 * to disable INTA in the bridge interrupt status register.
298 static void iSeries_disable_IRQ(unsigned int irq
)
300 u32 bus
, deviceId
, function
, mask
;
301 const u32 subBus
= 0;
302 unsigned int rirq
= virt_irq_to_real_map
[irq
];
304 /* The IRQ has already been locked by the caller */
305 bus
= REAL_IRQ_TO_BUS(rirq
);
306 function
= REAL_IRQ_TO_FUNC(rirq
);
307 deviceId
= (REAL_IRQ_TO_IDSEL(rirq
) << 4) + function
;
309 /* Mask secondary INTA */
311 HvCallPci_maskInterrupts(bus
, subBus
, deviceId
, mask
);
312 PPCDBG(PPCDBG_BUSWALK
, "iSeries_disable_IRQ 0x%02X.%02X.%02X 0x%04X\n",
313 bus
, subBus
, deviceId
, irq
);
317 * Need to define this so ppc_irq_dispatch_handler will NOT call
318 * enable_IRQ at the end of interrupt handling. However, this does
319 * nothing because there is not enough information provided to do
320 * the EOI HvCall. This is done by XmPciLpEvent.c
322 static void iSeries_end_IRQ(unsigned int irq
)
326 static hw_irq_controller iSeries_IRQ_handler
= {
327 .typename
= "iSeries irq controller",
328 .startup
= iSeries_startup_IRQ
,
329 .shutdown
= iSeries_shutdown_IRQ
,
330 .enable
= iSeries_enable_IRQ
,
331 .disable
= iSeries_disable_IRQ
,
332 .end
= iSeries_end_IRQ
336 * This is called out of iSeries_scan_slot to allocate an IRQ for an EADS slot
337 * It calculates the irq value for the slot.
338 * Note that subBusNumber is always 0 (at the moment at least).
340 int __init
iSeries_allocate_IRQ(HvBusNumber busNumber
,
341 HvSubBusNumber subBusNumber
, HvAgentId deviceId
)
343 unsigned int realirq
, virtirq
;
344 u8 idsel
= (deviceId
>> 4);
345 u8 function
= deviceId
& 7;
347 virtirq
= next_virtual_irq
++;
348 realirq
= ((busNumber
- 1) << 6) + ((idsel
- 1) << 3) + function
;
349 virt_irq_to_real_map
[virtirq
] = realirq
;
351 irq_desc
[virtirq
].handler
= &iSeries_IRQ_handler
;