1 // SPDX-License-Identifier: GPL-2.0
3 * thermal_hwmon.c - Generic Thermal Management hwmon support.
5 * Code based on Intel thermal_core.c. Copyrights of the original code:
6 * Copyright (C) 2008 Intel Corp
7 * Copyright (C) 2008 Zhang Rui <rui.zhang@intel.com>
8 * Copyright (C) 2008 Sujith Thomas <sujith.thomas@intel.com>
10 * Copyright (C) 2013 Texas Instruments
11 * Copyright (C) 2013 Eduardo Valentin <eduardo.valentin@ti.com>
13 #include <linux/err.h>
14 #include <linux/export.h>
15 #include <linux/hwmon.h>
16 #include <linux/slab.h>
17 #include <linux/thermal.h>
19 #include "thermal_hwmon.h"
22 /* thermal zone devices with the same type share one hwmon device */
23 struct thermal_hwmon_device
{
24 char type
[THERMAL_NAME_LENGTH
];
25 struct device
*device
;
27 struct list_head tz_list
;
28 struct list_head node
;
31 struct thermal_hwmon_attr
{
32 struct device_attribute attr
;
36 /* one temperature input for each thermal zone */
37 struct thermal_hwmon_temp
{
38 struct list_head hwmon_node
;
39 struct thermal_zone_device
*tz
;
40 struct thermal_hwmon_attr temp_input
; /* hwmon sys attr */
41 struct thermal_hwmon_attr temp_crit
; /* hwmon sys attr */
44 static LIST_HEAD(thermal_hwmon_list
);
46 static DEFINE_MUTEX(thermal_hwmon_list_lock
);
49 temp_input_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
53 struct thermal_hwmon_attr
*hwmon_attr
54 = container_of(attr
, struct thermal_hwmon_attr
, attr
);
55 struct thermal_hwmon_temp
*temp
56 = container_of(hwmon_attr
, struct thermal_hwmon_temp
,
58 struct thermal_zone_device
*tz
= temp
->tz
;
60 ret
= thermal_zone_get_temp(tz
, &temperature
);
65 return sprintf(buf
, "%d\n", temperature
);
69 temp_crit_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
71 struct thermal_hwmon_attr
*hwmon_attr
72 = container_of(attr
, struct thermal_hwmon_attr
, attr
);
73 struct thermal_hwmon_temp
*temp
74 = container_of(hwmon_attr
, struct thermal_hwmon_temp
,
76 struct thermal_zone_device
*tz
= temp
->tz
;
80 ret
= tz
->ops
->get_crit_temp(tz
, &temperature
);
84 return sprintf(buf
, "%d\n", temperature
);
88 static struct thermal_hwmon_device
*
89 thermal_hwmon_lookup_by_type(const struct thermal_zone_device
*tz
)
91 struct thermal_hwmon_device
*hwmon
;
92 char type
[THERMAL_NAME_LENGTH
];
94 mutex_lock(&thermal_hwmon_list_lock
);
95 list_for_each_entry(hwmon
, &thermal_hwmon_list
, node
) {
96 strcpy(type
, tz
->type
);
97 strreplace(type
, '-', '_');
98 if (!strcmp(hwmon
->type
, type
)) {
99 mutex_unlock(&thermal_hwmon_list_lock
);
103 mutex_unlock(&thermal_hwmon_list_lock
);
108 /* Find the temperature input matching a given thermal zone */
109 static struct thermal_hwmon_temp
*
110 thermal_hwmon_lookup_temp(const struct thermal_hwmon_device
*hwmon
,
111 const struct thermal_zone_device
*tz
)
113 struct thermal_hwmon_temp
*temp
;
115 mutex_lock(&thermal_hwmon_list_lock
);
116 list_for_each_entry(temp
, &hwmon
->tz_list
, hwmon_node
)
117 if (temp
->tz
== tz
) {
118 mutex_unlock(&thermal_hwmon_list_lock
);
121 mutex_unlock(&thermal_hwmon_list_lock
);
126 static bool thermal_zone_crit_temp_valid(struct thermal_zone_device
*tz
)
129 return tz
->ops
->get_crit_temp
&& !tz
->ops
->get_crit_temp(tz
, &temp
);
132 int thermal_add_hwmon_sysfs(struct thermal_zone_device
*tz
)
134 struct thermal_hwmon_device
*hwmon
;
135 struct thermal_hwmon_temp
*temp
;
136 int new_hwmon_device
= 1;
139 hwmon
= thermal_hwmon_lookup_by_type(tz
);
141 new_hwmon_device
= 0;
142 goto register_sys_interface
;
145 hwmon
= kzalloc(sizeof(*hwmon
), GFP_KERNEL
);
149 INIT_LIST_HEAD(&hwmon
->tz_list
);
150 strlcpy(hwmon
->type
, tz
->type
, THERMAL_NAME_LENGTH
);
151 strreplace(hwmon
->type
, '-', '_');
152 hwmon
->device
= hwmon_device_register_with_info(&tz
->device
, hwmon
->type
,
154 if (IS_ERR(hwmon
->device
)) {
155 result
= PTR_ERR(hwmon
->device
);
159 register_sys_interface
:
160 temp
= kzalloc(sizeof(*temp
), GFP_KERNEL
);
163 goto unregister_name
;
169 snprintf(temp
->temp_input
.name
, sizeof(temp
->temp_input
.name
),
170 "temp%d_input", hwmon
->count
);
171 temp
->temp_input
.attr
.attr
.name
= temp
->temp_input
.name
;
172 temp
->temp_input
.attr
.attr
.mode
= 0444;
173 temp
->temp_input
.attr
.show
= temp_input_show
;
174 sysfs_attr_init(&temp
->temp_input
.attr
.attr
);
175 result
= device_create_file(hwmon
->device
, &temp
->temp_input
.attr
);
179 if (thermal_zone_crit_temp_valid(tz
)) {
180 snprintf(temp
->temp_crit
.name
,
181 sizeof(temp
->temp_crit
.name
),
182 "temp%d_crit", hwmon
->count
);
183 temp
->temp_crit
.attr
.attr
.name
= temp
->temp_crit
.name
;
184 temp
->temp_crit
.attr
.attr
.mode
= 0444;
185 temp
->temp_crit
.attr
.show
= temp_crit_show
;
186 sysfs_attr_init(&temp
->temp_crit
.attr
.attr
);
187 result
= device_create_file(hwmon
->device
,
188 &temp
->temp_crit
.attr
);
190 goto unregister_input
;
193 mutex_lock(&thermal_hwmon_list_lock
);
194 if (new_hwmon_device
)
195 list_add_tail(&hwmon
->node
, &thermal_hwmon_list
);
196 list_add_tail(&temp
->hwmon_node
, &hwmon
->tz_list
);
197 mutex_unlock(&thermal_hwmon_list_lock
);
202 device_remove_file(hwmon
->device
, &temp
->temp_input
.attr
);
206 if (new_hwmon_device
)
207 hwmon_device_unregister(hwmon
->device
);
209 if (new_hwmon_device
)
214 EXPORT_SYMBOL_GPL(thermal_add_hwmon_sysfs
);
216 void thermal_remove_hwmon_sysfs(struct thermal_zone_device
*tz
)
218 struct thermal_hwmon_device
*hwmon
;
219 struct thermal_hwmon_temp
*temp
;
221 hwmon
= thermal_hwmon_lookup_by_type(tz
);
222 if (unlikely(!hwmon
)) {
223 /* Should never happen... */
224 dev_dbg(&tz
->device
, "hwmon device lookup failed!\n");
228 temp
= thermal_hwmon_lookup_temp(hwmon
, tz
);
229 if (unlikely(!temp
)) {
230 /* Should never happen... */
231 dev_dbg(&tz
->device
, "temperature input lookup failed!\n");
235 device_remove_file(hwmon
->device
, &temp
->temp_input
.attr
);
236 if (thermal_zone_crit_temp_valid(tz
))
237 device_remove_file(hwmon
->device
, &temp
->temp_crit
.attr
);
239 mutex_lock(&thermal_hwmon_list_lock
);
240 list_del(&temp
->hwmon_node
);
242 if (!list_empty(&hwmon
->tz_list
)) {
243 mutex_unlock(&thermal_hwmon_list_lock
);
246 list_del(&hwmon
->node
);
247 mutex_unlock(&thermal_hwmon_list_lock
);
249 hwmon_device_unregister(hwmon
->device
);
252 EXPORT_SYMBOL_GPL(thermal_remove_hwmon_sysfs
);
254 static void devm_thermal_hwmon_release(struct device
*dev
, void *res
)
256 thermal_remove_hwmon_sysfs(*(struct thermal_zone_device
**)res
);
259 int devm_thermal_add_hwmon_sysfs(struct thermal_zone_device
*tz
)
261 struct thermal_zone_device
**ptr
;
264 ptr
= devres_alloc(devm_thermal_hwmon_release
, sizeof(*ptr
),
269 ret
= thermal_add_hwmon_sysfs(tz
);
276 devres_add(&tz
->device
, ptr
);
280 EXPORT_SYMBOL_GPL(devm_thermal_add_hwmon_sysfs
);