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