blob: cc0ba1651db11323df5c128e88f7fd4a831e1f34 [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. Wysockic3146df22011-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
Rafael J. Wysockie2497142016-02-24 13:55:38 +0100441#define ACPI_MAX_IRQS 256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442#define ACPI_MAX_ISA_IRQ 16
443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444#define PIRQ_PENALTY_PCI_POSSIBLE (16*16)
445#define PIRQ_PENALTY_PCI_USING (16*16*16)
446#define PIRQ_PENALTY_ISA_TYPICAL (16*16*16*16)
447#define PIRQ_PENALTY_ISA_USED (16*16*16*16*16)
448#define PIRQ_PENALTY_ISA_ALWAYS (16*16*16*16*16*16)
449
Rafael J. Wysockie2497142016-02-24 13:55:38 +0100450static int acpi_irq_penalty[ACPI_MAX_IRQS] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 PIRQ_PENALTY_ISA_ALWAYS, /* IRQ0 timer */
452 PIRQ_PENALTY_ISA_ALWAYS, /* IRQ1 keyboard */
453 PIRQ_PENALTY_ISA_ALWAYS, /* IRQ2 cascade */
Len Brown4be44fc2005-08-05 00:44:28 -0400454 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ3 serial */
455 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ4 serial */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ5 sometimes SoundBlaster */
457 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ6 */
458 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ7 parallel, spurious */
459 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ8 rtc, sometimes */
Sinan Kaya103544d2016-04-17 13:36:53 -0400460 0, /* IRQ9 PCI, often acpi */
461 0, /* IRQ10 PCI */
462 0, /* IRQ11 PCI */
Bjorn Helgaas1c9ca3a2009-02-17 14:00:40 -0700463 PIRQ_PENALTY_ISA_USED, /* IRQ12 mouse */
464 PIRQ_PENALTY_ISA_USED, /* IRQ13 fpe, sometimes */
465 PIRQ_PENALTY_ISA_USED, /* IRQ14 ide0 */
466 PIRQ_PENALTY_ISA_USED, /* IRQ15 ide1 */
Rafael J. Wysockie2497142016-02-24 13:55:38 +0100467 /* >IRQ15 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468};
469
Sinan Kaya103544d2016-04-17 13:36:53 -0400470static int acpi_irq_pci_sharing_penalty(int irq)
471{
472 struct acpi_pci_link *link;
473 int penalty = 0;
474
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;
482 else {
483 int i;
484
485 /*
486 * If a link is inactive, penalize the IRQs it
487 * might use, but not as severely.
488 */
489 for (i = 0; i < link->irq.possible_count; i++)
490 if (link->irq.possible[i] == irq)
491 penalty += PIRQ_PENALTY_PCI_POSSIBLE /
492 link->irq.possible_count;
493 }
494 }
495
496 return penalty;
497}
498
499static int acpi_irq_get_penalty(int irq)
500{
501 int penalty = 0;
502
503 if (irq < ACPI_MAX_ISA_IRQ)
504 penalty += acpi_irq_penalty[irq];
505
506 /*
507 * Penalize IRQ used by ACPI SCI. If ACPI SCI pin attributes conflict
508 * with PCI IRQ attributes, mark ACPI SCI as ISA_ALWAYS so it won't be
509 * use for PCI IRQs.
510 */
511 if (irq == acpi_gbl_FADT.sci_interrupt) {
512 u32 type = irq_get_trigger_type(irq) & IRQ_TYPE_SENSE_MASK;
513
514 if (type != IRQ_TYPE_LEVEL_LOW)
515 penalty += PIRQ_PENALTY_ISA_ALWAYS;
516 else
517 penalty += PIRQ_PENALTY_PCI_USING;
518 }
519
520 penalty += acpi_irq_pci_sharing_penalty(irq);
521 return penalty;
522}
523
Len Brown4be44fc2005-08-05 00:44:28 -0400524int __init acpi_irq_penalty_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
Bjorn Helgaasc9d62442009-02-17 14:00:45 -0700526 struct acpi_pci_link *link;
527 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 /*
530 * Update penalties to facilitate IRQ balancing.
531 */
Bjorn Helgaas5f0dcca2009-02-17 14:00:55 -0700532 list_for_each_entry(link, &acpi_link_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534 /*
535 * reflect the possible and active irqs in the penalty table --
536 * useful for breaking ties.
537 */
538 if (link->irq.possible_count) {
Len Brown4be44fc2005-08-05 00:44:28 -0400539 int penalty =
540 PIRQ_PENALTY_PCI_POSSIBLE /
541 link->irq.possible_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 for (i = 0; i < link->irq.possible_count; i++) {
Rafael J. Wysockie2497142016-02-24 13:55:38 +0100544 if (link->irq.possible[i] < ACPI_MAX_ISA_IRQ)
545 acpi_irq_penalty[link->irq.
546 possible[i]] +=
547 penalty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
549
550 } else if (link->irq.active) {
Rafael J. Wysockie2497142016-02-24 13:55:38 +0100551 acpi_irq_penalty[link->irq.active] +=
552 PIRQ_PENALTY_PCI_POSSIBLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 }
554 }
Jiang Liud323efc2015-09-17 14:02:46 +0800555
Patrick Mocheld550d982006-06-27 00:41:40 -0400556 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557}
558
Bjorn Helgaas32836252008-11-05 16:17:52 -0700559static int acpi_irq_balance = -1; /* 0: static, 1: balance */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Len Brown4be44fc2005-08-05 00:44:28 -0400561static int acpi_pci_link_allocate(struct acpi_pci_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
Len Brown4be44fc2005-08-05 00:44:28 -0400563 int irq;
564 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
David Shaohua Li87bec662005-07-27 23:02:00 -0400566 if (link->irq.initialized) {
567 if (link->refcnt == 0)
568 /* This means the link is disabled but initialized */
569 acpi_pci_link_set(link, link->irq.active);
Patrick Mocheld550d982006-06-27 00:41:40 -0400570 return 0;
David Shaohua Li87bec662005-07-27 23:02:00 -0400571 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 /*
574 * search for active IRQ in list of possible IRQs.
575 */
576 for (i = 0; i < link->irq.possible_count; ++i) {
577 if (link->irq.active == link->irq.possible[i])
578 break;
579 }
580 /*
581 * forget active IRQ that is not in possible list
582 */
583 if (i == link->irq.possible_count) {
584 if (acpi_strict)
Len Browncece9292006-06-26 23:04:31 -0400585 printk(KERN_WARNING PREFIX "_CRS %d not found"
586 " in _PRS\n", link->irq.active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 link->irq.active = 0;
588 }
589
590 /*
591 * if active found, use it; else pick entry from end of possible list.
592 */
Bjorn Helgaas1c9ca3a2009-02-17 14:00:40 -0700593 if (link->irq.active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 irq = link->irq.active;
Bjorn Helgaas1c9ca3a2009-02-17 14:00:40 -0700595 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 irq = link->irq.possible[link->irq.possible_count - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
598 if (acpi_irq_balance || !link->irq.active) {
599 /*
600 * Select the best IRQ. This is done in reverse to promote
601 * the use of IRQs 9, 10, 11, and >15.
602 */
603 for (i = (link->irq.possible_count - 1); i >= 0; i--) {
Sinan Kaya103544d2016-04-17 13:36:53 -0400604 if (acpi_irq_get_penalty(irq) >
605 acpi_irq_get_penalty(link->irq.possible[i]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 irq = link->irq.possible[i];
607 }
608 }
Sinan Kaya103544d2016-04-17 13:36:53 -0400609 if (acpi_irq_get_penalty(irq) >= PIRQ_PENALTY_ISA_ALWAYS) {
Jiang Liu5ebc7602015-09-17 14:02:45 +0800610 printk(KERN_ERR PREFIX "No IRQ available for %s [%s]. "
611 "Try pci=noacpi or acpi=off\n",
612 acpi_device_name(link->device),
613 acpi_device_bid(link->device));
614 return -ENODEV;
615 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
617 /* Attempt to enable the link device at this IRQ. */
618 if (acpi_pci_link_set(link, irq)) {
Len Brown64684632006-06-26 23:41:38 -0400619 printk(KERN_ERR PREFIX "Unable to set IRQ for %s [%s]. "
620 "Try pci=noacpi or acpi=off\n",
Thomas Renningera6fc6722006-06-26 23:58:43 -0400621 acpi_device_name(link->device),
Len Brown64684632006-06-26 23:41:38 -0400622 acpi_device_bid(link->device));
Patrick Mocheld550d982006-06-27 00:41:40 -0400623 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 } else {
Frank Seidel4d939152009-02-04 17:03:07 +0100625 printk(KERN_WARNING PREFIX "%s [%s] enabled at IRQ %d\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400626 acpi_device_name(link->device),
627 acpi_device_bid(link->device), link->irq.active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 }
629
630 link->irq.initialized = 1;
Patrick Mocheld550d982006-06-27 00:41:40 -0400631 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632}
633
634/*
David Shaohua Li87bec662005-07-27 23:02:00 -0400635 * acpi_pci_link_allocate_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 * success: return IRQ >= 0
637 * failure: return -1
638 */
Bjorn Helgaas1c9ca3a2009-02-17 14:00:40 -0700639int acpi_pci_link_allocate_irq(acpi_handle handle, int index, int *triggering,
640 int *polarity, char **name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
Bjorn Helgaasc9d62442009-02-17 14:00:45 -0700642 int result;
643 struct acpi_device *device;
644 struct acpi_pci_link *link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 result = acpi_bus_get_device(handle, &device);
647 if (result) {
Len Brown64684632006-06-26 23:41:38 -0400648 printk(KERN_ERR PREFIX "Invalid link device\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400649 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 }
651
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200652 link = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 if (!link) {
Len Brown64684632006-06-26 23:41:38 -0400654 printk(KERN_ERR PREFIX "Invalid link context\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400655 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 }
657
658 /* TBD: Support multiple index (IRQ) entries per Link Device */
659 if (index) {
Len Brown64684632006-06-26 23:41:38 -0400660 printk(KERN_ERR PREFIX "Invalid index %d\n", index);
Patrick Mocheld550d982006-06-27 00:41:40 -0400661 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 }
663
Ingo Molnar36e43092006-04-27 05:25:00 -0400664 mutex_lock(&acpi_link_lock);
David Shaohua Li87bec662005-07-27 23:02:00 -0400665 if (acpi_pci_link_allocate(link)) {
Ingo Molnar36e43092006-04-27 05:25:00 -0400666 mutex_unlock(&acpi_link_lock);
Patrick Mocheld550d982006-06-27 00:41:40 -0400667 return -1;
David Shaohua Li87bec662005-07-27 23:02:00 -0400668 }
Len Brown4be44fc2005-08-05 00:44:28 -0400669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 if (!link->irq.active) {
Ingo Molnar36e43092006-04-27 05:25:00 -0400671 mutex_unlock(&acpi_link_lock);
Len Brown64684632006-06-26 23:41:38 -0400672 printk(KERN_ERR PREFIX "Link active IRQ is 0!\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400673 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 }
Len Brown4be44fc2005-08-05 00:44:28 -0400675 link->refcnt++;
Ingo Molnar36e43092006-04-27 05:25:00 -0400676 mutex_unlock(&acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Bob Moore50eca3e2005-09-30 19:03:00 -0400678 if (triggering)
679 *triggering = link->irq.triggering;
680 if (polarity)
681 *polarity = link->irq.polarity;
Len Brown4be44fc2005-08-05 00:44:28 -0400682 if (name)
683 *name = acpi_device_bid(link->device);
David Shaohua Li87bec662005-07-27 23:02:00 -0400684 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400685 "Link %s is referenced\n",
686 acpi_device_bid(link->device)));
Patrick Mocheld550d982006-06-27 00:41:40 -0400687 return (link->irq.active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688}
689
David Shaohua Li87bec662005-07-27 23:02:00 -0400690/*
691 * We don't change link's irq information here. After it is reenabled, we
692 * continue use the info
693 */
Len Brown4be44fc2005-08-05 00:44:28 -0400694int acpi_pci_link_free_irq(acpi_handle handle)
David Shaohua Li87bec662005-07-27 23:02:00 -0400695{
Bjorn Helgaasc9d62442009-02-17 14:00:45 -0700696 struct acpi_device *device;
697 struct acpi_pci_link *link;
Len Brown4be44fc2005-08-05 00:44:28 -0400698 acpi_status result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
David Shaohua Li87bec662005-07-27 23:02:00 -0400700 result = acpi_bus_get_device(handle, &device);
701 if (result) {
Len Brown64684632006-06-26 23:41:38 -0400702 printk(KERN_ERR PREFIX "Invalid link device\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400703 return -1;
David Shaohua Li87bec662005-07-27 23:02:00 -0400704 }
705
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200706 link = acpi_driver_data(device);
David Shaohua Li87bec662005-07-27 23:02:00 -0400707 if (!link) {
Len Brown64684632006-06-26 23:41:38 -0400708 printk(KERN_ERR PREFIX "Invalid link context\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400709 return -1;
David Shaohua Li87bec662005-07-27 23:02:00 -0400710 }
711
Ingo Molnar36e43092006-04-27 05:25:00 -0400712 mutex_lock(&acpi_link_lock);
David Shaohua Li87bec662005-07-27 23:02:00 -0400713 if (!link->irq.initialized) {
Ingo Molnar36e43092006-04-27 05:25:00 -0400714 mutex_unlock(&acpi_link_lock);
Len Brown64684632006-06-26 23:41:38 -0400715 printk(KERN_ERR PREFIX "Link isn't initialized\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400716 return -1;
David Shaohua Li87bec662005-07-27 23:02:00 -0400717 }
David Shaohua Liecc21eb2005-08-03 11:00:11 -0400718#ifdef FUTURE_USE
719 /*
720 * The Link reference count allows us to _DISable an unused link
721 * and suspend time, and set it again on resume.
722 * However, 2.6.12 still has irq_router.resume
723 * which blindly restores the link state.
724 * So we disable the reference count method
725 * to prevent duplicate acpi_pci_link_set()
726 * which would harm some systems
727 */
Len Brown4be44fc2005-08-05 00:44:28 -0400728 link->refcnt--;
David Shaohua Liecc21eb2005-08-03 11:00:11 -0400729#endif
David Shaohua Li87bec662005-07-27 23:02:00 -0400730 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400731 "Link %s is dereferenced\n",
732 acpi_device_bid(link->device)));
David Shaohua Li87bec662005-07-27 23:02:00 -0400733
Bjorn Helgaas1c9ca3a2009-02-17 14:00:40 -0700734 if (link->refcnt == 0)
donald.d.dugger@intel.com383d7a12008-10-17 07:49:50 -0700735 acpi_evaluate_object(link->device->handle, "_DIS", NULL, NULL);
Bjorn Helgaas1c9ca3a2009-02-17 14:00:40 -0700736
Ingo Molnar36e43092006-04-27 05:25:00 -0400737 mutex_unlock(&acpi_link_lock);
Patrick Mocheld550d982006-06-27 00:41:40 -0400738 return (link->irq.active);
David Shaohua Li87bec662005-07-27 23:02:00 -0400739}
Len Brown4be44fc2005-08-05 00:44:28 -0400740
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741/* --------------------------------------------------------------------------
742 Driver Interface
743 -------------------------------------------------------------------------- */
744
Rafael J. Wysocki4daeaf62013-01-30 14:27:37 +0100745static int acpi_pci_link_add(struct acpi_device *device,
746 const struct acpi_device_id *not_used)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747{
Bjorn Helgaasc9d62442009-02-17 14:00:45 -0700748 int result;
749 struct acpi_pci_link *link;
750 int i;
Len Brown4be44fc2005-08-05 00:44:28 -0400751 int found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Burman Yan36bcbec2006-12-19 12:56:11 -0800753 link = kzalloc(sizeof(struct acpi_pci_link), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 if (!link)
Patrick Mocheld550d982006-06-27 00:41:40 -0400755 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
757 link->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 strcpy(acpi_device_name(device), ACPI_PCI_LINK_DEVICE_NAME);
759 strcpy(acpi_device_class(device), ACPI_PCI_LINK_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700760 device->driver_data = link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Ingo Molnar36e43092006-04-27 05:25:00 -0400762 mutex_lock(&acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 result = acpi_pci_link_get_possible(link);
764 if (result)
765 goto end;
766
767 /* query and set link->irq.active */
768 acpi_pci_link_get_current(link);
769
Dan Aloni0dc070b2007-07-09 11:33:18 -0700770 printk(KERN_INFO PREFIX "%s [%s] (IRQs", acpi_device_name(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400771 acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 for (i = 0; i < link->irq.possible_count; i++) {
773 if (link->irq.active == link->irq.possible[i]) {
Kay Sieversbe964472012-05-08 17:24:20 +0200774 printk(KERN_CONT " *%d", link->irq.possible[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 found = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400776 } else
Kay Sieversbe964472012-05-08 17:24:20 +0200777 printk(KERN_CONT " %d", link->irq.possible[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 }
779
Kay Sieversbe964472012-05-08 17:24:20 +0200780 printk(KERN_CONT ")");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 if (!found)
Kay Sieversbe964472012-05-08 17:24:20 +0200783 printk(KERN_CONT " *%d", link->irq.active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
Len Brown4be44fc2005-08-05 00:44:28 -0400785 if (!link->device->status.enabled)
Kay Sieversbe964472012-05-08 17:24:20 +0200786 printk(KERN_CONT ", disabled.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Kay Sieversbe964472012-05-08 17:24:20 +0200788 printk(KERN_CONT "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Bjorn Helgaas5f0dcca2009-02-17 14:00:55 -0700790 list_add_tail(&link->list, &acpi_link_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Len Brown4be44fc2005-08-05 00:44:28 -0400792 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 /* disable all links -- to be activated on use */
donald.d.dugger@intel.com383d7a12008-10-17 07:49:50 -0700794 acpi_evaluate_object(device->handle, "_DIS", NULL, NULL);
Ingo Molnar36e43092006-04-27 05:25:00 -0400795 mutex_unlock(&acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
797 if (result)
798 kfree(link);
799
Rafael J. Wysocki4daeaf62013-01-30 14:27:37 +0100800 return result < 0 ? result : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801}
802
Len Brown4be44fc2005-08-05 00:44:28 -0400803static int acpi_pci_link_resume(struct acpi_pci_link *link)
Linus Torvalds697a2d62005-08-01 12:37:54 -0700804{
Linus Torvalds697a2d62005-08-01 12:37:54 -0700805 if (link->refcnt && link->irq.active && link->irq.initialized)
Patrick Mocheld550d982006-06-27 00:41:40 -0400806 return (acpi_pci_link_set(link, link->irq.active));
Bjorn Helgaas1c9ca3a2009-02-17 14:00:40 -0700807
808 return 0;
Linus Torvalds697a2d62005-08-01 12:37:54 -0700809}
810
Rafael J. Wysockic3146df22011-03-12 22:16:51 +0100811static void irqrouter_resume(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812{
Bjorn Helgaasc9d62442009-02-17 14:00:45 -0700813 struct acpi_pci_link *link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
Bjorn Helgaas5f0dcca2009-02-17 14:00:55 -0700815 list_for_each_entry(link, &acpi_link_list, list) {
Linus Torvalds697a2d62005-08-01 12:37:54 -0700816 acpi_pci_link_resume(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818}
819
Rafael J. Wysocki4daeaf62013-01-30 14:27:37 +0100820static void acpi_pci_link_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
Bjorn Helgaasc9d62442009-02-17 14:00:45 -0700822 struct acpi_pci_link *link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200824 link = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Ingo Molnar36e43092006-04-27 05:25:00 -0400826 mutex_lock(&acpi_link_lock);
Bjorn Helgaas5f0dcca2009-02-17 14:00:55 -0700827 list_del(&link->list);
Ingo Molnar36e43092006-04-27 05:25:00 -0400828 mutex_unlock(&acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
830 kfree(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831}
832
833/*
Rafael J. Wysockie2497142016-02-24 13:55:38 +0100834 * modify acpi_irq_penalty[] from cmdline
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 */
836static int __init acpi_irq_penalty_update(char *str, int used)
837{
838 int i;
839
840 for (i = 0; i < 16; i++) {
841 int retval;
842 int irq;
843
Len Brown4be44fc2005-08-05 00:44:28 -0400844 retval = get_option(&str, &irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846 if (!retval)
847 break; /* no number found */
848
849 if (irq < 0)
850 continue;
Len Brown4be44fc2005-08-05 00:44:28 -0400851
Rafael J. Wysockie2497142016-02-24 13:55:38 +0100852 if (irq >= ARRAY_SIZE(acpi_irq_penalty))
853 continue;
854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 if (used)
Sinan Kaya103544d2016-04-17 13:36:53 -0400856 acpi_irq_penalty[irq] = acpi_irq_get_penalty(irq) +
857 PIRQ_PENALTY_ISA_USED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 else
Sinan Kaya103544d2016-04-17 13:36:53 -0400859 acpi_irq_penalty[irq] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
861 if (retval != 2) /* no next number */
862 break;
863 }
864 return 1;
865}
866
867/*
868 * We'd like PNP to call this routine for the
869 * single ISA_USED value for each legacy device.
870 * But instead it calls us with each POSSIBLE setting.
871 * There is no ISA_POSSIBLE weight, so we simply use
872 * the (small) PCI_USING penalty.
873 */
David Shaohua Lic9c3e452005-04-01 00:07:31 -0500874void acpi_penalize_isa_irq(int irq, int active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875{
Sinan Kaya103544d2016-04-17 13:36:53 -0400876 if (irq >= 0 && irq < ARRAY_SIZE(acpi_irq_penalty))
877 acpi_irq_penalty[irq] = acpi_irq_get_penalty(irq) +
878 active ? PIRQ_PENALTY_ISA_USED : PIRQ_PENALTY_PCI_USING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879}
880
Jiang Liu5ebc7602015-09-17 14:02:45 +0800881bool acpi_isa_irq_available(int irq)
882{
Rafael J. Wysockie2497142016-02-24 13:55:38 +0100883 return irq >= 0 && (irq >= ARRAY_SIZE(acpi_irq_penalty) ||
Sinan Kaya103544d2016-04-17 13:36:53 -0400884 acpi_irq_get_penalty(irq) < PIRQ_PENALTY_ISA_ALWAYS);
Jiang Liu5ebc7602015-09-17 14:02:45 +0800885}
886
Jiang Liu5d0ddfe2015-08-21 15:36:23 +0800887void acpi_penalize_sci_irq(int irq, int trigger, int polarity)
888{
Jiang Liu5d0ddfe2015-08-21 15:36:23 +0800889}
890
891/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 * Over-ride default table to reserve additional IRQs for use by ISA
893 * e.g. acpi_irq_isa=5
894 * Useful for telling ACPI how not to interfere with your ISA sound card.
895 */
896static int __init acpi_irq_isa(char *str)
897{
898 return acpi_irq_penalty_update(str, 1);
899}
Len Brown4be44fc2005-08-05 00:44:28 -0400900
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901__setup("acpi_irq_isa=", acpi_irq_isa);
902
903/*
904 * Over-ride default table to free additional IRQs for use by PCI
905 * e.g. acpi_irq_pci=7,15
906 * Used for acpi_irq_balance to free up IRQs to reduce PCI IRQ sharing.
907 */
908static int __init acpi_irq_pci(char *str)
909{
910 return acpi_irq_penalty_update(str, 0);
911}
Len Brown4be44fc2005-08-05 00:44:28 -0400912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913__setup("acpi_irq_pci=", acpi_irq_pci);
914
915static int __init acpi_irq_nobalance_set(char *str)
916{
917 acpi_irq_balance = 0;
918 return 1;
919}
Len Brown4be44fc2005-08-05 00:44:28 -0400920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921__setup("acpi_irq_nobalance", acpi_irq_nobalance_set);
922
Roel Kluin8a383ef2008-12-09 20:45:30 +0100923static int __init acpi_irq_balance_set(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924{
925 acpi_irq_balance = 1;
926 return 1;
927}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Len Brown4be44fc2005-08-05 00:44:28 -0400929__setup("acpi_irq_balance", acpi_irq_balance_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Rafael J. Wysockic3146df22011-03-12 22:16:51 +0100931static struct syscore_ops irqrouter_syscore_ops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400932 .resume = irqrouter_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933};
934
Rafael J. Wysocki4daeaf62013-01-30 14:27:37 +0100935void __init acpi_pci_link_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 if (acpi_noirq)
Rafael J. Wysocki4daeaf62013-01-30 14:27:37 +0100938 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Bjorn Helgaas32836252008-11-05 16:17:52 -0700940 if (acpi_irq_balance == -1) {
941 /* no command line switch: enable balancing in IOAPIC mode */
942 if (acpi_irq_model == ACPI_IRQ_MODEL_IOAPIC)
943 acpi_irq_balance = 1;
944 else
945 acpi_irq_balance = 0;
946 }
Rafael J. Wysocki4daeaf62013-01-30 14:27:37 +0100947 register_syscore_ops(&irqrouter_syscore_ops);
948 acpi_scan_add_handler(&pci_link_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949}