blob: 1c6e73c7865edcb4fca3dbe0f2f5964a12c22f9f [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 Brownf52fd662007-02-12 22:42:12 -050047ACPI_MODULE_NAME("pci_link");
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define ACPI_PCI_LINK_CLASS "pci_irq_routing"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define ACPI_PCI_LINK_DEVICE_NAME "PCI Interrupt Link"
50#define ACPI_PCI_LINK_FILE_INFO "info"
51#define ACPI_PCI_LINK_FILE_STATUS "state"
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define ACPI_PCI_LINK_MAX_POSSIBLE 16
Len Brown4be44fc2005-08-05 00:44:28 -040053static int acpi_pci_link_add(struct acpi_device *device);
54static int acpi_pci_link_remove(struct acpi_device *device, int type);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Thomas Renninger1ba90e32007-07-23 14:44:41 +020056static struct acpi_device_id link_device_ids[] = {
57 {"PNP0C0F", 0},
58 {"", 0},
59};
60MODULE_DEVICE_TABLE(acpi, link_device_ids);
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062static struct acpi_driver acpi_pci_link_driver = {
Len Brownc2b67052007-02-12 23:33:40 -050063 .name = "pci_link",
Len Brown4be44fc2005-08-05 00:44:28 -040064 .class = ACPI_PCI_LINK_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +020065 .ids = link_device_ids,
Len Brown4be44fc2005-08-05 00:44:28 -040066 .ops = {
67 .add = acpi_pci_link_add,
68 .remove = acpi_pci_link_remove,
69 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070070};
71
David Shaohua Li87bec662005-07-27 23:02:00 -040072/*
73 * If a link is initialized, we never change its active and initialized
74 * later even the link is disable. Instead, we just repick the active irq
75 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070076struct acpi_pci_link_irq {
Len Brown4be44fc2005-08-05 00:44:28 -040077 u8 active; /* Current IRQ */
Bob Moore50eca3e2005-09-30 19:03:00 -040078 u8 triggering; /* All IRQs */
79 u8 polarity; /* All IRQs */
Len Brown4be44fc2005-08-05 00:44:28 -040080 u8 resource_type;
81 u8 possible_count;
82 u8 possible[ACPI_PCI_LINK_MAX_POSSIBLE];
83 u8 initialized:1;
84 u8 reserved:7;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085};
86
87struct acpi_pci_link {
Len Brown4be44fc2005-08-05 00:44:28 -040088 struct list_head node;
89 struct acpi_device *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 struct acpi_pci_link_irq irq;
Len Brown4be44fc2005-08-05 00:44:28 -040091 int refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092};
93
94static struct {
Len Brown4be44fc2005-08-05 00:44:28 -040095 int count;
96 struct list_head entries;
97} acpi_link;
Adrian Bunke5685b92007-10-24 18:24:42 +020098static DEFINE_MUTEX(acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100/* --------------------------------------------------------------------------
101 PCI Link Device Management
102 -------------------------------------------------------------------------- */
103
104/*
105 * set context (link) possible list from resource list
106 */
107static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400108acpi_pci_link_check_possible(struct acpi_resource *resource, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200110 struct acpi_pci_link *link = context;
Len Brown4be44fc2005-08-05 00:44:28 -0400111 u32 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Len Browneca008c2005-09-22 00:25:18 -0400114 switch (resource->type) {
Bob Moore50eca3e2005-09-30 19:03:00 -0400115 case ACPI_RESOURCE_TYPE_START_DEPENDENT:
Bjorn Helgaas4a5e3632008-07-15 09:42:57 -0600116 case ACPI_RESOURCE_TYPE_END_TAG:
Patrick Mocheld550d982006-06-27 00:41:40 -0400117 return AE_OK;
Bob Moore50eca3e2005-09-30 19:03:00 -0400118 case ACPI_RESOURCE_TYPE_IRQ:
Len Brown4be44fc2005-08-05 00:44:28 -0400119 {
120 struct acpi_resource_irq *p = &resource->data.irq;
Bob Moore50eca3e2005-09-30 19:03:00 -0400121 if (!p || !p->interrupt_count) {
Bjorn Helgaas4a5e3632008-07-15 09:42:57 -0600122 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
123 "Blank _PRS IRQ resource\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400124 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 }
Len Brown4be44fc2005-08-05 00:44:28 -0400126 for (i = 0;
Bob Moore50eca3e2005-09-30 19:03:00 -0400127 (i < p->interrupt_count
Len Brown4be44fc2005-08-05 00:44:28 -0400128 && i < ACPI_PCI_LINK_MAX_POSSIBLE); i++) {
129 if (!p->interrupts[i]) {
Bjorn Helgaas4a5e3632008-07-15 09:42:57 -0600130 printk(KERN_WARNING PREFIX
131 "Invalid _PRS IRQ %d\n",
132 p->interrupts[i]);
Len Brown4be44fc2005-08-05 00:44:28 -0400133 continue;
134 }
135 link->irq.possible[i] = p->interrupts[i];
136 link->irq.possible_count++;
137 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400138 link->irq.triggering = p->triggering;
139 link->irq.polarity = p->polarity;
140 link->irq.resource_type = ACPI_RESOURCE_TYPE_IRQ;
Len Brown4be44fc2005-08-05 00:44:28 -0400141 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400143 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
Len Brown4be44fc2005-08-05 00:44:28 -0400144 {
Bob Moore50eca3e2005-09-30 19:03:00 -0400145 struct acpi_resource_extended_irq *p =
Len Brown4be44fc2005-08-05 00:44:28 -0400146 &resource->data.extended_irq;
Bob Moore50eca3e2005-09-30 19:03:00 -0400147 if (!p || !p->interrupt_count) {
Len Browncece9292006-06-26 23:04:31 -0400148 printk(KERN_WARNING PREFIX
Bjorn Helgaas4a5e3632008-07-15 09:42:57 -0600149 "Blank _PRS EXT IRQ resource\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400150 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 }
Len Brown4be44fc2005-08-05 00:44:28 -0400152 for (i = 0;
Bob Moore50eca3e2005-09-30 19:03:00 -0400153 (i < p->interrupt_count
Len Brown4be44fc2005-08-05 00:44:28 -0400154 && i < ACPI_PCI_LINK_MAX_POSSIBLE); i++) {
155 if (!p->interrupts[i]) {
Bjorn Helgaas4a5e3632008-07-15 09:42:57 -0600156 printk(KERN_WARNING PREFIX
157 "Invalid _PRS IRQ %d\n",
158 p->interrupts[i]);
Len Brown4be44fc2005-08-05 00:44:28 -0400159 continue;
160 }
161 link->irq.possible[i] = p->interrupts[i];
162 link->irq.possible_count++;
163 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400164 link->irq.triggering = p->triggering;
165 link->irq.polarity = p->polarity;
166 link->irq.resource_type = ACPI_RESOURCE_TYPE_EXTENDED_IRQ;
Len Brown4be44fc2005-08-05 00:44:28 -0400167 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 default:
Bjorn Helgaas4a5e3632008-07-15 09:42:57 -0600170 printk(KERN_ERR PREFIX "_PRS resource type 0x%x isn't an IRQ\n",
171 resource->type);
Patrick Mocheld550d982006-06-27 00:41:40 -0400172 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 }
174
Patrick Mocheld550d982006-06-27 00:41:40 -0400175 return AE_CTRL_TERMINATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176}
177
Len Brown4be44fc2005-08-05 00:44:28 -0400178static int acpi_pci_link_get_possible(struct acpi_pci_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
Len Brown4be44fc2005-08-05 00:44:28 -0400180 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183 if (!link)
Patrick Mocheld550d982006-06-27 00:41:40 -0400184 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Patrick Mochel67a71362006-05-19 16:54:42 -0400186 status = acpi_walk_resources(link->device->handle, METHOD_NAME__PRS,
Len Brown4be44fc2005-08-05 00:44:28 -0400187 acpi_pci_link_check_possible, link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400189 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PRS"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400190 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 }
192
Len Brown4be44fc2005-08-05 00:44:28 -0400193 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
194 "Found %d possible IRQs\n",
195 link->irq.possible_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Patrick Mocheld550d982006-06-27 00:41:40 -0400197 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198}
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400201acpi_pci_link_check_current(struct acpi_resource *resource, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Len Brown4be44fc2005-08-05 00:44:28 -0400203 int *irq = (int *)context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Len Browneca008c2005-09-22 00:25:18 -0400206 switch (resource->type) {
Bjorn Helgaas4a5e3632008-07-15 09:42:57 -0600207 case ACPI_RESOURCE_TYPE_START_DEPENDENT:
208 case ACPI_RESOURCE_TYPE_END_TAG:
209 return AE_OK;
Bob Moore50eca3e2005-09-30 19:03:00 -0400210 case ACPI_RESOURCE_TYPE_IRQ:
Len Brown4be44fc2005-08-05 00:44:28 -0400211 {
212 struct acpi_resource_irq *p = &resource->data.irq;
Bob Moore50eca3e2005-09-30 19:03:00 -0400213 if (!p || !p->interrupt_count) {
Len Brown4be44fc2005-08-05 00:44:28 -0400214 /*
215 * IRQ descriptors may have no IRQ# bits set,
216 * particularly those those w/ _STA disabled
217 */
218 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Bjorn Helgaas4a5e3632008-07-15 09:42:57 -0600219 "Blank _CRS IRQ resource\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400220 return AE_OK;
Len Brown4be44fc2005-08-05 00:44:28 -0400221 }
222 *irq = p->interrupts[0];
223 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400225 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
Len Brown4be44fc2005-08-05 00:44:28 -0400226 {
Bob Moore50eca3e2005-09-30 19:03:00 -0400227 struct acpi_resource_extended_irq *p =
Len Brown4be44fc2005-08-05 00:44:28 -0400228 &resource->data.extended_irq;
Bob Moore50eca3e2005-09-30 19:03:00 -0400229 if (!p || !p->interrupt_count) {
Len Brown4be44fc2005-08-05 00:44:28 -0400230 /*
231 * extended IRQ descriptors must
232 * return at least 1 IRQ
233 */
Len Browncece9292006-06-26 23:04:31 -0400234 printk(KERN_WARNING PREFIX
Bjorn Helgaas4a5e3632008-07-15 09:42:57 -0600235 "Blank _CRS EXT IRQ resource\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400236 return AE_OK;
Len Brown4be44fc2005-08-05 00:44:28 -0400237 }
238 *irq = p->interrupts[0];
239 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 }
Len Brownd4ec6c72006-01-26 17:23:38 -0500241 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 default:
Bjorn Helgaas4a5e3632008-07-15 09:42:57 -0600243 printk(KERN_ERR PREFIX "_CRS resource type 0x%x isn't an IRQ\n",
244 resource->type);
Patrick Mocheld550d982006-06-27 00:41:40 -0400245 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 }
Bjorn Helgaas4a5e3632008-07-15 09:42:57 -0600247
Patrick Mocheld550d982006-06-27 00:41:40 -0400248 return AE_CTRL_TERMINATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250
251/*
252 * Run _CRS and set link->irq.active
253 *
254 * return value:
255 * 0 - success
256 * !0 - failure
257 */
Len Brown4be44fc2005-08-05 00:44:28 -0400258static int acpi_pci_link_get_current(struct acpi_pci_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
Len Brown4be44fc2005-08-05 00:44:28 -0400260 int result = 0;
261 acpi_status status = AE_OK;
262 int irq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Patrick Mochele0e4e112006-05-19 16:54:50 -0400264 if (!link)
Patrick Mocheld550d982006-06-27 00:41:40 -0400265 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 link->irq.active = 0;
268
269 /* in practice, status disabled is meaningless, ignore it */
270 if (acpi_strict) {
271 /* Query _STA, set link->device->status */
272 result = acpi_bus_get_status(link->device);
273 if (result) {
Len Brown64684632006-06-26 23:41:38 -0400274 printk(KERN_ERR PREFIX "Unable to read status\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 goto end;
276 }
277
278 if (!link->device->status.enabled) {
279 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Link disabled\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400280 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 }
282 }
283
284 /*
285 * Query and parse _CRS to get the current IRQ assignment.
286 */
287
Patrick Mochel67a71362006-05-19 16:54:42 -0400288 status = acpi_walk_resources(link->device->handle, METHOD_NAME__CRS,
Len Brown4be44fc2005-08-05 00:44:28 -0400289 acpi_pci_link_check_current, &irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400291 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _CRS"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 result = -ENODEV;
293 goto end;
294 }
295
296 if (acpi_strict && !irq) {
Len Brown64684632006-06-26 23:41:38 -0400297 printk(KERN_ERR PREFIX "_CRS returned 0\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 result = -ENODEV;
299 }
300
301 link->irq.active = irq;
302
303 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Link at IRQ %d \n", link->irq.active));
304
Len Brown4be44fc2005-08-05 00:44:28 -0400305 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400306 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307}
308
Len Brown4be44fc2005-08-05 00:44:28 -0400309static int acpi_pci_link_set(struct acpi_pci_link *link, int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Len Brown4be44fc2005-08-05 00:44:28 -0400311 int result = 0;
312 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 struct {
Len Brown4be44fc2005-08-05 00:44:28 -0400314 struct acpi_resource res;
315 struct acpi_resource end;
316 } *resource;
317 struct acpi_buffer buffer = { 0, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320 if (!link || !irq)
Patrick Mocheld550d982006-06-27 00:41:40 -0400321 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Burman Yan36bcbec2006-12-19 12:56:11 -0800323 resource = kzalloc(sizeof(*resource) + 1, irqs_disabled() ? GFP_ATOMIC: GFP_KERNEL);
Len Brown4be44fc2005-08-05 00:44:28 -0400324 if (!resource)
Patrick Mocheld550d982006-06-27 00:41:40 -0400325 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Len Brown4be44fc2005-08-05 00:44:28 -0400327 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:
Len Brown64684632006-06-26 23:41:38 -0400365 printk(KERN_ERR PREFIX "Invalid Resource_type %d\n", link->irq.resource_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 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 */
Patrick Mochel67a71362006-05-19 16:54:42 -0400373 status = acpi_set_current_resources(link->device->handle, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
375 /* check for total failure */
376 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400377 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _SRS"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 result = -ENODEV;
379 goto end;
380 }
381
382 /* Query _STA, set device->status */
383 result = acpi_bus_get_status(link->device);
384 if (result) {
Len Brown64684632006-06-26 23:41:38 -0400385 printk(KERN_ERR PREFIX "Unable to read status\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 goto end;
387 }
388 if (!link->device->status.enabled) {
Len Browncece9292006-06-26 23:04:31 -0400389 printk(KERN_WARNING PREFIX
390 "%s [%s] disabled and referenced, BIOS bug\n",
Thomas Renningera6fc6722006-06-26 23:58:43 -0400391 acpi_device_name(link->device),
Len Browncece9292006-06-26 23:04:31 -0400392 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 Browncece9292006-06-26 23:04:31 -0400410 printk(KERN_WARNING PREFIX
411 "%s [%s] BIOS reported IRQ %d, using IRQ %d\n",
Thomas Renningera6fc6722006-06-26 23:58:43 -0400412 acpi_device_name(link->device),
Len Browncece9292006-06-26 23:04:31 -0400413 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);
Patrick Mocheld550d982006-06-27 00:41:40 -0400421 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422}
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 /*
497 * Update penalties to facilitate IRQ balancing.
498 */
499 list_for_each(node, &acpi_link.entries) {
500
501 link = list_entry(node, struct acpi_pci_link, node);
502 if (!link) {
Len Brown64684632006-06-26 23:41:38 -0400503 printk(KERN_ERR PREFIX "Invalid link context\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 continue;
505 }
506
507 /*
508 * reflect the possible and active irqs in the penalty table --
509 * useful for breaking ties.
510 */
511 if (link->irq.possible_count) {
Len Brown4be44fc2005-08-05 00:44:28 -0400512 int penalty =
513 PIRQ_PENALTY_PCI_POSSIBLE /
514 link->irq.possible_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516 for (i = 0; i < link->irq.possible_count; i++) {
517 if (link->irq.possible[i] < ACPI_MAX_ISA_IRQ)
Len Brown4be44fc2005-08-05 00:44:28 -0400518 acpi_irq_penalty[link->irq.
519 possible[i]] +=
520 penalty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 }
522
523 } else if (link->irq.active) {
Len Brown4be44fc2005-08-05 00:44:28 -0400524 acpi_irq_penalty[link->irq.active] +=
525 PIRQ_PENALTY_PCI_POSSIBLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 }
527 }
528 /* Add a penalty for the SCI */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300529 acpi_irq_penalty[acpi_gbl_FADT.sci_interrupt] += PIRQ_PENALTY_PCI_USING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Patrick Mocheld550d982006-06-27 00:41:40 -0400531 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532}
533
Bjorn Helgaas32836252008-11-05 16:17:52 -0700534static int acpi_irq_balance = -1; /* 0: static, 1: balance */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Len Brown4be44fc2005-08-05 00:44:28 -0400536static int acpi_pci_link_allocate(struct acpi_pci_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
Len Brown4be44fc2005-08-05 00:44:28 -0400538 int irq;
539 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
David Shaohua Li87bec662005-07-27 23:02:00 -0400542 if (link->irq.initialized) {
543 if (link->refcnt == 0)
544 /* This means the link is disabled but initialized */
545 acpi_pci_link_set(link, link->irq.active);
Patrick Mocheld550d982006-06-27 00:41:40 -0400546 return 0;
David Shaohua Li87bec662005-07-27 23:02:00 -0400547 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549 /*
550 * search for active IRQ in list of possible IRQs.
551 */
552 for (i = 0; i < link->irq.possible_count; ++i) {
553 if (link->irq.active == link->irq.possible[i])
554 break;
555 }
556 /*
557 * forget active IRQ that is not in possible list
558 */
559 if (i == link->irq.possible_count) {
560 if (acpi_strict)
Len Browncece9292006-06-26 23:04:31 -0400561 printk(KERN_WARNING PREFIX "_CRS %d not found"
562 " in _PRS\n", link->irq.active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 link->irq.active = 0;
564 }
565
566 /*
567 * if active found, use it; else pick entry from end of possible list.
568 */
569 if (link->irq.active) {
570 irq = link->irq.active;
571 } else {
572 irq = link->irq.possible[link->irq.possible_count - 1];
573 }
574
575 if (acpi_irq_balance || !link->irq.active) {
576 /*
577 * Select the best IRQ. This is done in reverse to promote
578 * the use of IRQs 9, 10, 11, and >15.
579 */
580 for (i = (link->irq.possible_count - 1); i >= 0; i--) {
Len Brown4be44fc2005-08-05 00:44:28 -0400581 if (acpi_irq_penalty[irq] >
582 acpi_irq_penalty[link->irq.possible[i]])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 irq = link->irq.possible[i];
584 }
585 }
586
587 /* Attempt to enable the link device at this IRQ. */
588 if (acpi_pci_link_set(link, irq)) {
Len Brown64684632006-06-26 23:41:38 -0400589 printk(KERN_ERR PREFIX "Unable to set IRQ for %s [%s]. "
590 "Try pci=noacpi or acpi=off\n",
Thomas Renningera6fc6722006-06-26 23:58:43 -0400591 acpi_device_name(link->device),
Len Brown64684632006-06-26 23:41:38 -0400592 acpi_device_bid(link->device));
Patrick Mocheld550d982006-06-27 00:41:40 -0400593 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 } else {
595 acpi_irq_penalty[link->irq.active] += PIRQ_PENALTY_PCI_USING;
Len Brown4be44fc2005-08-05 00:44:28 -0400596 printk(PREFIX "%s [%s] enabled at IRQ %d\n",
597 acpi_device_name(link->device),
598 acpi_device_bid(link->device), link->irq.active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 }
600
601 link->irq.initialized = 1;
602
Patrick Mocheld550d982006-06-27 00:41:40 -0400603 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}
605
606/*
David Shaohua Li87bec662005-07-27 23:02:00 -0400607 * acpi_pci_link_allocate_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 * success: return IRQ >= 0
609 * failure: return -1
610 */
611
612int
Len Brown4be44fc2005-08-05 00:44:28 -0400613acpi_pci_link_allocate_irq(acpi_handle handle,
614 int index,
Bob Moore50eca3e2005-09-30 19:03:00 -0400615 int *triggering, int *polarity, char **name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{
Len Brown4be44fc2005-08-05 00:44:28 -0400617 int result = 0;
618 struct acpi_device *device = NULL;
619 struct acpi_pci_link *link = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
622 result = acpi_bus_get_device(handle, &device);
623 if (result) {
Len Brown64684632006-06-26 23:41:38 -0400624 printk(KERN_ERR PREFIX "Invalid link device\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400625 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 }
627
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200628 link = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 if (!link) {
Len Brown64684632006-06-26 23:41:38 -0400630 printk(KERN_ERR PREFIX "Invalid link context\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400631 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 }
633
634 /* TBD: Support multiple index (IRQ) entries per Link Device */
635 if (index) {
Len Brown64684632006-06-26 23:41:38 -0400636 printk(KERN_ERR PREFIX "Invalid index %d\n", index);
Patrick Mocheld550d982006-06-27 00:41:40 -0400637 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 }
639
Ingo Molnar36e43092006-04-27 05:25:00 -0400640 mutex_lock(&acpi_link_lock);
David Shaohua Li87bec662005-07-27 23:02:00 -0400641 if (acpi_pci_link_allocate(link)) {
Ingo Molnar36e43092006-04-27 05:25:00 -0400642 mutex_unlock(&acpi_link_lock);
Patrick Mocheld550d982006-06-27 00:41:40 -0400643 return -1;
David Shaohua Li87bec662005-07-27 23:02:00 -0400644 }
Len Brown4be44fc2005-08-05 00:44:28 -0400645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 if (!link->irq.active) {
Ingo Molnar36e43092006-04-27 05:25:00 -0400647 mutex_unlock(&acpi_link_lock);
Len Brown64684632006-06-26 23:41:38 -0400648 printk(KERN_ERR PREFIX "Link active IRQ is 0!\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400649 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 }
Len Brown4be44fc2005-08-05 00:44:28 -0400651 link->refcnt++;
Ingo Molnar36e43092006-04-27 05:25:00 -0400652 mutex_unlock(&acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Bob Moore50eca3e2005-09-30 19:03:00 -0400654 if (triggering)
655 *triggering = link->irq.triggering;
656 if (polarity)
657 *polarity = link->irq.polarity;
Len Brown4be44fc2005-08-05 00:44:28 -0400658 if (name)
659 *name = acpi_device_bid(link->device);
David Shaohua Li87bec662005-07-27 23:02:00 -0400660 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400661 "Link %s is referenced\n",
662 acpi_device_bid(link->device)));
Patrick Mocheld550d982006-06-27 00:41:40 -0400663 return (link->irq.active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664}
665
David Shaohua Li87bec662005-07-27 23:02:00 -0400666/*
667 * We don't change link's irq information here. After it is reenabled, we
668 * continue use the info
669 */
Len Brown4be44fc2005-08-05 00:44:28 -0400670int acpi_pci_link_free_irq(acpi_handle handle)
David Shaohua Li87bec662005-07-27 23:02:00 -0400671{
Len Brown4be44fc2005-08-05 00:44:28 -0400672 struct acpi_device *device = NULL;
673 struct acpi_pci_link *link = NULL;
674 acpi_status result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
David Shaohua Li87bec662005-07-27 23:02:00 -0400676
677 result = acpi_bus_get_device(handle, &device);
678 if (result) {
Len Brown64684632006-06-26 23:41:38 -0400679 printk(KERN_ERR PREFIX "Invalid link device\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400680 return -1;
David Shaohua Li87bec662005-07-27 23:02:00 -0400681 }
682
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200683 link = acpi_driver_data(device);
David Shaohua Li87bec662005-07-27 23:02:00 -0400684 if (!link) {
Len Brown64684632006-06-26 23:41:38 -0400685 printk(KERN_ERR PREFIX "Invalid link context\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400686 return -1;
David Shaohua Li87bec662005-07-27 23:02:00 -0400687 }
688
Ingo Molnar36e43092006-04-27 05:25:00 -0400689 mutex_lock(&acpi_link_lock);
David Shaohua Li87bec662005-07-27 23:02:00 -0400690 if (!link->irq.initialized) {
Ingo Molnar36e43092006-04-27 05:25:00 -0400691 mutex_unlock(&acpi_link_lock);
Len Brown64684632006-06-26 23:41:38 -0400692 printk(KERN_ERR PREFIX "Link isn't initialized\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400693 return -1;
David Shaohua Li87bec662005-07-27 23:02:00 -0400694 }
David Shaohua Liecc21eb2005-08-03 11:00:11 -0400695#ifdef FUTURE_USE
696 /*
697 * The Link reference count allows us to _DISable an unused link
698 * and suspend time, and set it again on resume.
699 * However, 2.6.12 still has irq_router.resume
700 * which blindly restores the link state.
701 * So we disable the reference count method
702 * to prevent duplicate acpi_pci_link_set()
703 * which would harm some systems
704 */
Len Brown4be44fc2005-08-05 00:44:28 -0400705 link->refcnt--;
David Shaohua Liecc21eb2005-08-03 11:00:11 -0400706#endif
David Shaohua Li87bec662005-07-27 23:02:00 -0400707 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400708 "Link %s is dereferenced\n",
709 acpi_device_bid(link->device)));
David Shaohua Li87bec662005-07-27 23:02:00 -0400710
711 if (link->refcnt == 0) {
donald.d.dugger@intel.com383d7a12008-10-17 07:49:50 -0700712 acpi_evaluate_object(link->device->handle, "_DIS", NULL, NULL);
David Shaohua Li87bec662005-07-27 23:02:00 -0400713 }
Ingo Molnar36e43092006-04-27 05:25:00 -0400714 mutex_unlock(&acpi_link_lock);
Patrick Mocheld550d982006-06-27 00:41:40 -0400715 return (link->irq.active);
David Shaohua Li87bec662005-07-27 23:02:00 -0400716}
Len Brown4be44fc2005-08-05 00:44:28 -0400717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718/* --------------------------------------------------------------------------
719 Driver Interface
720 -------------------------------------------------------------------------- */
721
Len Brown4be44fc2005-08-05 00:44:28 -0400722static int acpi_pci_link_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
Len Brown4be44fc2005-08-05 00:44:28 -0400724 int result = 0;
725 struct acpi_pci_link *link = NULL;
726 int i = 0;
727 int found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400731 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Burman Yan36bcbec2006-12-19 12:56:11 -0800733 link = kzalloc(sizeof(struct acpi_pci_link), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 if (!link)
Patrick Mocheld550d982006-06-27 00:41:40 -0400735 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
737 link->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 strcpy(acpi_device_name(device), ACPI_PCI_LINK_DEVICE_NAME);
739 strcpy(acpi_device_class(device), ACPI_PCI_LINK_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700740 device->driver_data = link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Ingo Molnar36e43092006-04-27 05:25:00 -0400742 mutex_lock(&acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 result = acpi_pci_link_get_possible(link);
744 if (result)
745 goto end;
746
747 /* query and set link->irq.active */
748 acpi_pci_link_get_current(link);
749
Dan Aloni0dc070b2007-07-09 11:33:18 -0700750 printk(KERN_INFO PREFIX "%s [%s] (IRQs", acpi_device_name(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400751 acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 for (i = 0; i < link->irq.possible_count; i++) {
753 if (link->irq.active == link->irq.possible[i]) {
754 printk(" *%d", link->irq.possible[i]);
755 found = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400756 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 printk(" %d", link->irq.possible[i]);
758 }
759
760 printk(")");
761
762 if (!found)
763 printk(" *%d", link->irq.active);
764
Len Brown4be44fc2005-08-05 00:44:28 -0400765 if (!link->device->status.enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 printk(", disabled.");
767
768 printk("\n");
769
770 /* TBD: Acquire/release lock */
771 list_add_tail(&link->node, &acpi_link.entries);
772 acpi_link.count++;
773
Len Brown4be44fc2005-08-05 00:44:28 -0400774 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 /* disable all links -- to be activated on use */
donald.d.dugger@intel.com383d7a12008-10-17 07:49:50 -0700776 acpi_evaluate_object(device->handle, "_DIS", NULL, NULL);
Ingo Molnar36e43092006-04-27 05:25:00 -0400777 mutex_unlock(&acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
779 if (result)
780 kfree(link);
781
Patrick Mocheld550d982006-06-27 00:41:40 -0400782 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783}
784
Len Brown4be44fc2005-08-05 00:44:28 -0400785static int acpi_pci_link_resume(struct acpi_pci_link *link)
Linus Torvalds697a2d62005-08-01 12:37:54 -0700786{
Linus Torvalds697a2d62005-08-01 12:37:54 -0700787
788 if (link->refcnt && link->irq.active && link->irq.initialized)
Patrick Mocheld550d982006-06-27 00:41:40 -0400789 return (acpi_pci_link_set(link, link->irq.active));
Linus Torvalds697a2d62005-08-01 12:37:54 -0700790 else
Patrick Mocheld550d982006-06-27 00:41:40 -0400791 return 0;
Linus Torvalds697a2d62005-08-01 12:37:54 -0700792}
793
Len Brown4be44fc2005-08-05 00:44:28 -0400794static int irqrouter_resume(struct sys_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
Len Brown4be44fc2005-08-05 00:44:28 -0400796 struct list_head *node = NULL;
797 struct acpi_pci_link *link = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 list_for_each(node, &acpi_link.entries) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 link = list_entry(node, struct acpi_pci_link, node);
801 if (!link) {
Len Brown64684632006-06-26 23:41:38 -0400802 printk(KERN_ERR PREFIX "Invalid link context\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 continue;
804 }
Linus Torvalds697a2d62005-08-01 12:37:54 -0700805 acpi_pci_link_resume(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400807 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808}
809
Len Brown4be44fc2005-08-05 00:44:28 -0400810static int acpi_pci_link_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
812 struct acpi_pci_link *link = NULL;
813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400816 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200818 link = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Ingo Molnar36e43092006-04-27 05:25:00 -0400820 mutex_lock(&acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 list_del(&link->node);
Ingo Molnar36e43092006-04-27 05:25:00 -0400822 mutex_unlock(&acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 kfree(link);
825
Patrick Mocheld550d982006-06-27 00:41:40 -0400826 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827}
828
829/*
830 * modify acpi_irq_penalty[] from cmdline
831 */
832static int __init acpi_irq_penalty_update(char *str, int used)
833{
834 int i;
835
836 for (i = 0; i < 16; i++) {
837 int retval;
838 int irq;
839
Len Brown4be44fc2005-08-05 00:44:28 -0400840 retval = get_option(&str, &irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842 if (!retval)
843 break; /* no number found */
844
845 if (irq < 0)
846 continue;
Len Brown4be44fc2005-08-05 00:44:28 -0400847
Bjorn Helgaasfa46d352008-08-01 15:58:17 -0600848 if (irq >= ARRAY_SIZE(acpi_irq_penalty))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 continue;
850
851 if (used)
852 acpi_irq_penalty[irq] += PIRQ_PENALTY_ISA_USED;
853 else
854 acpi_irq_penalty[irq] = PIRQ_PENALTY_PCI_AVAILABLE;
855
856 if (retval != 2) /* no next number */
857 break;
858 }
859 return 1;
860}
861
862/*
863 * We'd like PNP to call this routine for the
864 * single ISA_USED value for each legacy device.
865 * But instead it calls us with each POSSIBLE setting.
866 * There is no ISA_POSSIBLE weight, so we simply use
867 * the (small) PCI_USING penalty.
868 */
David Shaohua Lic9c3e452005-04-01 00:07:31 -0500869void acpi_penalize_isa_irq(int irq, int active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870{
Bjorn Helgaasfa46d352008-08-01 15:58:17 -0600871 if (irq >= 0 && irq < ARRAY_SIZE(acpi_irq_penalty)) {
872 if (active)
873 acpi_irq_penalty[irq] += PIRQ_PENALTY_ISA_USED;
874 else
875 acpi_irq_penalty[irq] += PIRQ_PENALTY_PCI_USING;
876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877}
878
879/*
880 * Over-ride default table to reserve additional IRQs for use by ISA
881 * e.g. acpi_irq_isa=5
882 * Useful for telling ACPI how not to interfere with your ISA sound card.
883 */
884static int __init acpi_irq_isa(char *str)
885{
886 return acpi_irq_penalty_update(str, 1);
887}
Len Brown4be44fc2005-08-05 00:44:28 -0400888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889__setup("acpi_irq_isa=", acpi_irq_isa);
890
891/*
892 * Over-ride default table to free additional IRQs for use by PCI
893 * e.g. acpi_irq_pci=7,15
894 * Used for acpi_irq_balance to free up IRQs to reduce PCI IRQ sharing.
895 */
896static int __init acpi_irq_pci(char *str)
897{
898 return acpi_irq_penalty_update(str, 0);
899}
Len Brown4be44fc2005-08-05 00:44:28 -0400900
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901__setup("acpi_irq_pci=", acpi_irq_pci);
902
903static int __init acpi_irq_nobalance_set(char *str)
904{
905 acpi_irq_balance = 0;
906 return 1;
907}
Len Brown4be44fc2005-08-05 00:44:28 -0400908
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909__setup("acpi_irq_nobalance", acpi_irq_nobalance_set);
910
Roel Kluin8a383ef2008-12-09 20:45:30 +0100911static int __init acpi_irq_balance_set(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912{
913 acpi_irq_balance = 1;
914 return 1;
915}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
Len Brown4be44fc2005-08-05 00:44:28 -0400917__setup("acpi_irq_balance", acpi_irq_balance_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
David Shaohua Li87bec662005-07-27 23:02:00 -0400919/* FIXME: we will remove this interface after all drivers call pci_disable_device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920static struct sysdev_class irqrouter_sysdev_class = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +0100921 .name = "irqrouter",
Len Brown4be44fc2005-08-05 00:44:28 -0400922 .resume = irqrouter_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923};
924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925static struct sys_device device_irqrouter = {
Len Brown4be44fc2005-08-05 00:44:28 -0400926 .id = 0,
927 .cls = &irqrouter_sysdev_class,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928};
929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930static int __init irqrouter_init_sysfs(void)
931{
932 int error;
933
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
935 if (acpi_disabled || acpi_noirq)
Patrick Mocheld550d982006-06-27 00:41:40 -0400936 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
938 error = sysdev_class_register(&irqrouter_sysdev_class);
939 if (!error)
940 error = sysdev_register(&device_irqrouter);
941
Patrick Mocheld550d982006-06-27 00:41:40 -0400942 return error;
Len Brown4be44fc2005-08-05 00:44:28 -0400943}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945device_initcall(irqrouter_init_sysfs);
946
Len Brown4be44fc2005-08-05 00:44:28 -0400947static int __init acpi_pci_link_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 if (acpi_noirq)
Patrick Mocheld550d982006-06-27 00:41:40 -0400950 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
Bjorn Helgaas32836252008-11-05 16:17:52 -0700952 if (acpi_irq_balance == -1) {
953 /* no command line switch: enable balancing in IOAPIC mode */
954 if (acpi_irq_model == ACPI_IRQ_MODEL_IOAPIC)
955 acpi_irq_balance = 1;
956 else
957 acpi_irq_balance = 0;
958 }
959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 acpi_link.count = 0;
961 INIT_LIST_HEAD(&acpi_link.entries);
962
963 if (acpi_bus_register_driver(&acpi_pci_link_driver) < 0)
Patrick Mocheld550d982006-06-27 00:41:40 -0400964 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
Patrick Mocheld550d982006-06-27 00:41:40 -0400966 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967}
968
969subsys_initcall(acpi_pci_link_init);