1
2
3
4
5
6
7
8
9
10
11#include <linux/kernel.h>
12#include <linux/module.h>
13#include <linux/init.h>
14#include <linux/cpufreq.h>
15#include <linux/ioport.h>
16#include <linux/timex.h>
17#include <linux/io.h>
18
19#include <asm/cpu_device_id.h>
20#include <asm/msr.h>
21
22#define POWERNOW_IOPORT 0xfff0
23
24
25#define PFX "powernow-k6: "
26static unsigned int busfreq;
27static unsigned int max_multiplier;
28
29
30
31static struct cpufreq_frequency_table clock_ratio[] = {
32 {45, 0},
33 {50, 0},
34 {40, 0},
35 {55, 0},
36 {20, 0},
37 {30, 0},
38 {60, 0},
39 {35, 0},
40 {0, CPUFREQ_TABLE_END}
41};
42
43
44
45
46
47
48
49
50static int powernow_k6_get_cpu_multiplier(void)
51{
52 u64 invalue = 0;
53 u32 msrval;
54
55 msrval = POWERNOW_IOPORT + 0x1;
56 wrmsr(MSR_K6_EPMR, msrval, 0);
57 invalue = inl(POWERNOW_IOPORT + 0x8);
58 msrval = POWERNOW_IOPORT + 0x0;
59 wrmsr(MSR_K6_EPMR, msrval, 0);
60
61 return clock_ratio[(invalue >> 5)&7].driver_data;
62}
63
64
65
66
67
68
69
70
71static void powernow_k6_set_state(struct cpufreq_policy *policy,
72 unsigned int best_i)
73{
74 unsigned long outvalue = 0, invalue = 0;
75 unsigned long msrval;
76 struct cpufreq_freqs freqs;
77
78 if (clock_ratio[best_i].driver_data > max_multiplier) {
79 printk(KERN_ERR PFX "invalid target frequency\n");
80 return;
81 }
82
83 freqs.old = busfreq * powernow_k6_get_cpu_multiplier();
84 freqs.new = busfreq * clock_ratio[best_i].driver_data;
85
86 cpufreq_notify_transition(policy, &freqs, CPUFREQ_PRECHANGE);
87
88
89
90 outvalue = (1<<12) | (1<<10) | (1<<9) | (best_i<<5);
91
92 msrval = POWERNOW_IOPORT + 0x1;
93 wrmsr(MSR_K6_EPMR, msrval, 0);
94 invalue = inl(POWERNOW_IOPORT + 0x8);
95 invalue = invalue & 0xf;
96 outvalue = outvalue | invalue;
97 outl(outvalue , (POWERNOW_IOPORT + 0x8));
98 msrval = POWERNOW_IOPORT + 0x0;
99 wrmsr(MSR_K6_EPMR, msrval, 0);
100
101 cpufreq_notify_transition(policy, &freqs, CPUFREQ_POSTCHANGE);
102
103 return;
104}
105
106
107
108
109
110
111
112
113
114static int powernow_k6_verify(struct cpufreq_policy *policy)
115{
116 return cpufreq_frequency_table_verify(policy, &clock_ratio[0]);
117}
118
119
120
121
122
123
124
125
126
127
128
129static int powernow_k6_target(struct cpufreq_policy *policy,
130 unsigned int target_freq,
131 unsigned int relation)
132{
133 unsigned int newstate = 0;
134
135 if (cpufreq_frequency_table_target(policy, &clock_ratio[0],
136 target_freq, relation, &newstate))
137 return -EINVAL;
138
139 powernow_k6_set_state(policy, newstate);
140
141 return 0;
142}
143
144
145static int powernow_k6_cpu_init(struct cpufreq_policy *policy)
146{
147 unsigned int i, f;
148 int result;
149
150 if (policy->cpu != 0)
151 return -ENODEV;
152
153
154 max_multiplier = powernow_k6_get_cpu_multiplier();
155 busfreq = cpu_khz / max_multiplier;
156
157
158 for (i = 0; (clock_ratio[i].frequency != CPUFREQ_TABLE_END); i++) {
159 f = clock_ratio[i].driver_data;
160 if (f > max_multiplier)
161 clock_ratio[i].frequency = CPUFREQ_ENTRY_INVALID;
162 else
163 clock_ratio[i].frequency = busfreq * f;
164 }
165
166
167 policy->cpuinfo.transition_latency = 200000;
168 policy->cur = busfreq * max_multiplier;
169
170 result = cpufreq_frequency_table_cpuinfo(policy, clock_ratio);
171 if (result)
172 return result;
173
174 cpufreq_frequency_table_get_attr(clock_ratio, policy->cpu);
175
176 return 0;
177}
178
179
180static int powernow_k6_cpu_exit(struct cpufreq_policy *policy)
181{
182 unsigned int i;
183 for (i = 0; i < 8; i++) {
184 if (i == max_multiplier)
185 powernow_k6_set_state(policy, i);
186 }
187 cpufreq_frequency_table_put_attr(policy->cpu);
188 return 0;
189}
190
191static unsigned int powernow_k6_get(unsigned int cpu)
192{
193 unsigned int ret;
194 ret = (busfreq * powernow_k6_get_cpu_multiplier());
195 return ret;
196}
197
198static struct freq_attr *powernow_k6_attr[] = {
199 &cpufreq_freq_attr_scaling_available_freqs,
200 NULL,
201};
202
203static struct cpufreq_driver powernow_k6_driver = {
204 .verify = powernow_k6_verify,
205 .target = powernow_k6_target,
206 .init = powernow_k6_cpu_init,
207 .exit = powernow_k6_cpu_exit,
208 .get = powernow_k6_get,
209 .name = "powernow-k6",
210 .attr = powernow_k6_attr,
211};
212
213static const struct x86_cpu_id powernow_k6_ids[] = {
214 { X86_VENDOR_AMD, 5, 12 },
215 { X86_VENDOR_AMD, 5, 13 },
216 {}
217};
218MODULE_DEVICE_TABLE(x86cpu, powernow_k6_ids);
219
220
221
222
223
224
225
226
227static int __init powernow_k6_init(void)
228{
229 if (!x86_match_cpu(powernow_k6_ids))
230 return -ENODEV;
231
232 if (!request_region(POWERNOW_IOPORT, 16, "PowerNow!")) {
233 printk(KERN_INFO PFX "PowerNow IOPORT region already used.\n");
234 return -EIO;
235 }
236
237 if (cpufreq_register_driver(&powernow_k6_driver)) {
238 release_region(POWERNOW_IOPORT, 16);
239 return -EINVAL;
240 }
241
242 return 0;
243}
244
245
246
247
248
249
250
251static void __exit powernow_k6_exit(void)
252{
253 cpufreq_unregister_driver(&powernow_k6_driver);
254 release_region(POWERNOW_IOPORT, 16);
255}
256
257
258MODULE_AUTHOR("Arjan van de Ven, Dave Jones <davej@redhat.com>, "
259 "Dominik Brodowski <linux@brodo.de>");
260MODULE_DESCRIPTION("PowerNow! driver for AMD K6-2+ / K6-3+ processors.");
261MODULE_LICENSE("GPL");
262
263module_init(powernow_k6_init);
264module_exit(powernow_k6_exit);
265