Stephen Rothwell | 0c3b4f1 | 2005-06-21 17:15:49 -0700 | [diff] [blame] | 1 | /* |
| 2 | * This module supports the iSeries PCI bus interrupt handling |
| 3 | * Copyright (C) 20yy <Robert L Holtorf> <IBM Corp> |
Stephen Rothwell | 89ef68f | 2005-06-21 17:15:50 -0700 | [diff] [blame] | 4 | * Copyright (C) 2004-2005 IBM Corporation |
Stephen Rothwell | 0c3b4f1 | 2005-06-21 17:15:49 -0700 | [diff] [blame] | 5 | * |
| 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. |
| 10 | * |
| 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. |
| 15 | * |
| 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 |
| 21 | * |
| 22 | * Change Activity: |
| 23 | * Created, December 13, 2000 by Wayne Holm |
| 24 | * End Change Activity |
| 25 | */ |
Stephen Rothwell | 89ef68f | 2005-06-21 17:15:50 -0700 | [diff] [blame] | 26 | #include <linux/config.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <linux/irq.h> |
| 36 | #include <linux/spinlock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
Stephen Rothwell | e199500 | 2005-11-16 18:53:29 +1100 | [diff] [blame] | 38 | #include <asm/paca.h> |
Kelly Daly | 1ec65d7 | 2005-11-02 13:46:07 +1100 | [diff] [blame] | 39 | #include <asm/iseries/hv_types.h> |
Kelly Daly | e45423e | 2005-11-02 12:08:31 +1100 | [diff] [blame] | 40 | #include <asm/iseries/hv_lp_event.h> |
Kelly Daly | 8021b8a | 2005-11-02 11:41:12 +1100 | [diff] [blame] | 41 | #include <asm/iseries/hv_call_xm.h> |
Stephen Rothwell | e199500 | 2005-11-16 18:53:29 +1100 | [diff] [blame] | 42 | #include <asm/iseries/it_lp_queue.h> |
Stephen Rothwell | b08567cb | 2005-09-28 23:37:01 +1000 | [diff] [blame] | 43 | |
| 44 | #include "irq.h" |
Stephen Rothwell | c6d2ea9 | 2005-10-14 17:16:17 +1000 | [diff] [blame] | 45 | #include "call_pci.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
Stephen Rothwell | e199500 | 2005-11-16 18:53:29 +1100 | [diff] [blame] | 47 | #if defined(CONFIG_SMP) |
| 48 | extern void iSeries_smp_message_recv(struct pt_regs *); |
| 49 | #endif |
| 50 | |
Stephen Rothwell | ee2cdec | 2006-01-12 13:54:20 +1100 | [diff] [blame^] | 51 | #ifdef CONFIG_PCI |
| 52 | |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 53 | enum pci_event_type { |
| 54 | pe_bus_created = 0, /* PHB has been created */ |
| 55 | pe_bus_error = 1, /* PHB has failed */ |
| 56 | pe_bus_failed = 2, /* Msg to Secondary, Primary failed bus */ |
| 57 | pe_node_failed = 4, /* Multi-adapter bridge has failed */ |
| 58 | pe_node_recovered = 5, /* Multi-adapter bridge has recovered */ |
| 59 | pe_bus_recovered = 12, /* PHB has been recovered */ |
| 60 | pe_unquiese_bus = 18, /* Secondary bus unqiescing */ |
| 61 | pe_bridge_error = 21, /* Bridge Error */ |
| 62 | pe_slot_interrupt = 22 /* Slot interrupt */ |
Stephen Rothwell | 89ef68f | 2005-06-21 17:15:50 -0700 | [diff] [blame] | 63 | }; |
| 64 | |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 65 | struct pci_event { |
| 66 | struct HvLpEvent event; |
Stephen Rothwell | 89ef68f | 2005-06-21 17:15:50 -0700 | [diff] [blame] | 67 | union { |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 68 | u64 __align; /* Align on an 8-byte boundary */ |
Stephen Rothwell | 89ef68f | 2005-06-21 17:15:50 -0700 | [diff] [blame] | 69 | struct { |
| 70 | u32 fisr; |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 71 | HvBusNumber bus_number; |
| 72 | HvSubBusNumber sub_bus_number; |
| 73 | HvAgentId dev_id; |
| 74 | } slot; |
| 75 | struct { |
| 76 | HvBusNumber bus_number; |
| 77 | HvSubBusNumber sub_bus_number; |
| 78 | } bus; |
| 79 | struct { |
| 80 | HvBusNumber bus_number; |
| 81 | HvSubBusNumber sub_bus_number; |
| 82 | HvAgentId dev_id; |
| 83 | } node; |
| 84 | } data; |
Stephen Rothwell | 89ef68f | 2005-06-21 17:15:50 -0700 | [diff] [blame] | 85 | }; |
| 86 | |
Stephen Rothwell | 1d7a6b9 | 2005-11-17 18:04:37 +1100 | [diff] [blame] | 87 | static DEFINE_SPINLOCK(pending_irqs_lock); |
| 88 | static int num_pending_irqs; |
| 89 | static int pending_irqs[NR_IRQS]; |
| 90 | |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 91 | static void int_received(struct pci_event *event, struct pt_regs *regs) |
Stephen Rothwell | 89ef68f | 2005-06-21 17:15:50 -0700 | [diff] [blame] | 92 | { |
| 93 | int irq; |
| 94 | |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 95 | switch (event->event.xSubtype) { |
| 96 | case pe_slot_interrupt: |
| 97 | irq = event->event.xCorrelationToken; |
Stephen Rothwell | 1d7a6b9 | 2005-11-17 18:04:37 +1100 | [diff] [blame] | 98 | if (irq < NR_IRQS) { |
| 99 | spin_lock(&pending_irqs_lock); |
| 100 | pending_irqs[irq]++; |
| 101 | num_pending_irqs++; |
| 102 | spin_unlock(&pending_irqs_lock); |
| 103 | } else { |
| 104 | printk(KERN_WARNING "int_received: bad irq number %d\n", |
| 105 | irq); |
| 106 | HvCallPci_eoi(event->data.slot.bus_number, |
| 107 | event->data.slot.sub_bus_number, |
| 108 | event->data.slot.dev_id); |
| 109 | } |
Stephen Rothwell | 89ef68f | 2005-06-21 17:15:50 -0700 | [diff] [blame] | 110 | break; |
| 111 | /* Ignore error recovery events for now */ |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 112 | case pe_bus_created: |
| 113 | printk(KERN_INFO "int_received: system bus %d created\n", |
| 114 | event->data.bus.bus_number); |
Stephen Rothwell | 89ef68f | 2005-06-21 17:15:50 -0700 | [diff] [blame] | 115 | break; |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 116 | case pe_bus_error: |
| 117 | case pe_bus_failed: |
| 118 | printk(KERN_INFO "int_received: system bus %d failed\n", |
| 119 | event->data.bus.bus_number); |
Stephen Rothwell | 89ef68f | 2005-06-21 17:15:50 -0700 | [diff] [blame] | 120 | break; |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 121 | case pe_bus_recovered: |
| 122 | case pe_unquiese_bus: |
| 123 | printk(KERN_INFO "int_received: system bus %d recovered\n", |
| 124 | event->data.bus.bus_number); |
Stephen Rothwell | 89ef68f | 2005-06-21 17:15:50 -0700 | [diff] [blame] | 125 | break; |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 126 | case pe_node_failed: |
| 127 | case pe_bridge_error: |
Stephen Rothwell | 89ef68f | 2005-06-21 17:15:50 -0700 | [diff] [blame] | 128 | printk(KERN_INFO |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 129 | "int_received: multi-adapter bridge %d/%d/%d failed\n", |
| 130 | event->data.node.bus_number, |
| 131 | event->data.node.sub_bus_number, |
| 132 | event->data.node.dev_id); |
Stephen Rothwell | 89ef68f | 2005-06-21 17:15:50 -0700 | [diff] [blame] | 133 | break; |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 134 | case pe_node_recovered: |
Stephen Rothwell | 89ef68f | 2005-06-21 17:15:50 -0700 | [diff] [blame] | 135 | printk(KERN_INFO |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 136 | "int_received: multi-adapter bridge %d/%d/%d recovered\n", |
| 137 | event->data.node.bus_number, |
| 138 | event->data.node.sub_bus_number, |
| 139 | event->data.node.dev_id); |
Stephen Rothwell | 89ef68f | 2005-06-21 17:15:50 -0700 | [diff] [blame] | 140 | break; |
| 141 | default: |
| 142 | printk(KERN_ERR |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 143 | "int_received: unrecognized event subtype 0x%x\n", |
| 144 | event->event.xSubtype); |
Stephen Rothwell | 89ef68f | 2005-06-21 17:15:50 -0700 | [diff] [blame] | 145 | break; |
| 146 | } |
| 147 | } |
| 148 | |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 149 | static void pci_event_handler(struct HvLpEvent *event, struct pt_regs *regs) |
Stephen Rothwell | 89ef68f | 2005-06-21 17:15:50 -0700 | [diff] [blame] | 150 | { |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 151 | if (event && (event->xType == HvLpEvent_Type_PciIo)) { |
Stephen Rothwell | 677f8c0 | 2006-01-12 13:47:43 +1100 | [diff] [blame] | 152 | if (hvlpevent_is_int(event)) |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 153 | int_received((struct pci_event *)event, regs); |
Stephen Rothwell | 677f8c0 | 2006-01-12 13:47:43 +1100 | [diff] [blame] | 154 | else |
Stephen Rothwell | 89ef68f | 2005-06-21 17:15:50 -0700 | [diff] [blame] | 155 | printk(KERN_ERR |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 156 | "pci_event_handler: unexpected ack received\n"); |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 157 | } else if (event) |
Stephen Rothwell | 89ef68f | 2005-06-21 17:15:50 -0700 | [diff] [blame] | 158 | printk(KERN_ERR |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 159 | "pci_event_handler: Unrecognized PCI event type 0x%x\n", |
| 160 | (int)event->xType); |
Stephen Rothwell | 89ef68f | 2005-06-21 17:15:50 -0700 | [diff] [blame] | 161 | else |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 162 | printk(KERN_ERR "pci_event_handler: NULL event received\n"); |
Stephen Rothwell | 89ef68f | 2005-06-21 17:15:50 -0700 | [diff] [blame] | 163 | } |
| 164 | |
Stephen Rothwell | 7f74e79 | 2005-06-21 17:15:51 -0700 | [diff] [blame] | 165 | /* |
| 166 | * This is called by init_IRQ. set in ppc_md.init_IRQ by iSeries_setup.c |
| 167 | * It must be called before the bus walk. |
| 168 | */ |
| 169 | void __init iSeries_init_IRQ(void) |
Stephen Rothwell | 89ef68f | 2005-06-21 17:15:50 -0700 | [diff] [blame] | 170 | { |
Stephen Rothwell | 7f74e79 | 2005-06-21 17:15:51 -0700 | [diff] [blame] | 171 | /* Register PCI event handler and open an event path */ |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 172 | int ret; |
Stephen Rothwell | 89ef68f | 2005-06-21 17:15:50 -0700 | [diff] [blame] | 173 | |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 174 | ret = HvLpEvent_registerHandler(HvLpEvent_Type_PciIo, |
| 175 | &pci_event_handler); |
| 176 | if (ret == 0) { |
| 177 | ret = HvLpEvent_openPath(HvLpEvent_Type_PciIo, 0); |
| 178 | if (ret != 0) |
| 179 | printk(KERN_ERR "iseries_init_IRQ: open event path " |
| 180 | "failed with rc 0x%x\n", ret); |
Stephen Rothwell | 89ef68f | 2005-06-21 17:15:50 -0700 | [diff] [blame] | 181 | } else |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 182 | printk(KERN_ERR "iseries_init_IRQ: register handler " |
| 183 | "failed with rc 0x%x\n", ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | } |
| 185 | |
Stephen Rothwell | 853f828 | 2005-11-16 18:10:40 +1100 | [diff] [blame] | 186 | #define REAL_IRQ_TO_SUBBUS(irq) (((irq) >> 14) & 0xff) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | #define REAL_IRQ_TO_BUS(irq) ((((irq) >> 6) & 0xff) + 1) |
| 188 | #define REAL_IRQ_TO_IDSEL(irq) ((((irq) >> 3) & 7) + 1) |
| 189 | #define REAL_IRQ_TO_FUNC(irq) ((irq) & 7) |
| 190 | |
Stephen Rothwell | 0c3b4f1 | 2005-06-21 17:15:49 -0700 | [diff] [blame] | 191 | /* |
| 192 | * This will be called by device drivers (via enable_IRQ) |
| 193 | * to enable INTA in the bridge interrupt status register. |
| 194 | */ |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 195 | static void iseries_enable_IRQ(unsigned int irq) |
Stephen Rothwell | 0c3b4f1 | 2005-06-21 17:15:49 -0700 | [diff] [blame] | 196 | { |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 197 | u32 bus, dev_id, function, mask; |
| 198 | const u32 sub_bus = 0; |
Stephen Rothwell | 0c3b4f1 | 2005-06-21 17:15:49 -0700 | [diff] [blame] | 199 | unsigned int rirq = virt_irq_to_real_map[irq]; |
| 200 | |
| 201 | /* The IRQ has already been locked by the caller */ |
| 202 | bus = REAL_IRQ_TO_BUS(rirq); |
| 203 | function = REAL_IRQ_TO_FUNC(rirq); |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 204 | dev_id = (REAL_IRQ_TO_IDSEL(rirq) << 4) + function; |
Stephen Rothwell | 0c3b4f1 | 2005-06-21 17:15:49 -0700 | [diff] [blame] | 205 | |
| 206 | /* Unmask secondary INTA */ |
| 207 | mask = 0x80000000; |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 208 | HvCallPci_unmaskInterrupts(bus, sub_bus, dev_id, mask); |
Stephen Rothwell | 0c3b4f1 | 2005-06-21 17:15:49 -0700 | [diff] [blame] | 209 | } |
| 210 | |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 211 | /* This is called by iseries_activate_IRQs */ |
| 212 | static unsigned int iseries_startup_IRQ(unsigned int irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | { |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 214 | u32 bus, dev_id, function, mask; |
| 215 | const u32 sub_bus = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | unsigned int rirq = virt_irq_to_real_map[irq]; |
| 217 | |
| 218 | bus = REAL_IRQ_TO_BUS(rirq); |
| 219 | function = REAL_IRQ_TO_FUNC(rirq); |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 220 | dev_id = (REAL_IRQ_TO_IDSEL(rirq) << 4) + function; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | |
| 222 | /* Link the IRQ number to the bridge */ |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 223 | HvCallXm_connectBusUnit(bus, sub_bus, dev_id, irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | |
| 225 | /* Unmask bridge interrupts in the FISR */ |
| 226 | mask = 0x01010000 << function; |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 227 | HvCallPci_unmaskFisr(bus, sub_bus, dev_id, mask); |
| 228 | iseries_enable_IRQ(irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | return 0; |
| 230 | } |
| 231 | |
| 232 | /* |
| 233 | * This is called out of iSeries_fixup to activate interrupt |
| 234 | * generation for usable slots |
| 235 | */ |
| 236 | void __init iSeries_activate_IRQs() |
| 237 | { |
| 238 | int irq; |
| 239 | unsigned long flags; |
| 240 | |
| 241 | for_each_irq (irq) { |
| 242 | irq_desc_t *desc = get_irq_desc(irq); |
| 243 | |
| 244 | if (desc && desc->handler && desc->handler->startup) { |
| 245 | spin_lock_irqsave(&desc->lock, flags); |
| 246 | desc->handler->startup(irq); |
| 247 | spin_unlock_irqrestore(&desc->lock, flags); |
| 248 | } |
Stephen Rothwell | 0c3b4f1 | 2005-06-21 17:15:49 -0700 | [diff] [blame] | 249 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | } |
| 251 | |
| 252 | /* this is not called anywhere currently */ |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 253 | static void iseries_shutdown_IRQ(unsigned int irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | { |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 255 | u32 bus, dev_id, function, mask; |
| 256 | const u32 sub_bus = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | unsigned int rirq = virt_irq_to_real_map[irq]; |
| 258 | |
| 259 | /* irq should be locked by the caller */ |
| 260 | bus = REAL_IRQ_TO_BUS(rirq); |
| 261 | function = REAL_IRQ_TO_FUNC(rirq); |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 262 | dev_id = (REAL_IRQ_TO_IDSEL(rirq) << 4) + function; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | |
| 264 | /* Invalidate the IRQ number in the bridge */ |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 265 | HvCallXm_connectBusUnit(bus, sub_bus, dev_id, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | |
| 267 | /* Mask bridge interrupts in the FISR */ |
| 268 | mask = 0x01010000 << function; |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 269 | HvCallPci_maskFisr(bus, sub_bus, dev_id, mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | } |
| 271 | |
| 272 | /* |
| 273 | * This will be called by device drivers (via disable_IRQ) |
| 274 | * to disable INTA in the bridge interrupt status register. |
| 275 | */ |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 276 | static void iseries_disable_IRQ(unsigned int irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | { |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 278 | u32 bus, dev_id, function, mask; |
| 279 | const u32 sub_bus = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | unsigned int rirq = virt_irq_to_real_map[irq]; |
| 281 | |
| 282 | /* The IRQ has already been locked by the caller */ |
| 283 | bus = REAL_IRQ_TO_BUS(rirq); |
| 284 | function = REAL_IRQ_TO_FUNC(rirq); |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 285 | dev_id = (REAL_IRQ_TO_IDSEL(rirq) << 4) + function; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | |
| 287 | /* Mask secondary INTA */ |
| 288 | mask = 0x80000000; |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 289 | HvCallPci_maskInterrupts(bus, sub_bus, dev_id, mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | } |
| 291 | |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 292 | static void iseries_end_IRQ(unsigned int irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | { |
Stephen Rothwell | 853f828 | 2005-11-16 18:10:40 +1100 | [diff] [blame] | 294 | unsigned int rirq = virt_irq_to_real_map[irq]; |
| 295 | |
| 296 | HvCallPci_eoi(REAL_IRQ_TO_BUS(rirq), REAL_IRQ_TO_SUBBUS(rirq), |
| 297 | (REAL_IRQ_TO_IDSEL(rirq) << 4) + REAL_IRQ_TO_FUNC(rirq)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | } |
Stephen Rothwell | 0c3b4f1 | 2005-06-21 17:15:49 -0700 | [diff] [blame] | 299 | |
| 300 | static hw_irq_controller iSeries_IRQ_handler = { |
| 301 | .typename = "iSeries irq controller", |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 302 | .startup = iseries_startup_IRQ, |
| 303 | .shutdown = iseries_shutdown_IRQ, |
| 304 | .enable = iseries_enable_IRQ, |
| 305 | .disable = iseries_disable_IRQ, |
| 306 | .end = iseries_end_IRQ |
Stephen Rothwell | 0c3b4f1 | 2005-06-21 17:15:49 -0700 | [diff] [blame] | 307 | }; |
| 308 | |
| 309 | /* |
| 310 | * This is called out of iSeries_scan_slot to allocate an IRQ for an EADS slot |
| 311 | * It calculates the irq value for the slot. |
Stephen Rothwell | 853f828 | 2005-11-16 18:10:40 +1100 | [diff] [blame] | 312 | * Note that sub_bus is always 0 (at the moment at least). |
Stephen Rothwell | 0c3b4f1 | 2005-06-21 17:15:49 -0700 | [diff] [blame] | 313 | */ |
Stephen Rothwell | 853f828 | 2005-11-16 18:10:40 +1100 | [diff] [blame] | 314 | int __init iSeries_allocate_IRQ(HvBusNumber bus, |
| 315 | HvSubBusNumber sub_bus, HvAgentId dev_id) |
Stephen Rothwell | 0c3b4f1 | 2005-06-21 17:15:49 -0700 | [diff] [blame] | 316 | { |
Stephen Rothwell | d9ae2ba | 2005-11-10 18:11:19 +1100 | [diff] [blame] | 317 | int virtirq; |
| 318 | unsigned int realirq; |
Stephen Rothwell | 60798c6a | 2005-11-16 17:47:43 +1100 | [diff] [blame] | 319 | u8 idsel = (dev_id >> 4); |
| 320 | u8 function = dev_id & 7; |
Stephen Rothwell | 0c3b4f1 | 2005-06-21 17:15:49 -0700 | [diff] [blame] | 321 | |
Stephen Rothwell | 853f828 | 2005-11-16 18:10:40 +1100 | [diff] [blame] | 322 | realirq = (((((sub_bus << 8) + (bus - 1)) << 3) + (idsel - 1)) << 3) |
| 323 | + function; |
Stephen Rothwell | d9ae2ba | 2005-11-10 18:11:19 +1100 | [diff] [blame] | 324 | virtirq = virt_irq_create_mapping(realirq); |
Stephen Rothwell | 0c3b4f1 | 2005-06-21 17:15:49 -0700 | [diff] [blame] | 325 | |
| 326 | irq_desc[virtirq].handler = &iSeries_IRQ_handler; |
| 327 | return virtirq; |
| 328 | } |
Stephen Rothwell | e199500 | 2005-11-16 18:53:29 +1100 | [diff] [blame] | 329 | |
Stephen Rothwell | ee2cdec | 2006-01-12 13:54:20 +1100 | [diff] [blame^] | 330 | #endif /* CONFIG_PCI */ |
| 331 | |
Stephen Rothwell | e199500 | 2005-11-16 18:53:29 +1100 | [diff] [blame] | 332 | /* |
| 333 | * Get the next pending IRQ. |
| 334 | */ |
| 335 | int iSeries_get_irq(struct pt_regs *regs) |
| 336 | { |
| 337 | struct paca_struct *lpaca; |
Stephen Rothwell | 1d7a6b9 | 2005-11-17 18:04:37 +1100 | [diff] [blame] | 338 | /* -2 means ignore this interrupt */ |
| 339 | int irq = -2; |
Stephen Rothwell | e199500 | 2005-11-16 18:53:29 +1100 | [diff] [blame] | 340 | |
| 341 | lpaca = get_paca(); |
| 342 | #ifdef CONFIG_SMP |
| 343 | if (lpaca->lppaca.int_dword.fields.ipi_cnt) { |
| 344 | lpaca->lppaca.int_dword.fields.ipi_cnt = 0; |
| 345 | iSeries_smp_message_recv(regs); |
| 346 | } |
| 347 | #endif /* CONFIG_SMP */ |
| 348 | if (hvlpevent_is_pending()) |
| 349 | process_hvlpevents(regs); |
| 350 | |
Stephen Rothwell | ee2cdec | 2006-01-12 13:54:20 +1100 | [diff] [blame^] | 351 | #ifdef CONFIG_PCI |
Stephen Rothwell | 1d7a6b9 | 2005-11-17 18:04:37 +1100 | [diff] [blame] | 352 | if (num_pending_irqs) { |
| 353 | spin_lock(&pending_irqs_lock); |
| 354 | for (irq = 0; irq < NR_IRQS; irq++) { |
| 355 | if (pending_irqs[irq]) { |
| 356 | pending_irqs[irq]--; |
| 357 | num_pending_irqs--; |
| 358 | break; |
| 359 | } |
| 360 | } |
| 361 | spin_unlock(&pending_irqs_lock); |
| 362 | if (irq >= NR_IRQS) |
| 363 | irq = -2; |
| 364 | } |
Stephen Rothwell | ee2cdec | 2006-01-12 13:54:20 +1100 | [diff] [blame^] | 365 | #endif |
Stephen Rothwell | 1d7a6b9 | 2005-11-17 18:04:37 +1100 | [diff] [blame] | 366 | |
| 367 | return irq; |
Stephen Rothwell | e199500 | 2005-11-16 18:53:29 +1100 | [diff] [blame] | 368 | } |