* Processor 6 model 0x16
@ 2008-02-02 19:52 Woody Suwalski
0 siblings, 0 replies; only message in thread
From: Woody Suwalski @ 2008-02-02 19:52 UTC (permalink / raw)
To: cpufreq
Howdy, I have recently got a prototype MB from ASUS with the unsupported
processor (probably new ;-) ).
Printk's at the beginning of cpufreq_p4_get_frequency function show
x86=0x06 and x86_model=0x16.
The processor is unmarked, but looks similar to current PentiumM
processors (but then maybe all processors are packaged same way?)
What would be the safe(est) sequence of tests: say start with case 0x09
AND 0x16
or skip Banias and try Dothan to start?
Or no point - all current Intel stuf should be more or less Core comaptible?
Thanks, Woody Suwalski
Ottawa
PS. The board is in the office, so I can not give you more details till
Monday...
static unsigned int cpufreq_p4_get_frequency(struct cpuinfo_x86 *c)
{
if (c->x86 == 0x06) {
if (cpu_has(c, X86_FEATURE_EST))
printk(KERN_WARNING PFX "Warning: EST-capable
CPU detected. "
"The acpi-cpufreq module offers voltage
scaling"
" in addition of frequency scaling. You
should use "
"that instead of p4-clockmod, if
possible.\n");
switch (c->x86_model) {
case 0x0E: /* Core */
case 0x0F: /* Core Duo */
p4clockmod_driver.flags |= CPUFREQ_CONST_LOOPS;
return
speedstep_get_processor_frequency(SPEEDSTEP_PROCESSOR_PCORE);
case 0x0D: /* Pentium M (Dothan) */
p4clockmod_driver.flags |= CPUFREQ_CONST_LOOPS;
/* fall through */
case 0x09: /* Pentium M (Banias) */
return
speedstep_get_processor_frequency(SPEEDSTEP_PROCESSOR_PM);
}
}
if (c->x86 != 0xF) {
printk(KERN_WARNING PFX "Unknown p4-clockmod-capable
CPU. Please
send an e-mail to <cpufreq@lists.linux.org.uk>\n");
return 0;
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-02-02 19:52 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-02 19:52 Processor 6 model 0x16 Woody Suwalski
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox