2 * (C) 2001-2004 Dave Jones. <davej@codemonkey.org.uk>
3 * (C) 2002 Padraig Brady. <padraig@antefacto.com>
5 * Licensed under the terms of the GNU GPL License version 2.
6 * Based upon datasheets & sample CPUs kindly provided by VIA.
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.
11 * Version 2 of longhaul is the same as v1, but adds voltage scaling.
12 * Present in Samuel 2 (steppings 1-7 only) (C5B), and Ezra (C5C)
13 * voltage scaling support has currently been disabled in this driver
14 * until we have code that gets it right.
15 * Version 3 of longhaul got renamed to Powersaver and redesigned
16 * to use the POWERSAVER MSR at 0x110a.
17 * It is present in Ezra-T (C5M), Nehemiah (C5X) and above.
18 * It's pretty much the same feature wise to longhaul v2, though
19 * there is provision for scaling FSB too, but this doesn't work
20 * too well in practice so we don't even try to use this.
22 * BIG FAT DISCLAIMER: Work in progress code. Possibly *dangerous*
25 #include <linux/kernel.h>
26 #include <linux/module.h>
27 #include <linux/moduleparam.h>
28 #include <linux/init.h>
29 #include <linux/cpufreq.h>
30 #include <linux/slab.h>
31 #include <linux/string.h>
32 #include <linux/pci.h>
35 #include <asm/timex.h>
40 #define PFX "longhaul: "
42 #define TYPE_LONGHAUL_V1 1
43 #define TYPE_LONGHAUL_V2 2
44 #define TYPE_POWERSAVER 3
50 #define CPU_NEHEMIAH 5
53 static unsigned int numscales=16, numvscales;
54 static unsigned int fsb;
55 static int minvid, maxvid;
56 static unsigned int minmult, maxmult;
57 static int can_scale_voltage;
60 /* Module parameters */
61 static int dont_scale_voltage;
64 #define dprintk(msg...) cpufreq_debug_printk(CPUFREQ_DEBUG_DRIVER, "longhaul", msg)
67 /* Clock ratios multiplied by 10 */
68 static int clock_ratio[32];
69 static int eblcr_table[32];
70 static int voltage_table[32];
71 static unsigned int highest_speed, lowest_speed; /* kHz */
72 static int longhaul_version;
73 static struct cpufreq_frequency_table *longhaul_table;
75 #ifdef CONFIG_CPU_FREQ_DEBUG
76 static char speedbuffer[8];
78 static char *print_speed(int speed)
81 snprintf(speedbuffer, sizeof(speedbuffer),"%dMHz", speed);
86 snprintf(speedbuffer, sizeof(speedbuffer),
89 snprintf(speedbuffer, sizeof(speedbuffer),
90 "%d.%dGHz", speed/1000, (speed%1000)/100);
97 static unsigned int calc_speed(int mult)
108 static int longhaul_get_cpu_mult(void)
110 unsigned long invalue=0,lo, hi;
112 rdmsr (MSR_IA32_EBL_CR_POWERON, lo, hi);
113 invalue = (lo & (1<<22|1<<23|1<<24|1<<25)) >>22;
114 if (longhaul_version==TYPE_LONGHAUL_V2 || longhaul_version==TYPE_POWERSAVER) {
118 return eblcr_table[invalue];
122 static void do_powersaver(union msr_longhaul *longhaul,
123 unsigned int clock_ratio_index)
127 unsigned int tmp_mask;
144 rdmsrl(MSR_VIA_LONGHAUL, longhaul->val);
145 longhaul->bits.SoftBusRatio = clock_ratio_index & 0xf;
146 longhaul->bits.SoftBusRatio4 = (clock_ratio_index & 0x10) >> 4;
147 longhaul->bits.EnableSoftBusRatio = 1;
148 longhaul->bits.RevisionKey = 0;
151 local_irq_save(flags);
154 * get current pci bus master state for all devices
155 * and clear bus master bit
160 dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev);
162 pci_read_config_word(dev, PCI_COMMAND, &pci_cmd);
163 cmd_state[i++] = pci_cmd;
164 pci_cmd &= ~PCI_COMMAND_MASTER;
165 pci_write_config_word(dev, PCI_COMMAND, pci_cmd);
167 } while (dev != NULL);
169 tmp_mask=inb(0x21); /* works on C3. save mask. */
170 outb(0xFE,0x21); /* TMR0 only */
171 outb(0xFF,0x80); /* delay */
174 wrmsrl(MSR_VIA_LONGHAUL, longhaul->val);
179 outb(tmp_mask,0x21); /* restore mask */
181 /* restore pci bus master state for all devices */
185 dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev);
187 pci_cmd = cmd_state[i++];
188 pci_write_config_byte(dev, PCI_COMMAND, pci_cmd);
190 } while (dev != NULL);
191 local_irq_restore(flags);
194 /* disable bus ratio bit */
195 rdmsrl(MSR_VIA_LONGHAUL, longhaul->val);
196 longhaul->bits.EnableSoftBusRatio = 0;
197 longhaul->bits.RevisionKey = version;
198 wrmsrl(MSR_VIA_LONGHAUL, longhaul->val);
202 * longhaul_set_cpu_frequency()
203 * @clock_ratio_index : bitpattern of the new multiplier.
205 * Sets a new clock ratio.
208 static void longhaul_setstate(unsigned int clock_ratio_index)
211 struct cpufreq_freqs freqs;
212 union msr_longhaul longhaul;
214 static unsigned int old_ratio=-1;
216 if (old_ratio == clock_ratio_index)
218 old_ratio = clock_ratio_index;
220 mult = clock_ratio[clock_ratio_index];
224 speed = calc_speed(mult);
225 if ((speed > highest_speed) || (speed < lowest_speed))
228 freqs.old = calc_speed(longhaul_get_cpu_mult());
230 freqs.cpu = 0; /* longhaul.c is UP only driver */
232 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
234 dprintk ("Setting to FSB:%dMHz Mult:%d.%dx (%s)\n",
235 fsb, mult/10, mult%10, print_speed(speed/1000));
237 switch (longhaul_version) {
240 * Longhaul v1. (Samuel[C5A] and Samuel2 stepping 0[C5B])
241 * Software controlled multipliers only.
243 * *NB* Until we get voltage scaling working v1 & v2 are the same code.
244 * Longhaul v2 appears in Samuel2 Steppings 1->7 [C5b] and Ezra [C5C]
246 case TYPE_LONGHAUL_V1:
247 case TYPE_LONGHAUL_V2:
248 rdmsrl (MSR_VIA_BCR2, bcr2.val);
249 /* Enable software clock multiplier */
250 bcr2.bits.ESOFTBF = 1;
251 bcr2.bits.CLOCKMUL = clock_ratio_index;
253 wrmsrl (MSR_VIA_BCR2, bcr2.val);
256 /* Disable software clock multiplier */
257 rdmsrl (MSR_VIA_BCR2, bcr2.val);
258 bcr2.bits.ESOFTBF = 0;
260 wrmsrl (MSR_VIA_BCR2, bcr2.val);
265 * Longhaul v3 (aka Powersaver). (Ezra-T [C5M] & Nehemiah [C5N])
266 * We can scale voltage with this too, but that's currently
267 * disabled until we come up with a decent 'match freq to voltage'
269 * When we add voltage scaling, we will also need to do the
270 * voltage/freq setting in order depending on the direction
271 * of scaling (like we do in powernow-k7.c)
272 * Nehemiah can do FSB scaling too, but this has never been proven
273 * to work in practice.
275 case TYPE_POWERSAVER:
276 do_powersaver(&longhaul, clock_ratio_index);
280 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
284 * Centaur decided to make life a little more tricky.
285 * Only longhaul v1 is allowed to read EBLCR BSEL[0:1].
286 * Samuel2 and above have to try and guess what the FSB is.
287 * We do this by assuming we booted at maximum multiplier, and interpolate
288 * between that value multiplied by possible FSBs and cpu_mhz which
289 * was calculated at boot time. Really ugly, but no other way to do this.
294 static int _guess(int guess)
298 target = ((maxmult/10)*guess);
301 target += ROUNDING/2;
307 static int guess_fsb(void)
309 int speed = (cpu_khz/1000);
311 int speeds[3] = { 66, 100, 133 };
316 for (i=0; i<3; i++) {
317 if (_guess(speeds[i]) == speed)
324 static int __init longhaul_get_ranges(void)
326 unsigned long invalue;
327 unsigned int multipliers[32]= {
328 50,30,40,100,55,35,45,95,90,70,80,60,120,75,85,65,
329 -1,110,120,-1,135,115,125,105,130,150,160,140,-1,155,-1,145 };
330 unsigned int j, k = 0;
331 union msr_longhaul longhaul;
332 unsigned long lo, hi;
333 unsigned int eblcr_fsb_table_v1[] = { 66, 133, 100, -1 };
334 unsigned int eblcr_fsb_table_v2[] = { 133, 100, -1, 66 };
336 switch (longhaul_version) {
337 case TYPE_LONGHAUL_V1:
338 case TYPE_LONGHAUL_V2:
339 /* Ugh, Longhaul v1 didn't have the min/max MSRs.
340 Assume min=3.0x & max = whatever we booted at. */
342 maxmult = longhaul_get_cpu_mult();
343 rdmsr (MSR_IA32_EBL_CR_POWERON, lo, hi);
344 invalue = (lo & (1<<18|1<<19)) >>18;
345 if (cpu_model==CPU_SAMUEL || cpu_model==CPU_SAMUEL2)
346 fsb = eblcr_fsb_table_v1[invalue];
351 case TYPE_POWERSAVER:
353 if (cpu_model==CPU_EZRA_T) {
354 rdmsrl (MSR_VIA_LONGHAUL, longhaul.val);
355 invalue = longhaul.bits.MaxMHzBR;
356 if (longhaul.bits.MaxMHzBR4)
358 maxmult=multipliers[invalue];
360 invalue = longhaul.bits.MinMHzBR;
361 if (longhaul.bits.MinMHzBR4 == 1)
364 minmult = multipliers[invalue];
365 fsb = eblcr_fsb_table_v2[longhaul.bits.MaxMHzFSB];
370 if (cpu_model==CPU_NEHEMIAH) {
371 rdmsrl (MSR_VIA_LONGHAUL, longhaul.val);
374 * TODO: This code works, but raises a lot of questions.
375 * - Some Nehemiah's seem to have broken Min/MaxMHzBR's.
376 * We get around this by using a hardcoded multiplier of 4.0x
377 * for the minimimum speed, and the speed we booted up at for the max.
378 * This is done in longhaul_get_cpu_mult() by reading the EBLCR register.
379 * - According to some VIA documentation EBLCR is only
380 * in pre-Nehemiah C3s. How this still works is a mystery.
381 * We're possibly using something undocumented and unsupported,
382 * But it works, so we don't grumble.
385 maxmult=longhaul_get_cpu_mult();
387 /* Starting with the 1.2GHz parts, theres a 200MHz bus. */
388 if ((cpu_khz/1000) > 1200)
391 fsb = eblcr_fsb_table_v2[longhaul.bits.MaxMHzFSB];
396 dprintk ("MinMult:%d.%dx MaxMult:%d.%dx\n",
397 minmult/10, minmult%10, maxmult/10, maxmult%10);
400 printk (KERN_INFO PFX "Invalid (reserved) FSB!\n");
404 highest_speed = calc_speed(maxmult);
405 lowest_speed = calc_speed(minmult);
406 dprintk ("FSB:%dMHz Lowest speed: %s Highest speed:%s\n", fsb,
407 print_speed(lowest_speed/1000),
408 print_speed(highest_speed/1000));
410 if (lowest_speed == highest_speed) {
411 printk (KERN_INFO PFX "highestspeed == lowest, aborting.\n");
414 if (lowest_speed > highest_speed) {
415 printk (KERN_INFO PFX "nonsense! lowest (%d > %d) !\n",
416 lowest_speed, highest_speed);
420 longhaul_table = kmalloc((numscales + 1) * sizeof(struct cpufreq_frequency_table), GFP_KERNEL);
424 for (j=0; j < numscales; j++) {
426 ratio = clock_ratio[j];
429 if (ratio > maxmult || ratio < minmult)
431 longhaul_table[k].frequency = calc_speed(ratio);
432 longhaul_table[k].index = j;
436 longhaul_table[k].frequency = CPUFREQ_TABLE_END;
438 kfree (longhaul_table);
446 static void __init longhaul_setup_voltagescaling(void)
448 union msr_longhaul longhaul;
450 rdmsrl (MSR_VIA_LONGHAUL, longhaul.val);
452 if (!(longhaul.bits.RevisionID & 1))
455 minvid = longhaul.bits.MinimumVID;
456 maxvid = longhaul.bits.MaximumVID;
457 vrmrev = longhaul.bits.VRMRev;
459 if (minvid == 0 || maxvid == 0) {
460 printk (KERN_INFO PFX "Bogus values Min:%d.%03d Max:%d.%03d. "
461 "Voltage scaling disabled.\n",
462 minvid/1000, minvid%1000, maxvid/1000, maxvid%1000);
466 if (minvid == maxvid) {
467 printk (KERN_INFO PFX "Claims to support voltage scaling but min & max are "
468 "both %d.%03d. Voltage scaling disabled\n",
469 maxvid/1000, maxvid%1000);
474 dprintk ("VRM 8.5\n");
475 memcpy (voltage_table, vrm85scales, sizeof(voltage_table));
476 numvscales = (voltage_table[maxvid]-voltage_table[minvid])/25;
478 dprintk ("Mobile VRM\n");
479 memcpy (voltage_table, mobilevrmscales, sizeof(voltage_table));
480 numvscales = (voltage_table[maxvid]-voltage_table[minvid])/5;
483 /* Current voltage isn't readable at first, so we need to
484 set it to a known value. The spec says to use maxvid */
485 longhaul.bits.RevisionKey = longhaul.bits.RevisionID; /* FIXME: This is bad. */
486 longhaul.bits.EnableSoftVID = 1;
487 longhaul.bits.SoftVID = maxvid;
488 wrmsrl (MSR_VIA_LONGHAUL, longhaul.val);
490 minvid = voltage_table[minvid];
491 maxvid = voltage_table[maxvid];
493 dprintk ("Min VID=%d.%03d Max VID=%d.%03d, %d possible voltage scales\n",
494 maxvid/1000, maxvid%1000, minvid/1000, minvid%1000, numvscales);
496 can_scale_voltage = 1;
500 static int longhaul_verify(struct cpufreq_policy *policy)
502 return cpufreq_frequency_table_verify(policy, longhaul_table);
506 static int longhaul_target(struct cpufreq_policy *policy,
507 unsigned int target_freq, unsigned int relation)
509 unsigned int table_index = 0;
510 unsigned int new_clock_ratio = 0;
512 if (cpufreq_frequency_table_target(policy, longhaul_table, target_freq, relation, &table_index))
515 new_clock_ratio = longhaul_table[table_index].index & 0xFF;
517 longhaul_setstate(new_clock_ratio);
523 static unsigned int longhaul_get(unsigned int cpu)
527 return calc_speed(longhaul_get_cpu_mult());
531 static int __init longhaul_cpu_init(struct cpufreq_policy *policy)
533 struct cpuinfo_x86 *c = cpu_data;
537 switch (c->x86_model) {
539 cpu_model = CPU_SAMUEL;
540 cpuname = "C3 'Samuel' [C5A]";
541 longhaul_version = TYPE_LONGHAUL_V1;
542 memcpy (clock_ratio, samuel1_clock_ratio, sizeof(samuel1_clock_ratio));
543 memcpy (eblcr_table, samuel1_eblcr, sizeof(samuel1_eblcr));
547 longhaul_version = TYPE_LONGHAUL_V1;
548 switch (c->x86_mask) {
550 cpu_model = CPU_SAMUEL2;
551 cpuname = "C3 'Samuel 2' [C5B]";
552 /* Note, this is not a typo, early Samuel2's had Samuel1 ratios. */
553 memcpy (clock_ratio, samuel1_clock_ratio, sizeof(samuel1_clock_ratio));
554 memcpy (eblcr_table, samuel2_eblcr, sizeof(samuel2_eblcr));
557 if (c->x86_mask < 8) {
558 cpu_model = CPU_SAMUEL2;
559 cpuname = "C3 'Samuel 2' [C5B]";
561 cpu_model = CPU_EZRA;
562 cpuname = "C3 'Ezra' [C5C]";
564 memcpy (clock_ratio, ezra_clock_ratio, sizeof(ezra_clock_ratio));
565 memcpy (eblcr_table, ezra_eblcr, sizeof(ezra_eblcr));
571 cpu_model = CPU_EZRA_T;
572 cpuname = "C3 'Ezra-T' [C5M]";
573 longhaul_version = TYPE_POWERSAVER;
575 memcpy (clock_ratio, ezrat_clock_ratio, sizeof(ezrat_clock_ratio));
576 memcpy (eblcr_table, ezrat_eblcr, sizeof(ezrat_eblcr));
580 cpu_model = CPU_NEHEMIAH;
581 longhaul_version = TYPE_POWERSAVER;
583 switch (c->x86_mask) {
585 cpuname = "C3 'Nehemiah A' [C5N]";
586 memcpy (clock_ratio, nehemiah_a_clock_ratio, sizeof(nehemiah_a_clock_ratio));
587 memcpy (eblcr_table, nehemiah_a_eblcr, sizeof(nehemiah_a_eblcr));
590 cpuname = "C3 'Nehemiah B' [C5N]";
591 memcpy (clock_ratio, nehemiah_b_clock_ratio, sizeof(nehemiah_b_clock_ratio));
592 memcpy (eblcr_table, nehemiah_b_eblcr, sizeof(nehemiah_b_eblcr));
595 cpuname = "C3 'Nehemiah C' [C5N]";
596 memcpy (clock_ratio, nehemiah_c_clock_ratio, sizeof(nehemiah_c_clock_ratio));
597 memcpy (eblcr_table, nehemiah_c_eblcr, sizeof(nehemiah_c_eblcr));
607 printk (KERN_INFO PFX "VIA %s CPU detected. ", cpuname);
608 switch (longhaul_version) {
609 case TYPE_LONGHAUL_V1:
610 case TYPE_LONGHAUL_V2:
611 printk ("Longhaul v%d supported.\n", longhaul_version);
613 case TYPE_POWERSAVER:
614 printk ("Powersaver supported.\n");
618 ret = longhaul_get_ranges();
622 if ((longhaul_version==TYPE_LONGHAUL_V2 || longhaul_version==TYPE_POWERSAVER) &&
623 (dont_scale_voltage==0))
624 longhaul_setup_voltagescaling();
626 policy->governor = CPUFREQ_DEFAULT_GOVERNOR;
627 policy->cpuinfo.transition_latency = 200000; /* nsec */
628 policy->cur = calc_speed(longhaul_get_cpu_mult());
630 ret = cpufreq_frequency_table_cpuinfo(policy, longhaul_table);
634 cpufreq_frequency_table_get_attr(longhaul_table, policy->cpu);
639 static int __devexit longhaul_cpu_exit(struct cpufreq_policy *policy)
641 cpufreq_frequency_table_put_attr(policy->cpu);
645 static struct freq_attr* longhaul_attr[] = {
646 &cpufreq_freq_attr_scaling_available_freqs,
650 static struct cpufreq_driver longhaul_driver = {
651 .verify = longhaul_verify,
652 .target = longhaul_target,
654 .init = longhaul_cpu_init,
655 .exit = __devexit_p(longhaul_cpu_exit),
657 .owner = THIS_MODULE,
658 .attr = longhaul_attr,
662 static int __init longhaul_init(void)
664 struct cpuinfo_x86 *c = cpu_data;
666 if (c->x86_vendor != X86_VENDOR_CENTAUR || c->x86 != 6)
669 switch (c->x86_model) {
671 return cpufreq_register_driver(&longhaul_driver);
673 printk (KERN_INFO PFX "Unknown VIA CPU. Contact davej@codemonkey.org.uk\n");
680 static void __exit longhaul_exit(void)
684 for (i=0; i < numscales; i++) {
685 if (clock_ratio[i] == maxmult) {
686 longhaul_setstate(i);
691 cpufreq_unregister_driver(&longhaul_driver);
692 kfree(longhaul_table);
695 module_param (dont_scale_voltage, int, 0644);
696 MODULE_PARM_DESC(dont_scale_voltage, "Don't scale voltage of processor");
698 MODULE_AUTHOR ("Dave Jones <davej@codemonkey.org.uk>");
699 MODULE_DESCRIPTION ("Longhaul driver for VIA Cyrix processors.");
700 MODULE_LICENSE ("GPL");
702 module_init(longhaul_init);
703 module_exit(longhaul_exit);