blob: b59878a0d9b31a6f58b939f64bebadc656c55752 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * (C) 2001-2004 Dave Jones. <davej@codemonkey.org.uk>
3 * (C) 2002 Padraig Brady. <padraig@antefacto.com>
4 *
5 * Licensed under the terms of the GNU GPL License version 2.
6 * Based upon datasheets & sample CPUs kindly provided by VIA.
7 *
8 * VIA have currently 3 different versions of Longhaul.
9 * Version 1 (Longhaul) uses the BCR2 MSR at 0x1147.
10 * It is present only in Samuel 1 (C5A), Samuel 2 (C5B) stepping 0.
Rafa³ Bilski2b8c0e12007-02-14 22:00:37 +010011 * Version 2 of longhaul is backward compatible with v1, but adds
12 * LONGHAUL MSR for purpose of both frequency and voltage scaling.
13 * Present in Samuel 2 (steppings 1-7 only) (C5B), and Ezra (C5C).
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * Version 3 of longhaul got renamed to Powersaver and redesigned
Rafa³ Bilski2b8c0e12007-02-14 22:00:37 +010015 * to use only the POWERSAVER MSR at 0x110a.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 * It is present in Ezra-T (C5M), Nehemiah (C5X) and above.
17 * It's pretty much the same feature wise to longhaul v2, though
18 * there is provision for scaling FSB too, but this doesn't work
19 * too well in practice so we don't even try to use this.
20 *
21 * BIG FAT DISCLAIMER: Work in progress code. Possibly *dangerous*
22 */
23
24#include <linux/kernel.h>
25#include <linux/module.h>
26#include <linux/moduleparam.h>
27#include <linux/init.h>
28#include <linux/cpufreq.h>
Rafa³ Bilski179da8e2006-08-08 19:12:20 +020029#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/slab.h>
31#include <linux/string.h>
32
33#include <asm/msr.h>
34#include <asm/timex.h>
35#include <asm/io.h>
Rafa³ Bilskidadb49d2006-07-03 07:19:05 +020036#include <asm/acpi.h>
37#include <linux/acpi.h>
38#include <acpi/processor.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40#include "longhaul.h"
41
42#define PFX "longhaul: "
43
44#define TYPE_LONGHAUL_V1 1
45#define TYPE_LONGHAUL_V2 2
46#define TYPE_POWERSAVER 3
47
48#define CPU_SAMUEL 1
49#define CPU_SAMUEL2 2
50#define CPU_EZRA 3
51#define CPU_EZRA_T 4
52#define CPU_NEHEMIAH 5
Rafa³ Bilski980342a2007-01-31 23:42:47 +010053#define CPU_NEHEMIAH_C 6
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Rafa³ Bilski264166e2006-12-24 14:04:23 +010055/* Flags */
56#define USE_ACPI_C3 (1 << 1)
57#define USE_NORTHBRIDGE (1 << 2)
Rafa³ Bilski786f46b2007-02-04 18:43:12 +010058#define USE_VT8235 (1 << 3)
Rafa³ Bilski264166e2006-12-24 14:04:23 +010059
Linus Torvalds1da177e2005-04-16 15:20:36 -070060static int cpu_model;
Rafa³ Bilskidb44aaf2006-08-16 01:07:33 +020061static unsigned int numscales=16;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062static unsigned int fsb;
Rafa³ Bilskidb44aaf2006-08-16 01:07:33 +020063
64static struct mV_pos *vrm_mV_table;
65static unsigned char *mV_vrm_table;
66struct f_msr {
Rafa³ Bilski348f31e2007-02-08 18:56:04 +010067 u8 vrm;
68 u8 pos;
Rafa³ Bilskidb44aaf2006-08-16 01:07:33 +020069};
70static struct f_msr f_msr_table[32];
71
72static unsigned int highest_speed, lowest_speed; /* kHz */
Linus Torvalds1da177e2005-04-16 15:20:36 -070073static unsigned int minmult, maxmult;
74static int can_scale_voltage;
Rafa³ Bilskidadb49d2006-07-03 07:19:05 +020075static struct acpi_processor *pr = NULL;
76static struct acpi_processor_cx *cx = NULL;
Rafa³ Bilski264166e2006-12-24 14:04:23 +010077static u8 longhaul_flags;
Rafa³ Bilski348f31e2007-02-08 18:56:04 +010078static u8 longhaul_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80/* Module parameters */
Rafa³ Bilskidb44aaf2006-08-16 01:07:33 +020081static int scale_voltage;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83#define dprintk(msg...) cpufreq_debug_printk(CPUFREQ_DEBUG_DRIVER, "longhaul", msg)
84
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086/* Clock ratios multiplied by 10 */
87static int clock_ratio[32];
88static int eblcr_table[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -070089static int longhaul_version;
90static struct cpufreq_frequency_table *longhaul_table;
91
92#ifdef CONFIG_CPU_FREQ_DEBUG
93static char speedbuffer[8];
94
95static char *print_speed(int speed)
96{
Dave Jonese2aa8732006-05-30 17:37:15 -040097 if (speed < 1000) {
98 snprintf(speedbuffer, sizeof(speedbuffer),"%dMHz", speed);
99 return speedbuffer;
100 }
101
102 if (speed%1000 == 0)
103 snprintf(speedbuffer, sizeof(speedbuffer),
104 "%dGHz", speed/1000);
105 else
106 snprintf(speedbuffer, sizeof(speedbuffer),
107 "%d.%dGHz", speed/1000, (speed%1000)/100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 return speedbuffer;
110}
111#endif
112
113
114static unsigned int calc_speed(int mult)
115{
116 int khz;
117 khz = (mult/10)*fsb;
118 if (mult%10)
119 khz += fsb/2;
120 khz *= 1000;
121 return khz;
122}
123
124
125static int longhaul_get_cpu_mult(void)
126{
127 unsigned long invalue=0,lo, hi;
128
129 rdmsr (MSR_IA32_EBL_CR_POWERON, lo, hi);
130 invalue = (lo & (1<<22|1<<23|1<<24|1<<25)) >>22;
131 if (longhaul_version==TYPE_LONGHAUL_V2 || longhaul_version==TYPE_POWERSAVER) {
132 if (lo & (1<<27))
133 invalue+=16;
134 }
135 return eblcr_table[invalue];
136}
137
Rafa³ Bilskidadb49d2006-07-03 07:19:05 +0200138/* For processor with BCR2 MSR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Rafa³ Bilski179da8e2006-08-08 19:12:20 +0200140static void do_longhaul1(unsigned int clock_ratio_index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
Rafa³ Bilskidadb49d2006-07-03 07:19:05 +0200142 union msr_bcr2 bcr2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Rafa³ Bilskidadb49d2006-07-03 07:19:05 +0200144 rdmsrl(MSR_VIA_BCR2, bcr2.val);
145 /* Enable software clock multiplier */
146 bcr2.bits.ESOFTBF = 1;
147 bcr2.bits.CLOCKMUL = clock_ratio_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Rafa³ Bilskidadb49d2006-07-03 07:19:05 +0200149 /* Sync to timer tick */
Zachary Amsden4bb0d3e2005-09-03 15:56:36 -0700150 safe_halt();
Rafa³ Bilskidadb49d2006-07-03 07:19:05 +0200151 /* Change frequency on next halt or sleep */
152 wrmsrl(MSR_VIA_BCR2, bcr2.val);
Rafa³ Bilski179da8e2006-08-08 19:12:20 +0200153 /* Invoke transition */
154 ACPI_FLUSH_CPU_CACHE();
155 halt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Rafa³ Bilskidadb49d2006-07-03 07:19:05 +0200157 /* Disable software clock multiplier */
Dave Jones3be6a482005-05-31 19:03:51 -0700158 local_irq_disable();
Rafa³ Bilskidadb49d2006-07-03 07:19:05 +0200159 rdmsrl(MSR_VIA_BCR2, bcr2.val);
160 bcr2.bits.ESOFTBF = 0;
161 wrmsrl(MSR_VIA_BCR2, bcr2.val);
162}
Dave Jones3be6a482005-05-31 19:03:51 -0700163
Rafa³ Bilskidadb49d2006-07-03 07:19:05 +0200164/* For processor with Longhaul MSR */
Dave Jones11746312005-05-31 19:03:51 -0700165
Rafa³ Bilskidadb49d2006-07-03 07:19:05 +0200166static void do_powersaver(int cx_address, unsigned int clock_ratio_index)
167{
168 union msr_longhaul longhaul;
Rafa³ Bilski348f31e2007-02-08 18:56:04 +0100169 u8 dest_pos;
Rafa³ Bilskidadb49d2006-07-03 07:19:05 +0200170 u32 t;
Dave Jones3be6a482005-05-31 19:03:51 -0700171
Rafa³ Bilski348f31e2007-02-08 18:56:04 +0100172 dest_pos = f_msr_table[clock_ratio_index].pos;
173
Rafa³ Bilskidadb49d2006-07-03 07:19:05 +0200174 rdmsrl(MSR_VIA_LONGHAUL, longhaul.val);
Rafa³ Bilski348f31e2007-02-08 18:56:04 +0100175 /* Setup new frequency */
Rafa³ Bilskidadb49d2006-07-03 07:19:05 +0200176 longhaul.bits.RevisionKey = longhaul.bits.RevisionID;
177 longhaul.bits.SoftBusRatio = clock_ratio_index & 0xf;
178 longhaul.bits.SoftBusRatio4 = (clock_ratio_index & 0x10) >> 4;
Rafa³ Bilski348f31e2007-02-08 18:56:04 +0100179 /* Setup new voltage */
180 if (can_scale_voltage)
Rafa³ Bilskidb44aaf2006-08-16 01:07:33 +0200181 longhaul.bits.SoftVID = f_msr_table[clock_ratio_index].vrm;
Rafa³ Bilskidadb49d2006-07-03 07:19:05 +0200182 /* Sync to timer tick */
183 safe_halt();
Rafa³ Bilski348f31e2007-02-08 18:56:04 +0100184 /* Raise voltage if necessary */
185 if (can_scale_voltage && longhaul_pos < dest_pos) {
186 longhaul.bits.EnableSoftVID = 1;
187 wrmsrl(MSR_VIA_LONGHAUL, longhaul.val);
188 /* Change voltage */
189 if (!cx_address) {
190 ACPI_FLUSH_CPU_CACHE();
191 halt();
192 } else {
193 ACPI_FLUSH_CPU_CACHE();
194 /* Invoke C3 */
195 inb(cx_address);
196 /* Dummy op - must do something useless after P_LVL3
197 * read */
Dave Jonesbd0561c2007-02-10 20:36:29 -0500198 t = inl(acpi_gbl_FADT.xpm_timer_block.address);
Rafa³ Bilski348f31e2007-02-08 18:56:04 +0100199 }
200 longhaul.bits.EnableSoftVID = 0;
201 wrmsrl(MSR_VIA_LONGHAUL, longhaul.val);
202 longhaul_pos = dest_pos;
203 }
204
Rafa³ Bilskidadb49d2006-07-03 07:19:05 +0200205 /* Change frequency on next halt or sleep */
Rafa³ Bilski348f31e2007-02-08 18:56:04 +0100206 longhaul.bits.EnableSoftBusRatio = 1;
Rafa³ Bilskidadb49d2006-07-03 07:19:05 +0200207 wrmsrl(MSR_VIA_LONGHAUL, longhaul.val);
Rafa³ Bilski264166e2006-12-24 14:04:23 +0100208 if (!cx_address) {
rafalbilski@interia.pl7f1be892006-09-24 20:28:13 +0200209 ACPI_FLUSH_CPU_CACHE();
rafalbilski@interia.pl7f1be892006-09-24 20:28:13 +0200210 halt();
211 } else {
212 ACPI_FLUSH_CPU_CACHE();
213 /* Invoke C3 */
214 inb(cx_address);
215 /* Dummy op - must do something useless after P_LVL3 read */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300216 t = inl(acpi_gbl_FADT.xpm_timer_block.address);
rafalbilski@interia.pl7f1be892006-09-24 20:28:13 +0200217 }
Rafa³ Bilskidadb49d2006-07-03 07:19:05 +0200218 /* Disable bus ratio bit */
Rafa³ Bilskidadb49d2006-07-03 07:19:05 +0200219 longhaul.bits.EnableSoftBusRatio = 0;
Rafa³ Bilskidadb49d2006-07-03 07:19:05 +0200220 wrmsrl(MSR_VIA_LONGHAUL, longhaul.val);
Rafa³ Bilski348f31e2007-02-08 18:56:04 +0100221
222 /* Reduce voltage if necessary */
223 if (can_scale_voltage && longhaul_pos > dest_pos) {
224 longhaul.bits.EnableSoftVID = 1;
225 wrmsrl(MSR_VIA_LONGHAUL, longhaul.val);
226 /* Change voltage */
227 if (!cx_address) {
228 ACPI_FLUSH_CPU_CACHE();
229 halt();
230 } else {
231 ACPI_FLUSH_CPU_CACHE();
232 /* Invoke C3 */
233 inb(cx_address);
234 /* Dummy op - must do something useless after P_LVL3
235 * read */
Dave Jonesbd0561c2007-02-10 20:36:29 -0500236 t = inl(acpi_gbl_FADT.xpm_timer_block.address);
Rafa³ Bilski348f31e2007-02-08 18:56:04 +0100237 }
238 longhaul.bits.EnableSoftVID = 0;
239 wrmsrl(MSR_VIA_LONGHAUL, longhaul.val);
240 longhaul_pos = dest_pos;
241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242}
243
244/**
245 * longhaul_set_cpu_frequency()
246 * @clock_ratio_index : bitpattern of the new multiplier.
247 *
248 * Sets a new clock ratio.
249 */
250
251static void longhaul_setstate(unsigned int clock_ratio_index)
252{
253 int speed, mult;
254 struct cpufreq_freqs freqs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 static unsigned int old_ratio=-1;
Rafa³ Bilskidadb49d2006-07-03 07:19:05 +0200256 unsigned long flags;
257 unsigned int pic1_mask, pic2_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 if (old_ratio == clock_ratio_index)
260 return;
261 old_ratio = clock_ratio_index;
262
263 mult = clock_ratio[clock_ratio_index];
264 if (mult == -1)
265 return;
266
267 speed = calc_speed(mult);
268 if ((speed > highest_speed) || (speed < lowest_speed))
269 return;
270
271 freqs.old = calc_speed(longhaul_get_cpu_mult());
272 freqs.new = speed;
273 freqs.cpu = 0; /* longhaul.c is UP only driver */
274
275 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
276
277 dprintk ("Setting to FSB:%dMHz Mult:%d.%dx (%s)\n",
278 fsb, mult/10, mult%10, print_speed(speed/1000));
279
Rafa³ Bilskidadb49d2006-07-03 07:19:05 +0200280 preempt_disable();
281 local_irq_save(flags);
282
283 pic2_mask = inb(0xA1);
284 pic1_mask = inb(0x21); /* works on C3. save mask. */
285 outb(0xFF,0xA1); /* Overkill */
286 outb(0xFE,0x21); /* TMR0 only */
287
Rafa³ Bilski264166e2006-12-24 14:04:23 +0100288 if (longhaul_flags & USE_NORTHBRIDGE) {
289 /* Disable AGP and PCI arbiters */
290 outb(3, 0x22);
291 } else if ((pr != NULL) && pr->flags.bm_control) {
Rafa³ Bilski179da8e2006-08-08 19:12:20 +0200292 /* Disable bus master arbitration */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300293 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 1);
Rafa³ Bilskidadb49d2006-07-03 07:19:05 +0200294 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 switch (longhaul_version) {
296
297 /*
298 * Longhaul v1. (Samuel[C5A] and Samuel2 stepping 0[C5B])
299 * Software controlled multipliers only.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 */
301 case TYPE_LONGHAUL_V1:
Rafa³ Bilski179da8e2006-08-08 19:12:20 +0200302 do_longhaul1(clock_ratio_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 break;
304
305 /*
Rafa³ Bilski2b8c0e12007-02-14 22:00:37 +0100306 * Longhaul v2 appears in Samuel2 Steppings 1->7 [C5B] and Ezra [C5C]
307 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 * Longhaul v3 (aka Powersaver). (Ezra-T [C5M] & Nehemiah [C5N])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 * Nehemiah can do FSB scaling too, but this has never been proven
310 * to work in practice.
311 */
Rafa³ Bilski2b8c0e12007-02-14 22:00:37 +0100312 case TYPE_LONGHAUL_V2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 case TYPE_POWERSAVER:
Rafa³ Bilski264166e2006-12-24 14:04:23 +0100314 if (longhaul_flags & USE_ACPI_C3) {
315 /* Don't allow wakeup */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300316 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0);
Rafa³ Bilski264166e2006-12-24 14:04:23 +0100317 do_powersaver(cx->address, clock_ratio_index);
318 } else {
319 do_powersaver(0, clock_ratio_index);
320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 break;
322 }
323
Rafa³ Bilski264166e2006-12-24 14:04:23 +0100324 if (longhaul_flags & USE_NORTHBRIDGE) {
325 /* Enable arbiters */
326 outb(0, 0x22);
327 } else if ((pr != NULL) && pr->flags.bm_control) {
Rafa³ Bilski179da8e2006-08-08 19:12:20 +0200328 /* Enable bus master arbitration */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300329 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 0);
Rafa³ Bilskidadb49d2006-07-03 07:19:05 +0200330 }
Rafa³ Bilskidadb49d2006-07-03 07:19:05 +0200331 outb(pic2_mask,0xA1); /* restore mask */
332 outb(pic1_mask,0x21);
333
334 local_irq_restore(flags);
335 preempt_enable();
336
Rafa³ Bilski2b8c0e12007-02-14 22:00:37 +0100337 freqs.new = calc_speed(longhaul_get_cpu_mult());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
339}
340
341/*
342 * Centaur decided to make life a little more tricky.
343 * Only longhaul v1 is allowed to read EBLCR BSEL[0:1].
344 * Samuel2 and above have to try and guess what the FSB is.
345 * We do this by assuming we booted at maximum multiplier, and interpolate
346 * between that value multiplied by possible FSBs and cpu_mhz which
347 * was calculated at boot time. Really ugly, but no other way to do this.
348 */
349
350#define ROUNDING 0xf
351
Rafa³ Bilski24ebead2007-01-01 23:49:34 +0100352static int guess_fsb(int mult)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
Rafa³ Bilski46ef9552007-02-04 15:58:46 +0100354 int speed = cpu_khz / 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 int i;
Rafa³ Bilski46ef9552007-02-04 15:58:46 +0100356 int speeds[] = { 666, 1000, 1333, 2000 };
357 int f_max, f_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Rafa³ Bilski46ef9552007-02-04 15:58:46 +0100359 for (i = 0; i < 4; i++) {
360 f_max = ((speeds[i] * mult) + 50) / 100;
361 f_max += (ROUNDING / 2);
362 f_min = f_max - ROUNDING;
363 if ((speed <= f_max) && (speed >= f_min))
364 return speeds[i] / 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 }
366 return 0;
367}
368
369
370static int __init longhaul_get_ranges(void)
371{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 unsigned int j, k = 0;
Rafa³ Bilski980342a2007-01-31 23:42:47 +0100373 int mult;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Rafa³ Bilski980342a2007-01-31 23:42:47 +0100375 /* Get current frequency */
376 mult = longhaul_get_cpu_mult();
377 if (mult == -1) {
378 printk(KERN_INFO PFX "Invalid (reserved) multiplier!\n");
379 return -EINVAL;
380 }
381 fsb = guess_fsb(mult);
382 if (fsb == 0) {
383 printk(KERN_INFO PFX "Invalid (reserved) FSB!\n");
384 return -EINVAL;
385 }
386 /* Get max multiplier - as we always did.
387 * Longhaul MSR is usefull only when voltage scaling is enabled.
388 * C3 is booting at max anyway. */
389 maxmult = mult;
390 /* Get min multiplier */
Rafa³ Bilski9addf3b2007-02-07 22:53:29 +0100391 switch (cpu_model) {
392 case CPU_NEHEMIAH:
393 minmult = 50;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 break;
Rafa³ Bilski9addf3b2007-02-07 22:53:29 +0100395 case CPU_NEHEMIAH_C:
396 minmult = 40;
397 break;
398 default:
399 minmult = 30;
Rafa³ Bilski980342a2007-01-31 23:42:47 +0100400 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 }
402
403 dprintk ("MinMult:%d.%dx MaxMult:%d.%dx\n",
404 minmult/10, minmult%10, maxmult/10, maxmult%10);
405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 highest_speed = calc_speed(maxmult);
407 lowest_speed = calc_speed(minmult);
408 dprintk ("FSB:%dMHz Lowest speed: %s Highest speed:%s\n", fsb,
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300409 print_speed(lowest_speed/1000),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 print_speed(highest_speed/1000));
411
412 if (lowest_speed == highest_speed) {
413 printk (KERN_INFO PFX "highestspeed == lowest, aborting.\n");
414 return -EINVAL;
415 }
416 if (lowest_speed > highest_speed) {
417 printk (KERN_INFO PFX "nonsense! lowest (%d > %d) !\n",
418 lowest_speed, highest_speed);
419 return -EINVAL;
420 }
421
422 longhaul_table = kmalloc((numscales + 1) * sizeof(struct cpufreq_frequency_table), GFP_KERNEL);
423 if(!longhaul_table)
424 return -ENOMEM;
425
426 for (j=0; j < numscales; j++) {
427 unsigned int ratio;
428 ratio = clock_ratio[j];
429 if (ratio == -1)
430 continue;
431 if (ratio > maxmult || ratio < minmult)
432 continue;
433 longhaul_table[k].frequency = calc_speed(ratio);
434 longhaul_table[k].index = j;
435 k++;
436 }
437
438 longhaul_table[k].frequency = CPUFREQ_TABLE_END;
439 if (!k) {
440 kfree (longhaul_table);
441 return -EINVAL;
442 }
443
444 return 0;
445}
446
447
448static void __init longhaul_setup_voltagescaling(void)
449{
450 union msr_longhaul longhaul;
Rafa³ Bilskidb44aaf2006-08-16 01:07:33 +0200451 struct mV_pos minvid, maxvid;
452 unsigned int j, speed, pos, kHz_step, numvscales;
Rafa³ Bilski348f31e2007-02-08 18:56:04 +0100453 int min_vid_speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Rafa³ Bilskidb44aaf2006-08-16 01:07:33 +0200455 rdmsrl(MSR_VIA_LONGHAUL, longhaul.val);
456 if (!(longhaul.bits.RevisionID & 1)) {
457 printk(KERN_INFO PFX "Voltage scaling not supported by CPU.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 return;
Rafa³ Bilskidb44aaf2006-08-16 01:07:33 +0200459 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Rafa³ Bilskidb44aaf2006-08-16 01:07:33 +0200461 if (!longhaul.bits.VRMRev) {
462 printk (KERN_INFO PFX "VRM 8.5\n");
463 vrm_mV_table = &vrm85_mV[0];
464 mV_vrm_table = &mV_vrm85[0];
465 } else {
466 printk (KERN_INFO PFX "Mobile VRM\n");
Rafa³ Bilski2b8c0e12007-02-14 22:00:37 +0100467 if (cpu_model < CPU_NEHEMIAH)
468 return;
Rafa³ Bilskidb44aaf2006-08-16 01:07:33 +0200469 vrm_mV_table = &mobilevrm_mV[0];
470 mV_vrm_table = &mV_mobilevrm[0];
471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Rafa³ Bilskidb44aaf2006-08-16 01:07:33 +0200473 minvid = vrm_mV_table[longhaul.bits.MinimumVID];
474 maxvid = vrm_mV_table[longhaul.bits.MaximumVID];
Rafa³ Bilskidb44aaf2006-08-16 01:07:33 +0200475
476 if (minvid.mV == 0 || maxvid.mV == 0 || minvid.mV > maxvid.mV) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 printk (KERN_INFO PFX "Bogus values Min:%d.%03d Max:%d.%03d. "
478 "Voltage scaling disabled.\n",
Rafa³ Bilskidb44aaf2006-08-16 01:07:33 +0200479 minvid.mV/1000, minvid.mV%1000, maxvid.mV/1000, maxvid.mV%1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 return;
481 }
482
Rafa³ Bilskidb44aaf2006-08-16 01:07:33 +0200483 if (minvid.mV == maxvid.mV) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 printk (KERN_INFO PFX "Claims to support voltage scaling but min & max are "
485 "both %d.%03d. Voltage scaling disabled\n",
Rafa³ Bilskidb44aaf2006-08-16 01:07:33 +0200486 maxvid.mV/1000, maxvid.mV%1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 return;
488 }
489
Rafa³ Bilski348f31e2007-02-08 18:56:04 +0100490 /* How many voltage steps */
491 numvscales = maxvid.pos - minvid.pos + 1;
492 printk(KERN_INFO PFX
493 "Max VID=%d.%03d "
494 "Min VID=%d.%03d, "
495 "%d possible voltage scales\n",
Rafa³ Bilskidb44aaf2006-08-16 01:07:33 +0200496 maxvid.mV/1000, maxvid.mV%1000,
497 minvid.mV/1000, minvid.mV%1000,
498 numvscales);
Rafa³ Bilski348f31e2007-02-08 18:56:04 +0100499
500 /* Calculate max frequency at min voltage */
501 j = longhaul.bits.MinMHzBR;
502 if (longhaul.bits.MinMHzBR4)
503 j += 16;
504 min_vid_speed = eblcr_table[j];
505 if (min_vid_speed == -1)
506 return;
507 switch (longhaul.bits.MinMHzFSB) {
508 case 0:
509 min_vid_speed *= 13333;
510 break;
511 case 1:
512 min_vid_speed *= 10000;
513 break;
514 case 3:
515 min_vid_speed *= 6666;
516 break;
517 default:
518 return;
519 break;
520 }
521 if (min_vid_speed >= highest_speed)
522 return;
523 /* Calculate kHz for one voltage step */
524 kHz_step = (highest_speed - min_vid_speed) / numvscales;
525
Dave Jonesbd0561c2007-02-10 20:36:29 -0500526
Rafa³ Bilskidb44aaf2006-08-16 01:07:33 +0200527 j = 0;
528 while (longhaul_table[j].frequency != CPUFREQ_TABLE_END) {
529 speed = longhaul_table[j].frequency;
Rafa³ Bilski348f31e2007-02-08 18:56:04 +0100530 if (speed > min_vid_speed)
531 pos = (speed - min_vid_speed) / kHz_step + minvid.pos;
532 else
533 pos = minvid.pos;
Rafa³ Bilskidb44aaf2006-08-16 01:07:33 +0200534 f_msr_table[longhaul_table[j].index].vrm = mV_vrm_table[pos];
Rafa³ Bilski348f31e2007-02-08 18:56:04 +0100535 f_msr_table[longhaul_table[j].index].pos = pos;
Rafa³ Bilskidb44aaf2006-08-16 01:07:33 +0200536 j++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 }
538
Rafa³ Bilski348f31e2007-02-08 18:56:04 +0100539 longhaul_pos = maxvid.pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 can_scale_voltage = 1;
Rafa³ Bilski348f31e2007-02-08 18:56:04 +0100541 printk(KERN_INFO PFX "Voltage scaling enabled. "
542 "Use of \"conservative\" governor is highly recommended.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
544
545
546static int longhaul_verify(struct cpufreq_policy *policy)
547{
548 return cpufreq_frequency_table_verify(policy, longhaul_table);
549}
550
551
552static int longhaul_target(struct cpufreq_policy *policy,
553 unsigned int target_freq, unsigned int relation)
554{
555 unsigned int table_index = 0;
556 unsigned int new_clock_ratio = 0;
557
558 if (cpufreq_frequency_table_target(policy, longhaul_table, target_freq, relation, &table_index))
559 return -EINVAL;
560
561 new_clock_ratio = longhaul_table[table_index].index & 0xFF;
562
563 longhaul_setstate(new_clock_ratio);
564
565 return 0;
566}
567
568
569static unsigned int longhaul_get(unsigned int cpu)
570{
571 if (cpu)
572 return 0;
573 return calc_speed(longhaul_get_cpu_mult());
574}
575
Adrian Bunkc4a96c12006-07-09 19:53:08 +0200576static acpi_status longhaul_walk_callback(acpi_handle obj_handle,
577 u32 nesting_level,
578 void *context, void **return_value)
Rafa³ Bilskidadb49d2006-07-03 07:19:05 +0200579{
580 struct acpi_device *d;
581
582 if ( acpi_bus_get_device(obj_handle, &d) ) {
583 return 0;
584 }
585 *return_value = (void *)acpi_driver_data(d);
586 return 1;
587}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Rafa³ Bilski179da8e2006-08-08 19:12:20 +0200589/* VIA don't support PM2 reg, but have something similar */
590static int enable_arbiter_disable(void)
591{
592 struct pci_dev *dev;
rafalbilski@interia.pl7f1be892006-09-24 20:28:13 +0200593 int reg;
Rafa³ Bilski179da8e2006-08-08 19:12:20 +0200594 u8 pci_cmd;
595
596 /* Find PLE133 host bridge */
rafalbilski@interia.pl7f1be892006-09-24 20:28:13 +0200597 reg = 0x78;
Rafa³ Bilski179da8e2006-08-08 19:12:20 +0200598 dev = pci_find_device(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8601_0, NULL);
rafalbilski@interia.pl7f1be892006-09-24 20:28:13 +0200599 /* Find CLE266 host bridge */
600 if (dev == NULL) {
rafalbilski@interia.pl7f1be892006-09-24 20:28:13 +0200601 reg = 0x76;
Rafa³ Bilskieed7d412006-09-27 08:25:27 +0200602 dev = pci_find_device(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_862X_0, NULL);
Rafa³ Bilskidb2fb9d2006-11-30 03:47:41 +0100603 /* Find CN400 V-Link host bridge */
604 if (dev == NULL)
605 dev = pci_find_device(PCI_VENDOR_ID_VIA, 0x7259, NULL);
606
rafalbilski@interia.pl7f1be892006-09-24 20:28:13 +0200607 }
Rafa³ Bilski179da8e2006-08-08 19:12:20 +0200608 if (dev != NULL) {
609 /* Enable access to port 0x22 */
rafalbilski@interia.pl7f1be892006-09-24 20:28:13 +0200610 pci_read_config_byte(dev, reg, &pci_cmd);
Rafa³ Bilski786f46b2007-02-04 18:43:12 +0100611 if (!(pci_cmd & 1<<7)) {
Rafa³ Bilski179da8e2006-08-08 19:12:20 +0200612 pci_cmd |= 1<<7;
rafalbilski@interia.pl7f1be892006-09-24 20:28:13 +0200613 pci_write_config_byte(dev, reg, pci_cmd);
Rafa³ Bilski786f46b2007-02-04 18:43:12 +0100614 pci_read_config_byte(dev, reg, &pci_cmd);
615 if (!(pci_cmd & 1<<7)) {
616 printk(KERN_ERR PFX
617 "Can't enable access to port 0x22.\n");
618 return 0;
619 }
Rafa³ Bilski179da8e2006-08-08 19:12:20 +0200620 }
621 return 1;
622 }
623 return 0;
624}
625
Rafa³ Bilski786f46b2007-02-04 18:43:12 +0100626static int longhaul_setup_vt8235(void)
627{
628 struct pci_dev *dev;
629 u8 pci_cmd;
630
631 /* Find VT8235 southbridge */
632 dev = pci_find_device(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8235, NULL);
633 if (dev != NULL) {
634 /* Set transition time to max */
635 pci_read_config_byte(dev, 0xec, &pci_cmd);
636 pci_cmd &= ~(1 << 2);
637 pci_write_config_byte(dev, 0xec, pci_cmd);
638 pci_read_config_byte(dev, 0xe4, &pci_cmd);
639 pci_cmd &= ~(1 << 7);
640 pci_write_config_byte(dev, 0xe4, pci_cmd);
641 pci_read_config_byte(dev, 0xe5, &pci_cmd);
642 pci_cmd |= 1 << 7;
643 pci_write_config_byte(dev, 0xe5, pci_cmd);
644 return 1;
645 }
646 return 0;
647}
648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649static int __init longhaul_cpu_init(struct cpufreq_policy *policy)
650{
651 struct cpuinfo_x86 *c = cpu_data;
652 char *cpuname=NULL;
653 int ret;
Rafa³ Bilski2b8c0e12007-02-14 22:00:37 +0100654 u32 lo, hi;
Rafa³ Bilski786f46b2007-02-04 18:43:12 +0100655 int vt8235_present;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Rafa³ Bilski179da8e2006-08-08 19:12:20 +0200657 /* Check what we have on this motherboard */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 switch (c->x86_model) {
659 case 6:
660 cpu_model = CPU_SAMUEL;
661 cpuname = "C3 'Samuel' [C5A]";
662 longhaul_version = TYPE_LONGHAUL_V1;
663 memcpy (clock_ratio, samuel1_clock_ratio, sizeof(samuel1_clock_ratio));
664 memcpy (eblcr_table, samuel1_eblcr, sizeof(samuel1_eblcr));
665 break;
666
667 case 7:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 switch (c->x86_mask) {
669 case 0:
Rafa³ Bilski2b8c0e12007-02-14 22:00:37 +0100670 longhaul_version = TYPE_LONGHAUL_V1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 cpu_model = CPU_SAMUEL2;
672 cpuname = "C3 'Samuel 2' [C5B]";
Rafa³ Bilski2b8c0e12007-02-14 22:00:37 +0100673 /* Note, this is not a typo, early Samuel2's had
674 * Samuel1 ratios. */
675 memcpy(clock_ratio, samuel1_clock_ratio,
676 sizeof(samuel1_clock_ratio));
677 memcpy(eblcr_table, samuel2_eblcr,
678 sizeof(samuel2_eblcr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 break;
680 case 1 ... 15:
Rafa³ Bilski2b8c0e12007-02-14 22:00:37 +0100681 longhaul_version = TYPE_LONGHAUL_V2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 if (c->x86_mask < 8) {
683 cpu_model = CPU_SAMUEL2;
684 cpuname = "C3 'Samuel 2' [C5B]";
685 } else {
686 cpu_model = CPU_EZRA;
687 cpuname = "C3 'Ezra' [C5C]";
688 }
Rafa³ Bilski2b8c0e12007-02-14 22:00:37 +0100689 memcpy(clock_ratio, ezra_clock_ratio,
690 sizeof(ezra_clock_ratio));
691 memcpy(eblcr_table, ezra_eblcr,
692 sizeof(ezra_eblcr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 break;
694 }
695 break;
696
697 case 8:
698 cpu_model = CPU_EZRA_T;
699 cpuname = "C3 'Ezra-T' [C5M]";
700 longhaul_version = TYPE_POWERSAVER;
701 numscales=32;
702 memcpy (clock_ratio, ezrat_clock_ratio, sizeof(ezrat_clock_ratio));
703 memcpy (eblcr_table, ezrat_eblcr, sizeof(ezrat_eblcr));
704 break;
705
706 case 9:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 longhaul_version = TYPE_POWERSAVER;
Rafa³ Bilski0d44b2b2007-01-31 23:50:49 +0100708 numscales = 32;
709 memcpy(clock_ratio,
710 nehemiah_clock_ratio,
711 sizeof(nehemiah_clock_ratio));
712 memcpy(eblcr_table, nehemiah_eblcr, sizeof(nehemiah_eblcr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 switch (c->x86_mask) {
714 case 0 ... 1:
Rafa³ Bilski980342a2007-01-31 23:42:47 +0100715 cpu_model = CPU_NEHEMIAH;
Rafa³ Bilskie57501c2007-02-08 23:12:02 +0100716 cpuname = "C3 'Nehemiah A' [C5XLOE]";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 break;
718 case 2 ... 4:
Rafa³ Bilski980342a2007-01-31 23:42:47 +0100719 cpu_model = CPU_NEHEMIAH;
Rafa³ Bilskie57501c2007-02-08 23:12:02 +0100720 cpuname = "C3 'Nehemiah B' [C5XLOH]";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 break;
722 case 5 ... 15:
Rafa³ Bilski980342a2007-01-31 23:42:47 +0100723 cpu_model = CPU_NEHEMIAH_C;
Rafa³ Bilskie57501c2007-02-08 23:12:02 +0100724 cpuname = "C3 'Nehemiah C' [C5P]";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 break;
726 }
727 break;
728
729 default:
730 cpuname = "Unknown";
731 break;
732 }
Rafa³ Bilski2b8c0e12007-02-14 22:00:37 +0100733 /* Check Longhaul ver. 2 */
734 if (longhaul_version == TYPE_LONGHAUL_V2) {
735 rdmsr(MSR_VIA_LONGHAUL, lo, hi);
736 if (lo == 0 && hi == 0)
737 /* Looks like MSR isn't present */
738 longhaul_version = TYPE_LONGHAUL_V1;
739 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741 printk (KERN_INFO PFX "VIA %s CPU detected. ", cpuname);
742 switch (longhaul_version) {
743 case TYPE_LONGHAUL_V1:
744 case TYPE_LONGHAUL_V2:
745 printk ("Longhaul v%d supported.\n", longhaul_version);
746 break;
747 case TYPE_POWERSAVER:
748 printk ("Powersaver supported.\n");
749 break;
750 };
751
Rafa³ Bilski786f46b2007-02-04 18:43:12 +0100752 /* Doesn't hurt */
753 vt8235_present = longhaul_setup_vt8235();
754
Rafa³ Bilski179da8e2006-08-08 19:12:20 +0200755 /* Find ACPI data for processor */
Rafa³ Bilski786f46b2007-02-04 18:43:12 +0100756 acpi_walk_namespace(ACPI_TYPE_PROCESSOR, ACPI_ROOT_OBJECT,
757 ACPI_UINT32_MAX, &longhaul_walk_callback,
758 NULL, (void *)&pr);
Rafa³ Bilski179da8e2006-08-08 19:12:20 +0200759
Rafa³ Bilski264166e2006-12-24 14:04:23 +0100760 /* Check ACPI support for C3 state */
Rafa³ Bilski2b8c0e12007-02-14 22:00:37 +0100761 if (pr != NULL && longhaul_version != TYPE_LONGHAUL_V1) {
Rafa³ Bilski179da8e2006-08-08 19:12:20 +0200762 cx = &pr->power.states[ACPI_STATE_C3];
Rafa³ Bilski14796722007-01-19 22:28:22 +0100763 if (cx->address > 0 && cx->latency <= 1000) {
Rafa³ Bilski264166e2006-12-24 14:04:23 +0100764 longhaul_flags |= USE_ACPI_C3;
Rafa³ Bilskieed7d412006-09-27 08:25:27 +0200765 goto print_support_type;
Rafa³ Bilski179da8e2006-08-08 19:12:20 +0200766 }
767 }
Rafa³ Bilski264166e2006-12-24 14:04:23 +0100768 /* Check if northbridge is friendly */
769 if (enable_arbiter_disable()) {
770 longhaul_flags |= USE_NORTHBRIDGE;
771 goto print_support_type;
Rafa³ Bilskieed7d412006-09-27 08:25:27 +0200772 }
Rafa³ Bilski786f46b2007-02-04 18:43:12 +0100773 /* Use VT8235 southbridge if present */
774 if (longhaul_version == TYPE_POWERSAVER && vt8235_present) {
775 longhaul_flags |= USE_VT8235;
776 goto print_support_type;
777 }
Rafa³ Bilski264166e2006-12-24 14:04:23 +0100778 /* Check ACPI support for bus master arbiter disable */
779 if ((pr == NULL) || !(pr->flags.bm_control)) {
780 printk(KERN_ERR PFX
781 "No ACPI support. Unsupported northbridge.\n");
782 return -ENODEV;
783 }
784
Rafa³ Bilskieed7d412006-09-27 08:25:27 +0200785print_support_type:
Rafa³ Bilski786f46b2007-02-04 18:43:12 +0100786 if (longhaul_flags & USE_NORTHBRIDGE)
rafalbilski@interia.pl7f1be892006-09-24 20:28:13 +0200787 printk (KERN_INFO PFX "Using northbridge support.\n");
Rafa³ Bilski786f46b2007-02-04 18:43:12 +0100788 else if (longhaul_flags & USE_VT8235)
789 printk (KERN_INFO PFX "Using VT8235 support.\n");
790 else
791 printk (KERN_INFO PFX "Using ACPI support.\n");
Rafa³ Bilski179da8e2006-08-08 19:12:20 +0200792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 ret = longhaul_get_ranges();
794 if (ret != 0)
795 return ret;
796
Rafa³ Bilski786f46b2007-02-04 18:43:12 +0100797 if ((longhaul_version != TYPE_LONGHAUL_V1) && (scale_voltage != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 longhaul_setup_voltagescaling();
799
800 policy->governor = CPUFREQ_DEFAULT_GOVERNOR;
Dave Jones6778bae2005-05-31 19:03:51 -0700801 policy->cpuinfo.transition_latency = 200000; /* nsec */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 policy->cur = calc_speed(longhaul_get_cpu_mult());
803
804 ret = cpufreq_frequency_table_cpuinfo(policy, longhaul_table);
805 if (ret)
806 return ret;
807
808 cpufreq_frequency_table_get_attr(longhaul_table, policy->cpu);
809
810 return 0;
811}
812
813static int __devexit longhaul_cpu_exit(struct cpufreq_policy *policy)
814{
815 cpufreq_frequency_table_put_attr(policy->cpu);
816 return 0;
817}
818
819static struct freq_attr* longhaul_attr[] = {
820 &cpufreq_freq_attr_scaling_available_freqs,
821 NULL,
822};
823
824static struct cpufreq_driver longhaul_driver = {
825 .verify = longhaul_verify,
826 .target = longhaul_target,
827 .get = longhaul_get,
828 .init = longhaul_cpu_init,
829 .exit = __devexit_p(longhaul_cpu_exit),
830 .name = "longhaul",
831 .owner = THIS_MODULE,
832 .attr = longhaul_attr,
833};
834
835
836static int __init longhaul_init(void)
837{
838 struct cpuinfo_x86 *c = cpu_data;
839
840 if (c->x86_vendor != X86_VENDOR_CENTAUR || c->x86 != 6)
841 return -ENODEV;
842
Rafa³ Bilski48b7bde2006-07-04 17:50:57 +0200843#ifdef CONFIG_SMP
844 if (num_online_cpus() > 1) {
Rafa³ Bilski48b7bde2006-07-04 17:50:57 +0200845 printk(KERN_ERR PFX "More than 1 CPU detected, longhaul disabled.\n");
Dave Jones1cfe2012006-12-28 22:30:16 -0500846 return -ENODEV;
Rafa³ Bilski48b7bde2006-07-04 17:50:57 +0200847 }
848#endif
849#ifdef CONFIG_X86_IO_APIC
850 if (cpu_has_apic) {
851 printk(KERN_ERR PFX "APIC detected. Longhaul is currently broken in this configuration.\n");
852 return -ENODEV;
853 }
854#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 switch (c->x86_model) {
856 case 6 ... 9:
857 return cpufreq_register_driver(&longhaul_driver);
Dave Jones8ec98222006-12-17 19:07:35 -0500858 case 10:
859 printk(KERN_ERR PFX "Use acpi-cpufreq driver for VIA C7\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 default:
Dave Jones928ee512006-12-17 19:09:59 -0500861 ;;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 }
863
864 return -ENODEV;
865}
866
867
868static void __exit longhaul_exit(void)
869{
Dave Jones8eebf1a2006-05-30 17:40:16 -0400870 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
872 for (i=0; i < numscales; i++) {
873 if (clock_ratio[i] == maxmult) {
874 longhaul_setstate(i);
875 break;
876 }
877 }
878
879 cpufreq_unregister_driver(&longhaul_driver);
880 kfree(longhaul_table);
881}
882
Rafa³ Bilskidb44aaf2006-08-16 01:07:33 +0200883module_param (scale_voltage, int, 0644);
884MODULE_PARM_DESC(scale_voltage, "Scale voltage of processor");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
886MODULE_AUTHOR ("Dave Jones <davej@codemonkey.org.uk>");
887MODULE_DESCRIPTION ("Longhaul driver for VIA Cyrix processors.");
888MODULE_LICENSE ("GPL");
889
Rafa³ Bilski0d6daba2006-07-07 08:48:26 +0200890late_initcall(longhaul_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891module_exit(longhaul_exit);