ACPI: delete tracing macros from drivers/acpi/*.c
[deliverable/linux.git] / drivers / acpi / pci_irq.c
CommitLineData
1da177e4
LT
1/*
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
1da177e4 41#define _COMPONENT ACPI_PCI_COMPONENT
4be44fcd 42ACPI_MODULE_NAME("pci_irq")
1da177e4 43
4be44fcd 44static struct acpi_prt_list acpi_prt;
1da177e4
LT
45static DEFINE_SPINLOCK(acpi_prt_lock);
46
47/* --------------------------------------------------------------------------
48 PCI IRQ Routing Table (PRT) Support
49 -------------------------------------------------------------------------- */
50
4be44fcd
LB
51static struct acpi_prt_entry *acpi_pci_irq_find_prt_entry(int segment,
52 int bus,
53 int device, int pin)
1da177e4 54{
4be44fcd
LB
55 struct list_head *node = NULL;
56 struct acpi_prt_entry *entry = NULL;
1da177e4 57
1da177e4
LT
58
59 if (!acpi_prt.count)
d550d98d 60 return NULL;
1da177e4
LT
61
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);
4be44fcd
LB
70 if ((segment == entry->id.segment)
71 && (bus == entry->id.bus)
72 && (device == entry->id.device)
73 && (pin == entry->pin)) {
1da177e4 74 spin_unlock(&acpi_prt_lock);
d550d98d 75 return entry;
1da177e4
LT
76 }
77 }
78
79 spin_unlock(&acpi_prt_lock);
d550d98d 80 return NULL;
1da177e4
LT
81}
82
1da177e4 83static int
4be44fcd
LB
84acpi_pci_irq_add_entry(acpi_handle handle,
85 int segment, int bus, struct acpi_pci_routing_table *prt)
1da177e4 86{
4be44fcd 87 struct acpi_prt_entry *entry = NULL;
1da177e4 88
1da177e4
LT
89
90 if (!prt)
d550d98d 91 return -EINVAL;
1da177e4
LT
92
93 entry = kmalloc(sizeof(struct acpi_prt_entry), GFP_KERNEL);
94 if (!entry)
d550d98d 95 return -ENOMEM;
1da177e4
LT
96 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,
4be44fcd
LB
132 " %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));
1da177e4
LT
136
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
d550d98d 142 return 0;
1da177e4
LT
143}
144
1da177e4 145static void
4be44fcd 146acpi_pci_irq_del_entry(int segment, int bus, struct acpi_prt_entry *entry)
1da177e4 147{
4be44fcd 148 if (segment == entry->id.segment && bus == entry->id.bus) {
1da177e4
LT
149 acpi_prt.count--;
150 list_del(&entry->node);
151 kfree(entry);
152 }
153}
154
4be44fcd 155int acpi_pci_irq_add_prt(acpi_handle handle, int segment, int bus)
1da177e4 156{
4be44fcd
LB
157 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;
1da177e4 163
1da177e4 164
4be44fcd
LB
165 pathname = (char *)kmalloc(ACPI_PATHNAME_MAX, GFP_KERNEL);
166 if (!pathname)
d550d98d 167 return -ENOMEM;
1da177e4
LT
168 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",
4be44fcd 186 pathname);
1da177e4
LT
187
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) {
a6fc6720
TR
197 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PRT [%s]",
198 acpi_format_exception(status)));
d550d98d 199 return -ENODEV;
1da177e4
LT
200 }
201
202 prt = kmalloc(buffer.length, GFP_KERNEL);
4be44fcd 203 if (!prt) {
d550d98d 204 return -ENOMEM;
1da177e4
LT
205 }
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)) {
a6fc6720
TR
211 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PRT [%s]",
212 acpi_format_exception(status)));
1da177e4 213 kfree(buffer.pointer);
d550d98d 214 return -ENODEV;
1da177e4
LT
215 }
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 *)
4be44fcd 222 ((unsigned long)entry + entry->length);
1da177e4
LT
223 }
224
225 kfree(prt);
226
d550d98d 227 return 0;
1da177e4
LT
228}
229
4be44fcd 230void acpi_pci_irq_del_prt(int segment, int bus)
1da177e4 231{
4be44fcd
LB
232 struct list_head *node = NULL, *n = NULL;
233 struct acpi_prt_entry *entry = NULL;
1da177e4 234
4be44fcd 235 if (!acpi_prt.count) {
1da177e4
LT
236 return;
237 }
238
4be44fcd
LB
239 printk(KERN_DEBUG
240 "ACPI: Delete PCI Interrupt Routing Table for %x:%x\n", segment,
241 bus);
1da177e4
LT
242 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}
4be44fcd 250
1da177e4
LT
251/* --------------------------------------------------------------------------
252 PCI Interrupt Routing Support
253 -------------------------------------------------------------------------- */
4be44fcd 254typedef int (*irq_lookup_func) (struct acpi_prt_entry *, int *, int *, char **);
1da177e4 255
87bec66b
DSL
256static int
257acpi_pci_allocate_irq(struct acpi_prt_entry *entry,
50eca3eb 258 int *triggering, int *polarity, char **link)
87bec66b 259{
4be44fcd 260 int irq;
87bec66b 261
87bec66b
DSL
262
263 if (entry->link.handle) {
264 irq = acpi_pci_link_allocate_irq(entry->link.handle,
50eca3eb
BM
265 entry->link.index, triggering,
266 polarity, link);
87bec66b 267 if (irq < 0) {
cece9296
LB
268 printk(KERN_WARNING PREFIX
269 "Invalid IRQ link routing entry\n");
d550d98d 270 return -1;
87bec66b
DSL
271 }
272 } else {
273 irq = entry->link.index;
50eca3eb
BM
274 *triggering = ACPI_LEVEL_SENSITIVE;
275 *polarity = ACPI_ACTIVE_LOW;
87bec66b
DSL
276 }
277
278 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found IRQ %d\n", irq));
d550d98d 279 return irq;
87bec66b
DSL
280}
281
282static int
283acpi_pci_free_irq(struct acpi_prt_entry *entry,
50eca3eb 284 int *triggering, int *polarity, char **link)
87bec66b 285{
4be44fcd 286 int irq;
87bec66b 287
87bec66b
DSL
288 if (entry->link.handle) {
289 irq = acpi_pci_link_free_irq(entry->link.handle);
290 } else {
291 irq = entry->link.index;
292 }
d550d98d 293 return irq;
87bec66b 294}
4be44fcd 295
1da177e4
LT
296/*
297 * acpi_pci_irq_lookup
298 * success: return IRQ >= 0
299 * failure: return -1
300 */
301static int
4be44fcd
LB
302acpi_pci_irq_lookup(struct pci_bus *bus,
303 int device,
304 int pin,
50eca3eb
BM
305 int *triggering,
306 int *polarity, char **link, irq_lookup_func func)
1da177e4 307{
4be44fcd 308 struct acpi_prt_entry *entry = NULL;
1da177e4
LT
309 int segment = pci_domain_nr(bus);
310 int bus_nr = bus->number;
87bec66b 311 int ret;
1da177e4 312
1da177e4 313
4be44fcd
LB
314 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
315 "Searching for PRT entry for %02x:%02x:%02x[%c]\n",
316 segment, bus_nr, device, ('A' + pin)));
1da177e4 317
4be44fcd 318 entry = acpi_pci_irq_find_prt_entry(segment, bus_nr, device, pin);
1da177e4
LT
319 if (!entry) {
320 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "PRT entry not found\n"));
d550d98d 321 return -1;
1da177e4 322 }
4be44fcd 323
50eca3eb 324 ret = func(entry, triggering, polarity, link);
d550d98d 325 return ret;
1da177e4
LT
326}
327
328/*
329 * acpi_pci_irq_derive
330 * success: return IRQ >= 0
331 * failure: return < 0
332 */
333static int
4be44fcd
LB
334acpi_pci_irq_derive(struct pci_dev *dev,
335 int pin,
50eca3eb
BM
336 int *triggering,
337 int *polarity, char **link, irq_lookup_func func)
1da177e4 338{
4be44fcd
LB
339 struct pci_dev *bridge = dev;
340 int irq = -1;
341 u8 bridge_pin = 0;
1da177e4 342
1da177e4
LT
343
344 if (!dev)
d550d98d 345 return -EINVAL;
1da177e4
LT
346
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 */
8015a014 357 bridge_pin = bridge->pin;
1da177e4 358 if (!bridge_pin) {
4be44fcd
LB
359 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
360 "No interrupt pin configured for device %s\n",
361 pci_name(bridge)));
d550d98d 362 return -1;
1da177e4
LT
363 }
364 /* Pin is from 0 to 3 */
4be44fcd 365 bridge_pin--;
1da177e4
LT
366 pin = bridge_pin;
367 }
368
369 irq = acpi_pci_irq_lookup(bridge->bus, PCI_SLOT(bridge->devfn),
50eca3eb 370 pin, triggering, polarity,
4be44fcd 371 link, func);
1da177e4
LT
372 }
373
374 if (irq < 0) {
cece9296
LB
375 printk(KERN_WARNING PREFIX "Unable to derive IRQ for device %s\n",
376 pci_name(dev));
d550d98d 377 return -1;
1da177e4
LT
378 }
379
380 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Derive IRQ %d for device %s from %s\n",
4be44fcd 381 irq, pci_name(dev), pci_name(bridge)));
1da177e4 382
d550d98d 383 return irq;
1da177e4
LT
384}
385
386/*
387 * acpi_pci_irq_enable
388 * success: return 0
389 * failure: return < 0
390 */
391
4be44fcd 392int acpi_pci_irq_enable(struct pci_dev *dev)
1da177e4 393{
4be44fcd
LB
394 int irq = 0;
395 u8 pin = 0;
50eca3eb
BM
396 int triggering = ACPI_LEVEL_SENSITIVE;
397 int polarity = ACPI_ACTIVE_LOW;
4be44fcd
LB
398 char *link = NULL;
399 int rc;
1da177e4 400
1da177e4
LT
401
402 if (!dev)
d550d98d 403 return -EINVAL;
4be44fcd 404
8015a014 405 pin = dev->pin;
1da177e4 406 if (!pin) {
4be44fcd
LB
407 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
408 "No interrupt pin configured for device %s\n",
409 pci_name(dev)));
d550d98d 410 return 0;
1da177e4
LT
411 }
412 pin--;
413
414 if (!dev->bus) {
6468463a 415 printk(KERN_ERR PREFIX "Invalid (NULL) 'bus' field\n");
d550d98d 416 return -ENODEV;
1da177e4
LT
417 }
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 */
4be44fcd 423 irq = acpi_pci_irq_lookup(dev->bus, PCI_SLOT(dev->devfn), pin,
50eca3eb 424 &triggering, &polarity, &link,
4be44fcd 425 acpi_pci_allocate_irq);
1da177e4
LT
426
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)
50eca3eb
BM
432 irq = acpi_pci_irq_derive(dev, pin, &triggering,
433 &polarity, &link,
4be44fcd
LB
434 acpi_pci_allocate_irq);
435
1da177e4
LT
436 /*
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",
4be44fcd 442 pci_name(dev), ('A' + pin));
1da177e4 443 /* Interrupt Line values above 0xF are forbidden */
44f8e1a2 444 if (dev->irq > 0 && (dev->irq <= 0xF)) {
1da177e4 445 printk(" - using IRQ %d\n", dev->irq);
4be44fcd
LB
446 acpi_register_gsi(dev->irq, ACPI_LEVEL_SENSITIVE,
447 ACPI_ACTIVE_LOW);
d550d98d 448 return 0;
4be44fcd 449 } else {
1da177e4 450 printk("\n");
d550d98d 451 return 0;
1da177e4 452 }
4be44fcd 453 }
1da177e4 454
50eca3eb 455 rc = acpi_register_gsi(irq, triggering, polarity);
349f0d56
KK
456 if (rc < 0) {
457 printk(KERN_WARNING PREFIX "PCI Interrupt %s[%c]: failed "
458 "to register GSI\n", pci_name(dev), ('A' + pin));
d550d98d 459 return rc;
349f0d56
KK
460 }
461 dev->irq = rc;
1da177e4
LT
462
463 printk(KERN_INFO PREFIX "PCI Interrupt %s[%c] -> ",
4be44fcd 464 pci_name(dev), 'A' + pin);
1da177e4
LT
465
466 if (link)
467 printk("Link [%s] -> ", link);
468
469 printk("GSI %u (%s, %s) -> IRQ %d\n", irq,
50eca3eb
BM
470 (triggering == ACPI_LEVEL_SENSITIVE) ? "level" : "edge",
471 (polarity == ACPI_ACTIVE_LOW) ? "low" : "high", dev->irq);
1da177e4 472
d550d98d 473 return 0;
1da177e4 474}
1da177e4 475
4be44fcd 476EXPORT_SYMBOL(acpi_pci_irq_enable);
1da177e4 477
87bec66b 478/* FIXME: implement x86/x86_64 version */
4be44fcd
LB
479void __attribute__ ((weak)) acpi_unregister_gsi(u32 i)
480{
481}
87bec66b 482
4be44fcd 483void acpi_pci_irq_disable(struct pci_dev *dev)
1da177e4 484{
4be44fcd
LB
485 int gsi = 0;
486 u8 pin = 0;
50eca3eb
BM
487 int triggering = ACPI_LEVEL_SENSITIVE;
488 int polarity = ACPI_ACTIVE_LOW;
1da177e4 489
1da177e4 490
5f0110f2 491 if (!dev || !dev->bus)
d550d98d 492 return;
1da177e4 493
8015a014 494 pin = dev->pin;
1da177e4 495 if (!pin)
d550d98d 496 return;
1da177e4
LT
497 pin--;
498
1da177e4
LT
499 /*
500 * First we check the PCI IRQ routing table (PRT) for an IRQ.
501 */
4be44fcd 502 gsi = acpi_pci_irq_lookup(dev->bus, PCI_SLOT(dev->devfn), pin,
50eca3eb 503 &triggering, &polarity, NULL,
4be44fcd 504 acpi_pci_free_irq);
1da177e4
LT
505 /*
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)
4be44fcd 510 gsi = acpi_pci_irq_derive(dev, pin,
50eca3eb 511 &triggering, &polarity, NULL,
4be44fcd 512 acpi_pci_free_irq);
1da177e4 513 if (gsi < 0)
d550d98d 514 return;
1da177e4
LT
515
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
d550d98d 526 return;
1da177e4 527}
This page took 0.236313 seconds and 5 git commands to generate.