blob: c76ead3490bf73bc1a831508f8a3e826de256c04 [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
15#include <linux/kernel.h>
Dave Jones32ee8c32006-02-28 00:43:23 -050016#include <linux/module.h>
17#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/init.h>
19#include <linux/cpufreq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/delay.h>
Dave Jonesbbfebd62009-01-17 23:55:22 -050021#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/ist.h>
23
24#include "speedstep-lib.h"
25
26/* speedstep system management interface port/command.
27 *
28 * These parameters are got from IST-SMI BIOS call.
29 * If user gives it, these are used.
Dave Jones32ee8c32006-02-28 00:43:23 -050030 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 */
Dave Jonesbbfebd62009-01-17 23:55:22 -050032static int smi_port;
33static int smi_cmd;
34static unsigned int smi_sig;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36/* info about the processor */
Rusty Russell1cce76c2009-11-17 14:39:53 -080037static enum speedstep_processor speedstep_processor;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Dave Jones32ee8c32006-02-28 00:43:23 -050039/*
40 * There are only two frequency states for each processor. Values
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 * are in kHz for the time being.
42 */
43static struct cpufreq_frequency_table speedstep_freqs[] = {
Dave Jones32ee8c32006-02-28 00:43:23 -050044 {SPEEDSTEP_HIGH, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 {SPEEDSTEP_LOW, 0},
46 {0, CPUFREQ_TABLE_END},
47};
48
49#define GET_SPEEDSTEP_OWNER 0
50#define GET_SPEEDSTEP_STATE 1
51#define SET_SPEEDSTEP_STATE 2
52#define GET_SPEEDSTEP_FREQS 4
53
54/* how often shall the SMI call be tried if it failed, e.g. because
55 * of DMA activity going on? */
56#define SMI_TRIES 5
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058/**
59 * speedstep_smi_ownership
60 */
Dave Jonesbbfebd62009-01-17 23:55:22 -050061static int speedstep_smi_ownership(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
Stephan Diestelhorstc6e82562008-03-10 16:05:41 +010063 u32 command, result, magic, dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 u32 function = GET_SPEEDSTEP_OWNER;
65 unsigned char magic_data[] = "Copyright (c) 1999 Intel Corporation";
66
67 command = (smi_sig & 0xffffff00) | (smi_cmd & 0xff);
68 magic = virt_to_phys(magic_data);
69
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +020070 pr_debug("trying to obtain ownership with command %x at port %x\n",
Dave Jonesbbfebd62009-01-17 23:55:22 -050071 command, smi_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73 __asm__ __volatile__(
Stephan Diestelhorstc6e82562008-03-10 16:05:41 +010074 "push %%ebp\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 "out %%al, (%%dx)\n"
Stephan Diestelhorstc6e82562008-03-10 16:05:41 +010076 "pop %%ebp\n"
Dave Jonesbbfebd62009-01-17 23:55:22 -050077 : "=D" (result),
78 "=a" (dummy), "=b" (dummy), "=c" (dummy), "=d" (dummy),
79 "=S" (dummy)
Andrew Mortonf081a522006-03-25 01:51:51 -080080 : "a" (command), "b" (function), "c" (0), "d" (smi_port),
Dave Jonesbbfebd62009-01-17 23:55:22 -050081 "D" (0), "S" (magic)
Andrew Mortonf081a522006-03-25 01:51:51 -080082 : "memory"
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 );
84
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +020085 pr_debug("result is %x\n", result);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87 return result;
88}
89
90/**
91 * speedstep_smi_get_freqs - get SpeedStep preferred & current freq.
92 * @low: the low frequency value is placed here
93 * @high: the high frequency value is placed here
94 *
95 * Only available on later SpeedStep-enabled systems, returns false results or
96 * even hangs [cf. bugme.osdl.org # 1422] on earlier systems. Empirical testing
97 * shows that the latter occurs if !(ist_info.event & 0xFFFF).
98 */
Dave Jonesbbfebd62009-01-17 23:55:22 -050099static int speedstep_smi_get_freqs(unsigned int *low, unsigned int *high)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
Stephan Diestelhorstc6e82562008-03-10 16:05:41 +0100101 u32 command, result = 0, edi, high_mhz, low_mhz, dummy;
Dave Jonesbbfebd62009-01-17 23:55:22 -0500102 u32 state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 u32 function = GET_SPEEDSTEP_FREQS;
104
105 if (!(ist_info.event & 0xFFFF)) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200106 pr_debug("bug #1422 -- can't read freqs from BIOS\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 return -ENODEV;
108 }
109
110 command = (smi_sig & 0xffffff00) | (smi_cmd & 0xff);
111
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200112 pr_debug("trying to determine frequencies with command %x at port %x\n",
Dave Jonesbbfebd62009-01-17 23:55:22 -0500113 command, smi_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Stephan Diestelhorstc6e82562008-03-10 16:05:41 +0100115 __asm__ __volatile__(
116 "push %%ebp\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 "out %%al, (%%dx)\n"
Stephan Diestelhorstc6e82562008-03-10 16:05:41 +0100118 "pop %%ebp"
Dave Jonesbbfebd62009-01-17 23:55:22 -0500119 : "=a" (result),
120 "=b" (high_mhz),
121 "=c" (low_mhz),
122 "=d" (state), "=D" (edi), "=S" (dummy)
123 : "a" (command),
124 "b" (function),
125 "c" (state),
126 "d" (smi_port), "S" (0), "D" (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 );
128
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200129 pr_debug("result %x, low_freq %u, high_freq %u\n",
Dave Jonesbbfebd62009-01-17 23:55:22 -0500130 result, low_mhz, high_mhz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132 /* abort if results are obviously incorrect... */
133 if ((high_mhz + low_mhz) < 600)
134 return -EINVAL;
135
136 *high = high_mhz * 1000;
137 *low = low_mhz * 1000;
138
139 return result;
Dave Jones32ee8c32006-02-28 00:43:23 -0500140}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142/**
143 * speedstep_get_state - set the SpeedStep state
144 * @state: processor frequency state (SPEEDSTEP_LOW or SPEEDSTEP_HIGH)
145 *
146 */
Dave Jonesbbfebd62009-01-17 23:55:22 -0500147static int speedstep_get_state(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Dave Jonesbbfebd62009-01-17 23:55:22 -0500149 u32 function = GET_SPEEDSTEP_STATE;
Stephan Diestelhorstc6e82562008-03-10 16:05:41 +0100150 u32 result, state, edi, command, dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152 command = (smi_sig & 0xffffff00) | (smi_cmd & 0xff);
153
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200154 pr_debug("trying to determine current setting with command %x "
Dave Jonesbbfebd62009-01-17 23:55:22 -0500155 "at port %x\n", command, smi_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Stephan Diestelhorstc6e82562008-03-10 16:05:41 +0100157 __asm__ __volatile__(
158 "push %%ebp\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 "out %%al, (%%dx)\n"
Stephan Diestelhorstc6e82562008-03-10 16:05:41 +0100160 "pop %%ebp\n"
Dave Jonesbbfebd62009-01-17 23:55:22 -0500161 : "=a" (result),
162 "=b" (state), "=D" (edi),
163 "=c" (dummy), "=d" (dummy), "=S" (dummy)
164 : "a" (command), "b" (function), "c" (0),
165 "d" (smi_port), "S" (0), "D" (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 );
167
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200168 pr_debug("state is %x, result is %x\n", state, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Dave Jonesbbfebd62009-01-17 23:55:22 -0500170 return state & 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171}
172
173
174/**
175 * speedstep_set_state - set the SpeedStep state
176 * @state: new processor frequency state (SPEEDSTEP_LOW or SPEEDSTEP_HIGH)
177 *
178 */
Dave Jonesbbfebd62009-01-17 23:55:22 -0500179static void speedstep_set_state(unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
Stephan Diestelhorstc6e82562008-03-10 16:05:41 +0100181 unsigned int result = 0, command, new_state, dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 unsigned long flags;
Dave Jonesbbfebd62009-01-17 23:55:22 -0500183 unsigned int function = SET_SPEEDSTEP_STATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 unsigned int retry = 0;
185
186 if (state > 0x1)
187 return;
188
189 /* Disable IRQs */
190 local_irq_save(flags);
191
192 command = (smi_sig & 0xffffff00) | (smi_cmd & 0xff);
193
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200194 pr_debug("trying to set frequency to state %u "
Dave Jonesbbfebd62009-01-17 23:55:22 -0500195 "with command %x at port %x\n",
196 state, command, smi_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198 do {
199 if (retry) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200200 pr_debug("retry %u, previous result %u, waiting...\n",
Dave Jonesbbfebd62009-01-17 23:55:22 -0500201 retry, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 mdelay(retry * 50);
203 }
204 retry++;
205 __asm__ __volatile__(
Stephan Diestelhorstc6e82562008-03-10 16:05:41 +0100206 "push %%ebp\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 "out %%al, (%%dx)\n"
Stephan Diestelhorstc6e82562008-03-10 16:05:41 +0100208 "pop %%ebp"
Dave Jonesbbfebd62009-01-17 23:55:22 -0500209 : "=b" (new_state), "=D" (result),
210 "=c" (dummy), "=a" (dummy),
211 "=d" (dummy), "=S" (dummy)
212 : "a" (command), "b" (function), "c" (state),
213 "d" (smi_port), "S" (0), "D" (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 );
215 } while ((new_state != state) && (retry <= SMI_TRIES));
216
217 /* enable IRQs */
218 local_irq_restore(flags);
219
Dave Jonesbbfebd62009-01-17 23:55:22 -0500220 if (new_state == state)
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200221 pr_debug("change to %u MHz succeeded after %u tries "
Dave Jonesbbfebd62009-01-17 23:55:22 -0500222 "with result %u\n",
223 (speedstep_freqs[new_state].frequency / 1000),
224 retry, result);
225 else
226 printk(KERN_ERR "cpufreq: change to state %u "
227 "failed with new_state %u and result %u\n",
228 state, new_state, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 return;
231}
232
233
234/**
235 * speedstep_target - set a new CPUFreq policy
236 * @policy: new policy
237 * @target_freq: new freq
Dave Jones32ee8c32006-02-28 00:43:23 -0500238 * @relation:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 *
240 * Sets a new CPUFreq policy/freq.
241 */
Dave Jonesbbfebd62009-01-17 23:55:22 -0500242static int speedstep_target(struct cpufreq_policy *policy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 unsigned int target_freq, unsigned int relation)
244{
245 unsigned int newstate = 0;
246 struct cpufreq_freqs freqs;
247
Dave Jonesbbfebd62009-01-17 23:55:22 -0500248 if (cpufreq_frequency_table_target(policy, &speedstep_freqs[0],
249 target_freq, relation, &newstate))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 return -EINVAL;
251
252 freqs.old = speedstep_freqs[speedstep_get_state()].frequency;
253 freqs.new = speedstep_freqs[newstate].frequency;
254 freqs.cpu = 0; /* speedstep.c is UP only driver */
255
256 if (freqs.old == freqs.new)
257 return 0;
258
259 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
260 speedstep_set_state(newstate);
261 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
262
263 return 0;
264}
265
266
267/**
268 * speedstep_verify - verifies a new CPUFreq policy
269 * @policy: new policy
270 *
271 * Limit must be within speedstep_low_freq and speedstep_high_freq, with
272 * at least one border included.
273 */
Dave Jonesbbfebd62009-01-17 23:55:22 -0500274static int speedstep_verify(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
276 return cpufreq_frequency_table_verify(policy, &speedstep_freqs[0]);
277}
278
279
280static int speedstep_cpu_init(struct cpufreq_policy *policy)
281{
282 int result;
Dave Jonesbbfebd62009-01-17 23:55:22 -0500283 unsigned int speed, state;
284 unsigned int *low, *high;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 /* capability check */
287 if (policy->cpu != 0)
288 return -ENODEV;
289
290 result = speedstep_smi_ownership();
291 if (result) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200292 pr_debug("fails in acquiring ownership of a SMI interface.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 return -EINVAL;
294 }
295
296 /* detect low and high frequency */
Dave Jonesbbfebd62009-01-17 23:55:22 -0500297 low = &speedstep_freqs[SPEEDSTEP_LOW].frequency;
298 high = &speedstep_freqs[SPEEDSTEP_HIGH].frequency;
299
300 result = speedstep_smi_get_freqs(low, high);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 if (result) {
Dave Jonesbbfebd62009-01-17 23:55:22 -0500302 /* fall back to speedstep_lib.c dection mechanism:
303 * try both states out */
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200304 pr_debug("could not detect low and high frequencies "
Dave Jonesbbfebd62009-01-17 23:55:22 -0500305 "by SMI call.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 result = speedstep_get_freqs(speedstep_processor,
Dave Jonesbbfebd62009-01-17 23:55:22 -0500307 low, high,
Mattia Dongili1a107602005-12-02 21:59:41 +0100308 NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 &speedstep_set_state);
310
311 if (result) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200312 pr_debug("could not detect two different speeds"
Dave Jonesbbfebd62009-01-17 23:55:22 -0500313 " -- aborting.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 return result;
315 } else
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200316 pr_debug("workaround worked.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 }
318
319 /* get current speed setting */
320 state = speedstep_get_state();
321 speed = speedstep_freqs[state].frequency;
322
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200323 pr_debug("currently at %s speed setting - %i MHz\n",
Dave Jonesbbfebd62009-01-17 23:55:22 -0500324 (speed == speedstep_freqs[SPEEDSTEP_LOW].frequency)
325 ? "low" : "high",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 (speed / 1000));
327
328 /* cpuinfo and default policy values */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 policy->cpuinfo.transition_latency = CPUFREQ_ETERNAL;
330 policy->cur = speed;
331
332 result = cpufreq_frequency_table_cpuinfo(policy, speedstep_freqs);
333 if (result)
Dave Jonesbbfebd62009-01-17 23:55:22 -0500334 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Dave Jones32ee8c32006-02-28 00:43:23 -0500336 cpufreq_frequency_table_get_attr(speedstep_freqs, policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 return 0;
339}
340
341static int speedstep_cpu_exit(struct cpufreq_policy *policy)
342{
343 cpufreq_frequency_table_put_attr(policy->cpu);
344 return 0;
345}
346
347static unsigned int speedstep_get(unsigned int cpu)
348{
349 if (cpu)
350 return -ENODEV;
Dave Jonesbbfebd62009-01-17 23:55:22 -0500351 return speedstep_get_frequency(speedstep_processor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
353
354
355static int speedstep_resume(struct cpufreq_policy *policy)
356{
357 int result = speedstep_smi_ownership();
358
359 if (result)
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200360 pr_debug("fails in re-acquiring ownership of a SMI interface.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 return result;
363}
364
Dave Jonesbbfebd62009-01-17 23:55:22 -0500365static struct freq_attr *speedstep_attr[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 &cpufreq_freq_attr_scaling_available_freqs,
367 NULL,
368};
369
Linus Torvalds221dee22007-02-26 14:55:48 -0800370static struct cpufreq_driver speedstep_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 .name = "speedstep-smi",
Dave Jones32ee8c32006-02-28 00:43:23 -0500372 .verify = speedstep_verify,
373 .target = speedstep_target,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 .init = speedstep_cpu_init,
375 .exit = speedstep_cpu_exit,
376 .get = speedstep_get,
377 .resume = speedstep_resume,
378 .owner = THIS_MODULE,
379 .attr = speedstep_attr,
380};
381
382/**
383 * speedstep_init - initializes the SpeedStep CPUFreq driver
384 *
385 * Initializes the SpeedStep support. Returns -ENODEV on unsupported
386 * BIOS, -EINVAL on problems during initiatization, and zero on
387 * success.
388 */
389static int __init speedstep_init(void)
390{
391 speedstep_processor = speedstep_detect_processor();
392
393 switch (speedstep_processor) {
Dave Jonesbbfebd62009-01-17 23:55:22 -0500394 case SPEEDSTEP_CPU_PIII_T:
395 case SPEEDSTEP_CPU_PIII_C:
396 case SPEEDSTEP_CPU_PIII_C_EARLY:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 default:
399 speedstep_processor = 0;
400 }
401
402 if (!speedstep_processor) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200403 pr_debug("No supported Intel CPU detected.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 return -ENODEV;
405 }
406
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200407 pr_debug("signature:0x%.8ulx, command:0x%.8ulx, "
408 "event:0x%.8ulx, perf_level:0x%.8ulx.\n",
Dave Jonesbbfebd62009-01-17 23:55:22 -0500409 ist_info.signature, ist_info.command,
410 ist_info.event, ist_info.perf_level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Dave Jones32ee8c32006-02-28 00:43:23 -0500412 /* Error if no IST-SMI BIOS or no PARM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 sig= 'ISGE' aka 'Intel Speedstep Gate E' */
Dave Jones32ee8c32006-02-28 00:43:23 -0500414 if ((ist_info.signature != 0x47534943) && (
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 (smi_port == 0) || (smi_cmd == 0)))
416 return -ENODEV;
417
418 if (smi_sig == 1)
419 smi_sig = 0x47534943;
420 else
421 smi_sig = ist_info.signature;
422
423 /* setup smi_port from MODLULE_PARM or BIOS */
Dave Jones32ee8c32006-02-28 00:43:23 -0500424 if ((smi_port > 0xff) || (smi_port < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 return -EINVAL;
Dave Jones32ee8c32006-02-28 00:43:23 -0500426 else if (smi_port == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 smi_port = ist_info.command & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Dave Jones32ee8c32006-02-28 00:43:23 -0500429 if ((smi_cmd > 0xff) || (smi_cmd < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 return -EINVAL;
Dave Jones32ee8c32006-02-28 00:43:23 -0500431 else if (smi_cmd == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 smi_cmd = (ist_info.command >> 16) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434 return cpufreq_register_driver(&speedstep_driver);
435}
436
437
438/**
439 * speedstep_exit - unregisters SpeedStep support
440 *
441 * Unregisters SpeedStep support.
442 */
443static void __exit speedstep_exit(void)
444{
445 cpufreq_unregister_driver(&speedstep_driver);
446}
447
Dave Jonesbbfebd62009-01-17 23:55:22 -0500448module_param(smi_port, int, 0444);
449module_param(smi_cmd, int, 0444);
450module_param(smi_sig, uint, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Dave Jonesbbfebd62009-01-17 23:55:22 -0500452MODULE_PARM_DESC(smi_port, "Override the BIOS-given IST port with this value "
453 "-- Intel's default setting is 0xb2");
454MODULE_PARM_DESC(smi_cmd, "Override the BIOS-given IST command with this value "
455 "-- Intel's default setting is 0x82");
456MODULE_PARM_DESC(smi_sig, "Set to 1 to fake the IST signature when using the "
457 "SMI interface.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Dave Jonesbbfebd62009-01-17 23:55:22 -0500459MODULE_AUTHOR("Hiroshi Miura");
460MODULE_DESCRIPTION("Speedstep driver for IST applet SMI interface.");
461MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463module_init(speedstep_init);
464module_exit(speedstep_exit);