|
@@ -18,6 +18,16 @@
|
|
|
* and Rolf G. Tews
|
|
|
* for testing these extensively
|
|
|
* Paul Diefenbaugh : Added full ACPI support
|
|
|
+ *
|
|
|
+ * Historical information which is worth to be preserved:
|
|
|
+ *
|
|
|
+ * - SiS APIC rmw bug:
|
|
|
+ *
|
|
|
+ * We used to have a workaround for a bug in SiS chips which
|
|
|
+ * required to rewrite the index register for a read-modify-write
|
|
|
+ * operation as the chip lost the index information which was
|
|
|
+ * setup for the read already. We cache the data now, so that
|
|
|
+ * workaround has been removed.
|
|
|
*/
|
|
|
|
|
|
#include <linux/mm.h>
|
|
@@ -31,13 +41,13 @@
|
|
|
#include <linux/acpi.h>
|
|
|
#include <linux/module.h>
|
|
|
#include <linux/syscore_ops.h>
|
|
|
-#include <linux/irqdomain.h>
|
|
|
#include <linux/freezer.h>
|
|
|
#include <linux/kthread.h>
|
|
|
#include <linux/jiffies.h> /* time_after() */
|
|
|
#include <linux/slab.h>
|
|
|
#include <linux/bootmem.h>
|
|
|
|
|
|
+#include <asm/irqdomain.h>
|
|
|
#include <asm/idle.h>
|
|
|
#include <asm/io.h>
|
|
|
#include <asm/smp.h>
|
|
@@ -63,27 +73,31 @@
|
|
|
#define for_each_ioapic_pin(idx, pin) \
|
|
|
for_each_ioapic((idx)) \
|
|
|
for_each_pin((idx), (pin))
|
|
|
-
|
|
|
#define for_each_irq_pin(entry, head) \
|
|
|
list_for_each_entry(entry, &head, list)
|
|
|
|
|
|
-/*
|
|
|
- * Is the SiS APIC rmw bug present ?
|
|
|
- * -1 = don't know, 0 = no, 1 = yes
|
|
|
- */
|
|
|
-int sis_apic_bug = -1;
|
|
|
-
|
|
|
static DEFINE_RAW_SPINLOCK(ioapic_lock);
|
|
|
static DEFINE_MUTEX(ioapic_mutex);
|
|
|
static unsigned int ioapic_dynirq_base;
|
|
|
static int ioapic_initialized;
|
|
|
|
|
|
-struct mp_pin_info {
|
|
|
+struct irq_pin_list {
|
|
|
+ struct list_head list;
|
|
|
+ int apic, pin;
|
|
|
+};
|
|
|
+
|
|
|
+struct mp_chip_data {
|
|
|
+ struct list_head irq_2_pin;
|
|
|
+ struct IO_APIC_route_entry entry;
|
|
|
int trigger;
|
|
|
int polarity;
|
|
|
- int node;
|
|
|
- int set;
|
|
|
u32 count;
|
|
|
+ bool isa_irq;
|
|
|
+};
|
|
|
+
|
|
|
+struct mp_ioapic_gsi {
|
|
|
+ u32 gsi_base;
|
|
|
+ u32 gsi_end;
|
|
|
};
|
|
|
|
|
|
static struct ioapic {
|
|
@@ -101,7 +115,6 @@ static struct ioapic {
|
|
|
struct mp_ioapic_gsi gsi_config;
|
|
|
struct ioapic_domain_cfg irqdomain_cfg;
|
|
|
struct irq_domain *irqdomain;
|
|
|
- struct mp_pin_info *pin_info;
|
|
|
struct resource *iomem_res;
|
|
|
} ioapics[MAX_IO_APICS];
|
|
|
|
|
@@ -117,7 +130,7 @@ unsigned int mpc_ioapic_addr(int ioapic_idx)
|
|
|
return ioapics[ioapic_idx].mp_config.apicaddr;
|
|
|
}
|
|
|
|
|
|
-struct mp_ioapic_gsi *mp_ioapic_gsi_routing(int ioapic_idx)
|
|
|
+static inline struct mp_ioapic_gsi *mp_ioapic_gsi_routing(int ioapic_idx)
|
|
|
{
|
|
|
return &ioapics[ioapic_idx].gsi_config;
|
|
|
}
|
|
@@ -129,11 +142,16 @@ static inline int mp_ioapic_pin_count(int ioapic)
|
|
|
return gsi_cfg->gsi_end - gsi_cfg->gsi_base + 1;
|
|
|
}
|
|
|
|
|
|
-u32 mp_pin_to_gsi(int ioapic, int pin)
|
|
|
+static inline u32 mp_pin_to_gsi(int ioapic, int pin)
|
|
|
{
|
|
|
return mp_ioapic_gsi_routing(ioapic)->gsi_base + pin;
|
|
|
}
|
|
|
|
|
|
+static inline bool mp_is_legacy_irq(int irq)
|
|
|
+{
|
|
|
+ return irq >= 0 && irq < nr_legacy_irqs();
|
|
|
+}
|
|
|
+
|
|
|
/*
|
|
|
* Initialize all legacy IRQs and all pins on the first IOAPIC
|
|
|
* if we have legacy interrupt controller. Kernel boot option "pirq="
|
|
@@ -144,12 +162,7 @@ static inline int mp_init_irq_at_boot(int ioapic, int irq)
|
|
|
if (!nr_legacy_irqs())
|
|
|
return 0;
|
|
|
|
|
|
- return ioapic == 0 || (irq >= 0 && irq < nr_legacy_irqs());
|
|
|
-}
|
|
|
-
|
|
|
-static inline struct mp_pin_info *mp_pin_info(int ioapic_idx, int pin)
|
|
|
-{
|
|
|
- return ioapics[ioapic_idx].pin_info + pin;
|
|
|
+ return ioapic == 0 || mp_is_legacy_irq(irq);
|
|
|
}
|
|
|
|
|
|
static inline struct irq_domain *mp_ioapic_irqdomain(int ioapic)
|
|
@@ -216,16 +229,6 @@ void mp_save_irq(struct mpc_intsrc *m)
|
|
|
panic("Max # of irq sources exceeded!!\n");
|
|
|
}
|
|
|
|
|
|
-struct irq_pin_list {
|
|
|
- struct list_head list;
|
|
|
- int apic, pin;
|
|
|
-};
|
|
|
-
|
|
|
-static struct irq_pin_list *alloc_irq_pin_list(int node)
|
|
|
-{
|
|
|
- return kzalloc_node(sizeof(struct irq_pin_list), GFP_KERNEL, node);
|
|
|
-}
|
|
|
-
|
|
|
static void alloc_ioapic_saved_registers(int idx)
|
|
|
{
|
|
|
size_t size;
|
|
@@ -247,8 +250,7 @@ static void free_ioapic_saved_registers(int idx)
|
|
|
|
|
|
int __init arch_early_ioapic_init(void)
|
|
|
{
|
|
|
- struct irq_cfg *cfg;
|
|
|
- int i, node = cpu_to_node(0);
|
|
|
+ int i;
|
|
|
|
|
|
if (!nr_legacy_irqs())
|
|
|
io_apic_irqs = ~0UL;
|
|
@@ -256,16 +258,6 @@ int __init arch_early_ioapic_init(void)
|
|
|
for_each_ioapic(i)
|
|
|
alloc_ioapic_saved_registers(i);
|
|
|
|
|
|
- /*
|
|
|
- * For legacy IRQ's, start with assigning irq0 to irq15 to
|
|
|
- * IRQ0_VECTOR to IRQ15_VECTOR for all cpu's.
|
|
|
- */
|
|
|
- for (i = 0; i < nr_legacy_irqs(); i++) {
|
|
|
- cfg = alloc_irq_and_cfg_at(i, node);
|
|
|
- cfg->vector = IRQ0_VECTOR + i;
|
|
|
- cpumask_setall(cfg->domain);
|
|
|
- }
|
|
|
-
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
@@ -283,7 +275,7 @@ static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
|
|
|
+ (mpc_ioapic_addr(idx) & ~PAGE_MASK);
|
|
|
}
|
|
|
|
|
|
-void io_apic_eoi(unsigned int apic, unsigned int vector)
|
|
|
+static inline void io_apic_eoi(unsigned int apic, unsigned int vector)
|
|
|
{
|
|
|
struct io_apic __iomem *io_apic = io_apic_base(apic);
|
|
|
writel(vector, &io_apic->eoi);
|
|
@@ -296,7 +288,8 @@ unsigned int native_io_apic_read(unsigned int apic, unsigned int reg)
|
|
|
return readl(&io_apic->data);
|
|
|
}
|
|
|
|
|
|
-void native_io_apic_write(unsigned int apic, unsigned int reg, unsigned int value)
|
|
|
+static void io_apic_write(unsigned int apic, unsigned int reg,
|
|
|
+ unsigned int value)
|
|
|
{
|
|
|
struct io_apic __iomem *io_apic = io_apic_base(apic);
|
|
|
|
|
@@ -304,21 +297,6 @@ void native_io_apic_write(unsigned int apic, unsigned int reg, unsigned int valu
|
|
|
writel(value, &io_apic->data);
|
|
|
}
|
|
|
|
|
|
-/*
|
|
|
- * Re-write a value: to be used for read-modify-write
|
|
|
- * cycles where the read already set up the index register.
|
|
|
- *
|
|
|
- * Older SiS APIC requires we rewrite the index register
|
|
|
- */
|
|
|
-void native_io_apic_modify(unsigned int apic, unsigned int reg, unsigned int value)
|
|
|
-{
|
|
|
- struct io_apic __iomem *io_apic = io_apic_base(apic);
|
|
|
-
|
|
|
- if (sis_apic_bug)
|
|
|
- writel(reg, &io_apic->index);
|
|
|
- writel(value, &io_apic->data);
|
|
|
-}
|
|
|
-
|
|
|
union entry_union {
|
|
|
struct { u32 w1, w2; };
|
|
|
struct IO_APIC_route_entry entry;
|
|
@@ -378,7 +356,7 @@ static void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
|
|
|
static void ioapic_mask_entry(int apic, int pin)
|
|
|
{
|
|
|
unsigned long flags;
|
|
|
- union entry_union eu = { .entry.mask = 1 };
|
|
|
+ union entry_union eu = { .entry.mask = IOAPIC_MASKED };
|
|
|
|
|
|
raw_spin_lock_irqsave(&ioapic_lock, flags);
|
|
|
io_apic_write(apic, 0x10 + 2*pin, eu.w1);
|
|
@@ -391,16 +369,17 @@ static void ioapic_mask_entry(int apic, int pin)
|
|
|
* shared ISA-space IRQs, so we have to support them. We are super
|
|
|
* fast in the common case, and fast for shared ISA-space IRQs.
|
|
|
*/
|
|
|
-static int __add_pin_to_irq_node(struct irq_cfg *cfg, int node, int apic, int pin)
|
|
|
+static int __add_pin_to_irq_node(struct mp_chip_data *data,
|
|
|
+ int node, int apic, int pin)
|
|
|
{
|
|
|
struct irq_pin_list *entry;
|
|
|
|
|
|
/* don't allow duplicates */
|
|
|
- for_each_irq_pin(entry, cfg->irq_2_pin)
|
|
|
+ for_each_irq_pin(entry, data->irq_2_pin)
|
|
|
if (entry->apic == apic && entry->pin == pin)
|
|
|
return 0;
|
|
|
|
|
|
- entry = alloc_irq_pin_list(node);
|
|
|
+ entry = kzalloc_node(sizeof(struct irq_pin_list), GFP_ATOMIC, node);
|
|
|
if (!entry) {
|
|
|
pr_err("can not alloc irq_pin_list (%d,%d,%d)\n",
|
|
|
node, apic, pin);
|
|
@@ -408,16 +387,16 @@ static int __add_pin_to_irq_node(struct irq_cfg *cfg, int node, int apic, int pi
|
|
|
}
|
|
|
entry->apic = apic;
|
|
|
entry->pin = pin;
|
|
|
+ list_add_tail(&entry->list, &data->irq_2_pin);
|
|
|
|
|
|
- list_add_tail(&entry->list, &cfg->irq_2_pin);
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-static void __remove_pin_from_irq(struct irq_cfg *cfg, int apic, int pin)
|
|
|
+static void __remove_pin_from_irq(struct mp_chip_data *data, int apic, int pin)
|
|
|
{
|
|
|
struct irq_pin_list *tmp, *entry;
|
|
|
|
|
|
- list_for_each_entry_safe(entry, tmp, &cfg->irq_2_pin, list)
|
|
|
+ list_for_each_entry_safe(entry, tmp, &data->irq_2_pin, list)
|
|
|
if (entry->apic == apic && entry->pin == pin) {
|
|
|
list_del(&entry->list);
|
|
|
kfree(entry);
|
|
@@ -425,22 +404,23 @@ static void __remove_pin_from_irq(struct irq_cfg *cfg, int apic, int pin)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-static void add_pin_to_irq_node(struct irq_cfg *cfg, int node, int apic, int pin)
|
|
|
+static void add_pin_to_irq_node(struct mp_chip_data *data,
|
|
|
+ int node, int apic, int pin)
|
|
|
{
|
|
|
- if (__add_pin_to_irq_node(cfg, node, apic, pin))
|
|
|
+ if (__add_pin_to_irq_node(data, node, apic, pin))
|
|
|
panic("IO-APIC: failed to add irq-pin. Can not proceed\n");
|
|
|
}
|
|
|
|
|
|
/*
|
|
|
* Reroute an IRQ to a different pin.
|
|
|
*/
|
|
|
-static void __init replace_pin_at_irq_node(struct irq_cfg *cfg, int node,
|
|
|
+static void __init replace_pin_at_irq_node(struct mp_chip_data *data, int node,
|
|
|
int oldapic, int oldpin,
|
|
|
int newapic, int newpin)
|
|
|
{
|
|
|
struct irq_pin_list *entry;
|
|
|
|
|
|
- for_each_irq_pin(entry, cfg->irq_2_pin) {
|
|
|
+ for_each_irq_pin(entry, data->irq_2_pin) {
|
|
|
if (entry->apic == oldapic && entry->pin == oldpin) {
|
|
|
entry->apic = newapic;
|
|
|
entry->pin = newpin;
|
|
@@ -450,32 +430,26 @@ static void __init replace_pin_at_irq_node(struct irq_cfg *cfg, int node,
|
|
|
}
|
|
|
|
|
|
/* old apic/pin didn't exist, so just add new ones */
|
|
|
- add_pin_to_irq_node(cfg, node, newapic, newpin);
|
|
|
-}
|
|
|
-
|
|
|
-static void __io_apic_modify_irq(struct irq_pin_list *entry,
|
|
|
- int mask_and, int mask_or,
|
|
|
- void (*final)(struct irq_pin_list *entry))
|
|
|
-{
|
|
|
- unsigned int reg, pin;
|
|
|
-
|
|
|
- pin = entry->pin;
|
|
|
- reg = io_apic_read(entry->apic, 0x10 + pin * 2);
|
|
|
- reg &= mask_and;
|
|
|
- reg |= mask_or;
|
|
|
- io_apic_modify(entry->apic, 0x10 + pin * 2, reg);
|
|
|
- if (final)
|
|
|
- final(entry);
|
|
|
+ add_pin_to_irq_node(data, node, newapic, newpin);
|
|
|
}
|
|
|
|
|
|
-static void io_apic_modify_irq(struct irq_cfg *cfg,
|
|
|
+static void io_apic_modify_irq(struct mp_chip_data *data,
|
|
|
int mask_and, int mask_or,
|
|
|
void (*final)(struct irq_pin_list *entry))
|
|
|
{
|
|
|
+ union entry_union eu;
|
|
|
struct irq_pin_list *entry;
|
|
|
|
|
|
- for_each_irq_pin(entry, cfg->irq_2_pin)
|
|
|
- __io_apic_modify_irq(entry, mask_and, mask_or, final);
|
|
|
+ eu.entry = data->entry;
|
|
|
+ eu.w1 &= mask_and;
|
|
|
+ eu.w1 |= mask_or;
|
|
|
+ data->entry = eu.entry;
|
|
|
+
|
|
|
+ for_each_irq_pin(entry, data->irq_2_pin) {
|
|
|
+ io_apic_write(entry->apic, 0x10 + 2 * entry->pin, eu.w1);
|
|
|
+ if (final)
|
|
|
+ final(entry);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
static void io_apic_sync(struct irq_pin_list *entry)
|
|
@@ -490,39 +464,31 @@ static void io_apic_sync(struct irq_pin_list *entry)
|
|
|
readl(&io_apic->data);
|
|
|
}
|
|
|
|
|
|
-static void mask_ioapic(struct irq_cfg *cfg)
|
|
|
+static void mask_ioapic_irq(struct irq_data *irq_data)
|
|
|
{
|
|
|
+ struct mp_chip_data *data = irq_data->chip_data;
|
|
|
unsigned long flags;
|
|
|
|
|
|
raw_spin_lock_irqsave(&ioapic_lock, flags);
|
|
|
- io_apic_modify_irq(cfg, ~0, IO_APIC_REDIR_MASKED, &io_apic_sync);
|
|
|
+ io_apic_modify_irq(data, ~0, IO_APIC_REDIR_MASKED, &io_apic_sync);
|
|
|
raw_spin_unlock_irqrestore(&ioapic_lock, flags);
|
|
|
}
|
|
|
|
|
|
-static void mask_ioapic_irq(struct irq_data *data)
|
|
|
+static void __unmask_ioapic(struct mp_chip_data *data)
|
|
|
{
|
|
|
- mask_ioapic(irqd_cfg(data));
|
|
|
+ io_apic_modify_irq(data, ~IO_APIC_REDIR_MASKED, 0, NULL);
|
|
|
}
|
|
|
|
|
|
-static void __unmask_ioapic(struct irq_cfg *cfg)
|
|
|
-{
|
|
|
- io_apic_modify_irq(cfg, ~IO_APIC_REDIR_MASKED, 0, NULL);
|
|
|
-}
|
|
|
-
|
|
|
-static void unmask_ioapic(struct irq_cfg *cfg)
|
|
|
+static void unmask_ioapic_irq(struct irq_data *irq_data)
|
|
|
{
|
|
|
+ struct mp_chip_data *data = irq_data->chip_data;
|
|
|
unsigned long flags;
|
|
|
|
|
|
raw_spin_lock_irqsave(&ioapic_lock, flags);
|
|
|
- __unmask_ioapic(cfg);
|
|
|
+ __unmask_ioapic(data);
|
|
|
raw_spin_unlock_irqrestore(&ioapic_lock, flags);
|
|
|
}
|
|
|
|
|
|
-static void unmask_ioapic_irq(struct irq_data *data)
|
|
|
-{
|
|
|
- unmask_ioapic(irqd_cfg(data));
|
|
|
-}
|
|
|
-
|
|
|
/*
|
|
|
* IO-APIC versions below 0x20 don't support EOI register.
|
|
|
* For the record, here is the information about various versions:
|
|
@@ -539,7 +505,7 @@ static void unmask_ioapic_irq(struct irq_data *data)
|
|
|
* Otherwise, we simulate the EOI message manually by changing the trigger
|
|
|
* mode to edge and then back to level, with RTE being masked during this.
|
|
|
*/
|
|
|
-void native_eoi_ioapic_pin(int apic, int pin, int vector)
|
|
|
+static void __eoi_ioapic_pin(int apic, int pin, int vector)
|
|
|
{
|
|
|
if (mpc_ioapic_ver(apic) >= 0x20) {
|
|
|
io_apic_eoi(apic, vector);
|
|
@@ -551,7 +517,7 @@ void native_eoi_ioapic_pin(int apic, int pin, int vector)
|
|
|
/*
|
|
|
* Mask the entry and change the trigger mode to edge.
|
|
|
*/
|
|
|
- entry1.mask = 1;
|
|
|
+ entry1.mask = IOAPIC_MASKED;
|
|
|
entry1.trigger = IOAPIC_EDGE;
|
|
|
|
|
|
__ioapic_write_entry(apic, pin, entry1);
|
|
@@ -563,15 +529,14 @@ void native_eoi_ioapic_pin(int apic, int pin, int vector)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-void eoi_ioapic_irq(unsigned int irq, struct irq_cfg *cfg)
|
|
|
+void eoi_ioapic_pin(int vector, struct mp_chip_data *data)
|
|
|
{
|
|
|
- struct irq_pin_list *entry;
|
|
|
unsigned long flags;
|
|
|
+ struct irq_pin_list *entry;
|
|
|
|
|
|
raw_spin_lock_irqsave(&ioapic_lock, flags);
|
|
|
- for_each_irq_pin(entry, cfg->irq_2_pin)
|
|
|
- x86_io_apic_ops.eoi_ioapic_pin(entry->apic, entry->pin,
|
|
|
- cfg->vector);
|
|
|
+ for_each_irq_pin(entry, data->irq_2_pin)
|
|
|
+ __eoi_ioapic_pin(entry->apic, entry->pin, vector);
|
|
|
raw_spin_unlock_irqrestore(&ioapic_lock, flags);
|
|
|
}
|
|
|
|
|
@@ -588,8 +553,8 @@ static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
|
|
|
* Make sure the entry is masked and re-read the contents to check
|
|
|
* if it is a level triggered pin and if the remote-IRR is set.
|
|
|
*/
|
|
|
- if (!entry.mask) {
|
|
|
- entry.mask = 1;
|
|
|
+ if (entry.mask == IOAPIC_UNMASKED) {
|
|
|
+ entry.mask = IOAPIC_MASKED;
|
|
|
ioapic_write_entry(apic, pin, entry);
|
|
|
entry = ioapic_read_entry(apic, pin);
|
|
|
}
|
|
@@ -602,13 +567,12 @@ static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
|
|
|
* doesn't clear the remote-IRR if the trigger mode is not
|
|
|
* set to level.
|
|
|
*/
|
|
|
- if (!entry.trigger) {
|
|
|
+ if (entry.trigger == IOAPIC_EDGE) {
|
|
|
entry.trigger = IOAPIC_LEVEL;
|
|
|
ioapic_write_entry(apic, pin, entry);
|
|
|
}
|
|
|
-
|
|
|
raw_spin_lock_irqsave(&ioapic_lock, flags);
|
|
|
- x86_io_apic_ops.eoi_ioapic_pin(apic, pin, entry.vector);
|
|
|
+ __eoi_ioapic_pin(apic, pin, entry.vector);
|
|
|
raw_spin_unlock_irqrestore(&ioapic_lock, flags);
|
|
|
}
|
|
|
|
|
@@ -706,8 +670,8 @@ void mask_ioapic_entries(void)
|
|
|
struct IO_APIC_route_entry entry;
|
|
|
|
|
|
entry = ioapics[apic].saved_registers[pin];
|
|
|
- if (!entry.mask) {
|
|
|
- entry.mask = 1;
|
|
|
+ if (entry.mask == IOAPIC_UNMASKED) {
|
|
|
+ entry.mask = IOAPIC_MASKED;
|
|
|
ioapic_write_entry(apic, pin, entry);
|
|
|
}
|
|
|
}
|
|
@@ -809,11 +773,11 @@ static int EISA_ELCR(unsigned int irq)
|
|
|
|
|
|
#endif
|
|
|
|
|
|
-/* ISA interrupts are always polarity zero edge triggered,
|
|
|
+/* ISA interrupts are always active high edge triggered,
|
|
|
* when listed as conforming in the MP table. */
|
|
|
|
|
|
-#define default_ISA_trigger(idx) (0)
|
|
|
-#define default_ISA_polarity(idx) (0)
|
|
|
+#define default_ISA_trigger(idx) (IOAPIC_EDGE)
|
|
|
+#define default_ISA_polarity(idx) (IOAPIC_POL_HIGH)
|
|
|
|
|
|
/* EISA interrupts are always polarity zero and can be edge or level
|
|
|
* trigger depending on the ELCR value. If an interrupt is listed as
|
|
@@ -823,53 +787,55 @@ static int EISA_ELCR(unsigned int irq)
|
|
|
#define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].srcbusirq))
|
|
|
#define default_EISA_polarity(idx) default_ISA_polarity(idx)
|
|
|
|
|
|
-/* PCI interrupts are always polarity one level triggered,
|
|
|
+/* PCI interrupts are always active low level triggered,
|
|
|
* when listed as conforming in the MP table. */
|
|
|
|
|
|
-#define default_PCI_trigger(idx) (1)
|
|
|
-#define default_PCI_polarity(idx) (1)
|
|
|
+#define default_PCI_trigger(idx) (IOAPIC_LEVEL)
|
|
|
+#define default_PCI_polarity(idx) (IOAPIC_POL_LOW)
|
|
|
|
|
|
static int irq_polarity(int idx)
|
|
|
{
|
|
|
int bus = mp_irqs[idx].srcbus;
|
|
|
- int polarity;
|
|
|
|
|
|
/*
|
|
|
* Determine IRQ line polarity (high active or low active):
|
|
|
*/
|
|
|
- switch (mp_irqs[idx].irqflag & 3)
|
|
|
- {
|
|
|
- case 0: /* conforms, ie. bus-type dependent polarity */
|
|
|
- if (test_bit(bus, mp_bus_not_pci))
|
|
|
- polarity = default_ISA_polarity(idx);
|
|
|
- else
|
|
|
- polarity = default_PCI_polarity(idx);
|
|
|
- break;
|
|
|
- case 1: /* high active */
|
|
|
- {
|
|
|
- polarity = 0;
|
|
|
- break;
|
|
|
- }
|
|
|
- case 2: /* reserved */
|
|
|
- {
|
|
|
- pr_warn("broken BIOS!!\n");
|
|
|
- polarity = 1;
|
|
|
- break;
|
|
|
- }
|
|
|
- case 3: /* low active */
|
|
|
- {
|
|
|
- polarity = 1;
|
|
|
- break;
|
|
|
- }
|
|
|
- default: /* invalid */
|
|
|
- {
|
|
|
- pr_warn("broken BIOS!!\n");
|
|
|
- polarity = 1;
|
|
|
- break;
|
|
|
- }
|
|
|
+ switch (mp_irqs[idx].irqflag & 0x03) {
|
|
|
+ case 0:
|
|
|
+ /* conforms to spec, ie. bus-type dependent polarity */
|
|
|
+ if (test_bit(bus, mp_bus_not_pci))
|
|
|
+ return default_ISA_polarity(idx);
|
|
|
+ else
|
|
|
+ return default_PCI_polarity(idx);
|
|
|
+ case 1:
|
|
|
+ return IOAPIC_POL_HIGH;
|
|
|
+ case 2:
|
|
|
+ pr_warn("IOAPIC: Invalid polarity: 2, defaulting to low\n");
|
|
|
+ case 3:
|
|
|
+ default: /* Pointless default required due to do gcc stupidity */
|
|
|
+ return IOAPIC_POL_LOW;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+#ifdef CONFIG_EISA
|
|
|
+static int eisa_irq_trigger(int idx, int bus, int trigger)
|
|
|
+{
|
|
|
+ switch (mp_bus_id_to_type[bus]) {
|
|
|
+ case MP_BUS_PCI:
|
|
|
+ case MP_BUS_ISA:
|
|
|
+ return trigger;
|
|
|
+ case MP_BUS_EISA:
|
|
|
+ return default_EISA_trigger(idx);
|
|
|
}
|
|
|
- return polarity;
|
|
|
+ pr_warn("IOAPIC: Invalid srcbus: %d defaulting to level\n", bus);
|
|
|
+ return IOAPIC_LEVEL;
|
|
|
}
|
|
|
+#else
|
|
|
+static inline int eisa_irq_trigger(int idx, int bus, int trigger)
|
|
|
+{
|
|
|
+ return trigger;
|
|
|
+}
|
|
|
+#endif
|
|
|
|
|
|
static int irq_trigger(int idx)
|
|
|
{
|
|
@@ -879,153 +845,227 @@ static int irq_trigger(int idx)
|
|
|
/*
|
|
|
* Determine IRQ trigger mode (edge or level sensitive):
|
|
|
*/
|
|
|
- switch ((mp_irqs[idx].irqflag>>2) & 3)
|
|
|
- {
|
|
|
- case 0: /* conforms, ie. bus-type dependent */
|
|
|
- if (test_bit(bus, mp_bus_not_pci))
|
|
|
- trigger = default_ISA_trigger(idx);
|
|
|
- else
|
|
|
- trigger = default_PCI_trigger(idx);
|
|
|
-#ifdef CONFIG_EISA
|
|
|
- switch (mp_bus_id_to_type[bus]) {
|
|
|
- case MP_BUS_ISA: /* ISA pin */
|
|
|
- {
|
|
|
- /* set before the switch */
|
|
|
- break;
|
|
|
- }
|
|
|
- case MP_BUS_EISA: /* EISA pin */
|
|
|
- {
|
|
|
- trigger = default_EISA_trigger(idx);
|
|
|
- break;
|
|
|
- }
|
|
|
- case MP_BUS_PCI: /* PCI pin */
|
|
|
- {
|
|
|
- /* set before the switch */
|
|
|
- break;
|
|
|
- }
|
|
|
- default:
|
|
|
- {
|
|
|
- pr_warn("broken BIOS!!\n");
|
|
|
- trigger = 1;
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
+ switch ((mp_irqs[idx].irqflag >> 2) & 0x03) {
|
|
|
+ case 0:
|
|
|
+ /* conforms to spec, ie. bus-type dependent trigger mode */
|
|
|
+ if (test_bit(bus, mp_bus_not_pci))
|
|
|
+ trigger = default_ISA_trigger(idx);
|
|
|
+ else
|
|
|
+ trigger = default_PCI_trigger(idx);
|
|
|
+ /* Take EISA into account */
|
|
|
+ return eisa_irq_trigger(idx, bus, trigger);
|
|
|
+ case 1:
|
|
|
+ return IOAPIC_EDGE;
|
|
|
+ case 2:
|
|
|
+ pr_warn("IOAPIC: Invalid trigger mode 2 defaulting to level\n");
|
|
|
+ case 3:
|
|
|
+ default: /* Pointless default required due to do gcc stupidity */
|
|
|
+ return IOAPIC_LEVEL;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+void ioapic_set_alloc_attr(struct irq_alloc_info *info, int node,
|
|
|
+ int trigger, int polarity)
|
|
|
+{
|
|
|
+ init_irq_alloc_info(info, NULL);
|
|
|
+ info->type = X86_IRQ_ALLOC_TYPE_IOAPIC;
|
|
|
+ info->ioapic_node = node;
|
|
|
+ info->ioapic_trigger = trigger;
|
|
|
+ info->ioapic_polarity = polarity;
|
|
|
+ info->ioapic_valid = 1;
|
|
|
+}
|
|
|
+
|
|
|
+#ifndef CONFIG_ACPI
|
|
|
+int acpi_get_override_irq(u32 gsi, int *trigger, int *polarity);
|
|
|
#endif
|
|
|
- break;
|
|
|
- case 1: /* edge */
|
|
|
- {
|
|
|
- trigger = 0;
|
|
|
- break;
|
|
|
- }
|
|
|
- case 2: /* reserved */
|
|
|
- {
|
|
|
- pr_warn("broken BIOS!!\n");
|
|
|
- trigger = 1;
|
|
|
- break;
|
|
|
- }
|
|
|
- case 3: /* level */
|
|
|
- {
|
|
|
- trigger = 1;
|
|
|
- break;
|
|
|
- }
|
|
|
- default: /* invalid */
|
|
|
- {
|
|
|
- pr_warn("broken BIOS!!\n");
|
|
|
- trigger = 0;
|
|
|
- break;
|
|
|
+
|
|
|
+static void ioapic_copy_alloc_attr(struct irq_alloc_info *dst,
|
|
|
+ struct irq_alloc_info *src,
|
|
|
+ u32 gsi, int ioapic_idx, int pin)
|
|
|
+{
|
|
|
+ int trigger, polarity;
|
|
|
+
|
|
|
+ copy_irq_alloc_info(dst, src);
|
|
|
+ dst->type = X86_IRQ_ALLOC_TYPE_IOAPIC;
|
|
|
+ dst->ioapic_id = mpc_ioapic_id(ioapic_idx);
|
|
|
+ dst->ioapic_pin = pin;
|
|
|
+ dst->ioapic_valid = 1;
|
|
|
+ if (src && src->ioapic_valid) {
|
|
|
+ dst->ioapic_node = src->ioapic_node;
|
|
|
+ dst->ioapic_trigger = src->ioapic_trigger;
|
|
|
+ dst->ioapic_polarity = src->ioapic_polarity;
|
|
|
+ } else {
|
|
|
+ dst->ioapic_node = NUMA_NO_NODE;
|
|
|
+ if (acpi_get_override_irq(gsi, &trigger, &polarity) >= 0) {
|
|
|
+ dst->ioapic_trigger = trigger;
|
|
|
+ dst->ioapic_polarity = polarity;
|
|
|
+ } else {
|
|
|
+ /*
|
|
|
+ * PCI interrupts are always active low level
|
|
|
+ * triggered.
|
|
|
+ */
|
|
|
+ dst->ioapic_trigger = IOAPIC_LEVEL;
|
|
|
+ dst->ioapic_polarity = IOAPIC_POL_LOW;
|
|
|
}
|
|
|
}
|
|
|
- return trigger;
|
|
|
}
|
|
|
|
|
|
-static int alloc_irq_from_domain(struct irq_domain *domain, u32 gsi, int pin)
|
|
|
+static int ioapic_alloc_attr_node(struct irq_alloc_info *info)
|
|
|
+{
|
|
|
+ return (info && info->ioapic_valid) ? info->ioapic_node : NUMA_NO_NODE;
|
|
|
+}
|
|
|
+
|
|
|
+static void mp_register_handler(unsigned int irq, unsigned long trigger)
|
|
|
+{
|
|
|
+ irq_flow_handler_t hdl;
|
|
|
+ bool fasteoi;
|
|
|
+
|
|
|
+ if (trigger) {
|
|
|
+ irq_set_status_flags(irq, IRQ_LEVEL);
|
|
|
+ fasteoi = true;
|
|
|
+ } else {
|
|
|
+ irq_clear_status_flags(irq, IRQ_LEVEL);
|
|
|
+ fasteoi = false;
|
|
|
+ }
|
|
|
+
|
|
|
+ hdl = fasteoi ? handle_fasteoi_irq : handle_edge_irq;
|
|
|
+ __irq_set_handler(irq, hdl, 0, fasteoi ? "fasteoi" : "edge");
|
|
|
+}
|
|
|
+
|
|
|
+static bool mp_check_pin_attr(int irq, struct irq_alloc_info *info)
|
|
|
{
|
|
|
+ struct mp_chip_data *data = irq_get_chip_data(irq);
|
|
|
+
|
|
|
+ /*
|
|
|
+ * setup_IO_APIC_irqs() programs all legacy IRQs with default trigger
|
|
|
+ * and polarity attirbutes. So allow the first user to reprogram the
|
|
|
+ * pin with real trigger and polarity attributes.
|
|
|
+ */
|
|
|
+ if (irq < nr_legacy_irqs() && data->count == 1) {
|
|
|
+ if (info->ioapic_trigger != data->trigger)
|
|
|
+ mp_register_handler(irq, data->trigger);
|
|
|
+ data->entry.trigger = data->trigger = info->ioapic_trigger;
|
|
|
+ data->entry.polarity = data->polarity = info->ioapic_polarity;
|
|
|
+ }
|
|
|
+
|
|
|
+ return data->trigger == info->ioapic_trigger &&
|
|
|
+ data->polarity == info->ioapic_polarity;
|
|
|
+}
|
|
|
+
|
|
|
+static int alloc_irq_from_domain(struct irq_domain *domain, int ioapic, u32 gsi,
|
|
|
+ struct irq_alloc_info *info)
|
|
|
+{
|
|
|
+ bool legacy = false;
|
|
|
int irq = -1;
|
|
|
- int ioapic = (int)(long)domain->host_data;
|
|
|
int type = ioapics[ioapic].irqdomain_cfg.type;
|
|
|
|
|
|
switch (type) {
|
|
|
case IOAPIC_DOMAIN_LEGACY:
|
|
|
/*
|
|
|
- * Dynamically allocate IRQ number for non-ISA IRQs in the first 16
|
|
|
- * GSIs on some weird platforms.
|
|
|
+ * Dynamically allocate IRQ number for non-ISA IRQs in the first
|
|
|
+ * 16 GSIs on some weird platforms.
|
|
|
*/
|
|
|
- if (gsi < nr_legacy_irqs())
|
|
|
- irq = irq_create_mapping(domain, pin);
|
|
|
- else if (irq_create_strict_mappings(domain, gsi, pin, 1) == 0)
|
|
|
+ if (!ioapic_initialized || gsi >= nr_legacy_irqs())
|
|
|
irq = gsi;
|
|
|
+ legacy = mp_is_legacy_irq(irq);
|
|
|
break;
|
|
|
case IOAPIC_DOMAIN_STRICT:
|
|
|
- if (irq_create_strict_mappings(domain, gsi, pin, 1) == 0)
|
|
|
- irq = gsi;
|
|
|
+ irq = gsi;
|
|
|
break;
|
|
|
case IOAPIC_DOMAIN_DYNAMIC:
|
|
|
- irq = irq_create_mapping(domain, pin);
|
|
|
break;
|
|
|
default:
|
|
|
WARN(1, "ioapic: unknown irqdomain type %d\n", type);
|
|
|
- break;
|
|
|
+ return -1;
|
|
|
+ }
|
|
|
+
|
|
|
+ return __irq_domain_alloc_irqs(domain, irq, 1,
|
|
|
+ ioapic_alloc_attr_node(info),
|
|
|
+ info, legacy);
|
|
|
+}
|
|
|
+
|
|
|
+/*
|
|
|
+ * Need special handling for ISA IRQs because there may be multiple IOAPIC pins
|
|
|
+ * sharing the same ISA IRQ number and irqdomain only supports 1:1 mapping
|
|
|
+ * between IOAPIC pin and IRQ number. A typical IOAPIC has 24 pins, pin 0-15 are
|
|
|
+ * used for legacy IRQs and pin 16-23 are used for PCI IRQs (PIRQ A-H).
|
|
|
+ * When ACPI is disabled, only legacy IRQ numbers (IRQ0-15) are available, and
|
|
|
+ * some BIOSes may use MP Interrupt Source records to override IRQ numbers for
|
|
|
+ * PIRQs instead of reprogramming the interrupt routing logic. Thus there may be
|
|
|
+ * multiple pins sharing the same legacy IRQ number when ACPI is disabled.
|
|
|
+ */
|
|
|
+static int alloc_isa_irq_from_domain(struct irq_domain *domain,
|
|
|
+ int irq, int ioapic, int pin,
|
|
|
+ struct irq_alloc_info *info)
|
|
|
+{
|
|
|
+ struct mp_chip_data *data;
|
|
|
+ struct irq_data *irq_data = irq_get_irq_data(irq);
|
|
|
+ int node = ioapic_alloc_attr_node(info);
|
|
|
+
|
|
|
+ /*
|
|
|
+ * Legacy ISA IRQ has already been allocated, just add pin to
|
|
|
+ * the pin list assoicated with this IRQ and program the IOAPIC
|
|
|
+ * entry. The IOAPIC entry
|
|
|
+ */
|
|
|
+ if (irq_data && irq_data->parent_data) {
|
|
|
+ if (!mp_check_pin_attr(irq, info))
|
|
|
+ return -EBUSY;
|
|
|
+ if (__add_pin_to_irq_node(irq_data->chip_data, node, ioapic,
|
|
|
+ info->ioapic_pin))
|
|
|
+ return -ENOMEM;
|
|
|
+ } else {
|
|
|
+ irq = __irq_domain_alloc_irqs(domain, irq, 1, node, info, true);
|
|
|
+ if (irq >= 0) {
|
|
|
+ irq_data = irq_domain_get_irq_data(domain, irq);
|
|
|
+ data = irq_data->chip_data;
|
|
|
+ data->isa_irq = true;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
- return irq > 0 ? irq : -1;
|
|
|
+ return irq;
|
|
|
}
|
|
|
|
|
|
static int mp_map_pin_to_irq(u32 gsi, int idx, int ioapic, int pin,
|
|
|
- unsigned int flags)
|
|
|
+ unsigned int flags, struct irq_alloc_info *info)
|
|
|
{
|
|
|
int irq;
|
|
|
+ bool legacy = false;
|
|
|
+ struct irq_alloc_info tmp;
|
|
|
+ struct mp_chip_data *data;
|
|
|
struct irq_domain *domain = mp_ioapic_irqdomain(ioapic);
|
|
|
- struct mp_pin_info *info = mp_pin_info(ioapic, pin);
|
|
|
|
|
|
if (!domain)
|
|
|
- return -1;
|
|
|
+ return -ENOSYS;
|
|
|
|
|
|
- mutex_lock(&ioapic_mutex);
|
|
|
-
|
|
|
- /*
|
|
|
- * Don't use irqdomain to manage ISA IRQs because there may be
|
|
|
- * multiple IOAPIC pins sharing the same ISA IRQ number and
|
|
|
- * irqdomain only supports 1:1 mapping between IOAPIC pin and
|
|
|
- * IRQ number. A typical IOAPIC has 24 pins, pin 0-15 are used
|
|
|
- * for legacy IRQs and pin 16-23 are used for PCI IRQs (PIRQ A-H).
|
|
|
- * When ACPI is disabled, only legacy IRQ numbers (IRQ0-15) are
|
|
|
- * available, and some BIOSes may use MP Interrupt Source records
|
|
|
- * to override IRQ numbers for PIRQs instead of reprogramming
|
|
|
- * the interrupt routing logic. Thus there may be multiple pins
|
|
|
- * sharing the same legacy IRQ number when ACPI is disabled.
|
|
|
- */
|
|
|
if (idx >= 0 && test_bit(mp_irqs[idx].srcbus, mp_bus_not_pci)) {
|
|
|
irq = mp_irqs[idx].srcbusirq;
|
|
|
- if (flags & IOAPIC_MAP_ALLOC) {
|
|
|
- if (info->count == 0 &&
|
|
|
- mp_irqdomain_map(domain, irq, pin) != 0)
|
|
|
- irq = -1;
|
|
|
+ legacy = mp_is_legacy_irq(irq);
|
|
|
+ }
|
|
|
|
|
|
- /* special handling for timer IRQ0 */
|
|
|
+ mutex_lock(&ioapic_mutex);
|
|
|
+ if (!(flags & IOAPIC_MAP_ALLOC)) {
|
|
|
+ if (!legacy) {
|
|
|
+ irq = irq_find_mapping(domain, pin);
|
|
|
if (irq == 0)
|
|
|
- info->count++;
|
|
|
+ irq = -ENOENT;
|
|
|
}
|
|
|
} else {
|
|
|
- irq = irq_find_mapping(domain, pin);
|
|
|
- if (irq <= 0 && (flags & IOAPIC_MAP_ALLOC))
|
|
|
- irq = alloc_irq_from_domain(domain, gsi, pin);
|
|
|
- }
|
|
|
-
|
|
|
- if (flags & IOAPIC_MAP_ALLOC) {
|
|
|
- /* special handling for legacy IRQs */
|
|
|
- if (irq < nr_legacy_irqs() && info->count == 1 &&
|
|
|
- mp_irqdomain_map(domain, irq, pin) != 0)
|
|
|
- irq = -1;
|
|
|
-
|
|
|
- if (irq > 0)
|
|
|
- info->count++;
|
|
|
- else if (info->count == 0)
|
|
|
- info->set = 0;
|
|
|
+ ioapic_copy_alloc_attr(&tmp, info, gsi, ioapic, pin);
|
|
|
+ if (legacy)
|
|
|
+ irq = alloc_isa_irq_from_domain(domain, irq,
|
|
|
+ ioapic, pin, &tmp);
|
|
|
+ else if ((irq = irq_find_mapping(domain, pin)) == 0)
|
|
|
+ irq = alloc_irq_from_domain(domain, ioapic, gsi, &tmp);
|
|
|
+ else if (!mp_check_pin_attr(irq, &tmp))
|
|
|
+ irq = -EBUSY;
|
|
|
+ if (irq >= 0) {
|
|
|
+ data = irq_get_chip_data(irq);
|
|
|
+ data->count++;
|
|
|
+ }
|
|
|
}
|
|
|
-
|
|
|
mutex_unlock(&ioapic_mutex);
|
|
|
|
|
|
- return irq > 0 ? irq : -1;
|
|
|
+ return irq;
|
|
|
}
|
|
|
|
|
|
static int pin_2_irq(int idx, int ioapic, int pin, unsigned int flags)
|
|
@@ -1058,10 +1098,10 @@ static int pin_2_irq(int idx, int ioapic, int pin, unsigned int flags)
|
|
|
}
|
|
|
#endif
|
|
|
|
|
|
- return mp_map_pin_to_irq(gsi, idx, ioapic, pin, flags);
|
|
|
+ return mp_map_pin_to_irq(gsi, idx, ioapic, pin, flags, NULL);
|
|
|
}
|
|
|
|
|
|
-int mp_map_gsi_to_irq(u32 gsi, unsigned int flags)
|
|
|
+int mp_map_gsi_to_irq(u32 gsi, unsigned int flags, struct irq_alloc_info *info)
|
|
|
{
|
|
|
int ioapic, pin, idx;
|
|
|
|
|
@@ -1074,31 +1114,24 @@ int mp_map_gsi_to_irq(u32 gsi, unsigned int flags)
|
|
|
if ((flags & IOAPIC_MAP_CHECK) && idx < 0)
|
|
|
return -1;
|
|
|
|
|
|
- return mp_map_pin_to_irq(gsi, idx, ioapic, pin, flags);
|
|
|
+ return mp_map_pin_to_irq(gsi, idx, ioapic, pin, flags, info);
|
|
|
}
|
|
|
|
|
|
void mp_unmap_irq(int irq)
|
|
|
{
|
|
|
- struct irq_data *data = irq_get_irq_data(irq);
|
|
|
- struct mp_pin_info *info;
|
|
|
- int ioapic, pin;
|
|
|
+ struct irq_data *irq_data = irq_get_irq_data(irq);
|
|
|
+ struct mp_chip_data *data;
|
|
|
|
|
|
- if (!data || !data->domain)
|
|
|
+ if (!irq_data || !irq_data->domain)
|
|
|
return;
|
|
|
|
|
|
- ioapic = (int)(long)data->domain->host_data;
|
|
|
- pin = (int)data->hwirq;
|
|
|
- info = mp_pin_info(ioapic, pin);
|
|
|
+ data = irq_data->chip_data;
|
|
|
+ if (!data || data->isa_irq)
|
|
|
+ return;
|
|
|
|
|
|
mutex_lock(&ioapic_mutex);
|
|
|
- if (--info->count == 0) {
|
|
|
- info->set = 0;
|
|
|
- if (irq < nr_legacy_irqs() &&
|
|
|
- ioapics[ioapic].irqdomain_cfg.type == IOAPIC_DOMAIN_LEGACY)
|
|
|
- mp_irqdomain_unmap(data->domain, irq);
|
|
|
- else
|
|
|
- irq_dispose_mapping(irq);
|
|
|
- }
|
|
|
+ if (--data->count == 0)
|
|
|
+ irq_domain_free_irqs(irq, 1);
|
|
|
mutex_unlock(&ioapic_mutex);
|
|
|
}
|
|
|
|
|
@@ -1165,7 +1198,7 @@ out:
|
|
|
}
|
|
|
EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
|
|
|
|
|
|
-static struct irq_chip ioapic_chip;
|
|
|
+static struct irq_chip ioapic_chip, ioapic_ir_chip;
|
|
|
|
|
|
#ifdef CONFIG_X86_32
|
|
|
static inline int IO_APIC_irq_trigger(int irq)
|
|
@@ -1189,96 +1222,6 @@ static inline int IO_APIC_irq_trigger(int irq)
|
|
|
}
|
|
|
#endif
|
|
|
|
|
|
-static void ioapic_register_intr(unsigned int irq, struct irq_cfg *cfg,
|
|
|
- unsigned long trigger)
|
|
|
-{
|
|
|
- struct irq_chip *chip = &ioapic_chip;
|
|
|
- irq_flow_handler_t hdl;
|
|
|
- bool fasteoi;
|
|
|
-
|
|
|
- if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
|
|
|
- trigger == IOAPIC_LEVEL) {
|
|
|
- irq_set_status_flags(irq, IRQ_LEVEL);
|
|
|
- fasteoi = true;
|
|
|
- } else {
|
|
|
- irq_clear_status_flags(irq, IRQ_LEVEL);
|
|
|
- fasteoi = false;
|
|
|
- }
|
|
|
-
|
|
|
- if (setup_remapped_irq(irq, cfg, chip))
|
|
|
- fasteoi = trigger != 0;
|
|
|
-
|
|
|
- hdl = fasteoi ? handle_fasteoi_irq : handle_edge_irq;
|
|
|
- irq_set_chip_and_handler_name(irq, chip, hdl,
|
|
|
- fasteoi ? "fasteoi" : "edge");
|
|
|
-}
|
|
|
-
|
|
|
-int native_setup_ioapic_entry(int irq, struct IO_APIC_route_entry *entry,
|
|
|
- unsigned int destination, int vector,
|
|
|
- struct io_apic_irq_attr *attr)
|
|
|
-{
|
|
|
- memset(entry, 0, sizeof(*entry));
|
|
|
-
|
|
|
- entry->delivery_mode = apic->irq_delivery_mode;
|
|
|
- entry->dest_mode = apic->irq_dest_mode;
|
|
|
- entry->dest = destination;
|
|
|
- entry->vector = vector;
|
|
|
- entry->mask = 0; /* enable IRQ */
|
|
|
- entry->trigger = attr->trigger;
|
|
|
- entry->polarity = attr->polarity;
|
|
|
-
|
|
|
- /*
|
|
|
- * Mask level triggered irqs.
|
|
|
- * Use IRQ_DELAYED_DISABLE for edge triggered irqs.
|
|
|
- */
|
|
|
- if (attr->trigger)
|
|
|
- entry->mask = 1;
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-static void setup_ioapic_irq(unsigned int irq, struct irq_cfg *cfg,
|
|
|
- struct io_apic_irq_attr *attr)
|
|
|
-{
|
|
|
- struct IO_APIC_route_entry entry;
|
|
|
- unsigned int dest;
|
|
|
-
|
|
|
- if (!IO_APIC_IRQ(irq))
|
|
|
- return;
|
|
|
-
|
|
|
- if (assign_irq_vector(irq, cfg, apic->target_cpus()))
|
|
|
- return;
|
|
|
-
|
|
|
- if (apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus(),
|
|
|
- &dest)) {
|
|
|
- pr_warn("Failed to obtain apicid for ioapic %d, pin %d\n",
|
|
|
- mpc_ioapic_id(attr->ioapic), attr->ioapic_pin);
|
|
|
- clear_irq_vector(irq, cfg);
|
|
|
-
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- apic_printk(APIC_VERBOSE,KERN_DEBUG
|
|
|
- "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> "
|
|
|
- "IRQ %d Mode:%i Active:%i Dest:%d)\n",
|
|
|
- attr->ioapic, mpc_ioapic_id(attr->ioapic), attr->ioapic_pin,
|
|
|
- cfg->vector, irq, attr->trigger, attr->polarity, dest);
|
|
|
-
|
|
|
- if (x86_io_apic_ops.setup_entry(irq, &entry, dest, cfg->vector, attr)) {
|
|
|
- pr_warn("Failed to setup ioapic entry for ioapic %d, pin %d\n",
|
|
|
- mpc_ioapic_id(attr->ioapic), attr->ioapic_pin);
|
|
|
- clear_irq_vector(irq, cfg);
|
|
|
-
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- ioapic_register_intr(irq, cfg, attr->trigger);
|
|
|
- if (irq < nr_legacy_irqs())
|
|
|
- legacy_pic->mask(irq);
|
|
|
-
|
|
|
- ioapic_write_entry(attr->ioapic, attr->ioapic_pin, entry);
|
|
|
-}
|
|
|
-
|
|
|
static void __init setup_IO_APIC_irqs(void)
|
|
|
{
|
|
|
unsigned int ioapic, pin;
|
|
@@ -1298,106 +1241,41 @@ static void __init setup_IO_APIC_irqs(void)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-/*
|
|
|
- * Set up the timer pin, possibly with the 8259A-master behind.
|
|
|
- */
|
|
|
-static void __init setup_timer_IRQ0_pin(unsigned int ioapic_idx,
|
|
|
- unsigned int pin, int vector)
|
|
|
-{
|
|
|
- struct IO_APIC_route_entry entry;
|
|
|
- unsigned int dest;
|
|
|
-
|
|
|
- memset(&entry, 0, sizeof(entry));
|
|
|
-
|
|
|
- /*
|
|
|
- * We use logical delivery to get the timer IRQ
|
|
|
- * to the first CPU.
|
|
|
- */
|
|
|
- if (unlikely(apic->cpu_mask_to_apicid_and(apic->target_cpus(),
|
|
|
- apic->target_cpus(), &dest)))
|
|
|
- dest = BAD_APICID;
|
|
|
-
|
|
|
- entry.dest_mode = apic->irq_dest_mode;
|
|
|
- entry.mask = 0; /* don't mask IRQ for edge */
|
|
|
- entry.dest = dest;
|
|
|
- entry.delivery_mode = apic->irq_delivery_mode;
|
|
|
- entry.polarity = 0;
|
|
|
- entry.trigger = 0;
|
|
|
- entry.vector = vector;
|
|
|
-
|
|
|
- /*
|
|
|
- * The timer IRQ doesn't have to know that behind the
|
|
|
- * scene we may have a 8259A-master in AEOI mode ...
|
|
|
- */
|
|
|
- irq_set_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq,
|
|
|
- "edge");
|
|
|
-
|
|
|
- /*
|
|
|
- * Add it to the IO-APIC irq-routing table:
|
|
|
- */
|
|
|
- ioapic_write_entry(ioapic_idx, pin, entry);
|
|
|
-}
|
|
|
-
|
|
|
-void native_io_apic_print_entries(unsigned int apic, unsigned int nr_entries)
|
|
|
+void ioapic_zap_locks(void)
|
|
|
{
|
|
|
- int i;
|
|
|
-
|
|
|
- pr_debug(" NR Dst Mask Trig IRR Pol Stat Dmod Deli Vect:\n");
|
|
|
-
|
|
|
- for (i = 0; i <= nr_entries; i++) {
|
|
|
- struct IO_APIC_route_entry entry;
|
|
|
-
|
|
|
- entry = ioapic_read_entry(apic, i);
|
|
|
-
|
|
|
- pr_debug(" %02x %02X ", i, entry.dest);
|
|
|
- pr_cont("%1d %1d %1d %1d %1d "
|
|
|
- "%1d %1d %02X\n",
|
|
|
- entry.mask,
|
|
|
- entry.trigger,
|
|
|
- entry.irr,
|
|
|
- entry.polarity,
|
|
|
- entry.delivery_status,
|
|
|
- entry.dest_mode,
|
|
|
- entry.delivery_mode,
|
|
|
- entry.vector);
|
|
|
- }
|
|
|
+ raw_spin_lock_init(&ioapic_lock);
|
|
|
}
|
|
|
|
|
|
-void intel_ir_io_apic_print_entries(unsigned int apic,
|
|
|
- unsigned int nr_entries)
|
|
|
+static void io_apic_print_entries(unsigned int apic, unsigned int nr_entries)
|
|
|
{
|
|
|
int i;
|
|
|
+ char buf[256];
|
|
|
+ struct IO_APIC_route_entry entry;
|
|
|
+ struct IR_IO_APIC_route_entry *ir_entry = (void *)&entry;
|
|
|
|
|
|
- pr_debug(" NR Indx Fmt Mask Trig IRR Pol Stat Indx2 Zero Vect:\n");
|
|
|
-
|
|
|
+ printk(KERN_DEBUG "IOAPIC %d:\n", apic);
|
|
|
for (i = 0; i <= nr_entries; i++) {
|
|
|
- struct IR_IO_APIC_route_entry *ir_entry;
|
|
|
- struct IO_APIC_route_entry entry;
|
|
|
-
|
|
|
entry = ioapic_read_entry(apic, i);
|
|
|
-
|
|
|
- ir_entry = (struct IR_IO_APIC_route_entry *)&entry;
|
|
|
-
|
|
|
- pr_debug(" %02x %04X ", i, ir_entry->index);
|
|
|
- pr_cont("%1d %1d %1d %1d %1d "
|
|
|
- "%1d %1d %X %02X\n",
|
|
|
- ir_entry->format,
|
|
|
- ir_entry->mask,
|
|
|
- ir_entry->trigger,
|
|
|
- ir_entry->irr,
|
|
|
- ir_entry->polarity,
|
|
|
- ir_entry->delivery_status,
|
|
|
- ir_entry->index2,
|
|
|
- ir_entry->zero,
|
|
|
- ir_entry->vector);
|
|
|
+ snprintf(buf, sizeof(buf),
|
|
|
+ " pin%02x, %s, %s, %s, V(%02X), IRR(%1d), S(%1d)",
|
|
|
+ i,
|
|
|
+ entry.mask == IOAPIC_MASKED ? "disabled" : "enabled ",
|
|
|
+ entry.trigger == IOAPIC_LEVEL ? "level" : "edge ",
|
|
|
+ entry.polarity == IOAPIC_POL_LOW ? "low " : "high",
|
|
|
+ entry.vector, entry.irr, entry.delivery_status);
|
|
|
+ if (ir_entry->format)
|
|
|
+ printk(KERN_DEBUG "%s, remapped, I(%04X), Z(%X)\n",
|
|
|
+ buf, (ir_entry->index << 15) | ir_entry->index,
|
|
|
+ ir_entry->zero);
|
|
|
+ else
|
|
|
+ printk(KERN_DEBUG "%s, %s, D(%02X), M(%1d)\n",
|
|
|
+ buf,
|
|
|
+ entry.dest_mode == IOAPIC_DEST_MODE_LOGICAL ?
|
|
|
+ "logical " : "physical",
|
|
|
+ entry.dest, entry.delivery_mode);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-void ioapic_zap_locks(void)
|
|
|
-{
|
|
|
- raw_spin_lock_init(&ioapic_lock);
|
|
|
-}
|
|
|
-
|
|
|
static void __init print_IO_APIC(int ioapic_idx)
|
|
|
{
|
|
|
union IO_APIC_reg_00 reg_00;
|
|
@@ -1451,16 +1329,13 @@ static void __init print_IO_APIC(int ioapic_idx)
|
|
|
}
|
|
|
|
|
|
printk(KERN_DEBUG ".... IRQ redirection table:\n");
|
|
|
-
|
|
|
- x86_io_apic_ops.print_entries(ioapic_idx, reg_01.bits.entries);
|
|
|
+ io_apic_print_entries(ioapic_idx, reg_01.bits.entries);
|
|
|
}
|
|
|
|
|
|
void __init print_IO_APICs(void)
|
|
|
{
|
|
|
int ioapic_idx;
|
|
|
- struct irq_cfg *cfg;
|
|
|
unsigned int irq;
|
|
|
- struct irq_chip *chip;
|
|
|
|
|
|
printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
|
|
|
for_each_ioapic(ioapic_idx)
|
|
@@ -1480,18 +1355,20 @@ void __init print_IO_APICs(void)
|
|
|
printk(KERN_DEBUG "IRQ to pin mappings:\n");
|
|
|
for_each_active_irq(irq) {
|
|
|
struct irq_pin_list *entry;
|
|
|
+ struct irq_chip *chip;
|
|
|
+ struct mp_chip_data *data;
|
|
|
|
|
|
chip = irq_get_chip(irq);
|
|
|
- if (chip != &ioapic_chip)
|
|
|
+ if (chip != &ioapic_chip && chip != &ioapic_ir_chip)
|
|
|
continue;
|
|
|
-
|
|
|
- cfg = irq_cfg(irq);
|
|
|
- if (!cfg)
|
|
|
+ data = irq_get_chip_data(irq);
|
|
|
+ if (!data)
|
|
|
continue;
|
|
|
- if (list_empty(&cfg->irq_2_pin))
|
|
|
+ if (list_empty(&data->irq_2_pin))
|
|
|
continue;
|
|
|
+
|
|
|
printk(KERN_DEBUG "IRQ%d ", irq);
|
|
|
- for_each_irq_pin(entry, cfg->irq_2_pin)
|
|
|
+ for_each_irq_pin(entry, data->irq_2_pin)
|
|
|
pr_cont("-> %d:%d", entry->apic, entry->pin);
|
|
|
pr_cont("\n");
|
|
|
}
|
|
@@ -1564,15 +1441,12 @@ void native_disable_io_apic(void)
|
|
|
struct IO_APIC_route_entry entry;
|
|
|
|
|
|
memset(&entry, 0, sizeof(entry));
|
|
|
- entry.mask = 0; /* Enabled */
|
|
|
- entry.trigger = 0; /* Edge */
|
|
|
- entry.irr = 0;
|
|
|
- entry.polarity = 0; /* High */
|
|
|
- entry.delivery_status = 0;
|
|
|
- entry.dest_mode = 0; /* Physical */
|
|
|
- entry.delivery_mode = dest_ExtINT; /* ExtInt */
|
|
|
- entry.vector = 0;
|
|
|
- entry.dest = read_apic_id();
|
|
|
+ entry.mask = IOAPIC_UNMASKED;
|
|
|
+ entry.trigger = IOAPIC_EDGE;
|
|
|
+ entry.polarity = IOAPIC_POL_HIGH;
|
|
|
+ entry.dest_mode = IOAPIC_DEST_MODE_PHYSICAL;
|
|
|
+ entry.delivery_mode = dest_ExtINT;
|
|
|
+ entry.dest = read_apic_id();
|
|
|
|
|
|
/*
|
|
|
* Add it to the IO-APIC irq-routing table:
|
|
@@ -1582,7 +1456,6 @@ void native_disable_io_apic(void)
|
|
|
|
|
|
if (cpu_has_apic || apic_from_smp_config())
|
|
|
disconnect_bsp_APIC(ioapic_i8259.pin != -1);
|
|
|
-
|
|
|
}
|
|
|
|
|
|
/*
|
|
@@ -1792,7 +1665,6 @@ static int __init timer_irq_works(void)
|
|
|
* This is not complete - we should be able to fake
|
|
|
* an edge even if it isn't on the 8259A...
|
|
|
*/
|
|
|
-
|
|
|
static unsigned int startup_ioapic_irq(struct irq_data *data)
|
|
|
{
|
|
|
int was_pending = 0, irq = data->irq;
|
|
@@ -1804,74 +1676,22 @@ static unsigned int startup_ioapic_irq(struct irq_data *data)
|
|
|
if (legacy_pic->irq_pending(irq))
|
|
|
was_pending = 1;
|
|
|
}
|
|
|
- __unmask_ioapic(irqd_cfg(data));
|
|
|
+ __unmask_ioapic(data->chip_data);
|
|
|
raw_spin_unlock_irqrestore(&ioapic_lock, flags);
|
|
|
|
|
|
return was_pending;
|
|
|
}
|
|
|
|
|
|
-/*
|
|
|
- * Level and edge triggered IO-APIC interrupts need different handling,
|
|
|
- * so we use two separate IRQ descriptors. Edge triggered IRQs can be
|
|
|
- * handled with the level-triggered descriptor, but that one has slightly
|
|
|
- * more overhead. Level-triggered interrupts cannot be handled with the
|
|
|
- * edge-triggered handler, without risking IRQ storms and other ugly
|
|
|
- * races.
|
|
|
- */
|
|
|
-
|
|
|
-static void __target_IO_APIC_irq(unsigned int irq, unsigned int dest, struct irq_cfg *cfg)
|
|
|
-{
|
|
|
- int apic, pin;
|
|
|
- struct irq_pin_list *entry;
|
|
|
- u8 vector = cfg->vector;
|
|
|
-
|
|
|
- for_each_irq_pin(entry, cfg->irq_2_pin) {
|
|
|
- unsigned int reg;
|
|
|
-
|
|
|
- apic = entry->apic;
|
|
|
- pin = entry->pin;
|
|
|
-
|
|
|
- io_apic_write(apic, 0x11 + pin*2, dest);
|
|
|
- reg = io_apic_read(apic, 0x10 + pin*2);
|
|
|
- reg &= ~IO_APIC_REDIR_VECTOR_MASK;
|
|
|
- reg |= vector;
|
|
|
- io_apic_modify(apic, 0x10 + pin*2, reg);
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-int native_ioapic_set_affinity(struct irq_data *data,
|
|
|
- const struct cpumask *mask,
|
|
|
- bool force)
|
|
|
-{
|
|
|
- unsigned int dest, irq = data->irq;
|
|
|
- unsigned long flags;
|
|
|
- int ret;
|
|
|
-
|
|
|
- if (!config_enabled(CONFIG_SMP))
|
|
|
- return -EPERM;
|
|
|
-
|
|
|
- raw_spin_lock_irqsave(&ioapic_lock, flags);
|
|
|
- ret = apic_set_affinity(data, mask, &dest);
|
|
|
- if (!ret) {
|
|
|
- /* Only the high 8 bits are valid. */
|
|
|
- dest = SET_APIC_LOGICAL_ID(dest);
|
|
|
- __target_IO_APIC_irq(irq, dest, irqd_cfg(data));
|
|
|
- ret = IRQ_SET_MASK_OK_NOCOPY;
|
|
|
- }
|
|
|
- raw_spin_unlock_irqrestore(&ioapic_lock, flags);
|
|
|
- return ret;
|
|
|
-}
|
|
|
-
|
|
|
atomic_t irq_mis_count;
|
|
|
|
|
|
#ifdef CONFIG_GENERIC_PENDING_IRQ
|
|
|
-static bool io_apic_level_ack_pending(struct irq_cfg *cfg)
|
|
|
+static bool io_apic_level_ack_pending(struct mp_chip_data *data)
|
|
|
{
|
|
|
struct irq_pin_list *entry;
|
|
|
unsigned long flags;
|
|
|
|
|
|
raw_spin_lock_irqsave(&ioapic_lock, flags);
|
|
|
- for_each_irq_pin(entry, cfg->irq_2_pin) {
|
|
|
+ for_each_irq_pin(entry, data->irq_2_pin) {
|
|
|
unsigned int reg;
|
|
|
int pin;
|
|
|
|
|
@@ -1888,18 +1708,17 @@ static bool io_apic_level_ack_pending(struct irq_cfg *cfg)
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
-static inline bool ioapic_irqd_mask(struct irq_data *data, struct irq_cfg *cfg)
|
|
|
+static inline bool ioapic_irqd_mask(struct irq_data *data)
|
|
|
{
|
|
|
/* If we are moving the irq we need to mask it */
|
|
|
if (unlikely(irqd_is_setaffinity_pending(data))) {
|
|
|
- mask_ioapic(cfg);
|
|
|
+ mask_ioapic_irq(data);
|
|
|
return true;
|
|
|
}
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
-static inline void ioapic_irqd_unmask(struct irq_data *data,
|
|
|
- struct irq_cfg *cfg, bool masked)
|
|
|
+static inline void ioapic_irqd_unmask(struct irq_data *data, bool masked)
|
|
|
{
|
|
|
if (unlikely(masked)) {
|
|
|
/* Only migrate the irq if the ack has been received.
|
|
@@ -1928,31 +1747,30 @@ static inline void ioapic_irqd_unmask(struct irq_data *data,
|
|
|
* accurate and is causing problems then it is a hardware bug
|
|
|
* and you can go talk to the chipset vendor about it.
|
|
|
*/
|
|
|
- if (!io_apic_level_ack_pending(cfg))
|
|
|
+ if (!io_apic_level_ack_pending(data->chip_data))
|
|
|
irq_move_masked_irq(data);
|
|
|
- unmask_ioapic(cfg);
|
|
|
+ unmask_ioapic_irq(data);
|
|
|
}
|
|
|
}
|
|
|
#else
|
|
|
-static inline bool ioapic_irqd_mask(struct irq_data *data, struct irq_cfg *cfg)
|
|
|
+static inline bool ioapic_irqd_mask(struct irq_data *data)
|
|
|
{
|
|
|
return false;
|
|
|
}
|
|
|
-static inline void ioapic_irqd_unmask(struct irq_data *data,
|
|
|
- struct irq_cfg *cfg, bool masked)
|
|
|
+static inline void ioapic_irqd_unmask(struct irq_data *data, bool masked)
|
|
|
{
|
|
|
}
|
|
|
#endif
|
|
|
|
|
|
-static void ack_ioapic_level(struct irq_data *data)
|
|
|
+static void ioapic_ack_level(struct irq_data *irq_data)
|
|
|
{
|
|
|
- struct irq_cfg *cfg = irqd_cfg(data);
|
|
|
- int i, irq = data->irq;
|
|
|
+ struct irq_cfg *cfg = irqd_cfg(irq_data);
|
|
|
unsigned long v;
|
|
|
bool masked;
|
|
|
+ int i;
|
|
|
|
|
|
irq_complete_move(cfg);
|
|
|
- masked = ioapic_irqd_mask(data, cfg);
|
|
|
+ masked = ioapic_irqd_mask(irq_data);
|
|
|
|
|
|
/*
|
|
|
* It appears there is an erratum which affects at least version 0x11
|
|
@@ -2004,11 +1822,49 @@ static void ack_ioapic_level(struct irq_data *data)
|
|
|
*/
|
|
|
if (!(v & (1 << (i & 0x1f)))) {
|
|
|
atomic_inc(&irq_mis_count);
|
|
|
+ eoi_ioapic_pin(cfg->vector, irq_data->chip_data);
|
|
|
+ }
|
|
|
+
|
|
|
+ ioapic_irqd_unmask(irq_data, masked);
|
|
|
+}
|
|
|
+
|
|
|
+static void ioapic_ir_ack_level(struct irq_data *irq_data)
|
|
|
+{
|
|
|
+ struct mp_chip_data *data = irq_data->chip_data;
|
|
|
+
|
|
|
+ /*
|
|
|
+ * Intr-remapping uses pin number as the virtual vector
|
|
|
+ * in the RTE. Actual vector is programmed in
|
|
|
+ * intr-remapping table entry. Hence for the io-apic
|
|
|
+ * EOI we use the pin number.
|
|
|
+ */
|
|
|
+ ack_APIC_irq();
|
|
|
+ eoi_ioapic_pin(data->entry.vector, data);
|
|
|
+}
|
|
|
|
|
|
- eoi_ioapic_irq(irq, cfg);
|
|
|
+static int ioapic_set_affinity(struct irq_data *irq_data,
|
|
|
+ const struct cpumask *mask, bool force)
|
|
|
+{
|
|
|
+ struct irq_data *parent = irq_data->parent_data;
|
|
|
+ struct mp_chip_data *data = irq_data->chip_data;
|
|
|
+ struct irq_pin_list *entry;
|
|
|
+ struct irq_cfg *cfg;
|
|
|
+ unsigned long flags;
|
|
|
+ int ret;
|
|
|
+
|
|
|
+ ret = parent->chip->irq_set_affinity(parent, mask, force);
|
|
|
+ raw_spin_lock_irqsave(&ioapic_lock, flags);
|
|
|
+ if (ret >= 0 && ret != IRQ_SET_MASK_OK_DONE) {
|
|
|
+ cfg = irqd_cfg(irq_data);
|
|
|
+ data->entry.dest = cfg->dest_apicid;
|
|
|
+ data->entry.vector = cfg->vector;
|
|
|
+ for_each_irq_pin(entry, data->irq_2_pin)
|
|
|
+ __ioapic_write_entry(entry->apic, entry->pin,
|
|
|
+ data->entry);
|
|
|
}
|
|
|
+ raw_spin_unlock_irqrestore(&ioapic_lock, flags);
|
|
|
|
|
|
- ioapic_irqd_unmask(data, cfg, masked);
|
|
|
+ return ret;
|
|
|
}
|
|
|
|
|
|
static struct irq_chip ioapic_chip __read_mostly = {
|
|
@@ -2016,10 +1872,20 @@ static struct irq_chip ioapic_chip __read_mostly = {
|
|
|
.irq_startup = startup_ioapic_irq,
|
|
|
.irq_mask = mask_ioapic_irq,
|
|
|
.irq_unmask = unmask_ioapic_irq,
|
|
|
- .irq_ack = apic_ack_edge,
|
|
|
- .irq_eoi = ack_ioapic_level,
|
|
|
- .irq_set_affinity = native_ioapic_set_affinity,
|
|
|
- .irq_retrigger = apic_retrigger_irq,
|
|
|
+ .irq_ack = irq_chip_ack_parent,
|
|
|
+ .irq_eoi = ioapic_ack_level,
|
|
|
+ .irq_set_affinity = ioapic_set_affinity,
|
|
|
+ .flags = IRQCHIP_SKIP_SET_WAKE,
|
|
|
+};
|
|
|
+
|
|
|
+static struct irq_chip ioapic_ir_chip __read_mostly = {
|
|
|
+ .name = "IR-IO-APIC",
|
|
|
+ .irq_startup = startup_ioapic_irq,
|
|
|
+ .irq_mask = mask_ioapic_irq,
|
|
|
+ .irq_unmask = unmask_ioapic_irq,
|
|
|
+ .irq_ack = irq_chip_ack_parent,
|
|
|
+ .irq_eoi = ioapic_ir_ack_level,
|
|
|
+ .irq_set_affinity = ioapic_set_affinity,
|
|
|
.flags = IRQCHIP_SKIP_SET_WAKE,
|
|
|
};
|
|
|
|
|
@@ -2113,12 +1979,12 @@ static inline void __init unlock_ExtINT_logic(void)
|
|
|
|
|
|
memset(&entry1, 0, sizeof(entry1));
|
|
|
|
|
|
- entry1.dest_mode = 0; /* physical delivery */
|
|
|
- entry1.mask = 0; /* unmask IRQ now */
|
|
|
+ entry1.dest_mode = IOAPIC_DEST_MODE_PHYSICAL;
|
|
|
+ entry1.mask = IOAPIC_UNMASKED;
|
|
|
entry1.dest = hard_smp_processor_id();
|
|
|
entry1.delivery_mode = dest_ExtINT;
|
|
|
entry1.polarity = entry0.polarity;
|
|
|
- entry1.trigger = 0;
|
|
|
+ entry1.trigger = IOAPIC_EDGE;
|
|
|
entry1.vector = 0;
|
|
|
|
|
|
ioapic_write_entry(apic, pin, entry1);
|
|
@@ -2152,6 +2018,25 @@ static int __init disable_timer_pin_setup(char *arg)
|
|
|
}
|
|
|
early_param("disable_timer_pin_1", disable_timer_pin_setup);
|
|
|
|
|
|
+static int mp_alloc_timer_irq(int ioapic, int pin)
|
|
|
+{
|
|
|
+ int irq = -1;
|
|
|
+ struct irq_domain *domain = mp_ioapic_irqdomain(ioapic);
|
|
|
+
|
|
|
+ if (domain) {
|
|
|
+ struct irq_alloc_info info;
|
|
|
+
|
|
|
+ ioapic_set_alloc_attr(&info, NUMA_NO_NODE, 0, 0);
|
|
|
+ info.ioapic_id = mpc_ioapic_id(ioapic);
|
|
|
+ info.ioapic_pin = pin;
|
|
|
+ mutex_lock(&ioapic_mutex);
|
|
|
+ irq = alloc_isa_irq_from_domain(domain, 0, ioapic, pin, &info);
|
|
|
+ mutex_unlock(&ioapic_mutex);
|
|
|
+ }
|
|
|
+
|
|
|
+ return irq;
|
|
|
+}
|
|
|
+
|
|
|
/*
|
|
|
* This code may look a bit paranoid, but it's supposed to cooperate with
|
|
|
* a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
|
|
@@ -2162,7 +2047,9 @@ early_param("disable_timer_pin_1", disable_timer_pin_setup);
|
|
|
*/
|
|
|
static inline void __init check_timer(void)
|
|
|
{
|
|
|
- struct irq_cfg *cfg = irq_cfg(0);
|
|
|
+ struct irq_data *irq_data = irq_get_irq_data(0);
|
|
|
+ struct mp_chip_data *data = irq_data->chip_data;
|
|
|
+ struct irq_cfg *cfg = irqd_cfg(irq_data);
|
|
|
int node = cpu_to_node(0);
|
|
|
int apic1, pin1, apic2, pin2;
|
|
|
unsigned long flags;
|
|
@@ -2174,7 +2061,6 @@ static inline void __init check_timer(void)
|
|
|
* get/set the timer IRQ vector:
|
|
|
*/
|
|
|
legacy_pic->mask(0);
|
|
|
- assign_irq_vector(0, cfg, apic->target_cpus());
|
|
|
|
|
|
/*
|
|
|
* As IRQ0 is to be enabled in the 8259A, the virtual
|
|
@@ -2215,23 +2101,21 @@ static inline void __init check_timer(void)
|
|
|
}
|
|
|
|
|
|
if (pin1 != -1) {
|
|
|
- /*
|
|
|
- * Ok, does IRQ0 through the IOAPIC work?
|
|
|
- */
|
|
|
+ /* Ok, does IRQ0 through the IOAPIC work? */
|
|
|
if (no_pin1) {
|
|
|
- add_pin_to_irq_node(cfg, node, apic1, pin1);
|
|
|
- setup_timer_IRQ0_pin(apic1, pin1, cfg->vector);
|
|
|
+ mp_alloc_timer_irq(apic1, pin1);
|
|
|
} else {
|
|
|
- /* for edge trigger, setup_ioapic_irq already
|
|
|
- * leave it unmasked.
|
|
|
+ /*
|
|
|
+ * for edge trigger, it's already unmasked,
|
|
|
* so only need to unmask if it is level-trigger
|
|
|
* do we really have level trigger timer?
|
|
|
*/
|
|
|
int idx;
|
|
|
idx = find_irq_entry(apic1, pin1, mp_INT);
|
|
|
if (idx != -1 && irq_trigger(idx))
|
|
|
- unmask_ioapic(cfg);
|
|
|
+ unmask_ioapic_irq(irq_get_chip_data(0));
|
|
|
}
|
|
|
+ irq_domain_activate_irq(irq_data);
|
|
|
if (timer_irq_works()) {
|
|
|
if (disable_timer_pin_1 > 0)
|
|
|
clear_IO_APIC_pin(0, pin1);
|
|
@@ -2251,8 +2135,8 @@ static inline void __init check_timer(void)
|
|
|
/*
|
|
|
* legacy devices should be connected to IO APIC #0
|
|
|
*/
|
|
|
- replace_pin_at_irq_node(cfg, node, apic1, pin1, apic2, pin2);
|
|
|
- setup_timer_IRQ0_pin(apic2, pin2, cfg->vector);
|
|
|
+ replace_pin_at_irq_node(data, node, apic1, pin1, apic2, pin2);
|
|
|
+ irq_domain_activate_irq(irq_data);
|
|
|
legacy_pic->unmask(0);
|
|
|
if (timer_irq_works()) {
|
|
|
apic_printk(APIC_QUIET, KERN_INFO "....... works.\n");
|
|
@@ -2329,36 +2213,35 @@ out:
|
|
|
|
|
|
static int mp_irqdomain_create(int ioapic)
|
|
|
{
|
|
|
- size_t size;
|
|
|
+ struct irq_alloc_info info;
|
|
|
+ struct irq_domain *parent;
|
|
|
int hwirqs = mp_ioapic_pin_count(ioapic);
|
|
|
struct ioapic *ip = &ioapics[ioapic];
|
|
|
struct ioapic_domain_cfg *cfg = &ip->irqdomain_cfg;
|
|
|
struct mp_ioapic_gsi *gsi_cfg = mp_ioapic_gsi_routing(ioapic);
|
|
|
|
|
|
- size = sizeof(struct mp_pin_info) * mp_ioapic_pin_count(ioapic);
|
|
|
- ip->pin_info = kzalloc(size, GFP_KERNEL);
|
|
|
- if (!ip->pin_info)
|
|
|
- return -ENOMEM;
|
|
|
-
|
|
|
if (cfg->type == IOAPIC_DOMAIN_INVALID)
|
|
|
return 0;
|
|
|
|
|
|
+ init_irq_alloc_info(&info, NULL);
|
|
|
+ info.type = X86_IRQ_ALLOC_TYPE_IOAPIC;
|
|
|
+ info.ioapic_id = mpc_ioapic_id(ioapic);
|
|
|
+ parent = irq_remapping_get_ir_irq_domain(&info);
|
|
|
+ if (!parent)
|
|
|
+ parent = x86_vector_domain;
|
|
|
+
|
|
|
ip->irqdomain = irq_domain_add_linear(cfg->dev, hwirqs, cfg->ops,
|
|
|
(void *)(long)ioapic);
|
|
|
- if(!ip->irqdomain) {
|
|
|
- kfree(ip->pin_info);
|
|
|
- ip->pin_info = NULL;
|
|
|
+ if (!ip->irqdomain)
|
|
|
return -ENOMEM;
|
|
|
- }
|
|
|
+
|
|
|
+ ip->irqdomain->parent = parent;
|
|
|
|
|
|
if (cfg->type == IOAPIC_DOMAIN_LEGACY ||
|
|
|
cfg->type == IOAPIC_DOMAIN_STRICT)
|
|
|
ioapic_dynirq_base = max(ioapic_dynirq_base,
|
|
|
gsi_cfg->gsi_end + 1);
|
|
|
|
|
|
- if (gsi_cfg->gsi_base == 0)
|
|
|
- irq_set_default_host(ip->irqdomain);
|
|
|
-
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
@@ -2368,8 +2251,6 @@ static void ioapic_destroy_irqdomain(int idx)
|
|
|
irq_domain_remove(ioapics[idx].irqdomain);
|
|
|
ioapics[idx].irqdomain = NULL;
|
|
|
}
|
|
|
- kfree(ioapics[idx].pin_info);
|
|
|
- ioapics[idx].pin_info = NULL;
|
|
|
}
|
|
|
|
|
|
void __init setup_IO_APIC(void)
|
|
@@ -2399,20 +2280,6 @@ void __init setup_IO_APIC(void)
|
|
|
ioapic_initialized = 1;
|
|
|
}
|
|
|
|
|
|
-/*
|
|
|
- * Called after all the initialization is done. If we didn't find any
|
|
|
- * APIC bugs then we can allow the modify fast path
|
|
|
- */
|
|
|
-
|
|
|
-static int __init io_apic_bug_finalize(void)
|
|
|
-{
|
|
|
- if (sis_apic_bug == -1)
|
|
|
- sis_apic_bug = 0;
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-late_initcall(io_apic_bug_finalize);
|
|
|
-
|
|
|
static void resume_ioapic_id(int ioapic_idx)
|
|
|
{
|
|
|
unsigned long flags;
|
|
@@ -2451,20 +2318,6 @@ static int __init ioapic_init_ops(void)
|
|
|
|
|
|
device_initcall(ioapic_init_ops);
|
|
|
|
|
|
-static int
|
|
|
-io_apic_setup_irq_pin(unsigned int irq, int node, struct io_apic_irq_attr *attr)
|
|
|
-{
|
|
|
- struct irq_cfg *cfg = alloc_irq_and_cfg_at(irq, node);
|
|
|
- int ret;
|
|
|
-
|
|
|
- if (!cfg)
|
|
|
- return -EINVAL;
|
|
|
- ret = __add_pin_to_irq_node(cfg, node, attr->ioapic, attr->ioapic_pin);
|
|
|
- if (!ret)
|
|
|
- setup_ioapic_irq(irq, cfg, attr);
|
|
|
- return ret;
|
|
|
-}
|
|
|
-
|
|
|
static int io_apic_get_redir_entries(int ioapic)
|
|
|
{
|
|
|
union IO_APIC_reg_01 reg_01;
|
|
@@ -2692,7 +2545,7 @@ void __init setup_ioapic_dest(void)
|
|
|
else
|
|
|
mask = apic->target_cpus();
|
|
|
|
|
|
- x86_io_apic_ops.set_affinity(idata, mask, false);
|
|
|
+ irq_set_affinity(irq, mask);
|
|
|
}
|
|
|
|
|
|
}
|
|
@@ -2737,7 +2590,7 @@ static struct resource * __init ioapic_setup_resources(void)
|
|
|
return res;
|
|
|
}
|
|
|
|
|
|
-void __init native_io_apic_init_mappings(void)
|
|
|
+void __init io_apic_init_mappings(void)
|
|
|
{
|
|
|
unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
|
|
|
struct resource *ioapic_res;
|
|
@@ -2962,7 +2815,6 @@ int mp_unregister_ioapic(u32 gsi_base)
|
|
|
{
|
|
|
int ioapic, pin;
|
|
|
int found = 0;
|
|
|
- struct mp_pin_info *pin_info;
|
|
|
|
|
|
for_each_ioapic(ioapic)
|
|
|
if (ioapics[ioapic].gsi_config.gsi_base == gsi_base) {
|
|
@@ -2975,11 +2827,17 @@ int mp_unregister_ioapic(u32 gsi_base)
|
|
|
}
|
|
|
|
|
|
for_each_pin(ioapic, pin) {
|
|
|
- pin_info = mp_pin_info(ioapic, pin);
|
|
|
- if (pin_info->count) {
|
|
|
- pr_warn("pin%d on IOAPIC%d is still in use.\n",
|
|
|
- pin, ioapic);
|
|
|
- return -EBUSY;
|
|
|
+ u32 gsi = mp_pin_to_gsi(ioapic, pin);
|
|
|
+ int irq = mp_map_gsi_to_irq(gsi, 0, NULL);
|
|
|
+ struct mp_chip_data *data;
|
|
|
+
|
|
|
+ if (irq >= 0) {
|
|
|
+ data = irq_get_chip_data(irq);
|
|
|
+ if (data && data->count) {
|
|
|
+ pr_warn("pin%d on IOAPIC%d is still in use.\n",
|
|
|
+ pin, ioapic);
|
|
|
+ return -EBUSY;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -3006,108 +2864,141 @@ int mp_ioapic_registered(u32 gsi_base)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-static inline void set_io_apic_irq_attr(struct io_apic_irq_attr *irq_attr,
|
|
|
- int ioapic, int ioapic_pin,
|
|
|
- int trigger, int polarity)
|
|
|
+static void mp_irqdomain_get_attr(u32 gsi, struct mp_chip_data *data,
|
|
|
+ struct irq_alloc_info *info)
|
|
|
{
|
|
|
- irq_attr->ioapic = ioapic;
|
|
|
- irq_attr->ioapic_pin = ioapic_pin;
|
|
|
- irq_attr->trigger = trigger;
|
|
|
- irq_attr->polarity = polarity;
|
|
|
+ if (info && info->ioapic_valid) {
|
|
|
+ data->trigger = info->ioapic_trigger;
|
|
|
+ data->polarity = info->ioapic_polarity;
|
|
|
+ } else if (acpi_get_override_irq(gsi, &data->trigger,
|
|
|
+ &data->polarity) < 0) {
|
|
|
+ /* PCI interrupts are always active low level triggered. */
|
|
|
+ data->trigger = IOAPIC_LEVEL;
|
|
|
+ data->polarity = IOAPIC_POL_LOW;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
-int mp_irqdomain_map(struct irq_domain *domain, unsigned int virq,
|
|
|
- irq_hw_number_t hwirq)
|
|
|
+static void mp_setup_entry(struct irq_cfg *cfg, struct mp_chip_data *data,
|
|
|
+ struct IO_APIC_route_entry *entry)
|
|
|
{
|
|
|
- int ioapic = (int)(long)domain->host_data;
|
|
|
- struct mp_pin_info *info = mp_pin_info(ioapic, hwirq);
|
|
|
- struct io_apic_irq_attr attr;
|
|
|
+ memset(entry, 0, sizeof(*entry));
|
|
|
+ entry->delivery_mode = apic->irq_delivery_mode;
|
|
|
+ entry->dest_mode = apic->irq_dest_mode;
|
|
|
+ entry->dest = cfg->dest_apicid;
|
|
|
+ entry->vector = cfg->vector;
|
|
|
+ entry->trigger = data->trigger;
|
|
|
+ entry->polarity = data->polarity;
|
|
|
+ /*
|
|
|
+ * Mask level triggered irqs. Edge triggered irqs are masked
|
|
|
+ * by the irq core code in case they fire.
|
|
|
+ */
|
|
|
+ if (data->trigger == IOAPIC_LEVEL)
|
|
|
+ entry->mask = IOAPIC_MASKED;
|
|
|
+ else
|
|
|
+ entry->mask = IOAPIC_UNMASKED;
|
|
|
+}
|
|
|
|
|
|
- /* Get default attribute if not set by caller yet */
|
|
|
- if (!info->set) {
|
|
|
- u32 gsi = mp_pin_to_gsi(ioapic, hwirq);
|
|
|
+int mp_irqdomain_alloc(struct irq_domain *domain, unsigned int virq,
|
|
|
+ unsigned int nr_irqs, void *arg)
|
|
|
+{
|
|
|
+ int ret, ioapic, pin;
|
|
|
+ struct irq_cfg *cfg;
|
|
|
+ struct irq_data *irq_data;
|
|
|
+ struct mp_chip_data *data;
|
|
|
+ struct irq_alloc_info *info = arg;
|
|
|
|
|
|
- if (acpi_get_override_irq(gsi, &info->trigger,
|
|
|
- &info->polarity) < 0) {
|
|
|
- /*
|
|
|
- * PCI interrupts are always polarity one level
|
|
|
- * triggered.
|
|
|
- */
|
|
|
- info->trigger = 1;
|
|
|
- info->polarity = 1;
|
|
|
- }
|
|
|
- info->node = NUMA_NO_NODE;
|
|
|
+ if (!info || nr_irqs > 1)
|
|
|
+ return -EINVAL;
|
|
|
+ irq_data = irq_domain_get_irq_data(domain, virq);
|
|
|
+ if (!irq_data)
|
|
|
+ return -EINVAL;
|
|
|
|
|
|
- /*
|
|
|
- * setup_IO_APIC_irqs() programs all legacy IRQs with default
|
|
|
- * trigger and polarity attributes. Don't set the flag for that
|
|
|
- * case so the first legacy IRQ user could reprogram the pin
|
|
|
- * with real trigger and polarity attributes.
|
|
|
- */
|
|
|
- if (virq >= nr_legacy_irqs() || info->count)
|
|
|
- info->set = 1;
|
|
|
- }
|
|
|
- set_io_apic_irq_attr(&attr, ioapic, hwirq, info->trigger,
|
|
|
- info->polarity);
|
|
|
+ ioapic = mp_irqdomain_ioapic_idx(domain);
|
|
|
+ pin = info->ioapic_pin;
|
|
|
+ if (irq_find_mapping(domain, (irq_hw_number_t)pin) > 0)
|
|
|
+ return -EEXIST;
|
|
|
|
|
|
- return io_apic_setup_irq_pin(virq, info->node, &attr);
|
|
|
-}
|
|
|
+ data = kzalloc(sizeof(*data), GFP_KERNEL);
|
|
|
+ if (!data)
|
|
|
+ return -ENOMEM;
|
|
|
|
|
|
-void mp_irqdomain_unmap(struct irq_domain *domain, unsigned int virq)
|
|
|
-{
|
|
|
- struct irq_data *data = irq_get_irq_data(virq);
|
|
|
- struct irq_cfg *cfg = irq_cfg(virq);
|
|
|
- int ioapic = (int)(long)domain->host_data;
|
|
|
- int pin = (int)data->hwirq;
|
|
|
+ info->ioapic_entry = &data->entry;
|
|
|
+ ret = irq_domain_alloc_irqs_parent(domain, virq, nr_irqs, info);
|
|
|
+ if (ret < 0) {
|
|
|
+ kfree(data);
|
|
|
+ return ret;
|
|
|
+ }
|
|
|
+
|
|
|
+ INIT_LIST_HEAD(&data->irq_2_pin);
|
|
|
+ irq_data->hwirq = info->ioapic_pin;
|
|
|
+ irq_data->chip = (domain->parent == x86_vector_domain) ?
|
|
|
+ &ioapic_chip : &ioapic_ir_chip;
|
|
|
+ irq_data->chip_data = data;
|
|
|
+ mp_irqdomain_get_attr(mp_pin_to_gsi(ioapic, pin), data, info);
|
|
|
+
|
|
|
+ cfg = irqd_cfg(irq_data);
|
|
|
+ add_pin_to_irq_node(data, ioapic_alloc_attr_node(info), ioapic, pin);
|
|
|
+ if (info->ioapic_entry)
|
|
|
+ mp_setup_entry(cfg, data, info->ioapic_entry);
|
|
|
+ mp_register_handler(virq, data->trigger);
|
|
|
+ if (virq < nr_legacy_irqs())
|
|
|
+ legacy_pic->mask(virq);
|
|
|
+
|
|
|
+ apic_printk(APIC_VERBOSE, KERN_DEBUG
|
|
|
+ "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> IRQ %d Mode:%i Active:%i Dest:%d)\n",
|
|
|
+ ioapic, mpc_ioapic_id(ioapic), pin, cfg->vector,
|
|
|
+ virq, data->trigger, data->polarity, cfg->dest_apicid);
|
|
|
|
|
|
- ioapic_mask_entry(ioapic, pin);
|
|
|
- __remove_pin_from_irq(cfg, ioapic, pin);
|
|
|
- WARN_ON(!list_empty(&cfg->irq_2_pin));
|
|
|
- arch_teardown_hwirq(virq);
|
|
|
+ return 0;
|
|
|
}
|
|
|
|
|
|
-int mp_set_gsi_attr(u32 gsi, int trigger, int polarity, int node)
|
|
|
+void mp_irqdomain_free(struct irq_domain *domain, unsigned int virq,
|
|
|
+ unsigned int nr_irqs)
|
|
|
{
|
|
|
- int ret = 0;
|
|
|
- int ioapic, pin;
|
|
|
- struct mp_pin_info *info;
|
|
|
+ struct irq_data *irq_data;
|
|
|
+ struct mp_chip_data *data;
|
|
|
|
|
|
- ioapic = mp_find_ioapic(gsi);
|
|
|
- if (ioapic < 0)
|
|
|
- return -ENODEV;
|
|
|
-
|
|
|
- pin = mp_find_ioapic_pin(ioapic, gsi);
|
|
|
- info = mp_pin_info(ioapic, pin);
|
|
|
- trigger = trigger ? 1 : 0;
|
|
|
- polarity = polarity ? 1 : 0;
|
|
|
-
|
|
|
- mutex_lock(&ioapic_mutex);
|
|
|
- if (!info->set) {
|
|
|
- info->trigger = trigger;
|
|
|
- info->polarity = polarity;
|
|
|
- info->node = node;
|
|
|
- info->set = 1;
|
|
|
- } else if (info->trigger != trigger || info->polarity != polarity) {
|
|
|
- ret = -EBUSY;
|
|
|
+ BUG_ON(nr_irqs != 1);
|
|
|
+ irq_data = irq_domain_get_irq_data(domain, virq);
|
|
|
+ if (irq_data && irq_data->chip_data) {
|
|
|
+ data = irq_data->chip_data;
|
|
|
+ __remove_pin_from_irq(data, mp_irqdomain_ioapic_idx(domain),
|
|
|
+ (int)irq_data->hwirq);
|
|
|
+ WARN_ON(!list_empty(&data->irq_2_pin));
|
|
|
+ kfree(irq_data->chip_data);
|
|
|
}
|
|
|
- mutex_unlock(&ioapic_mutex);
|
|
|
-
|
|
|
- return ret;
|
|
|
+ irq_domain_free_irqs_top(domain, virq, nr_irqs);
|
|
|
}
|
|
|
|
|
|
-/* Enable IOAPIC early just for system timer */
|
|
|
-void __init pre_init_apic_IRQ0(void)
|
|
|
+void mp_irqdomain_activate(struct irq_domain *domain,
|
|
|
+ struct irq_data *irq_data)
|
|
|
{
|
|
|
- struct io_apic_irq_attr attr = { 0, 0, 0, 0 };
|
|
|
+ unsigned long flags;
|
|
|
+ struct irq_pin_list *entry;
|
|
|
+ struct mp_chip_data *data = irq_data->chip_data;
|
|
|
|
|
|
- printk(KERN_INFO "Early APIC setup for system timer0\n");
|
|
|
-#ifndef CONFIG_SMP
|
|
|
- physid_set_mask_of_physid(boot_cpu_physical_apicid,
|
|
|
- &phys_cpu_present_map);
|
|
|
-#endif
|
|
|
- setup_local_APIC();
|
|
|
+ raw_spin_lock_irqsave(&ioapic_lock, flags);
|
|
|
+ for_each_irq_pin(entry, data->irq_2_pin)
|
|
|
+ __ioapic_write_entry(entry->apic, entry->pin, data->entry);
|
|
|
+ raw_spin_unlock_irqrestore(&ioapic_lock, flags);
|
|
|
+}
|
|
|
|
|
|
- io_apic_setup_irq_pin(0, 0, &attr);
|
|
|
- irq_set_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq,
|
|
|
- "edge");
|
|
|
+void mp_irqdomain_deactivate(struct irq_domain *domain,
|
|
|
+ struct irq_data *irq_data)
|
|
|
+{
|
|
|
+ /* It won't be called for IRQ with multiple IOAPIC pins associated */
|
|
|
+ ioapic_mask_entry(mp_irqdomain_ioapic_idx(domain),
|
|
|
+ (int)irq_data->hwirq);
|
|
|
+}
|
|
|
+
|
|
|
+int mp_irqdomain_ioapic_idx(struct irq_domain *domain)
|
|
|
+{
|
|
|
+ return (int)(long)domain->host_data;
|
|
|
}
|
|
|
+
|
|
|
+const struct irq_domain_ops mp_ioapic_irqdomain_ops = {
|
|
|
+ .alloc = mp_irqdomain_alloc,
|
|
|
+ .free = mp_irqdomain_free,
|
|
|
+ .activate = mp_irqdomain_activate,
|
|
|
+ .deactivate = mp_irqdomain_deactivate,
|
|
|
+};
|