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