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 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * TBD: |
| 10 | * 1. Support more than one IRQ resource entry per link device (index). |
| 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 | c3146df2 | 2011-03-12 22:16:51 +0100 | [diff] [blame] | 15 | #include <linux/syscore_ops.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/kernel.h> |
| 17 | #include <linux/module.h> |
| 18 | #include <linux/init.h> |
| 19 | #include <linux/types.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/spinlock.h> |
| 21 | #include <linux/pm.h> |
| 22 | #include <linux/pci.h> |
Ingo Molnar | 36e4309 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 23 | #include <linux/mutex.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 24 | #include <linux/slab.h> |
Lv Zheng | 8b48463 | 2013-12-03 08:49:16 +0800 | [diff] [blame] | 25 | #include <linux/acpi.h> |
Sinan Kaya | 103544d | 2016-04-17 13:36:53 -0400 | [diff] [blame] | 26 | #include <linux/irq.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
Rashika | c071b604 | 2013-12-17 14:58:31 +0530 | [diff] [blame] | 28 | #include "internal.h" |
| 29 | |
Bjorn Helgaas | 1c9ca3a | 2009-02-17 14:00:40 -0700 | [diff] [blame] | 30 | #define _COMPONENT ACPI_PCI_COMPONENT |
Len Brown | f52fd66 | 2007-02-12 22:42:12 -0500 | [diff] [blame] | 31 | ACPI_MODULE_NAME("pci_link"); |
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" |
| 34 | #define ACPI_PCI_LINK_FILE_INFO "info" |
| 35 | #define ACPI_PCI_LINK_FILE_STATUS "state" |
Bjorn Helgaas | 1c9ca3a | 2009-02-17 14:00:40 -0700 | [diff] [blame] | 36 | #define ACPI_PCI_LINK_MAX_POSSIBLE 16 |
| 37 | |
Rafael J. Wysocki | 4daeaf6 | 2013-01-30 14:27:37 +0100 | [diff] [blame] | 38 | static int acpi_pci_link_add(struct acpi_device *device, |
| 39 | const struct acpi_device_id *not_used); |
| 40 | static void acpi_pci_link_remove(struct acpi_device *device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Márton Németh | c97adf9 | 2010-01-10 17:15:36 +0100 | [diff] [blame] | 42 | static const struct acpi_device_id link_device_ids[] = { |
Thomas Renninger | 1ba90e3 | 2007-07-23 14:44:41 +0200 | [diff] [blame] | 43 | {"PNP0C0F", 0}, |
| 44 | {"", 0}, |
| 45 | }; |
Thomas Renninger | 1ba90e3 | 2007-07-23 14:44:41 +0200 | [diff] [blame] | 46 | |
Rafael J. Wysocki | 4daeaf6 | 2013-01-30 14:27:37 +0100 | [diff] [blame] | 47 | static struct acpi_scan_handler pci_link_handler = { |
Thomas Renninger | 1ba90e3 | 2007-07-23 14:44:41 +0200 | [diff] [blame] | 48 | .ids = link_device_ids, |
Rafael J. Wysocki | 4daeaf6 | 2013-01-30 14:27:37 +0100 | [diff] [blame] | 49 | .attach = acpi_pci_link_add, |
| 50 | .detach = acpi_pci_link_remove, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | }; |
| 52 | |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 53 | /* |
| 54 | * If a link is initialized, we never change its active and initialized |
| 55 | * later even the link is disable. Instead, we just repick the active irq |
| 56 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | struct acpi_pci_link_irq { |
Sinan Kaya | 37c5939 | 2015-12-09 11:18:28 -0500 | [diff] [blame] | 58 | u32 active; /* Current IRQ */ |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 59 | u8 triggering; /* All IRQs */ |
Bjorn Helgaas | 1c9ca3a | 2009-02-17 14:00:40 -0700 | [diff] [blame] | 60 | u8 polarity; /* All IRQs */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 61 | u8 resource_type; |
| 62 | u8 possible_count; |
Sinan Kaya | 37c5939 | 2015-12-09 11:18:28 -0500 | [diff] [blame] | 63 | u32 possible[ACPI_PCI_LINK_MAX_POSSIBLE]; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 64 | u8 initialized:1; |
| 65 | u8 reserved:7; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | }; |
| 67 | |
| 68 | struct acpi_pci_link { |
Bjorn Helgaas | 5f0dcca | 2009-02-17 14:00:55 -0700 | [diff] [blame] | 69 | struct list_head list; |
Bjorn Helgaas | 1c9ca3a | 2009-02-17 14:00:40 -0700 | [diff] [blame] | 70 | struct acpi_device *device; |
| 71 | struct acpi_pci_link_irq irq; |
| 72 | int refcnt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | }; |
| 74 | |
Bjorn Helgaas | 5f0dcca | 2009-02-17 14:00:55 -0700 | [diff] [blame] | 75 | static LIST_HEAD(acpi_link_list); |
Adrian Bunk | e5685b9 | 2007-10-24 18:24:42 +0200 | [diff] [blame] | 76 | static DEFINE_MUTEX(acpi_link_lock); |
Sinan Kaya | f1caa61 | 2016-10-24 00:31:31 -0400 | [diff] [blame] | 77 | static int sci_irq = -1, sci_penalty; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | /* -------------------------------------------------------------------------- |
| 80 | PCI Link Device Management |
| 81 | -------------------------------------------------------------------------- */ |
| 82 | |
| 83 | /* |
| 84 | * set context (link) possible list from resource list |
| 85 | */ |
Bjorn Helgaas | 1c9ca3a | 2009-02-17 14:00:40 -0700 | [diff] [blame] | 86 | static acpi_status acpi_pci_link_check_possible(struct acpi_resource *resource, |
| 87 | void *context) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | { |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 89 | struct acpi_pci_link *link = context; |
Bjorn Helgaas | c9d6244 | 2009-02-17 14:00:45 -0700 | [diff] [blame] | 90 | u32 i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
Len Brown | eca008c | 2005-09-22 00:25:18 -0400 | [diff] [blame] | 92 | switch (resource->type) { |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 93 | case ACPI_RESOURCE_TYPE_START_DEPENDENT: |
Bjorn Helgaas | 4a5e363 | 2008-07-15 09:42:57 -0600 | [diff] [blame] | 94 | case ACPI_RESOURCE_TYPE_END_TAG: |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 95 | return AE_OK; |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 96 | case ACPI_RESOURCE_TYPE_IRQ: |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 97 | { |
| 98 | struct acpi_resource_irq *p = &resource->data.irq; |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 99 | if (!p || !p->interrupt_count) { |
Bjorn Helgaas | 4a5e363 | 2008-07-15 09:42:57 -0600 | [diff] [blame] | 100 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 101 | "Blank _PRS IRQ resource\n")); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 102 | return AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 104 | for (i = 0; |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 105 | (i < p->interrupt_count |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 106 | && i < ACPI_PCI_LINK_MAX_POSSIBLE); i++) { |
| 107 | if (!p->interrupts[i]) { |
Bjorn Helgaas | 4a5e363 | 2008-07-15 09:42:57 -0600 | [diff] [blame] | 108 | printk(KERN_WARNING PREFIX |
| 109 | "Invalid _PRS IRQ %d\n", |
| 110 | p->interrupts[i]); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 111 | continue; |
| 112 | } |
| 113 | link->irq.possible[i] = p->interrupts[i]; |
| 114 | link->irq.possible_count++; |
| 115 | } |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 116 | link->irq.triggering = p->triggering; |
| 117 | link->irq.polarity = p->polarity; |
| 118 | link->irq.resource_type = ACPI_RESOURCE_TYPE_IRQ; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 119 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | } |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 121 | case ACPI_RESOURCE_TYPE_EXTENDED_IRQ: |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 122 | { |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 123 | struct acpi_resource_extended_irq *p = |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 124 | &resource->data.extended_irq; |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 125 | if (!p || !p->interrupt_count) { |
Len Brown | cece929 | 2006-06-26 23:04:31 -0400 | [diff] [blame] | 126 | printk(KERN_WARNING PREFIX |
Bjorn Helgaas | 4a5e363 | 2008-07-15 09:42:57 -0600 | [diff] [blame] | 127 | "Blank _PRS EXT IRQ resource\n"); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 128 | return AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 130 | for (i = 0; |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 131 | (i < p->interrupt_count |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 132 | && i < ACPI_PCI_LINK_MAX_POSSIBLE); i++) { |
| 133 | if (!p->interrupts[i]) { |
Bjorn Helgaas | 4a5e363 | 2008-07-15 09:42:57 -0600 | [diff] [blame] | 134 | printk(KERN_WARNING PREFIX |
| 135 | "Invalid _PRS IRQ %d\n", |
| 136 | p->interrupts[i]); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 137 | continue; |
| 138 | } |
| 139 | link->irq.possible[i] = p->interrupts[i]; |
| 140 | link->irq.possible_count++; |
| 141 | } |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 142 | link->irq.triggering = p->triggering; |
| 143 | link->irq.polarity = p->polarity; |
| 144 | link->irq.resource_type = ACPI_RESOURCE_TYPE_EXTENDED_IRQ; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 145 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | default: |
Bjorn Helgaas | 4a5e363 | 2008-07-15 09:42:57 -0600 | [diff] [blame] | 148 | printk(KERN_ERR PREFIX "_PRS resource type 0x%x isn't an IRQ\n", |
| 149 | resource->type); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 150 | return AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | } |
| 152 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 153 | return AE_CTRL_TERMINATE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | } |
| 155 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 156 | static int acpi_pci_link_get_possible(struct acpi_pci_link *link) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | { |
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 | |
Patrick Mochel | 67a7136 | 2006-05-19 16:54:42 -0400 | [diff] [blame] | 160 | status = acpi_walk_resources(link->device->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)) { |
Alex Hung | 92d1b38 | 2018-02-22 21:43:44 -0800 | [diff] [blame] | 163 | acpi_handle_debug(link->device->handle, "_PRS not present or invalid"); |
| 164 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | } |
| 166 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 167 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 168 | "Found %d possible IRQs\n", |
| 169 | link->irq.possible_count)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 171 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | } |
| 173 | |
Bjorn Helgaas | 1c9ca3a | 2009-02-17 14:00:40 -0700 | [diff] [blame] | 174 | static acpi_status acpi_pci_link_check_current(struct acpi_resource *resource, |
| 175 | void *context) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | { |
Bjorn Helgaas | c9d6244 | 2009-02-17 14:00:45 -0700 | [diff] [blame] | 177 | int *irq = context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | |
Len Brown | eca008c | 2005-09-22 00:25:18 -0400 | [diff] [blame] | 179 | switch (resource->type) { |
Bjorn Helgaas | 4a5e363 | 2008-07-15 09:42:57 -0600 | [diff] [blame] | 180 | case ACPI_RESOURCE_TYPE_START_DEPENDENT: |
| 181 | case ACPI_RESOURCE_TYPE_END_TAG: |
| 182 | return AE_OK; |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 183 | case ACPI_RESOURCE_TYPE_IRQ: |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 184 | { |
| 185 | struct acpi_resource_irq *p = &resource->data.irq; |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 186 | if (!p || !p->interrupt_count) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 187 | /* |
| 188 | * IRQ descriptors may have no IRQ# bits set, |
| 189 | * particularly those those w/ _STA disabled |
| 190 | */ |
| 191 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Bjorn Helgaas | 4a5e363 | 2008-07-15 09:42:57 -0600 | [diff] [blame] | 192 | "Blank _CRS IRQ resource\n")); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 193 | return AE_OK; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 194 | } |
| 195 | *irq = p->interrupts[0]; |
| 196 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | } |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 198 | case ACPI_RESOURCE_TYPE_EXTENDED_IRQ: |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 199 | { |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 200 | struct acpi_resource_extended_irq *p = |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 201 | &resource->data.extended_irq; |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 202 | if (!p || !p->interrupt_count) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 203 | /* |
| 204 | * extended IRQ descriptors must |
| 205 | * return at least 1 IRQ |
| 206 | */ |
Len Brown | cece929 | 2006-06-26 23:04:31 -0400 | [diff] [blame] | 207 | printk(KERN_WARNING PREFIX |
Bjorn Helgaas | 4a5e363 | 2008-07-15 09:42:57 -0600 | [diff] [blame] | 208 | "Blank _CRS EXT IRQ resource\n"); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 209 | return AE_OK; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 210 | } |
| 211 | *irq = p->interrupts[0]; |
| 212 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | } |
Len Brown | d4ec6c7 | 2006-01-26 17:23:38 -0500 | [diff] [blame] | 214 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | default: |
Bjorn Helgaas | 4a5e363 | 2008-07-15 09:42:57 -0600 | [diff] [blame] | 216 | printk(KERN_ERR PREFIX "_CRS resource type 0x%x isn't an IRQ\n", |
| 217 | resource->type); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 218 | return AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | } |
Bjorn Helgaas | 4a5e363 | 2008-07-15 09:42:57 -0600 | [diff] [blame] | 220 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 221 | return AE_CTRL_TERMINATE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | } |
| 223 | |
| 224 | /* |
| 225 | * Run _CRS and set link->irq.active |
| 226 | * |
| 227 | * return value: |
| 228 | * 0 - success |
| 229 | * !0 - failure |
| 230 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 231 | static int acpi_pci_link_get_current(struct acpi_pci_link *link) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 233 | int result = 0; |
Bjorn Helgaas | c9d6244 | 2009-02-17 14:00:45 -0700 | [diff] [blame] | 234 | acpi_status status; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 235 | int irq = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | link->irq.active = 0; |
| 238 | |
| 239 | /* in practice, status disabled is meaningless, ignore it */ |
| 240 | if (acpi_strict) { |
| 241 | /* Query _STA, set link->device->status */ |
| 242 | result = acpi_bus_get_status(link->device); |
| 243 | if (result) { |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 244 | printk(KERN_ERR PREFIX "Unable to read status\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | goto end; |
| 246 | } |
| 247 | |
| 248 | if (!link->device->status.enabled) { |
| 249 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Link disabled\n")); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 250 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | } |
| 252 | } |
| 253 | |
| 254 | /* |
| 255 | * Query and parse _CRS to get the current IRQ assignment. |
| 256 | */ |
| 257 | |
Patrick Mochel | 67a7136 | 2006-05-19 16:54:42 -0400 | [diff] [blame] | 258 | status = acpi_walk_resources(link->device->handle, METHOD_NAME__CRS, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 259 | acpi_pci_link_check_current, &irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | if (ACPI_FAILURE(status)) { |
Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 261 | ACPI_EXCEPTION((AE_INFO, status, "Evaluating _CRS")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | result = -ENODEV; |
| 263 | goto end; |
| 264 | } |
| 265 | |
| 266 | if (acpi_strict && !irq) { |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 267 | printk(KERN_ERR PREFIX "_CRS returned 0\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | result = -ENODEV; |
| 269 | } |
| 270 | |
| 271 | link->irq.active = irq; |
| 272 | |
| 273 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Link at IRQ %d \n", link->irq.active)); |
| 274 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 275 | end: |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 276 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | } |
| 278 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 279 | 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] | 280 | { |
Bjorn Helgaas | c9d6244 | 2009-02-17 14:00:45 -0700 | [diff] [blame] | 281 | int result; |
| 282 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | struct { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 284 | struct acpi_resource res; |
| 285 | struct acpi_resource end; |
| 286 | } *resource; |
| 287 | struct acpi_buffer buffer = { 0, NULL }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | |
Bjorn Helgaas | 6eca4b4 | 2009-02-17 14:00:50 -0700 | [diff] [blame] | 289 | if (!irq) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 290 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | |
Burman Yan | 36bcbec | 2006-12-19 12:56:11 -0800 | [diff] [blame] | 292 | resource = kzalloc(sizeof(*resource) + 1, irqs_disabled() ? GFP_ATOMIC: GFP_KERNEL); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 293 | if (!resource) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 294 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 296 | buffer.length = sizeof(*resource) + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | buffer.pointer = resource; |
| 298 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 299 | switch (link->irq.resource_type) { |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 300 | case ACPI_RESOURCE_TYPE_IRQ: |
| 301 | resource->res.type = ACPI_RESOURCE_TYPE_IRQ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | resource->res.length = sizeof(struct acpi_resource); |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 303 | resource->res.data.irq.triggering = link->irq.triggering; |
| 304 | resource->res.data.irq.polarity = |
| 305 | link->irq.polarity; |
| 306 | if (link->irq.triggering == ACPI_EDGE_SENSITIVE) |
Erik Schmauss | c163f90c | 2019-02-15 13:36:19 -0800 | [diff] [blame] | 307 | resource->res.data.irq.shareable = |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 308 | ACPI_EXCLUSIVE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | else |
Erik Schmauss | c163f90c | 2019-02-15 13:36:19 -0800 | [diff] [blame] | 310 | resource->res.data.irq.shareable = ACPI_SHARED; |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 311 | resource->res.data.irq.interrupt_count = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | resource->res.data.irq.interrupts[0] = irq; |
| 313 | break; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 314 | |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 315 | case ACPI_RESOURCE_TYPE_EXTENDED_IRQ: |
| 316 | resource->res.type = ACPI_RESOURCE_TYPE_EXTENDED_IRQ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | resource->res.length = sizeof(struct acpi_resource); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 318 | resource->res.data.extended_irq.producer_consumer = |
| 319 | ACPI_CONSUMER; |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 320 | resource->res.data.extended_irq.triggering = |
| 321 | link->irq.triggering; |
| 322 | resource->res.data.extended_irq.polarity = |
| 323 | link->irq.polarity; |
| 324 | if (link->irq.triggering == ACPI_EDGE_SENSITIVE) |
Erik Schmauss | c163f90c | 2019-02-15 13:36:19 -0800 | [diff] [blame] | 325 | resource->res.data.irq.shareable = |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 326 | ACPI_EXCLUSIVE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | else |
Erik Schmauss | c163f90c | 2019-02-15 13:36:19 -0800 | [diff] [blame] | 328 | resource->res.data.irq.shareable = ACPI_SHARED; |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 329 | resource->res.data.extended_irq.interrupt_count = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | resource->res.data.extended_irq.interrupts[0] = irq; |
| 331 | /* ignore resource_source, it's optional */ |
| 332 | break; |
| 333 | default: |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 334 | printk(KERN_ERR PREFIX "Invalid Resource_type %d\n", 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)) { |
Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 347 | ACPI_EXCEPTION((AE_INFO, status, "Evaluating _SRS")); |
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) { |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 355 | printk(KERN_ERR PREFIX "Unable to read status\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | goto end; |
| 357 | } |
| 358 | if (!link->device->status.enabled) { |
Len Brown | cece929 | 2006-06-26 23:04:31 -0400 | [diff] [blame] | 359 | printk(KERN_WARNING PREFIX |
| 360 | "%s [%s] disabled and referenced, BIOS bug\n", |
Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 361 | acpi_device_name(link->device), |
Len Brown | cece929 | 2006-06-26 23:04:31 -0400 | [diff] [blame] | 362 | acpi_device_bid(link->device)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | } |
| 364 | |
| 365 | /* Query _CRS, set link->irq.active */ |
| 366 | result = acpi_pci_link_get_current(link); |
| 367 | if (result) { |
| 368 | goto end; |
| 369 | } |
| 370 | |
| 371 | /* |
| 372 | * Is current setting not what we set? |
| 373 | * set link->irq.active |
| 374 | */ |
| 375 | if (link->irq.active != irq) { |
| 376 | /* |
| 377 | * policy: when _CRS doesn't return what we just _SRS |
| 378 | * assume _SRS worked and override _CRS value. |
| 379 | */ |
Len Brown | cece929 | 2006-06-26 23:04:31 -0400 | [diff] [blame] | 380 | printk(KERN_WARNING PREFIX |
| 381 | "%s [%s] BIOS reported IRQ %d, using IRQ %d\n", |
Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 382 | acpi_device_name(link->device), |
Len Brown | cece929 | 2006-06-26 23:04:31 -0400 | [diff] [blame] | 383 | acpi_device_bid(link->device), link->irq.active, irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | link->irq.active = irq; |
| 385 | } |
| 386 | |
| 387 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Set IRQ %d\n", link->irq.active)); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 388 | |
| 389 | end: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | kfree(resource); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 391 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | } |
| 393 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | /* -------------------------------------------------------------------------- |
| 395 | PCI Link IRQ Management |
| 396 | -------------------------------------------------------------------------- */ |
| 397 | |
| 398 | /* |
| 399 | * "acpi_irq_balance" (default in APIC mode) enables ACPI to use PIC Interrupt |
| 400 | * Link Devices to move the PIRQs around to minimize sharing. |
| 401 | * |
| 402 | * "acpi_irq_nobalance" (default in PIC mode) tells ACPI not to move any PIC IRQs |
| 403 | * that the BIOS has already set to active. This is necessary because |
| 404 | * ACPI has no automatic means of knowing what ISA IRQs are used. Note that |
| 405 | * if the BIOS doesn't set a Link Device active, ACPI needs to program it |
| 406 | * even if acpi_irq_nobalance is set. |
| 407 | * |
| 408 | * A tables of penalties avoids directing PCI interrupts to well known |
| 409 | * ISA IRQs. Boot params are available to over-ride the default table: |
| 410 | * |
| 411 | * List interrupts that are free for PCI use. |
| 412 | * acpi_irq_pci=n[,m] |
| 413 | * |
| 414 | * List interrupts that should not be used for PCI: |
| 415 | * acpi_irq_isa=n[,m] |
| 416 | * |
| 417 | * Note that PCI IRQ routers have a list of possible IRQs, |
| 418 | * which may not include the IRQs this table says are available. |
| 419 | * |
| 420 | * Since this heuristic can't tell the difference between a link |
| 421 | * that no device will attach to, vs. a link which may be shared |
| 422 | * by multiple active devices -- it is not optimal. |
| 423 | * |
| 424 | * If interrupt performance is that important, get an IO-APIC system |
| 425 | * with a pin dedicated to each device. Or for that matter, an MSI |
| 426 | * enabled system. |
| 427 | */ |
| 428 | |
Sinan Kaya | 5c5087a | 2016-04-17 13:36:54 -0400 | [diff] [blame] | 429 | #define ACPI_MAX_ISA_IRQS 16 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | #define PIRQ_PENALTY_PCI_POSSIBLE (16*16) |
| 432 | #define PIRQ_PENALTY_PCI_USING (16*16*16) |
| 433 | #define PIRQ_PENALTY_ISA_TYPICAL (16*16*16*16) |
| 434 | #define PIRQ_PENALTY_ISA_USED (16*16*16*16*16) |
| 435 | #define PIRQ_PENALTY_ISA_ALWAYS (16*16*16*16*16*16) |
| 436 | |
Sinan Kaya | 5c5087a | 2016-04-17 13:36:54 -0400 | [diff] [blame] | 437 | static int acpi_isa_irq_penalty[ACPI_MAX_ISA_IRQS] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | PIRQ_PENALTY_ISA_ALWAYS, /* IRQ0 timer */ |
| 439 | PIRQ_PENALTY_ISA_ALWAYS, /* IRQ1 keyboard */ |
| 440 | PIRQ_PENALTY_ISA_ALWAYS, /* IRQ2 cascade */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 441 | PIRQ_PENALTY_ISA_TYPICAL, /* IRQ3 serial */ |
| 442 | PIRQ_PENALTY_ISA_TYPICAL, /* IRQ4 serial */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | PIRQ_PENALTY_ISA_TYPICAL, /* IRQ5 sometimes SoundBlaster */ |
| 444 | PIRQ_PENALTY_ISA_TYPICAL, /* IRQ6 */ |
| 445 | PIRQ_PENALTY_ISA_TYPICAL, /* IRQ7 parallel, spurious */ |
| 446 | PIRQ_PENALTY_ISA_TYPICAL, /* IRQ8 rtc, sometimes */ |
Sinan Kaya | 103544d | 2016-04-17 13:36:53 -0400 | [diff] [blame] | 447 | 0, /* IRQ9 PCI, often acpi */ |
| 448 | 0, /* IRQ10 PCI */ |
| 449 | 0, /* IRQ11 PCI */ |
Bjorn Helgaas | 1c9ca3a | 2009-02-17 14:00:40 -0700 | [diff] [blame] | 450 | PIRQ_PENALTY_ISA_USED, /* IRQ12 mouse */ |
| 451 | PIRQ_PENALTY_ISA_USED, /* IRQ13 fpe, sometimes */ |
| 452 | PIRQ_PENALTY_ISA_USED, /* IRQ14 ide0 */ |
| 453 | PIRQ_PENALTY_ISA_USED, /* IRQ15 ide1 */ |
Rafael J. Wysocki | e249714 | 2016-02-24 13:55:38 +0100 | [diff] [blame] | 454 | /* >IRQ15 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | }; |
| 456 | |
Sinan Kaya | 103544d | 2016-04-17 13:36:53 -0400 | [diff] [blame] | 457 | static int acpi_irq_pci_sharing_penalty(int irq) |
| 458 | { |
| 459 | struct acpi_pci_link *link; |
| 460 | int penalty = 0; |
Sinan Kaya | 4a6e68b | 2016-06-29 04:27:35 -0400 | [diff] [blame] | 461 | int i; |
Sinan Kaya | 103544d | 2016-04-17 13:36:53 -0400 | [diff] [blame] | 462 | |
| 463 | list_for_each_entry(link, &acpi_link_list, list) { |
| 464 | /* |
| 465 | * If a link is active, penalize its IRQ heavily |
| 466 | * so we try to choose a different IRQ. |
| 467 | */ |
| 468 | if (link->irq.active && link->irq.active == irq) |
| 469 | penalty += PIRQ_PENALTY_PCI_USING; |
Sinan Kaya | 103544d | 2016-04-17 13:36:53 -0400 | [diff] [blame] | 470 | |
Sinan Kaya | 4a6e68b | 2016-06-29 04:27:35 -0400 | [diff] [blame] | 471 | /* |
| 472 | * penalize the IRQs PCI might use, but not as severely. |
| 473 | */ |
| 474 | for (i = 0; i < link->irq.possible_count; i++) |
| 475 | if (link->irq.possible[i] == irq) |
| 476 | penalty += PIRQ_PENALTY_PCI_POSSIBLE / |
| 477 | link->irq.possible_count; |
Sinan Kaya | 103544d | 2016-04-17 13:36:53 -0400 | [diff] [blame] | 478 | } |
| 479 | |
| 480 | return penalty; |
| 481 | } |
| 482 | |
| 483 | static int acpi_irq_get_penalty(int irq) |
| 484 | { |
| 485 | int penalty = 0; |
| 486 | |
Sinan Kaya | f1caa61 | 2016-10-24 00:31:31 -0400 | [diff] [blame] | 487 | if (irq == sci_irq) |
| 488 | penalty += sci_penalty; |
Sinan Kaya | 103544d | 2016-04-17 13:36:53 -0400 | [diff] [blame] | 489 | |
Sinan Kaya | f7eca37 | 2016-06-29 04:27:37 -0400 | [diff] [blame] | 490 | if (irq < ACPI_MAX_ISA_IRQS) |
| 491 | return penalty + acpi_isa_irq_penalty[irq]; |
| 492 | |
Sinan Kaya | f1caa61 | 2016-10-24 00:31:31 -0400 | [diff] [blame] | 493 | return penalty + acpi_irq_pci_sharing_penalty(irq); |
Sinan Kaya | 103544d | 2016-04-17 13:36:53 -0400 | [diff] [blame] | 494 | } |
| 495 | |
Sinan Kaya | 487cf917 | 2016-06-29 04:27:36 -0400 | [diff] [blame] | 496 | int __init acpi_irq_penalty_init(void) |
| 497 | { |
| 498 | struct acpi_pci_link *link; |
| 499 | int i; |
| 500 | |
| 501 | /* |
| 502 | * Update penalties to facilitate IRQ balancing. |
| 503 | */ |
| 504 | list_for_each_entry(link, &acpi_link_list, list) { |
| 505 | |
| 506 | /* |
| 507 | * reflect the possible and active irqs in the penalty table -- |
| 508 | * useful for breaking ties. |
| 509 | */ |
| 510 | if (link->irq.possible_count) { |
| 511 | int penalty = |
| 512 | PIRQ_PENALTY_PCI_POSSIBLE / |
| 513 | link->irq.possible_count; |
| 514 | |
| 515 | for (i = 0; i < link->irq.possible_count; i++) { |
| 516 | if (link->irq.possible[i] < ACPI_MAX_ISA_IRQS) |
| 517 | acpi_isa_irq_penalty[link->irq. |
| 518 | possible[i]] += |
| 519 | penalty; |
| 520 | } |
| 521 | |
| 522 | } else if (link->irq.active && |
| 523 | (link->irq.active < ACPI_MAX_ISA_IRQS)) { |
| 524 | acpi_isa_irq_penalty[link->irq.active] += |
| 525 | PIRQ_PENALTY_PCI_POSSIBLE; |
| 526 | } |
| 527 | } |
| 528 | |
| 529 | return 0; |
| 530 | } |
| 531 | |
Bjorn Helgaas | 3283625 | 2008-11-05 16:17:52 -0700 | [diff] [blame] | 532 | static int acpi_irq_balance = -1; /* 0: static, 1: balance */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 534 | static int acpi_pci_link_allocate(struct acpi_pci_link *link) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 536 | int irq; |
| 537 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 539 | if (link->irq.initialized) { |
| 540 | if (link->refcnt == 0) |
| 541 | /* This means the link is disabled but initialized */ |
| 542 | acpi_pci_link_set(link, link->irq.active); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 543 | return 0; |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 544 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | |
| 546 | /* |
| 547 | * search for active IRQ in list of possible IRQs. |
| 548 | */ |
| 549 | for (i = 0; i < link->irq.possible_count; ++i) { |
| 550 | if (link->irq.active == link->irq.possible[i]) |
| 551 | break; |
| 552 | } |
| 553 | /* |
| 554 | * forget active IRQ that is not in possible list |
| 555 | */ |
| 556 | if (i == link->irq.possible_count) { |
| 557 | if (acpi_strict) |
Len Brown | cece929 | 2006-06-26 23:04:31 -0400 | [diff] [blame] | 558 | printk(KERN_WARNING PREFIX "_CRS %d not found" |
| 559 | " in _PRS\n", link->irq.active); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | link->irq.active = 0; |
| 561 | } |
| 562 | |
| 563 | /* |
| 564 | * if active found, use it; else pick entry from end of possible list. |
| 565 | */ |
Bjorn Helgaas | 1c9ca3a | 2009-02-17 14:00:40 -0700 | [diff] [blame] | 566 | if (link->irq.active) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | irq = link->irq.active; |
Bjorn Helgaas | 1c9ca3a | 2009-02-17 14:00:40 -0700 | [diff] [blame] | 568 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | irq = link->irq.possible[link->irq.possible_count - 1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | |
| 571 | if (acpi_irq_balance || !link->irq.active) { |
| 572 | /* |
| 573 | * Select the best IRQ. This is done in reverse to promote |
| 574 | * the use of IRQs 9, 10, 11, and >15. |
| 575 | */ |
| 576 | for (i = (link->irq.possible_count - 1); i >= 0; i--) { |
Sinan Kaya | 103544d | 2016-04-17 13:36:53 -0400 | [diff] [blame] | 577 | if (acpi_irq_get_penalty(irq) > |
| 578 | acpi_irq_get_penalty(link->irq.possible[i])) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | irq = link->irq.possible[i]; |
| 580 | } |
| 581 | } |
Sinan Kaya | 103544d | 2016-04-17 13:36:53 -0400 | [diff] [blame] | 582 | if (acpi_irq_get_penalty(irq) >= PIRQ_PENALTY_ISA_ALWAYS) { |
Jiang Liu | 5ebc760 | 2015-09-17 14:02:45 +0800 | [diff] [blame] | 583 | printk(KERN_ERR PREFIX "No IRQ available for %s [%s]. " |
| 584 | "Try pci=noacpi or acpi=off\n", |
| 585 | acpi_device_name(link->device), |
| 586 | acpi_device_bid(link->device)); |
| 587 | return -ENODEV; |
| 588 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | |
| 590 | /* Attempt to enable the link device at this IRQ. */ |
| 591 | if (acpi_pci_link_set(link, irq)) { |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 592 | printk(KERN_ERR PREFIX "Unable to set IRQ for %s [%s]. " |
| 593 | "Try pci=noacpi or acpi=off\n", |
Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 594 | acpi_device_name(link->device), |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 595 | acpi_device_bid(link->device)); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 596 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | } else { |
Sinan Kaya | 98756f5 | 2016-10-24 00:31:32 -0400 | [diff] [blame] | 598 | if (link->irq.active < ACPI_MAX_ISA_IRQS) |
| 599 | acpi_isa_irq_penalty[link->irq.active] += |
| 600 | PIRQ_PENALTY_PCI_USING; |
| 601 | |
Sinan Kaya | 90fd94e | 2018-01-16 13:51:04 -0500 | [diff] [blame] | 602 | pr_info("%s [%s] enabled at IRQ %d\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 603 | acpi_device_name(link->device), |
| 604 | acpi_device_bid(link->device), link->irq.active); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | } |
| 606 | |
| 607 | link->irq.initialized = 1; |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 608 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | } |
| 610 | |
| 611 | /* |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 612 | * acpi_pci_link_allocate_irq |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | * success: return IRQ >= 0 |
| 614 | * failure: return -1 |
| 615 | */ |
Bjorn Helgaas | 1c9ca3a | 2009-02-17 14:00:40 -0700 | [diff] [blame] | 616 | int acpi_pci_link_allocate_irq(acpi_handle handle, int index, int *triggering, |
| 617 | int *polarity, char **name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | { |
Bjorn Helgaas | c9d6244 | 2009-02-17 14:00:45 -0700 | [diff] [blame] | 619 | int result; |
| 620 | struct acpi_device *device; |
| 621 | struct acpi_pci_link *link; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | result = acpi_bus_get_device(handle, &device); |
| 624 | if (result) { |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 625 | printk(KERN_ERR PREFIX "Invalid link device\n"); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 626 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | } |
| 628 | |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 629 | link = acpi_driver_data(device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | if (!link) { |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 631 | printk(KERN_ERR PREFIX "Invalid link context\n"); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 632 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | } |
| 634 | |
| 635 | /* TBD: Support multiple index (IRQ) entries per Link Device */ |
| 636 | if (index) { |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 637 | printk(KERN_ERR PREFIX "Invalid index %d\n", index); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 638 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | } |
| 640 | |
Ingo Molnar | 36e4309 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 641 | mutex_lock(&acpi_link_lock); |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 642 | if (acpi_pci_link_allocate(link)) { |
Ingo Molnar | 36e4309 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 643 | mutex_unlock(&acpi_link_lock); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 644 | return -1; |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 645 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 646 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | if (!link->irq.active) { |
Ingo Molnar | 36e4309 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 648 | mutex_unlock(&acpi_link_lock); |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 649 | printk(KERN_ERR PREFIX "Link active IRQ is 0!\n"); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 650 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 652 | link->refcnt++; |
Ingo Molnar | 36e4309 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 653 | mutex_unlock(&acpi_link_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 655 | if (triggering) |
| 656 | *triggering = link->irq.triggering; |
| 657 | if (polarity) |
| 658 | *polarity = link->irq.polarity; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 659 | if (name) |
| 660 | *name = acpi_device_bid(link->device); |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 661 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 662 | "Link %s is referenced\n", |
| 663 | acpi_device_bid(link->device))); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 664 | return (link->irq.active); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | } |
| 666 | |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 667 | /* |
| 668 | * We don't change link's irq information here. After it is reenabled, we |
| 669 | * continue use the info |
| 670 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 671 | int acpi_pci_link_free_irq(acpi_handle handle) |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 672 | { |
Bjorn Helgaas | c9d6244 | 2009-02-17 14:00:45 -0700 | [diff] [blame] | 673 | struct acpi_device *device; |
| 674 | struct acpi_pci_link *link; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 675 | acpi_status result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 677 | result = acpi_bus_get_device(handle, &device); |
| 678 | if (result) { |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 679 | printk(KERN_ERR PREFIX "Invalid link device\n"); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 680 | return -1; |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 681 | } |
| 682 | |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 683 | link = acpi_driver_data(device); |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 684 | if (!link) { |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 685 | printk(KERN_ERR PREFIX "Invalid link context\n"); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 686 | return -1; |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 687 | } |
| 688 | |
Ingo Molnar | 36e4309 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 689 | mutex_lock(&acpi_link_lock); |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 690 | if (!link->irq.initialized) { |
Ingo Molnar | 36e4309 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 691 | mutex_unlock(&acpi_link_lock); |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 692 | printk(KERN_ERR PREFIX "Link isn't initialized\n"); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 693 | return -1; |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 694 | } |
David Shaohua Li | ecc21eb | 2005-08-03 11:00:11 -0400 | [diff] [blame] | 695 | #ifdef FUTURE_USE |
| 696 | /* |
| 697 | * The Link reference count allows us to _DISable an unused link |
| 698 | * and suspend time, and set it again on resume. |
| 699 | * However, 2.6.12 still has irq_router.resume |
| 700 | * which blindly restores the link state. |
| 701 | * So we disable the reference count method |
| 702 | * to prevent duplicate acpi_pci_link_set() |
| 703 | * which would harm some systems |
| 704 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 705 | link->refcnt--; |
David Shaohua Li | ecc21eb | 2005-08-03 11:00:11 -0400 | [diff] [blame] | 706 | #endif |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 707 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 708 | "Link %s is dereferenced\n", |
| 709 | acpi_device_bid(link->device))); |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 710 | |
Bjorn Helgaas | 1c9ca3a | 2009-02-17 14:00:40 -0700 | [diff] [blame] | 711 | if (link->refcnt == 0) |
donald.d.dugger@intel.com | 383d7a1 | 2008-10-17 07:49:50 -0700 | [diff] [blame] | 712 | acpi_evaluate_object(link->device->handle, "_DIS", NULL, NULL); |
Bjorn Helgaas | 1c9ca3a | 2009-02-17 14:00:40 -0700 | [diff] [blame] | 713 | |
Ingo Molnar | 36e4309 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 714 | mutex_unlock(&acpi_link_lock); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 715 | return (link->irq.active); |
David Shaohua Li | 87bec66 | 2005-07-27 23:02:00 -0400 | [diff] [blame] | 716 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 717 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | /* -------------------------------------------------------------------------- |
| 719 | Driver Interface |
| 720 | -------------------------------------------------------------------------- */ |
| 721 | |
Rafael J. Wysocki | 4daeaf6 | 2013-01-30 14:27:37 +0100 | [diff] [blame] | 722 | static int acpi_pci_link_add(struct acpi_device *device, |
| 723 | const struct acpi_device_id *not_used) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | { |
Bjorn Helgaas | c9d6244 | 2009-02-17 14:00:45 -0700 | [diff] [blame] | 725 | int result; |
| 726 | struct acpi_pci_link *link; |
| 727 | int i; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 728 | int found = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | |
Burman Yan | 36bcbec | 2006-12-19 12:56:11 -0800 | [diff] [blame] | 730 | link = kzalloc(sizeof(struct acpi_pci_link), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | if (!link) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 732 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | |
| 734 | link->device = device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | strcpy(acpi_device_name(device), ACPI_PCI_LINK_DEVICE_NAME); |
| 736 | strcpy(acpi_device_class(device), ACPI_PCI_LINK_CLASS); |
Pavel Machek | db89b4f | 2008-09-22 14:37:34 -0700 | [diff] [blame] | 737 | device->driver_data = link; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | |
Ingo Molnar | 36e4309 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 739 | mutex_lock(&acpi_link_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | result = acpi_pci_link_get_possible(link); |
| 741 | if (result) |
| 742 | goto end; |
| 743 | |
| 744 | /* query and set link->irq.active */ |
| 745 | acpi_pci_link_get_current(link); |
| 746 | |
Dan Aloni | 0dc070b | 2007-07-09 11:33:18 -0700 | [diff] [blame] | 747 | printk(KERN_INFO PREFIX "%s [%s] (IRQs", acpi_device_name(device), |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 748 | acpi_device_bid(device)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | for (i = 0; i < link->irq.possible_count; i++) { |
| 750 | if (link->irq.active == link->irq.possible[i]) { |
Kay Sievers | be96447 | 2012-05-08 17:24:20 +0200 | [diff] [blame] | 751 | printk(KERN_CONT " *%d", link->irq.possible[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | found = 1; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 753 | } else |
Kay Sievers | be96447 | 2012-05-08 17:24:20 +0200 | [diff] [blame] | 754 | printk(KERN_CONT " %d", link->irq.possible[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | } |
| 756 | |
Kay Sievers | be96447 | 2012-05-08 17:24:20 +0200 | [diff] [blame] | 757 | printk(KERN_CONT ")"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | |
| 759 | if (!found) |
Kay Sievers | be96447 | 2012-05-08 17:24:20 +0200 | [diff] [blame] | 760 | printk(KERN_CONT " *%d", link->irq.active); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 762 | if (!link->device->status.enabled) |
Kay Sievers | be96447 | 2012-05-08 17:24:20 +0200 | [diff] [blame] | 763 | printk(KERN_CONT ", disabled."); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | |
Kay Sievers | be96447 | 2012-05-08 17:24:20 +0200 | [diff] [blame] | 765 | printk(KERN_CONT "\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | |
Bjorn Helgaas | 5f0dcca | 2009-02-17 14:00:55 -0700 | [diff] [blame] | 767 | list_add_tail(&link->list, &acpi_link_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 769 | end: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | /* disable all links -- to be activated on use */ |
donald.d.dugger@intel.com | 383d7a1 | 2008-10-17 07:49:50 -0700 | [diff] [blame] | 771 | acpi_evaluate_object(device->handle, "_DIS", NULL, NULL); |
Ingo Molnar | 36e4309 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 772 | mutex_unlock(&acpi_link_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | |
| 774 | if (result) |
| 775 | kfree(link); |
| 776 | |
Rafael J. Wysocki | 4daeaf6 | 2013-01-30 14:27:37 +0100 | [diff] [blame] | 777 | return result < 0 ? result : 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | } |
| 779 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 780 | static int acpi_pci_link_resume(struct acpi_pci_link *link) |
Linus Torvalds | 697a2d6 | 2005-08-01 12:37:54 -0700 | [diff] [blame] | 781 | { |
Linus Torvalds | 697a2d6 | 2005-08-01 12:37:54 -0700 | [diff] [blame] | 782 | if (link->refcnt && link->irq.active && link->irq.initialized) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 783 | return (acpi_pci_link_set(link, link->irq.active)); |
Bjorn Helgaas | 1c9ca3a | 2009-02-17 14:00:40 -0700 | [diff] [blame] | 784 | |
| 785 | return 0; |
Linus Torvalds | 697a2d6 | 2005-08-01 12:37:54 -0700 | [diff] [blame] | 786 | } |
| 787 | |
Rafael J. Wysocki | c3146df2 | 2011-03-12 22:16:51 +0100 | [diff] [blame] | 788 | static void irqrouter_resume(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | { |
Bjorn Helgaas | c9d6244 | 2009-02-17 14:00:45 -0700 | [diff] [blame] | 790 | struct acpi_pci_link *link; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | |
Bjorn Helgaas | 5f0dcca | 2009-02-17 14:00:55 -0700 | [diff] [blame] | 792 | list_for_each_entry(link, &acpi_link_list, list) { |
Linus Torvalds | 697a2d6 | 2005-08-01 12:37:54 -0700 | [diff] [blame] | 793 | acpi_pci_link_resume(link); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | } |
| 796 | |
Rafael J. Wysocki | 4daeaf6 | 2013-01-30 14:27:37 +0100 | [diff] [blame] | 797 | static void acpi_pci_link_remove(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | { |
Bjorn Helgaas | c9d6244 | 2009-02-17 14:00:45 -0700 | [diff] [blame] | 799 | struct acpi_pci_link *link; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 801 | link = acpi_driver_data(device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | |
Ingo Molnar | 36e4309 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 803 | mutex_lock(&acpi_link_lock); |
Bjorn Helgaas | 5f0dcca | 2009-02-17 14:00:55 -0700 | [diff] [blame] | 804 | list_del(&link->list); |
Ingo Molnar | 36e4309 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 805 | mutex_unlock(&acpi_link_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | |
| 807 | kfree(link); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | } |
| 809 | |
| 810 | /* |
Sinan Kaya | 5c5087a | 2016-04-17 13:36:54 -0400 | [diff] [blame] | 811 | * modify acpi_isa_irq_penalty[] from cmdline |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | */ |
| 813 | static int __init acpi_irq_penalty_update(char *str, int used) |
| 814 | { |
| 815 | int i; |
| 816 | |
| 817 | for (i = 0; i < 16; i++) { |
| 818 | int retval; |
| 819 | int irq; |
Sinan Kaya | 5c5087a | 2016-04-17 13:36:54 -0400 | [diff] [blame] | 820 | int new_penalty; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 822 | retval = get_option(&str, &irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | |
| 824 | if (!retval) |
| 825 | break; /* no number found */ |
| 826 | |
Sinan Kaya | 5c5087a | 2016-04-17 13:36:54 -0400 | [diff] [blame] | 827 | /* see if this is a ISA IRQ */ |
| 828 | if ((irq < 0) || (irq >= ACPI_MAX_ISA_IRQS)) |
Rafael J. Wysocki | e249714 | 2016-02-24 13:55:38 +0100 | [diff] [blame] | 829 | continue; |
| 830 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | if (used) |
Sinan Kaya | eeaed4b | 2016-10-24 00:31:30 -0400 | [diff] [blame] | 832 | new_penalty = acpi_isa_irq_penalty[irq] + |
Sinan Kaya | 5c5087a | 2016-04-17 13:36:54 -0400 | [diff] [blame] | 833 | PIRQ_PENALTY_ISA_USED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | else |
Sinan Kaya | 5c5087a | 2016-04-17 13:36:54 -0400 | [diff] [blame] | 835 | new_penalty = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | |
Sinan Kaya | 5c5087a | 2016-04-17 13:36:54 -0400 | [diff] [blame] | 837 | acpi_isa_irq_penalty[irq] = new_penalty; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | if (retval != 2) /* no next number */ |
| 839 | break; |
| 840 | } |
| 841 | return 1; |
| 842 | } |
| 843 | |
| 844 | /* |
| 845 | * We'd like PNP to call this routine for the |
| 846 | * single ISA_USED value for each legacy device. |
| 847 | * But instead it calls us with each POSSIBLE setting. |
| 848 | * There is no ISA_POSSIBLE weight, so we simply use |
| 849 | * the (small) PCI_USING penalty. |
| 850 | */ |
David Shaohua Li | c9c3e45 | 2005-04-01 00:07:31 -0500 | [diff] [blame] | 851 | void acpi_penalize_isa_irq(int irq, int active) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | { |
Sinan Kaya | 5c5087a | 2016-04-17 13:36:54 -0400 | [diff] [blame] | 853 | if ((irq >= 0) && (irq < ARRAY_SIZE(acpi_isa_irq_penalty))) |
Sinan Kaya | eeaed4b | 2016-10-24 00:31:30 -0400 | [diff] [blame] | 854 | acpi_isa_irq_penalty[irq] += |
Sinan Kaya | 5479458 | 2016-06-29 04:27:38 -0400 | [diff] [blame] | 855 | (active ? PIRQ_PENALTY_ISA_USED : PIRQ_PENALTY_PCI_USING); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 856 | } |
| 857 | |
Jiang Liu | 5ebc760 | 2015-09-17 14:02:45 +0800 | [diff] [blame] | 858 | bool acpi_isa_irq_available(int irq) |
| 859 | { |
Sinan Kaya | 5c5087a | 2016-04-17 13:36:54 -0400 | [diff] [blame] | 860 | return irq >= 0 && (irq >= ARRAY_SIZE(acpi_isa_irq_penalty) || |
Sinan Kaya | 103544d | 2016-04-17 13:36:53 -0400 | [diff] [blame] | 861 | acpi_irq_get_penalty(irq) < PIRQ_PENALTY_ISA_ALWAYS); |
Jiang Liu | 5ebc760 | 2015-09-17 14:02:45 +0800 | [diff] [blame] | 862 | } |
| 863 | |
Sinan Kaya | f1caa61 | 2016-10-24 00:31:31 -0400 | [diff] [blame] | 864 | void acpi_penalize_sci_irq(int irq, int trigger, int polarity) |
| 865 | { |
| 866 | sci_irq = irq; |
| 867 | |
| 868 | if (trigger == ACPI_MADT_TRIGGER_LEVEL && |
| 869 | polarity == ACPI_MADT_POLARITY_ACTIVE_LOW) |
| 870 | sci_penalty = PIRQ_PENALTY_PCI_USING; |
| 871 | else |
| 872 | sci_penalty = PIRQ_PENALTY_ISA_ALWAYS; |
| 873 | } |
| 874 | |
Jiang Liu | 5d0ddfe | 2015-08-21 15:36:23 +0800 | [diff] [blame] | 875 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | * Over-ride default table to reserve additional IRQs for use by ISA |
| 877 | * e.g. acpi_irq_isa=5 |
| 878 | * Useful for telling ACPI how not to interfere with your ISA sound card. |
| 879 | */ |
| 880 | static int __init acpi_irq_isa(char *str) |
| 881 | { |
| 882 | return acpi_irq_penalty_update(str, 1); |
| 883 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 884 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | __setup("acpi_irq_isa=", acpi_irq_isa); |
| 886 | |
| 887 | /* |
| 888 | * Over-ride default table to free additional IRQs for use by PCI |
| 889 | * e.g. acpi_irq_pci=7,15 |
| 890 | * Used for acpi_irq_balance to free up IRQs to reduce PCI IRQ sharing. |
| 891 | */ |
| 892 | static int __init acpi_irq_pci(char *str) |
| 893 | { |
| 894 | return acpi_irq_penalty_update(str, 0); |
| 895 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 896 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 897 | __setup("acpi_irq_pci=", acpi_irq_pci); |
| 898 | |
| 899 | static int __init acpi_irq_nobalance_set(char *str) |
| 900 | { |
| 901 | acpi_irq_balance = 0; |
| 902 | return 1; |
| 903 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 904 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | __setup("acpi_irq_nobalance", acpi_irq_nobalance_set); |
| 906 | |
Roel Kluin | 8a383ef | 2008-12-09 20:45:30 +0100 | [diff] [blame] | 907 | static int __init acpi_irq_balance_set(char *str) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | { |
| 909 | acpi_irq_balance = 1; |
| 910 | return 1; |
| 911 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 912 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 913 | __setup("acpi_irq_balance", acpi_irq_balance_set); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | |
Rafael J. Wysocki | c3146df2 | 2011-03-12 22:16:51 +0100 | [diff] [blame] | 915 | static struct syscore_ops irqrouter_syscore_ops = { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 916 | .resume = irqrouter_resume, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | }; |
| 918 | |
Rafael J. Wysocki | 4daeaf6 | 2013-01-30 14:27:37 +0100 | [diff] [blame] | 919 | void __init acpi_pci_link_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | if (acpi_noirq) |
Rafael J. Wysocki | 4daeaf6 | 2013-01-30 14:27:37 +0100 | [diff] [blame] | 922 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 923 | |
Bjorn Helgaas | 3283625 | 2008-11-05 16:17:52 -0700 | [diff] [blame] | 924 | if (acpi_irq_balance == -1) { |
| 925 | /* no command line switch: enable balancing in IOAPIC mode */ |
| 926 | if (acpi_irq_model == ACPI_IRQ_MODEL_IOAPIC) |
| 927 | acpi_irq_balance = 1; |
| 928 | else |
| 929 | acpi_irq_balance = 0; |
| 930 | } |
Rafael J. Wysocki | 4daeaf6 | 2013-01-30 14:27:37 +0100 | [diff] [blame] | 931 | register_syscore_ops(&irqrouter_syscore_ops); |
| 932 | acpi_scan_add_handler(&pci_link_handler); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 933 | } |