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/acpi.h> |
| 19 | #include <linux/delay.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/bootmem.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/kernel_stat.h> |
| 22 | #include <linux/mc146818rtc.h> |
| 23 | #include <linux/bitops.h> |
| 24 | |
| 25 | #include <asm/smp.h> |
| 26 | #include <asm/acpi.h> |
| 27 | #include <asm/mtrr.h> |
| 28 | #include <asm/mpspec.h> |
| 29 | #include <asm/io_apic.h> |
Alexey Starikovskiy | ce3fe6b | 2008-03-17 22:08:17 +0300 | [diff] [blame] | 30 | #include <asm/bios_ebda.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
| 32 | #include <mach_apic.h> |
Andi Kleen | 874c4fe | 2006-09-26 10:52:26 +0200 | [diff] [blame] | 33 | #include <mach_apicdef.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <mach_mpparse.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
| 36 | /* Have we found an MP table */ |
| 37 | int smp_found_config; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
| 39 | /* |
| 40 | * Various Linux-internal data structures created from the |
| 41 | * MP-table. |
| 42 | */ |
Alexey Starikovskiy | c0a282c | 2008-03-20 14:55:02 +0300 | [diff] [blame] | 43 | #if defined (CONFIG_MCA) || defined (CONFIG_EISA) |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 44 | int mp_bus_id_to_type[MAX_MP_BUSSES]; |
Alexey Starikovskiy | c0a282c | 2008-03-20 14:55:02 +0300 | [diff] [blame] | 45 | #endif |
Alexey Starikovskiy | a6333c3 | 2008-03-20 14:54:09 +0300 | [diff] [blame] | 46 | DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES); |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 47 | 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] | 48 | static int mp_current_pci_id; |
| 49 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | int pic_mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | /* |
| 53 | * Intel MP BIOS table parsing routines: |
| 54 | */ |
| 55 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | /* |
| 57 | * Checksum an MP configuration block. |
| 58 | */ |
| 59 | |
| 60 | static int __init mpf_checksum(unsigned char *mp, int len) |
| 61 | { |
| 62 | int sum = 0; |
| 63 | |
| 64 | while (len--) |
| 65 | sum += *mp++; |
| 66 | |
| 67 | return sum & 0xFF; |
| 68 | } |
| 69 | |
Alexey Starikovskiy | 8642050 | 2008-03-17 22:08:55 +0300 | [diff] [blame] | 70 | #ifdef CONFIG_X86_NUMAQ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | /* |
| 72 | * Have to match translation table entries to main table entries by counter |
| 73 | * hence the mpc_record variable .... can't see a less disgusting way of |
| 74 | * doing this .... |
| 75 | */ |
| 76 | |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 77 | static int mpc_record; |
| 78 | static struct mpc_config_translation *translation_table[MAX_MPC_ENTRY] |
| 79 | __cpuinitdata; |
Alexey Starikovskiy | 8642050 | 2008-03-17 22:08:55 +0300 | [diff] [blame] | 80 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | |
Alexey Starikovskiy | c853c67 | 2008-03-27 23:54:13 +0300 | [diff] [blame] | 82 | static void __cpuinit MP_processor_info(struct mpc_config_processor *m) |
| 83 | { |
| 84 | int apicid; |
Alexey Starikovskiy | 746f224 | 2008-04-04 23:42:15 +0400 | [diff] [blame] | 85 | char *bootup_cpu = ""; |
Alexey Starikovskiy | c853c67 | 2008-03-27 23:54:13 +0300 | [diff] [blame] | 86 | |
Glauber Costa | 7b1292e | 2008-03-03 14:12:41 -0300 | [diff] [blame] | 87 | if (!(m->mpc_cpuflag & CPU_ENABLED)) { |
| 88 | disabled_cpus++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | return; |
Glauber Costa | 7b1292e | 2008-03-03 14:12:41 -0300 | [diff] [blame] | 90 | } |
Alexey Starikovskiy | 4655c7d | 2008-03-17 22:08:36 +0300 | [diff] [blame] | 91 | #ifdef CONFIG_X86_NUMAQ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | apicid = mpc_apic_id(m, translation_table[mpc_record]); |
Alexey Starikovskiy | 4655c7d | 2008-03-17 22:08:36 +0300 | [diff] [blame] | 93 | #else |
Alexey Starikovskiy | 4655c7d | 2008-03-17 22:08:36 +0300 | [diff] [blame] | 94 | apicid = m->mpc_apicid; |
| 95 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) { |
Alexey Starikovskiy | 746f224 | 2008-04-04 23:42:15 +0400 | [diff] [blame] | 97 | bootup_cpu = " (Bootup-CPU)"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | boot_cpu_physical_apicid = m->mpc_apicid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | } |
| 100 | |
Alexey Starikovskiy | 746f224 | 2008-04-04 23:42:15 +0400 | [diff] [blame] | 101 | printk(KERN_INFO "Processor #%d%s\n", m->mpc_apicid, bootup_cpu); |
Alexey Starikovskiy | c853c67 | 2008-03-27 23:54:13 +0300 | [diff] [blame] | 102 | generic_processor_info(apicid, m->mpc_apicver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | } |
| 104 | |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 105 | static void __init MP_bus_info(struct mpc_config_bus *m) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | { |
| 107 | char str[7]; |
| 108 | |
| 109 | memcpy(str, m->mpc_bustype, 6); |
| 110 | str[6] = 0; |
| 111 | |
Alexey Starikovskiy | 0ec153a | 2008-03-17 22:08:48 +0300 | [diff] [blame] | 112 | #ifdef CONFIG_X86_NUMAQ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | mpc_oem_bus_info(m, str, translation_table[mpc_record]); |
Alexey Starikovskiy | 0ec153a | 2008-03-17 22:08:48 +0300 | [diff] [blame] | 114 | #else |
| 115 | Dprintk("Bus #%d is %s\n", m->mpc_busid, str); |
| 116 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | |
Andi Kleen | 5e4edbb | 2006-09-26 10:52:35 +0200 | [diff] [blame] | 118 | #if MAX_MP_BUSSES < 256 |
Randy Dunlap | c0ec31a | 2006-04-10 22:53:13 -0700 | [diff] [blame] | 119 | if (m->mpc_busid >= MAX_MP_BUSSES) { |
| 120 | printk(KERN_WARNING "MP table busid value (%d) for bustype %s " |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 121 | " is too large, max. supported is %d\n", |
| 122 | m->mpc_busid, str, MAX_MP_BUSSES - 1); |
Randy Dunlap | c0ec31a | 2006-04-10 22:53:13 -0700 | [diff] [blame] | 123 | return; |
| 124 | } |
Andi Kleen | 5e4edbb | 2006-09-26 10:52:35 +0200 | [diff] [blame] | 125 | #endif |
Randy Dunlap | c0ec31a | 2006-04-10 22:53:13 -0700 | [diff] [blame] | 126 | |
Alexey Starikovskiy | f8924e7 | 2008-04-04 23:42:21 +0400 | [diff] [blame] | 127 | if (strncmp(str, BUSTYPE_ISA, sizeof(BUSTYPE_ISA) - 1) == 0) { |
| 128 | set_bit(m->mpc_busid, mp_bus_not_pci); |
| 129 | #if defined(CONFIG_EISA) || defined (CONFIG_MCA) |
| 130 | mp_bus_id_to_type[m->mpc_busid] = MP_BUS_ISA; |
| 131 | #endif |
| 132 | } else if (strncmp(str, BUSTYPE_PCI, sizeof(BUSTYPE_PCI) - 1) == 0) { |
Alexey Starikovskiy | d285e33 | 2008-03-17 22:08:42 +0300 | [diff] [blame] | 133 | #ifdef CONFIG_X86_NUMAQ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | mpc_oem_pci_bus(m, translation_table[mpc_record]); |
Alexey Starikovskiy | d285e33 | 2008-03-17 22:08:42 +0300 | [diff] [blame] | 135 | #endif |
Alexey Starikovskiy | a6333c3 | 2008-03-20 14:54:09 +0300 | [diff] [blame] | 136 | clear_bit(m->mpc_busid, mp_bus_not_pci); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | mp_bus_id_to_pci_bus[m->mpc_busid] = mp_current_pci_id; |
| 138 | mp_current_pci_id++; |
Alexey Starikovskiy | c0a282c | 2008-03-20 14:55:02 +0300 | [diff] [blame] | 139 | #if defined(CONFIG_EISA) || defined (CONFIG_MCA) |
| 140 | mp_bus_id_to_type[m->mpc_busid] = MP_BUS_PCI; |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 141 | } else if (strncmp(str, BUSTYPE_EISA, sizeof(BUSTYPE_EISA) - 1) == 0) { |
Alexey Starikovskiy | 9e0a2de | 2008-03-20 14:54:56 +0300 | [diff] [blame] | 142 | mp_bus_id_to_type[m->mpc_busid] = MP_BUS_EISA; |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 143 | } else if (strncmp(str, BUSTYPE_MCA, sizeof(BUSTYPE_MCA) - 1) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | mp_bus_id_to_type[m->mpc_busid] = MP_BUS_MCA; |
Alexey Starikovskiy | c0a282c | 2008-03-20 14:55:02 +0300 | [diff] [blame] | 145 | #endif |
Alexey Starikovskiy | f8924e7 | 2008-04-04 23:42:21 +0400 | [diff] [blame] | 146 | } else |
| 147 | printk(KERN_WARNING "Unknown bustype %s - ignoring\n", str); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | } |
| 149 | |
Alexey Starikovskiy | 61048c6 | 2008-04-04 23:41:07 +0400 | [diff] [blame] | 150 | #ifdef CONFIG_X86_IO_APIC |
| 151 | |
Alexey Starikovskiy | 857033a | 2008-03-17 22:08:05 +0300 | [diff] [blame] | 152 | static int bad_ioapic(unsigned long address) |
| 153 | { |
| 154 | if (nr_ioapics >= MAX_IO_APICS) { |
| 155 | printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded " |
| 156 | "(found %d)\n", MAX_IO_APICS, nr_ioapics); |
| 157 | panic("Recompile kernel with bigger MAX_IO_APICS!\n"); |
| 158 | } |
| 159 | if (!address) { |
| 160 | printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address" |
| 161 | " found in table, skipping!\n"); |
| 162 | return 1; |
| 163 | } |
| 164 | return 0; |
| 165 | } |
| 166 | |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 167 | static void __init MP_ioapic_info(struct mpc_config_ioapic *m) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | { |
| 169 | if (!(m->mpc_flags & MPC_APIC_USABLE)) |
| 170 | return; |
| 171 | |
Thomas Gleixner | 64883ab | 2008-01-30 13:30:35 +0100 | [diff] [blame] | 172 | printk(KERN_INFO "I/O APIC #%d Version %d at 0x%X.\n", |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 173 | m->mpc_apicid, m->mpc_apicver, m->mpc_apicaddr); |
Alexey Starikovskiy | 857033a | 2008-03-17 22:08:05 +0300 | [diff] [blame] | 174 | |
| 175 | if (bad_ioapic(m->mpc_apicaddr)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | return; |
Alexey Starikovskiy | 857033a | 2008-03-17 22:08:05 +0300 | [diff] [blame] | 177 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | mp_ioapics[nr_ioapics] = *m; |
| 179 | nr_ioapics++; |
| 180 | } |
| 181 | |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 182 | static void __init MP_intsrc_info(struct mpc_config_intsrc *m) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | { |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 184 | mp_irqs[mp_irq_entries] = *m; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | Dprintk("Int: type %d, pol %d, trig %d, bus %d," |
| 186 | " IRQ %02x, APIC ID %x, APIC INT %02x\n", |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 187 | m->mpc_irqtype, m->mpc_irqflag & 3, |
| 188 | (m->mpc_irqflag >> 2) & 3, m->mpc_srcbus, |
| 189 | m->mpc_srcbusirq, m->mpc_dstapic, m->mpc_dstirq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | if (++mp_irq_entries == MAX_IRQ_SOURCES) |
| 191 | panic("Max # of irq sources exceeded!!\n"); |
| 192 | } |
| 193 | |
Alexey Starikovskiy | 61048c6 | 2008-04-04 23:41:07 +0400 | [diff] [blame] | 194 | #endif |
| 195 | |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 196 | static void __init MP_lintsrc_info(struct mpc_config_lintsrc *m) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | { |
| 198 | Dprintk("Lint: type %d, pol %d, trig %d, bus %d," |
| 199 | " IRQ %02x, APIC ID %x, APIC LINT %02x\n", |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 200 | m->mpc_irqtype, m->mpc_irqflag & 3, |
| 201 | (m->mpc_irqflag >> 2) & 3, m->mpc_srcbusid, |
| 202 | m->mpc_srcbusirq, m->mpc_destapic, m->mpc_destapiclint); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | } |
| 204 | |
| 205 | #ifdef CONFIG_X86_NUMAQ |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 206 | static void __init MP_translation_info(struct mpc_config_translation *m) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | { |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 208 | printk(KERN_INFO |
| 209 | "Translation: record %d, type %d, quad %d, global %d, local %d\n", |
| 210 | mpc_record, m->trans_type, m->trans_quad, m->trans_global, |
| 211 | m->trans_local); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 213 | if (mpc_record >= MAX_MPC_ENTRY) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | printk(KERN_ERR "MAX_MPC_ENTRY exceeded!\n"); |
| 215 | else |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 216 | translation_table[mpc_record] = m; /* stash this for later */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | if (m->trans_quad < MAX_NUMNODES && !node_online(m->trans_quad)) |
| 218 | node_set_online(m->trans_quad); |
| 219 | } |
| 220 | |
| 221 | /* |
| 222 | * Read/parse the MPC oem tables |
| 223 | */ |
| 224 | |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 225 | static void __init smp_read_mpc_oem(struct mp_config_oemtable *oemtable, |
| 226 | unsigned short oemsize) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | { |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 228 | int count = sizeof(*oemtable); /* the header size */ |
| 229 | unsigned char *oemptr = ((unsigned char *)oemtable) + count; |
| 230 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | mpc_record = 0; |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 232 | printk(KERN_INFO "Found an OEM MPC table at %8p - parsing it ... \n", |
| 233 | oemtable); |
| 234 | if (memcmp(oemtable->oem_signature, MPC_OEM_SIGNATURE, 4)) { |
| 235 | printk(KERN_WARNING |
| 236 | "SMP mpc oemtable: bad signature [%c%c%c%c]!\n", |
| 237 | oemtable->oem_signature[0], oemtable->oem_signature[1], |
| 238 | oemtable->oem_signature[2], oemtable->oem_signature[3]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | return; |
| 240 | } |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 241 | if (mpf_checksum((unsigned char *)oemtable, oemtable->oem_length)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | printk(KERN_WARNING "SMP oem mptable: checksum error!\n"); |
| 243 | return; |
| 244 | } |
| 245 | while (count < oemtable->oem_length) { |
| 246 | switch (*oemptr) { |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 247 | case MP_TRANSLATION: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | { |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 249 | struct mpc_config_translation *m = |
| 250 | (struct mpc_config_translation *)oemptr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | MP_translation_info(m); |
| 252 | oemptr += sizeof(*m); |
| 253 | count += sizeof(*m); |
| 254 | ++mpc_record; |
| 255 | break; |
| 256 | } |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 257 | default: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | { |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 259 | printk(KERN_WARNING |
| 260 | "Unrecognised OEM table entry type! - %d\n", |
| 261 | (int)*oemptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | return; |
| 263 | } |
| 264 | } |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 265 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | } |
| 267 | |
| 268 | static inline void mps_oem_check(struct mp_config_table *mpc, char *oem, |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 269 | char *productid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | { |
| 271 | if (strncmp(oem, "IBM NUMA", 8)) |
| 272 | printk("Warning! May not be a NUMA-Q system!\n"); |
| 273 | if (mpc->mpc_oemptr) |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 274 | smp_read_mpc_oem((struct mp_config_oemtable *)mpc->mpc_oemptr, |
| 275 | mpc->mpc_oemsize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | } |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 277 | #endif /* CONFIG_X86_NUMAQ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | |
| 279 | /* |
| 280 | * Read/parse the MPC |
| 281 | */ |
| 282 | |
Alexey Starikovskiy | 888032c | 2008-04-04 23:42:09 +0400 | [diff] [blame] | 283 | 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] | 284 | { |
| 285 | char str[16]; |
| 286 | char oem[10]; |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 287 | int count = sizeof(*mpc); |
| 288 | unsigned char *mpt = ((unsigned char *)mpc) + count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 290 | if (memcmp(mpc->mpc_signature, MPC_SIGNATURE, 4)) { |
Alexey Starikovskiy | e950bea | 2008-04-04 23:42:27 +0400 | [diff] [blame] | 291 | printk(KERN_ERR "MPTABLE: bad signature [%c%c%c%c]!\n", |
| 292 | mpc->mpc_signature[0], mpc->mpc_signature[1], |
| 293 | mpc->mpc_signature[2], mpc->mpc_signature[3]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | return 0; |
| 295 | } |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 296 | if (mpf_checksum((unsigned char *)mpc, mpc->mpc_length)) { |
Alexey Starikovskiy | e950bea | 2008-04-04 23:42:27 +0400 | [diff] [blame] | 297 | printk(KERN_ERR "MPTABLE: checksum error!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | return 0; |
| 299 | } |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 300 | if (mpc->mpc_spec != 0x01 && mpc->mpc_spec != 0x04) { |
Alexey Starikovskiy | e950bea | 2008-04-04 23:42:27 +0400 | [diff] [blame] | 301 | printk(KERN_ERR "MPTABLE: bad table version (%d)!!\n", |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 302 | mpc->mpc_spec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | return 0; |
| 304 | } |
| 305 | if (!mpc->mpc_lapic) { |
Alexey Starikovskiy | e950bea | 2008-04-04 23:42:27 +0400 | [diff] [blame] | 306 | printk(KERN_ERR "MPTABLE: null local APIC address!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | return 0; |
| 308 | } |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 309 | memcpy(oem, mpc->mpc_oem, 8); |
| 310 | oem[8] = 0; |
Alexey Starikovskiy | e950bea | 2008-04-04 23:42:27 +0400 | [diff] [blame] | 311 | printk(KERN_INFO "MPTABLE: OEM ID: %s ", oem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 313 | memcpy(str, mpc->mpc_productid, 12); |
| 314 | str[12] = 0; |
| 315 | printk("Product ID: %s ", str); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | |
Alexey Starikovskiy | e950bea | 2008-04-04 23:42:27 +0400 | [diff] [blame] | 317 | #ifdef CONFIG_X86_32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | mps_oem_check(mpc, oem, str); |
Alexey Starikovskiy | e950bea | 2008-04-04 23:42:27 +0400 | [diff] [blame] | 319 | #endif |
| 320 | printk(KERN_INFO "MPTABLE: Product ID: %s ", str); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | |
Alexey Starikovskiy | e950bea | 2008-04-04 23:42:27 +0400 | [diff] [blame] | 322 | printk(KERN_INFO "MPTABLE: APIC at: 0x%X\n", mpc->mpc_lapic); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | |
Alexey Starikovskiy | e950bea | 2008-04-04 23:42:27 +0400 | [diff] [blame] | 324 | /* save the local APIC address, it might be non-default */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | if (!acpi_lapic) |
| 326 | mp_lapic_addr = mpc->mpc_lapic; |
| 327 | |
Alexey Starikovskiy | 888032c | 2008-04-04 23:42:09 +0400 | [diff] [blame] | 328 | if (early) |
| 329 | return 1; |
| 330 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | /* |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 332 | * Now process the configuration blocks. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | */ |
Alexey Starikovskiy | 8642050 | 2008-03-17 22:08:55 +0300 | [diff] [blame] | 334 | #ifdef CONFIG_X86_NUMAQ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | mpc_record = 0; |
Alexey Starikovskiy | 8642050 | 2008-03-17 22:08:55 +0300 | [diff] [blame] | 336 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | while (count < mpc->mpc_length) { |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 338 | switch (*mpt) { |
| 339 | case MP_PROCESSOR: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | { |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 341 | struct mpc_config_processor *m = |
| 342 | (struct mpc_config_processor *)mpt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | /* ACPI may have already provided this data */ |
| 344 | if (!acpi_lapic) |
| 345 | MP_processor_info(m); |
| 346 | mpt += sizeof(*m); |
| 347 | count += sizeof(*m); |
| 348 | break; |
| 349 | } |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 350 | case MP_BUS: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | { |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 352 | struct mpc_config_bus *m = |
| 353 | (struct mpc_config_bus *)mpt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | MP_bus_info(m); |
| 355 | mpt += sizeof(*m); |
| 356 | count += sizeof(*m); |
| 357 | break; |
| 358 | } |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 359 | case MP_IOAPIC: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | { |
Alexey Starikovskiy | 61048c6 | 2008-04-04 23:41:07 +0400 | [diff] [blame] | 361 | #ifdef CONFIG_X86_IO_APIC |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 362 | struct mpc_config_ioapic *m = |
| 363 | (struct mpc_config_ioapic *)mpt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | MP_ioapic_info(m); |
Alexey Starikovskiy | 61048c6 | 2008-04-04 23:41:07 +0400 | [diff] [blame] | 365 | #endif |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 366 | mpt += sizeof(struct mpc_config_ioapic); |
| 367 | count += sizeof(struct mpc_config_ioapic); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | break; |
| 369 | } |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 370 | case MP_INTSRC: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | { |
Alexey Starikovskiy | 61048c6 | 2008-04-04 23:41:07 +0400 | [diff] [blame] | 372 | #ifdef CONFIG_X86_IO_APIC |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 373 | struct mpc_config_intsrc *m = |
| 374 | (struct mpc_config_intsrc *)mpt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | |
| 376 | MP_intsrc_info(m); |
Alexey Starikovskiy | 61048c6 | 2008-04-04 23:41:07 +0400 | [diff] [blame] | 377 | #endif |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 378 | mpt += sizeof(struct mpc_config_intsrc); |
| 379 | count += sizeof(struct mpc_config_intsrc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | break; |
| 381 | } |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 382 | case MP_LINTSRC: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | { |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 384 | struct mpc_config_lintsrc *m = |
| 385 | (struct mpc_config_lintsrc *)mpt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | MP_lintsrc_info(m); |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 387 | mpt += sizeof(*m); |
| 388 | count += sizeof(*m); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | break; |
| 390 | } |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 391 | default: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | { |
| 393 | count = mpc->mpc_length; |
| 394 | break; |
| 395 | } |
| 396 | } |
Alexey Starikovskiy | 8642050 | 2008-03-17 22:08:55 +0300 | [diff] [blame] | 397 | #ifdef CONFIG_X86_NUMAQ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | ++mpc_record; |
Alexey Starikovskiy | 8642050 | 2008-03-17 22:08:55 +0300 | [diff] [blame] | 399 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | } |
Ingo Molnar | 3c43f03 | 2007-05-02 19:27:04 +0200 | [diff] [blame] | 401 | setup_apic_routing(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | if (!num_processors) |
Alexey Starikovskiy | e950bea | 2008-04-04 23:42:27 +0400 | [diff] [blame] | 403 | printk(KERN_ERR "MPTABLE: no processors registered!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | return num_processors; |
| 405 | } |
| 406 | |
Alexey Starikovskiy | 61048c6 | 2008-04-04 23:41:07 +0400 | [diff] [blame] | 407 | #ifdef CONFIG_X86_IO_APIC |
| 408 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | static int __init ELCR_trigger(unsigned int irq) |
| 410 | { |
| 411 | unsigned int port; |
| 412 | |
| 413 | port = 0x4d0 + (irq >> 3); |
| 414 | return (inb(port) >> (irq & 7)) & 1; |
| 415 | } |
| 416 | |
| 417 | static void __init construct_default_ioirq_mptable(int mpc_default_type) |
| 418 | { |
| 419 | struct mpc_config_intsrc intsrc; |
| 420 | int i; |
| 421 | int ELCR_fallback = 0; |
| 422 | |
| 423 | intsrc.mpc_type = MP_INTSRC; |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 424 | intsrc.mpc_irqflag = 0; /* conforming */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | intsrc.mpc_srcbus = 0; |
| 426 | intsrc.mpc_dstapic = mp_ioapics[0].mpc_apicid; |
| 427 | |
| 428 | intsrc.mpc_irqtype = mp_INT; |
| 429 | |
| 430 | /* |
| 431 | * If true, we have an ISA/PCI system with no IRQ entries |
| 432 | * in the MP table. To prevent the PCI interrupts from being set up |
| 433 | * incorrectly, we try to use the ELCR. The sanity check to see if |
| 434 | * there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can |
| 435 | * never be level sensitive, so we simply see if the ELCR agrees. |
| 436 | * If it does, we assume it's valid. |
| 437 | */ |
| 438 | if (mpc_default_type == 5) { |
Alexey Starikovskiy | 62441bf | 2008-04-04 23:42:34 +0400 | [diff] [blame] | 439 | printk(KERN_INFO "ISA/PCI bus type with no IRQ information... " |
| 440 | "falling back to ELCR\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | |
Alexey Starikovskiy | 62441bf | 2008-04-04 23:42:34 +0400 | [diff] [blame] | 442 | if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2) || |
| 443 | ELCR_trigger(13)) |
| 444 | printk(KERN_ERR "ELCR contains invalid data... " |
| 445 | "not using ELCR\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | else { |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 447 | printk(KERN_INFO |
| 448 | "Using ELCR to identify PCI interrupts\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | ELCR_fallback = 1; |
| 450 | } |
| 451 | } |
| 452 | |
| 453 | for (i = 0; i < 16; i++) { |
| 454 | switch (mpc_default_type) { |
| 455 | case 2: |
| 456 | if (i == 0 || i == 13) |
| 457 | continue; /* IRQ0 & IRQ13 not connected */ |
| 458 | /* fall through */ |
| 459 | default: |
| 460 | if (i == 2) |
| 461 | continue; /* IRQ2 is never connected */ |
| 462 | } |
| 463 | |
| 464 | if (ELCR_fallback) { |
| 465 | /* |
| 466 | * If the ELCR indicates a level-sensitive interrupt, we |
| 467 | * copy that information over to the MP table in the |
| 468 | * irqflag field (level sensitive, active high polarity). |
| 469 | */ |
| 470 | if (ELCR_trigger(i)) |
| 471 | intsrc.mpc_irqflag = 13; |
| 472 | else |
| 473 | intsrc.mpc_irqflag = 0; |
| 474 | } |
| 475 | |
| 476 | intsrc.mpc_srcbusirq = i; |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 477 | intsrc.mpc_dstirq = i ? i : 2; /* IRQ0 to INTIN2 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | MP_intsrc_info(&intsrc); |
| 479 | } |
| 480 | |
| 481 | intsrc.mpc_irqtype = mp_ExtINT; |
| 482 | intsrc.mpc_srcbusirq = 0; |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 483 | intsrc.mpc_dstirq = 0; /* 8259A to INTIN0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | MP_intsrc_info(&intsrc); |
| 485 | } |
| 486 | |
Alexey Starikovskiy | 61048c6 | 2008-04-04 23:41:07 +0400 | [diff] [blame] | 487 | #endif |
| 488 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | static inline void __init construct_default_ISA_mptable(int mpc_default_type) |
| 490 | { |
| 491 | struct mpc_config_processor processor; |
| 492 | struct mpc_config_bus bus; |
Alexey Starikovskiy | 61048c6 | 2008-04-04 23:41:07 +0400 | [diff] [blame] | 493 | #ifdef CONFIG_X86_IO_APIC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | struct mpc_config_ioapic ioapic; |
Alexey Starikovskiy | 61048c6 | 2008-04-04 23:41:07 +0400 | [diff] [blame] | 495 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | struct mpc_config_lintsrc lintsrc; |
| 497 | int linttypes[2] = { mp_ExtINT, mp_NMI }; |
| 498 | int i; |
| 499 | |
| 500 | /* |
| 501 | * local APIC has default address |
| 502 | */ |
| 503 | mp_lapic_addr = APIC_DEFAULT_PHYS_BASE; |
| 504 | |
| 505 | /* |
| 506 | * 2 CPUs, numbered 0 & 1. |
| 507 | */ |
| 508 | processor.mpc_type = MP_PROCESSOR; |
| 509 | /* Either an integrated APIC or a discrete 82489DX. */ |
| 510 | processor.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01; |
| 511 | processor.mpc_cpuflag = CPU_ENABLED; |
| 512 | processor.mpc_cpufeature = (boot_cpu_data.x86 << 8) | |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 513 | (boot_cpu_data.x86_model << 4) | boot_cpu_data.x86_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | processor.mpc_featureflag = boot_cpu_data.x86_capability[0]; |
| 515 | processor.mpc_reserved[0] = 0; |
| 516 | processor.mpc_reserved[1] = 0; |
| 517 | for (i = 0; i < 2; i++) { |
| 518 | processor.mpc_apicid = i; |
| 519 | MP_processor_info(&processor); |
| 520 | } |
| 521 | |
| 522 | bus.mpc_type = MP_BUS; |
| 523 | bus.mpc_busid = 0; |
| 524 | switch (mpc_default_type) { |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 525 | default: |
Alexey Starikovskiy | 62441bf | 2008-04-04 23:42:34 +0400 | [diff] [blame] | 526 | printk(KERN_ERR "???\nUnknown standard configuration %d\n", |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 527 | mpc_default_type); |
| 528 | /* fall through */ |
| 529 | case 1: |
| 530 | case 5: |
| 531 | memcpy(bus.mpc_bustype, "ISA ", 6); |
| 532 | break; |
| 533 | case 2: |
| 534 | case 6: |
| 535 | case 3: |
| 536 | memcpy(bus.mpc_bustype, "EISA ", 6); |
| 537 | break; |
| 538 | case 4: |
| 539 | case 7: |
| 540 | memcpy(bus.mpc_bustype, "MCA ", 6); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | } |
| 542 | MP_bus_info(&bus); |
| 543 | if (mpc_default_type > 4) { |
| 544 | bus.mpc_busid = 1; |
| 545 | memcpy(bus.mpc_bustype, "PCI ", 6); |
| 546 | MP_bus_info(&bus); |
| 547 | } |
| 548 | |
Alexey Starikovskiy | 61048c6 | 2008-04-04 23:41:07 +0400 | [diff] [blame] | 549 | #ifdef CONFIG_X86_IO_APIC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | ioapic.mpc_type = MP_IOAPIC; |
| 551 | ioapic.mpc_apicid = 2; |
| 552 | ioapic.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01; |
| 553 | ioapic.mpc_flags = MPC_APIC_USABLE; |
| 554 | ioapic.mpc_apicaddr = 0xFEC00000; |
| 555 | MP_ioapic_info(&ioapic); |
| 556 | |
| 557 | /* |
| 558 | * We set up most of the low 16 IO-APIC pins according to MPS rules. |
| 559 | */ |
| 560 | construct_default_ioirq_mptable(mpc_default_type); |
Alexey Starikovskiy | 61048c6 | 2008-04-04 23:41:07 +0400 | [diff] [blame] | 561 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | lintsrc.mpc_type = MP_LINTSRC; |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 563 | lintsrc.mpc_irqflag = 0; /* conforming */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | lintsrc.mpc_srcbusid = 0; |
| 565 | lintsrc.mpc_srcbusirq = 0; |
| 566 | lintsrc.mpc_destapic = MP_APIC_ALL; |
| 567 | for (i = 0; i < 2; i++) { |
| 568 | lintsrc.mpc_irqtype = linttypes[i]; |
| 569 | lintsrc.mpc_destapiclint = i; |
| 570 | MP_lintsrc_info(&lintsrc); |
| 571 | } |
| 572 | } |
| 573 | |
| 574 | static struct intel_mp_floating *mpf_found; |
| 575 | |
| 576 | /* |
| 577 | * Scan the memory blocks for an SMP configuration block. |
| 578 | */ |
Alexey Starikovskiy | 888032c | 2008-04-04 23:42:09 +0400 | [diff] [blame] | 579 | static void __init __get_smp_config(unsigned early) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | { |
| 581 | struct intel_mp_floating *mpf = mpf_found; |
| 582 | |
Alexey Starikovskiy | 888032c | 2008-04-04 23:42:09 +0400 | [diff] [blame] | 583 | if (acpi_lapic && early) |
| 584 | return; |
| 585 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | /* |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 587 | * ACPI supports both logical (e.g. Hyper-Threading) and physical |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | * processors, where MPS only supports physical. |
| 589 | */ |
| 590 | if (acpi_lapic && acpi_ioapic) { |
Alexey Starikovskiy | 4421b1c | 2008-04-04 23:42:40 +0400 | [diff] [blame] | 591 | printk(KERN_INFO "Using ACPI (MADT) for SMP configuration " |
| 592 | "information\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | return; |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 594 | } else if (acpi_lapic) |
Alexey Starikovskiy | 4421b1c | 2008-04-04 23:42:40 +0400 | [diff] [blame] | 595 | printk(KERN_INFO "Using ACPI for processor (LAPIC) " |
| 596 | "configuration information\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 598 | printk(KERN_INFO "Intel MultiProcessor Specification v1.%d\n", |
| 599 | mpf->mpf_specification); |
Alexey Starikovskiy | 4421b1c | 2008-04-04 23:42:40 +0400 | [diff] [blame] | 600 | #ifdef CONFIG_X86_32 |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 601 | if (mpf->mpf_feature2 & (1 << 7)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | printk(KERN_INFO " IMCR and PIC compatibility mode.\n"); |
| 603 | pic_mode = 1; |
| 604 | } else { |
| 605 | printk(KERN_INFO " Virtual Wire compatibility mode.\n"); |
| 606 | pic_mode = 0; |
| 607 | } |
Alexey Starikovskiy | 4421b1c | 2008-04-04 23:42:40 +0400 | [diff] [blame] | 608 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | /* |
| 610 | * Now see if we need to read further. |
| 611 | */ |
| 612 | if (mpf->mpf_feature1 != 0) { |
Alexey Starikovskiy | 888032c | 2008-04-04 23:42:09 +0400 | [diff] [blame] | 613 | if (early) { |
| 614 | /* |
| 615 | * local APIC has default address |
| 616 | */ |
| 617 | mp_lapic_addr = APIC_DEFAULT_PHYS_BASE; |
| 618 | return; |
| 619 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 621 | printk(KERN_INFO "Default MP configuration #%d\n", |
| 622 | mpf->mpf_feature1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | construct_default_ISA_mptable(mpf->mpf_feature1); |
| 624 | |
| 625 | } else if (mpf->mpf_physptr) { |
| 626 | |
| 627 | /* |
| 628 | * Read the physical hardware table. Anything here will |
| 629 | * override the defaults. |
| 630 | */ |
Alexey Starikovskiy | 888032c | 2008-04-04 23:42:09 +0400 | [diff] [blame] | 631 | if (!smp_read_mpc(phys_to_virt(mpf->mpf_physptr), early)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | smp_found_config = 0; |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 633 | printk(KERN_ERR |
| 634 | "BIOS bug, MP table errors detected!...\n"); |
Alexey Starikovskiy | 4421b1c | 2008-04-04 23:42:40 +0400 | [diff] [blame] | 635 | printk(KERN_ERR "... disabling SMP support. " |
| 636 | "(tell your hw vendor)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | return; |
| 638 | } |
Alexey Starikovskiy | 61048c6 | 2008-04-04 23:41:07 +0400 | [diff] [blame] | 639 | |
Alexey Starikovskiy | 888032c | 2008-04-04 23:42:09 +0400 | [diff] [blame] | 640 | if (early) |
| 641 | return; |
Alexey Starikovskiy | 61048c6 | 2008-04-04 23:41:07 +0400 | [diff] [blame] | 642 | #ifdef CONFIG_X86_IO_APIC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | /* |
| 644 | * If there are no explicit MP IRQ entries, then we are |
| 645 | * broken. We set up most of the low 16 IO-APIC pins to |
| 646 | * ISA defaults and hope it will work. |
| 647 | */ |
| 648 | if (!mp_irq_entries) { |
| 649 | struct mpc_config_bus bus; |
| 650 | |
Alexey Starikovskiy | 4421b1c | 2008-04-04 23:42:40 +0400 | [diff] [blame] | 651 | printk(KERN_ERR "BIOS bug, no explicit IRQ entries, " |
| 652 | "using default mptable. " |
| 653 | "(tell your hw vendor)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | |
| 655 | bus.mpc_type = MP_BUS; |
| 656 | bus.mpc_busid = 0; |
| 657 | memcpy(bus.mpc_bustype, "ISA ", 6); |
| 658 | MP_bus_info(&bus); |
| 659 | |
| 660 | construct_default_ioirq_mptable(0); |
| 661 | } |
Alexey Starikovskiy | 61048c6 | 2008-04-04 23:41:07 +0400 | [diff] [blame] | 662 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | } else |
| 664 | BUG(); |
| 665 | |
Alexey Starikovskiy | 888032c | 2008-04-04 23:42:09 +0400 | [diff] [blame] | 666 | if (!early) |
| 667 | printk(KERN_INFO "Processors: %d\n", num_processors); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | /* |
| 669 | * Only use the first configuration found. |
| 670 | */ |
| 671 | } |
| 672 | |
Alexey Starikovskiy | 888032c | 2008-04-04 23:42:09 +0400 | [diff] [blame] | 673 | void __init early_get_smp_config(void) |
| 674 | { |
| 675 | __get_smp_config(1); |
| 676 | } |
| 677 | |
| 678 | void __init get_smp_config(void) |
| 679 | { |
| 680 | __get_smp_config(0); |
| 681 | } |
| 682 | |
| 683 | static int __init smp_scan_config(unsigned long base, unsigned long length, |
| 684 | unsigned reserve) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | { |
Alexey Starikovskiy | 92fd4b7 | 2008-04-04 23:42:46 +0400 | [diff] [blame] | 686 | extern void __bad_mpf_size(void); |
| 687 | unsigned int *bp = phys_to_virt(base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | struct intel_mp_floating *mpf; |
| 689 | |
Alexey Starikovskiy | 92fd4b7 | 2008-04-04 23:42:46 +0400 | [diff] [blame] | 690 | Dprintk("Scan SMP from %p for %ld bytes.\n", bp, length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | if (sizeof(*mpf) != 16) |
Alexey Starikovskiy | 92fd4b7 | 2008-04-04 23:42:46 +0400 | [diff] [blame] | 692 | __bad_mpf_size(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | |
| 694 | while (length > 0) { |
| 695 | mpf = (struct intel_mp_floating *)bp; |
| 696 | if ((*bp == SMP_MAGIC_IDENT) && |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 697 | (mpf->mpf_length == 1) && |
| 698 | !mpf_checksum((unsigned char *)bp, 16) && |
| 699 | ((mpf->mpf_specification == 1) |
| 700 | || (mpf->mpf_specification == 4))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | |
| 702 | smp_found_config = 1; |
Alexey Starikovskiy | 92fd4b7 | 2008-04-04 23:42:46 +0400 | [diff] [blame] | 703 | mpf_found = mpf; |
| 704 | #ifdef CONFIG_X86_32 |
Ingo Molnar | e91a3b4 | 2008-01-30 13:33:08 +0100 | [diff] [blame] | 705 | printk(KERN_INFO "found SMP MP-table at [%p] %08lx\n", |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 706 | mpf, virt_to_phys(mpf)); |
Bernhard Walle | 72a7fe3 | 2008-02-07 00:15:17 -0800 | [diff] [blame] | 707 | reserve_bootmem(virt_to_phys(mpf), PAGE_SIZE, |
| 708 | BOOTMEM_DEFAULT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | if (mpf->mpf_physptr) { |
| 710 | /* |
| 711 | * We cannot access to MPC table to compute |
| 712 | * table size yet, as only few megabytes from |
| 713 | * the bottom is mapped now. |
| 714 | * PC-9800's MPC table places on the very last |
| 715 | * of physical memory; so that simply reserving |
| 716 | * PAGE_SIZE from mpg->mpf_physptr yields BUG() |
| 717 | * in reserve_bootmem. |
| 718 | */ |
| 719 | unsigned long size = PAGE_SIZE; |
| 720 | unsigned long end = max_low_pfn * PAGE_SIZE; |
| 721 | if (mpf->mpf_physptr + size > end) |
| 722 | size = end - mpf->mpf_physptr; |
Bernhard Walle | 72a7fe3 | 2008-02-07 00:15:17 -0800 | [diff] [blame] | 723 | reserve_bootmem(mpf->mpf_physptr, size, |
| 724 | BOOTMEM_DEFAULT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | } |
| 726 | |
Alexey Starikovskiy | 92fd4b7 | 2008-04-04 23:42:46 +0400 | [diff] [blame] | 727 | #else |
| 728 | if (!reserve) |
| 729 | return 1; |
| 730 | |
| 731 | reserve_bootmem_generic(virt_to_phys(mpf), PAGE_SIZE); |
| 732 | if (mpf->mpf_physptr) |
| 733 | reserve_bootmem_generic(mpf->mpf_physptr, |
| 734 | PAGE_SIZE); |
| 735 | #endif |
| 736 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | } |
| 738 | bp += 4; |
| 739 | length -= 16; |
| 740 | } |
| 741 | return 0; |
| 742 | } |
| 743 | |
Alexey Starikovskiy | 888032c | 2008-04-04 23:42:09 +0400 | [diff] [blame] | 744 | static void __init __find_smp_config(unsigned reserve) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | { |
| 746 | unsigned int address; |
| 747 | |
| 748 | /* |
| 749 | * FIXME: Linux assumes you have 640K of base ram.. |
| 750 | * this continues the error... |
| 751 | * |
| 752 | * 1) Scan the bottom 1K for a signature |
| 753 | * 2) Scan the top 1K of base RAM |
| 754 | * 3) Scan the 64K of bios |
| 755 | */ |
Alexey Starikovskiy | 888032c | 2008-04-04 23:42:09 +0400 | [diff] [blame] | 756 | if (smp_scan_config(0x0, 0x400, reserve) || |
| 757 | smp_scan_config(639 * 0x400, 0x400, reserve) || |
| 758 | smp_scan_config(0xF0000, 0x10000, reserve)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | return; |
| 760 | /* |
| 761 | * If it is an SMP machine we should know now, unless the |
| 762 | * configuration is in an EISA/MCA bus machine with an |
| 763 | * extended bios data area. |
| 764 | * |
| 765 | * there is a real-mode segmented pointer pointing to the |
| 766 | * 4K EBDA area at 0x40E, calculate and scan it here. |
| 767 | * |
| 768 | * NOTE! There are Linux loaders that will corrupt the EBDA |
| 769 | * area, and as such this kind of SMP config may be less |
| 770 | * trustworthy, simply because the SMP table may have been |
| 771 | * stomped on during early boot. These loaders are buggy and |
| 772 | * should be fixed. |
| 773 | * |
| 774 | * MP1.4 SPEC states to only scan first 1K of 4K EBDA. |
| 775 | */ |
| 776 | |
| 777 | address = get_bios_ebda(); |
| 778 | if (address) |
Alexey Starikovskiy | 888032c | 2008-04-04 23:42:09 +0400 | [diff] [blame] | 779 | smp_scan_config(address, 0x400, reserve); |
| 780 | } |
| 781 | |
| 782 | void __init early_find_smp_config(void) |
| 783 | { |
| 784 | __find_smp_config(0); |
| 785 | } |
| 786 | |
| 787 | void __init find_smp_config(void) |
| 788 | { |
| 789 | __find_smp_config(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | } |
| 791 | |
| 792 | /* -------------------------------------------------------------------------- |
| 793 | ACPI-based MP Configuration |
| 794 | -------------------------------------------------------------------------- */ |
| 795 | |
Len Brown | 888ba6c | 2005-08-24 12:07:20 -0400 | [diff] [blame] | 796 | #ifdef CONFIG_ACPI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | |
Len Brown | 8466361 | 2005-08-24 12:09:07 -0400 | [diff] [blame] | 798 | #ifdef CONFIG_X86_IO_APIC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | |
| 800 | #define MP_ISA_BUS 0 |
| 801 | #define MP_MAX_IOAPIC_PIN 127 |
| 802 | |
Alexey Starikovskiy | 9e5c5f1 | 2008-04-04 23:41:26 +0400 | [diff] [blame] | 803 | extern struct mp_ioapic_routing mp_ioapic_routing[MAX_IO_APICS]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 805 | static int mp_find_ioapic(int gsi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | { |
Andi Kleen | 19f03ff | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 807 | int i = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | |
| 809 | /* Find the IOAPIC that manages this GSI. */ |
| 810 | for (i = 0; i < nr_ioapics; i++) { |
| 811 | if ((gsi >= mp_ioapic_routing[i].gsi_base) |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 812 | && (gsi <= mp_ioapic_routing[i].gsi_end)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | return i; |
| 814 | } |
| 815 | |
| 816 | 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] | 817 | return -1; |
| 818 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | |
Alexey Starikovskiy | e3e3ffa | 2008-03-17 22:08:11 +0300 | [diff] [blame] | 820 | static u8 uniq_ioapic_id(u8 id) |
| 821 | { |
Alexey Starikovskiy | 22cbb4b | 2008-04-04 23:42:53 +0400 | [diff] [blame^] | 822 | #ifdef CONFIG_X86_32 |
Alexey Starikovskiy | e3e3ffa | 2008-03-17 22:08:11 +0300 | [diff] [blame] | 823 | if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) && |
| 824 | !APIC_XAPIC(apic_version[boot_cpu_physical_apicid])) |
| 825 | return io_apic_get_unique_id(nr_ioapics, id); |
| 826 | else |
| 827 | return id; |
Alexey Starikovskiy | 22cbb4b | 2008-04-04 23:42:53 +0400 | [diff] [blame^] | 828 | #else |
| 829 | int i; |
| 830 | DECLARE_BITMAP(used, 256); |
| 831 | bitmap_zero(used, 256); |
| 832 | for (i = 0; i < nr_ioapics; i++) { |
| 833 | struct mpc_config_ioapic *ia = &mp_ioapics[i]; |
| 834 | __set_bit(ia->mpc_apicid, used); |
| 835 | } |
| 836 | if (!test_bit(id, used)) |
| 837 | return id; |
| 838 | return find_first_zero_bit(used, 256); |
| 839 | #endif |
Alexey Starikovskiy | e3e3ffa | 2008-03-17 22:08:11 +0300 | [diff] [blame] | 840 | } |
| 841 | |
Jack Steiner | a65d1d6 | 2008-03-28 14:12:08 -0500 | [diff] [blame] | 842 | void __init mp_register_ioapic(int id, u32 address, u32 gsi_base) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | { |
Andi Kleen | 19f03ff | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 844 | int idx = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | |
Alexey Starikovskiy | 857033a | 2008-03-17 22:08:05 +0300 | [diff] [blame] | 846 | if (bad_ioapic(address)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | |
Alexey Starikovskiy | e3e3ffa | 2008-03-17 22:08:11 +0300 | [diff] [blame] | 849 | idx = nr_ioapics; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | |
| 851 | mp_ioapics[idx].mpc_type = MP_IOAPIC; |
| 852 | mp_ioapics[idx].mpc_flags = MPC_APIC_USABLE; |
| 853 | mp_ioapics[idx].mpc_apicaddr = address; |
| 854 | |
| 855 | set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address); |
Alexey Starikovskiy | e3e3ffa | 2008-03-17 22:08:11 +0300 | [diff] [blame] | 856 | mp_ioapics[idx].mpc_apicid = uniq_ioapic_id(id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | mp_ioapics[idx].mpc_apicver = io_apic_get_version(idx); |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 858 | |
| 859 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | * Build basic GSI lookup table to facilitate gsi->io_apic lookups |
| 861 | * and to prevent reprogramming of IOAPIC pins (PCI GSIs). |
| 862 | */ |
| 863 | mp_ioapic_routing[idx].apic_id = mp_ioapics[idx].mpc_apicid; |
| 864 | mp_ioapic_routing[idx].gsi_base = gsi_base; |
Thomas Gleixner | 64883ab | 2008-01-30 13:30:35 +0100 | [diff] [blame] | 865 | mp_ioapic_routing[idx].gsi_end = gsi_base + |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 866 | io_apic_get_redir_entries(idx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | |
Thomas Gleixner | 64883ab | 2008-01-30 13:30:35 +0100 | [diff] [blame] | 868 | printk("IOAPIC[%d]: apic_id %d, version %d, address 0x%x, " |
| 869 | "GSI %d-%d\n", idx, mp_ioapics[idx].mpc_apicid, |
Alexey Starikovskiy | e3e3ffa | 2008-03-17 22:08:11 +0300 | [diff] [blame] | 870 | mp_ioapics[idx].mpc_apicver, |
| 871 | mp_ioapics[idx].mpc_apicaddr, |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 872 | mp_ioapic_routing[idx].gsi_base, mp_ioapic_routing[idx].gsi_end); |
Alexey Starikovskiy | e3e3ffa | 2008-03-17 22:08:11 +0300 | [diff] [blame] | 873 | |
| 874 | nr_ioapics++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | } |
| 876 | |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 877 | 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] | 878 | { |
| 879 | struct mpc_config_intsrc intsrc; |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 880 | int ioapic = -1; |
| 881 | int pin = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 883 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | * Convert 'gsi' to 'ioapic.pin'. |
| 885 | */ |
| 886 | ioapic = mp_find_ioapic(gsi); |
| 887 | if (ioapic < 0) |
| 888 | return; |
| 889 | pin = gsi - mp_ioapic_routing[ioapic].gsi_base; |
| 890 | |
| 891 | /* |
| 892 | * TBD: This check is for faulty timer entries, where the override |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 893 | * erroneously sets the trigger to level, resulting in a HUGE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | * increase of timer interrupts! |
| 895 | */ |
| 896 | if ((bus_irq == 0) && (trigger == 3)) |
| 897 | trigger = 1; |
| 898 | |
| 899 | intsrc.mpc_type = MP_INTSRC; |
| 900 | intsrc.mpc_irqtype = mp_INT; |
| 901 | intsrc.mpc_irqflag = (trigger << 2) | polarity; |
| 902 | intsrc.mpc_srcbus = MP_ISA_BUS; |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 903 | intsrc.mpc_srcbusirq = bus_irq; /* IRQ */ |
| 904 | intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid; /* APIC ID */ |
| 905 | intsrc.mpc_dstirq = pin; /* INTIN# */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | |
| 907 | Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, %d-%d\n", |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 908 | intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3, |
| 909 | (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 910 | intsrc.mpc_srcbusirq, intsrc.mpc_dstapic, intsrc.mpc_dstirq); |
| 911 | |
| 912 | mp_irqs[mp_irq_entries] = intsrc; |
| 913 | if (++mp_irq_entries == MAX_IRQ_SOURCES) |
| 914 | panic("Max # of irq sources exceeded!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | } |
| 916 | |
Alexey Starikovskiy | 2df2972 | 2008-03-27 23:53:54 +0300 | [diff] [blame] | 917 | int es7000_plat; |
| 918 | |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 919 | void __init mp_config_acpi_legacy_irqs(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | { |
| 921 | struct mpc_config_intsrc intsrc; |
Andi Kleen | 19f03ff | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 922 | int i = 0; |
| 923 | int ioapic = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 924 | |
Alexey Starikovskiy | c0a282c | 2008-03-20 14:55:02 +0300 | [diff] [blame] | 925 | #if defined (CONFIG_MCA) || defined (CONFIG_EISA) |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 926 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | * Fabricate the legacy ISA bus (bus #31). |
| 928 | */ |
| 929 | mp_bus_id_to_type[MP_ISA_BUS] = MP_BUS_ISA; |
Alexey Starikovskiy | c0a282c | 2008-03-20 14:55:02 +0300 | [diff] [blame] | 930 | #endif |
Alexey Starikovskiy | a6333c3 | 2008-03-20 14:54:09 +0300 | [diff] [blame] | 931 | set_bit(MP_ISA_BUS, mp_bus_not_pci); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | Dprintk("Bus #%d is ISA\n", MP_ISA_BUS); |
| 933 | |
| 934 | /* |
| 935 | * Older generations of ES7000 have no legacy identity mappings |
| 936 | */ |
| 937 | if (es7000_plat == 1) |
| 938 | return; |
| 939 | |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 940 | /* |
| 941 | * Locate the IOAPIC that manages the ISA IRQs (0-15). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | */ |
| 943 | ioapic = mp_find_ioapic(0); |
| 944 | if (ioapic < 0) |
| 945 | return; |
| 946 | |
| 947 | intsrc.mpc_type = MP_INTSRC; |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 948 | intsrc.mpc_irqflag = 0; /* Conforming */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 949 | intsrc.mpc_srcbus = MP_ISA_BUS; |
Alexey Starikovskiy | 61048c6 | 2008-04-04 23:41:07 +0400 | [diff] [blame] | 950 | #ifdef CONFIG_X86_IO_APIC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid; |
Alexey Starikovskiy | 61048c6 | 2008-04-04 23:41:07 +0400 | [diff] [blame] | 952 | #endif |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 953 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | * Use the default configuration for the IRQs 0-15. Unless |
Simon Arlott | 27b46d7 | 2007-10-20 01:13:56 +0200 | [diff] [blame] | 955 | * overridden by (MADT) interrupt source override entries. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | */ |
| 957 | for (i = 0; i < 16; i++) { |
| 958 | int idx; |
| 959 | |
| 960 | for (idx = 0; idx < mp_irq_entries; idx++) { |
| 961 | struct mpc_config_intsrc *irq = mp_irqs + idx; |
| 962 | |
| 963 | /* Do we already have a mapping for this ISA IRQ? */ |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 964 | if (irq->mpc_srcbus == MP_ISA_BUS |
| 965 | && irq->mpc_srcbusirq == i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | break; |
| 967 | |
| 968 | /* Do we already have a mapping for this IOAPIC pin */ |
| 969 | if ((irq->mpc_dstapic == intsrc.mpc_dstapic) && |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 970 | (irq->mpc_dstirq == i)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 971 | break; |
| 972 | } |
| 973 | |
| 974 | if (idx != mp_irq_entries) { |
| 975 | printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i); |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 976 | continue; /* IRQ already used */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | } |
| 978 | |
| 979 | intsrc.mpc_irqtype = mp_INT; |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 980 | intsrc.mpc_srcbusirq = i; /* Identity mapped */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | intsrc.mpc_dstirq = i; |
| 982 | |
| 983 | Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, " |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 984 | "%d-%d\n", intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3, |
| 985 | (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus, |
| 986 | intsrc.mpc_srcbusirq, intsrc.mpc_dstapic, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 987 | intsrc.mpc_dstirq); |
| 988 | |
| 989 | mp_irqs[mp_irq_entries] = intsrc; |
| 990 | if (++mp_irq_entries == MAX_IRQ_SOURCES) |
| 991 | panic("Max # of irq sources exceeded!\n"); |
| 992 | } |
| 993 | } |
| 994 | |
Natalie Protasevich | c434b7a | 2005-06-23 00:08:29 -0700 | [diff] [blame] | 995 | #define MAX_GSI_NUM 4096 |
Len Brown | 2ba7dee | 2008-01-30 13:31:02 +0100 | [diff] [blame] | 996 | #define IRQ_COMPRESSION_START 64 |
Natalie Protasevich | c434b7a | 2005-06-23 00:08:29 -0700 | [diff] [blame] | 997 | |
Andi Kleen | 19f03ff | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 998 | int mp_register_gsi(u32 gsi, int triggering, int polarity) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 | { |
Andi Kleen | 19f03ff | 2006-09-26 10:52:30 +0200 | [diff] [blame] | 1000 | int ioapic = -1; |
| 1001 | int ioapic_pin = 0; |
| 1002 | int idx, bit = 0; |
Len Brown | 2ba7dee | 2008-01-30 13:31:02 +0100 | [diff] [blame] | 1003 | static int pci_irq = IRQ_COMPRESSION_START; |
Natalie Protasevich | c434b7a | 2005-06-23 00:08:29 -0700 | [diff] [blame] | 1004 | /* |
Joe Perches | ab4a574 | 2008-01-30 13:31:42 +0100 | [diff] [blame] | 1005 | * Mapping between Global System Interrupts, which |
Natalie Protasevich | c434b7a | 2005-06-23 00:08:29 -0700 | [diff] [blame] | 1006 | * represent all possible interrupts, and IRQs |
| 1007 | * assigned to actual devices. |
| 1008 | */ |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 1009 | static int gsi_to_irq[MAX_GSI_NUM]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | /* 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] | 1012 | if (acpi_gbl_FADT.sci_interrupt == gsi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1013 | return gsi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | |
| 1015 | ioapic = mp_find_ioapic(gsi); |
| 1016 | if (ioapic < 0) { |
| 1017 | printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi); |
| 1018 | return gsi; |
| 1019 | } |
| 1020 | |
| 1021 | ioapic_pin = gsi - mp_ioapic_routing[ioapic].gsi_base; |
| 1022 | |
| 1023 | if (ioapic_renumber_irq) |
| 1024 | gsi = ioapic_renumber_irq(ioapic, gsi); |
| 1025 | |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 1026 | /* |
| 1027 | * Avoid pin reprogramming. PRTs typically include entries |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | * with redundant pin->gsi mappings (but unique PCI devices); |
| 1029 | * we only program the IOAPIC on the first. |
| 1030 | */ |
| 1031 | bit = ioapic_pin % 32; |
| 1032 | idx = (ioapic_pin < 32) ? 0 : (ioapic_pin / 32); |
| 1033 | if (idx > 3) { |
| 1034 | printk(KERN_ERR "Invalid reference to IOAPIC pin " |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 1035 | "%d-%d\n", mp_ioapic_routing[ioapic].apic_id, |
| 1036 | ioapic_pin); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | return gsi; |
| 1038 | } |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 1039 | if ((1 << bit) & mp_ioapic_routing[ioapic].pin_programmed[idx]) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1040 | Dprintk(KERN_DEBUG "Pin %d-%d already programmed\n", |
| 1041 | mp_ioapic_routing[ioapic].apic_id, ioapic_pin); |
Len Brown | 2ba7dee | 2008-01-30 13:31:02 +0100 | [diff] [blame] | 1042 | return (gsi < IRQ_COMPRESSION_START ? gsi : gsi_to_irq[gsi]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 | } |
| 1044 | |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 1045 | mp_ioapic_routing[ioapic].pin_programmed[idx] |= (1 << bit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | |
Len Brown | 2ba7dee | 2008-01-30 13:31:02 +0100 | [diff] [blame] | 1047 | /* |
| 1048 | * For GSI >= 64, use IRQ compression |
| 1049 | */ |
| 1050 | if ((gsi >= IRQ_COMPRESSION_START) |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 1051 | && (triggering == ACPI_LEVEL_SENSITIVE)) { |
Natalie Protasevich | c434b7a | 2005-06-23 00:08:29 -0700 | [diff] [blame] | 1052 | /* |
| 1053 | * For PCI devices assign IRQs in order, avoiding gaps |
| 1054 | * due to unused I/O APIC pins. |
| 1055 | */ |
| 1056 | int irq = gsi; |
| 1057 | if (gsi < MAX_GSI_NUM) { |
Kimball Murray | e0c1e9b | 2006-05-08 15:17:16 +0200 | [diff] [blame] | 1058 | /* |
| 1059 | * Retain the VIA chipset work-around (gsi > 15), but |
| 1060 | * avoid a problem where the 8254 timer (IRQ0) is setup |
| 1061 | * via an override (so it's not on pin 0 of the ioapic), |
| 1062 | * and at the same time, the pin 0 interrupt is a PCI |
| 1063 | * type. The gsi > 15 test could cause these two pins |
| 1064 | * to be shared as IRQ0, and they are not shareable. |
| 1065 | * So test for this condition, and if necessary, avoid |
| 1066 | * the pin collision. |
| 1067 | */ |
Adrian Bunk | ede1389 | 2008-03-17 22:29:32 +0200 | [diff] [blame] | 1068 | gsi = pci_irq++; |
Natalie.Protasevich@unisys.com | e1afc3f | 2005-07-29 14:03:32 -0700 | [diff] [blame] | 1069 | /* |
| 1070 | * Don't assign IRQ used by ACPI SCI |
| 1071 | */ |
Alexey Starikovskiy | cee324b | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 1072 | if (gsi == acpi_gbl_FADT.sci_interrupt) |
Natalie.Protasevich@unisys.com | e1afc3f | 2005-07-29 14:03:32 -0700 | [diff] [blame] | 1073 | gsi = pci_irq++; |
Natalie Protasevich | c434b7a | 2005-06-23 00:08:29 -0700 | [diff] [blame] | 1074 | gsi_to_irq[irq] = gsi; |
| 1075 | } else { |
| 1076 | printk(KERN_ERR "GSI %u is too high\n", gsi); |
| 1077 | return gsi; |
| 1078 | } |
| 1079 | } |
| 1080 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | io_apic_set_pci_routing(ioapic, ioapic_pin, gsi, |
Alexey Starikovskiy | 4ef8129 | 2008-04-04 23:42:03 +0400 | [diff] [blame] | 1082 | triggering == ACPI_EDGE_SENSITIVE ? 0 : 1, |
| 1083 | polarity == ACPI_ACTIVE_HIGH ? 0 : 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1084 | return gsi; |
| 1085 | } |
| 1086 | |
Len Brown | 8466361 | 2005-08-24 12:09:07 -0400 | [diff] [blame] | 1087 | #endif /* CONFIG_X86_IO_APIC */ |
Len Brown | 888ba6c | 2005-08-24 12:07:20 -0400 | [diff] [blame] | 1088 | #endif /* CONFIG_ACPI */ |