diff options
author | Alexey Starikovskiy <astarikovskiy@suse.de> | 2008-04-04 15:41:57 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-17 11:41:35 -0400 |
commit | 31d2092eb0c23636b73d2c24c0c11b66470cef58 (patch) | |
tree | d2bc92d15ada32ae100187b702da4a21a047c758 /arch/x86/kernel/acpi/boot.c | |
parent | dfac2189c2e1fbb90ee83f15b5e404425754e9f4 (diff) |
x86: move mp_register_lapic_address to boot.c
Signed-off-by: Alexey Starikovskiy <astarikovskiy@suse.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/acpi/boot.c')
-rw-r--r-- | arch/x86/kernel/acpi/boot.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c index 11bd11847b19..057ccf1d5ad4 100644 --- a/arch/x86/kernel/acpi/boot.c +++ b/arch/x86/kernel/acpi/boot.c | |||
@@ -765,6 +765,16 @@ static int __init acpi_parse_fadt(struct acpi_table_header *table) | |||
765 | * Parse LAPIC entries in MADT | 765 | * Parse LAPIC entries in MADT |
766 | * returns 0 on success, < 0 on error | 766 | * returns 0 on success, < 0 on error |
767 | */ | 767 | */ |
768 | |||
769 | static void __init acpi_register_lapic_address(unsigned long address) | ||
770 | { | ||
771 | mp_lapic_addr = address; | ||
772 | |||
773 | set_fixmap_nocache(FIX_APIC_BASE, address); | ||
774 | if (boot_cpu_physical_apicid == -1U) | ||
775 | boot_cpu_physical_apicid = GET_APIC_ID(read_apic_id()); | ||
776 | } | ||
777 | |||
768 | static int __init acpi_parse_madt_lapic_entries(void) | 778 | static int __init acpi_parse_madt_lapic_entries(void) |
769 | { | 779 | { |
770 | int count; | 780 | int count; |
@@ -786,7 +796,7 @@ static int __init acpi_parse_madt_lapic_entries(void) | |||
786 | return count; | 796 | return count; |
787 | } | 797 | } |
788 | 798 | ||
789 | mp_register_lapic_address(acpi_lapic_addr); | 799 | acpi_register_lapic_address(acpi_lapic_addr); |
790 | 800 | ||
791 | count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_SAPIC, | 801 | count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_SAPIC, |
792 | acpi_parse_sapic, MAX_APICS); | 802 | acpi_parse_sapic, MAX_APICS); |