blob: 15aa49d082c45752fd2751f9229d16bc93196868 [file] [log] [blame]
Andreas Herrmann512d1022011-05-25 20:43:31 +02001/*
2 * fam15h_power.c - AMD Family 15h processor power monitoring
3 *
Huang Ruia6e232f2016-04-06 15:44:14 +08004 * Copyright (c) 2011-2016 Advanced Micro Devices, Inc.
Andreas Herrmannd034fbf2012-10-29 18:50:47 +01005 * Author: Andreas Herrmann <herrmann.der.user@googlemail.com>
Andreas Herrmann512d1022011-05-25 20:43:31 +02006 *
7 *
8 * This driver is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License; either
10 * version 2 of the License, or (at your option) any later version.
11 *
12 * This driver is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
15 * See the GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this driver; if not, see <http://www.gnu.org/licenses/>.
19 */
20
21#include <linux/err.h>
22#include <linux/hwmon.h>
23#include <linux/hwmon-sysfs.h>
24#include <linux/init.h>
25#include <linux/module.h>
26#include <linux/pci.h>
27#include <linux/bitops.h>
Huang Ruifa7943442016-04-06 15:44:11 +080028#include <linux/cpu.h>
29#include <linux/cpumask.h>
Huang Rui11bf0d72016-04-06 15:44:13 +080030#include <linux/time.h>
31#include <linux/sched.h>
Andreas Herrmann512d1022011-05-25 20:43:31 +020032#include <asm/processor.h>
Huang Rui3b5ea472015-10-30 17:56:57 +080033#include <asm/msr.h>
Andreas Herrmann512d1022011-05-25 20:43:31 +020034
35MODULE_DESCRIPTION("AMD Family 15h CPU processor power monitor");
Andreas Herrmannd034fbf2012-10-29 18:50:47 +010036MODULE_AUTHOR("Andreas Herrmann <herrmann.der.user@googlemail.com>");
Andreas Herrmann512d1022011-05-25 20:43:31 +020037MODULE_LICENSE("GPL");
38
39/* D18F3 */
40#define REG_NORTHBRIDGE_CAP 0xe8
41
42/* D18F4 */
43#define REG_PROCESSOR_TDP 0x1b8
44
45/* D18F5 */
46#define REG_TDP_RUNNING_AVERAGE 0xe0
47#define REG_TDP_LIMIT3 0xe8
48
Huang Rui7deb14b2015-10-30 17:56:55 +080049#define FAM15H_MIN_NUM_ATTRS 2
50#define FAM15H_NUM_GROUPS 2
Huang Ruifa7943442016-04-06 15:44:11 +080051#define MAX_CUS 8
Huang Rui7deb14b2015-10-30 17:56:55 +080052
Huang Rui11bf0d72016-04-06 15:44:13 +080053/* set maximum interval as 1 second */
54#define MAX_INTERVAL 1000
55
Huang Ruifa7943442016-04-06 15:44:11 +080056#define MSR_F15H_CU_PWR_ACCUMULATOR 0xc001007a
Huang Rui3b5ea472015-10-30 17:56:57 +080057#define MSR_F15H_CU_MAX_PWR_ACCUMULATOR 0xc001007b
Huang Ruicdb9e112016-04-06 15:44:12 +080058#define MSR_F15H_PTSC 0xc0010280
Huang Rui3b5ea472015-10-30 17:56:57 +080059
Huang Ruieff2a942015-12-10 11:56:10 +080060#define PCI_DEVICE_ID_AMD_15H_M70H_NB_F4 0x15b4
61
Andreas Herrmann512d1022011-05-25 20:43:31 +020062struct fam15h_power_data {
Axel Lin562dc972014-06-19 23:29:11 +080063 struct pci_dev *pdev;
Andreas Herrmann512d1022011-05-25 20:43:31 +020064 unsigned int tdp_to_watts;
65 unsigned int base_tdp;
66 unsigned int processor_pwr_watts;
Huang Rui1ed32162015-08-27 16:07:38 +080067 unsigned int cpu_pwr_sample_ratio;
Huang Rui7deb14b2015-10-30 17:56:55 +080068 const struct attribute_group *groups[FAM15H_NUM_GROUPS];
69 struct attribute_group group;
Huang Rui3b5ea472015-10-30 17:56:57 +080070 /* maximum accumulated power of a compute unit */
71 u64 max_cu_acc_power;
Huang Ruifa7943442016-04-06 15:44:11 +080072 /* accumulated power of the compute units */
73 u64 cu_acc_power[MAX_CUS];
Huang Ruicdb9e112016-04-06 15:44:12 +080074 /* performance timestamp counter */
75 u64 cpu_sw_pwr_ptsc[MAX_CUS];
Huang Rui11bf0d72016-04-06 15:44:13 +080076 /* online/offline status of current compute unit */
77 int cu_on[MAX_CUS];
78 unsigned long power_period;
Andreas Herrmann512d1022011-05-25 20:43:31 +020079};
80
Huang Rui1d28e012016-04-06 15:44:15 +080081static bool is_carrizo_or_later(void)
82{
83 return boot_cpu_data.x86 == 0x15 && boot_cpu_data.x86_model >= 0x60;
84}
85
Andreas Herrmann512d1022011-05-25 20:43:31 +020086static ssize_t show_power(struct device *dev,
87 struct device_attribute *attr, char *buf)
88{
89 u32 val, tdp_limit, running_avg_range;
90 s32 running_avg_capture;
91 u64 curr_pwr_watts;
Andreas Herrmann512d1022011-05-25 20:43:31 +020092 struct fam15h_power_data *data = dev_get_drvdata(dev);
Axel Lin562dc972014-06-19 23:29:11 +080093 struct pci_dev *f4 = data->pdev;
Andreas Herrmann512d1022011-05-25 20:43:31 +020094
95 pci_bus_read_config_dword(f4->bus, PCI_DEVFN(PCI_SLOT(f4->devfn), 5),
96 REG_TDP_RUNNING_AVERAGE, &val);
Huang Ruie9cd4d552015-08-27 16:07:35 +080097
98 /*
99 * On Carrizo and later platforms, TdpRunAvgAccCap bit field
100 * is extended to 4:31 from 4:25.
101 */
Huang Rui1d28e012016-04-06 15:44:15 +0800102 if (is_carrizo_or_later()) {
Huang Ruie9cd4d552015-08-27 16:07:35 +0800103 running_avg_capture = val >> 4;
104 running_avg_capture = sign_extend32(running_avg_capture, 27);
105 } else {
106 running_avg_capture = (val >> 4) & 0x3fffff;
107 running_avg_capture = sign_extend32(running_avg_capture, 21);
108 }
109
Andre Przywara941a9562012-03-23 10:02:17 +0100110 running_avg_range = (val & 0xf) + 1;
Andreas Herrmann512d1022011-05-25 20:43:31 +0200111
112 pci_bus_read_config_dword(f4->bus, PCI_DEVFN(PCI_SLOT(f4->devfn), 5),
113 REG_TDP_LIMIT3, &val);
114
Gioh Kim60dee3c2016-01-27 12:02:09 +0100115 /*
116 * On Carrizo and later platforms, ApmTdpLimit bit field
117 * is extended to 16:31 from 16:28.
118 */
Huang Rui1d28e012016-04-06 15:44:15 +0800119 if (is_carrizo_or_later())
Gioh Kim60dee3c2016-01-27 12:02:09 +0100120 tdp_limit = val >> 16;
121 else
122 tdp_limit = (val >> 16) & 0x1fff;
123
Guenter Roeck62867d42012-06-21 06:26:12 -0700124 curr_pwr_watts = ((u64)(tdp_limit +
125 data->base_tdp)) << running_avg_range;
Andre Przywara941a9562012-03-23 10:02:17 +0100126 curr_pwr_watts -= running_avg_capture;
Andreas Herrmann512d1022011-05-25 20:43:31 +0200127 curr_pwr_watts *= data->tdp_to_watts;
128
129 /*
130 * Convert to microWatt
131 *
132 * power is in Watt provided as fixed point integer with
133 * scaling factor 1/(2^16). For conversion we use
134 * (10^6)/(2^16) = 15625/(2^10)
135 */
Andre Przywara941a9562012-03-23 10:02:17 +0100136 curr_pwr_watts = (curr_pwr_watts * 15625) >> (10 + running_avg_range);
Andreas Herrmann512d1022011-05-25 20:43:31 +0200137 return sprintf(buf, "%u\n", (unsigned int) curr_pwr_watts);
138}
139static DEVICE_ATTR(power1_input, S_IRUGO, show_power, NULL);
140
141static ssize_t show_power_crit(struct device *dev,
142 struct device_attribute *attr, char *buf)
143{
144 struct fam15h_power_data *data = dev_get_drvdata(dev);
145
146 return sprintf(buf, "%u\n", data->processor_pwr_watts);
147}
148static DEVICE_ATTR(power1_crit, S_IRUGO, show_power_crit, NULL);
149
Huang Ruifa7943442016-04-06 15:44:11 +0800150static void do_read_registers_on_cu(void *_data)
151{
152 struct fam15h_power_data *data = _data;
153 int cpu, cu;
154
155 cpu = smp_processor_id();
156
157 /*
158 * With the new x86 topology modelling, cpu core id actually
159 * is compute unit id.
160 */
161 cu = cpu_data(cpu).cpu_core_id;
162
163 rdmsrl_safe(MSR_F15H_CU_PWR_ACCUMULATOR, &data->cu_acc_power[cu]);
Huang Ruicdb9e112016-04-06 15:44:12 +0800164 rdmsrl_safe(MSR_F15H_PTSC, &data->cpu_sw_pwr_ptsc[cu]);
Huang Rui11bf0d72016-04-06 15:44:13 +0800165
166 data->cu_on[cu] = 1;
Huang Ruifa7943442016-04-06 15:44:11 +0800167}
168
169/*
170 * This function is only able to be called when CPUID
171 * Fn8000_0007:EDX[12] is set.
172 */
173static int read_registers(struct fam15h_power_data *data)
174{
Huang Ruifa7943442016-04-06 15:44:11 +0800175 int core, this_core;
176 cpumask_var_t mask;
Borislav Petkov7be48812016-06-01 11:36:13 +0200177 int ret, cpu;
Huang Ruifa7943442016-04-06 15:44:11 +0800178
179 ret = zalloc_cpumask_var(&mask, GFP_KERNEL);
180 if (!ret)
181 return -ENOMEM;
182
Huang Rui11bf0d72016-04-06 15:44:13 +0800183 memset(data->cu_on, 0, sizeof(int) * MAX_CUS);
184
Huang Ruifa7943442016-04-06 15:44:11 +0800185 get_online_cpus();
Huang Ruifa7943442016-04-06 15:44:11 +0800186
187 /*
188 * Choose the first online core of each compute unit, and then
189 * read their MSR value of power and ptsc in a single IPI,
190 * because the MSR value of CPU core represent the compute
191 * unit's.
192 */
193 core = -1;
194
195 for_each_online_cpu(cpu) {
196 this_core = topology_core_id(cpu);
197
198 if (this_core == core)
199 continue;
200
201 core = this_core;
202
203 /* get any CPU on this compute unit */
204 cpumask_set_cpu(cpumask_any(topology_sibling_cpumask(cpu)), mask);
205 }
206
Borislav Petkov7be48812016-06-01 11:36:13 +0200207 on_each_cpu_mask(mask, do_read_registers_on_cu, data, true);
Huang Ruifa7943442016-04-06 15:44:11 +0800208
Huang Ruifa7943442016-04-06 15:44:11 +0800209 put_online_cpus();
Huang Ruifa7943442016-04-06 15:44:11 +0800210 free_cpumask_var(mask);
211
212 return 0;
213}
214
Huang Rui11bf0d72016-04-06 15:44:13 +0800215static ssize_t acc_show_power(struct device *dev,
216 struct device_attribute *attr,
217 char *buf)
218{
219 struct fam15h_power_data *data = dev_get_drvdata(dev);
220 u64 prev_cu_acc_power[MAX_CUS], prev_ptsc[MAX_CUS],
221 jdelta[MAX_CUS];
222 u64 tdelta, avg_acc;
223 int cu, cu_num, ret;
224 signed long leftover;
225
226 /*
227 * With the new x86 topology modelling, x86_max_cores is the
228 * compute unit number.
229 */
230 cu_num = boot_cpu_data.x86_max_cores;
231
232 ret = read_registers(data);
233 if (ret)
234 return 0;
235
236 for (cu = 0; cu < cu_num; cu++) {
237 prev_cu_acc_power[cu] = data->cu_acc_power[cu];
238 prev_ptsc[cu] = data->cpu_sw_pwr_ptsc[cu];
239 }
240
241 leftover = schedule_timeout_interruptible(msecs_to_jiffies(data->power_period));
242 if (leftover)
243 return 0;
244
245 ret = read_registers(data);
246 if (ret)
247 return 0;
248
249 for (cu = 0, avg_acc = 0; cu < cu_num; cu++) {
250 /* check if current compute unit is online */
251 if (data->cu_on[cu] == 0)
252 continue;
253
254 if (data->cu_acc_power[cu] < prev_cu_acc_power[cu]) {
255 jdelta[cu] = data->max_cu_acc_power + data->cu_acc_power[cu];
256 jdelta[cu] -= prev_cu_acc_power[cu];
257 } else {
258 jdelta[cu] = data->cu_acc_power[cu] - prev_cu_acc_power[cu];
259 }
260 tdelta = data->cpu_sw_pwr_ptsc[cu] - prev_ptsc[cu];
261 jdelta[cu] *= data->cpu_pwr_sample_ratio * 1000;
262 do_div(jdelta[cu], tdelta);
263
264 /* the unit is microWatt */
265 avg_acc += jdelta[cu];
266 }
267
268 return sprintf(buf, "%llu\n", (unsigned long long)avg_acc);
269}
270static DEVICE_ATTR(power1_average, S_IRUGO, acc_show_power, NULL);
271
272static ssize_t acc_show_power_period(struct device *dev,
273 struct device_attribute *attr,
274 char *buf)
275{
276 struct fam15h_power_data *data = dev_get_drvdata(dev);
277
278 return sprintf(buf, "%lu\n", data->power_period);
279}
280
281static ssize_t acc_set_power_period(struct device *dev,
282 struct device_attribute *attr,
283 const char *buf, size_t count)
284{
285 struct fam15h_power_data *data = dev_get_drvdata(dev);
286 unsigned long temp;
287 int ret;
288
289 ret = kstrtoul(buf, 10, &temp);
290 if (ret)
291 return ret;
292
293 if (temp > MAX_INTERVAL)
294 return -EINVAL;
295
296 /* the interval value should be greater than 0 */
297 if (temp <= 0)
298 return -EINVAL;
299
300 data->power_period = temp;
301
302 return count;
303}
304static DEVICE_ATTR(power1_average_interval, S_IRUGO | S_IWUSR,
305 acc_show_power_period, acc_set_power_period);
306
Huang Rui7deb14b2015-10-30 17:56:55 +0800307static int fam15h_power_init_attrs(struct pci_dev *pdev,
308 struct fam15h_power_data *data)
Aravind Gopalakrishnan961a2372014-09-16 14:58:04 -0500309{
Huang Rui7deb14b2015-10-30 17:56:55 +0800310 int n = FAM15H_MIN_NUM_ATTRS;
311 struct attribute **fam15h_power_attrs;
Huang Rui46f29c22015-10-30 17:56:56 +0800312 struct cpuinfo_x86 *c = &boot_cpu_data;
Aravind Gopalakrishnan961a2372014-09-16 14:58:04 -0500313
Huang Rui46f29c22015-10-30 17:56:56 +0800314 if (c->x86 == 0x15 &&
315 (c->x86_model <= 0xf ||
Huang Ruieff2a942015-12-10 11:56:10 +0800316 (c->x86_model >= 0x60 && c->x86_model <= 0x7f)))
Huang Rui7deb14b2015-10-30 17:56:55 +0800317 n += 1;
318
Huang Rui11bf0d72016-04-06 15:44:13 +0800319 /* check if processor supports accumulated power */
320 if (boot_cpu_has(X86_FEATURE_ACC_POWER))
321 n += 2;
322
Huang Rui7deb14b2015-10-30 17:56:55 +0800323 fam15h_power_attrs = devm_kcalloc(&pdev->dev, n,
324 sizeof(*fam15h_power_attrs),
325 GFP_KERNEL);
326
327 if (!fam15h_power_attrs)
328 return -ENOMEM;
329
330 n = 0;
331 fam15h_power_attrs[n++] = &dev_attr_power1_crit.attr;
Huang Rui46f29c22015-10-30 17:56:56 +0800332 if (c->x86 == 0x15 &&
333 (c->x86_model <= 0xf ||
Huang Ruieff2a942015-12-10 11:56:10 +0800334 (c->x86_model >= 0x60 && c->x86_model <= 0x7f)))
Huang Rui7deb14b2015-10-30 17:56:55 +0800335 fam15h_power_attrs[n++] = &dev_attr_power1_input.attr;
336
Huang Rui11bf0d72016-04-06 15:44:13 +0800337 if (boot_cpu_has(X86_FEATURE_ACC_POWER)) {
338 fam15h_power_attrs[n++] = &dev_attr_power1_average.attr;
339 fam15h_power_attrs[n++] = &dev_attr_power1_average_interval.attr;
340 }
341
Huang Rui7deb14b2015-10-30 17:56:55 +0800342 data->group.attrs = fam15h_power_attrs;
343
344 return 0;
Aravind Gopalakrishnan961a2372014-09-16 14:58:04 -0500345}
346
Huang Ruid83e92b2015-08-27 16:07:33 +0800347static bool should_load_on_this_node(struct pci_dev *f4)
Andreas Herrmann512d1022011-05-25 20:43:31 +0200348{
349 u32 val;
350
351 pci_bus_read_config_dword(f4->bus, PCI_DEVFN(PCI_SLOT(f4->devfn), 3),
352 REG_NORTHBRIDGE_CAP, &val);
353 if ((val & BIT(29)) && ((val >> 30) & 3))
354 return false;
355
356 return true;
357}
358
Andre Przywara00250ec2012-04-09 18:16:34 -0400359/*
360 * Newer BKDG versions have an updated recommendation on how to properly
361 * initialize the running average range (was: 0xE, now: 0x9). This avoids
362 * counter saturations resulting in bogus power readings.
363 * We correct this value ourselves to cope with older BIOSes.
364 */
Andreas Herrmann5f0ecb92012-09-23 20:27:32 +0200365static const struct pci_device_id affected_device[] = {
Guenter Roeckc3e40a92012-04-25 13:44:20 -0700366 { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_15H_NB_F4) },
367 { 0 }
368};
369
Andreas Herrmann5f0ecb92012-09-23 20:27:32 +0200370static void tweak_runavg_range(struct pci_dev *pdev)
Andre Przywara00250ec2012-04-09 18:16:34 -0400371{
372 u32 val;
Andre Przywara00250ec2012-04-09 18:16:34 -0400373
374 /*
375 * let this quirk apply only to the current version of the
376 * northbridge, since future versions may change the behavior
377 */
Guenter Roeckc3e40a92012-04-25 13:44:20 -0700378 if (!pci_match_id(affected_device, pdev))
Andre Przywara00250ec2012-04-09 18:16:34 -0400379 return;
380
381 pci_bus_read_config_dword(pdev->bus,
382 PCI_DEVFN(PCI_SLOT(pdev->devfn), 5),
383 REG_TDP_RUNNING_AVERAGE, &val);
384 if ((val & 0xf) != 0xe)
385 return;
386
387 val &= ~0xf;
388 val |= 0x9;
389 pci_bus_write_config_dword(pdev->bus,
390 PCI_DEVFN(PCI_SLOT(pdev->devfn), 5),
391 REG_TDP_RUNNING_AVERAGE, val);
392}
393
Andreas Herrmann5f0ecb92012-09-23 20:27:32 +0200394#ifdef CONFIG_PM
395static int fam15h_power_resume(struct pci_dev *pdev)
396{
397 tweak_runavg_range(pdev);
398 return 0;
399}
400#else
401#define fam15h_power_resume NULL
402#endif
403
Huang Rui7deb14b2015-10-30 17:56:55 +0800404static int fam15h_power_init_data(struct pci_dev *f4,
405 struct fam15h_power_data *data)
Andreas Herrmann512d1022011-05-25 20:43:31 +0200406{
Huang Rui11bf0d72016-04-06 15:44:13 +0800407 u32 val;
Andreas Herrmann512d1022011-05-25 20:43:31 +0200408 u64 tmp;
Huang Rui7deb14b2015-10-30 17:56:55 +0800409 int ret;
Andreas Herrmann512d1022011-05-25 20:43:31 +0200410
411 pci_read_config_dword(f4, REG_PROCESSOR_TDP, &val);
412 data->base_tdp = val >> 16;
413 tmp = val & 0xffff;
414
415 pci_bus_read_config_dword(f4->bus, PCI_DEVFN(PCI_SLOT(f4->devfn), 5),
416 REG_TDP_LIMIT3, &val);
417
418 data->tdp_to_watts = ((val & 0x3ff) << 6) | ((val >> 10) & 0x3f);
419 tmp *= data->tdp_to_watts;
420
421 /* result not allowed to be >= 256W */
422 if ((tmp >> 16) >= 256)
Guenter Roeckb55f3752013-01-10 10:01:24 -0800423 dev_warn(&f4->dev,
424 "Bogus value for ProcessorPwrWatts (processor_pwr_watts>=%u)\n",
Andreas Herrmann512d1022011-05-25 20:43:31 +0200425 (unsigned int) (tmp >> 16));
426
427 /* convert to microWatt */
428 data->processor_pwr_watts = (tmp * 15625) >> 10;
Huang Rui1ed32162015-08-27 16:07:38 +0800429
Huang Rui7deb14b2015-10-30 17:56:55 +0800430 ret = fam15h_power_init_attrs(f4, data);
431 if (ret)
432 return ret;
433
Huang Rui1ed32162015-08-27 16:07:38 +0800434
435 /* CPUID Fn8000_0007:EDX[12] indicates to support accumulated power */
Huang Rui11bf0d72016-04-06 15:44:13 +0800436 if (!boot_cpu_has(X86_FEATURE_ACC_POWER))
Huang Rui7deb14b2015-10-30 17:56:55 +0800437 return 0;
Huang Rui1ed32162015-08-27 16:07:38 +0800438
439 /*
440 * determine the ratio of the compute unit power accumulator
441 * sample period to the PTSC counter period by executing CPUID
442 * Fn8000_0007:ECX
443 */
Huang Rui11bf0d72016-04-06 15:44:13 +0800444 data->cpu_pwr_sample_ratio = cpuid_ecx(0x80000007);
Huang Rui7deb14b2015-10-30 17:56:55 +0800445
Huang Rui3b5ea472015-10-30 17:56:57 +0800446 if (rdmsrl_safe(MSR_F15H_CU_MAX_PWR_ACCUMULATOR, &tmp)) {
447 pr_err("Failed to read max compute unit power accumulator MSR\n");
448 return -ENODEV;
449 }
450
451 data->max_cu_acc_power = tmp;
452
Huang Rui11bf0d72016-04-06 15:44:13 +0800453 /*
454 * Milliseconds are a reasonable interval for the measurement.
455 * But it shouldn't set too long here, because several seconds
456 * would cause the read function to hang. So set default
457 * interval as 10 ms.
458 */
459 data->power_period = 10;
460
Huang Ruifa7943442016-04-06 15:44:11 +0800461 return read_registers(data);
Andreas Herrmann512d1022011-05-25 20:43:31 +0200462}
463
Bill Pemberton6c931ae2012-11-19 13:22:35 -0500464static int fam15h_power_probe(struct pci_dev *pdev,
Huang Rui7deb14b2015-10-30 17:56:55 +0800465 const struct pci_device_id *id)
Andreas Herrmann512d1022011-05-25 20:43:31 +0200466{
467 struct fam15h_power_data *data;
Guenter Roeck87432a22012-06-02 09:58:06 -0700468 struct device *dev = &pdev->dev;
Axel Lin562dc972014-06-19 23:29:11 +0800469 struct device *hwmon_dev;
Huang Rui7deb14b2015-10-30 17:56:55 +0800470 int ret;
Andreas Herrmann512d1022011-05-25 20:43:31 +0200471
Andre Przywara00250ec2012-04-09 18:16:34 -0400472 /*
473 * though we ignore every other northbridge, we still have to
474 * do the tweaking on _each_ node in MCM processors as the counters
475 * are working hand-in-hand
476 */
477 tweak_runavg_range(pdev);
478
Huang Ruid83e92b2015-08-27 16:07:33 +0800479 if (!should_load_on_this_node(pdev))
Guenter Roeck87432a22012-06-02 09:58:06 -0700480 return -ENODEV;
Andreas Herrmann512d1022011-05-25 20:43:31 +0200481
Guenter Roeck87432a22012-06-02 09:58:06 -0700482 data = devm_kzalloc(dev, sizeof(struct fam15h_power_data), GFP_KERNEL);
483 if (!data)
484 return -ENOMEM;
485
Huang Rui7deb14b2015-10-30 17:56:55 +0800486 ret = fam15h_power_init_data(pdev, data);
487 if (ret)
488 return ret;
489
Axel Lin562dc972014-06-19 23:29:11 +0800490 data->pdev = pdev;
Andreas Herrmann512d1022011-05-25 20:43:31 +0200491
Huang Rui7deb14b2015-10-30 17:56:55 +0800492 data->groups[0] = &data->group;
493
Axel Lin562dc972014-06-19 23:29:11 +0800494 hwmon_dev = devm_hwmon_device_register_with_groups(dev, "fam15h_power",
495 data,
Huang Rui7deb14b2015-10-30 17:56:55 +0800496 &data->groups[0]);
Axel Lin562dc972014-06-19 23:29:11 +0800497 return PTR_ERR_OR_ZERO(hwmon_dev);
Andreas Herrmann512d1022011-05-25 20:43:31 +0200498}
499
Jingoo Hancd9bb052013-12-03 07:10:29 +0000500static const struct pci_device_id fam15h_power_id_table[] = {
Andreas Herrmann512d1022011-05-25 20:43:31 +0200501 { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_15H_NB_F4) },
Aravind Gopalakrishnan0a0039a2014-09-16 14:58:16 -0500502 { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_15H_M30H_NB_F4) },
Huang Rui5dc08722015-08-27 16:07:32 +0800503 { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_15H_M60H_NB_F4) },
Huang Ruieff2a942015-12-10 11:56:10 +0800504 { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_15H_M70H_NB_F4) },
Boris Ostrovsky22e32f42012-12-05 06:12:42 -0500505 { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_16H_NB_F4) },
Aravind Gopalakrishnan0bd52942014-11-04 11:49:02 -0600506 { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_16H_M30H_NB_F4) },
Andreas Herrmann512d1022011-05-25 20:43:31 +0200507 {}
508};
509MODULE_DEVICE_TABLE(pci, fam15h_power_id_table);
510
511static struct pci_driver fam15h_power_driver = {
512 .name = "fam15h_power",
513 .id_table = fam15h_power_id_table,
514 .probe = fam15h_power_probe,
Andreas Herrmann5f0ecb92012-09-23 20:27:32 +0200515 .resume = fam15h_power_resume,
Andreas Herrmann512d1022011-05-25 20:43:31 +0200516};
517
Axel Linf71f5a52012-04-02 21:25:46 -0400518module_pci_driver(fam15h_power_driver);