|
@@ -233,10 +233,10 @@ static void __init early_cpu_detect(void)
|
|
cpuid(0x00000001, &tfms, &misc, &junk, &cap0);
|
|
cpuid(0x00000001, &tfms, &misc, &junk, &cap0);
|
|
c->x86 = (tfms >> 8) & 15;
|
|
c->x86 = (tfms >> 8) & 15;
|
|
c->x86_model = (tfms >> 4) & 15;
|
|
c->x86_model = (tfms >> 4) & 15;
|
|
- if (c->x86 == 0xf) {
|
|
|
|
|
|
+ if (c->x86 == 0xf)
|
|
c->x86 += (tfms >> 20) & 0xff;
|
|
c->x86 += (tfms >> 20) & 0xff;
|
|
|
|
+ if (c->x86 >= 0x6)
|
|
c->x86_model += ((tfms >> 16) & 0xF) << 4;
|
|
c->x86_model += ((tfms >> 16) & 0xF) << 4;
|
|
- }
|
|
|
|
c->x86_mask = tfms & 15;
|
|
c->x86_mask = tfms & 15;
|
|
if (cap0 & (1<<19))
|
|
if (cap0 & (1<<19))
|
|
c->x86_cache_alignment = ((misc >> 8) & 0xff) * 8;
|
|
c->x86_cache_alignment = ((misc >> 8) & 0xff) * 8;
|