blob: 7f3e7e77e79436e9984c52a4d6c80345f3f3265d [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;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 struct acpi_pci_link_irq irq;
Len Brown4be44fc2005-08-05 00:44:28 -040087 int refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088};
89
90static struct {
Len Brown4be44fc2005-08-05 00:44:28 -040091 int count;
92 struct list_head entries;
93} acpi_link;
Ingo Molnar36e43092006-04-27 05:25:00 -040094DEFINE_MUTEX(acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Linus Torvalds1da177e2005-04-16 15:20:36 -070096/* --------------------------------------------------------------------------
97 PCI Link Device Management
98 -------------------------------------------------------------------------- */
99
100/*
101 * set context (link) possible list from resource list
102 */
103static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400104acpi_pci_link_check_possible(struct acpi_resource *resource, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{
Len Brown4be44fc2005-08-05 00:44:28 -0400106 struct acpi_pci_link *link = (struct acpi_pci_link *)context;
107 u32 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Len Browneca008c2005-09-22 00:25:18 -0400110 switch (resource->type) {
Bob Moore50eca3e2005-09-30 19:03:00 -0400111 case ACPI_RESOURCE_TYPE_START_DEPENDENT:
Patrick Mocheld550d982006-06-27 00:41:40 -0400112 return AE_OK;
Bob Moore50eca3e2005-09-30 19:03:00 -0400113 case ACPI_RESOURCE_TYPE_IRQ:
Len Brown4be44fc2005-08-05 00:44:28 -0400114 {
115 struct acpi_resource_irq *p = &resource->data.irq;
Bob Moore50eca3e2005-09-30 19:03:00 -0400116 if (!p || !p->interrupt_count) {
Len Browncece9292006-06-26 23:04:31 -0400117 printk(KERN_WARNING PREFIX "Blank IRQ resource\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400118 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 }
Len Brown4be44fc2005-08-05 00:44:28 -0400120 for (i = 0;
Bob Moore50eca3e2005-09-30 19:03:00 -0400121 (i < p->interrupt_count
Len Brown4be44fc2005-08-05 00:44:28 -0400122 && i < ACPI_PCI_LINK_MAX_POSSIBLE); i++) {
123 if (!p->interrupts[i]) {
Len Browncece9292006-06-26 23:04:31 -0400124 printk(KERN_WARNING PREFIX "Invalid IRQ %d\n",
125 p->interrupts[i]);
Len Brown4be44fc2005-08-05 00:44:28 -0400126 continue;
127 }
128 link->irq.possible[i] = p->interrupts[i];
129 link->irq.possible_count++;
130 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400131 link->irq.triggering = p->triggering;
132 link->irq.polarity = p->polarity;
133 link->irq.resource_type = ACPI_RESOURCE_TYPE_IRQ;
Len Brown4be44fc2005-08-05 00:44:28 -0400134 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400136 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
Len Brown4be44fc2005-08-05 00:44:28 -0400137 {
Bob Moore50eca3e2005-09-30 19:03:00 -0400138 struct acpi_resource_extended_irq *p =
Len Brown4be44fc2005-08-05 00:44:28 -0400139 &resource->data.extended_irq;
Bob Moore50eca3e2005-09-30 19:03:00 -0400140 if (!p || !p->interrupt_count) {
Len Browncece9292006-06-26 23:04:31 -0400141 printk(KERN_WARNING PREFIX
142 "Blank EXT IRQ resource\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400143 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 }
Len Brown4be44fc2005-08-05 00:44:28 -0400145 for (i = 0;
Bob Moore50eca3e2005-09-30 19:03:00 -0400146 (i < p->interrupt_count
Len Brown4be44fc2005-08-05 00:44:28 -0400147 && i < ACPI_PCI_LINK_MAX_POSSIBLE); i++) {
148 if (!p->interrupts[i]) {
Len Browncece9292006-06-26 23:04:31 -0400149 printk(KERN_WARNING PREFIX "Invalid IRQ %d\n",
150 p->interrupts[i]);
Len Brown4be44fc2005-08-05 00:44:28 -0400151 continue;
152 }
153 link->irq.possible[i] = p->interrupts[i];
154 link->irq.possible_count++;
155 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400156 link->irq.triggering = p->triggering;
157 link->irq.polarity = p->polarity;
158 link->irq.resource_type = ACPI_RESOURCE_TYPE_EXTENDED_IRQ;
Len Brown4be44fc2005-08-05 00:44:28 -0400159 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 default:
Len Brown64684632006-06-26 23:41:38 -0400162 printk(KERN_ERR PREFIX "Resource is not an IRQ entry\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400163 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 }
165
Patrick Mocheld550d982006-06-27 00:41:40 -0400166 return AE_CTRL_TERMINATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
168
Len Brown4be44fc2005-08-05 00:44:28 -0400169static int acpi_pci_link_get_possible(struct acpi_pci_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
Len Brown4be44fc2005-08-05 00:44:28 -0400171 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174 if (!link)
Patrick Mocheld550d982006-06-27 00:41:40 -0400175 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Patrick Mochel67a71362006-05-19 16:54:42 -0400177 status = acpi_walk_resources(link->device->handle, METHOD_NAME__PRS,
Len Brown4be44fc2005-08-05 00:44:28 -0400178 acpi_pci_link_check_possible, link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400180 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PRS"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400181 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 }
183
Len Brown4be44fc2005-08-05 00:44:28 -0400184 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
185 "Found %d possible IRQs\n",
186 link->irq.possible_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Patrick Mocheld550d982006-06-27 00:41:40 -0400188 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189}
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400192acpi_pci_link_check_current(struct acpi_resource *resource, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
Len Brown4be44fc2005-08-05 00:44:28 -0400194 int *irq = (int *)context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Len Browneca008c2005-09-22 00:25:18 -0400197 switch (resource->type) {
Bob Moore50eca3e2005-09-30 19:03:00 -0400198 case ACPI_RESOURCE_TYPE_IRQ:
Len Brown4be44fc2005-08-05 00:44:28 -0400199 {
200 struct acpi_resource_irq *p = &resource->data.irq;
Bob Moore50eca3e2005-09-30 19:03:00 -0400201 if (!p || !p->interrupt_count) {
Len Brown4be44fc2005-08-05 00:44:28 -0400202 /*
203 * IRQ descriptors may have no IRQ# bits set,
204 * particularly those those w/ _STA disabled
205 */
206 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
207 "Blank IRQ resource\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400208 return AE_OK;
Len Brown4be44fc2005-08-05 00:44:28 -0400209 }
210 *irq = p->interrupts[0];
211 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400213 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
Len Brown4be44fc2005-08-05 00:44:28 -0400214 {
Bob Moore50eca3e2005-09-30 19:03:00 -0400215 struct acpi_resource_extended_irq *p =
Len Brown4be44fc2005-08-05 00:44:28 -0400216 &resource->data.extended_irq;
Bob Moore50eca3e2005-09-30 19:03:00 -0400217 if (!p || !p->interrupt_count) {
Len Brown4be44fc2005-08-05 00:44:28 -0400218 /*
219 * extended IRQ descriptors must
220 * return at least 1 IRQ
221 */
Len Browncece9292006-06-26 23:04:31 -0400222 printk(KERN_WARNING PREFIX
223 "Blank EXT IRQ resource\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400224 return AE_OK;
Len Brown4be44fc2005-08-05 00:44:28 -0400225 }
226 *irq = p->interrupts[0];
227 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 }
Len Brownd4ec6c72006-01-26 17:23:38 -0500229 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 default:
Len Brown64684632006-06-26 23:41:38 -0400231 printk(KERN_ERR PREFIX "Resource %d isn't an IRQ\n", resource->type);
Len Brownd4ec6c72006-01-26 17:23:38 -0500232 case ACPI_RESOURCE_TYPE_END_TAG:
Patrick Mocheld550d982006-06-27 00:41:40 -0400233 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400235 return AE_CTRL_TERMINATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236}
237
238/*
239 * Run _CRS and set link->irq.active
240 *
241 * return value:
242 * 0 - success
243 * !0 - failure
244 */
Len Brown4be44fc2005-08-05 00:44:28 -0400245static int acpi_pci_link_get_current(struct acpi_pci_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
Len Brown4be44fc2005-08-05 00:44:28 -0400247 int result = 0;
248 acpi_status status = AE_OK;
249 int irq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Patrick Mochele0e4e112006-05-19 16:54:50 -0400251 if (!link)
Patrick Mocheld550d982006-06-27 00:41:40 -0400252 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
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) {
Len Brown64684632006-06-26 23:41:38 -0400261 printk(KERN_ERR PREFIX "Unable to read status\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 goto end;
263 }
264
265 if (!link->device->status.enabled) {
266 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Link disabled\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400267 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 }
269 }
270
271 /*
272 * Query and parse _CRS to get the current IRQ assignment.
273 */
274
Patrick Mochel67a71362006-05-19 16:54:42 -0400275 status = acpi_walk_resources(link->device->handle, METHOD_NAME__CRS,
Len Brown4be44fc2005-08-05 00:44:28 -0400276 acpi_pci_link_check_current, &irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400278 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _CRS"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 result = -ENODEV;
280 goto end;
281 }
282
283 if (acpi_strict && !irq) {
Len Brown64684632006-06-26 23:41:38 -0400284 printk(KERN_ERR PREFIX "_CRS returned 0\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 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
Len Brown4be44fc2005-08-05 00:44:28 -0400292 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400293 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
295
Len Brown4be44fc2005-08-05 00:44:28 -0400296static int acpi_pci_link_set(struct acpi_pci_link *link, int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
Len Brown4be44fc2005-08-05 00:44:28 -0400298 int result = 0;
299 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 struct {
Len Brown4be44fc2005-08-05 00:44:28 -0400301 struct acpi_resource res;
302 struct acpi_resource end;
303 } *resource;
304 struct acpi_buffer buffer = { 0, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307 if (!link || !irq)
Patrick Mocheld550d982006-06-27 00:41:40 -0400308 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Dave Jonesa64882e2005-12-12 00:37:40 -0800310 resource = kmalloc(sizeof(*resource) + 1, GFP_ATOMIC);
Len Brown4be44fc2005-08-05 00:44:28 -0400311 if (!resource)
Patrick Mocheld550d982006-06-27 00:41:40 -0400312 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Len Brown4be44fc2005-08-05 00:44:28 -0400314 memset(resource, 0, sizeof(*resource) + 1);
315 buffer.length = sizeof(*resource) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 buffer.pointer = resource;
317
Len Brown4be44fc2005-08-05 00:44:28 -0400318 switch (link->irq.resource_type) {
Bob Moore50eca3e2005-09-30 19:03:00 -0400319 case ACPI_RESOURCE_TYPE_IRQ:
320 resource->res.type = ACPI_RESOURCE_TYPE_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 resource->res.length = sizeof(struct acpi_resource);
Bob Moore50eca3e2005-09-30 19:03:00 -0400322 resource->res.data.irq.triggering = link->irq.triggering;
323 resource->res.data.irq.polarity =
324 link->irq.polarity;
325 if (link->irq.triggering == ACPI_EDGE_SENSITIVE)
326 resource->res.data.irq.sharable =
Len Brown4be44fc2005-08-05 00:44:28 -0400327 ACPI_EXCLUSIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 else
Bob Moore50eca3e2005-09-30 19:03:00 -0400329 resource->res.data.irq.sharable = ACPI_SHARED;
330 resource->res.data.irq.interrupt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 resource->res.data.irq.interrupts[0] = irq;
332 break;
Len Brown4be44fc2005-08-05 00:44:28 -0400333
Bob Moore50eca3e2005-09-30 19:03:00 -0400334 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
335 resource->res.type = ACPI_RESOURCE_TYPE_EXTENDED_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 resource->res.length = sizeof(struct acpi_resource);
Len Brown4be44fc2005-08-05 00:44:28 -0400337 resource->res.data.extended_irq.producer_consumer =
338 ACPI_CONSUMER;
Bob Moore50eca3e2005-09-30 19:03:00 -0400339 resource->res.data.extended_irq.triggering =
340 link->irq.triggering;
341 resource->res.data.extended_irq.polarity =
342 link->irq.polarity;
343 if (link->irq.triggering == ACPI_EDGE_SENSITIVE)
344 resource->res.data.irq.sharable =
Len Brown4be44fc2005-08-05 00:44:28 -0400345 ACPI_EXCLUSIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 else
Bob Moore50eca3e2005-09-30 19:03:00 -0400347 resource->res.data.irq.sharable = ACPI_SHARED;
348 resource->res.data.extended_irq.interrupt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 resource->res.data.extended_irq.interrupts[0] = irq;
350 /* ignore resource_source, it's optional */
351 break;
352 default:
Len Brown64684632006-06-26 23:41:38 -0400353 printk(KERN_ERR PREFIX "Invalid Resource_type %d\n", link->irq.resource_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 result = -EINVAL;
355 goto end;
356
357 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400358 resource->end.type = ACPI_RESOURCE_TYPE_END_TAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 /* Attempt to set the resource */
Patrick Mochel67a71362006-05-19 16:54:42 -0400361 status = acpi_set_current_resources(link->device->handle, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
363 /* check for total failure */
364 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400365 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _SRS"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 result = -ENODEV;
367 goto end;
368 }
369
370 /* Query _STA, set device->status */
371 result = acpi_bus_get_status(link->device);
372 if (result) {
Len Brown64684632006-06-26 23:41:38 -0400373 printk(KERN_ERR PREFIX "Unable to read status\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 goto end;
375 }
376 if (!link->device->status.enabled) {
Len Browncece9292006-06-26 23:04:31 -0400377 printk(KERN_WARNING PREFIX
378 "%s [%s] disabled and referenced, BIOS bug\n",
Thomas Renningera6fc6722006-06-26 23:58:43 -0400379 acpi_device_name(link->device),
Len Browncece9292006-06-26 23:04:31 -0400380 acpi_device_bid(link->device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
382
383 /* Query _CRS, set link->irq.active */
384 result = acpi_pci_link_get_current(link);
385 if (result) {
386 goto end;
387 }
388
389 /*
390 * Is current setting not what we set?
391 * set link->irq.active
392 */
393 if (link->irq.active != irq) {
394 /*
395 * policy: when _CRS doesn't return what we just _SRS
396 * assume _SRS worked and override _CRS value.
397 */
Len Browncece9292006-06-26 23:04:31 -0400398 printk(KERN_WARNING PREFIX
399 "%s [%s] BIOS reported IRQ %d, using IRQ %d\n",
Thomas Renningera6fc6722006-06-26 23:58:43 -0400400 acpi_device_name(link->device),
Len Browncece9292006-06-26 23:04:31 -0400401 acpi_device_bid(link->device), link->irq.active, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 link->irq.active = irq;
403 }
404
405 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Set IRQ %d\n", link->irq.active));
Len Brown4be44fc2005-08-05 00:44:28 -0400406
407 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 kfree(resource);
Patrick Mocheld550d982006-06-27 00:41:40 -0400409 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410}
411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412/* --------------------------------------------------------------------------
413 PCI Link IRQ Management
414 -------------------------------------------------------------------------- */
415
416/*
417 * "acpi_irq_balance" (default in APIC mode) enables ACPI to use PIC Interrupt
418 * Link Devices to move the PIRQs around to minimize sharing.
419 *
420 * "acpi_irq_nobalance" (default in PIC mode) tells ACPI not to move any PIC IRQs
421 * that the BIOS has already set to active. This is necessary because
422 * ACPI has no automatic means of knowing what ISA IRQs are used. Note that
423 * if the BIOS doesn't set a Link Device active, ACPI needs to program it
424 * even if acpi_irq_nobalance is set.
425 *
426 * A tables of penalties avoids directing PCI interrupts to well known
427 * ISA IRQs. Boot params are available to over-ride the default table:
428 *
429 * List interrupts that are free for PCI use.
430 * acpi_irq_pci=n[,m]
431 *
432 * List interrupts that should not be used for PCI:
433 * acpi_irq_isa=n[,m]
434 *
435 * Note that PCI IRQ routers have a list of possible IRQs,
436 * which may not include the IRQs this table says are available.
437 *
438 * Since this heuristic can't tell the difference between a link
439 * that no device will attach to, vs. a link which may be shared
440 * by multiple active devices -- it is not optimal.
441 *
442 * If interrupt performance is that important, get an IO-APIC system
443 * with a pin dedicated to each device. Or for that matter, an MSI
444 * enabled system.
445 */
446
447#define ACPI_MAX_IRQS 256
448#define ACPI_MAX_ISA_IRQ 16
449
450#define PIRQ_PENALTY_PCI_AVAILABLE (0)
451#define PIRQ_PENALTY_PCI_POSSIBLE (16*16)
452#define PIRQ_PENALTY_PCI_USING (16*16*16)
453#define PIRQ_PENALTY_ISA_TYPICAL (16*16*16*16)
454#define PIRQ_PENALTY_ISA_USED (16*16*16*16*16)
455#define PIRQ_PENALTY_ISA_ALWAYS (16*16*16*16*16*16)
456
457static int acpi_irq_penalty[ACPI_MAX_IRQS] = {
458 PIRQ_PENALTY_ISA_ALWAYS, /* IRQ0 timer */
459 PIRQ_PENALTY_ISA_ALWAYS, /* IRQ1 keyboard */
460 PIRQ_PENALTY_ISA_ALWAYS, /* IRQ2 cascade */
Len Brown4be44fc2005-08-05 00:44:28 -0400461 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ3 serial */
462 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ4 serial */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ5 sometimes SoundBlaster */
464 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ6 */
465 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ7 parallel, spurious */
466 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ8 rtc, sometimes */
467 PIRQ_PENALTY_PCI_AVAILABLE, /* IRQ9 PCI, often acpi */
468 PIRQ_PENALTY_PCI_AVAILABLE, /* IRQ10 PCI */
469 PIRQ_PENALTY_PCI_AVAILABLE, /* IRQ11 PCI */
470 PIRQ_PENALTY_ISA_USED, /* IRQ12 mouse */
471 PIRQ_PENALTY_ISA_USED, /* IRQ13 fpe, sometimes */
472 PIRQ_PENALTY_ISA_USED, /* IRQ14 ide0 */
473 PIRQ_PENALTY_ISA_USED, /* IRQ15 ide1 */
Len Brown4be44fc2005-08-05 00:44:28 -0400474 /* >IRQ15 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475};
476
Len Brown4be44fc2005-08-05 00:44:28 -0400477int __init acpi_irq_penalty_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
Len Brown4be44fc2005-08-05 00:44:28 -0400479 struct list_head *node = NULL;
480 struct acpi_pci_link *link = NULL;
481 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484 /*
485 * Update penalties to facilitate IRQ balancing.
486 */
487 list_for_each(node, &acpi_link.entries) {
488
489 link = list_entry(node, struct acpi_pci_link, node);
490 if (!link) {
Len Brown64684632006-06-26 23:41:38 -0400491 printk(KERN_ERR PREFIX "Invalid link context\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 continue;
493 }
494
495 /*
496 * reflect the possible and active irqs in the penalty table --
497 * useful for breaking ties.
498 */
499 if (link->irq.possible_count) {
Len Brown4be44fc2005-08-05 00:44:28 -0400500 int penalty =
501 PIRQ_PENALTY_PCI_POSSIBLE /
502 link->irq.possible_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 for (i = 0; i < link->irq.possible_count; i++) {
505 if (link->irq.possible[i] < ACPI_MAX_ISA_IRQ)
Len Brown4be44fc2005-08-05 00:44:28 -0400506 acpi_irq_penalty[link->irq.
507 possible[i]] +=
508 penalty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 }
510
511 } else if (link->irq.active) {
Len Brown4be44fc2005-08-05 00:44:28 -0400512 acpi_irq_penalty[link->irq.active] +=
513 PIRQ_PENALTY_PCI_POSSIBLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 }
515 }
516 /* Add a penalty for the SCI */
517 acpi_irq_penalty[acpi_fadt.sci_int] += PIRQ_PENALTY_PCI_USING;
518
Patrick Mocheld550d982006-06-27 00:41:40 -0400519 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520}
521
522static int acpi_irq_balance; /* 0: static, 1: balance */
523
Len Brown4be44fc2005-08-05 00:44:28 -0400524static int acpi_pci_link_allocate(struct acpi_pci_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
Len Brown4be44fc2005-08-05 00:44:28 -0400526 int irq;
527 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
David Shaohua Li87bec662005-07-27 23:02:00 -0400530 if (link->irq.initialized) {
531 if (link->refcnt == 0)
532 /* This means the link is disabled but initialized */
533 acpi_pci_link_set(link, link->irq.active);
Patrick Mocheld550d982006-06-27 00:41:40 -0400534 return 0;
David Shaohua Li87bec662005-07-27 23:02:00 -0400535 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537 /*
538 * search for active IRQ in list of possible IRQs.
539 */
540 for (i = 0; i < link->irq.possible_count; ++i) {
541 if (link->irq.active == link->irq.possible[i])
542 break;
543 }
544 /*
545 * forget active IRQ that is not in possible list
546 */
547 if (i == link->irq.possible_count) {
548 if (acpi_strict)
Len Browncece9292006-06-26 23:04:31 -0400549 printk(KERN_WARNING PREFIX "_CRS %d not found"
550 " in _PRS\n", link->irq.active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 link->irq.active = 0;
552 }
553
554 /*
555 * if active found, use it; else pick entry from end of possible list.
556 */
557 if (link->irq.active) {
558 irq = link->irq.active;
559 } else {
560 irq = link->irq.possible[link->irq.possible_count - 1];
561 }
562
563 if (acpi_irq_balance || !link->irq.active) {
564 /*
565 * Select the best IRQ. This is done in reverse to promote
566 * the use of IRQs 9, 10, 11, and >15.
567 */
568 for (i = (link->irq.possible_count - 1); i >= 0; i--) {
Len Brown4be44fc2005-08-05 00:44:28 -0400569 if (acpi_irq_penalty[irq] >
570 acpi_irq_penalty[link->irq.possible[i]])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 irq = link->irq.possible[i];
572 }
573 }
574
575 /* Attempt to enable the link device at this IRQ. */
576 if (acpi_pci_link_set(link, irq)) {
Len Brown64684632006-06-26 23:41:38 -0400577 printk(KERN_ERR PREFIX "Unable to set IRQ for %s [%s]. "
578 "Try pci=noacpi or acpi=off\n",
Thomas Renningera6fc6722006-06-26 23:58:43 -0400579 acpi_device_name(link->device),
Len Brown64684632006-06-26 23:41:38 -0400580 acpi_device_bid(link->device));
Patrick Mocheld550d982006-06-27 00:41:40 -0400581 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 } else {
583 acpi_irq_penalty[link->irq.active] += PIRQ_PENALTY_PCI_USING;
Len Brown4be44fc2005-08-05 00:44:28 -0400584 printk(PREFIX "%s [%s] enabled at IRQ %d\n",
585 acpi_device_name(link->device),
586 acpi_device_bid(link->device), link->irq.active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 }
588
589 link->irq.initialized = 1;
590
Patrick Mocheld550d982006-06-27 00:41:40 -0400591 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592}
593
594/*
David Shaohua Li87bec662005-07-27 23:02:00 -0400595 * acpi_pci_link_allocate_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 * success: return IRQ >= 0
597 * failure: return -1
598 */
599
600int
Len Brown4be44fc2005-08-05 00:44:28 -0400601acpi_pci_link_allocate_irq(acpi_handle handle,
602 int index,
Bob Moore50eca3e2005-09-30 19:03:00 -0400603 int *triggering, int *polarity, char **name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604{
Len Brown4be44fc2005-08-05 00:44:28 -0400605 int result = 0;
606 struct acpi_device *device = NULL;
607 struct acpi_pci_link *link = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
610 result = acpi_bus_get_device(handle, &device);
611 if (result) {
Len Brown64684632006-06-26 23:41:38 -0400612 printk(KERN_ERR PREFIX "Invalid link device\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400613 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 }
615
Len Brown4be44fc2005-08-05 00:44:28 -0400616 link = (struct acpi_pci_link *)acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 if (!link) {
Len Brown64684632006-06-26 23:41:38 -0400618 printk(KERN_ERR PREFIX "Invalid link context\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400619 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 }
621
622 /* TBD: Support multiple index (IRQ) entries per Link Device */
623 if (index) {
Len Brown64684632006-06-26 23:41:38 -0400624 printk(KERN_ERR PREFIX "Invalid index %d\n", index);
Patrick Mocheld550d982006-06-27 00:41:40 -0400625 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 }
627
Ingo Molnar36e43092006-04-27 05:25:00 -0400628 mutex_lock(&acpi_link_lock);
David Shaohua Li87bec662005-07-27 23:02:00 -0400629 if (acpi_pci_link_allocate(link)) {
Ingo Molnar36e43092006-04-27 05:25:00 -0400630 mutex_unlock(&acpi_link_lock);
Patrick Mocheld550d982006-06-27 00:41:40 -0400631 return -1;
David Shaohua Li87bec662005-07-27 23:02:00 -0400632 }
Len Brown4be44fc2005-08-05 00:44:28 -0400633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 if (!link->irq.active) {
Ingo Molnar36e43092006-04-27 05:25:00 -0400635 mutex_unlock(&acpi_link_lock);
Len Brown64684632006-06-26 23:41:38 -0400636 printk(KERN_ERR PREFIX "Link active IRQ is 0!\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400637 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 }
Len Brown4be44fc2005-08-05 00:44:28 -0400639 link->refcnt++;
Ingo Molnar36e43092006-04-27 05:25:00 -0400640 mutex_unlock(&acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Bob Moore50eca3e2005-09-30 19:03:00 -0400642 if (triggering)
643 *triggering = link->irq.triggering;
644 if (polarity)
645 *polarity = link->irq.polarity;
Len Brown4be44fc2005-08-05 00:44:28 -0400646 if (name)
647 *name = acpi_device_bid(link->device);
David Shaohua Li87bec662005-07-27 23:02:00 -0400648 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400649 "Link %s is referenced\n",
650 acpi_device_bid(link->device)));
Patrick Mocheld550d982006-06-27 00:41:40 -0400651 return (link->irq.active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652}
653
David Shaohua Li87bec662005-07-27 23:02:00 -0400654/*
655 * We don't change link's irq information here. After it is reenabled, we
656 * continue use the info
657 */
Len Brown4be44fc2005-08-05 00:44:28 -0400658int acpi_pci_link_free_irq(acpi_handle handle)
David Shaohua Li87bec662005-07-27 23:02:00 -0400659{
Len Brown4be44fc2005-08-05 00:44:28 -0400660 struct acpi_device *device = NULL;
661 struct acpi_pci_link *link = NULL;
662 acpi_status result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
David Shaohua Li87bec662005-07-27 23:02:00 -0400664
665 result = acpi_bus_get_device(handle, &device);
666 if (result) {
Len Brown64684632006-06-26 23:41:38 -0400667 printk(KERN_ERR PREFIX "Invalid link device\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400668 return -1;
David Shaohua Li87bec662005-07-27 23:02:00 -0400669 }
670
Len Brown4be44fc2005-08-05 00:44:28 -0400671 link = (struct acpi_pci_link *)acpi_driver_data(device);
David Shaohua Li87bec662005-07-27 23:02:00 -0400672 if (!link) {
Len Brown64684632006-06-26 23:41:38 -0400673 printk(KERN_ERR PREFIX "Invalid link context\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400674 return -1;
David Shaohua Li87bec662005-07-27 23:02:00 -0400675 }
676
Ingo Molnar36e43092006-04-27 05:25:00 -0400677 mutex_lock(&acpi_link_lock);
David Shaohua Li87bec662005-07-27 23:02:00 -0400678 if (!link->irq.initialized) {
Ingo Molnar36e43092006-04-27 05:25:00 -0400679 mutex_unlock(&acpi_link_lock);
Len Brown64684632006-06-26 23:41:38 -0400680 printk(KERN_ERR PREFIX "Link isn't initialized\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400681 return -1;
David Shaohua Li87bec662005-07-27 23:02:00 -0400682 }
David Shaohua Liecc21eb2005-08-03 11:00:11 -0400683#ifdef FUTURE_USE
684 /*
685 * The Link reference count allows us to _DISable an unused link
686 * and suspend time, and set it again on resume.
687 * However, 2.6.12 still has irq_router.resume
688 * which blindly restores the link state.
689 * So we disable the reference count method
690 * to prevent duplicate acpi_pci_link_set()
691 * which would harm some systems
692 */
Len Brown4be44fc2005-08-05 00:44:28 -0400693 link->refcnt--;
David Shaohua Liecc21eb2005-08-03 11:00:11 -0400694#endif
David Shaohua Li87bec662005-07-27 23:02:00 -0400695 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400696 "Link %s is dereferenced\n",
697 acpi_device_bid(link->device)));
David Shaohua Li87bec662005-07-27 23:02:00 -0400698
699 if (link->refcnt == 0) {
Patrick Mochel67a71362006-05-19 16:54:42 -0400700 acpi_ut_evaluate_object(link->device->handle, "_DIS", 0, NULL);
David Shaohua Li87bec662005-07-27 23:02:00 -0400701 }
Ingo Molnar36e43092006-04-27 05:25:00 -0400702 mutex_unlock(&acpi_link_lock);
Patrick Mocheld550d982006-06-27 00:41:40 -0400703 return (link->irq.active);
David Shaohua Li87bec662005-07-27 23:02:00 -0400704}
Len Brown4be44fc2005-08-05 00:44:28 -0400705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706/* --------------------------------------------------------------------------
707 Driver Interface
708 -------------------------------------------------------------------------- */
709
Len Brown4be44fc2005-08-05 00:44:28 -0400710static int acpi_pci_link_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711{
Len Brown4be44fc2005-08-05 00:44:28 -0400712 int result = 0;
713 struct acpi_pci_link *link = NULL;
714 int i = 0;
715 int found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
718 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400719 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
721 link = kmalloc(sizeof(struct acpi_pci_link), GFP_KERNEL);
722 if (!link)
Patrick Mocheld550d982006-06-27 00:41:40 -0400723 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 memset(link, 0, sizeof(struct acpi_pci_link));
725
726 link->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 strcpy(acpi_device_name(device), ACPI_PCI_LINK_DEVICE_NAME);
728 strcpy(acpi_device_class(device), ACPI_PCI_LINK_CLASS);
729 acpi_driver_data(device) = link;
730
Ingo Molnar36e43092006-04-27 05:25:00 -0400731 mutex_lock(&acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 result = acpi_pci_link_get_possible(link);
733 if (result)
734 goto end;
735
736 /* query and set link->irq.active */
737 acpi_pci_link_get_current(link);
738
739 printk(PREFIX "%s [%s] (IRQs", acpi_device_name(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400740 acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 for (i = 0; i < link->irq.possible_count; i++) {
742 if (link->irq.active == link->irq.possible[i]) {
743 printk(" *%d", link->irq.possible[i]);
744 found = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400745 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 printk(" %d", link->irq.possible[i]);
747 }
748
749 printk(")");
750
751 if (!found)
752 printk(" *%d", link->irq.active);
753
Len Brown4be44fc2005-08-05 00:44:28 -0400754 if (!link->device->status.enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 printk(", disabled.");
756
757 printk("\n");
758
759 /* TBD: Acquire/release lock */
760 list_add_tail(&link->node, &acpi_link.entries);
761 acpi_link.count++;
762
Len Brown4be44fc2005-08-05 00:44:28 -0400763 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 /* disable all links -- to be activated on use */
Patrick Mochel67a71362006-05-19 16:54:42 -0400765 acpi_ut_evaluate_object(device->handle, "_DIS", 0, NULL);
Ingo Molnar36e43092006-04-27 05:25:00 -0400766 mutex_unlock(&acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
768 if (result)
769 kfree(link);
770
Patrick Mocheld550d982006-06-27 00:41:40 -0400771 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
773
Len Brown4be44fc2005-08-05 00:44:28 -0400774static int acpi_pci_link_resume(struct acpi_pci_link *link)
Linus Torvalds697a2d62005-08-01 12:37:54 -0700775{
Linus Torvalds697a2d62005-08-01 12:37:54 -0700776
777 if (link->refcnt && link->irq.active && link->irq.initialized)
Patrick Mocheld550d982006-06-27 00:41:40 -0400778 return (acpi_pci_link_set(link, link->irq.active));
Linus Torvalds697a2d62005-08-01 12:37:54 -0700779 else
Patrick Mocheld550d982006-06-27 00:41:40 -0400780 return 0;
Linus Torvalds697a2d62005-08-01 12:37:54 -0700781}
782
Len Brown4be44fc2005-08-05 00:44:28 -0400783static int irqrouter_resume(struct sys_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784{
Len Brown4be44fc2005-08-05 00:44:28 -0400785 struct list_head *node = NULL;
786 struct acpi_pci_link *link = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Linus Torvalds56035092006-06-19 18:05:09 -0700789 /* Make sure SCI is enabled again (Apple firmware bug?) */
790 acpi_set_register(ACPI_BITREG_SCI_ENABLE, 1, ACPI_MTX_DO_NOT_LOCK);
791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 list_for_each(node, &acpi_link.entries) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 link = list_entry(node, struct acpi_pci_link, node);
794 if (!link) {
Len Brown64684632006-06-26 23:41:38 -0400795 printk(KERN_ERR PREFIX "Invalid link context\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 continue;
797 }
Linus Torvalds697a2d62005-08-01 12:37:54 -0700798 acpi_pci_link_resume(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400800 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801}
802
Len Brown4be44fc2005-08-05 00:44:28 -0400803static int acpi_pci_link_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
805 struct acpi_pci_link *link = NULL;
806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
808 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400809 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Len Brown4be44fc2005-08-05 00:44:28 -0400811 link = (struct acpi_pci_link *)acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Ingo Molnar36e43092006-04-27 05:25:00 -0400813 mutex_lock(&acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 list_del(&link->node);
Ingo Molnar36e43092006-04-27 05:25:00 -0400815 mutex_unlock(&acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 kfree(link);
818
Patrick Mocheld550d982006-06-27 00:41:40 -0400819 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820}
821
822/*
823 * modify acpi_irq_penalty[] from cmdline
824 */
825static int __init acpi_irq_penalty_update(char *str, int used)
826{
827 int i;
828
829 for (i = 0; i < 16; i++) {
830 int retval;
831 int irq;
832
Len Brown4be44fc2005-08-05 00:44:28 -0400833 retval = get_option(&str, &irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
835 if (!retval)
836 break; /* no number found */
837
838 if (irq < 0)
839 continue;
Len Brown4be44fc2005-08-05 00:44:28 -0400840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 if (irq >= ACPI_MAX_IRQS)
842 continue;
843
844 if (used)
845 acpi_irq_penalty[irq] += PIRQ_PENALTY_ISA_USED;
846 else
847 acpi_irq_penalty[irq] = PIRQ_PENALTY_PCI_AVAILABLE;
848
849 if (retval != 2) /* no next number */
850 break;
851 }
852 return 1;
853}
854
855/*
856 * We'd like PNP to call this routine for the
857 * single ISA_USED value for each legacy device.
858 * But instead it calls us with each POSSIBLE setting.
859 * There is no ISA_POSSIBLE weight, so we simply use
860 * the (small) PCI_USING penalty.
861 */
David Shaohua Lic9c3e452005-04-01 00:07:31 -0500862void acpi_penalize_isa_irq(int irq, int active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863{
David Shaohua Lic9c3e452005-04-01 00:07:31 -0500864 if (active)
865 acpi_irq_penalty[irq] += PIRQ_PENALTY_ISA_USED;
866 else
867 acpi_irq_penalty[irq] += PIRQ_PENALTY_PCI_USING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868}
869
870/*
871 * Over-ride default table to reserve additional IRQs for use by ISA
872 * e.g. acpi_irq_isa=5
873 * Useful for telling ACPI how not to interfere with your ISA sound card.
874 */
875static int __init acpi_irq_isa(char *str)
876{
877 return acpi_irq_penalty_update(str, 1);
878}
Len Brown4be44fc2005-08-05 00:44:28 -0400879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880__setup("acpi_irq_isa=", acpi_irq_isa);
881
882/*
883 * Over-ride default table to free additional IRQs for use by PCI
884 * e.g. acpi_irq_pci=7,15
885 * Used for acpi_irq_balance to free up IRQs to reduce PCI IRQ sharing.
886 */
887static int __init acpi_irq_pci(char *str)
888{
889 return acpi_irq_penalty_update(str, 0);
890}
Len Brown4be44fc2005-08-05 00:44:28 -0400891
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892__setup("acpi_irq_pci=", acpi_irq_pci);
893
894static int __init acpi_irq_nobalance_set(char *str)
895{
896 acpi_irq_balance = 0;
897 return 1;
898}
Len Brown4be44fc2005-08-05 00:44:28 -0400899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900__setup("acpi_irq_nobalance", acpi_irq_nobalance_set);
901
902int __init acpi_irq_balance_set(char *str)
903{
904 acpi_irq_balance = 1;
905 return 1;
906}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
Len Brown4be44fc2005-08-05 00:44:28 -0400908__setup("acpi_irq_balance", acpi_irq_balance_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
David Shaohua Li87bec662005-07-27 23:02:00 -0400910/* FIXME: we will remove this interface after all drivers call pci_disable_device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911static struct sysdev_class irqrouter_sysdev_class = {
Len Brown4be44fc2005-08-05 00:44:28 -0400912 set_kset_name("irqrouter"),
913 .resume = irqrouter_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914};
915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916static struct sys_device device_irqrouter = {
Len Brown4be44fc2005-08-05 00:44:28 -0400917 .id = 0,
918 .cls = &irqrouter_sysdev_class,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919};
920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921static int __init irqrouter_init_sysfs(void)
922{
923 int error;
924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
926 if (acpi_disabled || acpi_noirq)
Patrick Mocheld550d982006-06-27 00:41:40 -0400927 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
929 error = sysdev_class_register(&irqrouter_sysdev_class);
930 if (!error)
931 error = sysdev_register(&device_irqrouter);
932
Patrick Mocheld550d982006-06-27 00:41:40 -0400933 return error;
Len Brown4be44fc2005-08-05 00:44:28 -0400934}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
936device_initcall(irqrouter_init_sysfs);
937
Len Brown4be44fc2005-08-05 00:44:28 -0400938static int __init acpi_pci_link_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 if (acpi_noirq)
Patrick Mocheld550d982006-06-27 00:41:40 -0400942 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
944 acpi_link.count = 0;
945 INIT_LIST_HEAD(&acpi_link.entries);
946
947 if (acpi_bus_register_driver(&acpi_pci_link_driver) < 0)
Patrick Mocheld550d982006-06-27 00:41:40 -0400948 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Patrick Mocheld550d982006-06-27 00:41:40 -0400950 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951}
952
953subsys_initcall(acpi_pci_link_init);