Searched refs:tfms (Results 1 – 2 of 2) sorted by relevance
/arch/x86/boot/ |
D | cpucheck.c | 112 u32 tfms; in get_flags() local 128 : "=a" (tfms), in get_flags() 133 cpu.level = (tfms >> 8) & 15; in get_flags() 134 cpu.model = (tfms >> 4) & 15; in get_flags() 136 cpu.model += ((tfms >> 16) & 0xf) << 4; in get_flags()
|
/arch/x86/kernel/cpu/ |
D | common.c | 544 u32 junk, tfms, cap0, misc; in cpu_detect() local 546 cpuid(0x00000001, &tfms, &misc, &junk, &cap0); in cpu_detect() 547 c->x86 = (tfms >> 8) & 0xf; in cpu_detect() 548 c->x86_model = (tfms >> 4) & 0xf; in cpu_detect() 549 c->x86_mask = tfms & 0xf; in cpu_detect() 552 c->x86 += (tfms >> 20) & 0xff; in cpu_detect() 554 c->x86_model += ((tfms >> 16) & 0xf) << 4; in cpu_detect() 565 u32 tfms, xlvl; in get_cpu_cap() local 572 cpuid(0x00000001, &tfms, &ebx, &excap, &capability); in get_cpu_cap()
|