|
@@ -42,7 +42,7 @@
|
|
ACPI_MODULE_NAME("pci_irq");
|
|
ACPI_MODULE_NAME("pci_irq");
|
|
|
|
|
|
struct acpi_prt_entry {
|
|
struct acpi_prt_entry {
|
|
- struct list_head node;
|
|
|
|
|
|
+ struct list_head list;
|
|
struct acpi_pci_id id;
|
|
struct acpi_pci_id id;
|
|
u8 pin;
|
|
u8 pin;
|
|
struct {
|
|
struct {
|
|
@@ -52,12 +52,7 @@ struct acpi_prt_entry {
|
|
u32 irq;
|
|
u32 irq;
|
|
};
|
|
};
|
|
|
|
|
|
-struct acpi_prt_list {
|
|
|
|
- int count;
|
|
|
|
- struct list_head entries;
|
|
|
|
-};
|
|
|
|
-
|
|
|
|
-static struct acpi_prt_list acpi_prt;
|
|
|
|
|
|
+static LIST_HEAD(acpi_prt_list);
|
|
static DEFINE_SPINLOCK(acpi_prt_lock);
|
|
static DEFINE_SPINLOCK(acpi_prt_lock);
|
|
|
|
|
|
static inline char pin_name(int pin)
|
|
static inline char pin_name(int pin)
|
|
@@ -72,21 +67,13 @@ static inline char pin_name(int pin)
|
|
static struct acpi_prt_entry *acpi_pci_irq_find_prt_entry(struct pci_dev *dev,
|
|
static struct acpi_prt_entry *acpi_pci_irq_find_prt_entry(struct pci_dev *dev,
|
|
int pin)
|
|
int pin)
|
|
{
|
|
{
|
|
- struct acpi_prt_entry *entry = NULL;
|
|
|
|
|
|
+ struct acpi_prt_entry *entry;
|
|
int segment = pci_domain_nr(dev->bus);
|
|
int segment = pci_domain_nr(dev->bus);
|
|
int bus = dev->bus->number;
|
|
int bus = dev->bus->number;
|
|
int device = PCI_SLOT(dev->devfn);
|
|
int device = PCI_SLOT(dev->devfn);
|
|
|
|
|
|
- if (!acpi_prt.count)
|
|
|
|
- return NULL;
|
|
|
|
-
|
|
|
|
- /*
|
|
|
|
- * Parse through all PRT entries looking for a match on the specified
|
|
|
|
- * PCI device's segment, bus, device, and pin (don't care about func).
|
|
|
|
- *
|
|
|
|
- */
|
|
|
|
spin_lock(&acpi_prt_lock);
|
|
spin_lock(&acpi_prt_lock);
|
|
- list_for_each_entry(entry, &acpi_prt.entries, node) {
|
|
|
|
|
|
+ list_for_each_entry(entry, &acpi_prt_list, list) {
|
|
if ((segment == entry->id.segment)
|
|
if ((segment == entry->id.segment)
|
|
&& (bus == entry->id.bus)
|
|
&& (bus == entry->id.bus)
|
|
&& (device == entry->id.device)
|
|
&& (device == entry->id.device)
|
|
@@ -95,7 +82,6 @@ static struct acpi_prt_entry *acpi_pci_irq_find_prt_entry(struct pci_dev *dev,
|
|
return entry;
|
|
return entry;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
spin_unlock(&acpi_prt_lock);
|
|
spin_unlock(&acpi_prt_lock);
|
|
return NULL;
|
|
return NULL;
|
|
}
|
|
}
|
|
@@ -201,7 +187,7 @@ static int
|
|
acpi_pci_irq_add_entry(acpi_handle handle,
|
|
acpi_pci_irq_add_entry(acpi_handle handle,
|
|
int segment, int bus, struct acpi_pci_routing_table *prt)
|
|
int segment, int bus, struct acpi_pci_routing_table *prt)
|
|
{
|
|
{
|
|
- struct acpi_prt_entry *entry = NULL;
|
|
|
|
|
|
+ struct acpi_prt_entry *entry;
|
|
|
|
|
|
entry = kzalloc(sizeof(struct acpi_prt_entry), GFP_KERNEL);
|
|
entry = kzalloc(sizeof(struct acpi_prt_entry), GFP_KERNEL);
|
|
if (!entry)
|
|
if (!entry)
|
|
@@ -253,35 +239,17 @@ acpi_pci_irq_add_entry(acpi_handle handle,
|
|
prt->source, entry->link.index));
|
|
prt->source, entry->link.index));
|
|
|
|
|
|
spin_lock(&acpi_prt_lock);
|
|
spin_lock(&acpi_prt_lock);
|
|
- list_add_tail(&entry->node, &acpi_prt.entries);
|
|
|
|
- acpi_prt.count++;
|
|
|
|
|
|
+ list_add_tail(&entry->list, &acpi_prt_list);
|
|
spin_unlock(&acpi_prt_lock);
|
|
spin_unlock(&acpi_prt_lock);
|
|
|
|
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
-static void
|
|
|
|
-acpi_pci_irq_del_entry(int segment, int bus, struct acpi_prt_entry *entry)
|
|
|
|
-{
|
|
|
|
- if (segment == entry->id.segment && bus == entry->id.bus) {
|
|
|
|
- acpi_prt.count--;
|
|
|
|
- list_del(&entry->node);
|
|
|
|
- kfree(entry);
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
int acpi_pci_irq_add_prt(acpi_handle handle, int segment, int bus)
|
|
int acpi_pci_irq_add_prt(acpi_handle handle, int segment, int bus)
|
|
{
|
|
{
|
|
acpi_status status;
|
|
acpi_status status;
|
|
struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
|
|
struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
|
|
struct acpi_pci_routing_table *entry;
|
|
struct acpi_pci_routing_table *entry;
|
|
- static int first_time = 1;
|
|
|
|
-
|
|
|
|
- if (first_time) {
|
|
|
|
- acpi_prt.count = 0;
|
|
|
|
- INIT_LIST_HEAD(&acpi_prt.entries);
|
|
|
|
- first_time = 0;
|
|
|
|
- }
|
|
|
|
|
|
|
|
/* 'handle' is the _PRT's parent (root bridge or PCI-PCI bridge) */
|
|
/* 'handle' is the _PRT's parent (root bridge or PCI-PCI bridge) */
|
|
status = acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
|
|
status = acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
|
|
@@ -317,21 +285,17 @@ int acpi_pci_irq_add_prt(acpi_handle handle, int segment, int bus)
|
|
|
|
|
|
void acpi_pci_irq_del_prt(int segment, int bus)
|
|
void acpi_pci_irq_del_prt(int segment, int bus)
|
|
{
|
|
{
|
|
- struct list_head *node = NULL, *n = NULL;
|
|
|
|
- struct acpi_prt_entry *entry = NULL;
|
|
|
|
-
|
|
|
|
- if (!acpi_prt.count) {
|
|
|
|
- return;
|
|
|
|
- }
|
|
|
|
|
|
+ struct acpi_prt_entry *entry, *tmp;
|
|
|
|
|
|
printk(KERN_DEBUG
|
|
printk(KERN_DEBUG
|
|
"ACPI: Delete PCI Interrupt Routing Table for %04x:%02x\n",
|
|
"ACPI: Delete PCI Interrupt Routing Table for %04x:%02x\n",
|
|
segment, bus);
|
|
segment, bus);
|
|
spin_lock(&acpi_prt_lock);
|
|
spin_lock(&acpi_prt_lock);
|
|
- list_for_each_safe(node, n, &acpi_prt.entries) {
|
|
|
|
- entry = list_entry(node, struct acpi_prt_entry, node);
|
|
|
|
-
|
|
|
|
- acpi_pci_irq_del_entry(segment, bus, entry);
|
|
|
|
|
|
+ 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);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
spin_unlock(&acpi_prt_lock);
|
|
spin_unlock(&acpi_prt_lock);
|
|
}
|
|
}
|