aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86_64
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86_64')
-rw-r--r--arch/x86_64/kernel/genapic.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/x86_64/kernel/genapic.c b/arch/x86_64/kernel/genapic.c
index d2c42fb99cb3..69b9c25a8fc4 100644
--- a/arch/x86_64/kernel/genapic.c
+++ b/arch/x86_64/kernel/genapic.c
@@ -20,6 +20,10 @@
20#include <asm/smp.h> 20#include <asm/smp.h>
21#include <asm/ipi.h> 21#include <asm/ipi.h>
22 22
23#if defined(CONFIG_ACPI_BUS)
24#include <acpi/acpi_bus.h>
25#endif
26
23/* which logical CPU number maps to which CPU (physical APIC ID) */ 27/* which logical CPU number maps to which CPU (physical APIC ID) */
24u8 x86_cpu_to_apicid[NR_CPUS] = { [0 ... NR_CPUS-1] = BAD_APICID }; 28u8 x86_cpu_to_apicid[NR_CPUS] = { [0 ... NR_CPUS-1] = BAD_APICID };
25EXPORT_SYMBOL(x86_cpu_to_apicid); 29EXPORT_SYMBOL(x86_cpu_to_apicid);
@@ -47,6 +51,18 @@ void __init clustered_apic_check(void)
47 goto print; 51 goto print;
48 } 52 }
49 53
54#if defined(CONFIG_ACPI_BUS)
55 /*
56 * Some x86_64 machines use physical APIC mode regardless of how many
57 * procs/clusters are present (x86_64 ES7000 is an example).
58 */
59 if (acpi_fadt.revision > FADT2_REVISION_ID)
60 if (acpi_fadt.force_apic_physical_destination_mode) {
61 genapic = &apic_cluster;
62 goto print;
63 }
64#endif
65
50 memset(cluster_cnt, 0, sizeof(cluster_cnt)); 66 memset(cluster_cnt, 0, sizeof(cluster_cnt));
51 67
52 for (i = 0; i < NR_CPUS; i++) { 68 for (i = 0; i < NR_CPUS; i++) {