Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Intel Multiprocessor Specification 1.1 and 1.4 |
| 3 | * compliant MP-table parsing routines. |
| 4 | * |
| 5 | * (c) 1995 Alan Cox, Building #3 <alan@redhat.com> |
| 6 | * (c) 1998, 1999, 2000 Ingo Molnar <mingo@redhat.com> |
| 7 | * |
| 8 | * Fixes |
| 9 | * Erich Boleyn : MP v1.4 and additional changes. |
| 10 | * Alan Cox : Added EBDA scanning |
| 11 | * Ingo Molnar : various cleanups and rewrites |
| 12 | * Maciej W. Rozycki: Bits for default MP configurations |
| 13 | * Paul Diefenbaugh: Added full ACPI support |
| 14 | */ |
| 15 | |
| 16 | #include <linux/mm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/init.h> |
| 18 | #include <linux/delay.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/bootmem.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/kernel_stat.h> |
| 21 | #include <linux/mc146818rtc.h> |
| 22 | #include <linux/acpi.h> |
Christoph Lameter | 8c5a090 | 2005-06-23 00:08:18 -0700 | [diff] [blame] | 23 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
| 25 | #include <asm/smp.h> |
| 26 | #include <asm/mtrr.h> |
| 27 | #include <asm/mpspec.h> |
| 28 | #include <asm/pgalloc.h> |
| 29 | #include <asm/io_apic.h> |
| 30 | #include <asm/proto.h> |
Andi Kleen | 8d91640 | 2005-05-31 14:39:26 -0700 | [diff] [blame] | 31 | #include <asm/acpi.h> |
Alexey Starikovskiy | ce3fe6b | 2008-03-17 22:08:17 +0300 | [diff] [blame] | 32 | #include <asm/bios_ebda.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | |
Glauber de Oliveira Costa | f6bc402 | 2008-03-19 14:25:53 -0300 | [diff] [blame] | 34 | #include <mach_apic.h> |
| 35 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | /* Have we found an MP table */ |
| 37 | int smp_found_config; |
Glauber Costa | 89b0820 | 2008-03-03 14:13:08 -0300 | [diff] [blame] | 38 | unsigned int __cpuinitdata maxcpus = NR_CPUS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | /* |
| 41 | * Various Linux-internal data structures created from the |
| 42 | * MP-table. |
| 43 | */ |
Andi Kleen | 55f05ff | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 44 | DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES); |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 45 | int mp_bus_id_to_pci_bus[MAX_MP_BUSSES] = {[0 ... MAX_MP_BUSSES - 1] = -1 }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
| 47 | static int mp_current_pci_id = 0; |
| 48 | /* I/O APIC entries */ |
| 49 | struct mpc_config_ioapic mp_ioapics[MAX_IO_APICS]; |
| 50 | |
| 51 | /* # of MP IRQ source entries */ |
| 52 | struct mpc_config_intsrc mp_irqs[MAX_IRQ_SOURCES]; |
| 53 | |
| 54 | /* MP IRQ source entries */ |
| 55 | int mp_irq_entries; |
| 56 | |
| 57 | int nr_ioapics; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | unsigned long mp_lapic_addr = 0; |
| 59 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | /* Processor that is doing the boot up */ |
Glauber de Oliveira Costa | c70dcb7 | 2008-03-19 14:25:58 -0300 | [diff] [blame] | 61 | unsigned int boot_cpu_physical_apicid = -1U; |
| 62 | EXPORT_SYMBOL(boot_cpu_physical_apicid); |
Mike Travis | 71b3123 | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 63 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | /* Internal processor count */ |
Sam Ravnborg | 87d7e98 | 2008-01-30 13:33:37 +0100 | [diff] [blame] | 65 | unsigned int num_processors; |
Andi Kleen | 420f8f6 | 2005-11-05 17:25:54 +0100 | [diff] [blame] | 66 | |
Sam Ravnborg | 43999d9 | 2007-03-16 21:07:36 +0100 | [diff] [blame] | 67 | unsigned disabled_cpus __cpuinitdata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | |
| 69 | /* Bitmask of physically existing CPUs */ |
| 70 | physid_mask_t phys_cpu_present_map = PHYSID_MASK_NONE; |
| 71 | |
travis@sgi.com | e8c10ef | 2008-01-30 13:33:12 +0100 | [diff] [blame] | 72 | u16 x86_bios_cpu_apicid_init[NR_CPUS] __initdata |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 73 | = {[0 ... NR_CPUS - 1] = BAD_APICID }; |
travis@sgi.com | e8c10ef | 2008-01-30 13:33:12 +0100 | [diff] [blame] | 74 | void *x86_bios_cpu_apicid_early_ptr; |
| 75 | DEFINE_PER_CPU(u16, x86_bios_cpu_apicid) = BAD_APICID; |
| 76 | EXPORT_PER_CPU_SYMBOL(x86_bios_cpu_apicid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | /* |
| 79 | * Intel MP BIOS table parsing routines: |
| 80 | */ |
| 81 | |
| 82 | /* |
| 83 | * Checksum an MP configuration block. |
| 84 | */ |
| 85 | |
| 86 | static int __init mpf_checksum(unsigned char *mp, int len) |
| 87 | { |
| 88 | int sum = 0; |
| 89 | |
| 90 | while (len--) |
| 91 | sum += *mp++; |
| 92 | |
| 93 | return sum & 0xFF; |
| 94 | } |
| 95 | |
Mike Travis | 71fff5e | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 96 | static void __cpuinit MP_processor_info(struct mpc_config_processor *m) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | { |
Andi Kleen | 8893166 | 2005-11-05 17:25:54 +0100 | [diff] [blame] | 98 | int cpu; |
Ashok Raj | 51f62e1 | 2006-03-25 16:29:28 +0100 | [diff] [blame] | 99 | cpumask_t tmp_map; |
Andi Kleen | f2c2cca | 2006-09-26 10:52:37 +0200 | [diff] [blame] | 100 | char *bootup_cpu = ""; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | |
Andi Kleen | 420f8f6 | 2005-11-05 17:25:54 +0100 | [diff] [blame] | 102 | if (!(m->mpc_cpuflag & CPU_ENABLED)) { |
| 103 | disabled_cpus++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | return; |
Andi Kleen | 420f8f6 | 2005-11-05 17:25:54 +0100 | [diff] [blame] | 105 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) { |
Andi Kleen | f2c2cca | 2006-09-26 10:52:37 +0200 | [diff] [blame] | 107 | bootup_cpu = " (Bootup-CPU)"; |
Glauber de Oliveira Costa | c70dcb7 | 2008-03-19 14:25:58 -0300 | [diff] [blame] | 108 | boot_cpu_physical_apicid = m->mpc_apicid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | } |
Andi Kleen | f2c2cca | 2006-09-26 10:52:37 +0200 | [diff] [blame] | 110 | |
| 111 | printk(KERN_INFO "Processor #%d%s\n", m->mpc_apicid, bootup_cpu); |
| 112 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | if (num_processors >= NR_CPUS) { |
| 114 | printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached." |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 115 | " Processor ignored.\n", NR_CPUS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | return; |
| 117 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
Glauber Costa | 89b0820 | 2008-03-03 14:13:08 -0300 | [diff] [blame] | 119 | if (num_processors >= maxcpus) { |
| 120 | printk(KERN_WARNING "WARNING: maxcpus limit of %i reached." |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 121 | " Processor ignored.\n", maxcpus); |
Glauber Costa | 89b0820 | 2008-03-03 14:13:08 -0300 | [diff] [blame] | 122 | return; |
| 123 | } |
| 124 | |
Ashok Raj | 51f62e1 | 2006-03-25 16:29:28 +0100 | [diff] [blame] | 125 | num_processors++; |
| 126 | cpus_complement(tmp_map, cpu_present_map); |
| 127 | cpu = first_cpu(tmp_map); |
| 128 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | physid_set(m->mpc_apicid, phys_cpu_present_map); |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 130 | if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) { |
| 131 | /* |
Mike Travis | 693e3c5 | 2008-01-30 13:33:14 +0100 | [diff] [blame] | 132 | * x86_bios_cpu_apicid is required to have processors listed |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 133 | * in same order as logical cpu numbers. Hence the first |
| 134 | * entry is BSP, and so on. |
| 135 | */ |
Andi Kleen | 61b1b2d | 2005-07-28 21:15:27 -0700 | [diff] [blame] | 136 | cpu = 0; |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 137 | } |
travis@sgi.com | 3b41908 | 2008-01-30 13:33:11 +0100 | [diff] [blame] | 138 | /* are we being called early in kernel startup? */ |
| 139 | if (x86_cpu_to_apicid_early_ptr) { |
Mike Travis | 693e3c5 | 2008-01-30 13:33:14 +0100 | [diff] [blame] | 140 | u16 *cpu_to_apicid = x86_cpu_to_apicid_early_ptr; |
| 141 | u16 *bios_cpu_apicid = x86_bios_cpu_apicid_early_ptr; |
travis@sgi.com | e8c10ef | 2008-01-30 13:33:12 +0100 | [diff] [blame] | 142 | |
| 143 | cpu_to_apicid[cpu] = m->mpc_apicid; |
| 144 | bios_cpu_apicid[cpu] = m->mpc_apicid; |
Mike Travis | 71fff5e | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 145 | } else { |
| 146 | per_cpu(x86_cpu_to_apicid, cpu) = m->mpc_apicid; |
travis@sgi.com | e8c10ef | 2008-01-30 13:33:12 +0100 | [diff] [blame] | 147 | per_cpu(x86_bios_cpu_apicid, cpu) = m->mpc_apicid; |
Mike Travis | 71fff5e | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 148 | } |
Andi Kleen | 61b1b2d | 2005-07-28 21:15:27 -0700 | [diff] [blame] | 149 | |
| 150 | cpu_set(cpu, cpu_possible_map); |
| 151 | cpu_set(cpu, cpu_present_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | } |
| 153 | |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 154 | static void __init MP_bus_info(struct mpc_config_bus *m) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | { |
| 156 | char str[7]; |
| 157 | |
| 158 | memcpy(str, m->mpc_bustype, 6); |
| 159 | str[6] = 0; |
| 160 | Dprintk("Bus #%d is %s\n", m->mpc_busid, str); |
| 161 | |
| 162 | if (strncmp(str, "ISA", 3) == 0) { |
Andi Kleen | 55f05ff | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 163 | set_bit(m->mpc_busid, mp_bus_not_pci); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | } else if (strncmp(str, "PCI", 3) == 0) { |
Andi Kleen | 55f05ff | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 165 | clear_bit(m->mpc_busid, mp_bus_not_pci); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | mp_bus_id_to_pci_bus[m->mpc_busid] = mp_current_pci_id; |
| 167 | mp_current_pci_id++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | } else { |
| 169 | printk(KERN_ERR "Unknown bustype %s\n", str); |
| 170 | } |
| 171 | } |
| 172 | |
Andi Kleen | 013bf2c | 2006-09-30 01:47:55 +0200 | [diff] [blame] | 173 | static int bad_ioapic(unsigned long address) |
| 174 | { |
| 175 | if (nr_ioapics >= MAX_IO_APICS) { |
| 176 | printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded " |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 177 | "(found %d)\n", MAX_IO_APICS, nr_ioapics); |
Andi Kleen | 013bf2c | 2006-09-30 01:47:55 +0200 | [diff] [blame] | 178 | panic("Recompile kernel with bigger MAX_IO_APICS!\n"); |
| 179 | } |
| 180 | if (!address) { |
| 181 | printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address" |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 182 | " found in table, skipping!\n"); |
Andi Kleen | 013bf2c | 2006-09-30 01:47:55 +0200 | [diff] [blame] | 183 | return 1; |
| 184 | } |
| 185 | return 0; |
| 186 | } |
| 187 | |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 188 | static void __init MP_ioapic_info(struct mpc_config_ioapic *m) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | { |
| 190 | if (!(m->mpc_flags & MPC_APIC_USABLE)) |
| 191 | return; |
| 192 | |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 193 | printk(KERN_INFO "I/O APIC #%d at 0x%X.\n", m->mpc_apicid, |
| 194 | m->mpc_apicaddr); |
Andi Kleen | 013bf2c | 2006-09-30 01:47:55 +0200 | [diff] [blame] | 195 | |
| 196 | if (bad_ioapic(m->mpc_apicaddr)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | return; |
Andi Kleen | 013bf2c | 2006-09-30 01:47:55 +0200 | [diff] [blame] | 198 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | mp_ioapics[nr_ioapics] = *m; |
| 200 | nr_ioapics++; |
| 201 | } |
| 202 | |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 203 | static void __init MP_intsrc_info(struct mpc_config_intsrc *m) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | { |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 205 | mp_irqs[mp_irq_entries] = *m; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | Dprintk("Int: type %d, pol %d, trig %d, bus %d," |
| 207 | " IRQ %02x, APIC ID %x, APIC INT %02x\n", |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 208 | m->mpc_irqtype, m->mpc_irqflag & 3, |
| 209 | (m->mpc_irqflag >> 2) & 3, m->mpc_srcbus, |
| 210 | m->mpc_srcbusirq, m->mpc_dstapic, m->mpc_dstirq); |
James Cleverdon | 6004e1b | 2005-11-05 17:25:53 +0100 | [diff] [blame] | 211 | if (++mp_irq_entries >= MAX_IRQ_SOURCES) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | panic("Max # of irq sources exceeded!!\n"); |
| 213 | } |
| 214 | |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 215 | static void __init MP_lintsrc_info(struct mpc_config_lintsrc *m) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | { |
| 217 | Dprintk("Lint: type %d, pol %d, trig %d, bus %d," |
| 218 | " IRQ %02x, APIC ID %x, APIC LINT %02x\n", |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 219 | m->mpc_irqtype, m->mpc_irqflag & 3, |
| 220 | (m->mpc_irqflag >> 2) & 3, m->mpc_srcbusid, |
| 221 | m->mpc_srcbusirq, m->mpc_destapic, m->mpc_destapiclint); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | } |
| 223 | |
| 224 | /* |
| 225 | * Read/parse the MPC |
| 226 | */ |
Yinghai Lu | 8643f9d | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 227 | static int __init smp_read_mpc(struct mp_config_table *mpc, unsigned early) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | { |
| 229 | char str[16]; |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 230 | int count = sizeof(*mpc); |
| 231 | unsigned char *mpt = ((unsigned char *)mpc) + count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 233 | if (memcmp(mpc->mpc_signature, MPC_SIGNATURE, 4)) { |
| 234 | printk(KERN_ERR "MPTABLE: bad signature [%c%c%c%c]!\n", |
| 235 | mpc->mpc_signature[0], |
| 236 | mpc->mpc_signature[1], |
| 237 | mpc->mpc_signature[2], mpc->mpc_signature[3]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | return 0; |
| 239 | } |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 240 | if (mpf_checksum((unsigned char *)mpc, mpc->mpc_length)) { |
| 241 | printk(KERN_ERR "MPTABLE: checksum error!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | return 0; |
| 243 | } |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 244 | if (mpc->mpc_spec != 0x01 && mpc->mpc_spec != 0x04) { |
Andi Kleen | aecc636 | 2006-09-26 10:52:37 +0200 | [diff] [blame] | 245 | printk(KERN_ERR "MPTABLE: bad table version (%d)!!\n", |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 246 | mpc->mpc_spec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | return 0; |
| 248 | } |
| 249 | if (!mpc->mpc_lapic) { |
Andi Kleen | aecc636 | 2006-09-26 10:52:37 +0200 | [diff] [blame] | 250 | printk(KERN_ERR "MPTABLE: null local APIC address!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | return 0; |
| 252 | } |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 253 | memcpy(str, mpc->mpc_oem, 8); |
Andi Kleen | aecc636 | 2006-09-26 10:52:37 +0200 | [diff] [blame] | 254 | str[8] = 0; |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 255 | printk(KERN_INFO "MPTABLE: OEM ID: %s ", str); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 257 | memcpy(str, mpc->mpc_productid, 12); |
Andi Kleen | aecc636 | 2006-09-26 10:52:37 +0200 | [diff] [blame] | 258 | str[12] = 0; |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 259 | printk(KERN_INFO "MPTABLE: Product ID: %s ", str); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 261 | printk(KERN_INFO "MPTABLE: APIC at: 0x%X\n", mpc->mpc_lapic); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | |
| 263 | /* save the local APIC address, it might be non-default */ |
| 264 | if (!acpi_lapic) |
Andi Kleen | aecc636 | 2006-09-26 10:52:37 +0200 | [diff] [blame] | 265 | mp_lapic_addr = mpc->mpc_lapic; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | |
Yinghai Lu | 8643f9d | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 267 | if (early) |
| 268 | return 1; |
| 269 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | /* |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 271 | * Now process the configuration blocks. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | */ |
| 273 | while (count < mpc->mpc_length) { |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 274 | switch (*mpt) { |
| 275 | case MP_PROCESSOR: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | { |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 277 | struct mpc_config_processor *m = |
| 278 | (struct mpc_config_processor *)mpt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | if (!acpi_lapic) |
Andi Kleen | aecc636 | 2006-09-26 10:52:37 +0200 | [diff] [blame] | 280 | MP_processor_info(m); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | mpt += sizeof(*m); |
| 282 | count += sizeof(*m); |
| 283 | break; |
| 284 | } |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 285 | case MP_BUS: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | { |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 287 | struct mpc_config_bus *m = |
| 288 | (struct mpc_config_bus *)mpt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | MP_bus_info(m); |
| 290 | mpt += sizeof(*m); |
| 291 | count += sizeof(*m); |
| 292 | break; |
| 293 | } |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 294 | case MP_IOAPIC: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | { |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 296 | struct mpc_config_ioapic *m = |
| 297 | (struct mpc_config_ioapic *)mpt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | MP_ioapic_info(m); |
Andi Kleen | aecc636 | 2006-09-26 10:52:37 +0200 | [diff] [blame] | 299 | mpt += sizeof(*m); |
| 300 | count += sizeof(*m); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | break; |
| 302 | } |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 303 | case MP_INTSRC: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | { |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 305 | struct mpc_config_intsrc *m = |
| 306 | (struct mpc_config_intsrc *)mpt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | |
| 308 | MP_intsrc_info(m); |
Andi Kleen | aecc636 | 2006-09-26 10:52:37 +0200 | [diff] [blame] | 309 | mpt += sizeof(*m); |
| 310 | count += sizeof(*m); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | break; |
| 312 | } |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 313 | case MP_LINTSRC: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | { |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 315 | struct mpc_config_lintsrc *m = |
| 316 | (struct mpc_config_lintsrc *)mpt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | MP_lintsrc_info(m); |
Andi Kleen | aecc636 | 2006-09-26 10:52:37 +0200 | [diff] [blame] | 318 | mpt += sizeof(*m); |
| 319 | count += sizeof(*m); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | break; |
| 321 | } |
| 322 | } |
| 323 | } |
Ingo Molnar | 3c43f03 | 2007-05-02 19:27:04 +0200 | [diff] [blame] | 324 | setup_apic_routing(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | if (!num_processors) |
Andi Kleen | aecc636 | 2006-09-26 10:52:37 +0200 | [diff] [blame] | 326 | printk(KERN_ERR "MPTABLE: no processors registered!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | return num_processors; |
| 328 | } |
| 329 | |
| 330 | static int __init ELCR_trigger(unsigned int irq) |
| 331 | { |
| 332 | unsigned int port; |
| 333 | |
| 334 | port = 0x4d0 + (irq >> 3); |
| 335 | return (inb(port) >> (irq & 7)) & 1; |
| 336 | } |
| 337 | |
| 338 | static void __init construct_default_ioirq_mptable(int mpc_default_type) |
| 339 | { |
| 340 | struct mpc_config_intsrc intsrc; |
| 341 | int i; |
| 342 | int ELCR_fallback = 0; |
| 343 | |
| 344 | intsrc.mpc_type = MP_INTSRC; |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 345 | intsrc.mpc_irqflag = 0; /* conforming */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | intsrc.mpc_srcbus = 0; |
| 347 | intsrc.mpc_dstapic = mp_ioapics[0].mpc_apicid; |
| 348 | |
| 349 | intsrc.mpc_irqtype = mp_INT; |
| 350 | |
| 351 | /* |
| 352 | * If true, we have an ISA/PCI system with no IRQ entries |
| 353 | * in the MP table. To prevent the PCI interrupts from being set up |
| 354 | * incorrectly, we try to use the ELCR. The sanity check to see if |
| 355 | * there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can |
| 356 | * never be level sensitive, so we simply see if the ELCR agrees. |
| 357 | * If it does, we assume it's valid. |
| 358 | */ |
| 359 | if (mpc_default_type == 5) { |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 360 | printk(KERN_INFO "ISA/PCI bus type with no IRQ information... " |
| 361 | "falling back to ELCR\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 363 | if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2) || |
| 364 | ELCR_trigger(13)) |
| 365 | printk(KERN_ERR "ELCR contains invalid data... " |
| 366 | "not using ELCR\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | else { |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 368 | printk(KERN_INFO |
| 369 | "Using ELCR to identify PCI interrupts\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | ELCR_fallback = 1; |
| 371 | } |
| 372 | } |
| 373 | |
| 374 | for (i = 0; i < 16; i++) { |
| 375 | switch (mpc_default_type) { |
| 376 | case 2: |
| 377 | if (i == 0 || i == 13) |
| 378 | continue; /* IRQ0 & IRQ13 not connected */ |
| 379 | /* fall through */ |
| 380 | default: |
| 381 | if (i == 2) |
| 382 | continue; /* IRQ2 is never connected */ |
| 383 | } |
| 384 | |
| 385 | if (ELCR_fallback) { |
| 386 | /* |
| 387 | * If the ELCR indicates a level-sensitive interrupt, we |
| 388 | * copy that information over to the MP table in the |
| 389 | * irqflag field (level sensitive, active high polarity). |
| 390 | */ |
| 391 | if (ELCR_trigger(i)) |
| 392 | intsrc.mpc_irqflag = 13; |
| 393 | else |
| 394 | intsrc.mpc_irqflag = 0; |
| 395 | } |
| 396 | |
| 397 | intsrc.mpc_srcbusirq = i; |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 398 | intsrc.mpc_dstirq = i ? i : 2; /* IRQ0 to INTIN2 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | MP_intsrc_info(&intsrc); |
| 400 | } |
| 401 | |
| 402 | intsrc.mpc_irqtype = mp_ExtINT; |
| 403 | intsrc.mpc_srcbusirq = 0; |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 404 | intsrc.mpc_dstirq = 0; /* 8259A to INTIN0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | MP_intsrc_info(&intsrc); |
| 406 | } |
| 407 | |
| 408 | static inline void __init construct_default_ISA_mptable(int mpc_default_type) |
| 409 | { |
| 410 | struct mpc_config_processor processor; |
| 411 | struct mpc_config_bus bus; |
| 412 | struct mpc_config_ioapic ioapic; |
| 413 | struct mpc_config_lintsrc lintsrc; |
| 414 | int linttypes[2] = { mp_ExtINT, mp_NMI }; |
| 415 | int i; |
| 416 | |
| 417 | /* |
| 418 | * local APIC has default address |
| 419 | */ |
| 420 | mp_lapic_addr = APIC_DEFAULT_PHYS_BASE; |
| 421 | |
| 422 | /* |
| 423 | * 2 CPUs, numbered 0 & 1. |
| 424 | */ |
| 425 | processor.mpc_type = MP_PROCESSOR; |
Andi Kleen | f2c2cca | 2006-09-26 10:52:37 +0200 | [diff] [blame] | 426 | processor.mpc_apicver = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | processor.mpc_cpuflag = CPU_ENABLED; |
Andi Kleen | f2c2cca | 2006-09-26 10:52:37 +0200 | [diff] [blame] | 428 | processor.mpc_cpufeature = 0; |
| 429 | processor.mpc_featureflag = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | processor.mpc_reserved[0] = 0; |
| 431 | processor.mpc_reserved[1] = 0; |
| 432 | for (i = 0; i < 2; i++) { |
| 433 | processor.mpc_apicid = i; |
| 434 | MP_processor_info(&processor); |
| 435 | } |
| 436 | |
| 437 | bus.mpc_type = MP_BUS; |
| 438 | bus.mpc_busid = 0; |
| 439 | switch (mpc_default_type) { |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 440 | default: |
| 441 | printk(KERN_ERR "???\nUnknown standard configuration %d\n", |
| 442 | mpc_default_type); |
| 443 | /* fall through */ |
| 444 | case 1: |
| 445 | case 5: |
| 446 | memcpy(bus.mpc_bustype, "ISA ", 6); |
| 447 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | } |
| 449 | MP_bus_info(&bus); |
| 450 | if (mpc_default_type > 4) { |
| 451 | bus.mpc_busid = 1; |
| 452 | memcpy(bus.mpc_bustype, "PCI ", 6); |
| 453 | MP_bus_info(&bus); |
| 454 | } |
| 455 | |
| 456 | ioapic.mpc_type = MP_IOAPIC; |
| 457 | ioapic.mpc_apicid = 2; |
Andi Kleen | f2c2cca | 2006-09-26 10:52:37 +0200 | [diff] [blame] | 458 | ioapic.mpc_apicver = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | ioapic.mpc_flags = MPC_APIC_USABLE; |
| 460 | ioapic.mpc_apicaddr = 0xFEC00000; |
| 461 | MP_ioapic_info(&ioapic); |
| 462 | |
| 463 | /* |
| 464 | * We set up most of the low 16 IO-APIC pins according to MPS rules. |
| 465 | */ |
| 466 | construct_default_ioirq_mptable(mpc_default_type); |
| 467 | |
| 468 | lintsrc.mpc_type = MP_LINTSRC; |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 469 | lintsrc.mpc_irqflag = 0; /* conforming */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | lintsrc.mpc_srcbusid = 0; |
| 471 | lintsrc.mpc_srcbusirq = 0; |
| 472 | lintsrc.mpc_destapic = MP_APIC_ALL; |
| 473 | for (i = 0; i < 2; i++) { |
| 474 | lintsrc.mpc_irqtype = linttypes[i]; |
| 475 | lintsrc.mpc_destapiclint = i; |
| 476 | MP_lintsrc_info(&lintsrc); |
| 477 | } |
| 478 | } |
| 479 | |
| 480 | static struct intel_mp_floating *mpf_found; |
| 481 | |
| 482 | /* |
| 483 | * Scan the memory blocks for an SMP configuration block. |
| 484 | */ |
Yinghai Lu | 8643f9d | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 485 | static void __init __get_smp_config(unsigned early) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | { |
| 487 | struct intel_mp_floating *mpf = mpf_found; |
| 488 | |
Yinghai Lu | 8643f9d | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 489 | if (acpi_lapic && early) |
| 490 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | /* |
Yinghai Lu | 8643f9d | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 492 | * ACPI supports both logical (e.g. Hyper-Threading) and physical |
| 493 | * processors, where MPS only supports physical. |
| 494 | */ |
| 495 | if (acpi_lapic && acpi_ioapic) { |
| 496 | printk(KERN_INFO "Using ACPI (MADT) for SMP configuration " |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 497 | "information\n"); |
Yinghai Lu | 8643f9d | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 498 | return; |
| 499 | } else if (acpi_lapic) |
| 500 | printk(KERN_INFO "Using ACPI for processor (LAPIC) " |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 501 | "configuration information\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | |
Yinghai Lu | 8643f9d | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 503 | printk(KERN_INFO "Intel MultiProcessor Specification v1.%d\n", |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 504 | mpf->mpf_specification); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | |
| 506 | /* |
| 507 | * Now see if we need to read further. |
| 508 | */ |
| 509 | if (mpf->mpf_feature1 != 0) { |
Yinghai Lu | 8643f9d | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 510 | if (early) { |
| 511 | /* |
| 512 | * local APIC has default address |
| 513 | */ |
| 514 | mp_lapic_addr = APIC_DEFAULT_PHYS_BASE; |
| 515 | return; |
| 516 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 518 | printk(KERN_INFO "Default MP configuration #%d\n", |
| 519 | mpf->mpf_feature1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | construct_default_ISA_mptable(mpf->mpf_feature1); |
| 521 | |
| 522 | } else if (mpf->mpf_physptr) { |
| 523 | |
| 524 | /* |
| 525 | * Read the physical hardware table. Anything here will |
| 526 | * override the defaults. |
| 527 | */ |
Yinghai Lu | 8643f9d | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 528 | if (!smp_read_mpc(phys_to_virt(mpf->mpf_physptr), early)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | smp_found_config = 0; |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 530 | printk(KERN_ERR |
| 531 | "BIOS bug, MP table errors detected!...\n"); |
| 532 | printk(KERN_ERR "... disabling SMP support. " |
| 533 | "(tell your hw vendor)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | return; |
| 535 | } |
Yinghai Lu | 8643f9d | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 536 | |
| 537 | if (early) |
| 538 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | /* |
| 540 | * If there are no explicit MP IRQ entries, then we are |
| 541 | * broken. We set up most of the low 16 IO-APIC pins to |
| 542 | * ISA defaults and hope it will work. |
| 543 | */ |
| 544 | if (!mp_irq_entries) { |
| 545 | struct mpc_config_bus bus; |
| 546 | |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 547 | printk(KERN_ERR "BIOS bug, no explicit IRQ entries, " |
| 548 | "using default mptable. " |
| 549 | "(tell your hw vendor)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | |
| 551 | bus.mpc_type = MP_BUS; |
| 552 | bus.mpc_busid = 0; |
| 553 | memcpy(bus.mpc_bustype, "ISA ", 6); |
| 554 | MP_bus_info(&bus); |
| 555 | |
| 556 | construct_default_ioirq_mptable(0); |
| 557 | } |
| 558 | |
| 559 | } else |
| 560 | BUG(); |
| 561 | |
Yinghai Lu | 8643f9d | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 562 | if (!early) |
| 563 | printk(KERN_INFO "Processors: %d\n", num_processors); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | /* |
| 565 | * Only use the first configuration found. |
| 566 | */ |
| 567 | } |
| 568 | |
Yinghai Lu | 8643f9d | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 569 | void __init early_get_smp_config(void) |
| 570 | { |
| 571 | __get_smp_config(1); |
| 572 | } |
| 573 | |
| 574 | void __init get_smp_config(void) |
| 575 | { |
| 576 | __get_smp_config(0); |
| 577 | } |
| 578 | |
| 579 | static int __init smp_scan_config(unsigned long base, unsigned long length, |
| 580 | unsigned reserve) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | { |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 582 | extern void __bad_mpf_size(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | unsigned int *bp = phys_to_virt(base); |
| 584 | struct intel_mp_floating *mpf; |
| 585 | |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 586 | Dprintk("Scan SMP from %p for %ld bytes.\n", bp, length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | if (sizeof(*mpf) != 16) |
| 588 | __bad_mpf_size(); |
| 589 | |
| 590 | while (length > 0) { |
| 591 | mpf = (struct intel_mp_floating *)bp; |
| 592 | if ((*bp == SMP_MAGIC_IDENT) && |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 593 | (mpf->mpf_length == 1) && |
| 594 | !mpf_checksum((unsigned char *)bp, 16) && |
| 595 | ((mpf->mpf_specification == 1) |
| 596 | || (mpf->mpf_specification == 4))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | |
| 598 | smp_found_config = 1; |
Yinghai Lu | 8643f9d | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 599 | mpf_found = mpf; |
| 600 | |
| 601 | if (!reserve) |
| 602 | return 1; |
| 603 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | reserve_bootmem_generic(virt_to_phys(mpf), PAGE_SIZE); |
| 605 | if (mpf->mpf_physptr) |
Yinghai Lu | 8643f9d | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 606 | reserve_bootmem_generic(mpf->mpf_physptr, |
| 607 | PAGE_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | return 1; |
| 609 | } |
| 610 | bp += 4; |
| 611 | length -= 16; |
| 612 | } |
| 613 | return 0; |
| 614 | } |
| 615 | |
Yinghai Lu | 8643f9d | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 616 | static void __init __find_smp_config(unsigned reserve) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | { |
| 618 | unsigned int address; |
| 619 | |
| 620 | /* |
| 621 | * FIXME: Linux assumes you have 640K of base ram.. |
| 622 | * this continues the error... |
| 623 | * |
| 624 | * 1) Scan the bottom 1K for a signature |
| 625 | * 2) Scan the top 1K of base RAM |
| 626 | * 3) Scan the 64K of bios |
| 627 | */ |
Yinghai Lu | 8643f9d | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 628 | if (smp_scan_config(0x0, 0x400, reserve) || |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 629 | smp_scan_config(639 * 0x400, 0x400, reserve) || |
| 630 | smp_scan_config(0xF0000, 0x10000, reserve)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | return; |
| 632 | /* |
Andi Kleen | e509913 | 2006-09-26 10:52:29 +0200 | [diff] [blame] | 633 | * If it is an SMP machine we should know now. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | * |
| 635 | * there is a real-mode segmented pointer pointing to the |
| 636 | * 4K EBDA area at 0x40E, calculate and scan it here. |
| 637 | * |
| 638 | * NOTE! There are Linux loaders that will corrupt the EBDA |
| 639 | * area, and as such this kind of SMP config may be less |
| 640 | * trustworthy, simply because the SMP table may have been |
| 641 | * stomped on during early boot. These loaders are buggy and |
| 642 | * should be fixed. |
Alexey Starikovskiy | 85e4603 | 2008-03-17 22:08:24 +0300 | [diff] [blame] | 643 | * |
| 644 | * MP1.4 SPEC states to only scan first 1K of 4K EBDA. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | */ |
| 646 | |
Alexey Starikovskiy | ce3fe6b | 2008-03-17 22:08:17 +0300 | [diff] [blame] | 647 | address = get_bios_ebda(); |
| 648 | if (address) |
Alexey Starikovskiy | 85e4603 | 2008-03-17 22:08:24 +0300 | [diff] [blame] | 649 | smp_scan_config(address, 0x400, reserve); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | } |
| 651 | |
Yinghai Lu | 8643f9d | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 652 | void __init early_find_smp_config(void) |
| 653 | { |
| 654 | __find_smp_config(0); |
| 655 | } |
| 656 | |
| 657 | void __init find_smp_config(void) |
| 658 | { |
| 659 | __find_smp_config(1); |
| 660 | } |
| 661 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | /* -------------------------------------------------------------------------- |
| 663 | ACPI-based MP Configuration |
| 664 | -------------------------------------------------------------------------- */ |
| 665 | |
Len Brown | 888ba6c | 2005-08-24 12:07:20 -0400 | [diff] [blame] | 666 | #ifdef CONFIG_ACPI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | |
Andi Kleen | efec3b9 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 668 | void __init mp_register_lapic_address(u64 address) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | { |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 670 | mp_lapic_addr = (unsigned long)address; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | set_fixmap_nocache(FIX_APIC_BASE, mp_lapic_addr); |
Glauber de Oliveira Costa | c70dcb7 | 2008-03-19 14:25:58 -0300 | [diff] [blame] | 672 | if (boot_cpu_physical_apicid == -1U) |
| 673 | boot_cpu_physical_apicid = GET_APIC_ID(apic_read(APIC_ID)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | } |
| 675 | |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 676 | void __cpuinit mp_register_lapic(u8 id, u8 enabled) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | { |
| 678 | struct mpc_config_processor processor; |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 679 | int boot_cpu = 0; |
| 680 | |
Glauber de Oliveira Costa | c70dcb7 | 2008-03-19 14:25:58 -0300 | [diff] [blame] | 681 | if (id == boot_cpu_physical_apicid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | boot_cpu = 1; |
| 683 | |
| 684 | processor.mpc_type = MP_PROCESSOR; |
| 685 | processor.mpc_apicid = id; |
Andi Kleen | f2c2cca | 2006-09-26 10:52:37 +0200 | [diff] [blame] | 686 | processor.mpc_apicver = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | processor.mpc_cpuflag = (enabled ? CPU_ENABLED : 0); |
| 688 | processor.mpc_cpuflag |= (boot_cpu ? CPU_BOOTPROCESSOR : 0); |
Andi Kleen | f2c2cca | 2006-09-26 10:52:37 +0200 | [diff] [blame] | 689 | processor.mpc_cpufeature = 0; |
| 690 | processor.mpc_featureflag = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | processor.mpc_reserved[0] = 0; |
| 692 | processor.mpc_reserved[1] = 0; |
| 693 | |
| 694 | MP_processor_info(&processor); |
| 695 | } |
| 696 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | #define MP_ISA_BUS 0 |
| 698 | #define MP_MAX_IOAPIC_PIN 127 |
| 699 | |
| 700 | static struct mp_ioapic_routing { |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 701 | int apic_id; |
Alexey Starikovskiy | 555b076 | 2008-03-17 22:08:30 +0300 | [diff] [blame] | 702 | int gsi_base; |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 703 | int gsi_end; |
| 704 | u32 pin_programmed[4]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | } mp_ioapic_routing[MAX_IO_APICS]; |
| 706 | |
Andi Kleen | efec3b9 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 707 | static int mp_find_ioapic(int gsi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | { |
Andi Kleen | efec3b9 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 709 | int i = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | |
| 711 | /* Find the IOAPIC that manages this GSI. */ |
| 712 | for (i = 0; i < nr_ioapics; i++) { |
Alexey Starikovskiy | 555b076 | 2008-03-17 22:08:30 +0300 | [diff] [blame] | 713 | if ((gsi >= mp_ioapic_routing[i].gsi_base) |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 714 | && (gsi <= mp_ioapic_routing[i].gsi_end)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | return i; |
| 716 | } |
| 717 | |
| 718 | printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | return -1; |
| 720 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | |
Andi Kleen | 78b599a | 2007-07-21 17:09:53 +0200 | [diff] [blame] | 722 | static u8 uniq_ioapic_id(u8 id) |
| 723 | { |
| 724 | int i; |
| 725 | DECLARE_BITMAP(used, 256); |
| 726 | bitmap_zero(used, 256); |
| 727 | for (i = 0; i < nr_ioapics; i++) { |
| 728 | struct mpc_config_ioapic *ia = &mp_ioapics[i]; |
| 729 | __set_bit(ia->mpc_apicid, used); |
| 730 | } |
| 731 | if (!test_bit(id, used)) |
| 732 | return id; |
| 733 | return find_first_zero_bit(used, 256); |
| 734 | } |
| 735 | |
Andi Kleen | efec3b9 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 736 | void __init mp_register_ioapic(u8 id, u32 address, u32 gsi_base) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | { |
Andi Kleen | efec3b9 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 738 | int idx = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | |
Andi Kleen | 013bf2c | 2006-09-30 01:47:55 +0200 | [diff] [blame] | 740 | if (bad_ioapic(address)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | |
Andi Kleen | 78b599a | 2007-07-21 17:09:53 +0200 | [diff] [blame] | 743 | idx = nr_ioapics; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | |
| 745 | mp_ioapics[idx].mpc_type = MP_IOAPIC; |
| 746 | mp_ioapics[idx].mpc_flags = MPC_APIC_USABLE; |
| 747 | mp_ioapics[idx].mpc_apicaddr = address; |
| 748 | |
| 749 | set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address); |
Andi Kleen | 78b599a | 2007-07-21 17:09:53 +0200 | [diff] [blame] | 750 | mp_ioapics[idx].mpc_apicid = uniq_ioapic_id(id); |
Andi Kleen | f2c2cca | 2006-09-26 10:52:37 +0200 | [diff] [blame] | 751 | mp_ioapics[idx].mpc_apicver = 0; |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 752 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 | /* |
| 754 | * Build basic IRQ lookup table to facilitate gsi->io_apic lookups |
| 755 | * and to prevent reprogramming of IOAPIC pins (PCI IRQs). |
| 756 | */ |
| 757 | mp_ioapic_routing[idx].apic_id = mp_ioapics[idx].mpc_apicid; |
Alexey Starikovskiy | 555b076 | 2008-03-17 22:08:30 +0300 | [diff] [blame] | 758 | mp_ioapic_routing[idx].gsi_base = gsi_base; |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 759 | mp_ioapic_routing[idx].gsi_end = gsi_base + |
| 760 | io_apic_get_redir_entries(idx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | |
Andi Kleen | f2c2cca | 2006-09-26 10:52:37 +0200 | [diff] [blame] | 762 | printk(KERN_INFO "IOAPIC[%d]: apic_id %d, address 0x%x, " |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 763 | "GSI %d-%d\n", idx, mp_ioapics[idx].mpc_apicid, |
| 764 | mp_ioapics[idx].mpc_apicaddr, |
Alexey Starikovskiy | 555b076 | 2008-03-17 22:08:30 +0300 | [diff] [blame] | 765 | mp_ioapic_routing[idx].gsi_base, |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 766 | mp_ioapic_routing[idx].gsi_end); |
Andi Kleen | 78b599a | 2007-07-21 17:09:53 +0200 | [diff] [blame] | 767 | |
| 768 | nr_ioapics++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | } |
| 770 | |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 771 | void __init mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | { |
| 773 | struct mpc_config_intsrc intsrc; |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 774 | int ioapic = -1; |
| 775 | int pin = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | |
| 777 | /* |
| 778 | * Convert 'gsi' to 'ioapic.pin'. |
| 779 | */ |
| 780 | ioapic = mp_find_ioapic(gsi); |
| 781 | if (ioapic < 0) |
| 782 | return; |
Alexey Starikovskiy | 555b076 | 2008-03-17 22:08:30 +0300 | [diff] [blame] | 783 | pin = gsi - mp_ioapic_routing[ioapic].gsi_base; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | |
| 785 | /* |
| 786 | * TBD: This check is for faulty timer entries, where the override |
| 787 | * erroneously sets the trigger to level, resulting in a HUGE |
| 788 | * increase of timer interrupts! |
| 789 | */ |
| 790 | if ((bus_irq == 0) && (trigger == 3)) |
| 791 | trigger = 1; |
| 792 | |
| 793 | intsrc.mpc_type = MP_INTSRC; |
| 794 | intsrc.mpc_irqtype = mp_INT; |
| 795 | intsrc.mpc_irqflag = (trigger << 2) | polarity; |
| 796 | intsrc.mpc_srcbus = MP_ISA_BUS; |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 797 | intsrc.mpc_srcbusirq = bus_irq; /* IRQ */ |
| 798 | intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid; /* APIC ID */ |
| 799 | intsrc.mpc_dstirq = pin; /* INTIN# */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 801 | Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, %d-%d\n", |
| 802 | intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3, |
| 803 | (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | intsrc.mpc_srcbusirq, intsrc.mpc_dstapic, intsrc.mpc_dstirq); |
| 805 | |
| 806 | mp_irqs[mp_irq_entries] = intsrc; |
| 807 | if (++mp_irq_entries == MAX_IRQ_SOURCES) |
| 808 | panic("Max # of irq sources exceeded!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | } |
| 810 | |
Andi Kleen | efec3b9 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 811 | void __init mp_config_acpi_legacy_irqs(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | { |
| 813 | struct mpc_config_intsrc intsrc; |
Andi Kleen | efec3b9 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 814 | int i = 0; |
| 815 | int ioapic = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | |
| 817 | /* |
| 818 | * Fabricate the legacy ISA bus (bus #31). |
| 819 | */ |
Andi Kleen | 55f05ff | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 820 | set_bit(MP_ISA_BUS, mp_bus_not_pci); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | |
| 822 | /* |
| 823 | * Locate the IOAPIC that manages the ISA IRQs (0-15). |
| 824 | */ |
| 825 | ioapic = mp_find_ioapic(0); |
| 826 | if (ioapic < 0) |
| 827 | return; |
| 828 | |
| 829 | intsrc.mpc_type = MP_INTSRC; |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 830 | intsrc.mpc_irqflag = 0; /* Conforming */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | intsrc.mpc_srcbus = MP_ISA_BUS; |
| 832 | intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid; |
| 833 | |
| 834 | /* |
| 835 | * Use the default configuration for the IRQs 0-15. Unless |
| 836 | * overridden by (MADT) interrupt source override entries. |
| 837 | */ |
| 838 | for (i = 0; i < 16; i++) { |
| 839 | int idx; |
| 840 | |
| 841 | for (idx = 0; idx < mp_irq_entries; idx++) { |
| 842 | struct mpc_config_intsrc *irq = mp_irqs + idx; |
| 843 | |
| 844 | /* Do we already have a mapping for this ISA IRQ? */ |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 845 | if (irq->mpc_srcbus == MP_ISA_BUS |
| 846 | && irq->mpc_srcbusirq == i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | break; |
| 848 | |
| 849 | /* Do we already have a mapping for this IOAPIC pin */ |
| 850 | if ((irq->mpc_dstapic == intsrc.mpc_dstapic) && |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 851 | (irq->mpc_dstirq == i)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | break; |
| 853 | } |
| 854 | |
| 855 | if (idx != mp_irq_entries) { |
| 856 | printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i); |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 857 | continue; /* IRQ already used */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | } |
| 859 | |
| 860 | intsrc.mpc_irqtype = mp_INT; |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 861 | intsrc.mpc_srcbusirq = i; /* Identity mapped */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | intsrc.mpc_dstirq = i; |
| 863 | |
| 864 | Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, " |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 865 | "%d-%d\n", intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3, |
| 866 | (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus, |
| 867 | intsrc.mpc_srcbusirq, intsrc.mpc_dstapic, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | intsrc.mpc_dstirq); |
| 869 | |
| 870 | mp_irqs[mp_irq_entries] = intsrc; |
| 871 | if (++mp_irq_entries == MAX_IRQ_SOURCES) |
| 872 | panic("Max # of irq sources exceeded!\n"); |
| 873 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | } |
| 875 | |
Bob Moore | 50eca3e | 2005-09-30 19:03:00 -0400 | [diff] [blame] | 876 | int mp_register_gsi(u32 gsi, int triggering, int polarity) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | { |
Andi Kleen | efec3b9 | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 878 | int ioapic = -1; |
| 879 | int ioapic_pin = 0; |
| 880 | int idx, bit = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | |
| 882 | if (acpi_irq_model != ACPI_IRQ_MODEL_IOAPIC) |
| 883 | return gsi; |
| 884 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | /* Don't set up the ACPI SCI because it's already set up */ |
Alexey Starikovskiy | cee324b | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 886 | if (acpi_gbl_FADT.sci_interrupt == gsi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | return gsi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 888 | |
| 889 | ioapic = mp_find_ioapic(gsi); |
| 890 | if (ioapic < 0) { |
| 891 | printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi); |
| 892 | return gsi; |
| 893 | } |
| 894 | |
Alexey Starikovskiy | 555b076 | 2008-03-17 22:08:30 +0300 | [diff] [blame] | 895 | ioapic_pin = gsi - mp_ioapic_routing[ioapic].gsi_base; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | |
| 897 | /* |
| 898 | * Avoid pin reprogramming. PRTs typically include entries |
| 899 | * with redundant pin->gsi mappings (but unique PCI devices); |
| 900 | * we only program the IOAPIC on the first. |
| 901 | */ |
| 902 | bit = ioapic_pin % 32; |
| 903 | idx = (ioapic_pin < 32) ? 0 : (ioapic_pin / 32); |
| 904 | if (idx > 3) { |
| 905 | printk(KERN_ERR "Invalid reference to IOAPIC pin " |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 906 | "%d-%d\n", mp_ioapic_routing[ioapic].apic_id, |
| 907 | ioapic_pin); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | return gsi; |
| 909 | } |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 910 | if ((1 << bit) & mp_ioapic_routing[ioapic].pin_programmed[idx]) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 | Dprintk(KERN_DEBUG "Pin %d-%d already programmed\n", |
| 912 | mp_ioapic_routing[ioapic].apic_id, ioapic_pin); |
Eric W. Biederman | cd1182f | 2006-10-04 02:16:53 -0700 | [diff] [blame] | 913 | return gsi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | } |
| 915 | |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 916 | mp_ioapic_routing[ioapic].pin_programmed[idx] |= (1 << bit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 918 | io_apic_set_pci_routing(ioapic, ioapic_pin, gsi, |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 919 | triggering == ACPI_EDGE_SENSITIVE ? 0 : 1, |
| 920 | polarity == ACPI_ACTIVE_HIGH ? 0 : 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | return gsi; |
| 922 | } |
Alexey Starikovskiy | d295331 | 2008-03-17 22:07:59 +0300 | [diff] [blame] | 923 | #endif /* CONFIG_ACPI */ |