Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 88865
b: refs/heads/master
c: 555b076
h: refs/heads/master
i:
  88863: 1b82037
v: v3
  • Loading branch information
Alexey Starikovskiy authored and Ingo Molnar committed Apr 17, 2008
1 parent 82fcde5 commit c0eb35f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 85e46035bec6f114ad07ce8a9c70388568b1afd4
refs/heads/master: 555b07646d5bd0bcd4825e83580d5f6bb34259ea
12 changes: 6 additions & 6 deletions trunk/arch/x86/kernel/mpparse_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -699,7 +699,7 @@ void __cpuinit mp_register_lapic(u8 id, u8 enabled)

static struct mp_ioapic_routing {
int apic_id;
int gsi_start;
int gsi_base;
int gsi_end;
u32 pin_programmed[4];
} mp_ioapic_routing[MAX_IO_APICS];
Expand All @@ -710,7 +710,7 @@ static int mp_find_ioapic(int gsi)

/* Find the IOAPIC that manages this GSI. */
for (i = 0; i < nr_ioapics; i++) {
if ((gsi >= mp_ioapic_routing[i].gsi_start)
if ((gsi >= mp_ioapic_routing[i].gsi_base)
&& (gsi <= mp_ioapic_routing[i].gsi_end))
return i;
}
Expand Down Expand Up @@ -755,14 +755,14 @@ void __init mp_register_ioapic(u8 id, u32 address, u32 gsi_base)
* and to prevent reprogramming of IOAPIC pins (PCI IRQs).
*/
mp_ioapic_routing[idx].apic_id = mp_ioapics[idx].mpc_apicid;
mp_ioapic_routing[idx].gsi_start = gsi_base;
mp_ioapic_routing[idx].gsi_base = gsi_base;
mp_ioapic_routing[idx].gsi_end = gsi_base +
io_apic_get_redir_entries(idx);

printk(KERN_INFO "IOAPIC[%d]: apic_id %d, address 0x%x, "
"GSI %d-%d\n", idx, mp_ioapics[idx].mpc_apicid,
mp_ioapics[idx].mpc_apicaddr,
mp_ioapic_routing[idx].gsi_start,
mp_ioapic_routing[idx].gsi_base,
mp_ioapic_routing[idx].gsi_end);

nr_ioapics++;
Expand All @@ -780,7 +780,7 @@ void __init mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi)
ioapic = mp_find_ioapic(gsi);
if (ioapic < 0)
return;
pin = gsi - mp_ioapic_routing[ioapic].gsi_start;
pin = gsi - mp_ioapic_routing[ioapic].gsi_base;

/*
* TBD: This check is for faulty timer entries, where the override
Expand Down Expand Up @@ -892,7 +892,7 @@ int mp_register_gsi(u32 gsi, int triggering, int polarity)
return gsi;
}

ioapic_pin = gsi - mp_ioapic_routing[ioapic].gsi_start;
ioapic_pin = gsi - mp_ioapic_routing[ioapic].gsi_base;

/*
* Avoid pin reprogramming. PRTs typically include entries
Expand Down

0 comments on commit c0eb35f

Please sign in to comment.