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