Skip to content

Commit

Permalink
x86: cpu/common*.c, merge generic_identify()
Browse files Browse the repository at this point in the history
Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Yinghai Lu authored and Ingo Molnar committed Sep 5, 2008
1 parent 56f0d03 commit b89d3b3
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 6 deletions.
15 changes: 12 additions & 3 deletions arch/x86/kernel/cpu/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -548,6 +548,10 @@ void __init early_cpu_init(void)
* of early VIA chips and (more importantly) broken virtualizers that
* are not easy to detect. Hence, probe for it based on first
* principles.
*
* Note: no 64-bit chip is known to lack these, but put the code here
* for consistency with 32 bits, and to make it utterly trivial to
* diagnose the problem should it ever surface.
*/
static void __cpuinit detect_nopl(struct cpuinfo_x86 *c)
{
Expand Down Expand Up @@ -586,11 +590,16 @@ static void __cpuinit generic_identify(struct cpuinfo_x86 *c)

if (c->cpuid_level >= 0x00000001) {
c->initial_apicid = (cpuid_ebx(1) >> 24) & 0xFF;
#ifdef CONFIG_X86_HT
#ifdef CONFIG_X86_32
# ifdef CONFIG_X86_HT
c->apicid = phys_pkg_id(c->initial_apicid, 0);
c->phys_proc_id = c->initial_apicid;
#else
# else
c->apicid = c->initial_apicid;
# endif
#endif

#ifdef CONFIG_X86_HT
c->phys_proc_id = c->initial_apicid;
#endif
}

Expand Down
19 changes: 16 additions & 3 deletions arch/x86/kernel/cpu/common_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -581,6 +581,9 @@ static void __cpuinit detect_nopl(struct cpuinfo_x86 *c)

static void __cpuinit generic_identify(struct cpuinfo_x86 *c)
{
if (!have_cpuid_p())
return;

c->extended_cpuid_level = 0;

cpu_detect(c);
Expand All @@ -589,11 +592,21 @@ static void __cpuinit generic_identify(struct cpuinfo_x86 *c)

get_cpu_cap(c);

c->initial_apicid = (cpuid_ebx(1) >> 24) & 0xff;
#ifdef CONFIG_SMP
c->phys_proc_id = c->initial_apicid;
if (c->cpuid_level >= 0x00000001) {
c->initial_apicid = (cpuid_ebx(1) >> 24) & 0xFF;
#ifdef CONFIG_X86_32
# ifdef CONFIG_X86_HT
c->apicid = phys_pkg_id(c->initial_apicid, 0);
# else
c->apicid = c->initial_apicid;
# endif
#endif

#ifdef CONFIG_X86_HT
c->phys_proc_id = c->initial_apicid;
#endif
}

if (c->extended_cpuid_level >= 0x80000004)
get_model_name(c); /* Default name */

Expand Down

0 comments on commit b89d3b3

Please sign in to comment.