ACPI, PCI, irq: Do not share PCI IRQ with ISA IRQ
[linux-2.6-block.git] / drivers / acpi / pci_link.c
CommitLineData
1da177e4
LT
1/*
2 * pci_link.c - ACPI PCI Interrupt Link Device Driver ($Revision: 34 $)
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 *
1da177e4
LT
20 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
21 *
22 * TBD:
23 * 1. Support more than one IRQ resource entry per link device (index).
24 * 2. Implement start/stop mechanism and use ACPI Bus Driver facilities
25 * for IRQ management (e.g. start()->_SRS).
26 */
27
c3146df2 28#include <linux/syscore_ops.h>
1da177e4
LT
29#include <linux/kernel.h>
30#include <linux/module.h>
31#include <linux/init.h>
32#include <linux/types.h>
1da177e4
LT
33#include <linux/spinlock.h>
34#include <linux/pm.h>
35#include <linux/pci.h>
36e43095 36#include <linux/mutex.h>
5a0e3ad6 37#include <linux/slab.h>
8b48463f 38#include <linux/acpi.h>
1da177e4 39
c071b604
R
40#include "internal.h"
41
1c9ca3a7 42#define _COMPONENT ACPI_PCI_COMPONENT
f52fd66d 43ACPI_MODULE_NAME("pci_link");
1da177e4 44#define ACPI_PCI_LINK_CLASS "pci_irq_routing"
1da177e4
LT
45#define ACPI_PCI_LINK_DEVICE_NAME "PCI Interrupt Link"
46#define ACPI_PCI_LINK_FILE_INFO "info"
47#define ACPI_PCI_LINK_FILE_STATUS "state"
1c9ca3a7
BH
48#define ACPI_PCI_LINK_MAX_POSSIBLE 16
49
4daeaf68
RW
50static int acpi_pci_link_add(struct acpi_device *device,
51 const struct acpi_device_id *not_used);
52static void acpi_pci_link_remove(struct acpi_device *device);
1da177e4 53
c97adf9e 54static const struct acpi_device_id link_device_ids[] = {
1ba90e3a
TR
55 {"PNP0C0F", 0},
56 {"", 0},
57};
1ba90e3a 58
4daeaf68 59static struct acpi_scan_handler pci_link_handler = {
1ba90e3a 60 .ids = link_device_ids,
4daeaf68
RW
61 .attach = acpi_pci_link_add,
62 .detach = acpi_pci_link_remove,
1da177e4
LT
63};
64
87bec66b
DSL
65/*
66 * If a link is initialized, we never change its active and initialized
67 * later even the link is disable. Instead, we just repick the active irq
68 */
1da177e4 69struct acpi_pci_link_irq {
4be44fcd 70 u8 active; /* Current IRQ */
50eca3eb 71 u8 triggering; /* All IRQs */
1c9ca3a7 72 u8 polarity; /* All IRQs */
4be44fcd
LB
73 u8 resource_type;
74 u8 possible_count;
75 u8 possible[ACPI_PCI_LINK_MAX_POSSIBLE];
76 u8 initialized:1;
77 u8 reserved:7;
1da177e4
LT
78};
79
80struct acpi_pci_link {
5f0dccaa 81 struct list_head list;
1c9ca3a7
BH
82 struct acpi_device *device;
83 struct acpi_pci_link_irq irq;
84 int refcnt;
1da177e4
LT
85};
86
5f0dccaa 87static LIST_HEAD(acpi_link_list);
e5685b9d 88static DEFINE_MUTEX(acpi_link_lock);
1da177e4 89
1da177e4
LT
90/* --------------------------------------------------------------------------
91 PCI Link Device Management
92 -------------------------------------------------------------------------- */
93
94/*
95 * set context (link) possible list from resource list
96 */
1c9ca3a7
BH
97static acpi_status acpi_pci_link_check_possible(struct acpi_resource *resource,
98 void *context)
1da177e4 99{
50dd0969 100 struct acpi_pci_link *link = context;
c9d62443 101 u32 i;
1da177e4 102
eca008c8 103 switch (resource->type) {
50eca3eb 104 case ACPI_RESOURCE_TYPE_START_DEPENDENT:
4a5e3638 105 case ACPI_RESOURCE_TYPE_END_TAG:
d550d98d 106 return AE_OK;
50eca3eb 107 case ACPI_RESOURCE_TYPE_IRQ:
4be44fcd
LB
108 {
109 struct acpi_resource_irq *p = &resource->data.irq;
50eca3eb 110 if (!p || !p->interrupt_count) {
4a5e3638
BH
111 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
112 "Blank _PRS IRQ resource\n"));
d550d98d 113 return AE_OK;
1da177e4 114 }
4be44fcd 115 for (i = 0;
50eca3eb 116 (i < p->interrupt_count
4be44fcd
LB
117 && i < ACPI_PCI_LINK_MAX_POSSIBLE); i++) {
118 if (!p->interrupts[i]) {
4a5e3638
BH
119 printk(KERN_WARNING PREFIX
120 "Invalid _PRS IRQ %d\n",
121 p->interrupts[i]);
4be44fcd
LB
122 continue;
123 }
124 link->irq.possible[i] = p->interrupts[i];
125 link->irq.possible_count++;
126 }
50eca3eb
BM
127 link->irq.triggering = p->triggering;
128 link->irq.polarity = p->polarity;
129 link->irq.resource_type = ACPI_RESOURCE_TYPE_IRQ;
4be44fcd 130 break;
1da177e4 131 }
50eca3eb 132 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
4be44fcd 133 {
50eca3eb 134 struct acpi_resource_extended_irq *p =
4be44fcd 135 &resource->data.extended_irq;
50eca3eb 136 if (!p || !p->interrupt_count) {
cece9296 137 printk(KERN_WARNING PREFIX
4a5e3638 138 "Blank _PRS EXT IRQ resource\n");
d550d98d 139 return AE_OK;
4be44fcd
LB
140 }
141 for (i = 0;
50eca3eb 142 (i < p->interrupt_count
4be44fcd
LB
143 && i < ACPI_PCI_LINK_MAX_POSSIBLE); i++) {
144 if (!p->interrupts[i]) {
4a5e3638
BH
145 printk(KERN_WARNING PREFIX
146 "Invalid _PRS IRQ %d\n",
147 p->interrupts[i]);
4be44fcd
LB
148 continue;
149 }
150 link->irq.possible[i] = p->interrupts[i];
151 link->irq.possible_count++;
1da177e4 152 }
50eca3eb
BM
153 link->irq.triggering = p->triggering;
154 link->irq.polarity = p->polarity;
155 link->irq.resource_type = ACPI_RESOURCE_TYPE_EXTENDED_IRQ;
4be44fcd 156 break;
1da177e4 157 }
1da177e4 158 default:
4a5e3638
BH
159 printk(KERN_ERR PREFIX "_PRS resource type 0x%x isn't an IRQ\n",
160 resource->type);
d550d98d 161 return AE_OK;
1da177e4
LT
162 }
163
d550d98d 164 return AE_CTRL_TERMINATE;
1da177e4
LT
165}
166
4be44fcd 167static int acpi_pci_link_get_possible(struct acpi_pci_link *link)
1da177e4 168{
4be44fcd 169 acpi_status status;
1da177e4 170
67a71365 171 status = acpi_walk_resources(link->device->handle, METHOD_NAME__PRS,
4be44fcd 172 acpi_pci_link_check_possible, link);
1da177e4 173 if (ACPI_FAILURE(status)) {
a6fc6720 174 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PRS"));
d550d98d 175 return -ENODEV;
1da177e4
LT
176 }
177
4be44fcd
LB
178 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
179 "Found %d possible IRQs\n",
180 link->irq.possible_count));
1da177e4 181
d550d98d 182 return 0;
1da177e4
LT
183}
184
1c9ca3a7
BH
185static acpi_status acpi_pci_link_check_current(struct acpi_resource *resource,
186 void *context)
1da177e4 187{
c9d62443 188 int *irq = context;
1da177e4 189
eca008c8 190 switch (resource->type) {
4a5e3638
BH
191 case ACPI_RESOURCE_TYPE_START_DEPENDENT:
192 case ACPI_RESOURCE_TYPE_END_TAG:
193 return AE_OK;
50eca3eb 194 case ACPI_RESOURCE_TYPE_IRQ:
4be44fcd
LB
195 {
196 struct acpi_resource_irq *p = &resource->data.irq;
50eca3eb 197 if (!p || !p->interrupt_count) {
4be44fcd
LB
198 /*
199 * IRQ descriptors may have no IRQ# bits set,
200 * particularly those those w/ _STA disabled
201 */
202 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
4a5e3638 203 "Blank _CRS IRQ resource\n"));
d550d98d 204 return AE_OK;
4be44fcd
LB
205 }
206 *irq = p->interrupts[0];
207 break;
1da177e4 208 }
50eca3eb 209 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
4be44fcd 210 {
50eca3eb 211 struct acpi_resource_extended_irq *p =
4be44fcd 212 &resource->data.extended_irq;
50eca3eb 213 if (!p || !p->interrupt_count) {
4be44fcd
LB
214 /*
215 * extended IRQ descriptors must
216 * return at least 1 IRQ
217 */
cece9296 218 printk(KERN_WARNING PREFIX
4a5e3638 219 "Blank _CRS EXT IRQ resource\n");
d550d98d 220 return AE_OK;
4be44fcd
LB
221 }
222 *irq = p->interrupts[0];
223 break;
1da177e4 224 }
d4ec6c7c 225 break;
1da177e4 226 default:
4a5e3638
BH
227 printk(KERN_ERR PREFIX "_CRS resource type 0x%x isn't an IRQ\n",
228 resource->type);
d550d98d 229 return AE_OK;
1da177e4 230 }
4a5e3638 231
d550d98d 232 return AE_CTRL_TERMINATE;
1da177e4
LT
233}
234
235/*
236 * Run _CRS and set link->irq.active
237 *
238 * return value:
239 * 0 - success
240 * !0 - failure
241 */
4be44fcd 242static int acpi_pci_link_get_current(struct acpi_pci_link *link)
1da177e4 243{
4be44fcd 244 int result = 0;
c9d62443 245 acpi_status status;
4be44fcd 246 int irq = 0;
1da177e4 247
1da177e4
LT
248 link->irq.active = 0;
249
250 /* in practice, status disabled is meaningless, ignore it */
251 if (acpi_strict) {
252 /* Query _STA, set link->device->status */
253 result = acpi_bus_get_status(link->device);
254 if (result) {
6468463a 255 printk(KERN_ERR PREFIX "Unable to read status\n");
1da177e4
LT
256 goto end;
257 }
258
259 if (!link->device->status.enabled) {
260 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Link disabled\n"));
d550d98d 261 return 0;
1da177e4
LT
262 }
263 }
264
265 /*
266 * Query and parse _CRS to get the current IRQ assignment.
267 */
268
67a71365 269 status = acpi_walk_resources(link->device->handle, METHOD_NAME__CRS,
4be44fcd 270 acpi_pci_link_check_current, &irq);
1da177e4 271 if (ACPI_FAILURE(status)) {
a6fc6720 272 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _CRS"));
1da177e4
LT
273 result = -ENODEV;
274 goto end;
275 }
276
277 if (acpi_strict && !irq) {
6468463a 278 printk(KERN_ERR PREFIX "_CRS returned 0\n");
1da177e4
LT
279 result = -ENODEV;
280 }
281
282 link->irq.active = irq;
283
284 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Link at IRQ %d \n", link->irq.active));
285
4be44fcd 286 end:
d550d98d 287 return result;
1da177e4
LT
288}
289
4be44fcd 290static int acpi_pci_link_set(struct acpi_pci_link *link, int irq)
1da177e4 291{
c9d62443
BH
292 int result;
293 acpi_status status;
1da177e4 294 struct {
4be44fcd
LB
295 struct acpi_resource res;
296 struct acpi_resource end;
297 } *resource;
298 struct acpi_buffer buffer = { 0, NULL };
1da177e4 299
6eca4b4c 300 if (!irq)
d550d98d 301 return -EINVAL;
1da177e4 302
36bcbec7 303 resource = kzalloc(sizeof(*resource) + 1, irqs_disabled() ? GFP_ATOMIC: GFP_KERNEL);
4be44fcd 304 if (!resource)
d550d98d 305 return -ENOMEM;
1da177e4 306
4be44fcd 307 buffer.length = sizeof(*resource) + 1;
1da177e4
LT
308 buffer.pointer = resource;
309
4be44fcd 310 switch (link->irq.resource_type) {
50eca3eb
BM
311 case ACPI_RESOURCE_TYPE_IRQ:
312 resource->res.type = ACPI_RESOURCE_TYPE_IRQ;
1da177e4 313 resource->res.length = sizeof(struct acpi_resource);
50eca3eb
BM
314 resource->res.data.irq.triggering = link->irq.triggering;
315 resource->res.data.irq.polarity =
316 link->irq.polarity;
317 if (link->irq.triggering == ACPI_EDGE_SENSITIVE)
318 resource->res.data.irq.sharable =
4be44fcd 319 ACPI_EXCLUSIVE;
1da177e4 320 else
50eca3eb
BM
321 resource->res.data.irq.sharable = ACPI_SHARED;
322 resource->res.data.irq.interrupt_count = 1;
1da177e4
LT
323 resource->res.data.irq.interrupts[0] = irq;
324 break;
4be44fcd 325
50eca3eb
BM
326 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
327 resource->res.type = ACPI_RESOURCE_TYPE_EXTENDED_IRQ;
1da177e4 328 resource->res.length = sizeof(struct acpi_resource);
4be44fcd
LB
329 resource->res.data.extended_irq.producer_consumer =
330 ACPI_CONSUMER;
50eca3eb
BM
331 resource->res.data.extended_irq.triggering =
332 link->irq.triggering;
333 resource->res.data.extended_irq.polarity =
334 link->irq.polarity;
335 if (link->irq.triggering == ACPI_EDGE_SENSITIVE)
336 resource->res.data.irq.sharable =
4be44fcd 337 ACPI_EXCLUSIVE;
1da177e4 338 else
50eca3eb
BM
339 resource->res.data.irq.sharable = ACPI_SHARED;
340 resource->res.data.extended_irq.interrupt_count = 1;
1da177e4
LT
341 resource->res.data.extended_irq.interrupts[0] = irq;
342 /* ignore resource_source, it's optional */
343 break;
344 default:
6468463a 345 printk(KERN_ERR PREFIX "Invalid Resource_type %d\n", link->irq.resource_type);
1da177e4
LT
346 result = -EINVAL;
347 goto end;
348
349 }
50eca3eb 350 resource->end.type = ACPI_RESOURCE_TYPE_END_TAG;
f084dbb9 351 resource->end.length = sizeof(struct acpi_resource);
1da177e4
LT
352
353 /* Attempt to set the resource */
67a71365 354 status = acpi_set_current_resources(link->device->handle, &buffer);
1da177e4
LT
355
356 /* check for total failure */
357 if (ACPI_FAILURE(status)) {
a6fc6720 358 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _SRS"));
1da177e4
LT
359 result = -ENODEV;
360 goto end;
361 }
362
363 /* Query _STA, set device->status */
364 result = acpi_bus_get_status(link->device);
365 if (result) {
6468463a 366 printk(KERN_ERR PREFIX "Unable to read status\n");
1da177e4
LT
367 goto end;
368 }
369 if (!link->device->status.enabled) {
cece9296
LB
370 printk(KERN_WARNING PREFIX
371 "%s [%s] disabled and referenced, BIOS bug\n",
a6fc6720 372 acpi_device_name(link->device),
cece9296 373 acpi_device_bid(link->device));
1da177e4
LT
374 }
375
376 /* Query _CRS, set link->irq.active */
377 result = acpi_pci_link_get_current(link);
378 if (result) {
379 goto end;
380 }
381
382 /*
383 * Is current setting not what we set?
384 * set link->irq.active
385 */
386 if (link->irq.active != irq) {
387 /*
388 * policy: when _CRS doesn't return what we just _SRS
389 * assume _SRS worked and override _CRS value.
390 */
cece9296
LB
391 printk(KERN_WARNING PREFIX
392 "%s [%s] BIOS reported IRQ %d, using IRQ %d\n",
a6fc6720 393 acpi_device_name(link->device),
cece9296 394 acpi_device_bid(link->device), link->irq.active, irq);
1da177e4
LT
395 link->irq.active = irq;
396 }
397
398 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Set IRQ %d\n", link->irq.active));
4be44fcd
LB
399
400 end:
1da177e4 401 kfree(resource);
d550d98d 402 return result;
1da177e4
LT
403}
404
1da177e4
LT
405/* --------------------------------------------------------------------------
406 PCI Link IRQ Management
407 -------------------------------------------------------------------------- */
408
409/*
410 * "acpi_irq_balance" (default in APIC mode) enables ACPI to use PIC Interrupt
411 * Link Devices to move the PIRQs around to minimize sharing.
412 *
413 * "acpi_irq_nobalance" (default in PIC mode) tells ACPI not to move any PIC IRQs
414 * that the BIOS has already set to active. This is necessary because
415 * ACPI has no automatic means of knowing what ISA IRQs are used. Note that
416 * if the BIOS doesn't set a Link Device active, ACPI needs to program it
417 * even if acpi_irq_nobalance is set.
418 *
419 * A tables of penalties avoids directing PCI interrupts to well known
420 * ISA IRQs. Boot params are available to over-ride the default table:
421 *
422 * List interrupts that are free for PCI use.
423 * acpi_irq_pci=n[,m]
424 *
425 * List interrupts that should not be used for PCI:
426 * acpi_irq_isa=n[,m]
427 *
428 * Note that PCI IRQ routers have a list of possible IRQs,
429 * which may not include the IRQs this table says are available.
430 *
431 * Since this heuristic can't tell the difference between a link
432 * that no device will attach to, vs. a link which may be shared
433 * by multiple active devices -- it is not optimal.
434 *
435 * If interrupt performance is that important, get an IO-APIC system
436 * with a pin dedicated to each device. Or for that matter, an MSI
437 * enabled system.
438 */
439
440#define ACPI_MAX_IRQS 256
441#define ACPI_MAX_ISA_IRQ 16
442
443#define PIRQ_PENALTY_PCI_AVAILABLE (0)
444#define PIRQ_PENALTY_PCI_POSSIBLE (16*16)
445#define PIRQ_PENALTY_PCI_USING (16*16*16)
446#define PIRQ_PENALTY_ISA_TYPICAL (16*16*16*16)
447#define PIRQ_PENALTY_ISA_USED (16*16*16*16*16)
448#define PIRQ_PENALTY_ISA_ALWAYS (16*16*16*16*16*16)
449
450static int acpi_irq_penalty[ACPI_MAX_IRQS] = {
451 PIRQ_PENALTY_ISA_ALWAYS, /* IRQ0 timer */
452 PIRQ_PENALTY_ISA_ALWAYS, /* IRQ1 keyboard */
453 PIRQ_PENALTY_ISA_ALWAYS, /* IRQ2 cascade */
4be44fcd
LB
454 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ3 serial */
455 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ4 serial */
1da177e4
LT
456 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ5 sometimes SoundBlaster */
457 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ6 */
458 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ7 parallel, spurious */
459 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ8 rtc, sometimes */
460 PIRQ_PENALTY_PCI_AVAILABLE, /* IRQ9 PCI, often acpi */
461 PIRQ_PENALTY_PCI_AVAILABLE, /* IRQ10 PCI */
462 PIRQ_PENALTY_PCI_AVAILABLE, /* IRQ11 PCI */
1c9ca3a7
BH
463 PIRQ_PENALTY_ISA_USED, /* IRQ12 mouse */
464 PIRQ_PENALTY_ISA_USED, /* IRQ13 fpe, sometimes */
465 PIRQ_PENALTY_ISA_USED, /* IRQ14 ide0 */
466 PIRQ_PENALTY_ISA_USED, /* IRQ15 ide1 */
4be44fcd 467 /* >IRQ15 */
1da177e4
LT
468};
469
4be44fcd 470int __init acpi_irq_penalty_init(void)
1da177e4 471{
c9d62443
BH
472 struct acpi_pci_link *link;
473 int i;
1da177e4 474
1da177e4
LT
475 /*
476 * Update penalties to facilitate IRQ balancing.
477 */
5f0dccaa 478 list_for_each_entry(link, &acpi_link_list, list) {
1da177e4
LT
479
480 /*
481 * reflect the possible and active irqs in the penalty table --
482 * useful for breaking ties.
483 */
484 if (link->irq.possible_count) {
4be44fcd
LB
485 int penalty =
486 PIRQ_PENALTY_PCI_POSSIBLE /
487 link->irq.possible_count;
1da177e4
LT
488
489 for (i = 0; i < link->irq.possible_count; i++) {
490 if (link->irq.possible[i] < ACPI_MAX_ISA_IRQ)
4be44fcd
LB
491 acpi_irq_penalty[link->irq.
492 possible[i]] +=
493 penalty;
1da177e4
LT
494 }
495
496 } else if (link->irq.active) {
4be44fcd
LB
497 acpi_irq_penalty[link->irq.active] +=
498 PIRQ_PENALTY_PCI_POSSIBLE;
1da177e4
LT
499 }
500 }
501 /* Add a penalty for the SCI */
cee324b1 502 acpi_irq_penalty[acpi_gbl_FADT.sci_interrupt] += PIRQ_PENALTY_PCI_USING;
d550d98d 503 return 0;
1da177e4
LT
504}
505
32836259 506static int acpi_irq_balance = -1; /* 0: static, 1: balance */
1da177e4 507
4be44fcd 508static int acpi_pci_link_allocate(struct acpi_pci_link *link)
1da177e4 509{
4be44fcd
LB
510 int irq;
511 int i;
1da177e4 512
87bec66b
DSL
513 if (link->irq.initialized) {
514 if (link->refcnt == 0)
515 /* This means the link is disabled but initialized */
516 acpi_pci_link_set(link, link->irq.active);
d550d98d 517 return 0;
87bec66b 518 }
1da177e4
LT
519
520 /*
521 * search for active IRQ in list of possible IRQs.
522 */
523 for (i = 0; i < link->irq.possible_count; ++i) {
524 if (link->irq.active == link->irq.possible[i])
525 break;
526 }
527 /*
528 * forget active IRQ that is not in possible list
529 */
530 if (i == link->irq.possible_count) {
531 if (acpi_strict)
cece9296
LB
532 printk(KERN_WARNING PREFIX "_CRS %d not found"
533 " in _PRS\n", link->irq.active);
1da177e4
LT
534 link->irq.active = 0;
535 }
536
537 /*
538 * if active found, use it; else pick entry from end of possible list.
539 */
1c9ca3a7 540 if (link->irq.active)
1da177e4 541 irq = link->irq.active;
1c9ca3a7 542 else
1da177e4 543 irq = link->irq.possible[link->irq.possible_count - 1];
1da177e4
LT
544
545 if (acpi_irq_balance || !link->irq.active) {
546 /*
547 * Select the best IRQ. This is done in reverse to promote
548 * the use of IRQs 9, 10, 11, and >15.
549 */
550 for (i = (link->irq.possible_count - 1); i >= 0; i--) {
4be44fcd
LB
551 if (acpi_irq_penalty[irq] >
552 acpi_irq_penalty[link->irq.possible[i]])
1da177e4
LT
553 irq = link->irq.possible[i];
554 }
555 }
5ebc7603
JL
556 if (acpi_irq_penalty[irq] >= PIRQ_PENALTY_ISA_ALWAYS) {
557 printk(KERN_ERR PREFIX "No IRQ available for %s [%s]. "
558 "Try pci=noacpi or acpi=off\n",
559 acpi_device_name(link->device),
560 acpi_device_bid(link->device));
561 return -ENODEV;
562 }
1da177e4
LT
563
564 /* Attempt to enable the link device at this IRQ. */
565 if (acpi_pci_link_set(link, irq)) {
6468463a
LB
566 printk(KERN_ERR PREFIX "Unable to set IRQ for %s [%s]. "
567 "Try pci=noacpi or acpi=off\n",
a6fc6720 568 acpi_device_name(link->device),
6468463a 569 acpi_device_bid(link->device));
d550d98d 570 return -ENODEV;
1da177e4
LT
571 } else {
572 acpi_irq_penalty[link->irq.active] += PIRQ_PENALTY_PCI_USING;
4d939155 573 printk(KERN_WARNING PREFIX "%s [%s] enabled at IRQ %d\n",
4be44fcd
LB
574 acpi_device_name(link->device),
575 acpi_device_bid(link->device), link->irq.active);
1da177e4
LT
576 }
577
578 link->irq.initialized = 1;
d550d98d 579 return 0;
1da177e4
LT
580}
581
582/*
87bec66b 583 * acpi_pci_link_allocate_irq
1da177e4
LT
584 * success: return IRQ >= 0
585 * failure: return -1
586 */
1c9ca3a7
BH
587int acpi_pci_link_allocate_irq(acpi_handle handle, int index, int *triggering,
588 int *polarity, char **name)
1da177e4 589{
c9d62443
BH
590 int result;
591 struct acpi_device *device;
592 struct acpi_pci_link *link;
1da177e4 593
1da177e4
LT
594 result = acpi_bus_get_device(handle, &device);
595 if (result) {
6468463a 596 printk(KERN_ERR PREFIX "Invalid link device\n");
d550d98d 597 return -1;
1da177e4
LT
598 }
599
50dd0969 600 link = acpi_driver_data(device);
1da177e4 601 if (!link) {
6468463a 602 printk(KERN_ERR PREFIX "Invalid link context\n");
d550d98d 603 return -1;
1da177e4
LT
604 }
605
606 /* TBD: Support multiple index (IRQ) entries per Link Device */
607 if (index) {
6468463a 608 printk(KERN_ERR PREFIX "Invalid index %d\n", index);
d550d98d 609 return -1;
1da177e4
LT
610 }
611
36e43095 612 mutex_lock(&acpi_link_lock);
87bec66b 613 if (acpi_pci_link_allocate(link)) {
36e43095 614 mutex_unlock(&acpi_link_lock);
d550d98d 615 return -1;
87bec66b 616 }
4be44fcd 617
1da177e4 618 if (!link->irq.active) {
36e43095 619 mutex_unlock(&acpi_link_lock);
6468463a 620 printk(KERN_ERR PREFIX "Link active IRQ is 0!\n");
d550d98d 621 return -1;
1da177e4 622 }
4be44fcd 623 link->refcnt++;
36e43095 624 mutex_unlock(&acpi_link_lock);
1da177e4 625
50eca3eb
BM
626 if (triggering)
627 *triggering = link->irq.triggering;
628 if (polarity)
629 *polarity = link->irq.polarity;
4be44fcd
LB
630 if (name)
631 *name = acpi_device_bid(link->device);
87bec66b 632 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
4be44fcd
LB
633 "Link %s is referenced\n",
634 acpi_device_bid(link->device)));
d550d98d 635 return (link->irq.active);
1da177e4
LT
636}
637
87bec66b
DSL
638/*
639 * We don't change link's irq information here. After it is reenabled, we
640 * continue use the info
641 */
4be44fcd 642int acpi_pci_link_free_irq(acpi_handle handle)
87bec66b 643{
c9d62443
BH
644 struct acpi_device *device;
645 struct acpi_pci_link *link;
4be44fcd 646 acpi_status result;
87bec66b 647
87bec66b
DSL
648 result = acpi_bus_get_device(handle, &device);
649 if (result) {
6468463a 650 printk(KERN_ERR PREFIX "Invalid link device\n");
d550d98d 651 return -1;
87bec66b 652 }
1da177e4 653
50dd0969 654 link = acpi_driver_data(device);
87bec66b 655 if (!link) {
6468463a 656 printk(KERN_ERR PREFIX "Invalid link context\n");
d550d98d 657 return -1;
87bec66b
DSL
658 }
659
36e43095 660 mutex_lock(&acpi_link_lock);
87bec66b 661 if (!link->irq.initialized) {
36e43095 662 mutex_unlock(&acpi_link_lock);
6468463a 663 printk(KERN_ERR PREFIX "Link isn't initialized\n");
d550d98d 664 return -1;
87bec66b 665 }
ecc21ebe
DSL
666#ifdef FUTURE_USE
667 /*
668 * The Link reference count allows us to _DISable an unused link
669 * and suspend time, and set it again on resume.
670 * However, 2.6.12 still has irq_router.resume
671 * which blindly restores the link state.
672 * So we disable the reference count method
673 * to prevent duplicate acpi_pci_link_set()
674 * which would harm some systems
675 */
4be44fcd 676 link->refcnt--;
ecc21ebe 677#endif
87bec66b 678 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
4be44fcd
LB
679 "Link %s is dereferenced\n",
680 acpi_device_bid(link->device)));
87bec66b 681
1c9ca3a7 682 if (link->refcnt == 0)
383d7a11 683 acpi_evaluate_object(link->device->handle, "_DIS", NULL, NULL);
1c9ca3a7 684
36e43095 685 mutex_unlock(&acpi_link_lock);
d550d98d 686 return (link->irq.active);
87bec66b 687}
4be44fcd 688
1da177e4
LT
689/* --------------------------------------------------------------------------
690 Driver Interface
691 -------------------------------------------------------------------------- */
692
4daeaf68
RW
693static int acpi_pci_link_add(struct acpi_device *device,
694 const struct acpi_device_id *not_used)
1da177e4 695{
c9d62443
BH
696 int result;
697 struct acpi_pci_link *link;
698 int i;
4be44fcd 699 int found = 0;
1da177e4 700
36bcbec7 701 link = kzalloc(sizeof(struct acpi_pci_link), GFP_KERNEL);
1da177e4 702 if (!link)
d550d98d 703 return -ENOMEM;
1da177e4
LT
704
705 link->device = device;
1da177e4
LT
706 strcpy(acpi_device_name(device), ACPI_PCI_LINK_DEVICE_NAME);
707 strcpy(acpi_device_class(device), ACPI_PCI_LINK_CLASS);
db89b4f0 708 device->driver_data = link;
1da177e4 709
36e43095 710 mutex_lock(&acpi_link_lock);
1da177e4
LT
711 result = acpi_pci_link_get_possible(link);
712 if (result)
713 goto end;
714
715 /* query and set link->irq.active */
716 acpi_pci_link_get_current(link);
717
0dc070bb 718 printk(KERN_INFO PREFIX "%s [%s] (IRQs", acpi_device_name(device),
4be44fcd 719 acpi_device_bid(device));
1da177e4
LT
720 for (i = 0; i < link->irq.possible_count; i++) {
721 if (link->irq.active == link->irq.possible[i]) {
be96447e 722 printk(KERN_CONT " *%d", link->irq.possible[i]);
1da177e4 723 found = 1;
4be44fcd 724 } else
be96447e 725 printk(KERN_CONT " %d", link->irq.possible[i]);
1da177e4
LT
726 }
727
be96447e 728 printk(KERN_CONT ")");
1da177e4
LT
729
730 if (!found)
be96447e 731 printk(KERN_CONT " *%d", link->irq.active);
1da177e4 732
4be44fcd 733 if (!link->device->status.enabled)
be96447e 734 printk(KERN_CONT ", disabled.");
1da177e4 735
be96447e 736 printk(KERN_CONT "\n");
1da177e4 737
5f0dccaa 738 list_add_tail(&link->list, &acpi_link_list);
1da177e4 739
4be44fcd 740 end:
1da177e4 741 /* disable all links -- to be activated on use */
383d7a11 742 acpi_evaluate_object(device->handle, "_DIS", NULL, NULL);
36e43095 743 mutex_unlock(&acpi_link_lock);
1da177e4
LT
744
745 if (result)
746 kfree(link);
747
4daeaf68 748 return result < 0 ? result : 1;
1da177e4
LT
749}
750
4be44fcd 751static int acpi_pci_link_resume(struct acpi_pci_link *link)
697a2d63 752{
697a2d63 753 if (link->refcnt && link->irq.active && link->irq.initialized)
d550d98d 754 return (acpi_pci_link_set(link, link->irq.active));
1c9ca3a7
BH
755
756 return 0;
697a2d63
LT
757}
758
c3146df2 759static void irqrouter_resume(void)
1da177e4 760{
c9d62443 761 struct acpi_pci_link *link;
1da177e4 762
5f0dccaa 763 list_for_each_entry(link, &acpi_link_list, list) {
697a2d63 764 acpi_pci_link_resume(link);
1da177e4 765 }
1da177e4
LT
766}
767
4daeaf68 768static void acpi_pci_link_remove(struct acpi_device *device)
1da177e4 769{
c9d62443 770 struct acpi_pci_link *link;
1da177e4 771
50dd0969 772 link = acpi_driver_data(device);
1da177e4 773
36e43095 774 mutex_lock(&acpi_link_lock);
5f0dccaa 775 list_del(&link->list);
36e43095 776 mutex_unlock(&acpi_link_lock);
1da177e4
LT
777
778 kfree(link);
1da177e4
LT
779}
780
781/*
782 * modify acpi_irq_penalty[] from cmdline
783 */
784static int __init acpi_irq_penalty_update(char *str, int used)
785{
786 int i;
787
788 for (i = 0; i < 16; i++) {
789 int retval;
790 int irq;
791
4be44fcd 792 retval = get_option(&str, &irq);
1da177e4
LT
793
794 if (!retval)
795 break; /* no number found */
796
797 if (irq < 0)
798 continue;
4be44fcd 799
fa46d352 800 if (irq >= ARRAY_SIZE(acpi_irq_penalty))
1da177e4
LT
801 continue;
802
803 if (used)
804 acpi_irq_penalty[irq] += PIRQ_PENALTY_ISA_USED;
805 else
806 acpi_irq_penalty[irq] = PIRQ_PENALTY_PCI_AVAILABLE;
807
808 if (retval != 2) /* no next number */
809 break;
810 }
811 return 1;
812}
813
814/*
815 * We'd like PNP to call this routine for the
816 * single ISA_USED value for each legacy device.
817 * But instead it calls us with each POSSIBLE setting.
818 * There is no ISA_POSSIBLE weight, so we simply use
819 * the (small) PCI_USING penalty.
820 */
c9c3e457 821void acpi_penalize_isa_irq(int irq, int active)
1da177e4 822{
fa46d352
BH
823 if (irq >= 0 && irq < ARRAY_SIZE(acpi_irq_penalty)) {
824 if (active)
825 acpi_irq_penalty[irq] += PIRQ_PENALTY_ISA_USED;
826 else
827 acpi_irq_penalty[irq] += PIRQ_PENALTY_PCI_USING;
828 }
1da177e4
LT
829}
830
5ebc7603
JL
831bool acpi_isa_irq_available(int irq)
832{
833 return irq >= 0 && (irq >= ARRAY_SIZE(acpi_irq_penalty) ||
834 acpi_irq_penalty[irq] < PIRQ_PENALTY_ISA_ALWAYS);
835}
836
5d0ddfeb
JL
837/*
838 * Penalize IRQ used by ACPI SCI. If ACPI SCI pin attributes conflict with
839 * PCI IRQ attributes, mark ACPI SCI as ISA_ALWAYS so it won't be use for
840 * PCI IRQs.
841 */
842void acpi_penalize_sci_irq(int irq, int trigger, int polarity)
843{
844 if (irq >= 0 && irq < ARRAY_SIZE(acpi_irq_penalty)) {
845 if (trigger != ACPI_MADT_TRIGGER_LEVEL ||
846 polarity != ACPI_MADT_POLARITY_ACTIVE_LOW)
847 acpi_irq_penalty[irq] += PIRQ_PENALTY_ISA_ALWAYS;
848 else
849 acpi_irq_penalty[irq] += PIRQ_PENALTY_PCI_USING;
850 }
851}
852
1da177e4
LT
853/*
854 * Over-ride default table to reserve additional IRQs for use by ISA
855 * e.g. acpi_irq_isa=5
856 * Useful for telling ACPI how not to interfere with your ISA sound card.
857 */
858static int __init acpi_irq_isa(char *str)
859{
860 return acpi_irq_penalty_update(str, 1);
861}
4be44fcd 862
1da177e4
LT
863__setup("acpi_irq_isa=", acpi_irq_isa);
864
865/*
866 * Over-ride default table to free additional IRQs for use by PCI
867 * e.g. acpi_irq_pci=7,15
868 * Used for acpi_irq_balance to free up IRQs to reduce PCI IRQ sharing.
869 */
870static int __init acpi_irq_pci(char *str)
871{
872 return acpi_irq_penalty_update(str, 0);
873}
4be44fcd 874
1da177e4
LT
875__setup("acpi_irq_pci=", acpi_irq_pci);
876
877static int __init acpi_irq_nobalance_set(char *str)
878{
879 acpi_irq_balance = 0;
880 return 1;
881}
4be44fcd 882
1da177e4
LT
883__setup("acpi_irq_nobalance", acpi_irq_nobalance_set);
884
8a383ef0 885static int __init acpi_irq_balance_set(char *str)
1da177e4
LT
886{
887 acpi_irq_balance = 1;
888 return 1;
889}
1da177e4 890
4be44fcd 891__setup("acpi_irq_balance", acpi_irq_balance_set);
1da177e4 892
c3146df2 893static struct syscore_ops irqrouter_syscore_ops = {
4be44fcd 894 .resume = irqrouter_resume,
1da177e4
LT
895};
896
4daeaf68 897void __init acpi_pci_link_init(void)
1da177e4 898{
1da177e4 899 if (acpi_noirq)
4daeaf68 900 return;
1da177e4 901
32836259
BH
902 if (acpi_irq_balance == -1) {
903 /* no command line switch: enable balancing in IOAPIC mode */
904 if (acpi_irq_model == ACPI_IRQ_MODEL_IOAPIC)
905 acpi_irq_balance = 1;
906 else
907 acpi_irq_balance = 0;
908 }
4daeaf68
RW
909 register_syscore_ops(&irqrouter_syscore_ops);
910 acpi_scan_add_handler(&pci_link_handler);
1da177e4 911}