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 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).
14 * Version 3 of longhaul got renamed to Powersaver and redesigned
15 * to use only the POWERSAVER MSR at 0x110a.
16 * 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.
21 * BIG FAT DISCLAIMER: Work in progress code. Possibly *dangerous*
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>
29 #include <linux/pci.h>
30 #include <linux/slab.h>
31 #include <linux/string.h>
34 #include <asm/timex.h>
37 #include <linux/acpi.h>
38 #include <acpi/processor.h>
42 #define PFX "longhaul: "
44 #define TYPE_LONGHAUL_V1 1
45 #define TYPE_LONGHAUL_V2 2
46 #define TYPE_POWERSAVER 3
52 #define CPU_NEHEMIAH 5
53 #define CPU_NEHEMIAH_C 6
56 #define USE_ACPI_C3 (1 << 1)
57 #define USE_NORTHBRIDGE (1 << 2)
58 #define USE_VT8235 (1 << 3)
61 static unsigned int numscales=16;
62 static unsigned int fsb;
64 static struct mV_pos *vrm_mV_table;
65 static unsigned char *mV_vrm_table;
70 static struct f_msr f_msr_table[32];
72 static unsigned int highest_speed, lowest_speed; /* kHz */
73 static unsigned int minmult, maxmult;
74 static int can_scale_voltage;
75 static struct acpi_processor *pr = NULL;
76 static struct acpi_processor_cx *cx = NULL;
77 static u8 longhaul_flags;
78 static u8 longhaul_pos;
80 /* Module parameters */
81 static int scale_voltage;
83 #define dprintk(msg...) cpufreq_debug_printk(CPUFREQ_DEBUG_DRIVER, "longhaul", msg)
86 /* Clock ratios multiplied by 10 */
87 static int clock_ratio[32];
88 static int eblcr_table[32];
89 static int longhaul_version;
90 static struct cpufreq_frequency_table *longhaul_table;
92 #ifdef CONFIG_CPU_FREQ_DEBUG
93 static char speedbuffer[8];
95 static char *print_speed(int speed)
98 snprintf(speedbuffer, sizeof(speedbuffer),"%dMHz", speed);
103 snprintf(speedbuffer, sizeof(speedbuffer),
104 "%dGHz", speed/1000);
106 snprintf(speedbuffer, sizeof(speedbuffer),
107 "%d.%dGHz", speed/1000, (speed%1000)/100);
114 static unsigned int calc_speed(int mult)
125 static int longhaul_get_cpu_mult(void)
127 unsigned long invalue=0,lo, hi;
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) {
135 return eblcr_table[invalue];
138 /* For processor with BCR2 MSR */
140 static void do_longhaul1(unsigned int clock_ratio_index)
144 rdmsrl(MSR_VIA_BCR2, bcr2.val);
145 /* Enable software clock multiplier */
146 bcr2.bits.ESOFTBF = 1;
147 bcr2.bits.CLOCKMUL = clock_ratio_index;
149 /* Sync to timer tick */
151 /* Change frequency on next halt or sleep */
152 wrmsrl(MSR_VIA_BCR2, bcr2.val);
153 /* Invoke transition */
154 ACPI_FLUSH_CPU_CACHE();
157 /* Disable software clock multiplier */
159 rdmsrl(MSR_VIA_BCR2, bcr2.val);
160 bcr2.bits.ESOFTBF = 0;
161 wrmsrl(MSR_VIA_BCR2, bcr2.val);
164 /* For processor with Longhaul MSR */
166 static void do_powersaver(int cx_address, unsigned int clock_ratio_index)
168 union msr_longhaul longhaul;
172 dest_pos = f_msr_table[clock_ratio_index].pos;
174 rdmsrl(MSR_VIA_LONGHAUL, longhaul.val);
175 /* Setup new frequency */
176 longhaul.bits.RevisionKey = longhaul.bits.RevisionID;
177 longhaul.bits.SoftBusRatio = clock_ratio_index & 0xf;
178 longhaul.bits.SoftBusRatio4 = (clock_ratio_index & 0x10) >> 4;
179 /* Setup new voltage */
180 if (can_scale_voltage)
181 longhaul.bits.SoftVID = f_msr_table[clock_ratio_index].vrm;
182 /* Sync to timer tick */
184 /* 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);
190 ACPI_FLUSH_CPU_CACHE();
193 ACPI_FLUSH_CPU_CACHE();
196 /* Dummy op - must do something useless after P_LVL3
198 t = inl(acpi_gbl_FADT.xpm_timer_block.address);
200 longhaul.bits.EnableSoftVID = 0;
201 wrmsrl(MSR_VIA_LONGHAUL, longhaul.val);
202 longhaul_pos = dest_pos;
205 /* Change frequency on next halt or sleep */
206 longhaul.bits.EnableSoftBusRatio = 1;
207 wrmsrl(MSR_VIA_LONGHAUL, longhaul.val);
209 ACPI_FLUSH_CPU_CACHE();
212 ACPI_FLUSH_CPU_CACHE();
215 /* Dummy op - must do something useless after P_LVL3 read */
216 t = inl(acpi_gbl_FADT.xpm_timer_block.address);
218 /* Disable bus ratio bit */
219 longhaul.bits.EnableSoftBusRatio = 0;
220 wrmsrl(MSR_VIA_LONGHAUL, longhaul.val);
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);
228 ACPI_FLUSH_CPU_CACHE();
231 ACPI_FLUSH_CPU_CACHE();
234 /* Dummy op - must do something useless after P_LVL3
236 t = inl(acpi_gbl_FADT.xpm_timer_block.address);
238 longhaul.bits.EnableSoftVID = 0;
239 wrmsrl(MSR_VIA_LONGHAUL, longhaul.val);
240 longhaul_pos = dest_pos;
245 * longhaul_set_cpu_frequency()
246 * @clock_ratio_index : bitpattern of the new multiplier.
248 * Sets a new clock ratio.
251 static void longhaul_setstate(unsigned int clock_ratio_index)
254 struct cpufreq_freqs freqs;
255 static unsigned int old_ratio=-1;
257 unsigned int pic1_mask, pic2_mask;
259 if (old_ratio == clock_ratio_index)
261 old_ratio = clock_ratio_index;
263 mult = clock_ratio[clock_ratio_index];
267 speed = calc_speed(mult);
268 if ((speed > highest_speed) || (speed < lowest_speed))
271 freqs.old = calc_speed(longhaul_get_cpu_mult());
273 freqs.cpu = 0; /* longhaul.c is UP only driver */
275 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
277 dprintk ("Setting to FSB:%dMHz Mult:%d.%dx (%s)\n",
278 fsb, mult/10, mult%10, print_speed(speed/1000));
281 local_irq_save(flags);
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 */
288 if (longhaul_flags & USE_NORTHBRIDGE) {
289 /* Disable AGP and PCI arbiters */
291 } else if ((pr != NULL) && pr->flags.bm_control) {
292 /* Disable bus master arbitration */
293 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 1);
295 switch (longhaul_version) {
298 * Longhaul v1. (Samuel[C5A] and Samuel2 stepping 0[C5B])
299 * Software controlled multipliers only.
301 case TYPE_LONGHAUL_V1:
302 do_longhaul1(clock_ratio_index);
306 * Longhaul v2 appears in Samuel2 Steppings 1->7 [C5B] and Ezra [C5C]
308 * Longhaul v3 (aka Powersaver). (Ezra-T [C5M] & Nehemiah [C5N])
309 * Nehemiah can do FSB scaling too, but this has never been proven
310 * to work in practice.
312 case TYPE_LONGHAUL_V2:
313 case TYPE_POWERSAVER:
314 if (longhaul_flags & USE_ACPI_C3) {
315 /* Don't allow wakeup */
316 acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0);
317 do_powersaver(cx->address, clock_ratio_index);
319 do_powersaver(0, clock_ratio_index);
324 if (longhaul_flags & USE_NORTHBRIDGE) {
325 /* Enable arbiters */
327 } else if ((pr != NULL) && pr->flags.bm_control) {
328 /* Enable bus master arbitration */
329 acpi_set_register(ACPI_BITREG_ARB_DISABLE, 0);
331 outb(pic2_mask,0xA1); /* restore mask */
332 outb(pic1_mask,0x21);
334 local_irq_restore(flags);
337 freqs.new = calc_speed(longhaul_get_cpu_mult());
338 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
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.
352 static int guess_fsb(int mult)
354 int speed = cpu_khz / 1000;
356 int speeds[] = { 666, 1000, 1333, 2000 };
359 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;
370 static int __init longhaul_get_ranges(void)
372 unsigned int j, k = 0;
375 /* Get current frequency */
376 mult = longhaul_get_cpu_mult();
378 printk(KERN_INFO PFX "Invalid (reserved) multiplier!\n");
381 fsb = guess_fsb(mult);
383 printk(KERN_INFO PFX "Invalid (reserved) FSB!\n");
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. */
390 /* Get min multiplier */
403 dprintk ("MinMult:%d.%dx MaxMult:%d.%dx\n",
404 minmult/10, minmult%10, maxmult/10, maxmult%10);
406 highest_speed = calc_speed(maxmult);
407 lowest_speed = calc_speed(minmult);
408 dprintk ("FSB:%dMHz Lowest speed: %s Highest speed:%s\n", fsb,
409 print_speed(lowest_speed/1000),
410 print_speed(highest_speed/1000));
412 if (lowest_speed == highest_speed) {
413 printk (KERN_INFO PFX "highestspeed == lowest, aborting.\n");
416 if (lowest_speed > highest_speed) {
417 printk (KERN_INFO PFX "nonsense! lowest (%d > %d) !\n",
418 lowest_speed, highest_speed);
422 longhaul_table = kmalloc((numscales + 1) * sizeof(struct cpufreq_frequency_table), GFP_KERNEL);
426 for (j=0; j < numscales; j++) {
428 ratio = clock_ratio[j];
431 if (ratio > maxmult || ratio < minmult)
433 longhaul_table[k].frequency = calc_speed(ratio);
434 longhaul_table[k].index = j;
438 longhaul_table[k].frequency = CPUFREQ_TABLE_END;
440 kfree (longhaul_table);
448 static void __init longhaul_setup_voltagescaling(void)
450 union msr_longhaul longhaul;
451 struct mV_pos minvid, maxvid;
452 unsigned int j, speed, pos, kHz_step, numvscales;
455 rdmsrl(MSR_VIA_LONGHAUL, longhaul.val);
456 if (!(longhaul.bits.RevisionID & 1)) {
457 printk(KERN_INFO PFX "Voltage scaling not supported by CPU.\n");
461 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];
466 printk (KERN_INFO PFX "Mobile VRM\n");
467 if (cpu_model < CPU_NEHEMIAH)
469 vrm_mV_table = &mobilevrm_mV[0];
470 mV_vrm_table = &mV_mobilevrm[0];
473 minvid = vrm_mV_table[longhaul.bits.MinimumVID];
474 maxvid = vrm_mV_table[longhaul.bits.MaximumVID];
476 if (minvid.mV == 0 || maxvid.mV == 0 || minvid.mV > maxvid.mV) {
477 printk (KERN_INFO PFX "Bogus values Min:%d.%03d Max:%d.%03d. "
478 "Voltage scaling disabled.\n",
479 minvid.mV/1000, minvid.mV%1000, maxvid.mV/1000, maxvid.mV%1000);
483 if (minvid.mV == maxvid.mV) {
484 printk (KERN_INFO PFX "Claims to support voltage scaling but min & max are "
485 "both %d.%03d. Voltage scaling disabled\n",
486 maxvid.mV/1000, maxvid.mV%1000);
490 /* How many voltage steps */
491 numvscales = maxvid.pos - minvid.pos + 1;
495 "%d possible voltage scales\n",
496 maxvid.mV/1000, maxvid.mV%1000,
497 minvid.mV/1000, minvid.mV%1000,
500 /* Calculate max frequency at min voltage */
501 j = longhaul.bits.MinMHzBR;
502 if (longhaul.bits.MinMHzBR4)
504 min_vid_speed = eblcr_table[j];
505 if (min_vid_speed == -1)
507 switch (longhaul.bits.MinMHzFSB) {
509 min_vid_speed *= 13333;
512 min_vid_speed *= 10000;
515 min_vid_speed *= 6666;
521 if (min_vid_speed >= highest_speed)
523 /* Calculate kHz for one voltage step */
524 kHz_step = (highest_speed - min_vid_speed) / numvscales;
528 while (longhaul_table[j].frequency != CPUFREQ_TABLE_END) {
529 speed = longhaul_table[j].frequency;
530 if (speed > min_vid_speed)
531 pos = (speed - min_vid_speed) / kHz_step + minvid.pos;
534 f_msr_table[longhaul_table[j].index].vrm = mV_vrm_table[pos];
535 f_msr_table[longhaul_table[j].index].pos = pos;
539 longhaul_pos = maxvid.pos;
540 can_scale_voltage = 1;
541 printk(KERN_INFO PFX "Voltage scaling enabled. "
542 "Use of \"conservative\" governor is highly recommended.\n");
546 static int longhaul_verify(struct cpufreq_policy *policy)
548 return cpufreq_frequency_table_verify(policy, longhaul_table);
552 static int longhaul_target(struct cpufreq_policy *policy,
553 unsigned int target_freq, unsigned int relation)
555 unsigned int table_index = 0;
556 unsigned int new_clock_ratio = 0;
558 if (cpufreq_frequency_table_target(policy, longhaul_table, target_freq, relation, &table_index))
561 new_clock_ratio = longhaul_table[table_index].index & 0xFF;
563 longhaul_setstate(new_clock_ratio);
569 static unsigned int longhaul_get(unsigned int cpu)
573 return calc_speed(longhaul_get_cpu_mult());
576 static acpi_status longhaul_walk_callback(acpi_handle obj_handle,
578 void *context, void **return_value)
580 struct acpi_device *d;
582 if ( acpi_bus_get_device(obj_handle, &d) ) {
585 *return_value = (void *)acpi_driver_data(d);
589 /* VIA don't support PM2 reg, but have something similar */
590 static int enable_arbiter_disable(void)
596 /* Find PLE133 host bridge */
598 dev = pci_find_device(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8601_0, NULL);
599 /* Find CLE266 host bridge */
602 dev = pci_find_device(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_862X_0, NULL);
603 /* Find CN400 V-Link host bridge */
605 dev = pci_find_device(PCI_VENDOR_ID_VIA, 0x7259, NULL);
609 /* Enable access to port 0x22 */
610 pci_read_config_byte(dev, reg, &pci_cmd);
611 if (!(pci_cmd & 1<<7)) {
613 pci_write_config_byte(dev, reg, pci_cmd);
614 pci_read_config_byte(dev, reg, &pci_cmd);
615 if (!(pci_cmd & 1<<7)) {
617 "Can't enable access to port 0x22.\n");
626 static int longhaul_setup_vt8235(void)
631 /* Find VT8235 southbridge */
632 dev = pci_find_device(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8235, 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);
643 pci_write_config_byte(dev, 0xe5, pci_cmd);
649 static int __init longhaul_cpu_init(struct cpufreq_policy *policy)
651 struct cpuinfo_x86 *c = cpu_data;
657 /* Check what we have on this motherboard */
658 switch (c->x86_model) {
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));
668 switch (c->x86_mask) {
670 longhaul_version = TYPE_LONGHAUL_V1;
671 cpu_model = CPU_SAMUEL2;
672 cpuname = "C3 'Samuel 2' [C5B]";
673 /* Note, this is not a typo, early Samuel2's had
675 memcpy(clock_ratio, samuel1_clock_ratio,
676 sizeof(samuel1_clock_ratio));
677 memcpy(eblcr_table, samuel2_eblcr,
678 sizeof(samuel2_eblcr));
681 longhaul_version = TYPE_LONGHAUL_V2;
682 if (c->x86_mask < 8) {
683 cpu_model = CPU_SAMUEL2;
684 cpuname = "C3 'Samuel 2' [C5B]";
686 cpu_model = CPU_EZRA;
687 cpuname = "C3 'Ezra' [C5C]";
689 memcpy(clock_ratio, ezra_clock_ratio,
690 sizeof(ezra_clock_ratio));
691 memcpy(eblcr_table, ezra_eblcr,
698 cpu_model = CPU_EZRA_T;
699 cpuname = "C3 'Ezra-T' [C5M]";
700 longhaul_version = TYPE_POWERSAVER;
702 memcpy (clock_ratio, ezrat_clock_ratio, sizeof(ezrat_clock_ratio));
703 memcpy (eblcr_table, ezrat_eblcr, sizeof(ezrat_eblcr));
707 longhaul_version = TYPE_POWERSAVER;
710 nehemiah_clock_ratio,
711 sizeof(nehemiah_clock_ratio));
712 memcpy(eblcr_table, nehemiah_eblcr, sizeof(nehemiah_eblcr));
713 switch (c->x86_mask) {
715 cpu_model = CPU_NEHEMIAH;
716 cpuname = "C3 'Nehemiah A' [C5XLOE]";
719 cpu_model = CPU_NEHEMIAH;
720 cpuname = "C3 'Nehemiah B' [C5XLOH]";
723 cpu_model = CPU_NEHEMIAH_C;
724 cpuname = "C3 'Nehemiah C' [C5P]";
733 /* 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;
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);
747 case TYPE_POWERSAVER:
748 printk ("Powersaver supported.\n");
753 vt8235_present = longhaul_setup_vt8235();
755 /* Find ACPI data for processor */
756 acpi_walk_namespace(ACPI_TYPE_PROCESSOR, ACPI_ROOT_OBJECT,
757 ACPI_UINT32_MAX, &longhaul_walk_callback,
760 /* Check ACPI support for C3 state */
761 if (pr != NULL && longhaul_version != TYPE_LONGHAUL_V1) {
762 cx = &pr->power.states[ACPI_STATE_C3];
763 if (cx->address > 0 && cx->latency <= 1000) {
764 longhaul_flags |= USE_ACPI_C3;
765 goto print_support_type;
768 /* Check if northbridge is friendly */
769 if (enable_arbiter_disable()) {
770 longhaul_flags |= USE_NORTHBRIDGE;
771 goto print_support_type;
773 /* Use VT8235 southbridge if present */
774 if (longhaul_version == TYPE_POWERSAVER && vt8235_present) {
775 longhaul_flags |= USE_VT8235;
776 goto print_support_type;
778 /* Check ACPI support for bus master arbiter disable */
779 if ((pr == NULL) || !(pr->flags.bm_control)) {
781 "No ACPI support. Unsupported northbridge.\n");
786 if (longhaul_flags & USE_NORTHBRIDGE)
787 printk (KERN_INFO PFX "Using northbridge support.\n");
788 else if (longhaul_flags & USE_VT8235)
789 printk (KERN_INFO PFX "Using VT8235 support.\n");
791 printk (KERN_INFO PFX "Using ACPI support.\n");
793 ret = longhaul_get_ranges();
797 if ((longhaul_version != TYPE_LONGHAUL_V1) && (scale_voltage != 0))
798 longhaul_setup_voltagescaling();
800 policy->governor = CPUFREQ_DEFAULT_GOVERNOR;
801 policy->cpuinfo.transition_latency = 200000; /* nsec */
802 policy->cur = calc_speed(longhaul_get_cpu_mult());
804 ret = cpufreq_frequency_table_cpuinfo(policy, longhaul_table);
808 cpufreq_frequency_table_get_attr(longhaul_table, policy->cpu);
813 static int __devexit longhaul_cpu_exit(struct cpufreq_policy *policy)
815 cpufreq_frequency_table_put_attr(policy->cpu);
819 static struct freq_attr* longhaul_attr[] = {
820 &cpufreq_freq_attr_scaling_available_freqs,
824 static struct cpufreq_driver longhaul_driver = {
825 .verify = longhaul_verify,
826 .target = longhaul_target,
828 .init = longhaul_cpu_init,
829 .exit = __devexit_p(longhaul_cpu_exit),
831 .owner = THIS_MODULE,
832 .attr = longhaul_attr,
836 static int __init longhaul_init(void)
838 struct cpuinfo_x86 *c = cpu_data;
840 if (c->x86_vendor != X86_VENDOR_CENTAUR || c->x86 != 6)
844 if (num_online_cpus() > 1) {
845 printk(KERN_ERR PFX "More than 1 CPU detected, longhaul disabled.\n");
849 #ifdef CONFIG_X86_IO_APIC
851 printk(KERN_ERR PFX "APIC detected. Longhaul is currently broken in this configuration.\n");
855 switch (c->x86_model) {
857 return cpufreq_register_driver(&longhaul_driver);
859 printk(KERN_ERR PFX "Use acpi-cpufreq driver for VIA C7\n");
868 static void __exit longhaul_exit(void)
872 for (i=0; i < numscales; i++) {
873 if (clock_ratio[i] == maxmult) {
874 longhaul_setstate(i);
879 cpufreq_unregister_driver(&longhaul_driver);
880 kfree(longhaul_table);
883 module_param (scale_voltage, int, 0644);
884 MODULE_PARM_DESC(scale_voltage, "Scale voltage of processor");
886 MODULE_AUTHOR ("Dave Jones <davej@codemonkey.org.uk>");
887 MODULE_DESCRIPTION ("Longhaul driver for VIA Cyrix processors.");
888 MODULE_LICENSE ("GPL");
890 late_initcall(longhaul_init);
891 module_exit(longhaul_exit);