blob: cba8d4dc56ae55d450f3dff0c04e25ded5b132f5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * pci_irq.c - ACPI PCI Interrupt Routing ($Revision: 11 $)
3 *
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
6 * Copyright (C) 2002 Dominik Brodowski <devel@brodo.de>
7 *
8 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or (at
13 * your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
23 *
24 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
25 */
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Bjorn Helgaas391df5d2008-03-11 13:45:15 -070028#include <linux/dmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/kernel.h>
30#include <linux/module.h>
31#include <linux/init.h>
32#include <linux/types.h>
33#include <linux/proc_fs.h>
34#include <linux/spinlock.h>
35#include <linux/pm.h>
36#include <linux/pci.h>
37#include <linux/acpi.h>
38#include <acpi/acpi_bus.h>
39#include <acpi/acpi_drivers.h>
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#define _COMPONENT ACPI_PCI_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050042ACPI_MODULE_NAME("pci_irq");
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Bjorn Helgaasf748baf2008-12-08 21:30:31 -070044struct acpi_prt_entry {
Bjorn Helgaas3604a9f2008-12-08 21:31:21 -070045 struct list_head list;
Bjorn Helgaasf748baf2008-12-08 21:30:31 -070046 struct acpi_pci_id id;
47 u8 pin;
Bjorn Helgaas4eaf6db2008-12-08 21:31:27 -070048 acpi_handle link;
49 u32 index; /* GSI, or link _CRS index */
Bjorn Helgaasf748baf2008-12-08 21:30:31 -070050};
51
Bjorn Helgaas3604a9f2008-12-08 21:31:21 -070052static LIST_HEAD(acpi_prt_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053static DEFINE_SPINLOCK(acpi_prt_lock);
54
Bjorn Helgaascf68b802008-12-08 21:30:36 -070055static inline char pin_name(int pin)
56{
Bjorn Helgaase64e9db2008-12-08 21:30:41 -070057 return 'A' + pin - 1;
Bjorn Helgaascf68b802008-12-08 21:30:36 -070058}
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060/* --------------------------------------------------------------------------
61 PCI IRQ Routing Table (PRT) Support
62 -------------------------------------------------------------------------- */
63
Bjorn Helgaas063563b2008-12-08 21:30:51 -070064static struct acpi_prt_entry *acpi_pci_irq_find_prt_entry(struct pci_dev *dev,
65 int pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
Bjorn Helgaas3604a9f2008-12-08 21:31:21 -070067 struct acpi_prt_entry *entry;
Bjorn Helgaas063563b2008-12-08 21:30:51 -070068 int segment = pci_domain_nr(dev->bus);
69 int bus = dev->bus->number;
70 int device = PCI_SLOT(dev->devfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 spin_lock(&acpi_prt_lock);
Bjorn Helgaas3604a9f2008-12-08 21:31:21 -070073 list_for_each_entry(entry, &acpi_prt_list, list) {
Len Brown4be44fc2005-08-05 00:44:28 -040074 if ((segment == entry->id.segment)
75 && (bus == entry->id.bus)
76 && (device == entry->id.device)
77 && (pin == entry->pin)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 spin_unlock(&acpi_prt_lock);
Patrick Mocheld550d982006-06-27 00:41:40 -040079 return entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 }
81 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 spin_unlock(&acpi_prt_lock);
Patrick Mocheld550d982006-06-27 00:41:40 -040083 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084}
85
Bjorn Helgaas391df5d2008-03-11 13:45:15 -070086/* http://bugzilla.kernel.org/show_bug.cgi?id=4773 */
87static struct dmi_system_id medion_md9580[] = {
88 {
89 .ident = "Medion MD9580-F laptop",
90 .matches = {
91 DMI_MATCH(DMI_SYS_VENDOR, "MEDIONNB"),
92 DMI_MATCH(DMI_PRODUCT_NAME, "A555"),
93 },
94 },
95 { }
96};
97
98/* http://bugzilla.kernel.org/show_bug.cgi?id=5044 */
99static struct dmi_system_id dell_optiplex[] = {
100 {
101 .ident = "Dell Optiplex GX1",
102 .matches = {
103 DMI_MATCH(DMI_SYS_VENDOR, "Dell Computer Corporation"),
104 DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex GX1 600S+"),
105 },
106 },
107 { }
108};
109
110/* http://bugzilla.kernel.org/show_bug.cgi?id=10138 */
111static struct dmi_system_id hp_t5710[] = {
112 {
113 .ident = "HP t5710",
114 .matches = {
115 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
116 DMI_MATCH(DMI_PRODUCT_NAME, "hp t5000 series"),
117 DMI_MATCH(DMI_BOARD_NAME, "098Ch"),
118 },
119 },
120 { }
121};
122
123struct prt_quirk {
124 struct dmi_system_id *system;
125 unsigned int segment;
126 unsigned int bus;
127 unsigned int device;
128 unsigned char pin;
129 char *source; /* according to BIOS */
130 char *actual_source;
131};
132
Bjorn Helgaasc4580332008-12-08 21:30:46 -0700133#define PCI_INTX_PIN(c) (c - 'A' + 1)
134
Bjorn Helgaas391df5d2008-03-11 13:45:15 -0700135/*
136 * These systems have incorrect _PRT entries. The BIOS claims the PCI
137 * interrupt at the listed segment/bus/device/pin is connected to the first
138 * link device, but it is actually connected to the second.
139 */
140static struct prt_quirk prt_quirks[] = {
Bjorn Helgaasc4580332008-12-08 21:30:46 -0700141 { medion_md9580, 0, 0, 9, PCI_INTX_PIN('A'),
Bjorn Helgaasb97d4802008-03-25 11:21:11 -0600142 "\\_SB_.PCI0.ISA_.LNKA",
143 "\\_SB_.PCI0.ISA_.LNKB"},
Bjorn Helgaasc4580332008-12-08 21:30:46 -0700144 { dell_optiplex, 0, 0, 0xd, PCI_INTX_PIN('A'),
Bjorn Helgaas391df5d2008-03-11 13:45:15 -0700145 "\\_SB_.LNKB",
146 "\\_SB_.LNKA"},
Bjorn Helgaasc4580332008-12-08 21:30:46 -0700147 { hp_t5710, 0, 0, 1, PCI_INTX_PIN('A'),
Bjorn Helgaas391df5d2008-03-11 13:45:15 -0700148 "\\_SB_.PCI0.LNK1",
149 "\\_SB_.PCI0.LNK3"},
150};
151
Bjorn Helgaas3f0f3c22008-12-08 21:31:37 -0700152static void do_prt_fixups(struct acpi_prt_entry *entry,
153 struct acpi_pci_routing_table *prt)
Bjorn Helgaas391df5d2008-03-11 13:45:15 -0700154{
155 int i;
156 struct prt_quirk *quirk;
157
158 for (i = 0; i < ARRAY_SIZE(prt_quirks); i++) {
159 quirk = &prt_quirks[i];
160
161 /* All current quirks involve link devices, not GSIs */
162 if (!prt->source)
163 continue;
164
165 if (dmi_check_system(quirk->system) &&
166 entry->id.segment == quirk->segment &&
167 entry->id.bus == quirk->bus &&
168 entry->id.device == quirk->device &&
Bjorn Helgaasc4580332008-12-08 21:30:46 -0700169 entry->pin == quirk->pin &&
Bjorn Helgaas391df5d2008-03-11 13:45:15 -0700170 !strcmp(prt->source, quirk->source) &&
171 strlen(prt->source) >= strlen(quirk->actual_source)) {
172 printk(KERN_WARNING PREFIX "firmware reports "
Bjorn Helgaasc83642d2008-06-27 08:45:39 -0600173 "%04x:%02x:%02x PCI INT %c connected to %s; "
Bjorn Helgaas391df5d2008-03-11 13:45:15 -0700174 "changing to %s\n",
175 entry->id.segment, entry->id.bus,
Bjorn Helgaascf68b802008-12-08 21:30:36 -0700176 entry->id.device, pin_name(entry->pin),
Bjorn Helgaas391df5d2008-03-11 13:45:15 -0700177 prt->source, quirk->actual_source);
178 strcpy(prt->source, quirk->actual_source);
179 }
180 }
181}
182
Bjorn Helgaas3f0f3c22008-12-08 21:31:37 -0700183static int acpi_pci_irq_add_entry(acpi_handle handle, int segment, int bus,
184 struct acpi_pci_routing_table *prt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
Bjorn Helgaas3604a9f2008-12-08 21:31:21 -0700186 struct acpi_prt_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Burman Yan36bcbec2006-12-19 12:56:11 -0800188 entry = kzalloc(sizeof(struct acpi_prt_entry), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400190 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Bjorn Helgaase64e9db2008-12-08 21:30:41 -0700192 /*
193 * Note that the _PRT uses 0=INTA, 1=INTB, etc, while PCI uses
194 * 1=INTA, 2=INTB. We use the PCI encoding throughout, so convert
195 * it here.
196 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 entry->id.segment = segment;
198 entry->id.bus = bus;
199 entry->id.device = (prt->address >> 16) & 0xFFFF;
Bjorn Helgaase64e9db2008-12-08 21:30:41 -0700200 entry->pin = prt->pin + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Bjorn Helgaas391df5d2008-03-11 13:45:15 -0700202 do_prt_fixups(entry, prt);
203
Bjorn Helgaas4eaf6db2008-12-08 21:31:27 -0700204 entry->index = prt->source_index;
205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 /*
207 * Type 1: Dynamic
208 * ---------------
209 * The 'source' field specifies the PCI interrupt link device used to
210 * configure the IRQ assigned to this slot|dev|pin. The 'source_index'
211 * indicates which resource descriptor in the resource template (of
212 * the link device) this interrupt is allocated from.
213 *
214 * NOTE: Don't query the Link Device for IRQ information at this time
215 * because Link Device enumeration may not have occurred yet
216 * (e.g. exists somewhere 'below' this _PRT entry in the ACPI
217 * namespace).
218 */
Bjorn Helgaas4eaf6db2008-12-08 21:31:27 -0700219 if (prt->source[0])
220 acpi_get_handle(handle, prt->source, &entry->link);
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 /*
223 * Type 2: Static
224 * --------------
225 * The 'source' field is NULL, and the 'source_index' field specifies
226 * the IRQ value, which is hardwired to specific interrupt inputs on
227 * the interrupt controller.
228 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 ACPI_DEBUG_PRINT_RAW((ACPI_DB_INFO,
Bjorn Helgaas21a53282008-12-08 21:30:05 -0700231 " %04x:%02x:%02x[%c] -> %s[%d]\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400232 entry->id.segment, entry->id.bus,
Bjorn Helgaascf68b802008-12-08 21:30:36 -0700233 entry->id.device, pin_name(entry->pin),
Bjorn Helgaas4eaf6db2008-12-08 21:31:27 -0700234 prt->source, entry->index));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236 spin_lock(&acpi_prt_lock);
Bjorn Helgaas3604a9f2008-12-08 21:31:21 -0700237 list_add_tail(&entry->list, &acpi_prt_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 spin_unlock(&acpi_prt_lock);
239
Patrick Mocheld550d982006-06-27 00:41:40 -0400240 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241}
242
Len Brown4be44fc2005-08-05 00:44:28 -0400243int acpi_pci_irq_add_prt(acpi_handle handle, int segment, int bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
Bjorn Helgaas2320ac62008-12-08 21:30:15 -0700245 acpi_status status;
246 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
247 struct acpi_pci_routing_table *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Bjorn Helgaas2320ac62008-12-08 21:30:15 -0700249 /* 'handle' is the _PRT's parent (root bridge or PCI-PCI bridge) */
250 status = acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
251 if (ACPI_FAILURE(status))
252 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 printk(KERN_DEBUG "ACPI: PCI Interrupt Routing Table [%s._PRT]\n",
Bjorn Helgaas2320ac62008-12-08 21:30:15 -0700255 (char *) buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Bjorn Helgaas2320ac62008-12-08 21:30:15 -0700257 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Bjorn Helgaas2320ac62008-12-08 21:30:15 -0700259 buffer.length = ACPI_ALLOCATE_BUFFER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 buffer.pointer = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 status = acpi_get_irq_routing_table(handle, &buffer);
263 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400264 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PRT [%s]",
265 acpi_format_exception(status)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -0400267 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 }
269
Bjorn Helgaas2320ac62008-12-08 21:30:15 -0700270 entry = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 while (entry && (entry->length > 0)) {
272 acpi_pci_irq_add_entry(handle, segment, bus, entry);
273 entry = (struct acpi_pci_routing_table *)
Len Brown4be44fc2005-08-05 00:44:28 -0400274 ((unsigned long)entry + entry->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 }
276
Bjorn Helgaas2320ac62008-12-08 21:30:15 -0700277 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -0400278 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
Len Brown4be44fc2005-08-05 00:44:28 -0400281void acpi_pci_irq_del_prt(int segment, int bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
Bjorn Helgaas3604a9f2008-12-08 21:31:21 -0700283 struct acpi_prt_entry *entry, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Len Brown4be44fc2005-08-05 00:44:28 -0400285 printk(KERN_DEBUG
Bjorn Helgaas21a53282008-12-08 21:30:05 -0700286 "ACPI: Delete PCI Interrupt Routing Table for %04x:%02x\n",
287 segment, bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 spin_lock(&acpi_prt_lock);
Bjorn Helgaas3604a9f2008-12-08 21:31:21 -0700289 list_for_each_entry_safe(entry, tmp, &acpi_prt_list, list) {
290 if (segment == entry->id.segment && bus == entry->id.bus) {
291 list_del(&entry->list);
292 kfree(entry);
293 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 }
295 spin_unlock(&acpi_prt_lock);
296}
Len Brown4be44fc2005-08-05 00:44:28 -0400297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298/* --------------------------------------------------------------------------
299 PCI Interrupt Routing Support
300 -------------------------------------------------------------------------- */
Bjorn Helgaas3f0f3c22008-12-08 21:31:37 -0700301static struct acpi_prt_entry *acpi_pci_irq_lookup(struct pci_dev *dev, int pin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302{
Bjorn Helgaasbeba8a62008-12-08 21:31:01 -0700303 struct acpi_prt_entry *entry;
Bjorn Helgaas5697b7c2008-12-08 21:31:16 -0700304 struct pci_dev *bridge;
305 u8 bridge_pin, orig_pin = pin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Bjorn Helgaas063563b2008-12-08 21:30:51 -0700307 entry = acpi_pci_irq_find_prt_entry(dev, pin);
Bjorn Helgaas3b1ea182008-12-08 21:31:06 -0700308 if (entry) {
309 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %s[%c] _PRT entry\n",
Bjorn Helgaas13504872008-12-08 21:30:56 -0700310 pci_name(dev), pin_name(pin)));
Bjorn Helgaas3b1ea182008-12-08 21:31:06 -0700311 return entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 }
Len Brown4be44fc2005-08-05 00:44:28 -0400313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 /*
315 * Attempt to derive an IRQ for this device from a parent bridge's
316 * PCI interrupt routing entry (eg. yenta bridge and add-in card bridge).
317 */
Bjorn Helgaasee401362008-12-08 21:31:11 -0700318 bridge = dev->bus->self;
319 while (bridge) {
320 pin = (((pin - 1) + PCI_SLOT(dev->devfn)) % 4) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 if ((bridge->class >> 8) == PCI_CLASS_BRIDGE_CARDBUS) {
323 /* PC card has the same IRQ as its cardbridge */
Kristen Accardi8015a012005-11-02 16:24:35 -0800324 bridge_pin = bridge->pin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 if (!bridge_pin) {
Len Brown4be44fc2005-08-05 00:44:28 -0400326 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
327 "No interrupt pin configured for device %s\n",
328 pci_name(bridge)));
Bjorn Helgaasbeba8a62008-12-08 21:31:01 -0700329 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 pin = bridge_pin;
332 }
333
Bjorn Helgaas5697b7c2008-12-08 21:31:16 -0700334 entry = acpi_pci_irq_find_prt_entry(bridge, pin);
Bjorn Helgaas3b1ea182008-12-08 21:31:06 -0700335 if (entry) {
336 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
337 "Derived GSI for %s INT %c from %s\n",
338 pci_name(dev), pin_name(orig_pin),
339 pci_name(bridge)));
340 return entry;
341 }
Bjorn Helgaasee401362008-12-08 21:31:11 -0700342
343 dev = bridge;
344 bridge = dev->bus->self;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 }
346
Bjorn Helgaas3b1ea182008-12-08 21:31:06 -0700347 dev_warn(&dev->dev, "can't derive routing for PCI INT %c\n",
348 pin_name(orig_pin));
349 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}
351
Len Brown4be44fc2005-08-05 00:44:28 -0400352int acpi_pci_irq_enable(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
Bjorn Helgaasbeba8a62008-12-08 21:31:01 -0700354 struct acpi_prt_entry *entry;
Bjorn Helgaas3f0f3c22008-12-08 21:31:37 -0700355 int gsi;
356 u8 pin;
Bob Moore50eca3e2005-09-30 19:03:00 -0400357 int triggering = ACPI_LEVEL_SENSITIVE;
358 int polarity = ACPI_ACTIVE_LOW;
Len Brown4be44fc2005-08-05 00:44:28 -0400359 char *link = NULL;
Bjorn Helgaasc83642d2008-06-27 08:45:39 -0600360 char link_desc[16];
Len Brown4be44fc2005-08-05 00:44:28 -0400361 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Kristen Accardi8015a012005-11-02 16:24:35 -0800363 pin = dev->pin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 if (!pin) {
Len Brown4be44fc2005-08-05 00:44:28 -0400365 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
366 "No interrupt pin configured for device %s\n",
367 pci_name(dev)));
Patrick Mocheld550d982006-06-27 00:41:40 -0400368 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Bjorn Helgaasbeba8a62008-12-08 21:31:01 -0700371 entry = acpi_pci_irq_lookup(dev, pin);
Bjorn Helgaas5697b7c2008-12-08 21:31:16 -0700372 if (!entry) {
Alan Cox96c2a872008-01-10 22:49:58 -0500373 /*
374 * IDE legacy mode controller IRQs are magic. Why do compat
375 * extensions always make such a nasty mess.
376 */
377 if (dev->class >> 8 == PCI_CLASS_STORAGE_IDE &&
378 (dev->class & 0x05) == 0)
379 return 0;
380 }
Bjorn Helgaas5697b7c2008-12-08 21:31:16 -0700381
Bjorn Helgaas74f82af2008-12-08 21:31:32 -0700382 if (entry) {
383 if (entry->link)
384 gsi = acpi_pci_link_allocate_irq(entry->link,
385 entry->index,
386 &triggering, &polarity,
387 &link);
388 else
389 gsi = entry->index;
390 } else
Bjorn Helgaas5697b7c2008-12-08 21:31:16 -0700391 gsi = -1;
392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 /*
394 * No IRQ known to the ACPI subsystem - maybe the BIOS /
395 * driver reported one, then use it. Exit in any case.
396 */
Bjorn Helgaasc13f8892008-12-08 21:30:26 -0700397 if (gsi < 0) {
Bjorn Helgaascf68b802008-12-08 21:30:36 -0700398 dev_warn(&dev->dev, "PCI INT %c: no GSI", pin_name(pin));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 /* Interrupt Line values above 0xF are forbidden */
Linus Torvalds44f8e1a2005-07-02 10:35:33 -0700400 if (dev->irq > 0 && (dev->irq <= 0xF)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 printk(" - using IRQ %d\n", dev->irq);
Len Brown4be44fc2005-08-05 00:44:28 -0400402 acpi_register_gsi(dev->irq, ACPI_LEVEL_SENSITIVE,
403 ACPI_ACTIVE_LOW);
Patrick Mocheld550d982006-06-27 00:41:40 -0400404 return 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400405 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 printk("\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400407 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 }
Len Brown4be44fc2005-08-05 00:44:28 -0400409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Bjorn Helgaasc13f8892008-12-08 21:30:26 -0700411 rc = acpi_register_gsi(gsi, triggering, polarity);
Kenji Kaneshige349f0d52005-07-28 14:42:00 -0400412 if (rc < 0) {
Bjorn Helgaasc83642d2008-06-27 08:45:39 -0600413 dev_warn(&dev->dev, "PCI INT %c: failed to register GSI\n",
Bjorn Helgaascf68b802008-12-08 21:30:36 -0700414 pin_name(pin));
Patrick Mocheld550d982006-06-27 00:41:40 -0400415 return rc;
Kenji Kaneshige349f0d52005-07-28 14:42:00 -0400416 }
417 dev->irq = rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 if (link)
Bjorn Helgaasc83642d2008-06-27 08:45:39 -0600420 snprintf(link_desc, sizeof(link_desc), " -> Link[%s]", link);
421 else
422 link_desc[0] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Bjorn Helgaasc83642d2008-06-27 08:45:39 -0600424 dev_info(&dev->dev, "PCI INT %c%s -> GSI %u (%s, %s) -> IRQ %d\n",
Bjorn Helgaascf68b802008-12-08 21:30:36 -0700425 pin_name(pin), link_desc, gsi,
Bjorn Helgaasc83642d2008-06-27 08:45:39 -0600426 (triggering == ACPI_LEVEL_SENSITIVE) ? "level" : "edge",
427 (polarity == ACPI_ACTIVE_LOW) ? "low" : "high", dev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Patrick Mocheld550d982006-06-27 00:41:40 -0400429 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430}
Len Brown4be44fc2005-08-05 00:44:28 -0400431
David Shaohua Li87bec662005-07-27 23:02:00 -0400432/* FIXME: implement x86/x86_64 version */
Len Brown4be44fc2005-08-05 00:44:28 -0400433void __attribute__ ((weak)) acpi_unregister_gsi(u32 i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
Len Brown4be44fc2005-08-05 00:44:28 -0400435}
436
437void acpi_pci_irq_disable(struct pci_dev *dev)
438{
Bjorn Helgaasbeba8a62008-12-08 21:31:01 -0700439 struct acpi_prt_entry *entry;
Bjorn Helgaas3f0f3c22008-12-08 21:31:37 -0700440 int gsi;
441 u8 pin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Kristen Accardi8015a012005-11-02 16:24:35 -0800443 pin = dev->pin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 if (!pin)
Patrick Mocheld550d982006-06-27 00:41:40 -0400445 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Bjorn Helgaasbeba8a62008-12-08 21:31:01 -0700447 entry = acpi_pci_irq_lookup(dev, pin);
Bjorn Helgaasbeba8a62008-12-08 21:31:01 -0700448 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400449 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Bjorn Helgaas74f82af2008-12-08 21:31:32 -0700451 if (entry->link)
452 gsi = acpi_pci_link_free_irq(entry->link);
453 else
454 gsi = entry->index;
Bjorn Helgaasbeba8a62008-12-08 21:31:01 -0700455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 /*
457 * TBD: It might be worth clearing dev->irq by magic constant
458 * (e.g. PCI_UNDEFINED_IRQ).
459 */
460
Bjorn Helgaascf68b802008-12-08 21:30:36 -0700461 dev_info(&dev->dev, "PCI INT %c disabled\n", pin_name(pin));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 acpi_unregister_gsi(gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463}