blob: cb7b900d9466c84fa01b7d680936f0233a4fde7e [file] [log] [blame]
Thomas Gleixnerc942fdd2019-05-27 08:55:06 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * pci_link.c - ACPI PCI Interrupt Link Device Driver ($Revision: 34 $)
4 *
5 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
6 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
7 * Copyright (C) 2002 Dominik Brodowski <devel@brodo.de>
8 *
Maximilian Luzc6237b22020-11-05 03:06:00 +01009 * TBD:
10 * 1. Support more than one IRQ resource entry per link device (index).
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * 2. Implement start/stop mechanism and use ACPI Bus Driver facilities
12 * for IRQ management (e.g. start()->_SRS).
13 */
14
Rafael J. Wysockide972fd2021-02-19 19:17:44 +010015#define pr_fmt(fmt) "ACPI: PCI: " fmt
16
Rafael J. Wysockic3146df22011-03-12 22:16:51 +010017#include <linux/syscore_ops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/kernel.h>
19#include <linux/module.h>
20#include <linux/init.h>
21#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/spinlock.h>
23#include <linux/pm.h>
24#include <linux/pci.h>
Ingo Molnar36e43092006-04-27 05:25:00 -040025#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Lv Zheng8b484632013-12-03 08:49:16 +080027#include <linux/acpi.h>
Sinan Kaya103544d2016-04-17 13:36:53 -040028#include <linux/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Rashikac071b6042013-12-17 14:58:31 +053030#include "internal.h"
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#define ACPI_PCI_LINK_CLASS "pci_irq_routing"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#define ACPI_PCI_LINK_DEVICE_NAME "PCI Interrupt Link"
Bjorn Helgaas1c9ca3a2009-02-17 14:00:40 -070034#define ACPI_PCI_LINK_MAX_POSSIBLE 16
35
Rafael J. Wysocki4daeaf62013-01-30 14:27:37 +010036static int acpi_pci_link_add(struct acpi_device *device,
37 const struct acpi_device_id *not_used);
38static void acpi_pci_link_remove(struct acpi_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Márton Némethc97adf92010-01-10 17:15:36 +010040static const struct acpi_device_id link_device_ids[] = {
Thomas Renninger1ba90e32007-07-23 14:44:41 +020041 {"PNP0C0F", 0},
42 {"", 0},
43};
Thomas Renninger1ba90e32007-07-23 14:44:41 +020044
Rafael J. Wysocki4daeaf62013-01-30 14:27:37 +010045static struct acpi_scan_handler pci_link_handler = {
Thomas Renninger1ba90e32007-07-23 14:44:41 +020046 .ids = link_device_ids,
Rafael J. Wysocki4daeaf62013-01-30 14:27:37 +010047 .attach = acpi_pci_link_add,
48 .detach = acpi_pci_link_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -070049};
50
David Shaohua Li87bec662005-07-27 23:02:00 -040051/*
52 * If a link is initialized, we never change its active and initialized
53 * later even the link is disable. Instead, we just repick the active irq
54 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070055struct acpi_pci_link_irq {
Sinan Kaya37c59392015-12-09 11:18:28 -050056 u32 active; /* Current IRQ */
Bob Moore50eca3e2005-09-30 19:03:00 -040057 u8 triggering; /* All IRQs */
Bjorn Helgaas1c9ca3a2009-02-17 14:00:40 -070058 u8 polarity; /* All IRQs */
Len Brown4be44fc2005-08-05 00:44:28 -040059 u8 resource_type;
60 u8 possible_count;
Sinan Kaya37c59392015-12-09 11:18:28 -050061 u32 possible[ACPI_PCI_LINK_MAX_POSSIBLE];
Len Brown4be44fc2005-08-05 00:44:28 -040062 u8 initialized:1;
63 u8 reserved:7;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064};
65
66struct acpi_pci_link {
Bjorn Helgaas5f0dcca2009-02-17 14:00:55 -070067 struct list_head list;
Bjorn Helgaas1c9ca3a2009-02-17 14:00:40 -070068 struct acpi_device *device;
69 struct acpi_pci_link_irq irq;
70 int refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071};
72
Bjorn Helgaas5f0dcca2009-02-17 14:00:55 -070073static LIST_HEAD(acpi_link_list);
Adrian Bunke5685b92007-10-24 18:24:42 +020074static DEFINE_MUTEX(acpi_link_lock);
Sinan Kayaf1caa612016-10-24 00:31:31 -040075static int sci_irq = -1, sci_penalty;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077/* --------------------------------------------------------------------------
78 PCI Link Device Management
79 -------------------------------------------------------------------------- */
80
81/*
82 * set context (link) possible list from resource list
83 */
Bjorn Helgaas1c9ca3a2009-02-17 14:00:40 -070084static acpi_status acpi_pci_link_check_possible(struct acpi_resource *resource,
85 void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
Jan Engelhardt50dd0962006-10-01 00:28:50 +020087 struct acpi_pci_link *link = context;
Rafael J. Wysockic02b2fc2021-02-19 19:16:10 +010088 acpi_handle handle = link->device->handle;
Bjorn Helgaasc9d62442009-02-17 14:00:45 -070089 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Len Browneca008c2005-09-22 00:25:18 -040091 switch (resource->type) {
Bob Moore50eca3e2005-09-30 19:03:00 -040092 case ACPI_RESOURCE_TYPE_START_DEPENDENT:
Bjorn Helgaas4a5e3632008-07-15 09:42:57 -060093 case ACPI_RESOURCE_TYPE_END_TAG:
Patrick Mocheld550d982006-06-27 00:41:40 -040094 return AE_OK;
Bob Moore50eca3e2005-09-30 19:03:00 -040095 case ACPI_RESOURCE_TYPE_IRQ:
Len Brown4be44fc2005-08-05 00:44:28 -040096 {
97 struct acpi_resource_irq *p = &resource->data.irq;
Bob Moore50eca3e2005-09-30 19:03:00 -040098 if (!p || !p->interrupt_count) {
Rafael J. Wysockic02b2fc2021-02-19 19:16:10 +010099 acpi_handle_debug(handle,
100 "Blank _PRS IRQ resource\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400101 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 }
Len Brown4be44fc2005-08-05 00:44:28 -0400103 for (i = 0;
Bob Moore50eca3e2005-09-30 19:03:00 -0400104 (i < p->interrupt_count
Len Brown4be44fc2005-08-05 00:44:28 -0400105 && i < ACPI_PCI_LINK_MAX_POSSIBLE); i++) {
106 if (!p->interrupts[i]) {
Rafael J. Wysockide972fd2021-02-19 19:17:44 +0100107 acpi_handle_debug(handle,
108 "Invalid _PRS IRQ %d\n",
109 p->interrupts[i]);
Len Brown4be44fc2005-08-05 00:44:28 -0400110 continue;
111 }
112 link->irq.possible[i] = p->interrupts[i];
113 link->irq.possible_count++;
114 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400115 link->irq.triggering = p->triggering;
116 link->irq.polarity = p->polarity;
117 link->irq.resource_type = ACPI_RESOURCE_TYPE_IRQ;
Len Brown4be44fc2005-08-05 00:44:28 -0400118 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400120 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
Len Brown4be44fc2005-08-05 00:44:28 -0400121 {
Bob Moore50eca3e2005-09-30 19:03:00 -0400122 struct acpi_resource_extended_irq *p =
Len Brown4be44fc2005-08-05 00:44:28 -0400123 &resource->data.extended_irq;
Bob Moore50eca3e2005-09-30 19:03:00 -0400124 if (!p || !p->interrupt_count) {
Rafael J. Wysockide972fd2021-02-19 19:17:44 +0100125 acpi_handle_debug(handle,
126 "Blank _PRS EXT IRQ resource\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400127 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 }
Len Brown4be44fc2005-08-05 00:44:28 -0400129 for (i = 0;
Bob Moore50eca3e2005-09-30 19:03:00 -0400130 (i < p->interrupt_count
Len Brown4be44fc2005-08-05 00:44:28 -0400131 && i < ACPI_PCI_LINK_MAX_POSSIBLE); i++) {
132 if (!p->interrupts[i]) {
Rafael J. Wysockide972fd2021-02-19 19:17:44 +0100133 acpi_handle_debug(handle,
134 "Invalid _PRS IRQ %d\n",
135 p->interrupts[i]);
Len Brown4be44fc2005-08-05 00:44:28 -0400136 continue;
137 }
138 link->irq.possible[i] = p->interrupts[i];
139 link->irq.possible_count++;
140 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400141 link->irq.triggering = p->triggering;
142 link->irq.polarity = p->polarity;
143 link->irq.resource_type = ACPI_RESOURCE_TYPE_EXTENDED_IRQ;
Len Brown4be44fc2005-08-05 00:44:28 -0400144 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 default:
Rafael J. Wysockide972fd2021-02-19 19:17:44 +0100147 acpi_handle_debug(handle, "_PRS resource type 0x%x is not IRQ\n",
148 resource->type);
Patrick Mocheld550d982006-06-27 00:41:40 -0400149 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 }
151
Patrick Mocheld550d982006-06-27 00:41:40 -0400152 return AE_CTRL_TERMINATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
154
Len Brown4be44fc2005-08-05 00:44:28 -0400155static int acpi_pci_link_get_possible(struct acpi_pci_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
Rafael J. Wysockic02b2fc2021-02-19 19:16:10 +0100157 acpi_handle handle = link->device->handle;
Len Brown4be44fc2005-08-05 00:44:28 -0400158 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Rafael J. Wysockic02b2fc2021-02-19 19:16:10 +0100160 status = acpi_walk_resources(handle, METHOD_NAME__PRS,
Len Brown4be44fc2005-08-05 00:44:28 -0400161 acpi_pci_link_check_possible, link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 if (ACPI_FAILURE(status)) {
Rafael J. Wysockic02b2fc2021-02-19 19:16:10 +0100163 acpi_handle_debug(handle, "_PRS not present or invalid");
Alex Hung92d1b382018-02-22 21:43:44 -0800164 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 }
166
Rafael J. Wysockic02b2fc2021-02-19 19:16:10 +0100167 acpi_handle_debug(handle, "Found %d possible IRQs\n",
168 link->irq.possible_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Patrick Mocheld550d982006-06-27 00:41:40 -0400170 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171}
172
Bjorn Helgaas1c9ca3a2009-02-17 14:00:40 -0700173static acpi_status acpi_pci_link_check_current(struct acpi_resource *resource,
174 void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
Bjorn Helgaasc9d62442009-02-17 14:00:45 -0700176 int *irq = context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Len Browneca008c2005-09-22 00:25:18 -0400178 switch (resource->type) {
Bjorn Helgaas4a5e3632008-07-15 09:42:57 -0600179 case ACPI_RESOURCE_TYPE_START_DEPENDENT:
180 case ACPI_RESOURCE_TYPE_END_TAG:
181 return AE_OK;
Bob Moore50eca3e2005-09-30 19:03:00 -0400182 case ACPI_RESOURCE_TYPE_IRQ:
Len Brown4be44fc2005-08-05 00:44:28 -0400183 {
184 struct acpi_resource_irq *p = &resource->data.irq;
Bob Moore50eca3e2005-09-30 19:03:00 -0400185 if (!p || !p->interrupt_count) {
Len Brown4be44fc2005-08-05 00:44:28 -0400186 /*
187 * IRQ descriptors may have no IRQ# bits set,
188 * particularly those those w/ _STA disabled
189 */
Rafael J. Wysockic02b2fc2021-02-19 19:16:10 +0100190 pr_debug("Blank _CRS IRQ resource\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400191 return AE_OK;
Len Brown4be44fc2005-08-05 00:44:28 -0400192 }
193 *irq = p->interrupts[0];
194 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400196 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
Len Brown4be44fc2005-08-05 00:44:28 -0400197 {
Bob Moore50eca3e2005-09-30 19:03:00 -0400198 struct acpi_resource_extended_irq *p =
Len Brown4be44fc2005-08-05 00:44:28 -0400199 &resource->data.extended_irq;
Bob Moore50eca3e2005-09-30 19:03:00 -0400200 if (!p || !p->interrupt_count) {
Len Brown4be44fc2005-08-05 00:44:28 -0400201 /*
202 * extended IRQ descriptors must
203 * return at least 1 IRQ
204 */
Rafael J. Wysockic02b2fc2021-02-19 19:16:10 +0100205 pr_debug("Blank _CRS EXT IRQ resource\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400206 return AE_OK;
Len Brown4be44fc2005-08-05 00:44:28 -0400207 }
208 *irq = p->interrupts[0];
209 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 }
Len Brownd4ec6c72006-01-26 17:23:38 -0500211 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 default:
Rafael J. Wysockic02b2fc2021-02-19 19:16:10 +0100213 pr_debug("_CRS resource type 0x%x is not IRQ\n",
214 resource->type);
Patrick Mocheld550d982006-06-27 00:41:40 -0400215 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 }
Bjorn Helgaas4a5e3632008-07-15 09:42:57 -0600217
Patrick Mocheld550d982006-06-27 00:41:40 -0400218 return AE_CTRL_TERMINATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219}
220
221/*
222 * Run _CRS and set link->irq.active
223 *
224 * return value:
225 * 0 - success
226 * !0 - failure
227 */
Len Brown4be44fc2005-08-05 00:44:28 -0400228static int acpi_pci_link_get_current(struct acpi_pci_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
Rafael J. Wysockic02b2fc2021-02-19 19:16:10 +0100230 acpi_handle handle = link->device->handle;
Bjorn Helgaasc9d62442009-02-17 14:00:45 -0700231 acpi_status status;
Rafael J. Wysockic02b2fc2021-02-19 19:16:10 +0100232 int result = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400233 int irq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 link->irq.active = 0;
236
237 /* in practice, status disabled is meaningless, ignore it */
238 if (acpi_strict) {
239 /* Query _STA, set link->device->status */
240 result = acpi_bus_get_status(link->device);
241 if (result) {
Rafael J. Wysockic02b2fc2021-02-19 19:16:10 +0100242 acpi_handle_err(handle, "Unable to read status\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 goto end;
244 }
245
246 if (!link->device->status.enabled) {
Rafael J. Wysockic02b2fc2021-02-19 19:16:10 +0100247 acpi_handle_debug(handle, "Link disabled\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400248 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 }
250 }
251
Maximilian Luzc6237b22020-11-05 03:06:00 +0100252 /*
253 * Query and parse _CRS to get the current IRQ assignment.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 */
255
Rafael J. Wysockic02b2fc2021-02-19 19:16:10 +0100256 status = acpi_walk_resources(handle, METHOD_NAME__CRS,
Len Brown4be44fc2005-08-05 00:44:28 -0400257 acpi_pci_link_check_current, &irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 if (ACPI_FAILURE(status)) {
Rafael J. Wysocki4c324542021-03-05 19:41:44 +0100259 acpi_evaluation_failure_warn(handle, "_CRS", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 result = -ENODEV;
261 goto end;
262 }
263
264 if (acpi_strict && !irq) {
Rafael J. Wysockic02b2fc2021-02-19 19:16:10 +0100265 acpi_handle_err(handle, "_CRS returned 0\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 result = -ENODEV;
267 }
268
269 link->irq.active = irq;
270
Rafael J. Wysockic02b2fc2021-02-19 19:16:10 +0100271 acpi_handle_debug(handle, "Link at IRQ %d \n", link->irq.active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Len Brown4be44fc2005-08-05 00:44:28 -0400273 end:
Patrick Mocheld550d982006-06-27 00:41:40 -0400274 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
276
Len Brown4be44fc2005-08-05 00:44:28 -0400277static int acpi_pci_link_set(struct acpi_pci_link *link, int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 struct {
Len Brown4be44fc2005-08-05 00:44:28 -0400280 struct acpi_resource res;
281 struct acpi_resource end;
282 } *resource;
283 struct acpi_buffer buffer = { 0, NULL };
Rafael J. Wysockic02b2fc2021-02-19 19:16:10 +0100284 acpi_handle handle = link->device->handle;
285 acpi_status status;
286 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Bjorn Helgaas6eca4b42009-02-17 14:00:50 -0700288 if (!irq)
Patrick Mocheld550d982006-06-27 00:41:40 -0400289 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Burman Yan36bcbec2006-12-19 12:56:11 -0800291 resource = kzalloc(sizeof(*resource) + 1, irqs_disabled() ? GFP_ATOMIC: GFP_KERNEL);
Len Brown4be44fc2005-08-05 00:44:28 -0400292 if (!resource)
Patrick Mocheld550d982006-06-27 00:41:40 -0400293 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Len Brown4be44fc2005-08-05 00:44:28 -0400295 buffer.length = sizeof(*resource) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 buffer.pointer = resource;
297
Len Brown4be44fc2005-08-05 00:44:28 -0400298 switch (link->irq.resource_type) {
Bob Moore50eca3e2005-09-30 19:03:00 -0400299 case ACPI_RESOURCE_TYPE_IRQ:
300 resource->res.type = ACPI_RESOURCE_TYPE_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 resource->res.length = sizeof(struct acpi_resource);
Bob Moore50eca3e2005-09-30 19:03:00 -0400302 resource->res.data.irq.triggering = link->irq.triggering;
303 resource->res.data.irq.polarity =
304 link->irq.polarity;
305 if (link->irq.triggering == ACPI_EDGE_SENSITIVE)
Erik Schmaussc163f90c2019-02-15 13:36:19 -0800306 resource->res.data.irq.shareable =
Len Brown4be44fc2005-08-05 00:44:28 -0400307 ACPI_EXCLUSIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 else
Erik Schmaussc163f90c2019-02-15 13:36:19 -0800309 resource->res.data.irq.shareable = ACPI_SHARED;
Bob Moore50eca3e2005-09-30 19:03:00 -0400310 resource->res.data.irq.interrupt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 resource->res.data.irq.interrupts[0] = irq;
312 break;
Len Brown4be44fc2005-08-05 00:44:28 -0400313
Bob Moore50eca3e2005-09-30 19:03:00 -0400314 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
315 resource->res.type = ACPI_RESOURCE_TYPE_EXTENDED_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 resource->res.length = sizeof(struct acpi_resource);
Len Brown4be44fc2005-08-05 00:44:28 -0400317 resource->res.data.extended_irq.producer_consumer =
318 ACPI_CONSUMER;
Bob Moore50eca3e2005-09-30 19:03:00 -0400319 resource->res.data.extended_irq.triggering =
320 link->irq.triggering;
321 resource->res.data.extended_irq.polarity =
322 link->irq.polarity;
323 if (link->irq.triggering == ACPI_EDGE_SENSITIVE)
Hans de Goede1c5e1cd2020-04-13 15:09:49 +0200324 resource->res.data.extended_irq.shareable =
Len Brown4be44fc2005-08-05 00:44:28 -0400325 ACPI_EXCLUSIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 else
Hans de Goede1c5e1cd2020-04-13 15:09:49 +0200327 resource->res.data.extended_irq.shareable = ACPI_SHARED;
Bob Moore50eca3e2005-09-30 19:03:00 -0400328 resource->res.data.extended_irq.interrupt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 resource->res.data.extended_irq.interrupts[0] = irq;
330 /* ignore resource_source, it's optional */
331 break;
332 default:
Rafael J. Wysockic02b2fc2021-02-19 19:16:10 +0100333 acpi_handle_err(handle, "Invalid resource type %d\n",
334 link->irq.resource_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 result = -EINVAL;
336 goto end;
337
338 }
Bob Moore50eca3e2005-09-30 19:03:00 -0400339 resource->end.type = ACPI_RESOURCE_TYPE_END_TAG;
Yinghai Luf084dbb2013-03-23 19:16:37 +0000340 resource->end.length = sizeof(struct acpi_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342 /* Attempt to set the resource */
Patrick Mochel67a71362006-05-19 16:54:42 -0400343 status = acpi_set_current_resources(link->device->handle, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345 /* check for total failure */
346 if (ACPI_FAILURE(status)) {
Rafael J. Wysocki4c324542021-03-05 19:41:44 +0100347 acpi_evaluation_failure_warn(handle, "_SRS", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 result = -ENODEV;
349 goto end;
350 }
351
352 /* Query _STA, set device->status */
353 result = acpi_bus_get_status(link->device);
354 if (result) {
Rafael J. Wysockic02b2fc2021-02-19 19:16:10 +0100355 acpi_handle_err(handle, "Unable to read status\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 goto end;
357 }
Rafael J. Wysockic02b2fc2021-02-19 19:16:10 +0100358 if (!link->device->status.enabled)
359 acpi_handle_warn(handle, "Disabled and referenced, BIOS bug\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 /* Query _CRS, set link->irq.active */
362 result = acpi_pci_link_get_current(link);
363 if (result) {
364 goto end;
365 }
366
367 /*
368 * Is current setting not what we set?
369 * set link->irq.active
370 */
371 if (link->irq.active != irq) {
372 /*
373 * policy: when _CRS doesn't return what we just _SRS
374 * assume _SRS worked and override _CRS value.
375 */
Rafael J. Wysockic02b2fc2021-02-19 19:16:10 +0100376 acpi_handle_warn(handle, "BIOS reported IRQ %d, using IRQ %d\n",
377 link->irq.active, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 link->irq.active = irq;
379 }
380
Rafael J. Wysockic02b2fc2021-02-19 19:16:10 +0100381 acpi_handle_debug(handle, "Set IRQ %d\n", link->irq.active);
Len Brown4be44fc2005-08-05 00:44:28 -0400382
383 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 kfree(resource);
Patrick Mocheld550d982006-06-27 00:41:40 -0400385 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388/* --------------------------------------------------------------------------
389 PCI Link IRQ Management
390 -------------------------------------------------------------------------- */
391
392/*
393 * "acpi_irq_balance" (default in APIC mode) enables ACPI to use PIC Interrupt
394 * Link Devices to move the PIRQs around to minimize sharing.
Maximilian Luzc6237b22020-11-05 03:06:00 +0100395 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 * "acpi_irq_nobalance" (default in PIC mode) tells ACPI not to move any PIC IRQs
397 * that the BIOS has already set to active. This is necessary because
398 * ACPI has no automatic means of knowing what ISA IRQs are used. Note that
399 * if the BIOS doesn't set a Link Device active, ACPI needs to program it
400 * even if acpi_irq_nobalance is set.
401 *
402 * A tables of penalties avoids directing PCI interrupts to well known
403 * ISA IRQs. Boot params are available to over-ride the default table:
404 *
405 * List interrupts that are free for PCI use.
406 * acpi_irq_pci=n[,m]
407 *
408 * List interrupts that should not be used for PCI:
409 * acpi_irq_isa=n[,m]
410 *
411 * Note that PCI IRQ routers have a list of possible IRQs,
412 * which may not include the IRQs this table says are available.
Maximilian Luzc6237b22020-11-05 03:06:00 +0100413 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 * Since this heuristic can't tell the difference between a link
415 * that no device will attach to, vs. a link which may be shared
416 * by multiple active devices -- it is not optimal.
417 *
418 * If interrupt performance is that important, get an IO-APIC system
419 * with a pin dedicated to each device. Or for that matter, an MSI
420 * enabled system.
421 */
422
Sinan Kaya5c5087a2016-04-17 13:36:54 -0400423#define ACPI_MAX_ISA_IRQS 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425#define PIRQ_PENALTY_PCI_POSSIBLE (16*16)
426#define PIRQ_PENALTY_PCI_USING (16*16*16)
427#define PIRQ_PENALTY_ISA_TYPICAL (16*16*16*16)
428#define PIRQ_PENALTY_ISA_USED (16*16*16*16*16)
429#define PIRQ_PENALTY_ISA_ALWAYS (16*16*16*16*16*16)
430
Sinan Kaya5c5087a2016-04-17 13:36:54 -0400431static int acpi_isa_irq_penalty[ACPI_MAX_ISA_IRQS] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 PIRQ_PENALTY_ISA_ALWAYS, /* IRQ0 timer */
433 PIRQ_PENALTY_ISA_ALWAYS, /* IRQ1 keyboard */
434 PIRQ_PENALTY_ISA_ALWAYS, /* IRQ2 cascade */
Len Brown4be44fc2005-08-05 00:44:28 -0400435 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ3 serial */
436 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ4 serial */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ5 sometimes SoundBlaster */
438 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ6 */
439 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ7 parallel, spurious */
440 PIRQ_PENALTY_ISA_TYPICAL, /* IRQ8 rtc, sometimes */
Sinan Kaya103544d2016-04-17 13:36:53 -0400441 0, /* IRQ9 PCI, often acpi */
442 0, /* IRQ10 PCI */
443 0, /* IRQ11 PCI */
Bjorn Helgaas1c9ca3a2009-02-17 14:00:40 -0700444 PIRQ_PENALTY_ISA_USED, /* IRQ12 mouse */
445 PIRQ_PENALTY_ISA_USED, /* IRQ13 fpe, sometimes */
446 PIRQ_PENALTY_ISA_USED, /* IRQ14 ide0 */
447 PIRQ_PENALTY_ISA_USED, /* IRQ15 ide1 */
Rafael J. Wysockie2497142016-02-24 13:55:38 +0100448 /* >IRQ15 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449};
450
Sinan Kaya103544d2016-04-17 13:36:53 -0400451static int acpi_irq_pci_sharing_penalty(int irq)
452{
453 struct acpi_pci_link *link;
454 int penalty = 0;
Sinan Kaya4a6e68b2016-06-29 04:27:35 -0400455 int i;
Sinan Kaya103544d2016-04-17 13:36:53 -0400456
457 list_for_each_entry(link, &acpi_link_list, list) {
458 /*
459 * If a link is active, penalize its IRQ heavily
460 * so we try to choose a different IRQ.
461 */
462 if (link->irq.active && link->irq.active == irq)
463 penalty += PIRQ_PENALTY_PCI_USING;
Sinan Kaya103544d2016-04-17 13:36:53 -0400464
Sinan Kaya4a6e68b2016-06-29 04:27:35 -0400465 /*
466 * penalize the IRQs PCI might use, but not as severely.
467 */
468 for (i = 0; i < link->irq.possible_count; i++)
469 if (link->irq.possible[i] == irq)
470 penalty += PIRQ_PENALTY_PCI_POSSIBLE /
471 link->irq.possible_count;
Sinan Kaya103544d2016-04-17 13:36:53 -0400472 }
473
474 return penalty;
475}
476
477static int acpi_irq_get_penalty(int irq)
478{
479 int penalty = 0;
480
Sinan Kayaf1caa612016-10-24 00:31:31 -0400481 if (irq == sci_irq)
482 penalty += sci_penalty;
Sinan Kaya103544d2016-04-17 13:36:53 -0400483
Sinan Kayaf7eca372016-06-29 04:27:37 -0400484 if (irq < ACPI_MAX_ISA_IRQS)
485 return penalty + acpi_isa_irq_penalty[irq];
486
Sinan Kayaf1caa612016-10-24 00:31:31 -0400487 return penalty + acpi_irq_pci_sharing_penalty(irq);
Sinan Kaya103544d2016-04-17 13:36:53 -0400488}
489
Sinan Kaya487cf9172016-06-29 04:27:36 -0400490int __init acpi_irq_penalty_init(void)
491{
492 struct acpi_pci_link *link;
493 int i;
494
495 /*
496 * Update penalties to facilitate IRQ balancing.
497 */
498 list_for_each_entry(link, &acpi_link_list, list) {
499
500 /*
501 * reflect the possible and active irqs in the penalty table --
502 * useful for breaking ties.
503 */
504 if (link->irq.possible_count) {
505 int penalty =
506 PIRQ_PENALTY_PCI_POSSIBLE /
507 link->irq.possible_count;
508
509 for (i = 0; i < link->irq.possible_count; i++) {
510 if (link->irq.possible[i] < ACPI_MAX_ISA_IRQS)
511 acpi_isa_irq_penalty[link->irq.
512 possible[i]] +=
513 penalty;
514 }
515
516 } else if (link->irq.active &&
517 (link->irq.active < ACPI_MAX_ISA_IRQS)) {
518 acpi_isa_irq_penalty[link->irq.active] +=
519 PIRQ_PENALTY_PCI_POSSIBLE;
520 }
521 }
522
523 return 0;
524}
525
Bjorn Helgaas32836252008-11-05 16:17:52 -0700526static int acpi_irq_balance = -1; /* 0: static, 1: balance */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Len Brown4be44fc2005-08-05 00:44:28 -0400528static int acpi_pci_link_allocate(struct acpi_pci_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
Rafael J. Wysockide972fd2021-02-19 19:17:44 +0100530 acpi_handle handle = link->device->handle;
Len Brown4be44fc2005-08-05 00:44:28 -0400531 int irq;
532 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
David Shaohua Li87bec662005-07-27 23:02:00 -0400534 if (link->irq.initialized) {
535 if (link->refcnt == 0)
536 /* This means the link is disabled but initialized */
537 acpi_pci_link_set(link, link->irq.active);
Patrick Mocheld550d982006-06-27 00:41:40 -0400538 return 0;
David Shaohua Li87bec662005-07-27 23:02:00 -0400539 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
541 /*
542 * search for active IRQ in list of possible IRQs.
543 */
544 for (i = 0; i < link->irq.possible_count; ++i) {
545 if (link->irq.active == link->irq.possible[i])
546 break;
547 }
548 /*
549 * forget active IRQ that is not in possible list
550 */
551 if (i == link->irq.possible_count) {
552 if (acpi_strict)
Rafael J. Wysockide972fd2021-02-19 19:17:44 +0100553 acpi_handle_warn(handle, "_CRS %d not found in _PRS\n",
554 link->irq.active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 link->irq.active = 0;
556 }
557
558 /*
559 * if active found, use it; else pick entry from end of possible list.
560 */
Bjorn Helgaas1c9ca3a2009-02-17 14:00:40 -0700561 if (link->irq.active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 irq = link->irq.active;
Bjorn Helgaas1c9ca3a2009-02-17 14:00:40 -0700563 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 irq = link->irq.possible[link->irq.possible_count - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566 if (acpi_irq_balance || !link->irq.active) {
567 /*
568 * Select the best IRQ. This is done in reverse to promote
569 * the use of IRQs 9, 10, 11, and >15.
570 */
571 for (i = (link->irq.possible_count - 1); i >= 0; i--) {
Sinan Kaya103544d2016-04-17 13:36:53 -0400572 if (acpi_irq_get_penalty(irq) >
573 acpi_irq_get_penalty(link->irq.possible[i]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 irq = link->irq.possible[i];
575 }
576 }
Sinan Kaya103544d2016-04-17 13:36:53 -0400577 if (acpi_irq_get_penalty(irq) >= PIRQ_PENALTY_ISA_ALWAYS) {
Rafael J. Wysockide972fd2021-02-19 19:17:44 +0100578 acpi_handle_err(handle,
579 "No IRQ available. Try pci=noacpi or acpi=off\n");
Jiang Liu5ebc7602015-09-17 14:02:45 +0800580 return -ENODEV;
581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583 /* Attempt to enable the link device at this IRQ. */
584 if (acpi_pci_link_set(link, irq)) {
Rafael J. Wysockide972fd2021-02-19 19:17:44 +0100585 acpi_handle_err(handle,
586 "Unable to set IRQ. Try pci=noacpi or acpi=off\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400587 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 } else {
Sinan Kaya98756f52016-10-24 00:31:32 -0400589 if (link->irq.active < ACPI_MAX_ISA_IRQS)
590 acpi_isa_irq_penalty[link->irq.active] +=
591 PIRQ_PENALTY_PCI_USING;
592
Rafael J. Wysockide972fd2021-02-19 19:17:44 +0100593 acpi_handle_info(handle, "Enabled at IRQ %d\n",
594 link->irq.active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 }
596
597 link->irq.initialized = 1;
Patrick Mocheld550d982006-06-27 00:41:40 -0400598 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599}
600
601/*
David Shaohua Li87bec662005-07-27 23:02:00 -0400602 * acpi_pci_link_allocate_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 * success: return IRQ >= 0
604 * failure: return -1
605 */
Bjorn Helgaas1c9ca3a2009-02-17 14:00:40 -0700606int acpi_pci_link_allocate_irq(acpi_handle handle, int index, int *triggering,
607 int *polarity, char **name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
Bjorn Helgaasc9d62442009-02-17 14:00:45 -0700609 int result;
610 struct acpi_device *device;
611 struct acpi_pci_link *link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 result = acpi_bus_get_device(handle, &device);
614 if (result) {
Rafael J. Wysockide972fd2021-02-19 19:17:44 +0100615 acpi_handle_err(handle, "Invalid link device\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400616 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 }
618
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200619 link = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 if (!link) {
Rafael J. Wysockide972fd2021-02-19 19:17:44 +0100621 acpi_handle_err(handle, "Invalid link context\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400622 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 }
624
625 /* TBD: Support multiple index (IRQ) entries per Link Device */
626 if (index) {
Rafael J. Wysockide972fd2021-02-19 19:17:44 +0100627 acpi_handle_err(handle, "Invalid index %d\n", index);
Patrick Mocheld550d982006-06-27 00:41:40 -0400628 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 }
630
Ingo Molnar36e43092006-04-27 05:25:00 -0400631 mutex_lock(&acpi_link_lock);
David Shaohua Li87bec662005-07-27 23:02:00 -0400632 if (acpi_pci_link_allocate(link)) {
Ingo Molnar36e43092006-04-27 05:25:00 -0400633 mutex_unlock(&acpi_link_lock);
Patrick Mocheld550d982006-06-27 00:41:40 -0400634 return -1;
David Shaohua Li87bec662005-07-27 23:02:00 -0400635 }
Len Brown4be44fc2005-08-05 00:44:28 -0400636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 if (!link->irq.active) {
Ingo Molnar36e43092006-04-27 05:25:00 -0400638 mutex_unlock(&acpi_link_lock);
Rafael J. Wysockide972fd2021-02-19 19:17:44 +0100639 acpi_handle_err(handle, "Link active IRQ is 0!\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400640 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 }
Len Brown4be44fc2005-08-05 00:44:28 -0400642 link->refcnt++;
Ingo Molnar36e43092006-04-27 05:25:00 -0400643 mutex_unlock(&acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Bob Moore50eca3e2005-09-30 19:03:00 -0400645 if (triggering)
646 *triggering = link->irq.triggering;
647 if (polarity)
648 *polarity = link->irq.polarity;
Len Brown4be44fc2005-08-05 00:44:28 -0400649 if (name)
650 *name = acpi_device_bid(link->device);
Rafael J. Wysockic02b2fc2021-02-19 19:16:10 +0100651 acpi_handle_debug(handle, "Link is referenced\n");
Krzysztof Wilczynski8698fab2019-08-19 15:53:24 +0200652 return link->irq.active;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653}
654
David Shaohua Li87bec662005-07-27 23:02:00 -0400655/*
656 * We don't change link's irq information here. After it is reenabled, we
657 * continue use the info
658 */
Len Brown4be44fc2005-08-05 00:44:28 -0400659int acpi_pci_link_free_irq(acpi_handle handle)
David Shaohua Li87bec662005-07-27 23:02:00 -0400660{
Bjorn Helgaasc9d62442009-02-17 14:00:45 -0700661 struct acpi_device *device;
662 struct acpi_pci_link *link;
Len Brown4be44fc2005-08-05 00:44:28 -0400663 acpi_status result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
David Shaohua Li87bec662005-07-27 23:02:00 -0400665 result = acpi_bus_get_device(handle, &device);
666 if (result) {
Rafael J. Wysockide972fd2021-02-19 19:17:44 +0100667 acpi_handle_err(handle, "Invalid link device\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400668 return -1;
David Shaohua Li87bec662005-07-27 23:02:00 -0400669 }
670
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200671 link = acpi_driver_data(device);
David Shaohua Li87bec662005-07-27 23:02:00 -0400672 if (!link) {
Rafael J. Wysockide972fd2021-02-19 19:17:44 +0100673 acpi_handle_err(handle, "Invalid link context\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400674 return -1;
David Shaohua Li87bec662005-07-27 23:02:00 -0400675 }
676
Ingo Molnar36e43092006-04-27 05:25:00 -0400677 mutex_lock(&acpi_link_lock);
David Shaohua Li87bec662005-07-27 23:02:00 -0400678 if (!link->irq.initialized) {
Ingo Molnar36e43092006-04-27 05:25:00 -0400679 mutex_unlock(&acpi_link_lock);
Rafael J. Wysockide972fd2021-02-19 19:17:44 +0100680 acpi_handle_err(handle, "Link isn't initialized\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400681 return -1;
David Shaohua Li87bec662005-07-27 23:02:00 -0400682 }
David Shaohua Liecc21eb2005-08-03 11:00:11 -0400683#ifdef FUTURE_USE
684 /*
685 * The Link reference count allows us to _DISable an unused link
686 * and suspend time, and set it again on resume.
687 * However, 2.6.12 still has irq_router.resume
688 * which blindly restores the link state.
689 * So we disable the reference count method
690 * to prevent duplicate acpi_pci_link_set()
691 * which would harm some systems
692 */
Len Brown4be44fc2005-08-05 00:44:28 -0400693 link->refcnt--;
David Shaohua Liecc21eb2005-08-03 11:00:11 -0400694#endif
Rafael J. Wysockic02b2fc2021-02-19 19:16:10 +0100695 acpi_handle_debug(handle, "Link is dereferenced\n");
David Shaohua Li87bec662005-07-27 23:02:00 -0400696
Bjorn Helgaas1c9ca3a2009-02-17 14:00:40 -0700697 if (link->refcnt == 0)
donald.d.dugger@intel.com383d7a12008-10-17 07:49:50 -0700698 acpi_evaluate_object(link->device->handle, "_DIS", NULL, NULL);
Bjorn Helgaas1c9ca3a2009-02-17 14:00:40 -0700699
Ingo Molnar36e43092006-04-27 05:25:00 -0400700 mutex_unlock(&acpi_link_lock);
Krzysztof Wilczynski8698fab2019-08-19 15:53:24 +0200701 return link->irq.active;
David Shaohua Li87bec662005-07-27 23:02:00 -0400702}
Len Brown4be44fc2005-08-05 00:44:28 -0400703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704/* --------------------------------------------------------------------------
705 Driver Interface
706 -------------------------------------------------------------------------- */
707
Rafael J. Wysocki4daeaf62013-01-30 14:27:37 +0100708static int acpi_pci_link_add(struct acpi_device *device,
709 const struct acpi_device_id *not_used)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
Rafael J. Wysockide972fd2021-02-19 19:17:44 +0100711 acpi_handle handle = device->handle;
Bjorn Helgaasc9d62442009-02-17 14:00:45 -0700712 struct acpi_pci_link *link;
Rafael J. Wysockide972fd2021-02-19 19:17:44 +0100713 int result;
Bjorn Helgaasc9d62442009-02-17 14:00:45 -0700714 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Burman Yan36bcbec2006-12-19 12:56:11 -0800716 link = kzalloc(sizeof(struct acpi_pci_link), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 if (!link)
Patrick Mocheld550d982006-06-27 00:41:40 -0400718 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
720 link->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 strcpy(acpi_device_name(device), ACPI_PCI_LINK_DEVICE_NAME);
722 strcpy(acpi_device_class(device), ACPI_PCI_LINK_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700723 device->driver_data = link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Ingo Molnar36e43092006-04-27 05:25:00 -0400725 mutex_lock(&acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 result = acpi_pci_link_get_possible(link);
727 if (result)
728 goto end;
729
730 /* query and set link->irq.active */
731 acpi_pci_link_get_current(link);
732
Rafael J. Wysockide972fd2021-02-19 19:17:44 +0100733 pr_info("Interrupt link %s configured for IRQ %d\n",
734 acpi_device_bid(device), link->irq.active);
735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 for (i = 0; i < link->irq.possible_count; i++) {
Rafael J. Wysockide972fd2021-02-19 19:17:44 +0100737 if (link->irq.active != link->irq.possible[i])
738 acpi_handle_debug(handle, "Possible IRQ %d\n",
739 link->irq.possible[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 }
741
Len Brown4be44fc2005-08-05 00:44:28 -0400742 if (!link->device->status.enabled)
Rafael J. Wysockide972fd2021-02-19 19:17:44 +0100743 pr_info("Interrupt link %s disabled\n", acpi_device_bid(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Bjorn Helgaas5f0dcca2009-02-17 14:00:55 -0700745 list_add_tail(&link->list, &acpi_link_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Len Brown4be44fc2005-08-05 00:44:28 -0400747 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 /* disable all links -- to be activated on use */
Rafael J. Wysockide972fd2021-02-19 19:17:44 +0100749 acpi_evaluate_object(handle, "_DIS", NULL, NULL);
Ingo Molnar36e43092006-04-27 05:25:00 -0400750 mutex_unlock(&acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
752 if (result)
753 kfree(link);
754
Rafael J. Wysocki4daeaf62013-01-30 14:27:37 +0100755 return result < 0 ? result : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756}
757
Len Brown4be44fc2005-08-05 00:44:28 -0400758static int acpi_pci_link_resume(struct acpi_pci_link *link)
Linus Torvalds697a2d62005-08-01 12:37:54 -0700759{
Linus Torvalds697a2d62005-08-01 12:37:54 -0700760 if (link->refcnt && link->irq.active && link->irq.initialized)
Patrick Mocheld550d982006-06-27 00:41:40 -0400761 return (acpi_pci_link_set(link, link->irq.active));
Bjorn Helgaas1c9ca3a2009-02-17 14:00:40 -0700762
763 return 0;
Linus Torvalds697a2d62005-08-01 12:37:54 -0700764}
765
Rafael J. Wysockic3146df22011-03-12 22:16:51 +0100766static void irqrouter_resume(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767{
Bjorn Helgaasc9d62442009-02-17 14:00:45 -0700768 struct acpi_pci_link *link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Bjorn Helgaas5f0dcca2009-02-17 14:00:55 -0700770 list_for_each_entry(link, &acpi_link_list, list) {
Linus Torvalds697a2d62005-08-01 12:37:54 -0700771 acpi_pci_link_resume(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773}
774
Rafael J. Wysocki4daeaf62013-01-30 14:27:37 +0100775static void acpi_pci_link_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776{
Bjorn Helgaasc9d62442009-02-17 14:00:45 -0700777 struct acpi_pci_link *link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200779 link = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Ingo Molnar36e43092006-04-27 05:25:00 -0400781 mutex_lock(&acpi_link_lock);
Bjorn Helgaas5f0dcca2009-02-17 14:00:55 -0700782 list_del(&link->list);
Ingo Molnar36e43092006-04-27 05:25:00 -0400783 mutex_unlock(&acpi_link_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
785 kfree(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786}
787
788/*
Sinan Kaya5c5087a2016-04-17 13:36:54 -0400789 * modify acpi_isa_irq_penalty[] from cmdline
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 */
791static int __init acpi_irq_penalty_update(char *str, int used)
792{
793 int i;
794
795 for (i = 0; i < 16; i++) {
796 int retval;
797 int irq;
Sinan Kaya5c5087a2016-04-17 13:36:54 -0400798 int new_penalty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
Len Brown4be44fc2005-08-05 00:44:28 -0400800 retval = get_option(&str, &irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
802 if (!retval)
803 break; /* no number found */
804
Sinan Kaya5c5087a2016-04-17 13:36:54 -0400805 /* see if this is a ISA IRQ */
806 if ((irq < 0) || (irq >= ACPI_MAX_ISA_IRQS))
Rafael J. Wysockie2497142016-02-24 13:55:38 +0100807 continue;
808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 if (used)
Sinan Kayaeeaed4b2016-10-24 00:31:30 -0400810 new_penalty = acpi_isa_irq_penalty[irq] +
Sinan Kaya5c5087a2016-04-17 13:36:54 -0400811 PIRQ_PENALTY_ISA_USED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 else
Sinan Kaya5c5087a2016-04-17 13:36:54 -0400813 new_penalty = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
Sinan Kaya5c5087a2016-04-17 13:36:54 -0400815 acpi_isa_irq_penalty[irq] = new_penalty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 if (retval != 2) /* no next number */
817 break;
818 }
819 return 1;
820}
821
822/*
823 * We'd like PNP to call this routine for the
824 * single ISA_USED value for each legacy device.
825 * But instead it calls us with each POSSIBLE setting.
826 * There is no ISA_POSSIBLE weight, so we simply use
827 * the (small) PCI_USING penalty.
828 */
David Shaohua Lic9c3e452005-04-01 00:07:31 -0500829void acpi_penalize_isa_irq(int irq, int active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830{
Sinan Kaya5c5087a2016-04-17 13:36:54 -0400831 if ((irq >= 0) && (irq < ARRAY_SIZE(acpi_isa_irq_penalty)))
Sinan Kayaeeaed4b2016-10-24 00:31:30 -0400832 acpi_isa_irq_penalty[irq] +=
Sinan Kaya54794582016-06-29 04:27:38 -0400833 (active ? PIRQ_PENALTY_ISA_USED : PIRQ_PENALTY_PCI_USING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834}
835
Jiang Liu5ebc7602015-09-17 14:02:45 +0800836bool acpi_isa_irq_available(int irq)
837{
Sinan Kaya5c5087a2016-04-17 13:36:54 -0400838 return irq >= 0 && (irq >= ARRAY_SIZE(acpi_isa_irq_penalty) ||
Sinan Kaya103544d2016-04-17 13:36:53 -0400839 acpi_irq_get_penalty(irq) < PIRQ_PENALTY_ISA_ALWAYS);
Jiang Liu5ebc7602015-09-17 14:02:45 +0800840}
841
Sinan Kayaf1caa612016-10-24 00:31:31 -0400842void acpi_penalize_sci_irq(int irq, int trigger, int polarity)
843{
844 sci_irq = irq;
845
846 if (trigger == ACPI_MADT_TRIGGER_LEVEL &&
847 polarity == ACPI_MADT_POLARITY_ACTIVE_LOW)
848 sci_penalty = PIRQ_PENALTY_PCI_USING;
849 else
850 sci_penalty = PIRQ_PENALTY_ISA_ALWAYS;
851}
852
Jiang Liu5d0ddfe2015-08-21 15:36:23 +0800853/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 * Over-ride default table to reserve additional IRQs for use by ISA
855 * e.g. acpi_irq_isa=5
856 * Useful for telling ACPI how not to interfere with your ISA sound card.
857 */
858static int __init acpi_irq_isa(char *str)
859{
860 return acpi_irq_penalty_update(str, 1);
861}
Len Brown4be44fc2005-08-05 00:44:28 -0400862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863__setup("acpi_irq_isa=", acpi_irq_isa);
864
865/*
866 * Over-ride default table to free additional IRQs for use by PCI
867 * e.g. acpi_irq_pci=7,15
868 * Used for acpi_irq_balance to free up IRQs to reduce PCI IRQ sharing.
869 */
870static int __init acpi_irq_pci(char *str)
871{
872 return acpi_irq_penalty_update(str, 0);
873}
Len Brown4be44fc2005-08-05 00:44:28 -0400874
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875__setup("acpi_irq_pci=", acpi_irq_pci);
876
877static int __init acpi_irq_nobalance_set(char *str)
878{
879 acpi_irq_balance = 0;
880 return 1;
881}
Len Brown4be44fc2005-08-05 00:44:28 -0400882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883__setup("acpi_irq_nobalance", acpi_irq_nobalance_set);
884
Roel Kluin8a383ef2008-12-09 20:45:30 +0100885static int __init acpi_irq_balance_set(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886{
887 acpi_irq_balance = 1;
888 return 1;
889}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Len Brown4be44fc2005-08-05 00:44:28 -0400891__setup("acpi_irq_balance", acpi_irq_balance_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Rafael J. Wysockic3146df22011-03-12 22:16:51 +0100893static struct syscore_ops irqrouter_syscore_ops = {
Len Brown4be44fc2005-08-05 00:44:28 -0400894 .resume = irqrouter_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895};
896
Rafael J. Wysocki4daeaf62013-01-30 14:27:37 +0100897void __init acpi_pci_link_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 if (acpi_noirq)
Rafael J. Wysocki4daeaf62013-01-30 14:27:37 +0100900 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
Bjorn Helgaas32836252008-11-05 16:17:52 -0700902 if (acpi_irq_balance == -1) {
903 /* no command line switch: enable balancing in IOAPIC mode */
904 if (acpi_irq_model == ACPI_IRQ_MODEL_IOAPIC)
905 acpi_irq_balance = 1;
906 else
907 acpi_irq_balance = 0;
908 }
Rafael J. Wysocki4daeaf62013-01-30 14:27:37 +0100909 register_syscore_ops(&irqrouter_syscore_ops);
910 acpi_scan_add_handler(&pci_link_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911}