2 * via-cputemp.c - Driver for VIA CPU core temperature monitoring
3 * Copyright (C) 2009 VIA Technologies, Inc.
5 * based on existing coretemp.c, which is
7 * Copyright (C) 2007 Rudolf Marek <r.marek@assembler.cz>
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.
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.
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
24 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
26 #include <linux/module.h>
27 #include <linux/init.h>
28 #include <linux/slab.h>
29 #include <linux/hwmon.h>
30 #include <linux/hwmon-vid.h>
31 #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>
39 #include <asm/processor.h>
40 #include <asm/cpu_device_id.h>
42 #define DRVNAME "via_cputemp"
44 enum { SHOW_TEMP
, SHOW_LABEL
, SHOW_NAME
};
47 * Functions declaration
50 struct via_cputemp_data
{
51 struct device
*hwmon_dev
;
63 static ssize_t
show_name(struct device
*dev
, struct device_attribute
67 struct sensor_device_attribute
*attr
= to_sensor_dev_attr(devattr
);
68 struct via_cputemp_data
*data
= dev_get_drvdata(dev
);
70 if (attr
->index
== SHOW_NAME
)
71 ret
= sprintf(buf
, "%s\n", data
->name
);
73 ret
= sprintf(buf
, "Core %d\n", data
->id
);
77 static ssize_t
show_temp(struct device
*dev
,
78 struct device_attribute
*devattr
, char *buf
)
80 struct via_cputemp_data
*data
= dev_get_drvdata(dev
);
84 err
= rdmsr_safe_on_cpu(data
->id
, data
->msr_temp
, &eax
, &edx
);
88 return sprintf(buf
, "%lu\n", ((unsigned long)eax
& 0xffffff) * 1000);
91 static ssize_t
cpu0_vid_show(struct device
*dev
,
92 struct device_attribute
*devattr
, char *buf
)
94 struct via_cputemp_data
*data
= dev_get_drvdata(dev
);
98 err
= rdmsr_safe_on_cpu(data
->id
, data
->msr_vid
, &eax
, &edx
);
102 return sprintf(buf
, "%d\n", vid_from_reg(~edx
& 0x7f, data
->vrm
));
105 static SENSOR_DEVICE_ATTR(temp1_input
, S_IRUGO
, show_temp
, NULL
,
107 static SENSOR_DEVICE_ATTR(temp1_label
, S_IRUGO
, show_name
, NULL
, SHOW_LABEL
);
108 static SENSOR_DEVICE_ATTR(name
, S_IRUGO
, show_name
, NULL
, SHOW_NAME
);
110 static 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
,
117 static const struct attribute_group via_cputemp_group
= {
118 .attrs
= via_cputemp_attributes
,
121 /* Optional attributes */
122 static DEVICE_ATTR_RO(cpu0_vid
);
124 static int via_cputemp_probe(struct platform_device
*pdev
)
126 struct via_cputemp_data
*data
;
127 struct cpuinfo_x86
*c
= &cpu_data(pdev
->id
);
131 data
= devm_kzalloc(&pdev
->dev
, sizeof(struct via_cputemp_data
),
137 data
->name
= "via_cputemp";
140 data
->msr_temp
= 0x1423;
142 switch (c
->x86_model
) {
147 data
->msr_temp
= 0x1169;
148 data
->msr_vid
= 0x198;
152 data
->msr_temp
= 0x1423;
159 /* test if we can access the TEMPERATURE MSR */
160 err
= rdmsr_safe_on_cpu(data
->id
, data
->msr_temp
, &eax
, &edx
);
163 "Unable to access TEMPERATURE MSR, giving up\n");
167 platform_set_drvdata(pdev
, data
);
169 err
= sysfs_create_group(&pdev
->dev
.kobj
, &via_cputemp_group
);
174 data
->vrm
= vid_which_vrm();
177 err
= device_create_file(&pdev
->dev
, &dev_attr_cpu0_vid
);
182 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",
194 device_remove_file(&pdev
->dev
, &dev_attr_cpu0_vid
);
195 sysfs_remove_group(&pdev
->dev
.kobj
, &via_cputemp_group
);
199 static int via_cputemp_remove(struct platform_device
*pdev
)
201 struct via_cputemp_data
*data
= platform_get_drvdata(pdev
);
203 hwmon_device_unregister(data
->hwmon_dev
);
205 device_remove_file(&pdev
->dev
, &dev_attr_cpu0_vid
);
206 sysfs_remove_group(&pdev
->dev
.kobj
, &via_cputemp_group
);
210 static struct platform_driver via_cputemp_driver
= {
214 .probe
= via_cputemp_probe
,
215 .remove
= via_cputemp_remove
,
219 struct list_head list
;
220 struct platform_device
*pdev
;
224 static LIST_HEAD(pdev_list
);
225 static DEFINE_MUTEX(pdev_list_mutex
);
227 static int via_cputemp_online(unsigned int cpu
)
230 struct platform_device
*pdev
;
231 struct pdev_entry
*pdev_entry
;
233 pdev
= platform_device_alloc(DRVNAME
, cpu
);
236 pr_err("Device allocation failed\n");
240 pdev_entry
= kzalloc(sizeof(struct pdev_entry
), GFP_KERNEL
);
243 goto exit_device_put
;
246 err
= platform_device_add(pdev
);
248 pr_err("Device addition failed (%d)\n", err
);
249 goto exit_device_free
;
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
);
263 platform_device_put(pdev
);
268 static int via_cputemp_down_prep(unsigned int cpu
)
270 struct pdev_entry
*p
;
272 mutex_lock(&pdev_list_mutex
);
273 list_for_each_entry(p
, &pdev_list
, list
) {
275 platform_device_unregister(p
->pdev
);
277 mutex_unlock(&pdev_list_mutex
);
282 mutex_unlock(&pdev_list_mutex
);
286 static const struct x86_cpu_id __initconst cputemp_ids
[] = {
287 { X86_VENDOR_CENTAUR
, 6, 0xa, }, /* C7 A */
288 { X86_VENDOR_CENTAUR
, 6, 0xd, }, /* C7 D */
289 { X86_VENDOR_CENTAUR
, 6, 0xf, }, /* Nano */
290 { X86_VENDOR_CENTAUR
, 7, X86_MODEL_ANY
, },
293 MODULE_DEVICE_TABLE(x86cpu
, cputemp_ids
);
295 static enum cpuhp_state via_temp_online
;
297 static int __init
via_cputemp_init(void)
301 if (!x86_match_cpu(cputemp_ids
))
304 err
= platform_driver_register(&via_cputemp_driver
);
308 err
= cpuhp_setup_state(CPUHP_AP_ONLINE_DYN
, "hwmon/via:online",
309 via_cputemp_online
, via_cputemp_down_prep
);
311 goto exit_driver_unreg
;
312 via_temp_online
= err
;
314 #ifndef CONFIG_HOTPLUG_CPU
315 if (list_empty(&pdev_list
)) {
322 #ifndef CONFIG_HOTPLUG_CPU
324 cpuhp_remove_state_nocalls(via_temp_online
);
327 platform_driver_unregister(&via_cputemp_driver
);
332 static void __exit
via_cputemp_exit(void)
334 cpuhp_remove_state(via_temp_online
);
335 platform_driver_unregister(&via_cputemp_driver
);
338 MODULE_AUTHOR("Harald Welte <HaraldWelte@viatech.com>");
339 MODULE_DESCRIPTION("VIA CPU temperature monitor");
340 MODULE_LICENSE("GPL");
342 module_init(via_cputemp_init
)
343 module_exit(via_cputemp_exit
)