lkml.org 
[lkml]   [2005]   [Jul]   [29]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Subject[PATCH] i386 io_apic.c: Memorize at bootup where the i8259 is connected
From
Date

Currently we attempt to restore virtual wire mode on reboot, which
only works if we can figure out where the i8259 is connected. This
is very useful when we kexec another kernel and likely helpful
when dealing with a BIOS that make assumptions about how the system is setup.

Since the acpi MADT table does not provide the location where the i8259
is connected we have to look at the hardware to figure it out.

Most systems have the i8259 connected the local apic of the cpu so
won't be affected but people running Opteron and some serverworks chipsets
should be able to use kexec now.

Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
---

arch/i386/kernel/io_apic.c | 52 ++++++++++++++++++++++++++++++++++++++++----
1 files changed, 47 insertions(+), 5 deletions(-)

17388b65d11d4e9db0a1f716895f15a5fa0ec2b0
diff --git a/arch/i386/kernel/io_apic.c b/arch/i386/kernel/io_apic.c
--- a/arch/i386/kernel/io_apic.c
+++ b/arch/i386/kernel/io_apic.c
@@ -46,6 +46,9 @@
int (*ioapic_renumber_irq)(int ioapic, int irq);
atomic_t irq_mis_count;

+/* Where if anywhere is the i8259 connect in external int mode */
+static int ioapic_i8259_pin = -1;
+
static DEFINE_SPINLOCK(ioapic_lock);

/*
@@ -748,7 +751,7 @@ static int find_irq_entry(int apic, int
/*
* Find the pin to which IRQ[irq] (ISA) is connected
*/
-static int find_isa_irq_pin(int irq, int type)
+static int __init find_isa_irq_pin(int irq, int type)
{
int i;

@@ -1599,6 +1602,44 @@ void /*__init*/ print_PIC(void)

#endif /* 0 */

+static void __init find_i8259_pin(void)
+{
+ struct IO_APIC_route_entry entry;
+ unsigned long flags;
+ int pin, pins;
+
+ ioapic_i8259_pin = -1;
+
+ /* Find the number of pins on the primary ioapic */
+ spin_lock_irqsave(&ioapic_lock, flags);
+ pins = ((io_apic_read(0, 0x01) >> 16) & 0xff) + 1;
+ spin_unlock_irqrestore(&ioapic_lock, flags);
+
+ /* See if any of the pins is in ExtINT mode */
+ for(pin = 0; pin < pins; pin++) {
+ spin_lock_irqsave(&ioapic_lock, flags);
+ *(((int *)&entry) + 0) = io_apic_read(0, 0x10 + 2 * pin);
+ *(((int *)&entry) + 1) = io_apic_read(0, 0x11 + 2 * pin);
+ spin_unlock_irqrestore(&ioapic_lock, flags);
+
+ /* If the interrupt line is enabled and in ExtInt mode
+ * I have found the pin where the i8259 is connected.
+ */
+ if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
+ ioapic_i8259_pin = pin;
+ break;
+ }
+ }
+
+ /* If we could not find an appropriate pin by looking at the ioapic
+ * the i8259 probably isn't connected to the ioapic but give
+ * the mptable a chance anyway.
+ */
+ if (ioapic_i8259_pin == -1) {
+ ioapic_i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
+ }
+}
+
static void __init enable_IO_APIC(void)
{
union IO_APIC_reg_01 reg_01;
@@ -1641,11 +1682,11 @@ void disable_IO_APIC(void)
clear_IO_APIC();

/*
- * If the i82559 is routed through an IOAPIC
+ * If the i8259 is routed through an IOAPIC
* Put that IOAPIC in virtual wire mode
* so legacy interrups can be delivered.
*/
- pin = find_isa_irq_pin(0, mp_ExtINT);
+ pin = ioapic_i8259_pin;
if (pin != -1) {
struct IO_APIC_route_entry entry;
unsigned long flags;
@@ -1657,7 +1698,7 @@ void disable_IO_APIC(void)
entry.polarity = 0; /* High */
entry.delivery_status = 0;
entry.dest_mode = 0; /* Physical */
- entry.delivery_mode = 7; /* ExtInt */
+ entry.delivery_mode = dest_ExtINT; /* ExtInt */
entry.vector = 0;
entry.dest.physical.physical_dest = 0;

@@ -2195,7 +2236,7 @@ static inline void check_timer(void)
enable_8259A_irq(0);

pin1 = find_isa_irq_pin(0, mp_INT);
- pin2 = find_isa_irq_pin(0, mp_ExtINT);
+ pin2 = ioapic_i8259_pin;

printk(KERN_INFO "..TIMER: vector=0x%02X pin1=%d pin2=%d\n", vector, pin1, pin2);

@@ -2289,6 +2330,7 @@ static inline void check_timer(void)

void __init setup_IO_APIC(void)
{
+ find_i8259_pin();
enable_IO_APIC();

if (acpi_ioapic)
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
\
 
 \ /
  Last update: 2005-07-29 21:41    [W:0.039 / U:0.660 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site