aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/kernel')
-rw-r--r--arch/x86/kernel/apic/apic.c24
-rw-r--r--arch/x86/kernel/mpparse.c8
2 files changed, 4 insertions, 28 deletions
diff --git a/arch/x86/kernel/apic/apic.c b/arch/x86/kernel/apic/apic.c
index c02bf135de9d..f507f311d44d 100644
--- a/arch/x86/kernel/apic/apic.c
+++ b/arch/x86/kernel/apic/apic.c
@@ -1630,28 +1630,6 @@ no_apic:
1630} 1630}
1631#endif 1631#endif
1632 1632
1633#ifdef CONFIG_X86_64
1634void __init early_init_lapic_mapping(void)
1635{
1636 /*
1637 * If no local APIC can be found then go out
1638 * : it means there is no mpatable and MADT
1639 */
1640 if (!smp_found_config)
1641 return;
1642
1643 set_fixmap_nocache(FIX_APIC_BASE, mp_lapic_addr);
1644 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
1645 APIC_BASE, mp_lapic_addr);
1646
1647 /*
1648 * Fetch the APIC ID of the BSP in case we have a
1649 * default configuration (or the MP table is broken).
1650 */
1651 boot_cpu_physical_apicid = read_apic_id();
1652}
1653#endif
1654
1655/** 1633/**
1656 * init_apic_mappings - initialize APIC mappings 1634 * init_apic_mappings - initialize APIC mappings
1657 */ 1635 */
@@ -1707,6 +1685,8 @@ void __init register_lapic_address(unsigned long address)
1707 mp_lapic_addr = address; 1685 mp_lapic_addr = address;
1708 1686
1709 set_fixmap_nocache(FIX_APIC_BASE, address); 1687 set_fixmap_nocache(FIX_APIC_BASE, address);
1688 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
1689 APIC_BASE, mp_lapic_addr);
1710 if (boot_cpu_physical_apicid == -1U) { 1690 if (boot_cpu_physical_apicid == -1U) {
1711 boot_cpu_physical_apicid = read_apic_id(); 1691 boot_cpu_physical_apicid = read_apic_id();
1712 apic_version[boot_cpu_physical_apicid] = 1692 apic_version[boot_cpu_physical_apicid] =
diff --git a/arch/x86/kernel/mpparse.c b/arch/x86/kernel/mpparse.c
index db0b70317949..27ccb7075342 100644
--- a/arch/x86/kernel/mpparse.c
+++ b/arch/x86/kernel/mpparse.c
@@ -289,17 +289,13 @@ static int __init smp_read_mpc(struct mpc_table *mpc, unsigned early)
289#ifdef CONFIG_X86_32 289#ifdef CONFIG_X86_32
290 generic_mps_oem_check(mpc, oem, str); 290 generic_mps_oem_check(mpc, oem, str);
291#endif 291#endif
292 /* save the local APIC address, it might be non-default */ 292 /* Initialize the lapic mapping */
293 if (!acpi_lapic) 293 if (!acpi_lapic)
294 mp_lapic_addr = mpc->lapic; 294 register_lapic_address(mpc->lapic);
295 295
296 if (early) 296 if (early)
297 return 1; 297 return 1;
298 298
299 /* Initialize the lapic mapping */
300 if (!acpi_lapic)
301 register_lapic_address(mpc->lapic);
302
303 if (mpc->oemptr) 299 if (mpc->oemptr)
304 x86_init.mpparse.smp_read_mpc_oem(mpc); 300 x86_init.mpparse.smp_read_mpc_oem(mpc);
305 301