Revamp SYSINIT ordering. Relabel sysinit IDs (SI_* in sys/kernel.h) to
[dragonfly.git] / sys / platform / pc32 / i386 / est.c
1 /*      $NetBSD: est.c,v 1.25 2006/06/18 16:39:56 nonaka Exp $  */
2 /*
3  * Copyright (c) 2003 Michael Eriksson.
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  * 3. The name of the author may not be used to endorse or promote products
15  *    derived from this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 /*-
29  * Copyright (c) 2004 The NetBSD Foundation, Inc.
30  * All rights reserved.
31  *
32  * Redistribution and use in source and binary forms, with or without
33  * modification, are permitted provided that the following conditions
34  * are met:
35  * 1. Redistributions of source code must retain the above copyright
36  *    notice, this list of conditions and the following disclaimer.
37  * 2. Redistributions in binary form must reproduce the above copyright
38  *    notice, this list of conditions and the following disclaimer in the
39  *    documentation and/or other materials provided with the distribution.
40  * 3. All advertising materials mentioning features or use of this software
41  *    must display the following acknowledgement:
42  *        This product includes software developed by the NetBSD
43  *        Foundation, Inc. and its contributors.
44  * 4. Neither the name of The NetBSD Foundation nor the names of its
45  *    contributors may be used to endorse or promote products derived
46  *    from this software without specific prior written permission.
47  *
48  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
49  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
50  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
51  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
52  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
53  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
54  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
55  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
56  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
57  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
58  * POSSIBILITY OF SUCH DAMAGE.
59  */
60
61 /*
62  * This is a driver for Intel's Enhanced SpeedStep Technology (EST),
63  * as implemented in Pentium M processors.
64  *
65  * Reference documentation:
66  *
67  * - IA-32 Intel Architecture Software Developer's Manual, Volume 3:
68  *   System Programming Guide.
69  *   Section 13.14, Enhanced Intel SpeedStep technology.
70  *   Table B-2, MSRs in Pentium M Processors.
71  *   http://www.intel.com/design/pentium4/manuals/253668.htm
72  *
73  * - Intel Pentium M Processor Datasheet.
74  *   Table 5, Voltage and Current Specifications.
75  *   http://www.intel.com/design/mobile/datashts/252612.htm
76  *
77  * - Intel Pentium M Processor on 90 nm Process with 2-MB L2 Cache Datasheet
78  *   Table 3-4, 3-5, 3-6, Voltage and Current Specifications.
79  *   http://www.intel.com/design/mobile/datashts/302189.htm
80  *
81  * - Linux cpufreq patches, speedstep-centrino.c.
82  *   Encoding of MSR_PERF_CTL and MSR_PERF_STATUS.
83  *   http://www.codemonkey.org.uk/projects/cpufreq/cpufreq-2.4.22-pre6-1.gz
84  *
85  *   ACPI objects: _PCT is MSR location, _PSS is freq/voltage, _PPC is caps.
86  *
87  * $NetBSD: est.c,v 1.25 2006/06/18 16:39:56 nonaka Exp $
88  * $DragonFly: src/sys/platform/pc32/i386/est.c,v 1.7 2007/04/30 07:18:55 dillon Exp $
89  */
90
91 #include <sys/param.h>
92 #include <sys/systm.h>
93 #include <sys/malloc.h>
94 #include <sys/kernel.h>
95 #include <sys/module.h>
96 #include <sys/sysctl.h>
97
98 #include <machine/cpu.h>
99 #include <machine/md_var.h>
100 #include <machine/specialreg.h>
101
102
103 struct fq_info {
104         int mhz;
105         int mv;
106 };
107
108 /* Ultra Low Voltage Intel Pentium M processor 900 MHz */
109 static const struct fq_info pentium_m_900[] = {
110         {  900, 1004 },
111         {  800,  988 },
112         {  600,  844 },
113 };
114
115 /* Ultra Low Voltage Intel Pentium M processor 1.00 GHz */
116 static const struct fq_info pentium_m_1000[] = {
117         { 1000, 1004 },
118         {  900,  988 },
119         {  800,  972 },
120         {  600,  844 },
121 };
122
123 /* Low Voltage Intel Pentium M processor 1.10 GHz */
124 static const struct fq_info pentium_m_1100[] = {
125         { 1100, 1180 },
126         { 1000, 1164 },
127         {  900, 1100 },
128         {  800, 1020 },
129         {  600,  956 },
130 };
131
132 /* Low Voltage Intel Pentium M processor 1.20 GHz */
133 static const struct fq_info pentium_m_1200[] = {
134         { 1200, 1180 },
135         { 1100, 1164 },
136         { 1000, 1100 },
137         {  900, 1020 },
138         {  800, 1004 },
139         {  600,  956 },
140 };
141
142 /* Low Voltage Intel Pentium M processor 1.30 GHz */
143 static const struct fq_info pentium_m_1300_lv[] = {
144         { 1300, 1180 },
145         { 1200, 1164 },
146         { 1100, 1100 },
147         { 1000, 1020 },
148         {  900, 1004 },
149         {  800,  988 },
150         {  600,  956 },
151 };
152
153 /* Intel Pentium M processor 1.30 GHz */
154 static const struct fq_info pentium_m_1300[] = {
155         { 1300, 1388 },
156         { 1200, 1356 },
157         { 1000, 1292 },
158         {  800, 1260 },
159         {  600,  956 },
160 };
161
162 /* Intel Pentium M processor 1.40 GHz */
163 static const struct fq_info pentium_m_1400[] = {
164         { 1400, 1484 },
165         { 1200, 1436 },
166         { 1000, 1308 },
167         {  800, 1180 },
168         {  600,  956 }
169 };
170
171 /* Intel Pentium M processor 1.50 GHz */
172 static const struct fq_info pentium_m_1500[] = {
173         { 1500, 1484 },
174         { 1400, 1452 },
175         { 1200, 1356 },
176         { 1000, 1228 },
177         {  800, 1116 },
178         {  600,  956 }
179 };
180
181 /* Intel Pentium M processor 1.60 GHz */
182 static const struct fq_info pentium_m_1600[] = {
183         { 1600, 1484 },
184         { 1400, 1420 },
185         { 1200, 1276 },
186         { 1000, 1164 },
187         {  800, 1036 },
188         {  600,  956 }
189 };
190
191 /* Intel Pentium M processor 1.70 GHz */
192 static const struct fq_info pentium_m_1700[] = {
193         { 1700, 1484 },
194         { 1400, 1308 },
195         { 1200, 1228 },
196         { 1000, 1116 },
197         {  800, 1004 },
198         {  600,  956 }
199 };
200
201 /* Intel Pentium M processor 723 Ultra Low Voltage 1.0 GHz */
202 static const struct fq_info pentium_m_n723[] = {
203         { 1000,  940 },
204         {  900,  908 },
205         {  800,  876 },
206         {  600,  812 } 
207 };
208
209 /* Intel Pentium M processor 733 Ultra Low Voltage 1.1 GHz */
210 static const struct fq_info pentium_m_n733[] = {
211         { 1100,  940 },
212         { 1000,  924 },
213         {  900,  892 },
214         {  800,  876 },
215         {  600,  812 }
216 };
217
218 /* Intel Pentium M processor 753 Ultra Low Voltage 1.2 GHz */
219 static const struct fq_info pentium_m_n753[] = {
220         { 1200,  940 },
221         { 1100,  924 },
222         { 1000,  908 },
223         {  900,  876 },
224         {  800,  860 },
225         {  600,  812 }
226 };
227
228 /* Intel Pentium M processor 773 Ultra Low Voltage 1.3 GHz */
229 static const struct fq_info pentium_m_n773[] = {
230         { 1300,  940 },
231         { 1200,  924 },
232         { 1100,  908 },
233         { 1000,  892 },
234         {  900,  876 },
235         {  800,  860 },
236         {  600,  812 }
237 };
238
239 /* Intel Pentium M processor 738 Low Voltage 1.4 GHz */
240 static const struct fq_info pentium_m_n738[] = {
241         { 1400, 1116 },
242         { 1300, 1116 },
243         { 1200, 1100 },
244         { 1100, 1068 },
245         { 1000, 1052 },
246         {  900, 1036 },
247         {  800, 1020 },
248         {  600,  988 }
249 };
250
251 /* Intel Pentium M processor 758 Low Voltage 1.5 GHz */
252 static const struct fq_info pentium_m_n758[] = {
253         { 1500, 1116 },
254         { 1400, 1116 },
255         { 1300, 1100 },
256         { 1200, 1084 },
257         { 1100, 1068 },
258         { 1000, 1052 },
259         {  900, 1036 },
260         {  800, 1020 },
261         {  600,  988 }
262 };
263
264 /* Intel Pentium M processor 778 Low Voltage 1.6 GHz */
265 static const struct fq_info pentium_m_n778[] = {
266         { 1600, 1116 },
267         { 1500, 1116 },
268         { 1400, 1100 },
269         { 1300, 1184 },
270         { 1200, 1068 },
271         { 1100, 1052 },
272         { 1000, 1052 },
273         {  900, 1036 },
274         {  800, 1020 },
275         {  600,  988 } 
276 };
277
278 /* Intel Pentium M processor 710 1.4 GHz */
279 static const struct fq_info pentium_m_n710[] = {
280         { 1400, 1340 },
281         { 1200, 1228 },
282         { 1000, 1148 },
283         {  800, 1068 },
284         {  600,  998 }
285 };
286
287 /* Intel Pentium M processor 715 1.5 GHz */
288 static const struct fq_info pentium_m_n715[] = {
289         { 1500, 1340 },
290         { 1200, 1228 },
291         { 1000, 1148 },
292         {  800, 1068 },
293         {  600,  988 }
294 };
295
296 /* Intel Pentium M processor 725 1.6 GHz */
297 static const struct fq_info pentium_m_n725[] = {
298         { 1600, 1340 },
299         { 1400, 1276 },
300         { 1200, 1212 },
301         { 1000, 1132 },
302         {  800, 1068 },
303         {  600,  988 }
304 };
305
306 /* Intel Pentium M processor 730 1.6 GHz */
307 static const struct fq_info pentium_m_n730[] = {
308        { 1600, 1308 },
309        { 1333, 1260 }, 
310        { 1200, 1212 },
311        { 1067, 1180 },
312        {  800,  988 }
313 };     
314
315 /* Intel Pentium M processor 735 1.7 GHz */
316 static const struct fq_info pentium_m_n735[] = {
317         { 1700, 1340 },
318         { 1400, 1244 },
319         { 1200, 1180 },
320         { 1000, 1116 },
321         {  800, 1052 },
322         {  600,  988 }
323 };
324
325 /* Intel Pentium M processor 740 1.73 GHz */
326 static const struct fq_info pentium_m_n740[] = {
327        { 1733, 1356 },
328        { 1333, 1212 },
329        { 1067, 1100 },
330        {  800,  988 },
331 };
332
333 /* Intel Pentium M processor 740 1.73 GHz (988-1308mV version?) */
334 static const struct fq_info pentium_m_n740_2[] = {
335         { 1733, 1308 },
336         { 1333, 1148 },
337         { 1067, 1068 },
338         {  800,  988 }
339 };
340
341 /* Intel Pentium M processor 745 1.8 GHz */
342 static const struct fq_info pentium_m_n745[] = {
343         { 1800, 1340 },
344         { 1600, 1292 },
345         { 1400, 1228 },
346         { 1200, 1164 },
347         { 1000, 1116 },
348         {  800, 1052 },
349         {  600,  988 }
350 };
351
352 /* Intel Pentium M processor 750 1.86 GHz */
353 /* values extracted from \_PR\NPSS (via _PSS) SDST ACPI table */
354 static const struct fq_info pentium_m_n750[] = {
355         { 1867, 1308 },
356         { 1600, 1228 },
357         { 1333, 1148 },
358         { 1067, 1068 },
359         {  800,  988 }
360 };
361
362 static const struct fq_info pentium_m_n750_2[] = {
363         { 1867, 1356 },
364         { 1600, 1228 },
365         { 1333, 1148 },
366         { 1067, 1068 },
367         {  800,  988 }
368 };
369
370 /* Intel Pentium M processor 755 2.0 GHz */
371 static const struct fq_info pentium_m_n755[] = {
372         { 2000, 1340 },
373         { 1800, 1292 },
374         { 1600, 1244 },
375         { 1400, 1196 },
376         { 1200, 1148 },
377         { 1000, 1100 },
378         {  800, 1052 },
379         {  600,  988 }
380 };
381
382 /* Intel Pentium M processor 760 2.0 GHz */
383 static const struct fq_info pentium_m_n760[] = {
384         { 2000, 1356 },
385         { 1600, 1244 },
386         { 1333, 1164 },
387         { 1067, 1084 },
388         {  800,  988 }
389 };
390
391 /* Intel Pentium M processor 760 2.0 GHz */
392 static const struct fq_info pentium_m_n760_2[] = {
393         { 2000, 1308 },
394         { 1600, 1244 },
395         { 1333, 1164 },
396         { 1067, 1084 },
397         {  800,  988 }
398 };
399
400 /* Intel Pentium M processor 765 2.1 GHz */
401 static const struct fq_info pentium_m_n765[] = {
402         { 2100, 1340 },
403         { 1800, 1276 },
404         { 1600, 1228 },
405         { 1400, 1180 },
406         { 1200, 1132 },
407         { 1000, 1084 },
408         {  800, 1036 },
409         {  600,  988 }
410 };
411
412 /* Intel Pentium M processor 770 2.13 GHz */
413 static const struct fq_info pentium_m_n770[] = {
414         { 2133, 1551 },
415         { 1800, 1429 },
416         { 1600, 1356 },
417         { 1400, 1180 },
418         { 1200, 1132 },
419         { 1000, 1084 },
420         {  800, 1036 },
421         {  600,  988 }
422 };
423
424 /* Intel Pentium M processor 770 2.13 GHz */
425 static const struct fq_info pentium_m_n770_2[] = {
426         { 2133, 1356 },
427         { 1867, 1292 },
428         { 1600, 1212 },
429         { 1333, 1148 },
430         { 1067, 1068 },
431         {  800,  988 }
432 };
433
434 struct fqlist {
435         const char *brand_tag;
436         const u_int cpu_id;
437         size_t tablec;
438         const struct fq_info *table;
439         const int fsbmult; /* in multiples of 133 MHz */
440 };
441
442 #define ENTRY(s, i, v, f)       { s, i, sizeof(v) / sizeof((v)[0]), v, f }
443 static const struct fqlist pentium_m[] = { /* Banias */
444         ENTRY(" 900", 0x0695, pentium_m_900,  3),
445         ENTRY("1000", 0x0695, pentium_m_1000, 3),
446         ENTRY("1100", 0x0695, pentium_m_1100, 3),
447         ENTRY("1200", 0x0695, pentium_m_1200, 3),
448         ENTRY("1300", 0x0695, pentium_m_1300, 3),
449         ENTRY("1300", 0x0695, pentium_m_1300_lv, 3),
450         ENTRY("1400", 0x0695, pentium_m_1400, 3),
451         ENTRY("1500", 0x0695, pentium_m_1500, 3),
452         ENTRY("1600", 0x0695, pentium_m_1600, 3),
453         ENTRY("1700", 0x0695, pentium_m_1700, 3),
454 };
455
456 static const struct fqlist pentium_m_dothan[] = {
457
458         /* low voltage CPUs */
459         ENTRY("1.00", 0x06d8, pentium_m_n723, 3),
460         ENTRY("1.10", 0x06d6, pentium_m_n733, 3),
461         ENTRY("1.20", 0x06d8, pentium_m_n753, 3),
462         ENTRY("1.30", 0, pentium_m_n773, 3), /* does this exist? */
463         
464         /* ultra low voltage CPUs */
465         ENTRY("1.40", 0x06d6, pentium_m_n738, 3),
466         ENTRY("1.50", 0x06d8, pentium_m_n758, 3),
467         ENTRY("1.60", 0x06d8, pentium_m_n778, 3),
468
469         /* 'regular' 400 MHz FSB CPUs */
470         ENTRY("1.40", 0x06d6, pentium_m_n710, 3),
471         ENTRY("1.50", 0x06d6, pentium_m_n715, 3),
472         ENTRY("1.50", 0x06d8, pentium_m_n715, 3),
473         ENTRY("1.60", 0x06d6, pentium_m_n725, 3),
474         ENTRY("1.70", 0x06d6, pentium_m_n735, 3),
475         ENTRY("1.80", 0x06d6, pentium_m_n745, 3),
476         ENTRY("2.00", 0x06d6, pentium_m_n755, 3),
477         ENTRY("2.10", 0x06d6, pentium_m_n765, 3),
478
479         /* 533 MHz FSB CPUs */
480         ENTRY("1.60", 0x06d8, pentium_m_n730, 4),
481         ENTRY("1.73", 0x06d8, pentium_m_n740, 4),
482         ENTRY("1.73", 0x06d8, pentium_m_n740_2, 4),
483         ENTRY("1.86", 0x06d8, pentium_m_n750, 4),
484         ENTRY("1.86", 0x06d8, pentium_m_n750_2, 4),
485         ENTRY("2.00", 0x06d8, pentium_m_n760, 4),
486         ENTRY("2.00", 0x06d8, pentium_m_n760_2, 4),
487         ENTRY("2.13", 0x06d8, pentium_m_n770, 4),
488         ENTRY("2.13", 0x06d8, pentium_m_n770_2, 4),
489
490 };
491 #undef ENTRY
492
493 struct est_cpu {
494         const char *brand_prefix;
495         const char *brand_suffix;
496         size_t listc;
497         const struct fqlist *list;
498 };
499
500 static const struct est_cpu est_cpus[] = {
501         {
502                 "Intel(R) Pentium(R) M processor ", "MHz",
503                 (sizeof(pentium_m) / sizeof(pentium_m[0])),
504                 pentium_m
505         },
506         {
507                 "Intel(R) Pentium(R) M processor ", "GHz",
508                 (sizeof(pentium_m_dothan) / sizeof(pentium_m_dothan[0])),
509                 pentium_m_dothan
510         },
511 };
512
513 #define NESTCPUS  (sizeof(est_cpus) / sizeof(est_cpus[0]))
514
515 #define MSR2MV(msr)     (((int) (msr) & 0xff) * 16 + 700)
516 #define MSR2MHZ(msr)    (((((int) (msr) >> 8) & 0xff) * 100 * fsbmult + 1)/ 3)
517 #define MV2MSR(mv)      ((((int) (mv) - 700) >> 4) & 0xff)
518 #define MHZ2MSR(mhz)    (((3 * (mhz + 30) / (100 * fsbmult)) & 0xff) << 8)
519 /* XXX 30 is slop to deal with the 33.333 MHz roundoff values */
520
521 /*
522  * Names and numbers from IA-32 System Programming Guide
523  * (not found in <machine/specialregs.h>
524  */
525 #define MSR_PERF_STATUS         0x198
526 #define MSR_PERF_CTL            0x199
527
528 static const struct fqlist *est_fqlist; /* not NULL if functional */
529 static int      fsbmult;
530
531 static const char est_desc[] = "Enhanced SpeedStep";
532
533 static char freqs_available[80];
534
535 static int
536 est_sysctl_helper(SYSCTL_HANDLER_ARGS)
537 {
538         uint64_t msr;
539         int      fq, oldfq, err = 0;
540         int      i;
541
542         if (est_fqlist == NULL)
543                 return (EOPNOTSUPP);
544
545         oldfq = MSR2MHZ(rdmsr(MSR_PERF_CTL));
546
547         if (req->newptr != NULL) {
548                 err = SYSCTL_IN(req, &fq, sizeof(fq));
549                 if (err)
550                         return err;
551
552                 if (fq != oldfq) {
553                         for (i = est_fqlist->tablec - 1; i > 0; i--) {
554                                 if (est_fqlist->table[i].mhz >= fq)
555                                         break;
556                         }
557                         fq = est_fqlist->table[i].mhz;
558                         msr = (rdmsr(MSR_PERF_CTL) & ~0xffffULL) |
559                             MV2MSR(est_fqlist->table[i].mv) |
560                             MHZ2MSR(est_fqlist->table[i].mhz);
561                         wrmsr(MSR_PERF_CTL, msr);
562                 }
563         } else {
564                 err = SYSCTL_OUT(req, &oldfq, sizeof(oldfq));
565         }
566
567         return err;
568 }
569
570 /*
571  * Look for a CPU matching hw.model
572  */
573 static const struct fqlist *
574 findcpu(const char *hwmodel, int mv)
575 {
576         const struct est_cpu    *ccpu;
577         const struct fqlist     *fql;
578         const char              *tag;
579         size_t                  len;
580         size_t                  i;
581         int k;
582
583         for (ccpu = est_cpus; ccpu < est_cpus + NESTCPUS; ++ccpu) {
584                 len = strlen(ccpu->brand_prefix);
585                 if (strncmp(ccpu->brand_prefix, hwmodel, len) != 0)
586                         continue;
587                 tag = hwmodel + len;
588                 for (i = 0; i < ccpu->listc; i++) {
589                         fql = &ccpu->list[i];
590                         len = strlen(fql->brand_tag);
591                         if (strncmp(fql->brand_tag, tag, len) != 0 ||
592                             strcmp(ccpu->brand_suffix, tag + len))
593                                 continue;
594
595                         if (fql->cpu_id == 0 || fql->cpu_id == cpu_id) {
596                                 /* verify operating point is in table, because
597                                    CPUID + brand_tag still isn't unique. */
598                                 for (k = fql->tablec - 1; k >= 0; k--) {
599                                         if (fql->table[k].mv == mv)
600                                                 return fql;
601                                 }
602                         }
603                 }
604         }
605         return(NULL);
606 }
607
608
609 static struct sysctl_ctx_list   machdep_est_ctx;
610
611 static int
612 est_init(void)
613 {
614         char                    hwmodel[128];
615         int                     mib[] = { CTL_HW, HW_MODEL };
616         size_t                  modellen = sizeof(hwmodel);
617         struct sysctl_oid       *oid, *leaf;
618         uint64_t                msr;
619         int                     mv;
620         size_t                  len, freq_len;
621         int                     err;
622         size_t                  i;
623
624         if ((cpu_feature2 & CPUID2_EST) == 0) {
625                 kprintf("Enhanced SpeedStep unsupported on this hardware.\n");
626                 return(EOPNOTSUPP);
627         }
628
629         modellen = sizeof(hwmodel);
630         err = kernel_sysctl(mib, 2, hwmodel, &modellen, NULL, 0, NULL);
631         if (err) {
632                 kprintf("kernel_sysctl hw.model failed\n");
633                 return(err);
634         }
635
636         msr = rdmsr(MSR_PERF_STATUS);
637         mv = MSR2MV(msr);
638         kprintf("%s (%d mV) ", est_desc, mv);
639
640         est_fqlist = findcpu(hwmodel, mv);
641         if (est_fqlist == NULL) {
642                 kprintf(" - unknown CPU or operating point"
643                        "(cpu_id:%#x, msr:%#llx).\n", cpu_id, msr);
644                 return(EOPNOTSUPP);
645         }
646
647         /*
648          * OK, tell the user the available frequencies.
649          */
650         fsbmult = est_fqlist->fsbmult;
651         kprintf("%d MHz\n", MSR2MHZ(msr));
652         
653         freq_len = est_fqlist->tablec * (sizeof("9999 ")-1) + 1;
654         if (freq_len >= sizeof(freqs_available)) {
655                 kprintf("increase the size of freqs_available[]\n");
656                 return(ENOMEM);
657         }
658         freqs_available[0] = '\0';
659         len = 0;
660         for (i = 0; i < est_fqlist->tablec; i++) {
661                 len += ksnprintf(freqs_available + len, freq_len - len, "%d%s",
662                     est_fqlist->table[i].mhz,
663                     i < est_fqlist->tablec - 1 ? " " : "");
664         }
665         kprintf("%s frequencies available (MHz): %s\n", est_desc,
666                freqs_available);
667
668         /*
669          * Setup the sysctl sub-tree machdep.est.*
670          */
671         oid = SYSCTL_ADD_NODE(&machdep_est_ctx,
672             SYSCTL_STATIC_CHILDREN(_machdep), OID_AUTO, "est",
673             CTLFLAG_RD, NULL, "");
674         if (oid == NULL)
675                 return(EOPNOTSUPP);
676         oid = SYSCTL_ADD_NODE(&machdep_est_ctx, SYSCTL_CHILDREN(oid),
677             OID_AUTO, "frequency", CTLFLAG_RD, NULL, "");
678         if (oid == NULL)
679                 return(EOPNOTSUPP);
680         leaf = SYSCTL_ADD_PROC(&machdep_est_ctx, SYSCTL_CHILDREN(oid),
681             OID_AUTO, "target", CTLTYPE_INT | CTLFLAG_RW, NULL, NULL,
682             est_sysctl_helper, "I",
683             "Target CPU frequency for Enhanced SpeedStep");
684         if (leaf == NULL)
685                 return(EOPNOTSUPP);
686         leaf = SYSCTL_ADD_PROC(&machdep_est_ctx, SYSCTL_CHILDREN(oid),
687             OID_AUTO, "current", CTLTYPE_INT | CTLFLAG_RD, NULL, NULL,
688             est_sysctl_helper, "I",
689             "Current CPU frequency for Enhanced SpeedStep");
690         if (leaf == NULL)
691                 return(EOPNOTSUPP);
692         leaf = SYSCTL_ADD_STRING(&machdep_est_ctx, SYSCTL_CHILDREN(oid),
693             OID_AUTO, "available", CTLFLAG_RD, freqs_available,
694             sizeof(freqs_available),
695             "CPU frequencies supported by Enhanced SpeedStep");
696         if (leaf == NULL)
697                 return(EOPNOTSUPP);
698
699         return(0);
700 }
701
702 static int
703 est_modevh(struct module *m __unused, int what, void *arg __unused)
704 {
705         int error;
706
707         switch (what) {
708         case MOD_LOAD:
709                 error = sysctl_ctx_init(&machdep_est_ctx);
710                 if (error != 0)
711                         break;
712                 error = est_init();
713                 break;
714         case MOD_UNLOAD:
715                 error = sysctl_ctx_free(&machdep_est_ctx);
716                 break;
717         default:
718                 error = EINVAL;
719                 break;
720         }
721         return(error);
722 }
723
724 static moduledata_t est_mod = {
725         "est",
726         est_modevh,
727         NULL,
728 };
729
730 DECLARE_MODULE(est, est_mod, SI_BOOT2_BIOS, SI_ORDER_ANY);