blob: c983bf733ad37d7b608c9410108dcef32cdbf02b [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 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
21 *
22 * TBD:
23 * 1. Support more than one IRQ resource entry per link device (index).
24 * 2. Implement start/stop mechanism and use ACPI Bus Driver facilities
25 * for IRQ management (e.g. start()->_SRS).
26 */
27
Rafael J. Wysockic3146df2011-03-12 22:16:51 +010028#include <linux/syscore_ops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/kernel.h>
30#include <linux/module.h>
31#include <linux/init.h>
32#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/spinlock.h>
34#include <linux/pm.h>
35#include <linux/pci.h>
Ingo Molnar36e43092006-04-27 05:25:00 -040036#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Lv Zheng8b484632013-12-03 08:49:16 +080038#include <linux/acpi.h>
Sinan Kaya103544d2016-04-17 13:36:53 -040039#include <linux/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Rashikac071b6042013-12-17 14:58:31 +053041#include "internal.h"
42
Bjorn Helgaas1c9ca3a2009-02-17 14:00:40 -070043#define _COMPONENT ACPI_PCI_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050044ACPI_MODULE_NAME("pci_link");
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#define ACPI_PCI_LINK_CLASS "pci_irq_routing"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#define ACPI_PCI_LINK_DEVICE_NAME "PCI Interrupt Link"
47#define ACPI_PCI_LINK_FILE_INFO "info"
48#define ACPI_PCI_LINK_FILE_STATUS "state"
Bjorn Helgaas1c9ca3a2009-02-17 14:00:40 -070049#define ACPI_PCI_LINK_MAX_POSSIBLE 16
50
Rafael J. Wysocki4daeaf62013-01-30 14:27:37 +010051static int acpi_pci_link_add(struct acpi_device *device,
52 const struct acpi_device_id *not_used);
53static void acpi_pci_link_remove(struct acpi_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Márton Némethc97adf92010-01-10 17:15:36 +010055static const struct acpi_device_id link_device_ids[] = {
Thomas Renninger1ba90e32007-07-23 14:44:41 +020056 {"PNP0C0F", 0},
57 {"", 0},
58};
Thomas Renninger1ba90e32007-07-23 14:44:41 +020059
Rafael J. Wysocki4daeaf62013-01-30 14:27:37 +010060static struct acpi_scan_handler pci_link_handler = {
Thomas Renninger1ba90e32007-07-23 14:44:41 +020061 .ids = link_device_ids,
Rafael J. Wysocki4daeaf62013-01-30 14:27:37 +010062 .attach = acpi_pci_link_add,
63 .detach = acpi_pci_link_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -070064};
65
David Shaohua Li87bec662005-07-27 23:02:00 -040066/*
67 * If a link is initialized, we never change its active and initialized
68 * later even the link is disable. Instead, we just repick the active irq
69 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070070struct acpi_pci_link_irq {
Sinan Kaya37c59392015-12-09 11:18:28 -050071 u32 active; /* Current IRQ */
Bob Moore50eca3e2005-09-30 19:03:00 -040072 u8 triggering; /* All IRQs */
Bjorn Helgaas1c9ca3a2009-02-17 14:00:40 -070073 u8 polarity; /* All IRQs */
Len Brown4be44fc2005-08-05 00:44:28 -040074 u8 resource_type;
75 u8 possible_count;
Sinan Kaya37c59392015-12-09 11:18:28 -050076 u32 possible[ACPI_PCI_LINK_MAX_POSSIBLE];
Len Brown4be44fc2005-08-05 00:44:28 -040077 u8 initialized:1;
78 u8 reserved:7;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079};
80
81struct acpi_pci_link {
Bjorn Helgaas5f0dcca2009-02-17 14:00:55 -070082 struct list_head list;
Bjorn Helgaas1c9ca3a2009-02-17 14:00:40 -070083 struct acpi_device *device;
84 struct acpi_pci_link_irq irq;
85 int refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086};
87
Bjorn Helgaas5f0dcca2009-02-17 14:00:55 -070088static LIST_HEAD(acpi_link_list);
Adrian Bunke5685b92007-10-24 18:24:42 +020089static DEFINE_MUTEX(acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Linus Torvalds1da177e2005-04-16 15:20:36 -070091/* --------------------------------------------------------------------------
92 PCI Link Device Management
93 -------------------------------------------------------------------------- */
94
95/*
96 * set context (link) possible list from resource list
97 */
Bjorn Helgaas1c9ca3a2009-02-17 14:00:40 -070098static acpi_status acpi_pci_link_check_possible(struct acpi_resource *resource,
99 void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200101 struct acpi_pci_link *link = context;
Bjorn Helgaasc9d62442009-02-17 14:00:45 -0700102 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Len Browneca008c2005-09-22 00:25:18 -0400104 switch (resource->type) {
Bob Moore50eca3e2005-09-30 19:03:00 -0400105 case ACPI_RESOURCE_TYPE_START_DEPENDENT:
Bjorn Helgaas4a5e3632008-07-15 09:42:57 -0600106 case ACPI_RESOURCE_TYPE_END_TAG:
Patrick Mocheld550d982006-06-27 00:41:40 -0400107 return AE_OK;
Bob Moore50eca3e2005-09-30 19:03:00 -0400108 case ACPI_RESOURCE_TYPE_IRQ:
Len Brown4be44fc2005-08-05 00:44:28 -0400109 {
110 struct acpi_resource_irq *p = &resource->data.irq;
Bob Moore50eca3e2005-09-30 19:03:00 -0400111 if (!p || !p->interrupt_count) {
Bjorn Helgaas4a5e3632008-07-15 09:42:57 -0600112 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
113 "Blank _PRS IRQ resource\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400114 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 }
Len Brown4be44fc2005-08-05 00:44:28 -0400116 for (i = 0;
Bob Moore50eca3e2005-09-30 19:03:00 -0400117 (i < p->interrupt_count
Len Brown4be44fc2005-08-05 00:44:28 -0400118 && i < ACPI_PCI_LINK_MAX_POSSIBLE); i++) {
119 if (!p->interrupts[i]) {
Bjorn Helgaas4a5e3632008-07-15 09:42:57 -0600120 printk(KERN_WARNING PREFIX
121 "Invalid _PRS IRQ %d\n",
122 p->interrupts[i]);
Len Brown4be44fc2005-08-05 00:44:28 -0400123 continue;
124 }
125 link->irq.possible[i] = p->interrupts[i];
126 link->irq.possible_count++;
127 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400128 link->irq.triggering = p->triggering;
129 link->irq.polarity = p->polarity;
130 link->irq.resource_type = ACPI_RESOURCE_TYPE_IRQ;
Len Brown4be44fc2005-08-05 00:44:28 -0400131 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400133 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
Len Brown4be44fc2005-08-05 00:44:28 -0400134 {
Bob Moore50eca3e2005-09-30 19:03:00 -0400135 struct acpi_resource_extended_irq *p =
Len Brown4be44fc2005-08-05 00:44:28 -0400136 &resource->data.extended_irq;
Bob Moore50eca3e2005-09-30 19:03:00 -0400137 if (!p || !p->interrupt_count) {
Len Browncece9292006-06-26 23:04:31 -0400138 printk(KERN_WARNING PREFIX
Bjorn Helgaas4a5e3632008-07-15 09:42:57 -0600139 "Blank _PRS EXT IRQ resource\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400140 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 }
Len Brown4be44fc2005-08-05 00:44:28 -0400142 for (i = 0;
Bob Moore50eca3e2005-09-30 19:03:00 -0400143 (i < p->interrupt_count
Len Brown4be44fc2005-08-05 00:44:28 -0400144 && i < ACPI_PCI_LINK_MAX_POSSIBLE); i++) {
145 if (!p->interrupts[i]) {
Bjorn Helgaas4a5e3632008-07-15 09:42:57 -0600146 printk(KERN_WARNING PREFIX
147 "Invalid _PRS IRQ %d\n",
148 p->interrupts[i]);
Len Brown4be44fc2005-08-05 00:44:28 -0400149 continue;
150 }
151 link->irq.possible[i] = p->interrupts[i];
152 link->irq.possible_count++;
153 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400154 link->irq.triggering = p->triggering;
155 link->irq.polarity = p->polarity;
156 link->irq.resource_type = ACPI_RESOURCE_TYPE_EXTENDED_IRQ;
Len Brown4be44fc2005-08-05 00:44:28 -0400157 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 default:
Bjorn Helgaas4a5e3632008-07-15 09:42:57 -0600160 printk(KERN_ERR PREFIX "_PRS resource type 0x%x isn't an IRQ\n",
161 resource->type);
Patrick Mocheld550d982006-06-27 00:41:40 -0400162 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 }
164
Patrick Mocheld550d982006-06-27 00:41:40 -0400165 return AE_CTRL_TERMINATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
167
Len Brown4be44fc2005-08-05 00:44:28 -0400168static int acpi_pci_link_get_possible(struct acpi_pci_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
Len Brown4be44fc2005-08-05 00:44:28 -0400170 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Patrick Mochel67a71362006-05-19 16:54:42 -0400172 status = acpi_walk_resources(link->device->handle, METHOD_NAME__PRS,
Len Brown4be44fc2005-08-05 00:44:28 -0400173 acpi_pci_link_check_possible, link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400175 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PRS"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400176 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 }
178
Len Brown4be44fc2005-08-05 00:44:28 -0400179 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
180 "Found %d possible IRQs\n",
181 link->irq.possible_count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Patrick Mocheld550d982006-06-27 00:41:40 -0400183 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184}
185
Bjorn Helgaas1c9ca3a2009-02-17 14:00:40 -0700186static acpi_status acpi_pci_link_check_current(struct acpi_resource *resource,
187 void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
Bjorn Helgaasc9d62442009-02-17 14:00:45 -0700189 int *irq = context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Len Browneca008c2005-09-22 00:25:18 -0400191 switch (resource->type) {
Bjorn Helgaas4a5e3632008-07-15 09:42:57 -0600192 case ACPI_RESOURCE_TYPE_START_DEPENDENT:
193 case ACPI_RESOURCE_TYPE_END_TAG:
194 return AE_OK;
Bob Moore50eca3e2005-09-30 19:03:00 -0400195 case ACPI_RESOURCE_TYPE_IRQ:
Len Brown4be44fc2005-08-05 00:44:28 -0400196 {
197 struct acpi_resource_irq *p = &resource->data.irq;
Bob Moore50eca3e2005-09-30 19:03:00 -0400198 if (!p || !p->interrupt_count) {
Len Brown4be44fc2005-08-05 00:44:28 -0400199 /*
200 * IRQ descriptors may have no IRQ# bits set,
201 * particularly those those w/ _STA disabled
202 */
203 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Bjorn Helgaas4a5e3632008-07-15 09:42:57 -0600204 "Blank _CRS IRQ resource\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400205 return AE_OK;
Len Brown4be44fc2005-08-05 00:44:28 -0400206 }
207 *irq = p->interrupts[0];
208 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400210 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
Len Brown4be44fc2005-08-05 00:44:28 -0400211 {
Bob Moore50eca3e2005-09-30 19:03:00 -0400212 struct acpi_resource_extended_irq *p =
Len Brown4be44fc2005-08-05 00:44:28 -0400213 &resource->data.extended_irq;
Bob Moore50eca3e2005-09-30 19:03:00 -0400214 if (!p || !p->interrupt_count) {
Len Brown4be44fc2005-08-05 00:44:28 -0400215 /*
216 * extended IRQ descriptors must
217 * return at least 1 IRQ
218 */
Len Browncece9292006-06-26 23:04:31 -0400219 printk(KERN_WARNING PREFIX
Bjorn Helgaas4a5e3632008-07-15 09:42:57 -0600220 "Blank _CRS EXT IRQ resource\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400221 return AE_OK;
Len Brown4be44fc2005-08-05 00:44:28 -0400222 }
223 *irq = p->interrupts[0];
224 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 }
Len Brownd4ec6c72006-01-26 17:23:38 -0500226 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 default:
Bjorn Helgaas4a5e3632008-07-15 09:42:57 -0600228 printk(KERN_ERR PREFIX "_CRS resource type 0x%x isn't an IRQ\n",
229 resource->type);
Patrick Mocheld550d982006-06-27 00:41:40 -0400230 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
Bjorn Helgaas4a5e3632008-07-15 09:42:57 -0600232
Patrick Mocheld550d982006-06-27 00:41:40 -0400233 return AE_CTRL_TERMINATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
235
236/*
237 * Run _CRS and set link->irq.active
238 *
239 * return value:
240 * 0 - success
241 * !0 - failure
242 */
Len Brown4be44fc2005-08-05 00:44:28 -0400243static int acpi_pci_link_get_current(struct acpi_pci_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
Len Brown4be44fc2005-08-05 00:44:28 -0400245 int result = 0;
Bjorn Helgaasc9d62442009-02-17 14:00:45 -0700246 acpi_status status;
Len Brown4be44fc2005-08-05 00:44:28 -0400247 int irq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 link->irq.active = 0;
250
251 /* in practice, status disabled is meaningless, ignore it */
252 if (acpi_strict) {
253 /* Query _STA, set link->device->status */
254 result = acpi_bus_get_status(link->device);
255 if (result) {
Len Brown64684632006-06-26 23:41:38 -0400256 printk(KERN_ERR PREFIX "Unable to read status\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 goto end;
258 }
259
260 if (!link->device->status.enabled) {
261 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Link disabled\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400262 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 }
264 }
265
266 /*
267 * Query and parse _CRS to get the current IRQ assignment.
268 */
269
Patrick Mochel67a71362006-05-19 16:54:42 -0400270 status = acpi_walk_resources(link->device->handle, METHOD_NAME__CRS,
Len Brown4be44fc2005-08-05 00:44:28 -0400271 acpi_pci_link_check_current, &irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400273 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _CRS"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 result = -ENODEV;
275 goto end;
276 }
277
278 if (acpi_strict && !irq) {
Len Brown64684632006-06-26 23:41:38 -0400279 printk(KERN_ERR PREFIX "_CRS returned 0\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 result = -ENODEV;
281 }
282
283 link->irq.active = irq;
284
285 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Link at IRQ %d \n", link->irq.active));
286
Len Brown4be44fc2005-08-05 00:44:28 -0400287 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400288 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289}
290
Len Brown4be44fc2005-08-05 00:44:28 -0400291static int acpi_pci_link_set(struct acpi_pci_link *link, int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
Bjorn Helgaasc9d62442009-02-17 14:00:45 -0700293 int result;
294 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 struct {
Len Brown4be44fc2005-08-05 00:44:28 -0400296 struct acpi_resource res;
297 struct acpi_resource end;
298 } *resource;
299 struct acpi_buffer buffer = { 0, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Bjorn Helgaas6eca4b42009-02-17 14:00:50 -0700301 if (!irq)
Patrick Mocheld550d982006-06-27 00:41:40 -0400302 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Burman Yan36bcbec2006-12-19 12:56:11 -0800304 resource = kzalloc(sizeof(*resource) + 1, irqs_disabled() ? GFP_ATOMIC: GFP_KERNEL);
Len Brown4be44fc2005-08-05 00:44:28 -0400305 if (!resource)
Patrick Mocheld550d982006-06-27 00:41:40 -0400306 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Len Brown4be44fc2005-08-05 00:44:28 -0400308 buffer.length = sizeof(*resource) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 buffer.pointer = resource;
310
Len Brown4be44fc2005-08-05 00:44:28 -0400311 switch (link->irq.resource_type) {
Bob Moore50eca3e2005-09-30 19:03:00 -0400312 case ACPI_RESOURCE_TYPE_IRQ:
313 resource->res.type = ACPI_RESOURCE_TYPE_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 resource->res.length = sizeof(struct acpi_resource);
Bob Moore50eca3e2005-09-30 19:03:00 -0400315 resource->res.data.irq.triggering = link->irq.triggering;
316 resource->res.data.irq.polarity =
317 link->irq.polarity;
318 if (link->irq.triggering == ACPI_EDGE_SENSITIVE)
319 resource->res.data.irq.sharable =
Len Brown4be44fc2005-08-05 00:44:28 -0400320 ACPI_EXCLUSIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 else
Bob Moore50eca3e2005-09-30 19:03:00 -0400322 resource->res.data.irq.sharable = ACPI_SHARED;
323 resource->res.data.irq.interrupt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 resource->res.data.irq.interrupts[0] = irq;
325 break;
Len Brown4be44fc2005-08-05 00:44:28 -0400326
Bob Moore50eca3e2005-09-30 19:03:00 -0400327 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
328 resource->res.type = ACPI_RESOURCE_TYPE_EXTENDED_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 resource->res.length = sizeof(struct acpi_resource);
Len Brown4be44fc2005-08-05 00:44:28 -0400330 resource->res.data.extended_irq.producer_consumer =
331 ACPI_CONSUMER;
Bob Moore50eca3e2005-09-30 19:03:00 -0400332 resource->res.data.extended_irq.triggering =
333 link->irq.triggering;
334 resource->res.data.extended_irq.polarity =
335 link->irq.polarity;
336 if (link->irq.triggering == ACPI_EDGE_SENSITIVE)
337 resource->res.data.irq.sharable =
Len Brown4be44fc2005-08-05 00:44:28 -0400338 ACPI_EXCLUSIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 else
Bob Moore50eca3e2005-09-30 19:03:00 -0400340 resource->res.data.irq.sharable = ACPI_SHARED;
341 resource->res.data.extended_irq.interrupt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 resource->res.data.extended_irq.interrupts[0] = irq;
343 /* ignore resource_source, it's optional */
344 break;
345 default:
Len Brown64684632006-06-26 23:41:38 -0400346 printk(KERN_ERR PREFIX "Invalid Resource_type %d\n", link->irq.resource_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 result = -EINVAL;
348 goto end;
349
350 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400351 resource->end.type = ACPI_RESOURCE_TYPE_END_TAG;
Yinghai Luf084dbb2013-03-23 19:16:37 +0000352 resource->end.length = sizeof(struct acpi_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354 /* Attempt to set the resource */
Patrick Mochel67a71362006-05-19 16:54:42 -0400355 status = acpi_set_current_resources(link->device->handle, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 /* check for total failure */
358 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400359 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _SRS"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 result = -ENODEV;
361 goto end;
362 }
363
364 /* Query _STA, set device->status */
365 result = acpi_bus_get_status(link->device);
366 if (result) {
Len Brown64684632006-06-26 23:41:38 -0400367 printk(KERN_ERR PREFIX "Unable to read status\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 goto end;
369 }
370 if (!link->device->status.enabled) {
Len Browncece9292006-06-26 23:04:31 -0400371 printk(KERN_WARNING PREFIX
372 "%s [%s] disabled and referenced, BIOS bug\n",
Thomas Renningera6fc6722006-06-26 23:58:43 -0400373 acpi_device_name(link->device),
Len Browncece9292006-06-26 23:04:31 -0400374 acpi_device_bid(link->device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 }
376
377 /* Query _CRS, set link->irq.active */
378 result = acpi_pci_link_get_current(link);
379 if (result) {
380 goto end;
381 }
382
383 /*
384 * Is current setting not what we set?
385 * set link->irq.active
386 */
387 if (link->irq.active != irq) {
388 /*
389 * policy: when _CRS doesn't return what we just _SRS
390 * assume _SRS worked and override _CRS value.
391 */
Len Browncece9292006-06-26 23:04:31 -0400392 printk(KERN_WARNING PREFIX
393 "%s [%s] BIOS reported IRQ %d, using IRQ %d\n",
Thomas Renningera6fc6722006-06-26 23:58:43 -0400394 acpi_device_name(link->device),
Len Browncece9292006-06-26 23:04:31 -0400395 acpi_device_bid(link->device), link->irq.active, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 link->irq.active = irq;
397 }
398
399 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Set IRQ %d\n", link->irq.active));
Len Brown4be44fc2005-08-05 00:44:28 -0400400
401 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 kfree(resource);
Patrick Mocheld550d982006-06-27 00:41:40 -0400403 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404}
405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406/* --------------------------------------------------------------------------
407 PCI Link IRQ Management
408 -------------------------------------------------------------------------- */
409
410/*
411 * "acpi_irq_balance" (default in APIC mode) enables ACPI to use PIC Interrupt
412 * Link Devices to move the PIRQs around to minimize sharing.
413 *
414 * "acpi_irq_nobalance" (default in PIC mode) tells ACPI not to move any PIC IRQs
415 * that the BIOS has already set to active. This is necessary because
416 * ACPI has no automatic means of knowing what ISA IRQs are used. Note that
417 * if the BIOS doesn't set a Link Device active, ACPI needs to program it
418 * even if acpi_irq_nobalance is set.
419 *
420 * A tables of penalties avoids directing PCI interrupts to well known
421 * ISA IRQs. Boot params are available to over-ride the default table:
422 *
423 * List interrupts that are free for PCI use.
424 * acpi_irq_pci=n[,m]
425 *
426 * List interrupts that should not be used for PCI:
427 * acpi_irq_isa=n[,m]
428 *
429 * Note that PCI IRQ routers have a list of possible IRQs,
430 * which may not include the IRQs this table says are available.
431 *
432 * Since this heuristic can't tell the difference between a link
433 * that no device will attach to, vs. a link which may be shared
434 * by multiple active devices -- it is not optimal.
435 *
436 * If interrupt performance is that important, get an IO-APIC system
437 * with a pin dedicated to each device. Or for that matter, an MSI
438 * enabled system.
439 */
440
Sinan Kaya5c5087a2016-04-17 13:36:54 -0400441#define ACPI_MAX_ISA_IRQS 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443#define PIRQ_PENALTY_PCI_POSSIBLE (16*16)
444#define PIRQ_PENALTY_PCI_USING (16*16*16)
445#define PIRQ_PENALTY_ISA_TYPICAL (16*16*16*16)
446#define PIRQ_PENALTY_ISA_USED (16*16*16*16*16)
447#define PIRQ_PENALTY_ISA_ALWAYS (16*16*16*16*16*16)
448
Sinan Kaya5c5087a2016-04-17 13:36:54 -0400449static int acpi_isa_irq_penalty[ACPI_MAX_ISA_IRQS] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 PIRQ_PENALTY_ISA_ALWAYS, /* IRQ0 timer */
451 PIRQ_PENALTY_ISA_ALWAYS, /* IRQ1 keyboard */
452 PIRQ_PENALTY_ISA_ALWAYS, /* IRQ2 cascade */
Len Brown4be44fc2005-08-05 00:44:28 -0400453 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ3 serial */
454 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ4 serial */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ5 sometimes SoundBlaster */
456 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ6 */
457 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ7 parallel, spurious */
458 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ8 rtc, sometimes */
Sinan Kaya103544d2016-04-17 13:36:53 -0400459 0, /* IRQ9 PCI, often acpi */
460 0, /* IRQ10 PCI */
461 0, /* IRQ11 PCI */
Bjorn Helgaas1c9ca3a2009-02-17 14:00:40 -0700462 PIRQ_PENALTY_ISA_USED, /* IRQ12 mouse */
463 PIRQ_PENALTY_ISA_USED, /* IRQ13 fpe, sometimes */
464 PIRQ_PENALTY_ISA_USED, /* IRQ14 ide0 */
465 PIRQ_PENALTY_ISA_USED, /* IRQ15 ide1 */
Rafael J. Wysockie2497142016-02-24 13:55:38 +0100466 /* >IRQ15 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467};
468
Sinan Kaya103544d2016-04-17 13:36:53 -0400469static int acpi_irq_pci_sharing_penalty(int irq)
470{
471 struct acpi_pci_link *link;
472 int penalty = 0;
Sinan Kaya4a6e68b2016-06-29 04:27:35 -0400473 int i;
Sinan Kaya103544d2016-04-17 13:36:53 -0400474
475 list_for_each_entry(link, &acpi_link_list, list) {
476 /*
477 * If a link is active, penalize its IRQ heavily
478 * so we try to choose a different IRQ.
479 */
480 if (link->irq.active && link->irq.active == irq)
481 penalty += PIRQ_PENALTY_PCI_USING;
Sinan Kaya103544d2016-04-17 13:36:53 -0400482
Sinan Kaya4a6e68b2016-06-29 04:27:35 -0400483 /*
484 * penalize the IRQs PCI might use, but not as severely.
485 */
486 for (i = 0; i < link->irq.possible_count; i++)
487 if (link->irq.possible[i] == irq)
488 penalty += PIRQ_PENALTY_PCI_POSSIBLE /
489 link->irq.possible_count;
Sinan Kaya103544d2016-04-17 13:36:53 -0400490 }
491
492 return penalty;
493}
494
495static int acpi_irq_get_penalty(int irq)
496{
497 int penalty = 0;
498
Sinan Kaya103544d2016-04-17 13:36:53 -0400499 /*
500 * Penalize IRQ used by ACPI SCI. If ACPI SCI pin attributes conflict
501 * with PCI IRQ attributes, mark ACPI SCI as ISA_ALWAYS so it won't be
502 * use for PCI IRQs.
503 */
504 if (irq == acpi_gbl_FADT.sci_interrupt) {
505 u32 type = irq_get_trigger_type(irq) & IRQ_TYPE_SENSE_MASK;
506
507 if (type != IRQ_TYPE_LEVEL_LOW)
508 penalty += PIRQ_PENALTY_ISA_ALWAYS;
509 else
510 penalty += PIRQ_PENALTY_PCI_USING;
511 }
512
Sinan Kayaf7eca372016-06-29 04:27:37 -0400513 if (irq < ACPI_MAX_ISA_IRQS)
514 return penalty + acpi_isa_irq_penalty[irq];
515
Sinan Kaya103544d2016-04-17 13:36:53 -0400516 penalty += acpi_irq_pci_sharing_penalty(irq);
517 return penalty;
518}
519
Sinan Kaya487cf9172016-06-29 04:27:36 -0400520int __init acpi_irq_penalty_init(void)
521{
522 struct acpi_pci_link *link;
523 int i;
524
525 /*
526 * Update penalties to facilitate IRQ balancing.
527 */
528 list_for_each_entry(link, &acpi_link_list, list) {
529
530 /*
531 * reflect the possible and active irqs in the penalty table --
532 * useful for breaking ties.
533 */
534 if (link->irq.possible_count) {
535 int penalty =
536 PIRQ_PENALTY_PCI_POSSIBLE /
537 link->irq.possible_count;
538
539 for (i = 0; i < link->irq.possible_count; i++) {
540 if (link->irq.possible[i] < ACPI_MAX_ISA_IRQS)
541 acpi_isa_irq_penalty[link->irq.
542 possible[i]] +=
543 penalty;
544 }
545
546 } else if (link->irq.active &&
547 (link->irq.active < ACPI_MAX_ISA_IRQS)) {
548 acpi_isa_irq_penalty[link->irq.active] +=
549 PIRQ_PENALTY_PCI_POSSIBLE;
550 }
551 }
552
553 return 0;
554}
555
Bjorn Helgaas32836252008-11-05 16:17:52 -0700556static int acpi_irq_balance = -1; /* 0: static, 1: balance */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Len Brown4be44fc2005-08-05 00:44:28 -0400558static int acpi_pci_link_allocate(struct acpi_pci_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
Len Brown4be44fc2005-08-05 00:44:28 -0400560 int irq;
561 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
David Shaohua Li87bec662005-07-27 23:02:00 -0400563 if (link->irq.initialized) {
564 if (link->refcnt == 0)
565 /* This means the link is disabled but initialized */
566 acpi_pci_link_set(link, link->irq.active);
Patrick Mocheld550d982006-06-27 00:41:40 -0400567 return 0;
David Shaohua Li87bec662005-07-27 23:02:00 -0400568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570 /*
571 * search for active IRQ in list of possible IRQs.
572 */
573 for (i = 0; i < link->irq.possible_count; ++i) {
574 if (link->irq.active == link->irq.possible[i])
575 break;
576 }
577 /*
578 * forget active IRQ that is not in possible list
579 */
580 if (i == link->irq.possible_count) {
581 if (acpi_strict)
Len Browncece9292006-06-26 23:04:31 -0400582 printk(KERN_WARNING PREFIX "_CRS %d not found"
583 " in _PRS\n", link->irq.active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 link->irq.active = 0;
585 }
586
587 /*
588 * if active found, use it; else pick entry from end of possible list.
589 */
Bjorn Helgaas1c9ca3a2009-02-17 14:00:40 -0700590 if (link->irq.active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 irq = link->irq.active;
Bjorn Helgaas1c9ca3a2009-02-17 14:00:40 -0700592 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 irq = link->irq.possible[link->irq.possible_count - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595 if (acpi_irq_balance || !link->irq.active) {
596 /*
597 * Select the best IRQ. This is done in reverse to promote
598 * the use of IRQs 9, 10, 11, and >15.
599 */
600 for (i = (link->irq.possible_count - 1); i >= 0; i--) {
Sinan Kaya103544d2016-04-17 13:36:53 -0400601 if (acpi_irq_get_penalty(irq) >
602 acpi_irq_get_penalty(link->irq.possible[i]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 irq = link->irq.possible[i];
604 }
605 }
Sinan Kaya103544d2016-04-17 13:36:53 -0400606 if (acpi_irq_get_penalty(irq) >= PIRQ_PENALTY_ISA_ALWAYS) {
Jiang Liu5ebc7602015-09-17 14:02:45 +0800607 printk(KERN_ERR PREFIX "No IRQ available for %s [%s]. "
608 "Try pci=noacpi or acpi=off\n",
609 acpi_device_name(link->device),
610 acpi_device_bid(link->device));
611 return -ENODEV;
612 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614 /* Attempt to enable the link device at this IRQ. */
615 if (acpi_pci_link_set(link, irq)) {
Len Brown64684632006-06-26 23:41:38 -0400616 printk(KERN_ERR PREFIX "Unable to set IRQ for %s [%s]. "
617 "Try pci=noacpi or acpi=off\n",
Thomas Renningera6fc6722006-06-26 23:58:43 -0400618 acpi_device_name(link->device),
Len Brown64684632006-06-26 23:41:38 -0400619 acpi_device_bid(link->device));
Patrick Mocheld550d982006-06-27 00:41:40 -0400620 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 } else {
Frank Seidel4d939152009-02-04 17:03:07 +0100622 printk(KERN_WARNING PREFIX "%s [%s] enabled at IRQ %d\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400623 acpi_device_name(link->device),
624 acpi_device_bid(link->device), link->irq.active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
626
627 link->irq.initialized = 1;
Patrick Mocheld550d982006-06-27 00:41:40 -0400628 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
631/*
David Shaohua Li87bec662005-07-27 23:02:00 -0400632 * acpi_pci_link_allocate_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 * success: return IRQ >= 0
634 * failure: return -1
635 */
Bjorn Helgaas1c9ca3a2009-02-17 14:00:40 -0700636int acpi_pci_link_allocate_irq(acpi_handle handle, int index, int *triggering,
637 int *polarity, char **name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
Bjorn Helgaasc9d62442009-02-17 14:00:45 -0700639 int result;
640 struct acpi_device *device;
641 struct acpi_pci_link *link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 result = acpi_bus_get_device(handle, &device);
644 if (result) {
Len Brown64684632006-06-26 23:41:38 -0400645 printk(KERN_ERR PREFIX "Invalid link device\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400646 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 }
648
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200649 link = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 if (!link) {
Len Brown64684632006-06-26 23:41:38 -0400651 printk(KERN_ERR PREFIX "Invalid link context\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400652 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 }
654
655 /* TBD: Support multiple index (IRQ) entries per Link Device */
656 if (index) {
Len Brown64684632006-06-26 23:41:38 -0400657 printk(KERN_ERR PREFIX "Invalid index %d\n", index);
Patrick Mocheld550d982006-06-27 00:41:40 -0400658 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 }
660
Ingo Molnar36e43092006-04-27 05:25:00 -0400661 mutex_lock(&acpi_link_lock);
David Shaohua Li87bec662005-07-27 23:02:00 -0400662 if (acpi_pci_link_allocate(link)) {
Ingo Molnar36e43092006-04-27 05:25:00 -0400663 mutex_unlock(&acpi_link_lock);
Patrick Mocheld550d982006-06-27 00:41:40 -0400664 return -1;
David Shaohua Li87bec662005-07-27 23:02:00 -0400665 }
Len Brown4be44fc2005-08-05 00:44:28 -0400666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 if (!link->irq.active) {
Ingo Molnar36e43092006-04-27 05:25:00 -0400668 mutex_unlock(&acpi_link_lock);
Len Brown64684632006-06-26 23:41:38 -0400669 printk(KERN_ERR PREFIX "Link active IRQ is 0!\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400670 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 }
Len Brown4be44fc2005-08-05 00:44:28 -0400672 link->refcnt++;
Ingo Molnar36e43092006-04-27 05:25:00 -0400673 mutex_unlock(&acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Bob Moore50eca3e2005-09-30 19:03:00 -0400675 if (triggering)
676 *triggering = link->irq.triggering;
677 if (polarity)
678 *polarity = link->irq.polarity;
Len Brown4be44fc2005-08-05 00:44:28 -0400679 if (name)
680 *name = acpi_device_bid(link->device);
David Shaohua Li87bec662005-07-27 23:02:00 -0400681 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400682 "Link %s is referenced\n",
683 acpi_device_bid(link->device)));
Patrick Mocheld550d982006-06-27 00:41:40 -0400684 return (link->irq.active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685}
686
David Shaohua Li87bec662005-07-27 23:02:00 -0400687/*
688 * We don't change link's irq information here. After it is reenabled, we
689 * continue use the info
690 */
Len Brown4be44fc2005-08-05 00:44:28 -0400691int acpi_pci_link_free_irq(acpi_handle handle)
David Shaohua Li87bec662005-07-27 23:02:00 -0400692{
Bjorn Helgaasc9d62442009-02-17 14:00:45 -0700693 struct acpi_device *device;
694 struct acpi_pci_link *link;
Len Brown4be44fc2005-08-05 00:44:28 -0400695 acpi_status result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
David Shaohua Li87bec662005-07-27 23:02:00 -0400697 result = acpi_bus_get_device(handle, &device);
698 if (result) {
Len Brown64684632006-06-26 23:41:38 -0400699 printk(KERN_ERR PREFIX "Invalid link device\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400700 return -1;
David Shaohua Li87bec662005-07-27 23:02:00 -0400701 }
702
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200703 link = acpi_driver_data(device);
David Shaohua Li87bec662005-07-27 23:02:00 -0400704 if (!link) {
Len Brown64684632006-06-26 23:41:38 -0400705 printk(KERN_ERR PREFIX "Invalid link context\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400706 return -1;
David Shaohua Li87bec662005-07-27 23:02:00 -0400707 }
708
Ingo Molnar36e43092006-04-27 05:25:00 -0400709 mutex_lock(&acpi_link_lock);
David Shaohua Li87bec662005-07-27 23:02:00 -0400710 if (!link->irq.initialized) {
Ingo Molnar36e43092006-04-27 05:25:00 -0400711 mutex_unlock(&acpi_link_lock);
Len Brown64684632006-06-26 23:41:38 -0400712 printk(KERN_ERR PREFIX "Link isn't initialized\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400713 return -1;
David Shaohua Li87bec662005-07-27 23:02:00 -0400714 }
David Shaohua Liecc21eb2005-08-03 11:00:11 -0400715#ifdef FUTURE_USE
716 /*
717 * The Link reference count allows us to _DISable an unused link
718 * and suspend time, and set it again on resume.
719 * However, 2.6.12 still has irq_router.resume
720 * which blindly restores the link state.
721 * So we disable the reference count method
722 * to prevent duplicate acpi_pci_link_set()
723 * which would harm some systems
724 */
Len Brown4be44fc2005-08-05 00:44:28 -0400725 link->refcnt--;
David Shaohua Liecc21eb2005-08-03 11:00:11 -0400726#endif
David Shaohua Li87bec662005-07-27 23:02:00 -0400727 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400728 "Link %s is dereferenced\n",
729 acpi_device_bid(link->device)));
David Shaohua Li87bec662005-07-27 23:02:00 -0400730
Bjorn Helgaas1c9ca3a2009-02-17 14:00:40 -0700731 if (link->refcnt == 0)
donald.d.dugger@intel.com383d7a12008-10-17 07:49:50 -0700732 acpi_evaluate_object(link->device->handle, "_DIS", NULL, NULL);
Bjorn Helgaas1c9ca3a2009-02-17 14:00:40 -0700733
Ingo Molnar36e43092006-04-27 05:25:00 -0400734 mutex_unlock(&acpi_link_lock);
Patrick Mocheld550d982006-06-27 00:41:40 -0400735 return (link->irq.active);
David Shaohua Li87bec662005-07-27 23:02:00 -0400736}
Len Brown4be44fc2005-08-05 00:44:28 -0400737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738/* --------------------------------------------------------------------------
739 Driver Interface
740 -------------------------------------------------------------------------- */
741
Rafael J. Wysocki4daeaf62013-01-30 14:27:37 +0100742static int acpi_pci_link_add(struct acpi_device *device,
743 const struct acpi_device_id *not_used)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744{
Bjorn Helgaasc9d62442009-02-17 14:00:45 -0700745 int result;
746 struct acpi_pci_link *link;
747 int i;
Len Brown4be44fc2005-08-05 00:44:28 -0400748 int found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Burman Yan36bcbec2006-12-19 12:56:11 -0800750 link = kzalloc(sizeof(struct acpi_pci_link), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 if (!link)
Patrick Mocheld550d982006-06-27 00:41:40 -0400752 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
754 link->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 strcpy(acpi_device_name(device), ACPI_PCI_LINK_DEVICE_NAME);
756 strcpy(acpi_device_class(device), ACPI_PCI_LINK_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700757 device->driver_data = link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Ingo Molnar36e43092006-04-27 05:25:00 -0400759 mutex_lock(&acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 result = acpi_pci_link_get_possible(link);
761 if (result)
762 goto end;
763
764 /* query and set link->irq.active */
765 acpi_pci_link_get_current(link);
766
Dan Aloni0dc070b2007-07-09 11:33:18 -0700767 printk(KERN_INFO PREFIX "%s [%s] (IRQs", acpi_device_name(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400768 acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 for (i = 0; i < link->irq.possible_count; i++) {
770 if (link->irq.active == link->irq.possible[i]) {
Kay Sieversbe964472012-05-08 17:24:20 +0200771 printk(KERN_CONT " *%d", link->irq.possible[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 found = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400773 } else
Kay Sieversbe964472012-05-08 17:24:20 +0200774 printk(KERN_CONT " %d", link->irq.possible[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 }
776
Kay Sieversbe964472012-05-08 17:24:20 +0200777 printk(KERN_CONT ")");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
779 if (!found)
Kay Sieversbe964472012-05-08 17:24:20 +0200780 printk(KERN_CONT " *%d", link->irq.active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Len Brown4be44fc2005-08-05 00:44:28 -0400782 if (!link->device->status.enabled)
Kay Sieversbe964472012-05-08 17:24:20 +0200783 printk(KERN_CONT ", disabled.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
Kay Sieversbe964472012-05-08 17:24:20 +0200785 printk(KERN_CONT "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Bjorn Helgaas5f0dcca2009-02-17 14:00:55 -0700787 list_add_tail(&link->list, &acpi_link_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Len Brown4be44fc2005-08-05 00:44:28 -0400789 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 /* disable all links -- to be activated on use */
donald.d.dugger@intel.com383d7a12008-10-17 07:49:50 -0700791 acpi_evaluate_object(device->handle, "_DIS", NULL, NULL);
Ingo Molnar36e43092006-04-27 05:25:00 -0400792 mutex_unlock(&acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794 if (result)
795 kfree(link);
796
Rafael J. Wysocki4daeaf62013-01-30 14:27:37 +0100797 return result < 0 ? result : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798}
799
Len Brown4be44fc2005-08-05 00:44:28 -0400800static int acpi_pci_link_resume(struct acpi_pci_link *link)
Linus Torvalds697a2d62005-08-01 12:37:54 -0700801{
Linus Torvalds697a2d62005-08-01 12:37:54 -0700802 if (link->refcnt && link->irq.active && link->irq.initialized)
Patrick Mocheld550d982006-06-27 00:41:40 -0400803 return (acpi_pci_link_set(link, link->irq.active));
Bjorn Helgaas1c9ca3a2009-02-17 14:00:40 -0700804
805 return 0;
Linus Torvalds697a2d62005-08-01 12:37:54 -0700806}
807
Rafael J. Wysockic3146df2011-03-12 22:16:51 +0100808static void irqrouter_resume(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
Bjorn Helgaasc9d62442009-02-17 14:00:45 -0700810 struct acpi_pci_link *link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Bjorn Helgaas5f0dcca2009-02-17 14:00:55 -0700812 list_for_each_entry(link, &acpi_link_list, list) {
Linus Torvalds697a2d62005-08-01 12:37:54 -0700813 acpi_pci_link_resume(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815}
816
Rafael J. Wysocki4daeaf62013-01-30 14:27:37 +0100817static void acpi_pci_link_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
Bjorn Helgaasc9d62442009-02-17 14:00:45 -0700819 struct acpi_pci_link *link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200821 link = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Ingo Molnar36e43092006-04-27 05:25:00 -0400823 mutex_lock(&acpi_link_lock);
Bjorn Helgaas5f0dcca2009-02-17 14:00:55 -0700824 list_del(&link->list);
Ingo Molnar36e43092006-04-27 05:25:00 -0400825 mutex_unlock(&acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827 kfree(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828}
829
830/*
Sinan Kaya5c5087a2016-04-17 13:36:54 -0400831 * modify acpi_isa_irq_penalty[] from cmdline
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 */
833static int __init acpi_irq_penalty_update(char *str, int used)
834{
835 int i;
836
837 for (i = 0; i < 16; i++) {
838 int retval;
839 int irq;
Sinan Kaya5c5087a2016-04-17 13:36:54 -0400840 int new_penalty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Len Brown4be44fc2005-08-05 00:44:28 -0400842 retval = get_option(&str, &irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
844 if (!retval)
845 break; /* no number found */
846
Sinan Kaya5c5087a2016-04-17 13:36:54 -0400847 /* see if this is a ISA IRQ */
848 if ((irq < 0) || (irq >= ACPI_MAX_ISA_IRQS))
Rafael J. Wysockie2497142016-02-24 13:55:38 +0100849 continue;
850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 if (used)
Sinan Kaya5c5087a2016-04-17 13:36:54 -0400852 new_penalty = acpi_irq_get_penalty(irq) +
853 PIRQ_PENALTY_ISA_USED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 else
Sinan Kaya5c5087a2016-04-17 13:36:54 -0400855 new_penalty = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Sinan Kaya5c5087a2016-04-17 13:36:54 -0400857 acpi_isa_irq_penalty[irq] = new_penalty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 if (retval != 2) /* no next number */
859 break;
860 }
861 return 1;
862}
863
864/*
865 * We'd like PNP to call this routine for the
866 * single ISA_USED value for each legacy device.
867 * But instead it calls us with each POSSIBLE setting.
868 * There is no ISA_POSSIBLE weight, so we simply use
869 * the (small) PCI_USING penalty.
870 */
David Shaohua Lic9c3e452005-04-01 00:07:31 -0500871void acpi_penalize_isa_irq(int irq, int active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872{
Sinan Kaya5c5087a2016-04-17 13:36:54 -0400873 if ((irq >= 0) && (irq < ARRAY_SIZE(acpi_isa_irq_penalty)))
874 acpi_isa_irq_penalty[irq] = acpi_irq_get_penalty(irq) +
Sinan Kaya54794582016-06-29 04:27:38 -0400875 (active ? PIRQ_PENALTY_ISA_USED : PIRQ_PENALTY_PCI_USING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876}
877
Jiang Liu5ebc7602015-09-17 14:02:45 +0800878bool acpi_isa_irq_available(int irq)
879{
Sinan Kaya5c5087a2016-04-17 13:36:54 -0400880 return irq >= 0 && (irq >= ARRAY_SIZE(acpi_isa_irq_penalty) ||
Sinan Kaya103544d2016-04-17 13:36:53 -0400881 acpi_irq_get_penalty(irq) < PIRQ_PENALTY_ISA_ALWAYS);
Jiang Liu5ebc7602015-09-17 14:02:45 +0800882}
883
Jiang Liu5d0ddfe2015-08-21 15:36:23 +0800884/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 * Over-ride default table to reserve additional IRQs for use by ISA
886 * e.g. acpi_irq_isa=5
887 * Useful for telling ACPI how not to interfere with your ISA sound card.
888 */
889static int __init acpi_irq_isa(char *str)
890{
891 return acpi_irq_penalty_update(str, 1);
892}
Len Brown4be44fc2005-08-05 00:44:28 -0400893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894__setup("acpi_irq_isa=", acpi_irq_isa);
895
896/*
897 * Over-ride default table to free additional IRQs for use by PCI
898 * e.g. acpi_irq_pci=7,15
899 * Used for acpi_irq_balance to free up IRQs to reduce PCI IRQ sharing.
900 */
901static int __init acpi_irq_pci(char *str)
902{
903 return acpi_irq_penalty_update(str, 0);
904}
Len Brown4be44fc2005-08-05 00:44:28 -0400905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906__setup("acpi_irq_pci=", acpi_irq_pci);
907
908static int __init acpi_irq_nobalance_set(char *str)
909{
910 acpi_irq_balance = 0;
911 return 1;
912}
Len Brown4be44fc2005-08-05 00:44:28 -0400913
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914__setup("acpi_irq_nobalance", acpi_irq_nobalance_set);
915
Roel Kluin8a383ef2008-12-09 20:45:30 +0100916static int __init acpi_irq_balance_set(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917{
918 acpi_irq_balance = 1;
919 return 1;
920}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Len Brown4be44fc2005-08-05 00:44:28 -0400922__setup("acpi_irq_balance", acpi_irq_balance_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Rafael J. Wysockic3146df2011-03-12 22:16:51 +0100924static struct syscore_ops irqrouter_syscore_ops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400925 .resume = irqrouter_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926};
927
Rafael J. Wysocki4daeaf62013-01-30 14:27:37 +0100928void __init acpi_pci_link_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 if (acpi_noirq)
Rafael J. Wysocki4daeaf62013-01-30 14:27:37 +0100931 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Bjorn Helgaas32836252008-11-05 16:17:52 -0700933 if (acpi_irq_balance == -1) {
934 /* no command line switch: enable balancing in IOAPIC mode */
935 if (acpi_irq_model == ACPI_IRQ_MODEL_IOAPIC)
936 acpi_irq_balance = 1;
937 else
938 acpi_irq_balance = 0;
939 }
Rafael J. Wysocki4daeaf62013-01-30 14:27:37 +0100940 register_syscore_ops(&irqrouter_syscore_ops);
941 acpi_scan_add_handler(&pci_link_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942}