DragonFly BSD
DragonFly submit List (threaded) for 2006-05
[Date Prev][Date Next]  [Thread Prev][Thread Next]  [Date Index][Thread Index]

patch for est patch for missing cpu


From: Tom Hummel <tom@xxxxxxxxxxxxx>
Date: Thu, 11 May 2006 23:35:39 +0200

this patch adds support for Pentium 710 which isn't included in fbsd est
because this cpu isn't mentioned in the Intel docs.

However my lap has one.
The voltages this patch uses are those, which the msr of the cpu allows and
which the Pentium 715A uses, it works fine and seems to be correct,
however since these numbers are not official, I can't guarantee anything.

. ..tom
--- est.c.orig	2005-07-30 08:17:33.000000000 +0200
+++ est.c	2006-05-11 23:16:40.000000000 +0200
@@ -374,6 +374,15 @@
 	{  600,  988 },
 	{    0,    0 },
 };
+static freq_info PM_710_90[] = {
+        /* 90 nm 1.40GHz Pentium M */
+        {1400, 1340 },
+        {1200, 1228 },
+        {1000, 1148 },
+        { 800, 1068 },
+        { 600,  988 },
+        {   0,    0 },
+};
 static freq_info PM_738_90[] = {
 /* 90 nm 1.40GHz Low Voltage Pentium M */
 	{ 1400, 1116 },
@@ -465,6 +474,8 @@
 		PM_715C_90, 1500, 1308, 600, 988),
 	CPUINFO("600 800 1000 1200 1500",
 		PM_715D_90, 1500, 1276, 600, 988),
+	CPUINFO("600 800 1000 1200 1400",
+		PM_710_90, 1400, 1340, 600, 988),
 	CPUINFO("600 800 900 1000 1100 1200 1300 1400",
 		PM_738_90, 1400, 1116, 600, 988),
 	CPUINFO("600 800 900 1000 1100",


[Date Prev][Date Next]  [Thread Prev][Thread Next]  [Date Index][Thread Index]