blob: 0e81f287d3051930b5edc4d459d8957b05bfa979 [file] [log] [blame]
Harald Welte70c38772009-12-16 21:38:28 +01001/*
2 * via-cputemp.c - Driver for VIA CPU core temperature monitoring
3 * Copyright (C) 2009 VIA Technologies, Inc.
4 *
5 * based on existing coretemp.c, which is
6 *
7 * Copyright (C) 2007 Rudolf Marek <r.marek@assembler.cz>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; version 2 of the License.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 * 02110-1301 USA.
22 */
23
Joe Perchesedb8d532010-10-20 06:51:50 +000024#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
25
Harald Welte70c38772009-12-16 21:38:28 +010026#include <linux/module.h>
Harald Welte70c38772009-12-16 21:38:28 +010027#include <linux/init.h>
28#include <linux/slab.h>
Harald Welte70c38772009-12-16 21:38:28 +010029#include <linux/hwmon.h>
Jean Delvare764e0432011-07-25 21:46:10 +020030#include <linux/hwmon-vid.h>
Harald Welte70c38772009-12-16 21:38:28 +010031#include <linux/sysfs.h>
32#include <linux/hwmon-sysfs.h>
33#include <linux/err.h>
34#include <linux/mutex.h>
35#include <linux/list.h>
36#include <linux/platform_device.h>
37#include <linux/cpu.h>
38#include <asm/msr.h>
39#include <asm/processor.h>
Andi Kleen267fc972012-01-26 00:09:09 +010040#include <asm/cpu_device_id.h>
Harald Welte70c38772009-12-16 21:38:28 +010041
42#define DRVNAME "via_cputemp"
43
H. Peter Anvinf2799412010-08-14 21:09:02 +020044enum { SHOW_TEMP, SHOW_LABEL, SHOW_NAME };
Harald Welte70c38772009-12-16 21:38:28 +010045
46/*
47 * Functions declaration
48 */
49
50struct via_cputemp_data {
51 struct device *hwmon_dev;
52 const char *name;
Jean Delvare764e0432011-07-25 21:46:10 +020053 u8 vrm;
Harald Welte70c38772009-12-16 21:38:28 +010054 u32 id;
Jean Delvare764e0432011-07-25 21:46:10 +020055 u32 msr_temp;
56 u32 msr_vid;
Harald Welte70c38772009-12-16 21:38:28 +010057};
58
59/*
60 * Sysfs stuff
61 */
62
63static ssize_t show_name(struct device *dev, struct device_attribute
64 *devattr, char *buf)
65{
66 int ret;
67 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
68 struct via_cputemp_data *data = dev_get_drvdata(dev);
69
70 if (attr->index == SHOW_NAME)
71 ret = sprintf(buf, "%s\n", data->name);
72 else /* show label */
73 ret = sprintf(buf, "Core %d\n", data->id);
74 return ret;
75}
76
77static ssize_t show_temp(struct device *dev,
78 struct device_attribute *devattr, char *buf)
79{
80 struct via_cputemp_data *data = dev_get_drvdata(dev);
81 u32 eax, edx;
82 int err;
83
Jean Delvare764e0432011-07-25 21:46:10 +020084 err = rdmsr_safe_on_cpu(data->id, data->msr_temp, &eax, &edx);
Harald Welte70c38772009-12-16 21:38:28 +010085 if (err)
86 return -EAGAIN;
87
88 return sprintf(buf, "%lu\n", ((unsigned long)eax & 0xffffff) * 1000);
89}
90
Julia Lawall1664d7f2016-12-22 13:05:08 +010091static ssize_t cpu0_vid_show(struct device *dev,
92 struct device_attribute *devattr, char *buf)
Jean Delvare764e0432011-07-25 21:46:10 +020093{
94 struct via_cputemp_data *data = dev_get_drvdata(dev);
95 u32 eax, edx;
96 int err;
97
98 err = rdmsr_safe_on_cpu(data->id, data->msr_vid, &eax, &edx);
99 if (err)
100 return -EAGAIN;
101
102 return sprintf(buf, "%d\n", vid_from_reg(~edx & 0x7f, data->vrm));
103}
104
Harald Welte70c38772009-12-16 21:38:28 +0100105static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, show_temp, NULL,
106 SHOW_TEMP);
107static SENSOR_DEVICE_ATTR(temp1_label, S_IRUGO, show_name, NULL, SHOW_LABEL);
108static SENSOR_DEVICE_ATTR(name, S_IRUGO, show_name, NULL, SHOW_NAME);
109
110static struct attribute *via_cputemp_attributes[] = {
111 &sensor_dev_attr_name.dev_attr.attr,
112 &sensor_dev_attr_temp1_label.dev_attr.attr,
113 &sensor_dev_attr_temp1_input.dev_attr.attr,
114 NULL
115};
116
117static const struct attribute_group via_cputemp_group = {
118 .attrs = via_cputemp_attributes,
119};
120
Jean Delvare764e0432011-07-25 21:46:10 +0200121/* Optional attributes */
Julia Lawall1664d7f2016-12-22 13:05:08 +0100122static DEVICE_ATTR_RO(cpu0_vid);
Jean Delvare764e0432011-07-25 21:46:10 +0200123
Bill Pemberton6c931ae2012-11-19 13:22:35 -0500124static int via_cputemp_probe(struct platform_device *pdev)
Harald Welte70c38772009-12-16 21:38:28 +0100125{
126 struct via_cputemp_data *data;
127 struct cpuinfo_x86 *c = &cpu_data(pdev->id);
128 int err;
129 u32 eax, edx;
130
Guenter Roeck505dc0c2012-06-02 13:12:58 -0700131 data = devm_kzalloc(&pdev->dev, sizeof(struct via_cputemp_data),
132 GFP_KERNEL);
133 if (!data)
134 return -ENOMEM;
Harald Welte70c38772009-12-16 21:38:28 +0100135
136 data->id = pdev->id;
137 data->name = "via_cputemp";
138
davidwange3a2d2b2018-03-30 09:04:48 +0800139 if (c->x86 == 7) {
Jean Delvare764e0432011-07-25 21:46:10 +0200140 data->msr_temp = 0x1423;
davidwange3a2d2b2018-03-30 09:04:48 +0800141 } else {
142 switch (c->x86_model) {
143 case 0xA:
144 /* C7 A */
145 case 0xD:
146 /* C7 D */
147 data->msr_temp = 0x1169;
148 data->msr_vid = 0x198;
149 break;
150 case 0xF:
151 /* Nano */
152 data->msr_temp = 0x1423;
153 break;
154 default:
155 return -ENODEV;
156 }
Harald Welte70c38772009-12-16 21:38:28 +0100157 }
158
159 /* test if we can access the TEMPERATURE MSR */
Jean Delvare764e0432011-07-25 21:46:10 +0200160 err = rdmsr_safe_on_cpu(data->id, data->msr_temp, &eax, &edx);
Harald Welte70c38772009-12-16 21:38:28 +0100161 if (err) {
162 dev_err(&pdev->dev,
163 "Unable to access TEMPERATURE MSR, giving up\n");
Guenter Roeck505dc0c2012-06-02 13:12:58 -0700164 return err;
Harald Welte70c38772009-12-16 21:38:28 +0100165 }
166
167 platform_set_drvdata(pdev, data);
168
169 err = sysfs_create_group(&pdev->dev.kobj, &via_cputemp_group);
170 if (err)
Guenter Roeck505dc0c2012-06-02 13:12:58 -0700171 return err;
Harald Welte70c38772009-12-16 21:38:28 +0100172
Jean Delvare764e0432011-07-25 21:46:10 +0200173 if (data->msr_vid)
174 data->vrm = vid_which_vrm();
175
176 if (data->vrm) {
177 err = device_create_file(&pdev->dev, &dev_attr_cpu0_vid);
178 if (err)
179 goto exit_remove;
180 }
181
Harald Welte70c38772009-12-16 21:38:28 +0100182 data->hwmon_dev = hwmon_device_register(&pdev->dev);
183 if (IS_ERR(data->hwmon_dev)) {
184 err = PTR_ERR(data->hwmon_dev);
185 dev_err(&pdev->dev, "Class registration failed (%d)\n",
186 err);
187 goto exit_remove;
188 }
189
190 return 0;
191
192exit_remove:
Jean Delvare764e0432011-07-25 21:46:10 +0200193 if (data->vrm)
194 device_remove_file(&pdev->dev, &dev_attr_cpu0_vid);
Harald Welte70c38772009-12-16 21:38:28 +0100195 sysfs_remove_group(&pdev->dev.kobj, &via_cputemp_group);
Harald Welte70c38772009-12-16 21:38:28 +0100196 return err;
197}
198
Bill Pemberton281dfd02012-11-19 13:25:51 -0500199static int via_cputemp_remove(struct platform_device *pdev)
Harald Welte70c38772009-12-16 21:38:28 +0100200{
201 struct via_cputemp_data *data = platform_get_drvdata(pdev);
202
203 hwmon_device_unregister(data->hwmon_dev);
Jean Delvare764e0432011-07-25 21:46:10 +0200204 if (data->vrm)
205 device_remove_file(&pdev->dev, &dev_attr_cpu0_vid);
Harald Welte70c38772009-12-16 21:38:28 +0100206 sysfs_remove_group(&pdev->dev.kobj, &via_cputemp_group);
Harald Welte70c38772009-12-16 21:38:28 +0100207 return 0;
208}
209
210static struct platform_driver via_cputemp_driver = {
211 .driver = {
Harald Welte70c38772009-12-16 21:38:28 +0100212 .name = DRVNAME,
213 },
214 .probe = via_cputemp_probe,
Bill Pemberton9e5e9b72012-11-19 13:21:20 -0500215 .remove = via_cputemp_remove,
Harald Welte70c38772009-12-16 21:38:28 +0100216};
217
218struct pdev_entry {
219 struct list_head list;
220 struct platform_device *pdev;
221 unsigned int cpu;
222};
223
224static LIST_HEAD(pdev_list);
225static DEFINE_MUTEX(pdev_list_mutex);
226
Sebastian Andrzej Siewiordf60d702016-11-18 16:09:50 +0100227static int via_cputemp_online(unsigned int cpu)
Harald Welte70c38772009-12-16 21:38:28 +0100228{
229 int err;
230 struct platform_device *pdev;
231 struct pdev_entry *pdev_entry;
232
233 pdev = platform_device_alloc(DRVNAME, cpu);
234 if (!pdev) {
235 err = -ENOMEM;
Joe Perchesedb8d532010-10-20 06:51:50 +0000236 pr_err("Device allocation failed\n");
Harald Welte70c38772009-12-16 21:38:28 +0100237 goto exit;
238 }
239
240 pdev_entry = kzalloc(sizeof(struct pdev_entry), GFP_KERNEL);
241 if (!pdev_entry) {
242 err = -ENOMEM;
243 goto exit_device_put;
244 }
245
246 err = platform_device_add(pdev);
247 if (err) {
Joe Perchesedb8d532010-10-20 06:51:50 +0000248 pr_err("Device addition failed (%d)\n", err);
Harald Welte70c38772009-12-16 21:38:28 +0100249 goto exit_device_free;
250 }
251
252 pdev_entry->pdev = pdev;
253 pdev_entry->cpu = cpu;
254 mutex_lock(&pdev_list_mutex);
255 list_add_tail(&pdev_entry->list, &pdev_list);
256 mutex_unlock(&pdev_list_mutex);
257
258 return 0;
259
260exit_device_free:
261 kfree(pdev_entry);
262exit_device_put:
263 platform_device_put(pdev);
264exit:
265 return err;
266}
267
Sebastian Andrzej Siewiordf60d702016-11-18 16:09:50 +0100268static int via_cputemp_down_prep(unsigned int cpu)
Harald Welte70c38772009-12-16 21:38:28 +0100269{
Jan Beulichae9e0ce2010-12-06 11:48:35 -0500270 struct pdev_entry *p;
271
Harald Welte70c38772009-12-16 21:38:28 +0100272 mutex_lock(&pdev_list_mutex);
Jan Beulichae9e0ce2010-12-06 11:48:35 -0500273 list_for_each_entry(p, &pdev_list, list) {
Harald Welte70c38772009-12-16 21:38:28 +0100274 if (p->cpu == cpu) {
275 platform_device_unregister(p->pdev);
276 list_del(&p->list);
Jan Beulichae9e0ce2010-12-06 11:48:35 -0500277 mutex_unlock(&pdev_list_mutex);
Harald Welte70c38772009-12-16 21:38:28 +0100278 kfree(p);
Sebastian Andrzej Siewiordf60d702016-11-18 16:09:50 +0100279 return 0;
Harald Welte70c38772009-12-16 21:38:28 +0100280 }
281 }
282 mutex_unlock(&pdev_list_mutex);
Sebastian Andrzej Siewiordf60d702016-11-18 16:09:50 +0100283 return 0;
Harald Welte70c38772009-12-16 21:38:28 +0100284}
285
Jan Beuliche273bd92012-07-30 11:33:00 +0200286static const struct x86_cpu_id __initconst cputemp_ids[] = {
Andi Kleen267fc972012-01-26 00:09:09 +0100287 { X86_VENDOR_CENTAUR, 6, 0xa, }, /* C7 A */
288 { X86_VENDOR_CENTAUR, 6, 0xd, }, /* C7 D */
289 { X86_VENDOR_CENTAUR, 6, 0xf, }, /* Nano */
davidwange3a2d2b2018-03-30 09:04:48 +0800290 { X86_VENDOR_CENTAUR, 7, X86_MODEL_ANY, },
Andi Kleen267fc972012-01-26 00:09:09 +0100291 {}
292};
293MODULE_DEVICE_TABLE(x86cpu, cputemp_ids);
294
Sebastian Andrzej Siewiordf60d702016-11-18 16:09:50 +0100295static enum cpuhp_state via_temp_online;
296
Harald Welte70c38772009-12-16 21:38:28 +0100297static int __init via_cputemp_init(void)
298{
Sebastian Andrzej Siewiordf60d702016-11-18 16:09:50 +0100299 int err;
Harald Welte70c38772009-12-16 21:38:28 +0100300
Andi Kleen267fc972012-01-26 00:09:09 +0100301 if (!x86_match_cpu(cputemp_ids))
302 return -ENODEV;
Harald Welte70c38772009-12-16 21:38:28 +0100303
304 err = platform_driver_register(&via_cputemp_driver);
305 if (err)
306 goto exit;
307
Sebastian Andrzej Siewiordf60d702016-11-18 16:09:50 +0100308 err = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "hwmon/via:online",
309 via_cputemp_online, via_cputemp_down_prep);
310 if (err < 0)
311 goto exit_driver_unreg;
312 via_temp_online = err;
Jan Beulichae9e0ce2010-12-06 11:48:35 -0500313
314#ifndef CONFIG_HOTPLUG_CPU
Harald Welte70c38772009-12-16 21:38:28 +0100315 if (list_empty(&pdev_list)) {
316 err = -ENODEV;
Sebastian Andrzej Siewiordf60d702016-11-18 16:09:50 +0100317 goto exit_hp_unreg;
Harald Welte70c38772009-12-16 21:38:28 +0100318 }
Jan Beulichae9e0ce2010-12-06 11:48:35 -0500319#endif
Harald Welte70c38772009-12-16 21:38:28 +0100320 return 0;
321
Jan Beulichae9e0ce2010-12-06 11:48:35 -0500322#ifndef CONFIG_HOTPLUG_CPU
Sebastian Andrzej Siewiordf60d702016-11-18 16:09:50 +0100323exit_hp_unreg:
324 cpuhp_remove_state_nocalls(via_temp_online);
325#endif
Harald Welte70c38772009-12-16 21:38:28 +0100326exit_driver_unreg:
327 platform_driver_unregister(&via_cputemp_driver);
328exit:
329 return err;
330}
331
332static void __exit via_cputemp_exit(void)
333{
Sebastian Andrzej Siewiordf60d702016-11-18 16:09:50 +0100334 cpuhp_remove_state(via_temp_online);
Harald Welte70c38772009-12-16 21:38:28 +0100335 platform_driver_unregister(&via_cputemp_driver);
336}
337
338MODULE_AUTHOR("Harald Welte <HaraldWelte@viatech.com>");
339MODULE_DESCRIPTION("VIA CPU temperature monitor");
340MODULE_LICENSE("GPL");
341
342module_init(via_cputemp_init)
343module_exit(via_cputemp_exit)