diff options
author | Alexey Starikovskiy <astarikovskiy@suse.de> | 2008-03-27 16:56:19 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-17 11:41:32 -0400 |
commit | be8a5685e4cdb904e6542e741fcc3bae1becb8ee (patch) | |
tree | f619c2f1cdda9d780caec7e33c8b1de896469700 /arch/x86/kernel/apic_64.c | |
parent | 86cc0d916a9cc55b0b46a9b31e9379cd3c9e10dc (diff) |
x86: move generic_processor_info to apic_64.c
Signed-off-by: Alexey Starikovskiy <astarikovskiy@suse.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/apic_64.c')
-rw-r--r-- | arch/x86/kernel/apic_64.c | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/arch/x86/kernel/apic_64.c b/arch/x86/kernel/apic_64.c index d7d3594f93e3..4ee521ff0a3e 100644 --- a/arch/x86/kernel/apic_64.c +++ b/arch/x86/kernel/apic_64.c | |||
@@ -91,6 +91,7 @@ unsigned long mp_lapic_addr; | |||
91 | unsigned int boot_cpu_physical_apicid = -1U; | 91 | unsigned int boot_cpu_physical_apicid = -1U; |
92 | EXPORT_SYMBOL(boot_cpu_physical_apicid); | 92 | EXPORT_SYMBOL(boot_cpu_physical_apicid); |
93 | 93 | ||
94 | unsigned int __cpuinitdata maxcpus = NR_CPUS; | ||
94 | /* | 95 | /* |
95 | * Get the LAPIC version | 96 | * Get the LAPIC version |
96 | */ | 97 | */ |
@@ -1057,6 +1058,52 @@ void disconnect_bsp_APIC(int virt_wire_setup) | |||
1057 | apic_write(APIC_LVT1, value); | 1058 | apic_write(APIC_LVT1, value); |
1058 | } | 1059 | } |
1059 | 1060 | ||
1061 | void __cpuinit generic_processor_info(int apicid, int version) | ||
1062 | { | ||
1063 | int cpu; | ||
1064 | cpumask_t tmp_map; | ||
1065 | |||
1066 | if (num_processors >= NR_CPUS) { | ||
1067 | printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached." | ||
1068 | " Processor ignored.\n", NR_CPUS); | ||
1069 | return; | ||
1070 | } | ||
1071 | |||
1072 | if (num_processors >= maxcpus) { | ||
1073 | printk(KERN_WARNING "WARNING: maxcpus limit of %i reached." | ||
1074 | " Processor ignored.\n", maxcpus); | ||
1075 | return; | ||
1076 | } | ||
1077 | |||
1078 | num_processors++; | ||
1079 | cpus_complement(tmp_map, cpu_present_map); | ||
1080 | cpu = first_cpu(tmp_map); | ||
1081 | |||
1082 | physid_set(apicid, phys_cpu_present_map); | ||
1083 | if (apicid == boot_cpu_physical_apicid) { | ||
1084 | /* | ||
1085 | * x86_bios_cpu_apicid is required to have processors listed | ||
1086 | * in same order as logical cpu numbers. Hence the first | ||
1087 | * entry is BSP, and so on. | ||
1088 | */ | ||
1089 | cpu = 0; | ||
1090 | } | ||
1091 | /* are we being called early in kernel startup? */ | ||
1092 | if (x86_cpu_to_apicid_early_ptr) { | ||
1093 | u16 *cpu_to_apicid = x86_cpu_to_apicid_early_ptr; | ||
1094 | u16 *bios_cpu_apicid = x86_bios_cpu_apicid_early_ptr; | ||
1095 | |||
1096 | cpu_to_apicid[cpu] = apicid; | ||
1097 | bios_cpu_apicid[cpu] = apicid; | ||
1098 | } else { | ||
1099 | per_cpu(x86_cpu_to_apicid, cpu) = apicid; | ||
1100 | per_cpu(x86_bios_cpu_apicid, cpu) = apicid; | ||
1101 | } | ||
1102 | |||
1103 | cpu_set(cpu, cpu_possible_map); | ||
1104 | cpu_set(cpu, cpu_present_map); | ||
1105 | } | ||
1106 | |||
1060 | /* | 1107 | /* |
1061 | * Power management | 1108 | * Power management |
1062 | */ | 1109 | */ |