Searched refs:tfms (Results 1 – 2 of 2) sorted by relevance
/arch/x86/boot/ |
D | cpuflags.c | 86 u32 tfms; in get_cpuflags() local 102 cpuid(0x1, &tfms, &ignored, &cpu.flags[4], in get_cpuflags() 104 cpu.level = (tfms >> 8) & 15; in get_cpuflags() 105 cpu.model = (tfms >> 4) & 15; in get_cpuflags() 107 cpu.model += ((tfms >> 16) & 0xf) << 4; in get_cpuflags()
|
/arch/x86/kernel/cpu/ |
D | common.c | 650 u32 junk, tfms, cap0, misc; in cpu_detect() local 652 cpuid(0x00000001, &tfms, &misc, &junk, &cap0); in cpu_detect() 653 c->x86 = (tfms >> 8) & 0xf; in cpu_detect() 654 c->x86_model = (tfms >> 4) & 0xf; in cpu_detect() 655 c->x86_stepping = tfms & 0xf; in cpu_detect() 658 c->x86 += (tfms >> 20) & 0xff; in cpu_detect() 660 c->x86_model += ((tfms >> 16) & 0xf) << 4; in cpu_detect()
|