blob: fb96e3bf969bbedba937d0c948c1c4c47f499a41 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * pci_irq.c - ACPI PCI Interrupt Routing ($Revision: 11 $)
3 *
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
6 * Copyright (C) 2002 Dominik Brodowski <devel@brodo.de>
7 *
8 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or (at
13 * your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
23 *
24 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
25 */
26
27#include <linux/config.h>
28
29#include <linux/kernel.h>
30#include <linux/module.h>
31#include <linux/init.h>
32#include <linux/types.h>
33#include <linux/proc_fs.h>
34#include <linux/spinlock.h>
35#include <linux/pm.h>
36#include <linux/pci.h>
37#include <linux/acpi.h>
38#include <acpi/acpi_bus.h>
39#include <acpi/acpi_drivers.h>
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#define _COMPONENT ACPI_PCI_COMPONENT
Len Brown4be44fc2005-08-05 00:44:28 -040042ACPI_MODULE_NAME("pci_irq")
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Len Brown4be44fc2005-08-05 00:44:28 -040044static struct acpi_prt_list acpi_prt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045static DEFINE_SPINLOCK(acpi_prt_lock);
46
47/* --------------------------------------------------------------------------
48 PCI IRQ Routing Table (PRT) Support
49 -------------------------------------------------------------------------- */
50
Len Brown4be44fc2005-08-05 00:44:28 -040051static struct acpi_prt_entry *acpi_pci_irq_find_prt_entry(int segment,
52 int bus,
53 int device, int pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054{
Len Brown4be44fc2005-08-05 00:44:28 -040055 struct list_head *node = NULL;
56 struct acpi_prt_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59 if (!acpi_prt.count)
Patrick Mocheld550d982006-06-27 00:41:40 -040060 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62 /*
63 * Parse through all PRT entries looking for a match on the specified
64 * PCI device's segment, bus, device, and pin (don't care about func).
65 *
66 */
67 spin_lock(&acpi_prt_lock);
68 list_for_each(node, &acpi_prt.entries) {
69 entry = list_entry(node, struct acpi_prt_entry, node);
Len Brown4be44fc2005-08-05 00:44:28 -040070 if ((segment == entry->id.segment)
71 && (bus == entry->id.bus)
72 && (device == entry->id.device)
73 && (pin == entry->pin)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 spin_unlock(&acpi_prt_lock);
Patrick Mocheld550d982006-06-27 00:41:40 -040075 return entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 }
77 }
78
79 spin_unlock(&acpi_prt_lock);
Patrick Mocheld550d982006-06-27 00:41:40 -040080 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081}
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083static int
Len Brown4be44fc2005-08-05 00:44:28 -040084acpi_pci_irq_add_entry(acpi_handle handle,
85 int segment, int bus, struct acpi_pci_routing_table *prt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
Len Brown4be44fc2005-08-05 00:44:28 -040087 struct acpi_prt_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90 if (!prt)
Patrick Mocheld550d982006-06-27 00:41:40 -040091 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93 entry = kmalloc(sizeof(struct acpi_prt_entry), GFP_KERNEL);
94 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -040095 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 memset(entry, 0, sizeof(struct acpi_prt_entry));
97
98 entry->id.segment = segment;
99 entry->id.bus = bus;
100 entry->id.device = (prt->address >> 16) & 0xFFFF;
101 entry->id.function = prt->address & 0xFFFF;
102 entry->pin = prt->pin;
103
104 /*
105 * Type 1: Dynamic
106 * ---------------
107 * The 'source' field specifies the PCI interrupt link device used to
108 * configure the IRQ assigned to this slot|dev|pin. The 'source_index'
109 * indicates which resource descriptor in the resource template (of
110 * the link device) this interrupt is allocated from.
111 *
112 * NOTE: Don't query the Link Device for IRQ information at this time
113 * because Link Device enumeration may not have occurred yet
114 * (e.g. exists somewhere 'below' this _PRT entry in the ACPI
115 * namespace).
116 */
117 if (prt->source[0]) {
118 acpi_get_handle(handle, prt->source, &entry->link.handle);
119 entry->link.index = prt->source_index;
120 }
121 /*
122 * Type 2: Static
123 * --------------
124 * The 'source' field is NULL, and the 'source_index' field specifies
125 * the IRQ value, which is hardwired to specific interrupt inputs on
126 * the interrupt controller.
127 */
128 else
129 entry->link.index = prt->source_index;
130
131 ACPI_DEBUG_PRINT_RAW((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400132 " %02X:%02X:%02X[%c] -> %s[%d]\n",
133 entry->id.segment, entry->id.bus,
134 entry->id.device, ('A' + entry->pin), prt->source,
135 entry->link.index));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137 spin_lock(&acpi_prt_lock);
138 list_add_tail(&entry->node, &acpi_prt.entries);
139 acpi_prt.count++;
140 spin_unlock(&acpi_prt_lock);
141
Patrick Mocheld550d982006-06-27 00:41:40 -0400142 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145static void
Len Brown4be44fc2005-08-05 00:44:28 -0400146acpi_pci_irq_del_entry(int segment, int bus, struct acpi_prt_entry *entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
Len Brown4be44fc2005-08-05 00:44:28 -0400148 if (segment == entry->id.segment && bus == entry->id.bus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 acpi_prt.count--;
150 list_del(&entry->node);
151 kfree(entry);
152 }
153}
154
Len Brown4be44fc2005-08-05 00:44:28 -0400155int acpi_pci_irq_add_prt(acpi_handle handle, int segment, int bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
Len Brown4be44fc2005-08-05 00:44:28 -0400157 acpi_status status = AE_OK;
158 char *pathname = NULL;
159 struct acpi_buffer buffer = { 0, NULL };
160 struct acpi_pci_routing_table *prt = NULL;
161 struct acpi_pci_routing_table *entry = NULL;
162 static int first_time = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Len Brown4be44fc2005-08-05 00:44:28 -0400165 pathname = (char *)kmalloc(ACPI_PATHNAME_MAX, GFP_KERNEL);
166 if (!pathname)
Patrick Mocheld550d982006-06-27 00:41:40 -0400167 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 memset(pathname, 0, ACPI_PATHNAME_MAX);
169
170 if (first_time) {
171 acpi_prt.count = 0;
172 INIT_LIST_HEAD(&acpi_prt.entries);
173 first_time = 0;
174 }
175
176 /*
177 * NOTE: We're given a 'handle' to the _PRT object's parent device
178 * (either a PCI root bridge or PCI-PCI bridge).
179 */
180
181 buffer.length = ACPI_PATHNAME_MAX;
182 buffer.pointer = pathname;
183 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
184
185 printk(KERN_DEBUG "ACPI: PCI Interrupt Routing Table [%s._PRT]\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400186 pathname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188 /*
189 * Evaluate this _PRT and add its entries to our global list (acpi_prt).
190 */
191
192 buffer.length = 0;
193 buffer.pointer = NULL;
194 kfree(pathname);
195 status = acpi_get_irq_routing_table(handle, &buffer);
196 if (status != AE_BUFFER_OVERFLOW) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400197 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PRT [%s]",
198 acpi_format_exception(status)));
Patrick Mocheld550d982006-06-27 00:41:40 -0400199 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
201
202 prt = kmalloc(buffer.length, GFP_KERNEL);
Len Brown4be44fc2005-08-05 00:44:28 -0400203 if (!prt) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400204 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 }
206 memset(prt, 0, buffer.length);
207 buffer.pointer = prt;
208
209 status = acpi_get_irq_routing_table(handle, &buffer);
210 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400211 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PRT [%s]",
212 acpi_format_exception(status)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -0400214 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
216
217 entry = prt;
218
219 while (entry && (entry->length > 0)) {
220 acpi_pci_irq_add_entry(handle, segment, bus, entry);
221 entry = (struct acpi_pci_routing_table *)
Len Brown4be44fc2005-08-05 00:44:28 -0400222 ((unsigned long)entry + entry->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 }
224
225 kfree(prt);
226
Patrick Mocheld550d982006-06-27 00:41:40 -0400227 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228}
229
Len Brown4be44fc2005-08-05 00:44:28 -0400230void acpi_pci_irq_del_prt(int segment, int bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
Len Brown4be44fc2005-08-05 00:44:28 -0400232 struct list_head *node = NULL, *n = NULL;
233 struct acpi_prt_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Len Brown4be44fc2005-08-05 00:44:28 -0400235 if (!acpi_prt.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 return;
237 }
238
Len Brown4be44fc2005-08-05 00:44:28 -0400239 printk(KERN_DEBUG
240 "ACPI: Delete PCI Interrupt Routing Table for %x:%x\n", segment,
241 bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 spin_lock(&acpi_prt_lock);
243 list_for_each_safe(node, n, &acpi_prt.entries) {
244 entry = list_entry(node, struct acpi_prt_entry, node);
245
246 acpi_pci_irq_del_entry(segment, bus, entry);
247 }
248 spin_unlock(&acpi_prt_lock);
249}
Len Brown4be44fc2005-08-05 00:44:28 -0400250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251/* --------------------------------------------------------------------------
252 PCI Interrupt Routing Support
253 -------------------------------------------------------------------------- */
Len Brown4be44fc2005-08-05 00:44:28 -0400254typedef int (*irq_lookup_func) (struct acpi_prt_entry *, int *, int *, char **);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
David Shaohua Li87bec662005-07-27 23:02:00 -0400256static int
257acpi_pci_allocate_irq(struct acpi_prt_entry *entry,
Bob Moore50eca3e2005-09-30 19:03:00 -0400258 int *triggering, int *polarity, char **link)
David Shaohua Li87bec662005-07-27 23:02:00 -0400259{
Len Brown4be44fc2005-08-05 00:44:28 -0400260 int irq;
David Shaohua Li87bec662005-07-27 23:02:00 -0400261
David Shaohua Li87bec662005-07-27 23:02:00 -0400262
263 if (entry->link.handle) {
264 irq = acpi_pci_link_allocate_irq(entry->link.handle,
Bob Moore50eca3e2005-09-30 19:03:00 -0400265 entry->link.index, triggering,
266 polarity, link);
David Shaohua Li87bec662005-07-27 23:02:00 -0400267 if (irq < 0) {
Len Browncece9292006-06-26 23:04:31 -0400268 printk(KERN_WARNING PREFIX
269 "Invalid IRQ link routing entry\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400270 return -1;
David Shaohua Li87bec662005-07-27 23:02:00 -0400271 }
272 } else {
273 irq = entry->link.index;
Bob Moore50eca3e2005-09-30 19:03:00 -0400274 *triggering = ACPI_LEVEL_SENSITIVE;
275 *polarity = ACPI_ACTIVE_LOW;
David Shaohua Li87bec662005-07-27 23:02:00 -0400276 }
277
278 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found IRQ %d\n", irq));
Patrick Mocheld550d982006-06-27 00:41:40 -0400279 return irq;
David Shaohua Li87bec662005-07-27 23:02:00 -0400280}
281
282static int
283acpi_pci_free_irq(struct acpi_prt_entry *entry,
Bob Moore50eca3e2005-09-30 19:03:00 -0400284 int *triggering, int *polarity, char **link)
David Shaohua Li87bec662005-07-27 23:02:00 -0400285{
Len Brown4be44fc2005-08-05 00:44:28 -0400286 int irq;
David Shaohua Li87bec662005-07-27 23:02:00 -0400287
David Shaohua Li87bec662005-07-27 23:02:00 -0400288 if (entry->link.handle) {
289 irq = acpi_pci_link_free_irq(entry->link.handle);
290 } else {
291 irq = entry->link.index;
292 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400293 return irq;
David Shaohua Li87bec662005-07-27 23:02:00 -0400294}
Len Brown4be44fc2005-08-05 00:44:28 -0400295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296/*
297 * acpi_pci_irq_lookup
298 * success: return IRQ >= 0
299 * failure: return -1
300 */
301static int
Len Brown4be44fc2005-08-05 00:44:28 -0400302acpi_pci_irq_lookup(struct pci_bus *bus,
303 int device,
304 int pin,
Bob Moore50eca3e2005-09-30 19:03:00 -0400305 int *triggering,
306 int *polarity, char **link, irq_lookup_func func)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
Len Brown4be44fc2005-08-05 00:44:28 -0400308 struct acpi_prt_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 int segment = pci_domain_nr(bus);
310 int bus_nr = bus->number;
David Shaohua Li87bec662005-07-27 23:02:00 -0400311 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Len Brown4be44fc2005-08-05 00:44:28 -0400314 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
315 "Searching for PRT entry for %02x:%02x:%02x[%c]\n",
316 segment, bus_nr, device, ('A' + pin)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Len Brown4be44fc2005-08-05 00:44:28 -0400318 entry = acpi_pci_irq_find_prt_entry(segment, bus_nr, device, pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 if (!entry) {
320 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "PRT entry not found\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400321 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 }
Len Brown4be44fc2005-08-05 00:44:28 -0400323
Bob Moore50eca3e2005-09-30 19:03:00 -0400324 ret = func(entry, triggering, polarity, link);
Patrick Mocheld550d982006-06-27 00:41:40 -0400325 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326}
327
328/*
329 * acpi_pci_irq_derive
330 * success: return IRQ >= 0
331 * failure: return < 0
332 */
333static int
Len Brown4be44fc2005-08-05 00:44:28 -0400334acpi_pci_irq_derive(struct pci_dev *dev,
335 int pin,
Bob Moore50eca3e2005-09-30 19:03:00 -0400336 int *triggering,
337 int *polarity, char **link, irq_lookup_func func)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
Len Brown4be44fc2005-08-05 00:44:28 -0400339 struct pci_dev *bridge = dev;
340 int irq = -1;
341 u8 bridge_pin = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344 if (!dev)
Patrick Mocheld550d982006-06-27 00:41:40 -0400345 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347 /*
348 * Attempt to derive an IRQ for this device from a parent bridge's
349 * PCI interrupt routing entry (eg. yenta bridge and add-in card bridge).
350 */
351 while (irq < 0 && bridge->bus->self) {
352 pin = (pin + PCI_SLOT(bridge->devfn)) % 4;
353 bridge = bridge->bus->self;
354
355 if ((bridge->class >> 8) == PCI_CLASS_BRIDGE_CARDBUS) {
356 /* PC card has the same IRQ as its cardbridge */
Kristen Accardi8015a012005-11-02 16:24:35 -0800357 bridge_pin = bridge->pin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 if (!bridge_pin) {
Len Brown4be44fc2005-08-05 00:44:28 -0400359 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
360 "No interrupt pin configured for device %s\n",
361 pci_name(bridge)));
Patrick Mocheld550d982006-06-27 00:41:40 -0400362 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 }
364 /* Pin is from 0 to 3 */
Len Brown4be44fc2005-08-05 00:44:28 -0400365 bridge_pin--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 pin = bridge_pin;
367 }
368
369 irq = acpi_pci_irq_lookup(bridge->bus, PCI_SLOT(bridge->devfn),
Bob Moore50eca3e2005-09-30 19:03:00 -0400370 pin, triggering, polarity,
Len Brown4be44fc2005-08-05 00:44:28 -0400371 link, func);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 }
373
374 if (irq < 0) {
Len Browncece9292006-06-26 23:04:31 -0400375 printk(KERN_WARNING PREFIX "Unable to derive IRQ for device %s\n",
376 pci_name(dev));
Patrick Mocheld550d982006-06-27 00:41:40 -0400377 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 }
379
380 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Derive IRQ %d for device %s from %s\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400381 irq, pci_name(dev), pci_name(bridge)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Patrick Mocheld550d982006-06-27 00:41:40 -0400383 return irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384}
385
386/*
387 * acpi_pci_irq_enable
388 * success: return 0
389 * failure: return < 0
390 */
391
Len Brown4be44fc2005-08-05 00:44:28 -0400392int acpi_pci_irq_enable(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393{
Len Brown4be44fc2005-08-05 00:44:28 -0400394 int irq = 0;
395 u8 pin = 0;
Bob Moore50eca3e2005-09-30 19:03:00 -0400396 int triggering = ACPI_LEVEL_SENSITIVE;
397 int polarity = ACPI_ACTIVE_LOW;
Len Brown4be44fc2005-08-05 00:44:28 -0400398 char *link = NULL;
399 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402 if (!dev)
Patrick Mocheld550d982006-06-27 00:41:40 -0400403 return -EINVAL;
Len Brown4be44fc2005-08-05 00:44:28 -0400404
Kristen Accardi8015a012005-11-02 16:24:35 -0800405 pin = dev->pin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 if (!pin) {
Len Brown4be44fc2005-08-05 00:44:28 -0400407 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
408 "No interrupt pin configured for device %s\n",
409 pci_name(dev)));
Patrick Mocheld550d982006-06-27 00:41:40 -0400410 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 }
412 pin--;
413
414 if (!dev->bus) {
Len Brown64684632006-06-26 23:41:38 -0400415 printk(KERN_ERR PREFIX "Invalid (NULL) 'bus' field\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400416 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 }
418
419 /*
420 * First we check the PCI IRQ routing table (PRT) for an IRQ. PRT
421 * values override any BIOS-assigned IRQs set during boot.
422 */
Len Brown4be44fc2005-08-05 00:44:28 -0400423 irq = acpi_pci_irq_lookup(dev->bus, PCI_SLOT(dev->devfn), pin,
Bob Moore50eca3e2005-09-30 19:03:00 -0400424 &triggering, &polarity, &link,
Len Brown4be44fc2005-08-05 00:44:28 -0400425 acpi_pci_allocate_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 /*
428 * If no PRT entry was found, we'll try to derive an IRQ from the
429 * device's parent bridge.
430 */
431 if (irq < 0)
Bob Moore50eca3e2005-09-30 19:03:00 -0400432 irq = acpi_pci_irq_derive(dev, pin, &triggering,
433 &polarity, &link,
Len Brown4be44fc2005-08-05 00:44:28 -0400434 acpi_pci_allocate_irq);
435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 /*
437 * No IRQ known to the ACPI subsystem - maybe the BIOS /
438 * driver reported one, then use it. Exit in any case.
439 */
440 if (irq < 0) {
441 printk(KERN_WARNING PREFIX "PCI Interrupt %s[%c]: no GSI",
Len Brown4be44fc2005-08-05 00:44:28 -0400442 pci_name(dev), ('A' + pin));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 /* Interrupt Line values above 0xF are forbidden */
Linus Torvalds44f8e1a2005-07-02 10:35:33 -0700444 if (dev->irq > 0 && (dev->irq <= 0xF)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 printk(" - using IRQ %d\n", dev->irq);
Len Brown4be44fc2005-08-05 00:44:28 -0400446 acpi_register_gsi(dev->irq, ACPI_LEVEL_SENSITIVE,
447 ACPI_ACTIVE_LOW);
Patrick Mocheld550d982006-06-27 00:41:40 -0400448 return 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400449 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 printk("\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400451 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 }
Len Brown4be44fc2005-08-05 00:44:28 -0400453 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Bob Moore50eca3e2005-09-30 19:03:00 -0400455 rc = acpi_register_gsi(irq, triggering, polarity);
Kenji Kaneshige349f0d52005-07-28 14:42:00 -0400456 if (rc < 0) {
457 printk(KERN_WARNING PREFIX "PCI Interrupt %s[%c]: failed "
458 "to register GSI\n", pci_name(dev), ('A' + pin));
Patrick Mocheld550d982006-06-27 00:41:40 -0400459 return rc;
Kenji Kaneshige349f0d52005-07-28 14:42:00 -0400460 }
461 dev->irq = rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 printk(KERN_INFO PREFIX "PCI Interrupt %s[%c] -> ",
Len Brown4be44fc2005-08-05 00:44:28 -0400464 pci_name(dev), 'A' + pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466 if (link)
467 printk("Link [%s] -> ", link);
468
469 printk("GSI %u (%s, %s) -> IRQ %d\n", irq,
Bob Moore50eca3e2005-09-30 19:03:00 -0400470 (triggering == ACPI_LEVEL_SENSITIVE) ? "level" : "edge",
471 (polarity == ACPI_ACTIVE_LOW) ? "low" : "high", dev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Patrick Mocheld550d982006-06-27 00:41:40 -0400473 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474}
Len Brown4be44fc2005-08-05 00:44:28 -0400475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476EXPORT_SYMBOL(acpi_pci_irq_enable);
477
David Shaohua Li87bec662005-07-27 23:02:00 -0400478/* FIXME: implement x86/x86_64 version */
Len Brown4be44fc2005-08-05 00:44:28 -0400479void __attribute__ ((weak)) acpi_unregister_gsi(u32 i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
Len Brown4be44fc2005-08-05 00:44:28 -0400481}
482
483void acpi_pci_irq_disable(struct pci_dev *dev)
484{
485 int gsi = 0;
486 u8 pin = 0;
Bob Moore50eca3e2005-09-30 19:03:00 -0400487 int triggering = ACPI_LEVEL_SENSITIVE;
488 int polarity = ACPI_ACTIVE_LOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Kenji Kaneshige5f0110f2005-09-03 00:34:32 -0400491 if (!dev || !dev->bus)
Patrick Mocheld550d982006-06-27 00:41:40 -0400492 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Kristen Accardi8015a012005-11-02 16:24:35 -0800494 pin = dev->pin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 if (!pin)
Patrick Mocheld550d982006-06-27 00:41:40 -0400496 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 pin--;
498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 /*
500 * First we check the PCI IRQ routing table (PRT) for an IRQ.
501 */
Len Brown4be44fc2005-08-05 00:44:28 -0400502 gsi = acpi_pci_irq_lookup(dev->bus, PCI_SLOT(dev->devfn), pin,
Bob Moore50eca3e2005-09-30 19:03:00 -0400503 &triggering, &polarity, NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400504 acpi_pci_free_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 /*
506 * If no PRT entry was found, we'll try to derive an IRQ from the
507 * device's parent bridge.
508 */
509 if (gsi < 0)
Len Brown4be44fc2005-08-05 00:44:28 -0400510 gsi = acpi_pci_irq_derive(dev, pin,
Bob Moore50eca3e2005-09-30 19:03:00 -0400511 &triggering, &polarity, NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400512 acpi_pci_free_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 if (gsi < 0)
Patrick Mocheld550d982006-06-27 00:41:40 -0400514 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516 /*
517 * TBD: It might be worth clearing dev->irq by magic constant
518 * (e.g. PCI_UNDEFINED_IRQ).
519 */
520
521 printk(KERN_INFO PREFIX "PCI interrupt for device %s disabled\n",
522 pci_name(dev));
523
524 acpi_unregister_gsi(gsi);
525
Patrick Mocheld550d982006-06-27 00:41:40 -0400526 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527}