2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* pci_irq.c - ACPI PCI Interrupt Routing ($Revision: 11 $)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
|
|
|
|
* Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
|
|
|
|
* Copyright (C) 2002 Dominik Brodowski <devel@brodo.de>
|
2008-12-09 04:31:42 +00:00
|
|
|
* (c) Copyright 2008 Hewlett-Packard Development Company, L.P.
|
|
|
|
* Bjorn Helgaas <bjorn.helgaas@hp.com>
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
|
|
|
|
*
|
|
|
|
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2008-03-11 20:45:15 +00:00
|
|
|
#include <linux/dmi.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/proc_fs.h>
|
|
|
|
#include <linux/spinlock.h>
|
|
|
|
#include <linux/pm.h>
|
|
|
|
#include <linux/pci.h>
|
|
|
|
#include <linux/acpi.h>
|
|
|
|
#include <acpi/acpi_bus.h>
|
|
|
|
#include <acpi/acpi_drivers.h>
|
|
|
|
|
|
|
|
#define _COMPONENT ACPI_PCI_COMPONENT
|
2007-02-13 03:42:12 +00:00
|
|
|
ACPI_MODULE_NAME("pci_irq");
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-12-09 04:30:31 +00:00
|
|
|
struct acpi_prt_entry {
|
2008-12-09 04:31:21 +00:00
|
|
|
struct list_head list;
|
2008-12-09 04:30:31 +00:00
|
|
|
struct acpi_pci_id id;
|
|
|
|
u8 pin;
|
2008-12-09 04:31:27 +00:00
|
|
|
acpi_handle link;
|
|
|
|
u32 index; /* GSI, or link _CRS index */
|
2008-12-09 04:30:31 +00:00
|
|
|
};
|
|
|
|
|
2008-12-09 04:31:21 +00:00
|
|
|
static LIST_HEAD(acpi_prt_list);
|
2005-04-16 22:20:36 +00:00
|
|
|
static DEFINE_SPINLOCK(acpi_prt_lock);
|
|
|
|
|
2008-12-09 04:30:36 +00:00
|
|
|
static inline char pin_name(int pin)
|
|
|
|
{
|
2008-12-09 04:30:41 +00:00
|
|
|
return 'A' + pin - 1;
|
2008-12-09 04:30:36 +00:00
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/* --------------------------------------------------------------------------
|
|
|
|
PCI IRQ Routing Table (PRT) Support
|
|
|
|
-------------------------------------------------------------------------- */
|
|
|
|
|
2008-12-09 04:30:51 +00:00
|
|
|
static struct acpi_prt_entry *acpi_pci_irq_find_prt_entry(struct pci_dev *dev,
|
|
|
|
int pin)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2008-12-09 04:31:21 +00:00
|
|
|
struct acpi_prt_entry *entry;
|
2008-12-09 04:30:51 +00:00
|
|
|
int segment = pci_domain_nr(dev->bus);
|
|
|
|
int bus = dev->bus->number;
|
|
|
|
int device = PCI_SLOT(dev->devfn);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
spin_lock(&acpi_prt_lock);
|
2008-12-09 04:31:21 +00:00
|
|
|
list_for_each_entry(entry, &acpi_prt_list, list) {
|
2005-08-05 04:44:28 +00:00
|
|
|
if ((segment == entry->id.segment)
|
|
|
|
&& (bus == entry->id.bus)
|
|
|
|
&& (device == entry->id.device)
|
|
|
|
&& (pin == entry->pin)) {
|
2005-04-16 22:20:36 +00:00
|
|
|
spin_unlock(&acpi_prt_lock);
|
2006-06-27 04:41:40 +00:00
|
|
|
return entry;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
spin_unlock(&acpi_prt_lock);
|
2006-06-27 04:41:40 +00:00
|
|
|
return NULL;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2008-03-11 20:45:15 +00:00
|
|
|
/* http://bugzilla.kernel.org/show_bug.cgi?id=4773 */
|
2009-03-12 11:58:25 +00:00
|
|
|
static const struct dmi_system_id medion_md9580[] = {
|
2008-03-11 20:45:15 +00:00
|
|
|
{
|
|
|
|
.ident = "Medion MD9580-F laptop",
|
|
|
|
.matches = {
|
|
|
|
DMI_MATCH(DMI_SYS_VENDOR, "MEDIONNB"),
|
|
|
|
DMI_MATCH(DMI_PRODUCT_NAME, "A555"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
/* http://bugzilla.kernel.org/show_bug.cgi?id=5044 */
|
2009-03-12 11:58:25 +00:00
|
|
|
static const struct dmi_system_id dell_optiplex[] = {
|
2008-03-11 20:45:15 +00:00
|
|
|
{
|
|
|
|
.ident = "Dell Optiplex GX1",
|
|
|
|
.matches = {
|
|
|
|
DMI_MATCH(DMI_SYS_VENDOR, "Dell Computer Corporation"),
|
|
|
|
DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex GX1 600S+"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
/* http://bugzilla.kernel.org/show_bug.cgi?id=10138 */
|
2009-03-12 11:58:25 +00:00
|
|
|
static const struct dmi_system_id hp_t5710[] = {
|
2008-03-11 20:45:15 +00:00
|
|
|
{
|
|
|
|
.ident = "HP t5710",
|
|
|
|
.matches = {
|
|
|
|
DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
|
|
|
|
DMI_MATCH(DMI_PRODUCT_NAME, "hp t5000 series"),
|
|
|
|
DMI_MATCH(DMI_BOARD_NAME, "098Ch"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
struct prt_quirk {
|
2009-03-12 11:58:25 +00:00
|
|
|
const struct dmi_system_id *system;
|
2008-03-11 20:45:15 +00:00
|
|
|
unsigned int segment;
|
|
|
|
unsigned int bus;
|
|
|
|
unsigned int device;
|
|
|
|
unsigned char pin;
|
2009-03-12 11:58:25 +00:00
|
|
|
const char *source; /* according to BIOS */
|
|
|
|
const char *actual_source;
|
2008-03-11 20:45:15 +00:00
|
|
|
};
|
|
|
|
|
2008-12-09 04:30:46 +00:00
|
|
|
#define PCI_INTX_PIN(c) (c - 'A' + 1)
|
|
|
|
|
2008-03-11 20:45:15 +00:00
|
|
|
/*
|
|
|
|
* These systems have incorrect _PRT entries. The BIOS claims the PCI
|
|
|
|
* interrupt at the listed segment/bus/device/pin is connected to the first
|
|
|
|
* link device, but it is actually connected to the second.
|
|
|
|
*/
|
2009-03-12 11:58:25 +00:00
|
|
|
static const struct prt_quirk prt_quirks[] = {
|
2008-12-09 04:30:46 +00:00
|
|
|
{ medion_md9580, 0, 0, 9, PCI_INTX_PIN('A'),
|
2008-03-25 17:21:11 +00:00
|
|
|
"\\_SB_.PCI0.ISA_.LNKA",
|
|
|
|
"\\_SB_.PCI0.ISA_.LNKB"},
|
2008-12-09 04:30:46 +00:00
|
|
|
{ dell_optiplex, 0, 0, 0xd, PCI_INTX_PIN('A'),
|
2008-03-11 20:45:15 +00:00
|
|
|
"\\_SB_.LNKB",
|
|
|
|
"\\_SB_.LNKA"},
|
2008-12-09 04:30:46 +00:00
|
|
|
{ hp_t5710, 0, 0, 1, PCI_INTX_PIN('A'),
|
2008-03-11 20:45:15 +00:00
|
|
|
"\\_SB_.PCI0.LNK1",
|
|
|
|
"\\_SB_.PCI0.LNK3"},
|
|
|
|
};
|
|
|
|
|
2008-12-09 04:31:37 +00:00
|
|
|
static void do_prt_fixups(struct acpi_prt_entry *entry,
|
|
|
|
struct acpi_pci_routing_table *prt)
|
2008-03-11 20:45:15 +00:00
|
|
|
{
|
|
|
|
int i;
|
2009-03-12 11:58:25 +00:00
|
|
|
const struct prt_quirk *quirk;
|
2008-03-11 20:45:15 +00:00
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(prt_quirks); i++) {
|
|
|
|
quirk = &prt_quirks[i];
|
|
|
|
|
|
|
|
/* All current quirks involve link devices, not GSIs */
|
|
|
|
if (!prt->source)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (dmi_check_system(quirk->system) &&
|
|
|
|
entry->id.segment == quirk->segment &&
|
|
|
|
entry->id.bus == quirk->bus &&
|
|
|
|
entry->id.device == quirk->device &&
|
2008-12-09 04:30:46 +00:00
|
|
|
entry->pin == quirk->pin &&
|
2008-03-11 20:45:15 +00:00
|
|
|
!strcmp(prt->source, quirk->source) &&
|
|
|
|
strlen(prt->source) >= strlen(quirk->actual_source)) {
|
|
|
|
printk(KERN_WARNING PREFIX "firmware reports "
|
2008-06-27 14:45:39 +00:00
|
|
|
"%04x:%02x:%02x PCI INT %c connected to %s; "
|
2008-03-11 20:45:15 +00:00
|
|
|
"changing to %s\n",
|
|
|
|
entry->id.segment, entry->id.bus,
|
2008-12-09 04:30:36 +00:00
|
|
|
entry->id.device, pin_name(entry->pin),
|
2008-03-11 20:45:15 +00:00
|
|
|
prt->source, quirk->actual_source);
|
|
|
|
strcpy(prt->source, quirk->actual_source);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-09 04:31:37 +00:00
|
|
|
static int acpi_pci_irq_add_entry(acpi_handle handle, int segment, int bus,
|
|
|
|
struct acpi_pci_routing_table *prt)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2008-12-09 04:31:21 +00:00
|
|
|
struct acpi_prt_entry *entry;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-12-19 20:56:11 +00:00
|
|
|
entry = kzalloc(sizeof(struct acpi_prt_entry), GFP_KERNEL);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (!entry)
|
2006-06-27 04:41:40 +00:00
|
|
|
return -ENOMEM;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-12-09 04:30:41 +00:00
|
|
|
/*
|
|
|
|
* Note that the _PRT uses 0=INTA, 1=INTB, etc, while PCI uses
|
|
|
|
* 1=INTA, 2=INTB. We use the PCI encoding throughout, so convert
|
|
|
|
* it here.
|
|
|
|
*/
|
2005-04-16 22:20:36 +00:00
|
|
|
entry->id.segment = segment;
|
|
|
|
entry->id.bus = bus;
|
|
|
|
entry->id.device = (prt->address >> 16) & 0xFFFF;
|
2008-12-09 04:30:41 +00:00
|
|
|
entry->pin = prt->pin + 1;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-03-11 20:45:15 +00:00
|
|
|
do_prt_fixups(entry, prt);
|
|
|
|
|
2008-12-09 04:31:27 +00:00
|
|
|
entry->index = prt->source_index;
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* Type 1: Dynamic
|
|
|
|
* ---------------
|
|
|
|
* The 'source' field specifies the PCI interrupt link device used to
|
|
|
|
* configure the IRQ assigned to this slot|dev|pin. The 'source_index'
|
|
|
|
* indicates which resource descriptor in the resource template (of
|
|
|
|
* the link device) this interrupt is allocated from.
|
|
|
|
*
|
|
|
|
* NOTE: Don't query the Link Device for IRQ information at this time
|
|
|
|
* because Link Device enumeration may not have occurred yet
|
|
|
|
* (e.g. exists somewhere 'below' this _PRT entry in the ACPI
|
|
|
|
* namespace).
|
|
|
|
*/
|
2008-12-09 04:31:27 +00:00
|
|
|
if (prt->source[0])
|
|
|
|
acpi_get_handle(handle, prt->source, &entry->link);
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* Type 2: Static
|
|
|
|
* --------------
|
|
|
|
* The 'source' field is NULL, and the 'source_index' field specifies
|
|
|
|
* the IRQ value, which is hardwired to specific interrupt inputs on
|
|
|
|
* the interrupt controller.
|
|
|
|
*/
|
|
|
|
|
|
|
|
ACPI_DEBUG_PRINT_RAW((ACPI_DB_INFO,
|
2008-12-09 04:30:05 +00:00
|
|
|
" %04x:%02x:%02x[%c] -> %s[%d]\n",
|
2005-08-05 04:44:28 +00:00
|
|
|
entry->id.segment, entry->id.bus,
|
2008-12-09 04:30:36 +00:00
|
|
|
entry->id.device, pin_name(entry->pin),
|
2008-12-09 04:31:27 +00:00
|
|
|
prt->source, entry->index));
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
spin_lock(&acpi_prt_lock);
|
2008-12-09 04:31:21 +00:00
|
|
|
list_add_tail(&entry->list, &acpi_prt_list);
|
2005-04-16 22:20:36 +00:00
|
|
|
spin_unlock(&acpi_prt_lock);
|
|
|
|
|
2006-06-27 04:41:40 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
int acpi_pci_irq_add_prt(acpi_handle handle, int segment, int bus)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2008-12-09 04:30:15 +00:00
|
|
|
acpi_status status;
|
|
|
|
struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
|
|
|
|
struct acpi_pci_routing_table *entry;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-12-09 04:30:15 +00:00
|
|
|
/* 'handle' is the _PRT's parent (root bridge or PCI-PCI bridge) */
|
|
|
|
status = acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
|
|
|
|
if (ACPI_FAILURE(status))
|
|
|
|
return -ENODEV;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
printk(KERN_DEBUG "ACPI: PCI Interrupt Routing Table [%s._PRT]\n",
|
2008-12-09 04:30:15 +00:00
|
|
|
(char *) buffer.pointer);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-12-09 04:30:15 +00:00
|
|
|
kfree(buffer.pointer);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-12-09 04:30:15 +00:00
|
|
|
buffer.length = ACPI_ALLOCATE_BUFFER;
|
2005-04-16 22:20:36 +00:00
|
|
|
buffer.pointer = NULL;
|
|
|
|
|
|
|
|
status = acpi_get_irq_routing_table(handle, &buffer);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
2006-06-27 03:58:43 +00:00
|
|
|
ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PRT [%s]",
|
|
|
|
acpi_format_exception(status)));
|
2005-04-16 22:20:36 +00:00
|
|
|
kfree(buffer.pointer);
|
2006-06-27 04:41:40 +00:00
|
|
|
return -ENODEV;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2008-12-09 04:30:15 +00:00
|
|
|
entry = buffer.pointer;
|
2005-04-16 22:20:36 +00:00
|
|
|
while (entry && (entry->length > 0)) {
|
|
|
|
acpi_pci_irq_add_entry(handle, segment, bus, entry);
|
|
|
|
entry = (struct acpi_pci_routing_table *)
|
2005-08-05 04:44:28 +00:00
|
|
|
((unsigned long)entry + entry->length);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2008-12-09 04:30:15 +00:00
|
|
|
kfree(buffer.pointer);
|
2006-06-27 04:41:40 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
void acpi_pci_irq_del_prt(int segment, int bus)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2008-12-09 04:31:21 +00:00
|
|
|
struct acpi_prt_entry *entry, *tmp;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
printk(KERN_DEBUG
|
2008-12-09 04:30:05 +00:00
|
|
|
"ACPI: Delete PCI Interrupt Routing Table for %04x:%02x\n",
|
|
|
|
segment, bus);
|
2005-04-16 22:20:36 +00:00
|
|
|
spin_lock(&acpi_prt_lock);
|
2008-12-09 04:31:21 +00:00
|
|
|
list_for_each_entry_safe(entry, tmp, &acpi_prt_list, list) {
|
|
|
|
if (segment == entry->id.segment && bus == entry->id.bus) {
|
|
|
|
list_del(&entry->list);
|
|
|
|
kfree(entry);
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
spin_unlock(&acpi_prt_lock);
|
|
|
|
}
|
2005-08-05 04:44:28 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/* --------------------------------------------------------------------------
|
|
|
|
PCI Interrupt Routing Support
|
|
|
|
-------------------------------------------------------------------------- */
|
2008-12-09 04:31:37 +00:00
|
|
|
static struct acpi_prt_entry *acpi_pci_irq_lookup(struct pci_dev *dev, int pin)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2008-12-09 04:31:01 +00:00
|
|
|
struct acpi_prt_entry *entry;
|
2008-12-09 04:31:16 +00:00
|
|
|
struct pci_dev *bridge;
|
|
|
|
u8 bridge_pin, orig_pin = pin;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-12-09 04:30:51 +00:00
|
|
|
entry = acpi_pci_irq_find_prt_entry(dev, pin);
|
2008-12-09 04:31:06 +00:00
|
|
|
if (entry) {
|
|
|
|
ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %s[%c] _PRT entry\n",
|
2008-12-09 04:30:56 +00:00
|
|
|
pci_name(dev), pin_name(pin)));
|
2008-12-09 04:31:06 +00:00
|
|
|
return entry;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2005-08-05 04:44:28 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* Attempt to derive an IRQ for this device from a parent bridge's
|
|
|
|
* PCI interrupt routing entry (eg. yenta bridge and add-in card bridge).
|
|
|
|
*/
|
2008-12-09 04:31:11 +00:00
|
|
|
bridge = dev->bus->self;
|
|
|
|
while (bridge) {
|
2009-02-17 20:49:10 +00:00
|
|
|
pin = pci_swizzle_interrupt_pin(dev, pin);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if ((bridge->class >> 8) == PCI_CLASS_BRIDGE_CARDBUS) {
|
|
|
|
/* PC card has the same IRQ as its cardbridge */
|
2005-11-03 00:24:35 +00:00
|
|
|
bridge_pin = bridge->pin;
|
2005-04-16 22:20:36 +00:00
|
|
|
if (!bridge_pin) {
|
2005-08-05 04:44:28 +00:00
|
|
|
ACPI_DEBUG_PRINT((ACPI_DB_INFO,
|
|
|
|
"No interrupt pin configured for device %s\n",
|
|
|
|
pci_name(bridge)));
|
2008-12-09 04:31:01 +00:00
|
|
|
return NULL;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
pin = bridge_pin;
|
|
|
|
}
|
|
|
|
|
2008-12-09 04:31:16 +00:00
|
|
|
entry = acpi_pci_irq_find_prt_entry(bridge, pin);
|
2008-12-09 04:31:06 +00:00
|
|
|
if (entry) {
|
|
|
|
ACPI_DEBUG_PRINT((ACPI_DB_INFO,
|
|
|
|
"Derived GSI for %s INT %c from %s\n",
|
|
|
|
pci_name(dev), pin_name(orig_pin),
|
|
|
|
pci_name(bridge)));
|
|
|
|
return entry;
|
|
|
|
}
|
2008-12-09 04:31:11 +00:00
|
|
|
|
|
|
|
dev = bridge;
|
|
|
|
bridge = dev->bus->self;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2008-12-09 04:31:06 +00:00
|
|
|
dev_warn(&dev->dev, "can't derive routing for PCI INT %c\n",
|
|
|
|
pin_name(orig_pin));
|
|
|
|
return NULL;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
int acpi_pci_irq_enable(struct pci_dev *dev)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2008-12-09 04:31:01 +00:00
|
|
|
struct acpi_prt_entry *entry;
|
2008-12-09 04:31:37 +00:00
|
|
|
int gsi;
|
|
|
|
u8 pin;
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-09-30 23:03:00 +00:00
|
|
|
int triggering = ACPI_LEVEL_SENSITIVE;
|
|
|
|
int polarity = ACPI_ACTIVE_LOW;
|
2005-08-05 04:44:28 +00:00
|
|
|
char *link = NULL;
|
2008-06-27 14:45:39 +00:00
|
|
|
char link_desc[16];
|
2005-08-05 04:44:28 +00:00
|
|
|
int rc;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-11-03 00:24:35 +00:00
|
|
|
pin = dev->pin;
|
2005-04-16 22:20:36 +00:00
|
|
|
if (!pin) {
|
2005-08-05 04:44:28 +00:00
|
|
|
ACPI_DEBUG_PRINT((ACPI_DB_INFO,
|
|
|
|
"No interrupt pin configured for device %s\n",
|
|
|
|
pci_name(dev)));
|
2006-06-27 04:41:40 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2008-12-09 04:31:01 +00:00
|
|
|
entry = acpi_pci_irq_lookup(dev, pin);
|
2008-12-09 04:31:16 +00:00
|
|
|
if (!entry) {
|
2008-01-11 03:49:58 +00:00
|
|
|
/*
|
|
|
|
* IDE legacy mode controller IRQs are magic. Why do compat
|
|
|
|
* extensions always make such a nasty mess.
|
|
|
|
*/
|
|
|
|
if (dev->class >> 8 == PCI_CLASS_STORAGE_IDE &&
|
|
|
|
(dev->class & 0x05) == 0)
|
|
|
|
return 0;
|
|
|
|
}
|
2008-12-09 04:31:16 +00:00
|
|
|
|
2008-12-09 04:31:32 +00:00
|
|
|
if (entry) {
|
|
|
|
if (entry->link)
|
|
|
|
gsi = acpi_pci_link_allocate_irq(entry->link,
|
|
|
|
entry->index,
|
|
|
|
&triggering, &polarity,
|
|
|
|
&link);
|
|
|
|
else
|
|
|
|
gsi = entry->index;
|
|
|
|
} else
|
2008-12-09 04:31:16 +00:00
|
|
|
gsi = -1;
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* No IRQ known to the ACPI subsystem - maybe the BIOS /
|
|
|
|
* driver reported one, then use it. Exit in any case.
|
|
|
|
*/
|
2008-12-09 04:30:26 +00:00
|
|
|
if (gsi < 0) {
|
2008-12-09 04:30:36 +00:00
|
|
|
dev_warn(&dev->dev, "PCI INT %c: no GSI", pin_name(pin));
|
2005-04-16 22:20:36 +00:00
|
|
|
/* Interrupt Line values above 0xF are forbidden */
|
2005-07-02 17:35:33 +00:00
|
|
|
if (dev->irq > 0 && (dev->irq <= 0xF)) {
|
2005-04-16 22:20:36 +00:00
|
|
|
printk(" - using IRQ %d\n", dev->irq);
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_register_gsi(dev->irq, ACPI_LEVEL_SENSITIVE,
|
|
|
|
ACPI_ACTIVE_LOW);
|
2006-06-27 04:41:40 +00:00
|
|
|
return 0;
|
2005-08-05 04:44:28 +00:00
|
|
|
} else {
|
2005-04-16 22:20:36 +00:00
|
|
|
printk("\n");
|
2006-06-27 04:41:40 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2005-08-05 04:44:28 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-12-09 04:30:26 +00:00
|
|
|
rc = acpi_register_gsi(gsi, triggering, polarity);
|
2005-07-28 18:42:00 +00:00
|
|
|
if (rc < 0) {
|
2008-06-27 14:45:39 +00:00
|
|
|
dev_warn(&dev->dev, "PCI INT %c: failed to register GSI\n",
|
2008-12-09 04:30:36 +00:00
|
|
|
pin_name(pin));
|
2006-06-27 04:41:40 +00:00
|
|
|
return rc;
|
2005-07-28 18:42:00 +00:00
|
|
|
}
|
|
|
|
dev->irq = rc;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (link)
|
2008-06-27 14:45:39 +00:00
|
|
|
snprintf(link_desc, sizeof(link_desc), " -> Link[%s]", link);
|
|
|
|
else
|
|
|
|
link_desc[0] = '\0';
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-06-27 14:45:39 +00:00
|
|
|
dev_info(&dev->dev, "PCI INT %c%s -> GSI %u (%s, %s) -> IRQ %d\n",
|
2008-12-09 04:30:36 +00:00
|
|
|
pin_name(pin), link_desc, gsi,
|
2008-06-27 14:45:39 +00:00
|
|
|
(triggering == ACPI_LEVEL_SENSITIVE) ? "level" : "edge",
|
|
|
|
(polarity == ACPI_ACTIVE_LOW) ? "low" : "high", dev->irq);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-06-27 04:41:40 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2005-07-28 03:02:00 +00:00
|
|
|
/* FIXME: implement x86/x86_64 version */
|
2005-08-05 04:44:28 +00:00
|
|
|
void __attribute__ ((weak)) acpi_unregister_gsi(u32 i)
|
|
|
|
{
|
|
|
|
}
|
2005-07-28 03:02:00 +00:00
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
void acpi_pci_irq_disable(struct pci_dev *dev)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2008-12-09 04:31:01 +00:00
|
|
|
struct acpi_prt_entry *entry;
|
2008-12-09 04:31:37 +00:00
|
|
|
int gsi;
|
|
|
|
u8 pin;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-11-03 00:24:35 +00:00
|
|
|
pin = dev->pin;
|
2005-04-16 22:20:36 +00:00
|
|
|
if (!pin)
|
2006-06-27 04:41:40 +00:00
|
|
|
return;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-12-09 04:31:01 +00:00
|
|
|
entry = acpi_pci_irq_lookup(dev, pin);
|
|
|
|
if (!entry)
|
2006-06-27 04:41:40 +00:00
|
|
|
return;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-12-09 04:31:32 +00:00
|
|
|
if (entry->link)
|
|
|
|
gsi = acpi_pci_link_free_irq(entry->link);
|
|
|
|
else
|
|
|
|
gsi = entry->index;
|
2008-12-09 04:31:01 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* TBD: It might be worth clearing dev->irq by magic constant
|
|
|
|
* (e.g. PCI_UNDEFINED_IRQ).
|
|
|
|
*/
|
|
|
|
|
2008-12-09 04:30:36 +00:00
|
|
|
dev_info(&dev->dev, "PCI INT %c disabled\n", pin_name(pin));
|
2005-04-16 22:20:36 +00:00
|
|
|
acpi_unregister_gsi(gsi);
|
|
|
|
}
|