blob: 0b66df4ed513408f1b28e2ca5a5094c41a885717 [file] [log] [blame]
Thomas Gleixner4f190482019-05-27 08:55:14 +02001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * (C) 2002 - 2003 Dominik Brodowski <linux@brodo.de>
4 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Library for common functions for Intel SpeedStep v.1 and v.2 support
6 *
7 * BIG FAT DISCLAIMER: Work in progress code. Possibly *dangerous*
8 */
9
Joe Perches1c5864e2016-04-05 13:28:25 -070010#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/kernel.h>
Dave Jones32ee8c32006-02-28 00:43:23 -050013#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/moduleparam.h>
15#include <linux/init.h>
16#include <linux/cpufreq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18#include <asm/msr.h>
Matthias-Christian Ott199785e2009-02-20 20:52:17 -050019#include <asm/tsc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "speedstep-lib.h"
21
Dave Jonesbbfebd62009-01-17 23:55:22 -050022#define PFX "speedstep-lib: "
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24#ifdef CONFIG_X86_SPEEDSTEP_RELAXED_CAP_CHECK
Dave Jonesbbfebd62009-01-17 23:55:22 -050025static int relaxed_check;
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#else
27#define relaxed_check 0
28#endif
29
30/*********************************************************************
31 * GET PROCESSOR CORE SPEED IN KHZ *
32 *********************************************************************/
33
Rusty Russell1cce76c2009-11-17 14:39:53 -080034static unsigned int pentium3_get_frequency(enum speedstep_processor processor)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035{
Dave Jonesbbfebd62009-01-17 23:55:22 -050036 /* See table 14 of p3_ds.pdf and table 22 of 29834003.pdf */
Colin Ian King843791b2017-08-25 18:00:16 +010037 static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 unsigned int ratio; /* Frequency Multiplier (x10) */
Dave Jones32ee8c32006-02-28 00:43:23 -050039 u8 bitmap; /* power on configuration bits
40 [27, 25:22] (in MSR 0x2a) */
Dave Jonesbbfebd62009-01-17 23:55:22 -050041 } msr_decode_mult[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 { 30, 0x01 },
43 { 35, 0x05 },
44 { 40, 0x02 },
45 { 45, 0x06 },
46 { 50, 0x00 },
47 { 55, 0x04 },
48 { 60, 0x0b },
49 { 65, 0x0f },
50 { 70, 0x09 },
51 { 75, 0x0d },
52 { 80, 0x0a },
53 { 85, 0x26 },
54 { 90, 0x20 },
55 { 100, 0x2b },
Dave Jonesbbfebd62009-01-17 23:55:22 -050056 { 0, 0xff } /* error or unknown value */
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 };
58
59 /* PIII(-M) FSB settings: see table b1-b of 24547206.pdf */
Colin Ian King843791b2017-08-25 18:00:16 +010060 static const struct {
Dave Jones32ee8c32006-02-28 00:43:23 -050061 unsigned int value; /* Front Side Bus speed in MHz */
62 u8 bitmap; /* power on configuration bits [18: 19]
63 (in MSR 0x2a) */
Dave Jonesbbfebd62009-01-17 23:55:22 -050064 } msr_decode_fsb[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 { 66, 0x0 },
66 { 100, 0x2 },
67 { 133, 0x1 },
68 { 0, 0xff}
69 };
70
Dave Jones32ee8c32006-02-28 00:43:23 -050071 u32 msr_lo, msr_tmp;
72 int i = 0, j = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74 /* read MSR 0x2a - we only need the low 32 bits */
75 rdmsr(MSR_IA32_EBL_CR_POWERON, msr_lo, msr_tmp);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +020076 pr_debug("P3 - MSR_IA32_EBL_CR_POWERON: 0x%x 0x%x\n", msr_lo, msr_tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 msr_tmp = msr_lo;
78
79 /* decode the FSB */
80 msr_tmp &= 0x00c0000;
81 msr_tmp >>= 18;
82 while (msr_tmp != msr_decode_fsb[i].bitmap) {
83 if (msr_decode_fsb[i].bitmap == 0xff)
84 return 0;
85 i++;
86 }
87
88 /* decode the multiplier */
Dave Jonesbbfebd62009-01-17 23:55:22 -050089 if (processor == SPEEDSTEP_CPU_PIII_C_EARLY) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +020090 pr_debug("workaround for early PIIIs\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 msr_lo &= 0x03c00000;
92 } else
93 msr_lo &= 0x0bc00000;
94 msr_lo >>= 22;
95 while (msr_lo != msr_decode_mult[j].bitmap) {
96 if (msr_decode_mult[j].bitmap == 0xff)
97 return 0;
98 j++;
99 }
100
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200101 pr_debug("speed is %u\n",
Dave Jonesbbfebd62009-01-17 23:55:22 -0500102 (msr_decode_mult[j].ratio * msr_decode_fsb[i].value * 100));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Dave Jonesbbfebd62009-01-17 23:55:22 -0500104 return msr_decode_mult[j].ratio * msr_decode_fsb[i].value * 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
107
108static unsigned int pentiumM_get_frequency(void)
109{
Dave Jones32ee8c32006-02-28 00:43:23 -0500110 u32 msr_lo, msr_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112 rdmsr(MSR_IA32_EBL_CR_POWERON, msr_lo, msr_tmp);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200113 pr_debug("PM - MSR_IA32_EBL_CR_POWERON: 0x%x 0x%x\n", msr_lo, msr_tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115 /* see table B-2 of 24547212.pdf */
116 if (msr_lo & 0x00040000) {
Dave Jonesbbfebd62009-01-17 23:55:22 -0500117 printk(KERN_DEBUG PFX "PM - invalid FSB: 0x%x 0x%x\n",
118 msr_lo, msr_tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 return 0;
120 }
121
122 msr_tmp = (msr_lo >> 22) & 0x1f;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200123 pr_debug("bits 22-26 are 0x%x, speed is %u\n",
Dave Jonesbbfebd62009-01-17 23:55:22 -0500124 msr_tmp, (msr_tmp * 100 * 1000));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Dave Jonesbbfebd62009-01-17 23:55:22 -0500126 return msr_tmp * 100 * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128
Dominik Brodowski4e746632006-10-31 12:44:08 -0500129static unsigned int pentium_core_get_frequency(void)
130{
131 u32 fsb = 0;
132 u32 msr_lo, msr_tmp;
Dave Jonesbbfebd62009-01-17 23:55:22 -0500133 int ret;
Dominik Brodowski4e746632006-10-31 12:44:08 -0500134
135 rdmsr(MSR_FSB_FREQ, msr_lo, msr_tmp);
Dominik Brodowskie11952b2006-12-04 20:39:16 -0500136 /* see table B-2 of 25366920.pdf */
Dominik Brodowski4e746632006-10-31 12:44:08 -0500137 switch (msr_lo & 0x07) {
138 case 5:
Dominik Brodowskie11952b2006-12-04 20:39:16 -0500139 fsb = 100000;
Dominik Brodowski4e746632006-10-31 12:44:08 -0500140 break;
141 case 1:
Dominik Brodowskie11952b2006-12-04 20:39:16 -0500142 fsb = 133333;
Dominik Brodowski4e746632006-10-31 12:44:08 -0500143 break;
144 case 3:
Dominik Brodowskie11952b2006-12-04 20:39:16 -0500145 fsb = 166667;
Dominik Brodowski4e746632006-10-31 12:44:08 -0500146 break;
Herton Ronaldo Krzesinskic60e19e2008-11-15 17:02:46 -0200147 case 2:
148 fsb = 200000;
149 break;
150 case 0:
151 fsb = 266667;
152 break;
153 case 4:
154 fsb = 333333;
155 break;
Dominik Brodowski4e746632006-10-31 12:44:08 -0500156 default:
Joe Perchesb49c22a2016-04-05 13:28:24 -0700157 pr_err("PCORE - MSR_FSB_FREQ undefined value\n");
Dominik Brodowski4e746632006-10-31 12:44:08 -0500158 }
159
160 rdmsr(MSR_IA32_EBL_CR_POWERON, msr_lo, msr_tmp);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200161 pr_debug("PCORE - MSR_IA32_EBL_CR_POWERON: 0x%x 0x%x\n",
Dave Jonesbbfebd62009-01-17 23:55:22 -0500162 msr_lo, msr_tmp);
Dominik Brodowski4e746632006-10-31 12:44:08 -0500163
164 msr_tmp = (msr_lo >> 22) & 0x1f;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200165 pr_debug("bits 22-26 are 0x%x, speed is %u\n",
Dave Jonesbbfebd62009-01-17 23:55:22 -0500166 msr_tmp, (msr_tmp * fsb));
Dominik Brodowski4e746632006-10-31 12:44:08 -0500167
Dave Jonesbbfebd62009-01-17 23:55:22 -0500168 ret = (msr_tmp * fsb);
169 return ret;
Dominik Brodowski4e746632006-10-31 12:44:08 -0500170}
Dominik Brodowskie11952b2006-12-04 20:39:16 -0500171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173static unsigned int pentium4_get_frequency(void)
174{
175 struct cpuinfo_x86 *c = &boot_cpu_data;
176 u32 msr_lo, msr_hi, mult;
177 unsigned int fsb = 0;
Dave Jonesbbfebd62009-01-17 23:55:22 -0500178 unsigned int ret;
Matthias-Christian Ott199785e2009-02-20 20:52:17 -0500179 u8 fsb_code;
180
181 /* Pentium 4 Model 0 and 1 do not have the Core Clock Frequency
182 * to System Bus Frequency Ratio Field in the Processor Frequency
183 * Configuration Register of the MSR. Therefore the current
184 * frequency cannot be calculated and has to be measured.
185 */
186 if (c->x86_model < 2)
187 return cpu_khz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189 rdmsr(0x2c, msr_lo, msr_hi);
190
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200191 pr_debug("P4 - MSR_EBC_FREQUENCY_ID: 0x%x 0x%x\n", msr_lo, msr_hi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Dave Jones32ee8c32006-02-28 00:43:23 -0500193 /* decode the FSB: see IA-32 Intel (C) Architecture Software
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 * Developer's Manual, Volume 3: System Prgramming Guide,
195 * revision #12 in Table B-1: MSRs in the Pentium 4 and
196 * Intel Xeon Processors, on page B-4 and B-5.
197 */
Matthias-Christian Ott199785e2009-02-20 20:52:17 -0500198 fsb_code = (msr_lo >> 16) & 0x7;
199 switch (fsb_code) {
200 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 fsb = 100 * 1000;
Matthias-Christian Ott199785e2009-02-20 20:52:17 -0500202 break;
203 case 1:
204 fsb = 13333 * 10;
205 break;
206 case 2:
207 fsb = 200 * 1000;
208 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
210
211 if (!fsb)
Dave Jonesbbfebd62009-01-17 23:55:22 -0500212 printk(KERN_DEBUG PFX "couldn't detect FSB speed. "
213 "Please send an e-mail to <linux@brodo.de>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215 /* Multiplier. */
Zhao Yakuied9cbcd2007-11-20 14:20:21 -0500216 mult = msr_lo >> 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200218 pr_debug("P4 - FSB %u kHz; Multiplier %u; Speed %u kHz\n",
Dave Jonesbbfebd62009-01-17 23:55:22 -0500219 fsb, mult, (fsb * mult));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Dave Jonesbbfebd62009-01-17 23:55:22 -0500221 ret = (fsb * mult);
222 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223}
224
Dave Jones32ee8c32006-02-28 00:43:23 -0500225
Rusty Russell394122a2009-06-11 22:59:58 +0930226/* Warning: may get called from smp_call_function_single. */
Rusty Russell1cce76c2009-11-17 14:39:53 -0800227unsigned int speedstep_get_frequency(enum speedstep_processor processor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
229 switch (processor) {
Dave Jonesbbfebd62009-01-17 23:55:22 -0500230 case SPEEDSTEP_CPU_PCORE:
Dominik Brodowski4e746632006-10-31 12:44:08 -0500231 return pentium_core_get_frequency();
Dave Jonesbbfebd62009-01-17 23:55:22 -0500232 case SPEEDSTEP_CPU_PM:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 return pentiumM_get_frequency();
Dave Jonesbbfebd62009-01-17 23:55:22 -0500234 case SPEEDSTEP_CPU_P4D:
235 case SPEEDSTEP_CPU_P4M:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 return pentium4_get_frequency();
Dave Jonesbbfebd62009-01-17 23:55:22 -0500237 case SPEEDSTEP_CPU_PIII_T:
238 case SPEEDSTEP_CPU_PIII_C:
239 case SPEEDSTEP_CPU_PIII_C_EARLY:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 return pentium3_get_frequency(processor);
241 default:
242 return 0;
Tom Rix00d43942020-10-27 11:59:34 -0700243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 return 0;
245}
Dave Jonesbbfebd62009-01-17 23:55:22 -0500246EXPORT_SYMBOL_GPL(speedstep_get_frequency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248
249/*********************************************************************
250 * DETECT SPEEDSTEP-CAPABLE PROCESSOR *
251 *********************************************************************/
252
Andi Kleenfa8031a2012-01-26 00:09:12 +0100253/* Keep in sync with the x86_cpu_id tables in the different modules */
Luc Van Oostenryckdf214432018-04-24 15:14:13 +0200254enum speedstep_processor speedstep_detect_processor(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
Mike Travis92cb7612007-10-19 20:35:04 +0200256 struct cpuinfo_x86 *c = &cpu_data(0);
Dave Jones32ee8c32006-02-28 00:43:23 -0500257 u32 ebx, msr_lo, msr_hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200259 pr_debug("x86: %x, model: %x\n", c->x86, c->x86_model);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Dave Jones32ee8c32006-02-28 00:43:23 -0500261 if ((c->x86_vendor != X86_VENDOR_INTEL) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 ((c->x86 != 6) && (c->x86 != 0xF)))
263 return 0;
264
265 if (c->x86 == 0xF) {
266 /* Intel Mobile Pentium 4-M
267 * or Intel Mobile Pentium 4 with 533 MHz FSB */
268 if (c->x86_model != 2)
269 return 0;
270
271 ebx = cpuid_ebx(0x00000001);
272 ebx &= 0x000000FF;
273
Jia Zhangb3991512018-01-01 09:52:10 +0800274 pr_debug("ebx value is %x, x86_stepping is %x\n", ebx, c->x86_stepping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Jia Zhangb3991512018-01-01 09:52:10 +0800276 switch (c->x86_stepping) {
Dave Jones32ee8c32006-02-28 00:43:23 -0500277 case 4:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 /*
Dave Jones32ee8c32006-02-28 00:43:23 -0500279 * B-stepping [M-P4-M]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 * sample has ebx = 0x0f, production has 0x0e.
281 */
282 if ((ebx == 0x0e) || (ebx == 0x0f))
Dave Jonesbbfebd62009-01-17 23:55:22 -0500283 return SPEEDSTEP_CPU_P4M;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 break;
Dave Jones32ee8c32006-02-28 00:43:23 -0500285 case 7:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 /*
287 * C-stepping [M-P4-M]
288 * needs to have ebx=0x0e, else it's a celeron:
289 * cf. 25130917.pdf / page 7, footnote 5 even
290 * though 25072120.pdf / page 7 doesn't say
291 * samples are only of B-stepping...
292 */
293 if (ebx == 0x0e)
Dave Jonesbbfebd62009-01-17 23:55:22 -0500294 return SPEEDSTEP_CPU_P4M;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 break;
296 case 9:
297 /*
298 * D-stepping [M-P4-M or M-P4/533]
299 *
300 * this is totally strange: CPUID 0x0F29 is
301 * used by M-P4-M, M-P4/533 and(!) Celeron CPUs.
302 * The latter need to be sorted out as they don't
303 * support speedstep.
304 * Celerons with CPUID 0x0F29 may have either
305 * ebx=0x8 or 0xf -- 25130917.pdf doesn't say anything
306 * specific.
307 * M-P4-Ms may have either ebx=0xe or 0xf [see above]
308 * M-P4/533 have either ebx=0xe or 0xf. [25317607.pdf]
309 * also, M-P4M HTs have ebx=0x8, too
Dave Jonesbbfebd62009-01-17 23:55:22 -0500310 * For now, they are distinguished by the model_id
311 * string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 */
Dave Jonesbbfebd62009-01-17 23:55:22 -0500313 if ((ebx == 0x0e) ||
314 (strstr(c->x86_model_id,
315 "Mobile Intel(R) Pentium(R) 4") != NULL))
316 return SPEEDSTEP_CPU_P4M;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 break;
318 default:
319 break;
320 }
321 return 0;
322 }
323
324 switch (c->x86_model) {
325 case 0x0B: /* Intel PIII [Tualatin] */
Dave Jonesbbfebd62009-01-17 23:55:22 -0500326 /* cpuid_ebx(1) is 0x04 for desktop PIII,
327 * 0x06 for mobile PIII-M */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 ebx = cpuid_ebx(0x00000001);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200329 pr_debug("ebx is %x\n", ebx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331 ebx &= 0x000000FF;
332
333 if (ebx != 0x06)
334 return 0;
335
336 /* So far all PIII-M processors support SpeedStep. See
Dave Jones32ee8c32006-02-28 00:43:23 -0500337 * Intel's 24540640.pdf of June 2003
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 */
Dave Jonesbbfebd62009-01-17 23:55:22 -0500339 return SPEEDSTEP_CPU_PIII_T;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341 case 0x08: /* Intel PIII [Coppermine] */
342
343 /* all mobile PIII Coppermines have FSB 100 MHz
344 * ==> sort out a few desktop PIIIs. */
345 rdmsr(MSR_IA32_EBL_CR_POWERON, msr_lo, msr_hi);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200346 pr_debug("Coppermine: MSR_IA32_EBL_CR_POWERON is 0x%x, 0x%x\n",
Dave Jonesbbfebd62009-01-17 23:55:22 -0500347 msr_lo, msr_hi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 msr_lo &= 0x00c0000;
349 if (msr_lo != 0x0080000)
350 return 0;
351
352 /*
353 * If the processor is a mobile version,
354 * platform ID has bit 50 set
355 * it has SpeedStep technology if either
356 * bit 56 or 57 is set
357 */
358 rdmsr(MSR_IA32_PLATFORM_ID, msr_lo, msr_hi);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200359 pr_debug("Coppermine: MSR_IA32_PLATFORM ID is 0x%x, 0x%x\n",
Dave Jonesbbfebd62009-01-17 23:55:22 -0500360 msr_lo, msr_hi);
361 if ((msr_hi & (1<<18)) &&
362 (relaxed_check ? 1 : (msr_hi & (3<<24)))) {
Jia Zhangb3991512018-01-01 09:52:10 +0800363 if (c->x86_stepping == 0x01) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200364 pr_debug("early PIII version\n");
Dave Jonesbbfebd62009-01-17 23:55:22 -0500365 return SPEEDSTEP_CPU_PIII_C_EARLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 } else
Dave Jonesbbfebd62009-01-17 23:55:22 -0500367 return SPEEDSTEP_CPU_PIII_C;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 }
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500369 fallthrough;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 default:
371 return 0;
372 }
373}
374EXPORT_SYMBOL_GPL(speedstep_detect_processor);
375
376
377/*********************************************************************
378 * DETECT SPEEDSTEP SPEEDS *
379 *********************************************************************/
380
Rusty Russell1cce76c2009-11-17 14:39:53 -0800381unsigned int speedstep_get_freqs(enum speedstep_processor processor,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 unsigned int *low_speed,
383 unsigned int *high_speed,
Mattia Dongili1a107602005-12-02 21:59:41 +0100384 unsigned int *transition_latency,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 void (*set_state) (unsigned int state))
386{
387 unsigned int prev_speed;
388 unsigned int ret = 0;
389 unsigned long flags;
Abhilash Jindal72e624d2015-08-11 12:01:22 -0400390 ktime_t tv1, tv2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392 if ((!processor) || (!low_speed) || (!high_speed) || (!set_state))
393 return -EINVAL;
394
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200395 pr_debug("trying to determine both speeds\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 /* get current speed */
Dave Jonesbbfebd62009-01-17 23:55:22 -0500398 prev_speed = speedstep_get_frequency(processor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 if (!prev_speed)
400 return -EIO;
401
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200402 pr_debug("previous speed is %u\n", prev_speed);
Mattia Dongili1a107602005-12-02 21:59:41 +0100403
Mikulas Patockad4d4eda2015-02-09 13:38:17 -0500404 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 local_irq_save(flags);
406
407 /* switch to low state */
408 set_state(SPEEDSTEP_LOW);
Dave Jonesbbfebd62009-01-17 23:55:22 -0500409 *low_speed = speedstep_get_frequency(processor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 if (!*low_speed) {
411 ret = -EIO;
412 goto out;
413 }
414
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200415 pr_debug("low speed is %u\n", *low_speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Mattia Dongili1a107602005-12-02 21:59:41 +0100417 /* start latency measurement */
418 if (transition_latency)
Abhilash Jindal72e624d2015-08-11 12:01:22 -0400419 tv1 = ktime_get();
Mattia Dongili1a107602005-12-02 21:59:41 +0100420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 /* switch to high state */
422 set_state(SPEEDSTEP_HIGH);
Mattia Dongili1a107602005-12-02 21:59:41 +0100423
424 /* end latency measurement */
425 if (transition_latency)
Abhilash Jindal72e624d2015-08-11 12:01:22 -0400426 tv2 = ktime_get();
Mattia Dongili1a107602005-12-02 21:59:41 +0100427
Dave Jonesbbfebd62009-01-17 23:55:22 -0500428 *high_speed = speedstep_get_frequency(processor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 if (!*high_speed) {
430 ret = -EIO;
431 goto out;
432 }
433
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200434 pr_debug("high speed is %u\n", *high_speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436 if (*low_speed == *high_speed) {
437 ret = -ENODEV;
438 goto out;
439 }
440
441 /* switch to previous state, if necessary */
442 if (*high_speed != prev_speed)
443 set_state(SPEEDSTEP_LOW);
444
Mattia Dongili1a107602005-12-02 21:59:41 +0100445 if (transition_latency) {
Abhilash Jindal72e624d2015-08-11 12:01:22 -0400446 *transition_latency = ktime_to_us(ktime_sub(tv2, tv1));
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200447 pr_debug("transition latency is %u uSec\n", *transition_latency);
Mattia Dongili1a107602005-12-02 21:59:41 +0100448
449 /* convert uSec to nSec and add 20% for safety reasons */
450 *transition_latency *= 1200;
451
452 /* check if the latency measurement is too high or too low
453 * and set it to a safe value (500uSec) in that case
454 */
Dave Jonesbbfebd62009-01-17 23:55:22 -0500455 if (*transition_latency > 10000000 ||
456 *transition_latency < 50000) {
Joe Perches1c5864e2016-04-05 13:28:25 -0700457 pr_warn("frequency transition measured seems out of range (%u nSec), falling back to a safe one of %u nSec\n",
Joe Perchesb49c22a2016-04-05 13:28:24 -0700458 *transition_latency, 500000);
Mattia Dongili1a107602005-12-02 21:59:41 +0100459 *transition_latency = 500000;
460 }
461 }
462
Dave Jones32ee8c32006-02-28 00:43:23 -0500463out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 local_irq_restore(flags);
Mikulas Patockad4d4eda2015-02-09 13:38:17 -0500465 preempt_enable();
466
Dave Jonesbbfebd62009-01-17 23:55:22 -0500467 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468}
469EXPORT_SYMBOL_GPL(speedstep_get_freqs);
470
471#ifdef CONFIG_X86_SPEEDSTEP_RELAXED_CAP_CHECK
472module_param(relaxed_check, int, 0444);
Dave Jonesbbfebd62009-01-17 23:55:22 -0500473MODULE_PARM_DESC(relaxed_check,
474 "Don't do all checks for speedstep capability.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475#endif
476
Dave Jonesbbfebd62009-01-17 23:55:22 -0500477MODULE_AUTHOR("Dominik Brodowski <linux@brodo.de>");
478MODULE_DESCRIPTION("Library for Intel SpeedStep 1 or 2 cpufreq drivers.");
479MODULE_LICENSE("GPL");