All of lore.kernel.org
 help / color / mirror / Atom feed
* A patch to support centrino 1GHz
@ 2003-10-27  2:18 Youichi Aso
  2003-10-27  8:42 ` Jeremy Fitzhardinge
  0 siblings, 1 reply; 3+ messages in thread
From: Youichi Aso @ 2003-10-27  2:18 UTC (permalink / raw)
  To: cpufreq

[-- Attachment #1: Type: text/plain, Size: 755 bytes --]

I recently bought a new laptop(Panasonic CF-T2) with Pentium M 1GHz.
I installed RedHat9.0 and upgraded the kernel to 2.4.22 with the latest 
CPUFreq patches for 2.4.
Then I found that speedstep-centrino.o failed to be loaded with the 
following error message,

speedstep-centrino: no support for CPU model "Intel(R) Pentium(R) M 
processor 1000MHz": send /proc/cpuinfo to Jeremy Fitzhardinge 
<jeremy@goop.org>

So I added Pentium M 1GHz model entry in speedstep-centrino.c (See the 
patch attached).
This works fine with my laptop.
I looked up the frequency-voltage table for the processor in the revised 
version of Pentium M data sheet, 252612-002.pdf, from Intel.

#If this information has been reported already, please disregard this.

Youichi Aso.

[-- Attachment #2: patch --]
[-- Type: text/plain, Size: 770 bytes --]

*** speedstep-centrino.c	2003-10-27 10:57:21.000000000 +0900
--- speedstep-centrino.c.new	2003-10-27 10:57:21.000000000 +0900
***************
*** 73,78 ****
--- 73,88 ----
  	{ .frequency = CPUFREQ_TABLE_END }
  };
  
+ /* Ultra Low Voltage Intel Pentium M processor 1000MHz */
+ static struct cpufreq_frequency_table op_1000[] =
+   {
+     OP(600,  844),
+     OP(800,  972),
+     OP(900, 988),
+     OP(1000, 1004),
+     { .frequency = CPUFREQ_TABLE_END }
+   };
+ 
  /* Low Voltage Intel Pentium M processor 1.10GHz */
  static struct cpufreq_frequency_table op_1100[] =
  {
***************
*** 165,170 ****
--- 175,181 ----
  static const struct cpu_model models[] = 
  {
         _CPU( 900, " 900"),
+        CPU(1000),
  	CPU(1100),
  	CPU(1200),
  	CPU(1300),

[-- Attachment #3: Type: text/plain, Size: 143 bytes --]

_______________________________________________
Cpufreq mailing list
Cpufreq@www.linux.org.uk
http://www.linux.org.uk/mailman/listinfo/cpufreq

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2003-10-27 19:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-10-27  2:18 A patch to support centrino 1GHz Youichi Aso
2003-10-27  8:42 ` Jeremy Fitzhardinge
2003-10-27 19:17   ` Dave Jones

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.