Project

General

Profile

Bug #171 ยป identcpu.diff

dragonfly, 05/08/2006 06:22 PM

View differences:

sys/i386/i386/identcpu.c 14 Apr 2006 14:08:05 -0000
case 0x580:
strcpy(cpu_model, "IDT WinChip 2");
break;
case 0x660:
strcpy(cpu_model, "VIA C3 Samuel");
break;
case 0x670:
strcpy(cpu_model, "VIA C3 Samuel 2");
if (cpu_id & 0x8)
strcpy(cpu_model, "VIA C3 Ezra");
else
strcpy(cpu_model, "VIA C3 Samuel 2");
break;
case 0x680:
strcpy(cpu_model, "VIA C3 Ezra-T");
break;
case 0x690:
strcpy(cpu_model, "VIA C3 Nehemiah");
do_cpuid(0xc0000000, regs);
if (regs[0] == 0xc0000001) {
do_cpuid(0xc0000001, regs);
if ((cpu_id & 0xf) >= 3)
if ((regs[3] & 0x0c) == 0x0c)
strcat(cpu_model, "+RNG");
if ((cpu_id & 0xf) >= 8)
if ((regs[3] & 0xc0) == 0xc0)
strcat(cpu_model, "+ACE");
}
break;
default:
strcpy(cpu_model, "VIA/IDT Unknown");
    (1-1/1)