blob: 228bdb626502a4d1e45872d6269da3b2aa009adb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
32#include <linux/sysdev.h>
33#include <linux/kernel.h>
34#include <linux/module.h>
35#include <linux/init.h>
36#include <linux/types.h>
37#include <linux/proc_fs.h>
38#include <linux/spinlock.h>
39#include <linux/pm.h>
40#include <linux/pci.h>
Ingo Molnar36e43092006-04-27 05:25:00 -040041#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include <acpi/acpi_bus.h>
44#include <acpi/acpi_drivers.h>
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#define _COMPONENT ACPI_PCI_COMPONENT
Len Brown4be44fc2005-08-05 00:44:28 -040047ACPI_MODULE_NAME("pci_link")
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define ACPI_PCI_LINK_CLASS "pci_irq_routing"
49#define ACPI_PCI_LINK_HID "PNP0C0F"
50#define ACPI_PCI_LINK_DRIVER_NAME "ACPI PCI Interrupt Link Driver"
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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define ACPI_PCI_LINK_MAX_POSSIBLE 16
Len Brown4be44fc2005-08-05 00:44:28 -040055static int acpi_pci_link_add(struct acpi_device *device);
56static int acpi_pci_link_remove(struct acpi_device *device, int type);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58static struct acpi_driver acpi_pci_link_driver = {
Len Brown4be44fc2005-08-05 00:44:28 -040059 .name = ACPI_PCI_LINK_DRIVER_NAME,
60 .class = ACPI_PCI_LINK_CLASS,
61 .ids = ACPI_PCI_LINK_HID,
62 .ops = {
63 .add = acpi_pci_link_add,
64 .remove = acpi_pci_link_remove,
65 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070066};
67
David Shaohua Li87bec662005-07-27 23:02:00 -040068/*
69 * If a link is initialized, we never change its active and initialized
70 * later even the link is disable. Instead, we just repick the active irq
71 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070072struct acpi_pci_link_irq {
Len Brown4be44fc2005-08-05 00:44:28 -040073 u8 active; /* Current IRQ */
Bob Moore50eca3e2005-09-30 19:03:00 -040074 u8 triggering; /* All IRQs */
75 u8 polarity; /* All IRQs */
Len Brown4be44fc2005-08-05 00:44:28 -040076 u8 resource_type;
77 u8 possible_count;
78 u8 possible[ACPI_PCI_LINK_MAX_POSSIBLE];
79 u8 initialized:1;
80 u8 reserved:7;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081};
82
83struct acpi_pci_link {
Len Brown4be44fc2005-08-05 00:44:28 -040084 struct list_head node;
85 struct acpi_device *device;
86 acpi_handle handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 struct acpi_pci_link_irq irq;
Len Brown4be44fc2005-08-05 00:44:28 -040088 int refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089};
90
91static struct {
Len Brown4be44fc2005-08-05 00:44:28 -040092 int count;
93 struct list_head entries;
94} acpi_link;
Ingo Molnar36e43092006-04-27 05:25:00 -040095DEFINE_MUTEX(acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Linus Torvalds1da177e2005-04-16 15:20:36 -070097/* --------------------------------------------------------------------------
98 PCI Link Device Management
99 -------------------------------------------------------------------------- */
100
101/*
102 * set context (link) possible list from resource list
103 */
104static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400105acpi_pci_link_check_possible(struct acpi_resource *resource, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
Len Brown4be44fc2005-08-05 00:44:28 -0400107 struct acpi_pci_link *link = (struct acpi_pci_link *)context;
108 u32 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110 ACPI_FUNCTION_TRACE("acpi_pci_link_check_possible");
111
Len Browneca008c2005-09-22 00:25:18 -0400112 switch (resource->type) {
Bob Moore50eca3e2005-09-30 19:03:00 -0400113 case ACPI_RESOURCE_TYPE_START_DEPENDENT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 return_ACPI_STATUS(AE_OK);
Bob Moore50eca3e2005-09-30 19:03:00 -0400115 case ACPI_RESOURCE_TYPE_IRQ:
Len Brown4be44fc2005-08-05 00:44:28 -0400116 {
117 struct acpi_resource_irq *p = &resource->data.irq;
Bob Moore50eca3e2005-09-30 19:03:00 -0400118 if (!p || !p->interrupt_count) {
Len Brown4be44fc2005-08-05 00:44:28 -0400119 ACPI_DEBUG_PRINT((ACPI_DB_WARN,
120 "Blank IRQ resource\n"));
121 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 }
Len Brown4be44fc2005-08-05 00:44:28 -0400123 for (i = 0;
Bob Moore50eca3e2005-09-30 19:03:00 -0400124 (i < p->interrupt_count
Len Brown4be44fc2005-08-05 00:44:28 -0400125 && i < ACPI_PCI_LINK_MAX_POSSIBLE); i++) {
126 if (!p->interrupts[i]) {
127 ACPI_DEBUG_PRINT((ACPI_DB_WARN,
128 "Invalid IRQ %d\n",
129 p->interrupts[i]));
130 continue;
131 }
132 link->irq.possible[i] = p->interrupts[i];
133 link->irq.possible_count++;
134 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400135 link->irq.triggering = p->triggering;
136 link->irq.polarity = p->polarity;
137 link->irq.resource_type = ACPI_RESOURCE_TYPE_IRQ;
Len Brown4be44fc2005-08-05 00:44:28 -0400138 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400140 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
Len Brown4be44fc2005-08-05 00:44:28 -0400141 {
Bob Moore50eca3e2005-09-30 19:03:00 -0400142 struct acpi_resource_extended_irq *p =
Len Brown4be44fc2005-08-05 00:44:28 -0400143 &resource->data.extended_irq;
Bob Moore50eca3e2005-09-30 19:03:00 -0400144 if (!p || !p->interrupt_count) {
Len Brown4be44fc2005-08-05 00:44:28 -0400145 ACPI_DEBUG_PRINT((ACPI_DB_WARN,
146 "Blank EXT IRQ resource\n"));
147 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 }
Len Brown4be44fc2005-08-05 00:44:28 -0400149 for (i = 0;
Bob Moore50eca3e2005-09-30 19:03:00 -0400150 (i < p->interrupt_count
Len Brown4be44fc2005-08-05 00:44:28 -0400151 && i < ACPI_PCI_LINK_MAX_POSSIBLE); i++) {
152 if (!p->interrupts[i]) {
153 ACPI_DEBUG_PRINT((ACPI_DB_WARN,
154 "Invalid IRQ %d\n",
155 p->interrupts[i]));
156 continue;
157 }
158 link->irq.possible[i] = p->interrupts[i];
159 link->irq.possible_count++;
160 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400161 link->irq.triggering = p->triggering;
162 link->irq.polarity = p->polarity;
163 link->irq.resource_type = ACPI_RESOURCE_TYPE_EXTENDED_IRQ;
Len Brown4be44fc2005-08-05 00:44:28 -0400164 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 default:
Len Brown4be44fc2005-08-05 00:44:28 -0400167 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
168 "Resource is not an IRQ entry\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 return_ACPI_STATUS(AE_OK);
170 }
171
172 return_ACPI_STATUS(AE_CTRL_TERMINATE);
173}
174
Len Brown4be44fc2005-08-05 00:44:28 -0400175static int acpi_pci_link_get_possible(struct acpi_pci_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
Len Brown4be44fc2005-08-05 00:44:28 -0400177 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 ACPI_FUNCTION_TRACE("acpi_pci_link_get_possible");
180
181 if (!link)
182 return_VALUE(-EINVAL);
183
184 status = acpi_walk_resources(link->handle, METHOD_NAME__PRS,
Len Brown4be44fc2005-08-05 00:44:28 -0400185 acpi_pci_link_check_possible, link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 if (ACPI_FAILURE(status)) {
187 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Error evaluating _PRS\n"));
188 return_VALUE(-ENODEV);
189 }
190
Len Brown4be44fc2005-08-05 00:44:28 -0400191 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
192 "Found %d possible IRQs\n",
193 link->irq.possible_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195 return_VALUE(0);
196}
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400199acpi_pci_link_check_current(struct acpi_resource *resource, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
Len Brown4be44fc2005-08-05 00:44:28 -0400201 int *irq = (int *)context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203 ACPI_FUNCTION_TRACE("acpi_pci_link_check_current");
204
Len Browneca008c2005-09-22 00:25:18 -0400205 switch (resource->type) {
Bob Moore50eca3e2005-09-30 19:03:00 -0400206 case ACPI_RESOURCE_TYPE_IRQ:
Len Brown4be44fc2005-08-05 00:44:28 -0400207 {
208 struct acpi_resource_irq *p = &resource->data.irq;
Bob Moore50eca3e2005-09-30 19:03:00 -0400209 if (!p || !p->interrupt_count) {
Len Brown4be44fc2005-08-05 00:44:28 -0400210 /*
211 * IRQ descriptors may have no IRQ# bits set,
212 * particularly those those w/ _STA disabled
213 */
214 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
215 "Blank IRQ resource\n"));
216 return_ACPI_STATUS(AE_OK);
217 }
218 *irq = p->interrupts[0];
219 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400221 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
Len Brown4be44fc2005-08-05 00:44:28 -0400222 {
Bob Moore50eca3e2005-09-30 19:03:00 -0400223 struct acpi_resource_extended_irq *p =
Len Brown4be44fc2005-08-05 00:44:28 -0400224 &resource->data.extended_irq;
Bob Moore50eca3e2005-09-30 19:03:00 -0400225 if (!p || !p->interrupt_count) {
Len Brown4be44fc2005-08-05 00:44:28 -0400226 /*
227 * extended IRQ descriptors must
228 * return at least 1 IRQ
229 */
230 ACPI_DEBUG_PRINT((ACPI_DB_WARN,
231 "Blank EXT IRQ resource\n"));
232 return_ACPI_STATUS(AE_OK);
233 }
234 *irq = p->interrupts[0];
235 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
Len Brownd4ec6c72006-01-26 17:23:38 -0500237 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 default:
Len Brownd4ec6c72006-01-26 17:23:38 -0500239 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Resource %d isn't an IRQ\n", resource->type));
240 case ACPI_RESOURCE_TYPE_END_TAG:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 return_ACPI_STATUS(AE_OK);
242 }
243 return_ACPI_STATUS(AE_CTRL_TERMINATE);
244}
245
246/*
247 * Run _CRS and set link->irq.active
248 *
249 * return value:
250 * 0 - success
251 * !0 - failure
252 */
Len Brown4be44fc2005-08-05 00:44:28 -0400253static int acpi_pci_link_get_current(struct acpi_pci_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
Len Brown4be44fc2005-08-05 00:44:28 -0400255 int result = 0;
256 acpi_status status = AE_OK;
257 int irq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 ACPI_FUNCTION_TRACE("acpi_pci_link_get_current");
260
261 if (!link || !link->handle)
262 return_VALUE(-EINVAL);
263
264 link->irq.active = 0;
265
266 /* in practice, status disabled is meaningless, ignore it */
267 if (acpi_strict) {
268 /* Query _STA, set link->device->status */
269 result = acpi_bus_get_status(link->device);
270 if (result) {
Len Brown4be44fc2005-08-05 00:44:28 -0400271 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
272 "Unable to read status\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 goto end;
274 }
275
276 if (!link->device->status.enabled) {
277 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Link disabled\n"));
278 return_VALUE(0);
279 }
280 }
281
282 /*
283 * Query and parse _CRS to get the current IRQ assignment.
284 */
285
286 status = acpi_walk_resources(link->handle, METHOD_NAME__CRS,
Len Brown4be44fc2005-08-05 00:44:28 -0400287 acpi_pci_link_check_current, &irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 if (ACPI_FAILURE(status)) {
289 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Error evaluating _CRS\n"));
290 result = -ENODEV;
291 goto end;
292 }
293
294 if (acpi_strict && !irq) {
295 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "_CRS returned 0\n"));
296 result = -ENODEV;
297 }
298
299 link->irq.active = irq;
300
301 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Link at IRQ %d \n", link->irq.active));
302
Len Brown4be44fc2005-08-05 00:44:28 -0400303 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 return_VALUE(result);
305}
306
Len Brown4be44fc2005-08-05 00:44:28 -0400307static int acpi_pci_link_set(struct acpi_pci_link *link, int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Len Brown4be44fc2005-08-05 00:44:28 -0400309 int result = 0;
310 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 struct {
Len Brown4be44fc2005-08-05 00:44:28 -0400312 struct acpi_resource res;
313 struct acpi_resource end;
314 } *resource;
315 struct acpi_buffer buffer = { 0, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317 ACPI_FUNCTION_TRACE("acpi_pci_link_set");
318
319 if (!link || !irq)
320 return_VALUE(-EINVAL);
321
Dave Jonesa64882e2005-12-12 00:37:40 -0800322 resource = kmalloc(sizeof(*resource) + 1, GFP_ATOMIC);
Len Brown4be44fc2005-08-05 00:44:28 -0400323 if (!resource)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 return_VALUE(-ENOMEM);
325
Len Brown4be44fc2005-08-05 00:44:28 -0400326 memset(resource, 0, sizeof(*resource) + 1);
327 buffer.length = sizeof(*resource) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 buffer.pointer = resource;
329
Len Brown4be44fc2005-08-05 00:44:28 -0400330 switch (link->irq.resource_type) {
Bob Moore50eca3e2005-09-30 19:03:00 -0400331 case ACPI_RESOURCE_TYPE_IRQ:
332 resource->res.type = ACPI_RESOURCE_TYPE_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 resource->res.length = sizeof(struct acpi_resource);
Bob Moore50eca3e2005-09-30 19:03:00 -0400334 resource->res.data.irq.triggering = link->irq.triggering;
335 resource->res.data.irq.polarity =
336 link->irq.polarity;
337 if (link->irq.triggering == ACPI_EDGE_SENSITIVE)
338 resource->res.data.irq.sharable =
Len Brown4be44fc2005-08-05 00:44:28 -0400339 ACPI_EXCLUSIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 else
Bob Moore50eca3e2005-09-30 19:03:00 -0400341 resource->res.data.irq.sharable = ACPI_SHARED;
342 resource->res.data.irq.interrupt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 resource->res.data.irq.interrupts[0] = irq;
344 break;
Len Brown4be44fc2005-08-05 00:44:28 -0400345
Bob Moore50eca3e2005-09-30 19:03:00 -0400346 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
347 resource->res.type = ACPI_RESOURCE_TYPE_EXTENDED_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 resource->res.length = sizeof(struct acpi_resource);
Len Brown4be44fc2005-08-05 00:44:28 -0400349 resource->res.data.extended_irq.producer_consumer =
350 ACPI_CONSUMER;
Bob Moore50eca3e2005-09-30 19:03:00 -0400351 resource->res.data.extended_irq.triggering =
352 link->irq.triggering;
353 resource->res.data.extended_irq.polarity =
354 link->irq.polarity;
355 if (link->irq.triggering == ACPI_EDGE_SENSITIVE)
356 resource->res.data.irq.sharable =
Len Brown4be44fc2005-08-05 00:44:28 -0400357 ACPI_EXCLUSIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 else
Bob Moore50eca3e2005-09-30 19:03:00 -0400359 resource->res.data.irq.sharable = ACPI_SHARED;
360 resource->res.data.extended_irq.interrupt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 resource->res.data.extended_irq.interrupts[0] = irq;
362 /* ignore resource_source, it's optional */
363 break;
364 default:
365 printk("ACPI BUG: resource_type %d\n", link->irq.resource_type);
366 result = -EINVAL;
367 goto end;
368
369 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400370 resource->end.type = ACPI_RESOURCE_TYPE_END_TAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
372 /* Attempt to set the resource */
373 status = acpi_set_current_resources(link->handle, &buffer);
374
375 /* check for total failure */
376 if (ACPI_FAILURE(status)) {
377 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Error evaluating _SRS\n"));
378 result = -ENODEV;
379 goto end;
380 }
381
382 /* Query _STA, set device->status */
383 result = acpi_bus_get_status(link->device);
384 if (result) {
385 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Unable to read status\n"));
386 goto end;
387 }
388 if (!link->device->status.enabled) {
389 printk(KERN_WARNING PREFIX
Len Brown4be44fc2005-08-05 00:44:28 -0400390 "%s [%s] disabled and referenced, BIOS bug.\n",
391 acpi_device_name(link->device),
392 acpi_device_bid(link->device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 }
394
395 /* Query _CRS, set link->irq.active */
396 result = acpi_pci_link_get_current(link);
397 if (result) {
398 goto end;
399 }
400
401 /*
402 * Is current setting not what we set?
403 * set link->irq.active
404 */
405 if (link->irq.active != irq) {
406 /*
407 * policy: when _CRS doesn't return what we just _SRS
408 * assume _SRS worked and override _CRS value.
409 */
Len Brown4be44fc2005-08-05 00:44:28 -0400410 printk(KERN_WARNING PREFIX
411 "%s [%s] BIOS reported IRQ %d, using IRQ %d\n",
412 acpi_device_name(link->device),
413 acpi_device_bid(link->device), link->irq.active, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 link->irq.active = irq;
415 }
416
417 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Set IRQ %d\n", link->irq.active));
Len Brown4be44fc2005-08-05 00:44:28 -0400418
419 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 kfree(resource);
421 return_VALUE(result);
422}
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424/* --------------------------------------------------------------------------
425 PCI Link IRQ Management
426 -------------------------------------------------------------------------- */
427
428/*
429 * "acpi_irq_balance" (default in APIC mode) enables ACPI to use PIC Interrupt
430 * Link Devices to move the PIRQs around to minimize sharing.
431 *
432 * "acpi_irq_nobalance" (default in PIC mode) tells ACPI not to move any PIC IRQs
433 * that the BIOS has already set to active. This is necessary because
434 * ACPI has no automatic means of knowing what ISA IRQs are used. Note that
435 * if the BIOS doesn't set a Link Device active, ACPI needs to program it
436 * even if acpi_irq_nobalance is set.
437 *
438 * A tables of penalties avoids directing PCI interrupts to well known
439 * ISA IRQs. Boot params are available to over-ride the default table:
440 *
441 * List interrupts that are free for PCI use.
442 * acpi_irq_pci=n[,m]
443 *
444 * List interrupts that should not be used for PCI:
445 * acpi_irq_isa=n[,m]
446 *
447 * Note that PCI IRQ routers have a list of possible IRQs,
448 * which may not include the IRQs this table says are available.
449 *
450 * Since this heuristic can't tell the difference between a link
451 * that no device will attach to, vs. a link which may be shared
452 * by multiple active devices -- it is not optimal.
453 *
454 * If interrupt performance is that important, get an IO-APIC system
455 * with a pin dedicated to each device. Or for that matter, an MSI
456 * enabled system.
457 */
458
459#define ACPI_MAX_IRQS 256
460#define ACPI_MAX_ISA_IRQ 16
461
462#define PIRQ_PENALTY_PCI_AVAILABLE (0)
463#define PIRQ_PENALTY_PCI_POSSIBLE (16*16)
464#define PIRQ_PENALTY_PCI_USING (16*16*16)
465#define PIRQ_PENALTY_ISA_TYPICAL (16*16*16*16)
466#define PIRQ_PENALTY_ISA_USED (16*16*16*16*16)
467#define PIRQ_PENALTY_ISA_ALWAYS (16*16*16*16*16*16)
468
469static int acpi_irq_penalty[ACPI_MAX_IRQS] = {
470 PIRQ_PENALTY_ISA_ALWAYS, /* IRQ0 timer */
471 PIRQ_PENALTY_ISA_ALWAYS, /* IRQ1 keyboard */
472 PIRQ_PENALTY_ISA_ALWAYS, /* IRQ2 cascade */
Len Brown4be44fc2005-08-05 00:44:28 -0400473 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ3 serial */
474 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ4 serial */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ5 sometimes SoundBlaster */
476 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ6 */
477 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ7 parallel, spurious */
478 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ8 rtc, sometimes */
479 PIRQ_PENALTY_PCI_AVAILABLE, /* IRQ9 PCI, often acpi */
480 PIRQ_PENALTY_PCI_AVAILABLE, /* IRQ10 PCI */
481 PIRQ_PENALTY_PCI_AVAILABLE, /* IRQ11 PCI */
482 PIRQ_PENALTY_ISA_USED, /* IRQ12 mouse */
483 PIRQ_PENALTY_ISA_USED, /* IRQ13 fpe, sometimes */
484 PIRQ_PENALTY_ISA_USED, /* IRQ14 ide0 */
485 PIRQ_PENALTY_ISA_USED, /* IRQ15 ide1 */
Len Brown4be44fc2005-08-05 00:44:28 -0400486 /* >IRQ15 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487};
488
Len Brown4be44fc2005-08-05 00:44:28 -0400489int __init acpi_irq_penalty_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
Len Brown4be44fc2005-08-05 00:44:28 -0400491 struct list_head *node = NULL;
492 struct acpi_pci_link *link = NULL;
493 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495 ACPI_FUNCTION_TRACE("acpi_irq_penalty_init");
496
497 /*
498 * Update penalties to facilitate IRQ balancing.
499 */
500 list_for_each(node, &acpi_link.entries) {
501
502 link = list_entry(node, struct acpi_pci_link, node);
503 if (!link) {
Len Brown4be44fc2005-08-05 00:44:28 -0400504 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
505 "Invalid link context\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 continue;
507 }
508
509 /*
510 * reflect the possible and active irqs in the penalty table --
511 * useful for breaking ties.
512 */
513 if (link->irq.possible_count) {
Len Brown4be44fc2005-08-05 00:44:28 -0400514 int penalty =
515 PIRQ_PENALTY_PCI_POSSIBLE /
516 link->irq.possible_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518 for (i = 0; i < link->irq.possible_count; i++) {
519 if (link->irq.possible[i] < ACPI_MAX_ISA_IRQ)
Len Brown4be44fc2005-08-05 00:44:28 -0400520 acpi_irq_penalty[link->irq.
521 possible[i]] +=
522 penalty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 }
524
525 } else if (link->irq.active) {
Len Brown4be44fc2005-08-05 00:44:28 -0400526 acpi_irq_penalty[link->irq.active] +=
527 PIRQ_PENALTY_PCI_POSSIBLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 }
529 }
530 /* Add a penalty for the SCI */
531 acpi_irq_penalty[acpi_fadt.sci_int] += PIRQ_PENALTY_PCI_USING;
532
533 return_VALUE(0);
534}
535
536static int acpi_irq_balance; /* 0: static, 1: balance */
537
Len Brown4be44fc2005-08-05 00:44:28 -0400538static int acpi_pci_link_allocate(struct acpi_pci_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
Len Brown4be44fc2005-08-05 00:44:28 -0400540 int irq;
541 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 ACPI_FUNCTION_TRACE("acpi_pci_link_allocate");
544
David Shaohua Li87bec662005-07-27 23:02:00 -0400545 if (link->irq.initialized) {
546 if (link->refcnt == 0)
547 /* This means the link is disabled but initialized */
548 acpi_pci_link_set(link, link->irq.active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 return_VALUE(0);
David Shaohua Li87bec662005-07-27 23:02:00 -0400550 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
552 /*
553 * search for active IRQ in list of possible IRQs.
554 */
555 for (i = 0; i < link->irq.possible_count; ++i) {
556 if (link->irq.active == link->irq.possible[i])
557 break;
558 }
559 /*
560 * forget active IRQ that is not in possible list
561 */
562 if (i == link->irq.possible_count) {
563 if (acpi_strict)
564 printk(KERN_WARNING PREFIX "_CRS %d not found"
Len Brown4be44fc2005-08-05 00:44:28 -0400565 " in _PRS\n", link->irq.active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 link->irq.active = 0;
567 }
568
569 /*
570 * if active found, use it; else pick entry from end of possible list.
571 */
572 if (link->irq.active) {
573 irq = link->irq.active;
574 } else {
575 irq = link->irq.possible[link->irq.possible_count - 1];
576 }
577
578 if (acpi_irq_balance || !link->irq.active) {
579 /*
580 * Select the best IRQ. This is done in reverse to promote
581 * the use of IRQs 9, 10, 11, and >15.
582 */
583 for (i = (link->irq.possible_count - 1); i >= 0; i--) {
Len Brown4be44fc2005-08-05 00:44:28 -0400584 if (acpi_irq_penalty[irq] >
585 acpi_irq_penalty[link->irq.possible[i]])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 irq = link->irq.possible[i];
587 }
588 }
589
590 /* Attempt to enable the link device at this IRQ. */
591 if (acpi_pci_link_set(link, irq)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400592 printk(PREFIX
593 "Unable to set IRQ for %s [%s] (likely buggy ACPI BIOS).\n"
594 "Try pci=noacpi or acpi=off\n",
595 acpi_device_name(link->device),
596 acpi_device_bid(link->device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 return_VALUE(-ENODEV);
598 } else {
599 acpi_irq_penalty[link->irq.active] += PIRQ_PENALTY_PCI_USING;
Len Brown4be44fc2005-08-05 00:44:28 -0400600 printk(PREFIX "%s [%s] enabled at IRQ %d\n",
601 acpi_device_name(link->device),
602 acpi_device_bid(link->device), link->irq.active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 }
604
605 link->irq.initialized = 1;
606
607 return_VALUE(0);
608}
609
610/*
David Shaohua Li87bec662005-07-27 23:02:00 -0400611 * acpi_pci_link_allocate_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 * success: return IRQ >= 0
613 * failure: return -1
614 */
615
616int
Len Brown4be44fc2005-08-05 00:44:28 -0400617acpi_pci_link_allocate_irq(acpi_handle handle,
618 int index,
Bob Moore50eca3e2005-09-30 19:03:00 -0400619 int *triggering, int *polarity, char **name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
Len Brown4be44fc2005-08-05 00:44:28 -0400621 int result = 0;
622 struct acpi_device *device = NULL;
623 struct acpi_pci_link *link = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
David Shaohua Li87bec662005-07-27 23:02:00 -0400625 ACPI_FUNCTION_TRACE("acpi_pci_link_allocate_irq");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
627 result = acpi_bus_get_device(handle, &device);
628 if (result) {
629 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Invalid link device\n"));
630 return_VALUE(-1);
631 }
632
Len Brown4be44fc2005-08-05 00:44:28 -0400633 link = (struct acpi_pci_link *)acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 if (!link) {
635 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Invalid link context\n"));
636 return_VALUE(-1);
637 }
638
639 /* TBD: Support multiple index (IRQ) entries per Link Device */
640 if (index) {
641 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Invalid index %d\n", index));
642 return_VALUE(-1);
643 }
644
Ingo Molnar36e43092006-04-27 05:25:00 -0400645 mutex_lock(&acpi_link_lock);
David Shaohua Li87bec662005-07-27 23:02:00 -0400646 if (acpi_pci_link_allocate(link)) {
Ingo Molnar36e43092006-04-27 05:25:00 -0400647 mutex_unlock(&acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 return_VALUE(-1);
David Shaohua Li87bec662005-07-27 23:02:00 -0400649 }
Len Brown4be44fc2005-08-05 00:44:28 -0400650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 if (!link->irq.active) {
Ingo Molnar36e43092006-04-27 05:25:00 -0400652 mutex_unlock(&acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Link active IRQ is 0!\n"));
654 return_VALUE(-1);
655 }
Len Brown4be44fc2005-08-05 00:44:28 -0400656 link->refcnt++;
Ingo Molnar36e43092006-04-27 05:25:00 -0400657 mutex_unlock(&acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Bob Moore50eca3e2005-09-30 19:03:00 -0400659 if (triggering)
660 *triggering = link->irq.triggering;
661 if (polarity)
662 *polarity = link->irq.polarity;
Len Brown4be44fc2005-08-05 00:44:28 -0400663 if (name)
664 *name = acpi_device_bid(link->device);
David Shaohua Li87bec662005-07-27 23:02:00 -0400665 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400666 "Link %s is referenced\n",
667 acpi_device_bid(link->device)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 return_VALUE(link->irq.active);
669}
670
David Shaohua Li87bec662005-07-27 23:02:00 -0400671/*
672 * We don't change link's irq information here. After it is reenabled, we
673 * continue use the info
674 */
Len Brown4be44fc2005-08-05 00:44:28 -0400675int acpi_pci_link_free_irq(acpi_handle handle)
David Shaohua Li87bec662005-07-27 23:02:00 -0400676{
Len Brown4be44fc2005-08-05 00:44:28 -0400677 struct acpi_device *device = NULL;
678 struct acpi_pci_link *link = NULL;
679 acpi_status result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
David Shaohua Li87bec662005-07-27 23:02:00 -0400681 ACPI_FUNCTION_TRACE("acpi_pci_link_free_irq");
682
683 result = acpi_bus_get_device(handle, &device);
684 if (result) {
685 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Invalid link device\n"));
686 return_VALUE(-1);
687 }
688
Len Brown4be44fc2005-08-05 00:44:28 -0400689 link = (struct acpi_pci_link *)acpi_driver_data(device);
David Shaohua Li87bec662005-07-27 23:02:00 -0400690 if (!link) {
691 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Invalid link context\n"));
692 return_VALUE(-1);
693 }
694
Ingo Molnar36e43092006-04-27 05:25:00 -0400695 mutex_lock(&acpi_link_lock);
David Shaohua Li87bec662005-07-27 23:02:00 -0400696 if (!link->irq.initialized) {
Ingo Molnar36e43092006-04-27 05:25:00 -0400697 mutex_unlock(&acpi_link_lock);
David Shaohua Li87bec662005-07-27 23:02:00 -0400698 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Link isn't initialized\n"));
699 return_VALUE(-1);
700 }
David Shaohua Liecc21eb2005-08-03 11:00:11 -0400701#ifdef FUTURE_USE
702 /*
703 * The Link reference count allows us to _DISable an unused link
704 * and suspend time, and set it again on resume.
705 * However, 2.6.12 still has irq_router.resume
706 * which blindly restores the link state.
707 * So we disable the reference count method
708 * to prevent duplicate acpi_pci_link_set()
709 * which would harm some systems
710 */
Len Brown4be44fc2005-08-05 00:44:28 -0400711 link->refcnt--;
David Shaohua Liecc21eb2005-08-03 11:00:11 -0400712#endif
David Shaohua Li87bec662005-07-27 23:02:00 -0400713 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400714 "Link %s is dereferenced\n",
715 acpi_device_bid(link->device)));
David Shaohua Li87bec662005-07-27 23:02:00 -0400716
717 if (link->refcnt == 0) {
718 acpi_ut_evaluate_object(link->handle, "_DIS", 0, NULL);
719 }
Ingo Molnar36e43092006-04-27 05:25:00 -0400720 mutex_unlock(&acpi_link_lock);
David Shaohua Li87bec662005-07-27 23:02:00 -0400721 return_VALUE(link->irq.active);
722}
Len Brown4be44fc2005-08-05 00:44:28 -0400723
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724/* --------------------------------------------------------------------------
725 Driver Interface
726 -------------------------------------------------------------------------- */
727
Len Brown4be44fc2005-08-05 00:44:28 -0400728static int acpi_pci_link_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729{
Len Brown4be44fc2005-08-05 00:44:28 -0400730 int result = 0;
731 struct acpi_pci_link *link = NULL;
732 int i = 0;
733 int found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
735 ACPI_FUNCTION_TRACE("acpi_pci_link_add");
736
737 if (!device)
738 return_VALUE(-EINVAL);
739
740 link = kmalloc(sizeof(struct acpi_pci_link), GFP_KERNEL);
741 if (!link)
742 return_VALUE(-ENOMEM);
743 memset(link, 0, sizeof(struct acpi_pci_link));
744
745 link->device = device;
746 link->handle = device->handle;
747 strcpy(acpi_device_name(device), ACPI_PCI_LINK_DEVICE_NAME);
748 strcpy(acpi_device_class(device), ACPI_PCI_LINK_CLASS);
749 acpi_driver_data(device) = link;
750
Ingo Molnar36e43092006-04-27 05:25:00 -0400751 mutex_lock(&acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 result = acpi_pci_link_get_possible(link);
753 if (result)
754 goto end;
755
756 /* query and set link->irq.active */
757 acpi_pci_link_get_current(link);
758
759 printk(PREFIX "%s [%s] (IRQs", acpi_device_name(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400760 acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 for (i = 0; i < link->irq.possible_count; i++) {
762 if (link->irq.active == link->irq.possible[i]) {
763 printk(" *%d", link->irq.possible[i]);
764 found = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400765 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 printk(" %d", link->irq.possible[i]);
767 }
768
769 printk(")");
770
771 if (!found)
772 printk(" *%d", link->irq.active);
773
Len Brown4be44fc2005-08-05 00:44:28 -0400774 if (!link->device->status.enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 printk(", disabled.");
776
777 printk("\n");
778
779 /* TBD: Acquire/release lock */
780 list_add_tail(&link->node, &acpi_link.entries);
781 acpi_link.count++;
782
Len Brown4be44fc2005-08-05 00:44:28 -0400783 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 /* disable all links -- to be activated on use */
785 acpi_ut_evaluate_object(link->handle, "_DIS", 0, NULL);
Ingo Molnar36e43092006-04-27 05:25:00 -0400786 mutex_unlock(&acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
788 if (result)
789 kfree(link);
790
791 return_VALUE(result);
792}
793
Len Brown4be44fc2005-08-05 00:44:28 -0400794static int acpi_pci_link_resume(struct acpi_pci_link *link)
Linus Torvalds697a2d62005-08-01 12:37:54 -0700795{
796 ACPI_FUNCTION_TRACE("acpi_pci_link_resume");
797
798 if (link->refcnt && link->irq.active && link->irq.initialized)
799 return_VALUE(acpi_pci_link_set(link, link->irq.active));
800 else
801 return_VALUE(0);
802}
803
David Shaohua Li11e981f2005-08-03 23:46:33 -0400804/*
805 * FIXME: this is a workaround to avoid nasty warning. It will be removed
806 * after every device calls pci_disable_device in .resume.
807 */
808int acpi_in_resume;
Len Brown4be44fc2005-08-05 00:44:28 -0400809static int irqrouter_resume(struct sys_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
Len Brown4be44fc2005-08-05 00:44:28 -0400811 struct list_head *node = NULL;
812 struct acpi_pci_link *link = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Linus Torvalds697a2d62005-08-01 12:37:54 -0700814 ACPI_FUNCTION_TRACE("irqrouter_resume");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Linus Torvalds56035092006-06-19 18:05:09 -0700816 /* Make sure SCI is enabled again (Apple firmware bug?) */
817 acpi_set_register(ACPI_BITREG_SCI_ENABLE, 1, ACPI_MTX_DO_NOT_LOCK);
818
David Shaohua Li11e981f2005-08-03 23:46:33 -0400819 acpi_in_resume = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 list_for_each(node, &acpi_link.entries) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 link = list_entry(node, struct acpi_pci_link, node);
822 if (!link) {
David Shaohua Li87bec662005-07-27 23:02:00 -0400823 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
Len Brown4be44fc2005-08-05 00:44:28 -0400824 "Invalid link context\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 continue;
826 }
Linus Torvalds697a2d62005-08-01 12:37:54 -0700827 acpi_pci_link_resume(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 }
David Shaohua Li11e981f2005-08-03 23:46:33 -0400829 acpi_in_resume = 0;
Linus Torvalds697a2d62005-08-01 12:37:54 -0700830 return_VALUE(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831}
832
Len Brown4be44fc2005-08-05 00:44:28 -0400833static int acpi_pci_link_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834{
835 struct acpi_pci_link *link = NULL;
836
837 ACPI_FUNCTION_TRACE("acpi_pci_link_remove");
838
839 if (!device || !acpi_driver_data(device))
840 return_VALUE(-EINVAL);
841
Len Brown4be44fc2005-08-05 00:44:28 -0400842 link = (struct acpi_pci_link *)acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Ingo Molnar36e43092006-04-27 05:25:00 -0400844 mutex_lock(&acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 list_del(&link->node);
Ingo Molnar36e43092006-04-27 05:25:00 -0400846 mutex_unlock(&acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 kfree(link);
849
850 return_VALUE(0);
851}
852
853/*
854 * modify acpi_irq_penalty[] from cmdline
855 */
856static int __init acpi_irq_penalty_update(char *str, int used)
857{
858 int i;
859
860 for (i = 0; i < 16; i++) {
861 int retval;
862 int irq;
863
Len Brown4be44fc2005-08-05 00:44:28 -0400864 retval = get_option(&str, &irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 if (!retval)
867 break; /* no number found */
868
869 if (irq < 0)
870 continue;
Len Brown4be44fc2005-08-05 00:44:28 -0400871
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 if (irq >= ACPI_MAX_IRQS)
873 continue;
874
875 if (used)
876 acpi_irq_penalty[irq] += PIRQ_PENALTY_ISA_USED;
877 else
878 acpi_irq_penalty[irq] = PIRQ_PENALTY_PCI_AVAILABLE;
879
880 if (retval != 2) /* no next number */
881 break;
882 }
883 return 1;
884}
885
886/*
887 * We'd like PNP to call this routine for the
888 * single ISA_USED value for each legacy device.
889 * But instead it calls us with each POSSIBLE setting.
890 * There is no ISA_POSSIBLE weight, so we simply use
891 * the (small) PCI_USING penalty.
892 */
David Shaohua Lic9c3e452005-04-01 00:07:31 -0500893void acpi_penalize_isa_irq(int irq, int active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894{
David Shaohua Lic9c3e452005-04-01 00:07:31 -0500895 if (active)
896 acpi_irq_penalty[irq] += PIRQ_PENALTY_ISA_USED;
897 else
898 acpi_irq_penalty[irq] += PIRQ_PENALTY_PCI_USING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899}
900
901/*
902 * Over-ride default table to reserve additional IRQs for use by ISA
903 * e.g. acpi_irq_isa=5
904 * Useful for telling ACPI how not to interfere with your ISA sound card.
905 */
906static int __init acpi_irq_isa(char *str)
907{
908 return acpi_irq_penalty_update(str, 1);
909}
Len Brown4be44fc2005-08-05 00:44:28 -0400910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911__setup("acpi_irq_isa=", acpi_irq_isa);
912
913/*
914 * Over-ride default table to free additional IRQs for use by PCI
915 * e.g. acpi_irq_pci=7,15
916 * Used for acpi_irq_balance to free up IRQs to reduce PCI IRQ sharing.
917 */
918static int __init acpi_irq_pci(char *str)
919{
920 return acpi_irq_penalty_update(str, 0);
921}
Len Brown4be44fc2005-08-05 00:44:28 -0400922
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923__setup("acpi_irq_pci=", acpi_irq_pci);
924
925static int __init acpi_irq_nobalance_set(char *str)
926{
927 acpi_irq_balance = 0;
928 return 1;
929}
Len Brown4be44fc2005-08-05 00:44:28 -0400930
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931__setup("acpi_irq_nobalance", acpi_irq_nobalance_set);
932
933int __init acpi_irq_balance_set(char *str)
934{
935 acpi_irq_balance = 1;
936 return 1;
937}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Len Brown4be44fc2005-08-05 00:44:28 -0400939__setup("acpi_irq_balance", acpi_irq_balance_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
David Shaohua Li87bec662005-07-27 23:02:00 -0400941/* FIXME: we will remove this interface after all drivers call pci_disable_device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942static struct sysdev_class irqrouter_sysdev_class = {
Len Brown4be44fc2005-08-05 00:44:28 -0400943 set_kset_name("irqrouter"),
944 .resume = irqrouter_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945};
946
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947static struct sys_device device_irqrouter = {
Len Brown4be44fc2005-08-05 00:44:28 -0400948 .id = 0,
949 .cls = &irqrouter_sysdev_class,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950};
951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952static int __init irqrouter_init_sysfs(void)
953{
954 int error;
955
956 ACPI_FUNCTION_TRACE("irqrouter_init_sysfs");
957
958 if (acpi_disabled || acpi_noirq)
959 return_VALUE(0);
960
961 error = sysdev_class_register(&irqrouter_sysdev_class);
962 if (!error)
963 error = sysdev_register(&device_irqrouter);
964
965 return_VALUE(error);
Len Brown4be44fc2005-08-05 00:44:28 -0400966}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
968device_initcall(irqrouter_init_sysfs);
969
Len Brown4be44fc2005-08-05 00:44:28 -0400970static int __init acpi_pci_link_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971{
972 ACPI_FUNCTION_TRACE("acpi_pci_link_init");
973
974 if (acpi_noirq)
975 return_VALUE(0);
976
977 acpi_link.count = 0;
978 INIT_LIST_HEAD(&acpi_link.entries);
979
980 if (acpi_bus_register_driver(&acpi_pci_link_driver) < 0)
981 return_VALUE(-ENODEV);
982
983 return_VALUE(0);
984}
985
986subsys_initcall(acpi_pci_link_init);