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