Thomas Gleixner | c942fdd | 2019-05-27 08:55:06 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 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 Luz | c6237b2 | 2020-11-05 03:06:00 +0100 | [diff] [blame] | 9 | * TBD: |
| 10 | * 1. Support more than one IRQ resource entry per link device (index). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | * 2. Implement start/stop mechanism and use ACPI Bus Driver facilities |
| 12 | * for IRQ management (e.g. start()->_SRS). |
| 13 | */ |
| 14 | |
Rafael J. Wysocki | de972fd | 2021-02-19 19:17:44 +0100 | [diff] [blame] | 15 | #define pr_fmt(fmt) "ACPI: PCI: " fmt |
| 16 | |
Rafael J. Wysocki | c3146df2 | 2011-03-12 22:16:51 +0100 | [diff] [blame] | 17 | #include <linux/syscore_ops.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/kernel.h> |
| 19 | #include <linux/module.h> |
| 20 | #include <linux/init.h> |
| 21 | #include <linux/types.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/spinlock.h> |
| 23 | #include <linux/pm.h> |
| 24 | #include <linux/pci.h> |
Ingo Molnar | 36e4309 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 25 | #include <linux/mutex.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 26 | #include <linux/slab.h> |
Lv Zheng | 8b48463 | 2013-12-03 08:49:16 +0800 | [diff] [blame] | 27 | #include <linux/acpi.h> |
Sinan Kaya | 103544d | 2016-04-17 13:36:53 -0400 | [diff] [blame] | 28 | #include <linux/irq.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
Rashika | c071b604 | 2013-12-17 14:58:31 +0530 | [diff] [blame] | 30 | #include "internal.h" |
| 31 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #define ACPI_PCI_LINK_CLASS "pci_irq_routing" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #define ACPI_PCI_LINK_DEVICE_NAME "PCI Interrupt Link" |
Bjorn Helgaas | 1c9ca3a | 2009-02-17 14:00:40 -0700 | [diff] [blame] | 34 | #define ACPI_PCI_LINK_MAX_POSSIBLE 16 |
| 35 | |
Rafael J. Wysocki | 4daeaf6 | 2013-01-30 14:27:37 +0100 | [diff] [blame] | 36 | static int acpi_pci_link_add(struct acpi_device *device, |
| 37 | const struct acpi_device_id *not_used); |
| 38 | static void acpi_pci_link_remove(struct acpi_device *device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Márton Németh | c97adf9 | 2010-01-10 17:15:36 +0100 | [diff] [blame] | 40 | static const struct acpi_device_id link_device_ids[] = { |
Thomas Renninger | 1ba90e3 | 2007-07-23 14:44:41 +0200 | [diff] [blame] | 41 | {"PNP0C0F", 0}, |
| 42 | {"", 0}, |
| 43 | }; |
Thomas Renninger | 1ba90e3 | 2007-07-23 14:44:41 +0200 | [diff] [blame] | 44 | |
Rafael J. Wysocki | 4daeaf6 | 2013-01-30 14:27:37 +0100 | [diff] [blame] | 45 | static struct acpi_scan_handler pci_link_handler = { |
Thomas Renninger | 1ba90e3 | 2007-07-23 14:44:41 +0200 | [diff] [blame] | 46 | .ids = link_device_ids, |
Rafael J. Wysocki | 4daeaf6 | 2013-01-30 14:27:37 +0100 | [diff] [blame] | 47 | .attach = acpi_pci_link_add, |
| 48 | .detach = acpi_pci_link_remove, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | }; |
| 50 | |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 51 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | struct acpi_pci_link_irq { |
Sinan Kaya | 37c5939 | 2015-12-09 11:18:28 -0500 | [diff] [blame] | 56 | u32 active; /* Current IRQ */ |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 57 | u8 triggering; /* All IRQs */ |
Bjorn Helgaas | 1c9ca3a | 2009-02-17 14:00:40 -0700 | [diff] [blame] | 58 | u8 polarity; /* All IRQs */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 59 | u8 resource_type; |
| 60 | u8 possible_count; |
Sinan Kaya | 37c5939 | 2015-12-09 11:18:28 -0500 | [diff] [blame] | 61 | u32 possible[ACPI_PCI_LINK_MAX_POSSIBLE]; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 62 | u8 initialized:1; |
| 63 | u8 reserved:7; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | }; |
| 65 | |
| 66 | struct acpi_pci_link { |
Bjorn Helgaas | 5f0dcca | 2009-02-17 14:00:55 -0700 | [diff] [blame] | 67 | struct list_head list; |
Bjorn Helgaas | 1c9ca3a | 2009-02-17 14:00:40 -0700 | [diff] [blame] | 68 | struct acpi_device *device; |
| 69 | struct acpi_pci_link_irq irq; |
| 70 | int refcnt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | }; |
| 72 | |
Bjorn Helgaas | 5f0dcca | 2009-02-17 14:00:55 -0700 | [diff] [blame] | 73 | static LIST_HEAD(acpi_link_list); |
Adrian Bunk | e5685b9 | 2007-10-24 18:24:42 +0200 | [diff] [blame] | 74 | static DEFINE_MUTEX(acpi_link_lock); |
Sinan Kaya | f1caa61 | 2016-10-24 00:31:31 -0400 | [diff] [blame] | 75 | static int sci_irq = -1, sci_penalty; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | /* -------------------------------------------------------------------------- |
| 78 | PCI Link Device Management |
| 79 | -------------------------------------------------------------------------- */ |
| 80 | |
| 81 | /* |
| 82 | * set context (link) possible list from resource list |
| 83 | */ |
Bjorn Helgaas | 1c9ca3a | 2009-02-17 14:00:40 -0700 | [diff] [blame] | 84 | static acpi_status acpi_pci_link_check_possible(struct acpi_resource *resource, |
| 85 | void *context) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | { |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 87 | struct acpi_pci_link *link = context; |
Rafael J. Wysocki | c02b2fc | 2021-02-19 19:16:10 +0100 | [diff] [blame] | 88 | acpi_handle handle = link->device->handle; |
Bjorn Helgaas | c9d6244 | 2009-02-17 14:00:45 -0700 | [diff] [blame] | 89 | u32 i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | |
Len Brown | eca008c | 2005-09-22 00:25:18 -0400 | [diff] [blame] | 91 | switch (resource->type) { |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 92 | case ACPI_RESOURCE_TYPE_START_DEPENDENT: |
Bjorn Helgaas | 4a5e363 | 2008-07-15 09:42:57 -0600 | [diff] [blame] | 93 | case ACPI_RESOURCE_TYPE_END_TAG: |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 94 | return AE_OK; |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 95 | case ACPI_RESOURCE_TYPE_IRQ: |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 96 | { |
| 97 | struct acpi_resource_irq *p = &resource->data.irq; |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 98 | if (!p || !p->interrupt_count) { |
Rafael J. Wysocki | c02b2fc | 2021-02-19 19:16:10 +0100 | [diff] [blame] | 99 | acpi_handle_debug(handle, |
| 100 | "Blank _PRS IRQ resource\n"); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 101 | return AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 103 | for (i = 0; |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 104 | (i < p->interrupt_count |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 105 | && i < ACPI_PCI_LINK_MAX_POSSIBLE); i++) { |
| 106 | if (!p->interrupts[i]) { |
Rafael J. Wysocki | de972fd | 2021-02-19 19:17:44 +0100 | [diff] [blame] | 107 | acpi_handle_debug(handle, |
| 108 | "Invalid _PRS IRQ %d\n", |
| 109 | p->interrupts[i]); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 110 | continue; |
| 111 | } |
| 112 | link->irq.possible[i] = p->interrupts[i]; |
| 113 | link->irq.possible_count++; |
| 114 | } |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 115 | link->irq.triggering = p->triggering; |
| 116 | link->irq.polarity = p->polarity; |
| 117 | link->irq.resource_type = ACPI_RESOURCE_TYPE_IRQ; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 118 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | } |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 120 | case ACPI_RESOURCE_TYPE_EXTENDED_IRQ: |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 121 | { |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 122 | struct acpi_resource_extended_irq *p = |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 123 | &resource->data.extended_irq; |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 124 | if (!p || !p->interrupt_count) { |
Rafael J. Wysocki | de972fd | 2021-02-19 19:17:44 +0100 | [diff] [blame] | 125 | acpi_handle_debug(handle, |
| 126 | "Blank _PRS EXT IRQ resource\n"); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 127 | return AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 129 | for (i = 0; |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 130 | (i < p->interrupt_count |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 131 | && i < ACPI_PCI_LINK_MAX_POSSIBLE); i++) { |
| 132 | if (!p->interrupts[i]) { |
Rafael J. Wysocki | de972fd | 2021-02-19 19:17:44 +0100 | [diff] [blame] | 133 | acpi_handle_debug(handle, |
| 134 | "Invalid _PRS IRQ %d\n", |
| 135 | p->interrupts[i]); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 136 | continue; |
| 137 | } |
| 138 | link->irq.possible[i] = p->interrupts[i]; |
| 139 | link->irq.possible_count++; |
| 140 | } |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 141 | link->irq.triggering = p->triggering; |
| 142 | link->irq.polarity = p->polarity; |
| 143 | link->irq.resource_type = ACPI_RESOURCE_TYPE_EXTENDED_IRQ; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 144 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | default: |
Rafael J. Wysocki | de972fd | 2021-02-19 19:17:44 +0100 | [diff] [blame] | 147 | acpi_handle_debug(handle, "_PRS resource type 0x%x is not IRQ\n", |
| 148 | resource->type); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 149 | return AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | } |
| 151 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 152 | return AE_CTRL_TERMINATE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | } |
| 154 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 155 | static int acpi_pci_link_get_possible(struct acpi_pci_link *link) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | { |
Rafael J. Wysocki | c02b2fc | 2021-02-19 19:16:10 +0100 | [diff] [blame] | 157 | acpi_handle handle = link->device->handle; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 158 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | |
Rafael J. Wysocki | c02b2fc | 2021-02-19 19:16:10 +0100 | [diff] [blame] | 160 | status = acpi_walk_resources(handle, METHOD_NAME__PRS, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 161 | acpi_pci_link_check_possible, link); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | if (ACPI_FAILURE(status)) { |
Rafael J. Wysocki | c02b2fc | 2021-02-19 19:16:10 +0100 | [diff] [blame] | 163 | acpi_handle_debug(handle, "_PRS not present or invalid"); |
Alex Hung | 92d1b38 | 2018-02-22 21:43:44 -0800 | [diff] [blame] | 164 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | } |
| 166 | |
Rafael J. Wysocki | c02b2fc | 2021-02-19 19:16:10 +0100 | [diff] [blame] | 167 | acpi_handle_debug(handle, "Found %d possible IRQs\n", |
| 168 | link->irq.possible_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 170 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | } |
| 172 | |
Bjorn Helgaas | 1c9ca3a | 2009-02-17 14:00:40 -0700 | [diff] [blame] | 173 | static acpi_status acpi_pci_link_check_current(struct acpi_resource *resource, |
| 174 | void *context) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | { |
Bjorn Helgaas | c9d6244 | 2009-02-17 14:00:45 -0700 | [diff] [blame] | 176 | int *irq = context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | |
Len Brown | eca008c | 2005-09-22 00:25:18 -0400 | [diff] [blame] | 178 | switch (resource->type) { |
Bjorn Helgaas | 4a5e363 | 2008-07-15 09:42:57 -0600 | [diff] [blame] | 179 | case ACPI_RESOURCE_TYPE_START_DEPENDENT: |
| 180 | case ACPI_RESOURCE_TYPE_END_TAG: |
| 181 | return AE_OK; |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 182 | case ACPI_RESOURCE_TYPE_IRQ: |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 183 | { |
| 184 | struct acpi_resource_irq *p = &resource->data.irq; |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 185 | if (!p || !p->interrupt_count) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 186 | /* |
| 187 | * IRQ descriptors may have no IRQ# bits set, |
| 188 | * particularly those those w/ _STA disabled |
| 189 | */ |
Rafael J. Wysocki | c02b2fc | 2021-02-19 19:16:10 +0100 | [diff] [blame] | 190 | pr_debug("Blank _CRS IRQ resource\n"); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 191 | return AE_OK; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 192 | } |
| 193 | *irq = p->interrupts[0]; |
| 194 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | } |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 196 | case ACPI_RESOURCE_TYPE_EXTENDED_IRQ: |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 197 | { |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 198 | struct acpi_resource_extended_irq *p = |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 199 | &resource->data.extended_irq; |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 200 | if (!p || !p->interrupt_count) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 201 | /* |
| 202 | * extended IRQ descriptors must |
| 203 | * return at least 1 IRQ |
| 204 | */ |
Rafael J. Wysocki | c02b2fc | 2021-02-19 19:16:10 +0100 | [diff] [blame] | 205 | pr_debug("Blank _CRS EXT IRQ resource\n"); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 206 | return AE_OK; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 207 | } |
| 208 | *irq = p->interrupts[0]; |
| 209 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | } |
Len Brown | d4ec6c7 | 2006-01-26 17:23:38 -0500 | [diff] [blame] | 211 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | default: |
Rafael J. Wysocki | c02b2fc | 2021-02-19 19:16:10 +0100 | [diff] [blame] | 213 | pr_debug("_CRS resource type 0x%x is not IRQ\n", |
| 214 | resource->type); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 215 | return AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | } |
Bjorn Helgaas | 4a5e363 | 2008-07-15 09:42:57 -0600 | [diff] [blame] | 217 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 218 | return AE_CTRL_TERMINATE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | } |
| 220 | |
| 221 | /* |
| 222 | * Run _CRS and set link->irq.active |
| 223 | * |
| 224 | * return value: |
| 225 | * 0 - success |
| 226 | * !0 - failure |
| 227 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 228 | static int acpi_pci_link_get_current(struct acpi_pci_link *link) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | { |
Rafael J. Wysocki | c02b2fc | 2021-02-19 19:16:10 +0100 | [diff] [blame] | 230 | acpi_handle handle = link->device->handle; |
Bjorn Helgaas | c9d6244 | 2009-02-17 14:00:45 -0700 | [diff] [blame] | 231 | acpi_status status; |
Rafael J. Wysocki | c02b2fc | 2021-02-19 19:16:10 +0100 | [diff] [blame] | 232 | int result = 0; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 233 | int irq = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | 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. Wysocki | c02b2fc | 2021-02-19 19:16:10 +0100 | [diff] [blame] | 242 | acpi_handle_err(handle, "Unable to read status\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | goto end; |
| 244 | } |
| 245 | |
| 246 | if (!link->device->status.enabled) { |
Rafael J. Wysocki | c02b2fc | 2021-02-19 19:16:10 +0100 | [diff] [blame] | 247 | acpi_handle_debug(handle, "Link disabled\n"); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 248 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | } |
| 250 | } |
| 251 | |
Maximilian Luz | c6237b2 | 2020-11-05 03:06:00 +0100 | [diff] [blame] | 252 | /* |
| 253 | * Query and parse _CRS to get the current IRQ assignment. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | */ |
| 255 | |
Rafael J. Wysocki | c02b2fc | 2021-02-19 19:16:10 +0100 | [diff] [blame] | 256 | status = acpi_walk_resources(handle, METHOD_NAME__CRS, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 257 | acpi_pci_link_check_current, &irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | if (ACPI_FAILURE(status)) { |
Rafael J. Wysocki | 4c32454 | 2021-03-05 19:41:44 +0100 | [diff] [blame] | 259 | acpi_evaluation_failure_warn(handle, "_CRS", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | result = -ENODEV; |
| 261 | goto end; |
| 262 | } |
| 263 | |
| 264 | if (acpi_strict && !irq) { |
Rafael J. Wysocki | c02b2fc | 2021-02-19 19:16:10 +0100 | [diff] [blame] | 265 | acpi_handle_err(handle, "_CRS returned 0\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | result = -ENODEV; |
| 267 | } |
| 268 | |
| 269 | link->irq.active = irq; |
| 270 | |
Rafael J. Wysocki | c02b2fc | 2021-02-19 19:16:10 +0100 | [diff] [blame] | 271 | acpi_handle_debug(handle, "Link at IRQ %d \n", link->irq.active); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 273 | end: |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 274 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | } |
| 276 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 277 | static int acpi_pci_link_set(struct acpi_pci_link *link, int irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | struct { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 280 | struct acpi_resource res; |
| 281 | struct acpi_resource end; |
| 282 | } *resource; |
| 283 | struct acpi_buffer buffer = { 0, NULL }; |
Rafael J. Wysocki | c02b2fc | 2021-02-19 19:16:10 +0100 | [diff] [blame] | 284 | acpi_handle handle = link->device->handle; |
| 285 | acpi_status status; |
| 286 | int result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | |
Bjorn Helgaas | 6eca4b4 | 2009-02-17 14:00:50 -0700 | [diff] [blame] | 288 | if (!irq) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 289 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | |
Burman Yan | 36bcbec | 2006-12-19 12:56:11 -0800 | [diff] [blame] | 291 | resource = kzalloc(sizeof(*resource) + 1, irqs_disabled() ? GFP_ATOMIC: GFP_KERNEL); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 292 | if (!resource) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 293 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 295 | buffer.length = sizeof(*resource) + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | buffer.pointer = resource; |
| 297 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 298 | switch (link->irq.resource_type) { |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 299 | case ACPI_RESOURCE_TYPE_IRQ: |
| 300 | resource->res.type = ACPI_RESOURCE_TYPE_IRQ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | resource->res.length = sizeof(struct acpi_resource); |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 302 | 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 Schmauss | c163f90c | 2019-02-15 13:36:19 -0800 | [diff] [blame] | 306 | resource->res.data.irq.shareable = |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 307 | ACPI_EXCLUSIVE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | else |
Erik Schmauss | c163f90c | 2019-02-15 13:36:19 -0800 | [diff] [blame] | 309 | resource->res.data.irq.shareable = ACPI_SHARED; |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 310 | resource->res.data.irq.interrupt_count = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | resource->res.data.irq.interrupts[0] = irq; |
| 312 | break; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 313 | |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 314 | case ACPI_RESOURCE_TYPE_EXTENDED_IRQ: |
| 315 | resource->res.type = ACPI_RESOURCE_TYPE_EXTENDED_IRQ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | resource->res.length = sizeof(struct acpi_resource); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 317 | resource->res.data.extended_irq.producer_consumer = |
| 318 | ACPI_CONSUMER; |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 319 | 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 Goede | 1c5e1cd | 2020-04-13 15:09:49 +0200 | [diff] [blame] | 324 | resource->res.data.extended_irq.shareable = |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 325 | ACPI_EXCLUSIVE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | else |
Hans de Goede | 1c5e1cd | 2020-04-13 15:09:49 +0200 | [diff] [blame] | 327 | resource->res.data.extended_irq.shareable = ACPI_SHARED; |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 328 | resource->res.data.extended_irq.interrupt_count = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | resource->res.data.extended_irq.interrupts[0] = irq; |
| 330 | /* ignore resource_source, it's optional */ |
| 331 | break; |
| 332 | default: |
Rafael J. Wysocki | c02b2fc | 2021-02-19 19:16:10 +0100 | [diff] [blame] | 333 | acpi_handle_err(handle, "Invalid resource type %d\n", |
| 334 | link->irq.resource_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | result = -EINVAL; |
| 336 | goto end; |
| 337 | |
| 338 | } |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 339 | resource->end.type = ACPI_RESOURCE_TYPE_END_TAG; |
Yinghai Lu | f084dbb | 2013-03-23 19:16:37 +0000 | [diff] [blame] | 340 | resource->end.length = sizeof(struct acpi_resource); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | |
| 342 | /* Attempt to set the resource */ |
Patrick Mochel | 67a7136 | 2006-05-19 16:54:42 -0400 | [diff] [blame] | 343 | status = acpi_set_current_resources(link->device->handle, &buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | |
| 345 | /* check for total failure */ |
| 346 | if (ACPI_FAILURE(status)) { |
Rafael J. Wysocki | 4c32454 | 2021-03-05 19:41:44 +0100 | [diff] [blame] | 347 | acpi_evaluation_failure_warn(handle, "_SRS", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | 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. Wysocki | c02b2fc | 2021-02-19 19:16:10 +0100 | [diff] [blame] | 355 | acpi_handle_err(handle, "Unable to read status\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | goto end; |
| 357 | } |
Rafael J. Wysocki | c02b2fc | 2021-02-19 19:16:10 +0100 | [diff] [blame] | 358 | if (!link->device->status.enabled) |
| 359 | acpi_handle_warn(handle, "Disabled and referenced, BIOS bug\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | |
| 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. Wysocki | c02b2fc | 2021-02-19 19:16:10 +0100 | [diff] [blame] | 376 | acpi_handle_warn(handle, "BIOS reported IRQ %d, using IRQ %d\n", |
| 377 | link->irq.active, irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | link->irq.active = irq; |
| 379 | } |
| 380 | |
Rafael J. Wysocki | c02b2fc | 2021-02-19 19:16:10 +0100 | [diff] [blame] | 381 | acpi_handle_debug(handle, "Set IRQ %d\n", link->irq.active); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 382 | |
| 383 | end: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | kfree(resource); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 385 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | } |
| 387 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | /* -------------------------------------------------------------------------- |
| 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 Luz | c6237b2 | 2020-11-05 03:06:00 +0100 | [diff] [blame] | 395 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | * "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 Luz | c6237b2 | 2020-11-05 03:06:00 +0100 | [diff] [blame] | 413 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | * 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 Kaya | 5c5087a | 2016-04-17 13:36:54 -0400 | [diff] [blame] | 423 | #define ACPI_MAX_ISA_IRQS 16 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | #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 Kaya | 5c5087a | 2016-04-17 13:36:54 -0400 | [diff] [blame] | 431 | static int acpi_isa_irq_penalty[ACPI_MAX_ISA_IRQS] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | PIRQ_PENALTY_ISA_ALWAYS, /* IRQ0 timer */ |
| 433 | PIRQ_PENALTY_ISA_ALWAYS, /* IRQ1 keyboard */ |
| 434 | PIRQ_PENALTY_ISA_ALWAYS, /* IRQ2 cascade */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 435 | PIRQ_PENALTY_ISA_TYPICAL, /* IRQ3 serial */ |
| 436 | PIRQ_PENALTY_ISA_TYPICAL, /* IRQ4 serial */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | 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 Kaya | 103544d | 2016-04-17 13:36:53 -0400 | [diff] [blame] | 441 | 0, /* IRQ9 PCI, often acpi */ |
| 442 | 0, /* IRQ10 PCI */ |
| 443 | 0, /* IRQ11 PCI */ |
Bjorn Helgaas | 1c9ca3a | 2009-02-17 14:00:40 -0700 | [diff] [blame] | 444 | 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. Wysocki | e249714 | 2016-02-24 13:55:38 +0100 | [diff] [blame] | 448 | /* >IRQ15 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | }; |
| 450 | |
Sinan Kaya | 103544d | 2016-04-17 13:36:53 -0400 | [diff] [blame] | 451 | static int acpi_irq_pci_sharing_penalty(int irq) |
| 452 | { |
| 453 | struct acpi_pci_link *link; |
| 454 | int penalty = 0; |
Sinan Kaya | 4a6e68b | 2016-06-29 04:27:35 -0400 | [diff] [blame] | 455 | int i; |
Sinan Kaya | 103544d | 2016-04-17 13:36:53 -0400 | [diff] [blame] | 456 | |
| 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 Kaya | 103544d | 2016-04-17 13:36:53 -0400 | [diff] [blame] | 464 | |
Sinan Kaya | 4a6e68b | 2016-06-29 04:27:35 -0400 | [diff] [blame] | 465 | /* |
| 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 Kaya | 103544d | 2016-04-17 13:36:53 -0400 | [diff] [blame] | 472 | } |
| 473 | |
| 474 | return penalty; |
| 475 | } |
| 476 | |
| 477 | static int acpi_irq_get_penalty(int irq) |
| 478 | { |
| 479 | int penalty = 0; |
| 480 | |
Sinan Kaya | f1caa61 | 2016-10-24 00:31:31 -0400 | [diff] [blame] | 481 | if (irq == sci_irq) |
| 482 | penalty += sci_penalty; |
Sinan Kaya | 103544d | 2016-04-17 13:36:53 -0400 | [diff] [blame] | 483 | |
Sinan Kaya | f7eca37 | 2016-06-29 04:27:37 -0400 | [diff] [blame] | 484 | if (irq < ACPI_MAX_ISA_IRQS) |
| 485 | return penalty + acpi_isa_irq_penalty[irq]; |
| 486 | |
Sinan Kaya | f1caa61 | 2016-10-24 00:31:31 -0400 | [diff] [blame] | 487 | return penalty + acpi_irq_pci_sharing_penalty(irq); |
Sinan Kaya | 103544d | 2016-04-17 13:36:53 -0400 | [diff] [blame] | 488 | } |
| 489 | |
Sinan Kaya | 487cf917 | 2016-06-29 04:27:36 -0400 | [diff] [blame] | 490 | int __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 Helgaas | 3283625 | 2008-11-05 16:17:52 -0700 | [diff] [blame] | 526 | static int acpi_irq_balance = -1; /* 0: static, 1: balance */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 528 | static int acpi_pci_link_allocate(struct acpi_pci_link *link) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | { |
Rafael J. Wysocki | de972fd | 2021-02-19 19:17:44 +0100 | [diff] [blame] | 530 | acpi_handle handle = link->device->handle; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 531 | int irq; |
| 532 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 534 | 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 Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 538 | return 0; |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 539 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | |
| 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. Wysocki | de972fd | 2021-02-19 19:17:44 +0100 | [diff] [blame] | 553 | acpi_handle_warn(handle, "_CRS %d not found in _PRS\n", |
| 554 | link->irq.active); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | link->irq.active = 0; |
| 556 | } |
| 557 | |
| 558 | /* |
| 559 | * if active found, use it; else pick entry from end of possible list. |
| 560 | */ |
Bjorn Helgaas | 1c9ca3a | 2009-02-17 14:00:40 -0700 | [diff] [blame] | 561 | if (link->irq.active) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | irq = link->irq.active; |
Bjorn Helgaas | 1c9ca3a | 2009-02-17 14:00:40 -0700 | [diff] [blame] | 563 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | irq = link->irq.possible[link->irq.possible_count - 1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | |
| 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 Kaya | 103544d | 2016-04-17 13:36:53 -0400 | [diff] [blame] | 572 | if (acpi_irq_get_penalty(irq) > |
| 573 | acpi_irq_get_penalty(link->irq.possible[i])) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | irq = link->irq.possible[i]; |
| 575 | } |
| 576 | } |
Sinan Kaya | 103544d | 2016-04-17 13:36:53 -0400 | [diff] [blame] | 577 | if (acpi_irq_get_penalty(irq) >= PIRQ_PENALTY_ISA_ALWAYS) { |
Rafael J. Wysocki | de972fd | 2021-02-19 19:17:44 +0100 | [diff] [blame] | 578 | acpi_handle_err(handle, |
| 579 | "No IRQ available. Try pci=noacpi or acpi=off\n"); |
Jiang Liu | 5ebc760 | 2015-09-17 14:02:45 +0800 | [diff] [blame] | 580 | return -ENODEV; |
| 581 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | |
| 583 | /* Attempt to enable the link device at this IRQ. */ |
| 584 | if (acpi_pci_link_set(link, irq)) { |
Rafael J. Wysocki | de972fd | 2021-02-19 19:17:44 +0100 | [diff] [blame] | 585 | acpi_handle_err(handle, |
| 586 | "Unable to set IRQ. Try pci=noacpi or acpi=off\n"); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 587 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | } else { |
Sinan Kaya | 98756f5 | 2016-10-24 00:31:32 -0400 | [diff] [blame] | 589 | if (link->irq.active < ACPI_MAX_ISA_IRQS) |
| 590 | acpi_isa_irq_penalty[link->irq.active] += |
| 591 | PIRQ_PENALTY_PCI_USING; |
| 592 | |
Rafael J. Wysocki | de972fd | 2021-02-19 19:17:44 +0100 | [diff] [blame] | 593 | acpi_handle_info(handle, "Enabled at IRQ %d\n", |
| 594 | link->irq.active); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | } |
| 596 | |
| 597 | link->irq.initialized = 1; |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 598 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | } |
| 600 | |
| 601 | /* |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 602 | * acpi_pci_link_allocate_irq |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | * success: return IRQ >= 0 |
| 604 | * failure: return -1 |
| 605 | */ |
Bjorn Helgaas | 1c9ca3a | 2009-02-17 14:00:40 -0700 | [diff] [blame] | 606 | int acpi_pci_link_allocate_irq(acpi_handle handle, int index, int *triggering, |
| 607 | int *polarity, char **name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | { |
Bjorn Helgaas | c9d6244 | 2009-02-17 14:00:45 -0700 | [diff] [blame] | 609 | int result; |
| 610 | struct acpi_device *device; |
| 611 | struct acpi_pci_link *link; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | result = acpi_bus_get_device(handle, &device); |
| 614 | if (result) { |
Rafael J. Wysocki | de972fd | 2021-02-19 19:17:44 +0100 | [diff] [blame] | 615 | acpi_handle_err(handle, "Invalid link device\n"); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 616 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | } |
| 618 | |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 619 | link = acpi_driver_data(device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | if (!link) { |
Rafael J. Wysocki | de972fd | 2021-02-19 19:17:44 +0100 | [diff] [blame] | 621 | acpi_handle_err(handle, "Invalid link context\n"); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 622 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | } |
| 624 | |
| 625 | /* TBD: Support multiple index (IRQ) entries per Link Device */ |
| 626 | if (index) { |
Rafael J. Wysocki | de972fd | 2021-02-19 19:17:44 +0100 | [diff] [blame] | 627 | acpi_handle_err(handle, "Invalid index %d\n", index); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 628 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | } |
| 630 | |
Ingo Molnar | 36e4309 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 631 | mutex_lock(&acpi_link_lock); |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 632 | if (acpi_pci_link_allocate(link)) { |
Ingo Molnar | 36e4309 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 633 | mutex_unlock(&acpi_link_lock); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 634 | return -1; |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 635 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 636 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | if (!link->irq.active) { |
Ingo Molnar | 36e4309 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 638 | mutex_unlock(&acpi_link_lock); |
Rafael J. Wysocki | de972fd | 2021-02-19 19:17:44 +0100 | [diff] [blame] | 639 | acpi_handle_err(handle, "Link active IRQ is 0!\n"); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 640 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 642 | link->refcnt++; |
Ingo Molnar | 36e4309 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 643 | mutex_unlock(&acpi_link_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 645 | if (triggering) |
| 646 | *triggering = link->irq.triggering; |
| 647 | if (polarity) |
| 648 | *polarity = link->irq.polarity; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 649 | if (name) |
| 650 | *name = acpi_device_bid(link->device); |
Rafael J. Wysocki | c02b2fc | 2021-02-19 19:16:10 +0100 | [diff] [blame] | 651 | acpi_handle_debug(handle, "Link is referenced\n"); |
Krzysztof Wilczynski | 8698fab | 2019-08-19 15:53:24 +0200 | [diff] [blame] | 652 | return link->irq.active; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | } |
| 654 | |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 655 | /* |
| 656 | * We don't change link's irq information here. After it is reenabled, we |
| 657 | * continue use the info |
| 658 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 659 | int acpi_pci_link_free_irq(acpi_handle handle) |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 660 | { |
Bjorn Helgaas | c9d6244 | 2009-02-17 14:00:45 -0700 | [diff] [blame] | 661 | struct acpi_device *device; |
| 662 | struct acpi_pci_link *link; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 663 | acpi_status result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 665 | result = acpi_bus_get_device(handle, &device); |
| 666 | if (result) { |
Rafael J. Wysocki | de972fd | 2021-02-19 19:17:44 +0100 | [diff] [blame] | 667 | acpi_handle_err(handle, "Invalid link device\n"); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 668 | return -1; |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 669 | } |
| 670 | |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 671 | link = acpi_driver_data(device); |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 672 | if (!link) { |
Rafael J. Wysocki | de972fd | 2021-02-19 19:17:44 +0100 | [diff] [blame] | 673 | acpi_handle_err(handle, "Invalid link context\n"); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 674 | return -1; |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 675 | } |
| 676 | |
Ingo Molnar | 36e4309 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 677 | mutex_lock(&acpi_link_lock); |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 678 | if (!link->irq.initialized) { |
Ingo Molnar | 36e4309 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 679 | mutex_unlock(&acpi_link_lock); |
Rafael J. Wysocki | de972fd | 2021-02-19 19:17:44 +0100 | [diff] [blame] | 680 | acpi_handle_err(handle, "Link isn't initialized\n"); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 681 | return -1; |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 682 | } |
David Shaohua Li | ecc21eb | 2005-08-03 11:00:11 -0400 | [diff] [blame] | 683 | #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 Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 693 | link->refcnt--; |
David Shaohua Li | ecc21eb | 2005-08-03 11:00:11 -0400 | [diff] [blame] | 694 | #endif |
Rafael J. Wysocki | c02b2fc | 2021-02-19 19:16:10 +0100 | [diff] [blame] | 695 | acpi_handle_debug(handle, "Link is dereferenced\n"); |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 696 | |
Bjorn Helgaas | 1c9ca3a | 2009-02-17 14:00:40 -0700 | [diff] [blame] | 697 | if (link->refcnt == 0) |
donald.d.dugger@intel.com | 383d7a1 | 2008-10-17 07:49:50 -0700 | [diff] [blame] | 698 | acpi_evaluate_object(link->device->handle, "_DIS", NULL, NULL); |
Bjorn Helgaas | 1c9ca3a | 2009-02-17 14:00:40 -0700 | [diff] [blame] | 699 | |
Ingo Molnar | 36e4309 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 700 | mutex_unlock(&acpi_link_lock); |
Krzysztof Wilczynski | 8698fab | 2019-08-19 15:53:24 +0200 | [diff] [blame] | 701 | return link->irq.active; |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 702 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 703 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | /* -------------------------------------------------------------------------- |
| 705 | Driver Interface |
| 706 | -------------------------------------------------------------------------- */ |
| 707 | |
Rafael J. Wysocki | 4daeaf6 | 2013-01-30 14:27:37 +0100 | [diff] [blame] | 708 | static int acpi_pci_link_add(struct acpi_device *device, |
| 709 | const struct acpi_device_id *not_used) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | { |
Rafael J. Wysocki | de972fd | 2021-02-19 19:17:44 +0100 | [diff] [blame] | 711 | acpi_handle handle = device->handle; |
Bjorn Helgaas | c9d6244 | 2009-02-17 14:00:45 -0700 | [diff] [blame] | 712 | struct acpi_pci_link *link; |
Rafael J. Wysocki | de972fd | 2021-02-19 19:17:44 +0100 | [diff] [blame] | 713 | int result; |
Bjorn Helgaas | c9d6244 | 2009-02-17 14:00:45 -0700 | [diff] [blame] | 714 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | |
Burman Yan | 36bcbec | 2006-12-19 12:56:11 -0800 | [diff] [blame] | 716 | link = kzalloc(sizeof(struct acpi_pci_link), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | if (!link) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 718 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | |
| 720 | link->device = device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | strcpy(acpi_device_name(device), ACPI_PCI_LINK_DEVICE_NAME); |
| 722 | strcpy(acpi_device_class(device), ACPI_PCI_LINK_CLASS); |
Pavel Machek | db89b4f | 2008-09-22 14:37:34 -0700 | [diff] [blame] | 723 | device->driver_data = link; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | |
Ingo Molnar | 36e4309 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 725 | mutex_lock(&acpi_link_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | 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. Wysocki | de972fd | 2021-02-19 19:17:44 +0100 | [diff] [blame] | 733 | pr_info("Interrupt link %s configured for IRQ %d\n", |
| 734 | acpi_device_bid(device), link->irq.active); |
| 735 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | for (i = 0; i < link->irq.possible_count; i++) { |
Rafael J. Wysocki | de972fd | 2021-02-19 19:17:44 +0100 | [diff] [blame] | 737 | if (link->irq.active != link->irq.possible[i]) |
| 738 | acpi_handle_debug(handle, "Possible IRQ %d\n", |
| 739 | link->irq.possible[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | } |
| 741 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 742 | if (!link->device->status.enabled) |
Rafael J. Wysocki | de972fd | 2021-02-19 19:17:44 +0100 | [diff] [blame] | 743 | pr_info("Interrupt link %s disabled\n", acpi_device_bid(device)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | |
Bjorn Helgaas | 5f0dcca | 2009-02-17 14:00:55 -0700 | [diff] [blame] | 745 | list_add_tail(&link->list, &acpi_link_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 747 | end: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | /* disable all links -- to be activated on use */ |
Rafael J. Wysocki | de972fd | 2021-02-19 19:17:44 +0100 | [diff] [blame] | 749 | acpi_evaluate_object(handle, "_DIS", NULL, NULL); |
Ingo Molnar | 36e4309 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 750 | mutex_unlock(&acpi_link_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | |
| 752 | if (result) |
| 753 | kfree(link); |
| 754 | |
Rafael J. Wysocki | 4daeaf6 | 2013-01-30 14:27:37 +0100 | [diff] [blame] | 755 | return result < 0 ? result : 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | } |
| 757 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 758 | static int acpi_pci_link_resume(struct acpi_pci_link *link) |
Linus Torvalds | 697a2d6 | 2005-08-01 12:37:54 -0700 | [diff] [blame] | 759 | { |
Linus Torvalds | 697a2d6 | 2005-08-01 12:37:54 -0700 | [diff] [blame] | 760 | if (link->refcnt && link->irq.active && link->irq.initialized) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 761 | return (acpi_pci_link_set(link, link->irq.active)); |
Bjorn Helgaas | 1c9ca3a | 2009-02-17 14:00:40 -0700 | [diff] [blame] | 762 | |
| 763 | return 0; |
Linus Torvalds | 697a2d6 | 2005-08-01 12:37:54 -0700 | [diff] [blame] | 764 | } |
| 765 | |
Rafael J. Wysocki | c3146df2 | 2011-03-12 22:16:51 +0100 | [diff] [blame] | 766 | static void irqrouter_resume(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | { |
Bjorn Helgaas | c9d6244 | 2009-02-17 14:00:45 -0700 | [diff] [blame] | 768 | struct acpi_pci_link *link; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | |
Bjorn Helgaas | 5f0dcca | 2009-02-17 14:00:55 -0700 | [diff] [blame] | 770 | list_for_each_entry(link, &acpi_link_list, list) { |
Linus Torvalds | 697a2d6 | 2005-08-01 12:37:54 -0700 | [diff] [blame] | 771 | acpi_pci_link_resume(link); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | } |
| 774 | |
Rafael J. Wysocki | 4daeaf6 | 2013-01-30 14:27:37 +0100 | [diff] [blame] | 775 | static void acpi_pci_link_remove(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | { |
Bjorn Helgaas | c9d6244 | 2009-02-17 14:00:45 -0700 | [diff] [blame] | 777 | struct acpi_pci_link *link; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 779 | link = acpi_driver_data(device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | |
Ingo Molnar | 36e4309 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 781 | mutex_lock(&acpi_link_lock); |
Bjorn Helgaas | 5f0dcca | 2009-02-17 14:00:55 -0700 | [diff] [blame] | 782 | list_del(&link->list); |
Ingo Molnar | 36e4309 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 783 | mutex_unlock(&acpi_link_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | |
| 785 | kfree(link); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | } |
| 787 | |
| 788 | /* |
Sinan Kaya | 5c5087a | 2016-04-17 13:36:54 -0400 | [diff] [blame] | 789 | * modify acpi_isa_irq_penalty[] from cmdline |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | */ |
| 791 | static 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 Kaya | 5c5087a | 2016-04-17 13:36:54 -0400 | [diff] [blame] | 798 | int new_penalty; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 800 | retval = get_option(&str, &irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | |
| 802 | if (!retval) |
| 803 | break; /* no number found */ |
| 804 | |
Sinan Kaya | 5c5087a | 2016-04-17 13:36:54 -0400 | [diff] [blame] | 805 | /* see if this is a ISA IRQ */ |
| 806 | if ((irq < 0) || (irq >= ACPI_MAX_ISA_IRQS)) |
Rafael J. Wysocki | e249714 | 2016-02-24 13:55:38 +0100 | [diff] [blame] | 807 | continue; |
| 808 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | if (used) |
Sinan Kaya | eeaed4b | 2016-10-24 00:31:30 -0400 | [diff] [blame] | 810 | new_penalty = acpi_isa_irq_penalty[irq] + |
Sinan Kaya | 5c5087a | 2016-04-17 13:36:54 -0400 | [diff] [blame] | 811 | PIRQ_PENALTY_ISA_USED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | else |
Sinan Kaya | 5c5087a | 2016-04-17 13:36:54 -0400 | [diff] [blame] | 813 | new_penalty = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | |
Sinan Kaya | 5c5087a | 2016-04-17 13:36:54 -0400 | [diff] [blame] | 815 | acpi_isa_irq_penalty[irq] = new_penalty; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | 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 Li | c9c3e45 | 2005-04-01 00:07:31 -0500 | [diff] [blame] | 829 | void acpi_penalize_isa_irq(int irq, int active) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | { |
Sinan Kaya | 5c5087a | 2016-04-17 13:36:54 -0400 | [diff] [blame] | 831 | if ((irq >= 0) && (irq < ARRAY_SIZE(acpi_isa_irq_penalty))) |
Sinan Kaya | eeaed4b | 2016-10-24 00:31:30 -0400 | [diff] [blame] | 832 | acpi_isa_irq_penalty[irq] += |
Sinan Kaya | 5479458 | 2016-06-29 04:27:38 -0400 | [diff] [blame] | 833 | (active ? PIRQ_PENALTY_ISA_USED : PIRQ_PENALTY_PCI_USING); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | } |
| 835 | |
Jiang Liu | 5ebc760 | 2015-09-17 14:02:45 +0800 | [diff] [blame] | 836 | bool acpi_isa_irq_available(int irq) |
| 837 | { |
Sinan Kaya | 5c5087a | 2016-04-17 13:36:54 -0400 | [diff] [blame] | 838 | return irq >= 0 && (irq >= ARRAY_SIZE(acpi_isa_irq_penalty) || |
Sinan Kaya | 103544d | 2016-04-17 13:36:53 -0400 | [diff] [blame] | 839 | acpi_irq_get_penalty(irq) < PIRQ_PENALTY_ISA_ALWAYS); |
Jiang Liu | 5ebc760 | 2015-09-17 14:02:45 +0800 | [diff] [blame] | 840 | } |
| 841 | |
Sinan Kaya | f1caa61 | 2016-10-24 00:31:31 -0400 | [diff] [blame] | 842 | void 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 Liu | 5d0ddfe | 2015-08-21 15:36:23 +0800 | [diff] [blame] | 853 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 | * 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 | */ |
| 858 | static int __init acpi_irq_isa(char *str) |
| 859 | { |
| 860 | return acpi_irq_penalty_update(str, 1); |
| 861 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 862 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | __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 | */ |
| 870 | static int __init acpi_irq_pci(char *str) |
| 871 | { |
| 872 | return acpi_irq_penalty_update(str, 0); |
| 873 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 874 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | __setup("acpi_irq_pci=", acpi_irq_pci); |
| 876 | |
| 877 | static int __init acpi_irq_nobalance_set(char *str) |
| 878 | { |
| 879 | acpi_irq_balance = 0; |
| 880 | return 1; |
| 881 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 882 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | __setup("acpi_irq_nobalance", acpi_irq_nobalance_set); |
| 884 | |
Roel Kluin | 8a383ef | 2008-12-09 20:45:30 +0100 | [diff] [blame] | 885 | static int __init acpi_irq_balance_set(char *str) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | { |
| 887 | acpi_irq_balance = 1; |
| 888 | return 1; |
| 889 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 891 | __setup("acpi_irq_balance", acpi_irq_balance_set); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | |
Rafael J. Wysocki | c3146df2 | 2011-03-12 22:16:51 +0100 | [diff] [blame] | 893 | static struct syscore_ops irqrouter_syscore_ops = { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 894 | .resume = irqrouter_resume, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | }; |
| 896 | |
Rafael J. Wysocki | 4daeaf6 | 2013-01-30 14:27:37 +0100 | [diff] [blame] | 897 | void __init acpi_pci_link_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | if (acpi_noirq) |
Rafael J. Wysocki | 4daeaf6 | 2013-01-30 14:27:37 +0100 | [diff] [blame] | 900 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | |
Bjorn Helgaas | 3283625 | 2008-11-05 16:17:52 -0700 | [diff] [blame] | 902 | 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. Wysocki | 4daeaf6 | 2013-01-30 14:27:37 +0100 | [diff] [blame] | 909 | register_syscore_ops(&irqrouter_syscore_ops); |
| 910 | acpi_scan_add_handler(&pci_link_handler); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 | } |