blob: dd5d8ee3792870fccbff4c5ab0b7fb251d007612 [file] [log] [blame]
Lina Iyer7e3c0382018-05-07 11:52:29 -06001// SPDX-License-Identifier: GPL-2.0
Eduardo Valentin0dd88792013-07-03 15:14:28 -04002/*
3 * thermal_hwmon.c - Generic Thermal Management hwmon support.
4 *
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>
9 *
10 * Copyright (C) 2013 Texas Instruments
11 * Copyright (C) 2013 Eduardo Valentin <eduardo.valentin@ti.com>
Eduardo Valentin0dd88792013-07-03 15:14:28 -040012 */
13#include <linux/hwmon.h>
14#include <linux/thermal.h>
15#include <linux/slab.h>
16#include <linux/err.h>
17#include "thermal_hwmon.h"
18
19/* hwmon sys I/F */
20/* thermal zone devices with the same type share one hwmon device */
21struct thermal_hwmon_device {
22 char type[THERMAL_NAME_LENGTH];
23 struct device *device;
24 int count;
25 struct list_head tz_list;
26 struct list_head node;
27};
28
29struct thermal_hwmon_attr {
30 struct device_attribute attr;
31 char name[16];
32};
33
34/* one temperature input for each thermal zone */
35struct thermal_hwmon_temp {
36 struct list_head hwmon_node;
37 struct thermal_zone_device *tz;
38 struct thermal_hwmon_attr temp_input; /* hwmon sys attr */
39 struct thermal_hwmon_attr temp_crit; /* hwmon sys attr */
40};
41
42static LIST_HEAD(thermal_hwmon_list);
43
44static DEFINE_MUTEX(thermal_hwmon_list_lock);
45
46static ssize_t
Eduardo Valentin0dd88792013-07-03 15:14:28 -040047temp_input_show(struct device *dev, struct device_attribute *attr, char *buf)
48{
Sascha Hauer17e83512015-07-24 08:12:54 +020049 int temperature;
Eduardo Valentin0dd88792013-07-03 15:14:28 -040050 int ret;
51 struct thermal_hwmon_attr *hwmon_attr
52 = container_of(attr, struct thermal_hwmon_attr, attr);
53 struct thermal_hwmon_temp *temp
54 = container_of(hwmon_attr, struct thermal_hwmon_temp,
55 temp_input);
56 struct thermal_zone_device *tz = temp->tz;
57
58 ret = thermal_zone_get_temp(tz, &temperature);
59
60 if (ret)
61 return ret;
62
Sascha Hauer17e83512015-07-24 08:12:54 +020063 return sprintf(buf, "%d\n", temperature);
Eduardo Valentin0dd88792013-07-03 15:14:28 -040064}
65
66static ssize_t
67temp_crit_show(struct device *dev, struct device_attribute *attr, char *buf)
68{
69 struct thermal_hwmon_attr *hwmon_attr
70 = container_of(attr, struct thermal_hwmon_attr, attr);
71 struct thermal_hwmon_temp *temp
72 = container_of(hwmon_attr, struct thermal_hwmon_temp,
73 temp_crit);
74 struct thermal_zone_device *tz = temp->tz;
Sascha Hauer17e83512015-07-24 08:12:54 +020075 int temperature;
Eduardo Valentin0dd88792013-07-03 15:14:28 -040076 int ret;
77
Krzysztof Kozlowskif37fabb2016-11-22 19:22:44 +020078 ret = tz->ops->get_crit_temp(tz, &temperature);
Eduardo Valentin0dd88792013-07-03 15:14:28 -040079 if (ret)
80 return ret;
81
Sascha Hauer17e83512015-07-24 08:12:54 +020082 return sprintf(buf, "%d\n", temperature);
Eduardo Valentin0dd88792013-07-03 15:14:28 -040083}
84
85
86static struct thermal_hwmon_device *
87thermal_hwmon_lookup_by_type(const struct thermal_zone_device *tz)
88{
89 struct thermal_hwmon_device *hwmon;
Stefan Mavrodiev9025adf2019-07-26 16:32:36 +030090 char type[THERMAL_NAME_LENGTH];
Eduardo Valentin0dd88792013-07-03 15:14:28 -040091
92 mutex_lock(&thermal_hwmon_list_lock);
Stefan Mavrodiev9025adf2019-07-26 16:32:36 +030093 list_for_each_entry(hwmon, &thermal_hwmon_list, node) {
94 strcpy(type, tz->type);
95 strreplace(type, '-', '_');
96 if (!strcmp(hwmon->type, type)) {
Eduardo Valentin0dd88792013-07-03 15:14:28 -040097 mutex_unlock(&thermal_hwmon_list_lock);
98 return hwmon;
99 }
Stefan Mavrodiev9025adf2019-07-26 16:32:36 +0300100 }
Eduardo Valentin0dd88792013-07-03 15:14:28 -0400101 mutex_unlock(&thermal_hwmon_list_lock);
102
103 return NULL;
104}
105
106/* Find the temperature input matching a given thermal zone */
107static struct thermal_hwmon_temp *
108thermal_hwmon_lookup_temp(const struct thermal_hwmon_device *hwmon,
109 const struct thermal_zone_device *tz)
110{
111 struct thermal_hwmon_temp *temp;
112
113 mutex_lock(&thermal_hwmon_list_lock);
114 list_for_each_entry(temp, &hwmon->tz_list, hwmon_node)
115 if (temp->tz == tz) {
116 mutex_unlock(&thermal_hwmon_list_lock);
117 return temp;
118 }
119 mutex_unlock(&thermal_hwmon_list_lock);
120
121 return NULL;
122}
123
Aaron Lue8db5d62014-05-21 16:33:27 +0800124static bool thermal_zone_crit_temp_valid(struct thermal_zone_device *tz)
125{
Sascha Hauer17e83512015-07-24 08:12:54 +0200126 int temp;
Aaron Lue8db5d62014-05-21 16:33:27 +0800127 return tz->ops->get_crit_temp && !tz->ops->get_crit_temp(tz, &temp);
128}
129
Eduardo Valentin0dd88792013-07-03 15:14:28 -0400130int thermal_add_hwmon_sysfs(struct thermal_zone_device *tz)
131{
132 struct thermal_hwmon_device *hwmon;
133 struct thermal_hwmon_temp *temp;
134 int new_hwmon_device = 1;
135 int result;
136
137 hwmon = thermal_hwmon_lookup_by_type(tz);
138 if (hwmon) {
139 new_hwmon_device = 0;
140 goto register_sys_interface;
141 }
142
143 hwmon = kzalloc(sizeof(*hwmon), GFP_KERNEL);
144 if (!hwmon)
145 return -ENOMEM;
146
147 INIT_LIST_HEAD(&hwmon->tz_list);
148 strlcpy(hwmon->type, tz->type, THERMAL_NAME_LENGTH);
Marc Zyngier409ef0b2018-07-10 16:40:34 +0100149 strreplace(hwmon->type, '-', '_');
Marc Zyngierf6b6b522018-07-10 16:40:35 +0100150 hwmon->device = hwmon_device_register_with_info(&tz->device, hwmon->type,
Fabio Estevame782bc12018-01-13 12:08:49 -0200151 hwmon, NULL, NULL);
Eduardo Valentin0dd88792013-07-03 15:14:28 -0400152 if (IS_ERR(hwmon->device)) {
153 result = PTR_ERR(hwmon->device);
154 goto free_mem;
155 }
Eduardo Valentin0dd88792013-07-03 15:14:28 -0400156
157 register_sys_interface:
158 temp = kzalloc(sizeof(*temp), GFP_KERNEL);
159 if (!temp) {
160 result = -ENOMEM;
161 goto unregister_name;
162 }
163
164 temp->tz = tz;
165 hwmon->count++;
166
167 snprintf(temp->temp_input.name, sizeof(temp->temp_input.name),
168 "temp%d_input", hwmon->count);
169 temp->temp_input.attr.attr.name = temp->temp_input.name;
170 temp->temp_input.attr.attr.mode = 0444;
171 temp->temp_input.attr.show = temp_input_show;
172 sysfs_attr_init(&temp->temp_input.attr.attr);
173 result = device_create_file(hwmon->device, &temp->temp_input.attr);
174 if (result)
175 goto free_temp_mem;
176
Aaron Lue8db5d62014-05-21 16:33:27 +0800177 if (thermal_zone_crit_temp_valid(tz)) {
178 snprintf(temp->temp_crit.name,
179 sizeof(temp->temp_crit.name),
Eduardo Valentin0dd88792013-07-03 15:14:28 -0400180 "temp%d_crit", hwmon->count);
Aaron Lue8db5d62014-05-21 16:33:27 +0800181 temp->temp_crit.attr.attr.name = temp->temp_crit.name;
182 temp->temp_crit.attr.attr.mode = 0444;
183 temp->temp_crit.attr.show = temp_crit_show;
184 sysfs_attr_init(&temp->temp_crit.attr.attr);
185 result = device_create_file(hwmon->device,
186 &temp->temp_crit.attr);
187 if (result)
188 goto unregister_input;
Eduardo Valentin0dd88792013-07-03 15:14:28 -0400189 }
190
191 mutex_lock(&thermal_hwmon_list_lock);
192 if (new_hwmon_device)
193 list_add_tail(&hwmon->node, &thermal_hwmon_list);
194 list_add_tail(&temp->hwmon_node, &hwmon->tz_list);
195 mutex_unlock(&thermal_hwmon_list_lock);
196
197 return 0;
198
199 unregister_input:
200 device_remove_file(hwmon->device, &temp->temp_input.attr);
201 free_temp_mem:
202 kfree(temp);
203 unregister_name:
Fabio Estevame782bc12018-01-13 12:08:49 -0200204 if (new_hwmon_device)
Eduardo Valentin0dd88792013-07-03 15:14:28 -0400205 hwmon_device_unregister(hwmon->device);
Eduardo Valentin0dd88792013-07-03 15:14:28 -0400206 free_mem:
207 if (new_hwmon_device)
208 kfree(hwmon);
209
210 return result;
211}
Kuninori Morimotof4c59242016-07-04 07:19:32 +0000212EXPORT_SYMBOL_GPL(thermal_add_hwmon_sysfs);
Eduardo Valentin0dd88792013-07-03 15:14:28 -0400213
214void thermal_remove_hwmon_sysfs(struct thermal_zone_device *tz)
215{
216 struct thermal_hwmon_device *hwmon;
217 struct thermal_hwmon_temp *temp;
218
219 hwmon = thermal_hwmon_lookup_by_type(tz);
220 if (unlikely(!hwmon)) {
221 /* Should never happen... */
222 dev_dbg(&tz->device, "hwmon device lookup failed!\n");
223 return;
224 }
225
226 temp = thermal_hwmon_lookup_temp(hwmon, tz);
227 if (unlikely(!temp)) {
228 /* Should never happen... */
229 dev_dbg(&tz->device, "temperature input lookup failed!\n");
230 return;
231 }
232
233 device_remove_file(hwmon->device, &temp->temp_input.attr);
Aaron Lue8db5d62014-05-21 16:33:27 +0800234 if (thermal_zone_crit_temp_valid(tz))
Eduardo Valentin0dd88792013-07-03 15:14:28 -0400235 device_remove_file(hwmon->device, &temp->temp_crit.attr);
236
237 mutex_lock(&thermal_hwmon_list_lock);
238 list_del(&temp->hwmon_node);
239 kfree(temp);
240 if (!list_empty(&hwmon->tz_list)) {
241 mutex_unlock(&thermal_hwmon_list_lock);
242 return;
243 }
244 list_del(&hwmon->node);
245 mutex_unlock(&thermal_hwmon_list_lock);
246
Eduardo Valentin0dd88792013-07-03 15:14:28 -0400247 hwmon_device_unregister(hwmon->device);
248 kfree(hwmon);
249}
Kuninori Morimotof4c59242016-07-04 07:19:32 +0000250EXPORT_SYMBOL_GPL(thermal_remove_hwmon_sysfs);