blob: 770a9ae1999a96a7fa02f747662a56b173532e5f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Intel SpeedStep SMI driver.
3 *
4 * (C) 2003 Hiroshi Miura <miura@da-cha.org>
5 *
6 * Licensed under the terms of the GNU GPL License version 2.
7 *
8 */
9
10
11/*********************************************************************
12 * SPEEDSTEP - DEFINITIONS *
13 *********************************************************************/
14
Joe Perches1c5864e2016-04-05 13:28:25 -070015#define pr_fmt(fmt) "cpufreq: " fmt
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/kernel.h>
Dave Jones32ee8c32006-02-28 00:43:23 -050018#include <linux/module.h>
19#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/init.h>
21#include <linux/cpufreq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/delay.h>
Dave Jonesbbfebd62009-01-17 23:55:22 -050023#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/ist.h>
Andi Kleenfa8031a2012-01-26 00:09:12 +010025#include <asm/cpu_device_id.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27#include "speedstep-lib.h"
28
29/* speedstep system management interface port/command.
30 *
31 * These parameters are got from IST-SMI BIOS call.
32 * If user gives it, these are used.
Dave Jones32ee8c32006-02-28 00:43:23 -050033 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 */
Dave Jonesbbfebd62009-01-17 23:55:22 -050035static int smi_port;
36static int smi_cmd;
37static unsigned int smi_sig;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39/* info about the processor */
Rusty Russell1cce76c2009-11-17 14:39:53 -080040static enum speedstep_processor speedstep_processor;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Dave Jones32ee8c32006-02-28 00:43:23 -050042/*
43 * There are only two frequency states for each processor. Values
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 * are in kHz for the time being.
45 */
46static struct cpufreq_frequency_table speedstep_freqs[] = {
Viresh Kumar7f4b0462014-03-28 19:11:47 +053047 {0, SPEEDSTEP_HIGH, 0},
48 {0, SPEEDSTEP_LOW, 0},
49 {0, 0, CPUFREQ_TABLE_END},
Linus Torvalds1da177e2005-04-16 15:20:36 -070050};
51
52#define GET_SPEEDSTEP_OWNER 0
53#define GET_SPEEDSTEP_STATE 1
54#define SET_SPEEDSTEP_STATE 2
55#define GET_SPEEDSTEP_FREQS 4
56
57/* how often shall the SMI call be tried if it failed, e.g. because
58 * of DMA activity going on? */
59#define SMI_TRIES 5
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061/**
62 * speedstep_smi_ownership
63 */
Dave Jonesbbfebd62009-01-17 23:55:22 -050064static int speedstep_smi_ownership(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
Stephan Diestelhorstc6e82562008-03-10 16:05:41 +010066 u32 command, result, magic, dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 u32 function = GET_SPEEDSTEP_OWNER;
68 unsigned char magic_data[] = "Copyright (c) 1999 Intel Corporation";
69
70 command = (smi_sig & 0xffffff00) | (smi_cmd & 0xff);
71 magic = virt_to_phys(magic_data);
72
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +020073 pr_debug("trying to obtain ownership with command %x at port %x\n",
Dave Jonesbbfebd62009-01-17 23:55:22 -050074 command, smi_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76 __asm__ __volatile__(
Stephan Diestelhorstc6e82562008-03-10 16:05:41 +010077 "push %%ebp\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 "out %%al, (%%dx)\n"
Stephan Diestelhorstc6e82562008-03-10 16:05:41 +010079 "pop %%ebp\n"
Dave Jonesbbfebd62009-01-17 23:55:22 -050080 : "=D" (result),
81 "=a" (dummy), "=b" (dummy), "=c" (dummy), "=d" (dummy),
82 "=S" (dummy)
Andrew Mortonf081a522006-03-25 01:51:51 -080083 : "a" (command), "b" (function), "c" (0), "d" (smi_port),
Dave Jonesbbfebd62009-01-17 23:55:22 -050084 "D" (0), "S" (magic)
Andrew Mortonf081a522006-03-25 01:51:51 -080085 : "memory"
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 );
87
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +020088 pr_debug("result is %x\n", result);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90 return result;
91}
92
93/**
94 * speedstep_smi_get_freqs - get SpeedStep preferred & current freq.
95 * @low: the low frequency value is placed here
96 * @high: the high frequency value is placed here
97 *
98 * Only available on later SpeedStep-enabled systems, returns false results or
99 * even hangs [cf. bugme.osdl.org # 1422] on earlier systems. Empirical testing
100 * shows that the latter occurs if !(ist_info.event & 0xFFFF).
101 */
Dave Jonesbbfebd62009-01-17 23:55:22 -0500102static int speedstep_smi_get_freqs(unsigned int *low, unsigned int *high)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
Stephan Diestelhorstc6e82562008-03-10 16:05:41 +0100104 u32 command, result = 0, edi, high_mhz, low_mhz, dummy;
Dave Jonesbbfebd62009-01-17 23:55:22 -0500105 u32 state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 u32 function = GET_SPEEDSTEP_FREQS;
107
108 if (!(ist_info.event & 0xFFFF)) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200109 pr_debug("bug #1422 -- can't read freqs from BIOS\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 return -ENODEV;
111 }
112
113 command = (smi_sig & 0xffffff00) | (smi_cmd & 0xff);
114
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200115 pr_debug("trying to determine frequencies with command %x at port %x\n",
Dave Jonesbbfebd62009-01-17 23:55:22 -0500116 command, smi_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Stephan Diestelhorstc6e82562008-03-10 16:05:41 +0100118 __asm__ __volatile__(
119 "push %%ebp\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 "out %%al, (%%dx)\n"
Stephan Diestelhorstc6e82562008-03-10 16:05:41 +0100121 "pop %%ebp"
Dave Jonesbbfebd62009-01-17 23:55:22 -0500122 : "=a" (result),
123 "=b" (high_mhz),
124 "=c" (low_mhz),
125 "=d" (state), "=D" (edi), "=S" (dummy)
126 : "a" (command),
127 "b" (function),
128 "c" (state),
129 "d" (smi_port), "S" (0), "D" (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 );
131
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200132 pr_debug("result %x, low_freq %u, high_freq %u\n",
Dave Jonesbbfebd62009-01-17 23:55:22 -0500133 result, low_mhz, high_mhz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135 /* abort if results are obviously incorrect... */
136 if ((high_mhz + low_mhz) < 600)
137 return -EINVAL;
138
139 *high = high_mhz * 1000;
140 *low = low_mhz * 1000;
141
142 return result;
Dave Jones32ee8c32006-02-28 00:43:23 -0500143}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 * speedstep_set_state - set the SpeedStep state
147 * @state: new processor frequency state (SPEEDSTEP_LOW or SPEEDSTEP_HIGH)
148 *
149 */
Dave Jonesbbfebd62009-01-17 23:55:22 -0500150static void speedstep_set_state(unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
Stephan Diestelhorstc6e82562008-03-10 16:05:41 +0100152 unsigned int result = 0, command, new_state, dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 unsigned long flags;
Dave Jonesbbfebd62009-01-17 23:55:22 -0500154 unsigned int function = SET_SPEEDSTEP_STATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 unsigned int retry = 0;
156
157 if (state > 0x1)
158 return;
159
160 /* Disable IRQs */
Mikulas Patockad4d4eda2015-02-09 13:38:17 -0500161 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 local_irq_save(flags);
163
164 command = (smi_sig & 0xffffff00) | (smi_cmd & 0xff);
165
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200166 pr_debug("trying to set frequency to state %u "
Dave Jonesbbfebd62009-01-17 23:55:22 -0500167 "with command %x at port %x\n",
168 state, command, smi_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170 do {
171 if (retry) {
Mikulas Patockad4d4eda2015-02-09 13:38:17 -0500172 /*
173 * We need to enable interrupts, otherwise the blockage
174 * won't resolve.
175 *
176 * We disable preemption so that other processes don't
177 * run. If other processes were running, they could
178 * submit more DMA requests, making the blockage worse.
179 */
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200180 pr_debug("retry %u, previous result %u, waiting...\n",
Dave Jonesbbfebd62009-01-17 23:55:22 -0500181 retry, result);
Mikulas Patockad4d4eda2015-02-09 13:38:17 -0500182 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 mdelay(retry * 50);
Mikulas Patockad4d4eda2015-02-09 13:38:17 -0500184 local_irq_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 }
186 retry++;
187 __asm__ __volatile__(
Stephan Diestelhorstc6e82562008-03-10 16:05:41 +0100188 "push %%ebp\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 "out %%al, (%%dx)\n"
Stephan Diestelhorstc6e82562008-03-10 16:05:41 +0100190 "pop %%ebp"
Dave Jonesbbfebd62009-01-17 23:55:22 -0500191 : "=b" (new_state), "=D" (result),
192 "=c" (dummy), "=a" (dummy),
193 "=d" (dummy), "=S" (dummy)
194 : "a" (command), "b" (function), "c" (state),
195 "d" (smi_port), "S" (0), "D" (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 );
197 } while ((new_state != state) && (retry <= SMI_TRIES));
198
199 /* enable IRQs */
200 local_irq_restore(flags);
Mikulas Patockad4d4eda2015-02-09 13:38:17 -0500201 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Dave Jonesbbfebd62009-01-17 23:55:22 -0500203 if (new_state == state)
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200204 pr_debug("change to %u MHz succeeded after %u tries "
Dave Jonesbbfebd62009-01-17 23:55:22 -0500205 "with result %u\n",
206 (speedstep_freqs[new_state].frequency / 1000),
207 retry, result);
208 else
Joe Perches1c5864e2016-04-05 13:28:25 -0700209 pr_err("change to state %u failed with new_state %u and result %u\n",
Joe Perchesb49c22a2016-04-05 13:28:24 -0700210 state, new_state, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 return;
213}
214
215
216/**
217 * speedstep_target - set a new CPUFreq policy
218 * @policy: new policy
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530219 * @index: index of new freq
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 *
221 * Sets a new CPUFreq policy/freq.
222 */
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530223static int speedstep_target(struct cpufreq_policy *policy, unsigned int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530225 speedstep_set_state(index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 return 0;
228}
229
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231static int speedstep_cpu_init(struct cpufreq_policy *policy)
232{
233 int result;
Dave Jonesbbfebd62009-01-17 23:55:22 -0500234 unsigned int *low, *high;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236 /* capability check */
237 if (policy->cpu != 0)
238 return -ENODEV;
239
240 result = speedstep_smi_ownership();
241 if (result) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200242 pr_debug("fails in acquiring ownership of a SMI interface.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 return -EINVAL;
244 }
245
246 /* detect low and high frequency */
Dave Jonesbbfebd62009-01-17 23:55:22 -0500247 low = &speedstep_freqs[SPEEDSTEP_LOW].frequency;
248 high = &speedstep_freqs[SPEEDSTEP_HIGH].frequency;
249
250 result = speedstep_smi_get_freqs(low, high);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 if (result) {
Dave Jonesbbfebd62009-01-17 23:55:22 -0500252 /* fall back to speedstep_lib.c dection mechanism:
253 * try both states out */
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200254 pr_debug("could not detect low and high frequencies "
Dave Jonesbbfebd62009-01-17 23:55:22 -0500255 "by SMI call.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 result = speedstep_get_freqs(speedstep_processor,
Dave Jonesbbfebd62009-01-17 23:55:22 -0500257 low, high,
Mattia Dongili1a107602005-12-02 21:59:41 +0100258 NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 &speedstep_set_state);
260
261 if (result) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200262 pr_debug("could not detect two different speeds"
Dave Jonesbbfebd62009-01-17 23:55:22 -0500263 " -- aborting.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 return result;
265 } else
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200266 pr_debug("workaround worked.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 }
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 policy->cpuinfo.transition_latency = CPUFREQ_ETERNAL;
Viresh Kumar5f3a2d392013-09-16 18:56:38 +0530270 return cpufreq_table_validate_and_show(policy, speedstep_freqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273static unsigned int speedstep_get(unsigned int cpu)
274{
275 if (cpu)
276 return -ENODEV;
Dave Jonesbbfebd62009-01-17 23:55:22 -0500277 return speedstep_get_frequency(speedstep_processor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
279
280
281static int speedstep_resume(struct cpufreq_policy *policy)
282{
283 int result = speedstep_smi_ownership();
284
285 if (result)
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200286 pr_debug("fails in re-acquiring ownership of a SMI interface.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 return result;
289}
290
Linus Torvalds221dee22007-02-26 14:55:48 -0800291static struct cpufreq_driver speedstep_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 .name = "speedstep-smi",
Viresh Kumar3be13942013-10-03 20:28:28 +0530293 .verify = cpufreq_generic_frequency_table_verify,
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530294 .target_index = speedstep_target,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 .init = speedstep_cpu_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 .get = speedstep_get,
297 .resume = speedstep_resume,
Viresh Kumar3be13942013-10-03 20:28:28 +0530298 .attr = cpufreq_generic_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299};
300
Andi Kleenfa8031a2012-01-26 00:09:12 +0100301static const struct x86_cpu_id ss_smi_ids[] = {
302 { X86_VENDOR_INTEL, 6, 0xb, },
303 { X86_VENDOR_INTEL, 6, 0x8, },
304 { X86_VENDOR_INTEL, 15, 2 },
305 {}
306};
307#if 0
308/* Not auto loaded currently */
309MODULE_DEVICE_TABLE(x86cpu, ss_smi_ids);
310#endif
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312/**
313 * speedstep_init - initializes the SpeedStep CPUFreq driver
314 *
315 * Initializes the SpeedStep support. Returns -ENODEV on unsupported
316 * BIOS, -EINVAL on problems during initiatization, and zero on
317 * success.
318 */
319static int __init speedstep_init(void)
320{
Andi Kleenfa8031a2012-01-26 00:09:12 +0100321 if (!x86_match_cpu(ss_smi_ids))
322 return -ENODEV;
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 speedstep_processor = speedstep_detect_processor();
325
326 switch (speedstep_processor) {
Dave Jonesbbfebd62009-01-17 23:55:22 -0500327 case SPEEDSTEP_CPU_PIII_T:
328 case SPEEDSTEP_CPU_PIII_C:
329 case SPEEDSTEP_CPU_PIII_C_EARLY:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 default:
332 speedstep_processor = 0;
333 }
334
335 if (!speedstep_processor) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200336 pr_debug("No supported Intel CPU detected.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 return -ENODEV;
338 }
339
Hans Wennborga5f30eb2014-08-06 22:52:23 -0700340 pr_debug("signature:0x%.8x, command:0x%.8x, "
341 "event:0x%.8x, perf_level:0x%.8x.\n",
Dave Jonesbbfebd62009-01-17 23:55:22 -0500342 ist_info.signature, ist_info.command,
343 ist_info.event, ist_info.perf_level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Dave Jones32ee8c32006-02-28 00:43:23 -0500345 /* Error if no IST-SMI BIOS or no PARM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 sig= 'ISGE' aka 'Intel Speedstep Gate E' */
Dave Jones32ee8c32006-02-28 00:43:23 -0500347 if ((ist_info.signature != 0x47534943) && (
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 (smi_port == 0) || (smi_cmd == 0)))
349 return -ENODEV;
350
351 if (smi_sig == 1)
352 smi_sig = 0x47534943;
353 else
354 smi_sig = ist_info.signature;
355
356 /* setup smi_port from MODLULE_PARM or BIOS */
Dave Jones32ee8c32006-02-28 00:43:23 -0500357 if ((smi_port > 0xff) || (smi_port < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 return -EINVAL;
Dave Jones32ee8c32006-02-28 00:43:23 -0500359 else if (smi_port == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 smi_port = ist_info.command & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Dave Jones32ee8c32006-02-28 00:43:23 -0500362 if ((smi_cmd > 0xff) || (smi_cmd < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 return -EINVAL;
Dave Jones32ee8c32006-02-28 00:43:23 -0500364 else if (smi_cmd == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 smi_cmd = (ist_info.command >> 16) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367 return cpufreq_register_driver(&speedstep_driver);
368}
369
370
371/**
372 * speedstep_exit - unregisters SpeedStep support
373 *
374 * Unregisters SpeedStep support.
375 */
376static void __exit speedstep_exit(void)
377{
378 cpufreq_unregister_driver(&speedstep_driver);
379}
380
Dave Jonesbbfebd62009-01-17 23:55:22 -0500381module_param(smi_port, int, 0444);
382module_param(smi_cmd, int, 0444);
383module_param(smi_sig, uint, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Dave Jonesbbfebd62009-01-17 23:55:22 -0500385MODULE_PARM_DESC(smi_port, "Override the BIOS-given IST port with this value "
386 "-- Intel's default setting is 0xb2");
387MODULE_PARM_DESC(smi_cmd, "Override the BIOS-given IST command with this value "
388 "-- Intel's default setting is 0x82");
389MODULE_PARM_DESC(smi_sig, "Set to 1 to fake the IST signature when using the "
390 "SMI interface.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Dave Jonesbbfebd62009-01-17 23:55:22 -0500392MODULE_AUTHOR("Hiroshi Miura");
393MODULE_DESCRIPTION("Speedstep driver for IST applet SMI interface.");
394MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396module_init(speedstep_init);
397module_exit(speedstep_exit);