aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/apic
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2015-01-15 16:22:22 -0500
committerThomas Gleixner <tglx@linutronix.de>2015-01-22 09:10:55 -0500
commit12e189d3cfa4c64de758bde18626184bf32c65fc (patch)
treecdfe176972518a498d1b868ad95242a69d415eb4 /arch/x86/kernel/apic
parent62e61633daeb0b53f0506aa6e170e2e4cc75cd65 (diff)
x86/x2apic: Add proper state tracking
Having 3 different variables to track the state is just silly and error prone. Add a proper state tracking variable which covers the three possible states: ON/OFF/DISABLED. We cannot use x2apic_mode for this as this would require to change all users of x2apic_mode with explicit comparisons for a state value instead of treating it as boolean. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Acked-by: Borislav Petkov <bp@alien8.de> Cc: Jiang Liu <jiang.liu@linux.intel.com> Cc: Joerg Roedel <joro@8bytes.org> Cc: Tony Luck <tony.luck@intel.com> Link: http://lkml.kernel.org/r/20150115211702.955392443@linutronix.de Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/apic')
-rw-r--r--arch/x86/kernel/apic/apic.c15
1 files changed, 14 insertions, 1 deletions
diff --git a/arch/x86/kernel/apic/apic.c b/arch/x86/kernel/apic/apic.c
index 06b75216d171..b374b0de342b 100644
--- a/arch/x86/kernel/apic/apic.c
+++ b/arch/x86/kernel/apic/apic.c
@@ -1480,6 +1480,14 @@ static bool nox2apic __initdata;
1480#ifdef CONFIG_X86_X2APIC 1480#ifdef CONFIG_X86_X2APIC
1481int x2apic_mode; 1481int x2apic_mode;
1482static int x2apic_disabled; 1482static int x2apic_disabled;
1483
1484enum {
1485 X2APIC_OFF,
1486 X2APIC_ON,
1487 X2APIC_DISABLED,
1488};
1489static int x2apic_state;
1490
1483static int __init setup_nox2apic(char *str) 1491static int __init setup_nox2apic(char *str)
1484{ 1492{
1485 if (x2apic_enabled()) { 1493 if (x2apic_enabled()) {
@@ -1496,7 +1504,7 @@ static int __init setup_nox2apic(char *str)
1496 setup_clear_cpu_cap(X86_FEATURE_X2APIC); 1504 setup_clear_cpu_cap(X86_FEATURE_X2APIC);
1497 1505
1498 nox2apic = true; 1506 nox2apic = true;
1499 1507 x2apic_state = X2APIC_DISABLED;
1500 return 0; 1508 return 0;
1501} 1509}
1502early_param("nox2apic", setup_nox2apic); 1510early_param("nox2apic", setup_nox2apic);
@@ -1539,6 +1547,7 @@ static __init void disable_x2apic(void)
1539 } 1547 }
1540 1548
1541 x2apic_disabled = 1; 1549 x2apic_disabled = 1;
1550 x2apic_state = X2APIC_DISABLED;
1542} 1551}
1543 1552
1544void enable_x2apic(void) 1553void enable_x2apic(void)
@@ -1559,6 +1568,7 @@ void enable_x2apic(void)
1559 printk_once(KERN_INFO "Enabling x2apic\n"); 1568 printk_once(KERN_INFO "Enabling x2apic\n");
1560 wrmsrl(MSR_IA32_APICBASE, msr | X2APIC_ENABLE); 1569 wrmsrl(MSR_IA32_APICBASE, msr | X2APIC_ENABLE);
1561 } 1570 }
1571 x2apic_state = X2APIC_ON;
1562} 1572}
1563 1573
1564static __init void try_to_enable_x2apic(int remap_mode) 1574static __init void try_to_enable_x2apic(int remap_mode)
@@ -1597,6 +1607,9 @@ void __init check_x2apic(void)
1597 if (x2apic_enabled()) { 1607 if (x2apic_enabled()) {
1598 pr_info("x2apic: enabled by BIOS, switching to x2apic ops\n"); 1608 pr_info("x2apic: enabled by BIOS, switching to x2apic ops\n");
1599 x2apic_mode = 1; 1609 x2apic_mode = 1;
1610 x2apic_state = X2APIC_ON;
1611 } else if (!cpu_has_x2apic) {
1612 x2apic_state = X2APIC_DISABLED;
1600 } 1613 }
1601} 1614}
1602#else /* CONFIG_X86_X2APIC */ 1615#else /* CONFIG_X86_X2APIC */