diff options
Diffstat (limited to 'arch/x86/kernel/mpparse.c')
-rw-r--r-- | arch/x86/kernel/mpparse.c | 39 |
1 files changed, 9 insertions, 30 deletions
diff --git a/arch/x86/kernel/mpparse.c b/arch/x86/kernel/mpparse.c index 70744e344fa1..3e2c54dc8b29 100644 --- a/arch/x86/kernel/mpparse.c +++ b/arch/x86/kernel/mpparse.c | |||
@@ -686,13 +686,11 @@ void __init get_smp_config(void) | |||
686 | static int __init smp_scan_config(unsigned long base, unsigned long length, | 686 | static int __init smp_scan_config(unsigned long base, unsigned long length, |
687 | unsigned reserve) | 687 | unsigned reserve) |
688 | { | 688 | { |
689 | extern void __bad_mpf_size(void); | ||
690 | unsigned int *bp = phys_to_virt(base); | 689 | unsigned int *bp = phys_to_virt(base); |
691 | struct intel_mp_floating *mpf; | 690 | struct intel_mp_floating *mpf; |
692 | 691 | ||
693 | Dprintk("Scan SMP from %p for %ld bytes.\n", bp, length); | 692 | Dprintk("Scan SMP from %p for %ld bytes.\n", bp, length); |
694 | if (sizeof(*mpf) != 16) | 693 | BUILD_BUG_ON(sizeof(*mpf) != 16); |
695 | __bad_mpf_size(); | ||
696 | 694 | ||
697 | while (length > 0) { | 695 | while (length > 0) { |
698 | mpf = (struct intel_mp_floating *)bp; | 696 | mpf = (struct intel_mp_floating *)bp; |
@@ -801,7 +799,6 @@ void __init find_smp_config(void) | |||
801 | #ifdef CONFIG_X86_IO_APIC | 799 | #ifdef CONFIG_X86_IO_APIC |
802 | 800 | ||
803 | #define MP_ISA_BUS 0 | 801 | #define MP_ISA_BUS 0 |
804 | #define MP_MAX_IOAPIC_PIN 127 | ||
805 | 802 | ||
806 | extern struct mp_ioapic_routing mp_ioapic_routing[MAX_IO_APICS]; | 803 | extern struct mp_ioapic_routing mp_ioapic_routing[MAX_IO_APICS]; |
807 | 804 | ||
@@ -820,7 +817,7 @@ static int mp_find_ioapic(int gsi) | |||
820 | return -1; | 817 | return -1; |
821 | } | 818 | } |
822 | 819 | ||
823 | static u8 uniq_ioapic_id(u8 id) | 820 | static u8 __init uniq_ioapic_id(u8 id) |
824 | { | 821 | { |
825 | #ifdef CONFIG_X86_32 | 822 | #ifdef CONFIG_X86_32 |
826 | if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) && | 823 | if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) && |
@@ -909,14 +906,7 @@ void __init mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi) | |||
909 | intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid; /* APIC ID */ | 906 | intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid; /* APIC ID */ |
910 | intsrc.mpc_dstirq = pin; /* INTIN# */ | 907 | intsrc.mpc_dstirq = pin; /* INTIN# */ |
911 | 908 | ||
912 | Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, %d-%d\n", | 909 | MP_intsrc_info(&intsrc); |
913 | intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3, | ||
914 | (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus, | ||
915 | intsrc.mpc_srcbusirq, intsrc.mpc_dstapic, intsrc.mpc_dstirq); | ||
916 | |||
917 | mp_irqs[mp_irq_entries] = intsrc; | ||
918 | if (++mp_irq_entries == MAX_IRQ_SOURCES) | ||
919 | panic("Max # of irq sources exceeded!\n"); | ||
920 | } | 910 | } |
921 | 911 | ||
922 | int es7000_plat; | 912 | int es7000_plat; |
@@ -985,23 +975,14 @@ void __init mp_config_acpi_legacy_irqs(void) | |||
985 | intsrc.mpc_srcbusirq = i; /* Identity mapped */ | 975 | intsrc.mpc_srcbusirq = i; /* Identity mapped */ |
986 | intsrc.mpc_dstirq = i; | 976 | intsrc.mpc_dstirq = i; |
987 | 977 | ||
988 | Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, " | 978 | MP_intsrc_info(&intsrc); |
989 | "%d-%d\n", intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3, | ||
990 | (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus, | ||
991 | intsrc.mpc_srcbusirq, intsrc.mpc_dstapic, | ||
992 | intsrc.mpc_dstirq); | ||
993 | |||
994 | mp_irqs[mp_irq_entries] = intsrc; | ||
995 | if (++mp_irq_entries == MAX_IRQ_SOURCES) | ||
996 | panic("Max # of irq sources exceeded!\n"); | ||
997 | } | 979 | } |
998 | } | 980 | } |
999 | 981 | ||
1000 | int mp_register_gsi(u32 gsi, int triggering, int polarity) | 982 | int mp_register_gsi(u32 gsi, int triggering, int polarity) |
1001 | { | 983 | { |
1002 | int ioapic = -1; | 984 | int ioapic; |
1003 | int ioapic_pin = 0; | 985 | int ioapic_pin; |
1004 | int idx, bit = 0; | ||
1005 | #ifdef CONFIG_X86_32 | 986 | #ifdef CONFIG_X86_32 |
1006 | #define MAX_GSI_NUM 4096 | 987 | #define MAX_GSI_NUM 4096 |
1007 | #define IRQ_COMPRESSION_START 64 | 988 | #define IRQ_COMPRESSION_START 64 |
@@ -1041,15 +1022,13 @@ int mp_register_gsi(u32 gsi, int triggering, int polarity) | |||
1041 | * with redundant pin->gsi mappings (but unique PCI devices); | 1022 | * with redundant pin->gsi mappings (but unique PCI devices); |
1042 | * we only program the IOAPIC on the first. | 1023 | * we only program the IOAPIC on the first. |
1043 | */ | 1024 | */ |
1044 | bit = ioapic_pin % 32; | 1025 | if (ioapic_pin > MP_MAX_IOAPIC_PIN) { |
1045 | idx = (ioapic_pin < 32) ? 0 : (ioapic_pin / 32); | ||
1046 | if (idx > 3) { | ||
1047 | printk(KERN_ERR "Invalid reference to IOAPIC pin " | 1026 | printk(KERN_ERR "Invalid reference to IOAPIC pin " |
1048 | "%d-%d\n", mp_ioapic_routing[ioapic].apic_id, | 1027 | "%d-%d\n", mp_ioapic_routing[ioapic].apic_id, |
1049 | ioapic_pin); | 1028 | ioapic_pin); |
1050 | return gsi; | 1029 | return gsi; |
1051 | } | 1030 | } |
1052 | if ((1 << bit) & mp_ioapic_routing[ioapic].pin_programmed[idx]) { | 1031 | if (test_bit(ioapic_pin, mp_ioapic_routing[ioapic].pin_programmed)) { |
1053 | Dprintk(KERN_DEBUG "Pin %d-%d already programmed\n", | 1032 | Dprintk(KERN_DEBUG "Pin %d-%d already programmed\n", |
1054 | mp_ioapic_routing[ioapic].apic_id, ioapic_pin); | 1033 | mp_ioapic_routing[ioapic].apic_id, ioapic_pin); |
1055 | #ifdef CONFIG_X86_32 | 1034 | #ifdef CONFIG_X86_32 |
@@ -1059,7 +1038,7 @@ int mp_register_gsi(u32 gsi, int triggering, int polarity) | |||
1059 | #endif | 1038 | #endif |
1060 | } | 1039 | } |
1061 | 1040 | ||
1062 | mp_ioapic_routing[ioapic].pin_programmed[idx] |= (1 << bit); | 1041 | set_bit(ioapic_pin, mp_ioapic_routing[ioapic].pin_programmed); |
1063 | #ifdef CONFIG_X86_32 | 1042 | #ifdef CONFIG_X86_32 |
1064 | /* | 1043 | /* |
1065 | * For GSI >= 64, use IRQ compression | 1044 | * For GSI >= 64, use IRQ compression |