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