xref: /linux/drivers/hwmon/hwmon.c (revision e159ab5cb1afb519601a961405933c61cdd5a56a)
11236441fSMark M. Hoffman /*
25ed04880SGuenter Roeck  * hwmon.c - part of lm_sensors, Linux kernel modules for hardware monitoring
35ed04880SGuenter Roeck  *
45ed04880SGuenter Roeck  * This file defines the sysfs class "hwmon", for use by sensors drivers.
55ed04880SGuenter Roeck  *
65ed04880SGuenter Roeck  * Copyright (C) 2005 Mark M. Hoffman <mhoffman@lightlink.com>
75ed04880SGuenter Roeck  *
85ed04880SGuenter Roeck  * This program is free software; you can redistribute it and/or modify
95ed04880SGuenter Roeck  * it under the terms of the GNU General Public License as published by
105ed04880SGuenter Roeck  * the Free Software Foundation; version 2 of the License.
111236441fSMark M. Hoffman  */
121236441fSMark M. Hoffman 
13c95df1aeSJoe Perches #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14c95df1aeSJoe Perches 
15d560168bSGuenter Roeck #include <linux/bitops.h>
161236441fSMark M. Hoffman #include <linux/device.h>
171236441fSMark M. Hoffman #include <linux/err.h>
188c65b4a6STim Schmielau #include <linux/gfp.h>
19c9ebbe6fSGuenter Roeck #include <linux/hwmon.h>
20c9ebbe6fSGuenter Roeck #include <linux/idr.h>
21c9ebbe6fSGuenter Roeck #include <linux/module.h>
222958b1ecSJean Delvare #include <linux/pci.h>
23c9ebbe6fSGuenter Roeck #include <linux/slab.h>
24648cd48cSGuenter Roeck #include <linux/string.h>
25d560168bSGuenter Roeck #include <linux/thermal.h>
261236441fSMark M. Hoffman 
271236441fSMark M. Hoffman #define HWMON_ID_PREFIX "hwmon"
281236441fSMark M. Hoffman #define HWMON_ID_FORMAT HWMON_ID_PREFIX "%d"
291236441fSMark M. Hoffman 
30bab2243cSGuenter Roeck struct hwmon_device {
31bab2243cSGuenter Roeck 	const char *name;
32bab2243cSGuenter Roeck 	struct device dev;
33d560168bSGuenter Roeck 	const struct hwmon_chip_info *chip;
34d560168bSGuenter Roeck 
35d560168bSGuenter Roeck 	struct attribute_group group;
36d560168bSGuenter Roeck 	const struct attribute_group **groups;
37bab2243cSGuenter Roeck };
38d560168bSGuenter Roeck 
39bab2243cSGuenter Roeck #define to_hwmon_device(d) container_of(d, struct hwmon_device, dev)
40bab2243cSGuenter Roeck 
41d560168bSGuenter Roeck struct hwmon_device_attribute {
42d560168bSGuenter Roeck 	struct device_attribute dev_attr;
43d560168bSGuenter Roeck 	const struct hwmon_ops *ops;
44d560168bSGuenter Roeck 	enum hwmon_sensor_types type;
45d560168bSGuenter Roeck 	u32 attr;
46d560168bSGuenter Roeck 	int index;
47d560168bSGuenter Roeck };
48d560168bSGuenter Roeck 
49d560168bSGuenter Roeck #define to_hwmon_attr(d) \
50d560168bSGuenter Roeck 	container_of(d, struct hwmon_device_attribute, dev_attr)
51d560168bSGuenter Roeck 
52d560168bSGuenter Roeck /*
53d560168bSGuenter Roeck  * Thermal zone information
54d560168bSGuenter Roeck  * In addition to the reference to the hwmon device,
55d560168bSGuenter Roeck  * also provides the sensor index.
56d560168bSGuenter Roeck  */
57d560168bSGuenter Roeck struct hwmon_thermal_data {
58d560168bSGuenter Roeck 	struct hwmon_device *hwdev;	/* Reference to hwmon device */
59d560168bSGuenter Roeck 	int index;			/* sensor index */
60d560168bSGuenter Roeck };
61d560168bSGuenter Roeck 
62bab2243cSGuenter Roeck static ssize_t
63bab2243cSGuenter Roeck show_name(struct device *dev, struct device_attribute *attr, char *buf)
64bab2243cSGuenter Roeck {
65bab2243cSGuenter Roeck 	return sprintf(buf, "%s\n", to_hwmon_device(dev)->name);
66bab2243cSGuenter Roeck }
67bab2243cSGuenter Roeck static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
68bab2243cSGuenter Roeck 
69bab2243cSGuenter Roeck static struct attribute *hwmon_dev_attrs[] = {
70bab2243cSGuenter Roeck 	&dev_attr_name.attr,
71bab2243cSGuenter Roeck 	NULL
72bab2243cSGuenter Roeck };
73bab2243cSGuenter Roeck 
74bab2243cSGuenter Roeck static umode_t hwmon_dev_name_is_visible(struct kobject *kobj,
75bab2243cSGuenter Roeck 					 struct attribute *attr, int n)
76bab2243cSGuenter Roeck {
77bab2243cSGuenter Roeck 	struct device *dev = container_of(kobj, struct device, kobj);
78bab2243cSGuenter Roeck 
79bab2243cSGuenter Roeck 	if (to_hwmon_device(dev)->name == NULL)
80bab2243cSGuenter Roeck 		return 0;
81bab2243cSGuenter Roeck 
82bab2243cSGuenter Roeck 	return attr->mode;
83bab2243cSGuenter Roeck }
84bab2243cSGuenter Roeck 
85bab2243cSGuenter Roeck static struct attribute_group hwmon_dev_attr_group = {
86bab2243cSGuenter Roeck 	.attrs		= hwmon_dev_attrs,
87bab2243cSGuenter Roeck 	.is_visible	= hwmon_dev_name_is_visible,
88bab2243cSGuenter Roeck };
89bab2243cSGuenter Roeck 
90bab2243cSGuenter Roeck static const struct attribute_group *hwmon_dev_attr_groups[] = {
91bab2243cSGuenter Roeck 	&hwmon_dev_attr_group,
92bab2243cSGuenter Roeck 	NULL
93bab2243cSGuenter Roeck };
94bab2243cSGuenter Roeck 
95bab2243cSGuenter Roeck static void hwmon_dev_release(struct device *dev)
96bab2243cSGuenter Roeck {
97bab2243cSGuenter Roeck 	kfree(to_hwmon_device(dev));
98bab2243cSGuenter Roeck }
99bab2243cSGuenter Roeck 
100bab2243cSGuenter Roeck static struct class hwmon_class = {
101bab2243cSGuenter Roeck 	.name = "hwmon",
102bab2243cSGuenter Roeck 	.owner = THIS_MODULE,
103bab2243cSGuenter Roeck 	.dev_groups = hwmon_dev_attr_groups,
104bab2243cSGuenter Roeck 	.dev_release = hwmon_dev_release,
105bab2243cSGuenter Roeck };
1061236441fSMark M. Hoffman 
1074ca5f468SJonathan Cameron static DEFINE_IDA(hwmon_ida);
1081236441fSMark M. Hoffman 
109d560168bSGuenter Roeck /* Thermal zone handling */
110d560168bSGuenter Roeck 
11186430c1aSGuenter Roeck /*
11286430c1aSGuenter Roeck  * The complex conditional is necessary to avoid a cyclic dependency
11386430c1aSGuenter Roeck  * between hwmon and thermal_sys modules.
11486430c1aSGuenter Roeck  */
11586430c1aSGuenter Roeck #if IS_REACHABLE(CONFIG_THERMAL) && defined(CONFIG_THERMAL_OF) && \
11686430c1aSGuenter Roeck 	(!defined(CONFIG_THERMAL_HWMON) || \
11786430c1aSGuenter Roeck 	 !(defined(MODULE) && IS_MODULE(CONFIG_THERMAL)))
118d560168bSGuenter Roeck static int hwmon_thermal_get_temp(void *data, int *temp)
119d560168bSGuenter Roeck {
120d560168bSGuenter Roeck 	struct hwmon_thermal_data *tdata = data;
121d560168bSGuenter Roeck 	struct hwmon_device *hwdev = tdata->hwdev;
122d560168bSGuenter Roeck 	int ret;
123d560168bSGuenter Roeck 	long t;
124d560168bSGuenter Roeck 
125d560168bSGuenter Roeck 	ret = hwdev->chip->ops->read(&hwdev->dev, hwmon_temp, hwmon_temp_input,
126d560168bSGuenter Roeck 				     tdata->index, &t);
127d560168bSGuenter Roeck 	if (ret < 0)
128d560168bSGuenter Roeck 		return ret;
129d560168bSGuenter Roeck 
130d560168bSGuenter Roeck 	*temp = t;
131d560168bSGuenter Roeck 
132d560168bSGuenter Roeck 	return 0;
133d560168bSGuenter Roeck }
134d560168bSGuenter Roeck 
135d560168bSGuenter Roeck static struct thermal_zone_of_device_ops hwmon_thermal_ops = {
136d560168bSGuenter Roeck 	.get_temp = hwmon_thermal_get_temp,
137d560168bSGuenter Roeck };
138d560168bSGuenter Roeck 
139d560168bSGuenter Roeck static int hwmon_thermal_add_sensor(struct device *dev,
140d560168bSGuenter Roeck 				    struct hwmon_device *hwdev, int index)
141d560168bSGuenter Roeck {
142d560168bSGuenter Roeck 	struct hwmon_thermal_data *tdata;
143d560168bSGuenter Roeck 
144d560168bSGuenter Roeck 	tdata = devm_kzalloc(dev, sizeof(*tdata), GFP_KERNEL);
145d560168bSGuenter Roeck 	if (!tdata)
146d560168bSGuenter Roeck 		return -ENOMEM;
147d560168bSGuenter Roeck 
148d560168bSGuenter Roeck 	tdata->hwdev = hwdev;
149d560168bSGuenter Roeck 	tdata->index = index;
150d560168bSGuenter Roeck 
151d560168bSGuenter Roeck 	devm_thermal_zone_of_sensor_register(&hwdev->dev, index, tdata,
152d560168bSGuenter Roeck 					     &hwmon_thermal_ops);
153d560168bSGuenter Roeck 
154d560168bSGuenter Roeck 	return 0;
155d560168bSGuenter Roeck }
156d560168bSGuenter Roeck #else
157d560168bSGuenter Roeck static int hwmon_thermal_add_sensor(struct device *dev,
158d560168bSGuenter Roeck 				    struct hwmon_device *hwdev, int index)
159d560168bSGuenter Roeck {
160d560168bSGuenter Roeck 	return 0;
161d560168bSGuenter Roeck }
16286430c1aSGuenter Roeck #endif /* IS_REACHABLE(CONFIG_THERMAL) && ... */
163d560168bSGuenter Roeck 
164d560168bSGuenter Roeck /* sysfs attribute management */
165d560168bSGuenter Roeck 
166d560168bSGuenter Roeck static ssize_t hwmon_attr_show(struct device *dev,
167d560168bSGuenter Roeck 			       struct device_attribute *devattr, char *buf)
168d560168bSGuenter Roeck {
169d560168bSGuenter Roeck 	struct hwmon_device_attribute *hattr = to_hwmon_attr(devattr);
170d560168bSGuenter Roeck 	long val;
171d560168bSGuenter Roeck 	int ret;
172d560168bSGuenter Roeck 
173d560168bSGuenter Roeck 	ret = hattr->ops->read(dev, hattr->type, hattr->attr, hattr->index,
174d560168bSGuenter Roeck 			       &val);
175d560168bSGuenter Roeck 	if (ret < 0)
176d560168bSGuenter Roeck 		return ret;
177d560168bSGuenter Roeck 
178d560168bSGuenter Roeck 	return sprintf(buf, "%ld\n", val);
179d560168bSGuenter Roeck }
180d560168bSGuenter Roeck 
181*e159ab5cSGuenter Roeck static ssize_t hwmon_attr_show_string(struct device *dev,
182*e159ab5cSGuenter Roeck 				      struct device_attribute *devattr,
183*e159ab5cSGuenter Roeck 				      char *buf)
184*e159ab5cSGuenter Roeck {
185*e159ab5cSGuenter Roeck 	struct hwmon_device_attribute *hattr = to_hwmon_attr(devattr);
186*e159ab5cSGuenter Roeck 	char *s;
187*e159ab5cSGuenter Roeck 	int ret;
188*e159ab5cSGuenter Roeck 
189*e159ab5cSGuenter Roeck 	ret = hattr->ops->read_string(dev, hattr->type, hattr->attr,
190*e159ab5cSGuenter Roeck 				      hattr->index, &s);
191*e159ab5cSGuenter Roeck 	if (ret < 0)
192*e159ab5cSGuenter Roeck 		return ret;
193*e159ab5cSGuenter Roeck 
194*e159ab5cSGuenter Roeck 	return sprintf(buf, "%s\n", s);
195*e159ab5cSGuenter Roeck }
196*e159ab5cSGuenter Roeck 
197d560168bSGuenter Roeck static ssize_t hwmon_attr_store(struct device *dev,
198d560168bSGuenter Roeck 				struct device_attribute *devattr,
199d560168bSGuenter Roeck 				const char *buf, size_t count)
200d560168bSGuenter Roeck {
201d560168bSGuenter Roeck 	struct hwmon_device_attribute *hattr = to_hwmon_attr(devattr);
202d560168bSGuenter Roeck 	long val;
203d560168bSGuenter Roeck 	int ret;
204d560168bSGuenter Roeck 
205d560168bSGuenter Roeck 	ret = kstrtol(buf, 10, &val);
206d560168bSGuenter Roeck 	if (ret < 0)
207d560168bSGuenter Roeck 		return ret;
208d560168bSGuenter Roeck 
209d560168bSGuenter Roeck 	ret = hattr->ops->write(dev, hattr->type, hattr->attr, hattr->index,
210d560168bSGuenter Roeck 				val);
211d560168bSGuenter Roeck 	if (ret < 0)
212d560168bSGuenter Roeck 		return ret;
213d560168bSGuenter Roeck 
214d560168bSGuenter Roeck 	return count;
215d560168bSGuenter Roeck }
216d560168bSGuenter Roeck 
217d560168bSGuenter Roeck static int hwmon_attr_base(enum hwmon_sensor_types type)
218d560168bSGuenter Roeck {
219d560168bSGuenter Roeck 	if (type == hwmon_in)
220d560168bSGuenter Roeck 		return 0;
221d560168bSGuenter Roeck 	return 1;
222d560168bSGuenter Roeck }
223d560168bSGuenter Roeck 
224*e159ab5cSGuenter Roeck static bool is_string_attr(enum hwmon_sensor_types type, u32 attr)
225*e159ab5cSGuenter Roeck {
226*e159ab5cSGuenter Roeck 	return (type == hwmon_temp && attr == hwmon_temp_label) ||
227*e159ab5cSGuenter Roeck 	       (type == hwmon_in && attr == hwmon_in_label) ||
228*e159ab5cSGuenter Roeck 	       (type == hwmon_curr && attr == hwmon_curr_label) ||
229*e159ab5cSGuenter Roeck 	       (type == hwmon_power && attr == hwmon_power_label) ||
230*e159ab5cSGuenter Roeck 	       (type == hwmon_energy && attr == hwmon_energy_label) ||
231*e159ab5cSGuenter Roeck 	       (type == hwmon_humidity && attr == hwmon_humidity_label) ||
232*e159ab5cSGuenter Roeck 	       (type == hwmon_fan && attr == hwmon_fan_label);
233*e159ab5cSGuenter Roeck }
234*e159ab5cSGuenter Roeck 
235d560168bSGuenter Roeck static struct attribute *hwmon_genattr(struct device *dev,
236d560168bSGuenter Roeck 				       const void *drvdata,
237d560168bSGuenter Roeck 				       enum hwmon_sensor_types type,
238d560168bSGuenter Roeck 				       u32 attr,
239d560168bSGuenter Roeck 				       int index,
240d560168bSGuenter Roeck 				       const char *template,
241d560168bSGuenter Roeck 				       const struct hwmon_ops *ops)
242d560168bSGuenter Roeck {
243d560168bSGuenter Roeck 	struct hwmon_device_attribute *hattr;
244d560168bSGuenter Roeck 	struct device_attribute *dattr;
245d560168bSGuenter Roeck 	struct attribute *a;
246d560168bSGuenter Roeck 	umode_t mode;
247d560168bSGuenter Roeck 	char *name;
248*e159ab5cSGuenter Roeck 	bool is_string = is_string_attr(type, attr);
249d560168bSGuenter Roeck 
250d560168bSGuenter Roeck 	/* The attribute is invisible if there is no template string */
251d560168bSGuenter Roeck 	if (!template)
252d560168bSGuenter Roeck 		return ERR_PTR(-ENOENT);
253d560168bSGuenter Roeck 
254d560168bSGuenter Roeck 	mode = ops->is_visible(drvdata, type, attr, index);
255d560168bSGuenter Roeck 	if (!mode)
256d560168bSGuenter Roeck 		return ERR_PTR(-ENOENT);
257d560168bSGuenter Roeck 
258*e159ab5cSGuenter Roeck 	if ((mode & S_IRUGO) && ((is_string && !ops->read_string) ||
259*e159ab5cSGuenter Roeck 				 (!is_string && !ops->read)))
260d560168bSGuenter Roeck 		return ERR_PTR(-EINVAL);
261d560168bSGuenter Roeck 	if ((mode & S_IWUGO) && !ops->write)
262d560168bSGuenter Roeck 		return ERR_PTR(-EINVAL);
263d560168bSGuenter Roeck 
264d560168bSGuenter Roeck 	if (type == hwmon_chip) {
265d560168bSGuenter Roeck 		name = (char *)template;
266d560168bSGuenter Roeck 	} else {
267d560168bSGuenter Roeck 		name = devm_kzalloc(dev, strlen(template) + 16, GFP_KERNEL);
268d560168bSGuenter Roeck 		if (!name)
269d560168bSGuenter Roeck 			return ERR_PTR(-ENOMEM);
270d560168bSGuenter Roeck 		scnprintf(name, strlen(template) + 16, template,
271d560168bSGuenter Roeck 			  index + hwmon_attr_base(type));
272d560168bSGuenter Roeck 	}
273d560168bSGuenter Roeck 
274d560168bSGuenter Roeck 	hattr = devm_kzalloc(dev, sizeof(*hattr), GFP_KERNEL);
275d560168bSGuenter Roeck 	if (!hattr)
276d560168bSGuenter Roeck 		return ERR_PTR(-ENOMEM);
277d560168bSGuenter Roeck 
278d560168bSGuenter Roeck 	hattr->type = type;
279d560168bSGuenter Roeck 	hattr->attr = attr;
280d560168bSGuenter Roeck 	hattr->index = index;
281d560168bSGuenter Roeck 	hattr->ops = ops;
282d560168bSGuenter Roeck 
283d560168bSGuenter Roeck 	dattr = &hattr->dev_attr;
284*e159ab5cSGuenter Roeck 	dattr->show = is_string ? hwmon_attr_show_string : hwmon_attr_show;
285d560168bSGuenter Roeck 	dattr->store = hwmon_attr_store;
286d560168bSGuenter Roeck 
287d560168bSGuenter Roeck 	a = &dattr->attr;
288d560168bSGuenter Roeck 	sysfs_attr_init(a);
289d560168bSGuenter Roeck 	a->name = name;
290d560168bSGuenter Roeck 	a->mode = mode;
291d560168bSGuenter Roeck 
292d560168bSGuenter Roeck 	return a;
293d560168bSGuenter Roeck }
294d560168bSGuenter Roeck 
295d560168bSGuenter Roeck static const char * const hwmon_chip_attr_templates[] = {
296d560168bSGuenter Roeck 	[hwmon_chip_temp_reset_history] = "temp_reset_history",
29700d616cfSGuenter Roeck 	[hwmon_chip_in_reset_history] = "in_reset_history",
2989b26947cSGuenter Roeck 	[hwmon_chip_curr_reset_history] = "curr_reset_history",
299b308f5c7SGuenter Roeck 	[hwmon_chip_power_reset_history] = "power_reset_history",
300d560168bSGuenter Roeck 	[hwmon_chip_update_interval] = "update_interval",
301d560168bSGuenter Roeck 	[hwmon_chip_alarms] = "alarms",
302d560168bSGuenter Roeck };
303d560168bSGuenter Roeck 
304d560168bSGuenter Roeck static const char * const hwmon_temp_attr_templates[] = {
305d560168bSGuenter Roeck 	[hwmon_temp_input] = "temp%d_input",
306d560168bSGuenter Roeck 	[hwmon_temp_type] = "temp%d_type",
307d560168bSGuenter Roeck 	[hwmon_temp_lcrit] = "temp%d_lcrit",
308d560168bSGuenter Roeck 	[hwmon_temp_lcrit_hyst] = "temp%d_lcrit_hyst",
309d560168bSGuenter Roeck 	[hwmon_temp_min] = "temp%d_min",
310d560168bSGuenter Roeck 	[hwmon_temp_min_hyst] = "temp%d_min_hyst",
311d560168bSGuenter Roeck 	[hwmon_temp_max] = "temp%d_max",
312d560168bSGuenter Roeck 	[hwmon_temp_max_hyst] = "temp%d_max_hyst",
313d560168bSGuenter Roeck 	[hwmon_temp_crit] = "temp%d_crit",
314d560168bSGuenter Roeck 	[hwmon_temp_crit_hyst] = "temp%d_crit_hyst",
315d560168bSGuenter Roeck 	[hwmon_temp_emergency] = "temp%d_emergency",
316d560168bSGuenter Roeck 	[hwmon_temp_emergency_hyst] = "temp%d_emergency_hyst",
317d560168bSGuenter Roeck 	[hwmon_temp_alarm] = "temp%d_alarm",
318d560168bSGuenter Roeck 	[hwmon_temp_lcrit_alarm] = "temp%d_lcrit_alarm",
319d560168bSGuenter Roeck 	[hwmon_temp_min_alarm] = "temp%d_min_alarm",
320d560168bSGuenter Roeck 	[hwmon_temp_max_alarm] = "temp%d_max_alarm",
321d560168bSGuenter Roeck 	[hwmon_temp_crit_alarm] = "temp%d_crit_alarm",
322d560168bSGuenter Roeck 	[hwmon_temp_emergency_alarm] = "temp%d_emergency_alarm",
323d560168bSGuenter Roeck 	[hwmon_temp_fault] = "temp%d_fault",
324d560168bSGuenter Roeck 	[hwmon_temp_offset] = "temp%d_offset",
325d560168bSGuenter Roeck 	[hwmon_temp_label] = "temp%d_label",
326d560168bSGuenter Roeck 	[hwmon_temp_lowest] = "temp%d_lowest",
327d560168bSGuenter Roeck 	[hwmon_temp_highest] = "temp%d_highest",
328d560168bSGuenter Roeck 	[hwmon_temp_reset_history] = "temp%d_reset_history",
329d560168bSGuenter Roeck };
330d560168bSGuenter Roeck 
33100d616cfSGuenter Roeck static const char * const hwmon_in_attr_templates[] = {
33200d616cfSGuenter Roeck 	[hwmon_in_input] = "in%d_input",
33300d616cfSGuenter Roeck 	[hwmon_in_min] = "in%d_min",
33400d616cfSGuenter Roeck 	[hwmon_in_max] = "in%d_max",
33500d616cfSGuenter Roeck 	[hwmon_in_lcrit] = "in%d_lcrit",
33600d616cfSGuenter Roeck 	[hwmon_in_crit] = "in%d_crit",
33700d616cfSGuenter Roeck 	[hwmon_in_average] = "in%d_average",
33800d616cfSGuenter Roeck 	[hwmon_in_lowest] = "in%d_lowest",
33900d616cfSGuenter Roeck 	[hwmon_in_highest] = "in%d_highest",
34000d616cfSGuenter Roeck 	[hwmon_in_reset_history] = "in%d_reset_history",
34100d616cfSGuenter Roeck 	[hwmon_in_label] = "in%d_label",
34200d616cfSGuenter Roeck 	[hwmon_in_alarm] = "in%d_alarm",
34300d616cfSGuenter Roeck 	[hwmon_in_min_alarm] = "in%d_min_alarm",
34400d616cfSGuenter Roeck 	[hwmon_in_max_alarm] = "in%d_max_alarm",
34500d616cfSGuenter Roeck 	[hwmon_in_lcrit_alarm] = "in%d_lcrit_alarm",
34600d616cfSGuenter Roeck 	[hwmon_in_crit_alarm] = "in%d_crit_alarm",
34700d616cfSGuenter Roeck };
34800d616cfSGuenter Roeck 
3499b26947cSGuenter Roeck static const char * const hwmon_curr_attr_templates[] = {
3509b26947cSGuenter Roeck 	[hwmon_curr_input] = "curr%d_input",
3519b26947cSGuenter Roeck 	[hwmon_curr_min] = "curr%d_min",
3529b26947cSGuenter Roeck 	[hwmon_curr_max] = "curr%d_max",
3539b26947cSGuenter Roeck 	[hwmon_curr_lcrit] = "curr%d_lcrit",
3549b26947cSGuenter Roeck 	[hwmon_curr_crit] = "curr%d_crit",
3559b26947cSGuenter Roeck 	[hwmon_curr_average] = "curr%d_average",
3569b26947cSGuenter Roeck 	[hwmon_curr_lowest] = "curr%d_lowest",
3579b26947cSGuenter Roeck 	[hwmon_curr_highest] = "curr%d_highest",
3589b26947cSGuenter Roeck 	[hwmon_curr_reset_history] = "curr%d_reset_history",
3599b26947cSGuenter Roeck 	[hwmon_curr_label] = "curr%d_label",
3609b26947cSGuenter Roeck 	[hwmon_curr_alarm] = "curr%d_alarm",
3619b26947cSGuenter Roeck 	[hwmon_curr_min_alarm] = "curr%d_min_alarm",
3629b26947cSGuenter Roeck 	[hwmon_curr_max_alarm] = "curr%d_max_alarm",
3639b26947cSGuenter Roeck 	[hwmon_curr_lcrit_alarm] = "curr%d_lcrit_alarm",
3649b26947cSGuenter Roeck 	[hwmon_curr_crit_alarm] = "curr%d_crit_alarm",
3659b26947cSGuenter Roeck };
3669b26947cSGuenter Roeck 
367b308f5c7SGuenter Roeck static const char * const hwmon_power_attr_templates[] = {
368b308f5c7SGuenter Roeck 	[hwmon_power_average] = "power%d_average",
369b308f5c7SGuenter Roeck 	[hwmon_power_average_interval] = "power%d_average_interval",
370b308f5c7SGuenter Roeck 	[hwmon_power_average_interval_max] = "power%d_interval_max",
371b308f5c7SGuenter Roeck 	[hwmon_power_average_interval_min] = "power%d_interval_min",
372b308f5c7SGuenter Roeck 	[hwmon_power_average_highest] = "power%d_average_highest",
373b308f5c7SGuenter Roeck 	[hwmon_power_average_lowest] = "power%d_average_lowest",
374b308f5c7SGuenter Roeck 	[hwmon_power_average_max] = "power%d_average_max",
375b308f5c7SGuenter Roeck 	[hwmon_power_average_min] = "power%d_average_min",
376b308f5c7SGuenter Roeck 	[hwmon_power_input] = "power%d_input",
377b308f5c7SGuenter Roeck 	[hwmon_power_input_highest] = "power%d_input_highest",
378b308f5c7SGuenter Roeck 	[hwmon_power_input_lowest] = "power%d_input_lowest",
379b308f5c7SGuenter Roeck 	[hwmon_power_reset_history] = "power%d_reset_history",
380b308f5c7SGuenter Roeck 	[hwmon_power_accuracy] = "power%d_accuracy",
381b308f5c7SGuenter Roeck 	[hwmon_power_cap] = "power%d_cap",
382b308f5c7SGuenter Roeck 	[hwmon_power_cap_hyst] = "power%d_cap_hyst",
383b308f5c7SGuenter Roeck 	[hwmon_power_cap_max] = "power%d_cap_max",
384b308f5c7SGuenter Roeck 	[hwmon_power_cap_min] = "power%d_cap_min",
385b308f5c7SGuenter Roeck 	[hwmon_power_max] = "power%d_max",
386b308f5c7SGuenter Roeck 	[hwmon_power_crit] = "power%d_crit",
387b308f5c7SGuenter Roeck 	[hwmon_power_label] = "power%d_label",
388b308f5c7SGuenter Roeck 	[hwmon_power_alarm] = "power%d_alarm",
389b308f5c7SGuenter Roeck 	[hwmon_power_cap_alarm] = "power%d_cap_alarm",
390b308f5c7SGuenter Roeck 	[hwmon_power_max_alarm] = "power%d_max_alarm",
391b308f5c7SGuenter Roeck 	[hwmon_power_crit_alarm] = "power%d_crit_alarm",
392b308f5c7SGuenter Roeck };
393b308f5c7SGuenter Roeck 
3946bfcca44SGuenter Roeck static const char * const hwmon_energy_attr_templates[] = {
3956bfcca44SGuenter Roeck 	[hwmon_energy_input] = "energy%d_input",
3966bfcca44SGuenter Roeck 	[hwmon_energy_label] = "energy%d_label",
3976bfcca44SGuenter Roeck };
3986bfcca44SGuenter Roeck 
3996bfcca44SGuenter Roeck static const char * const hwmon_humidity_attr_templates[] = {
4006bfcca44SGuenter Roeck 	[hwmon_humidity_input] = "humidity%d_input",
4016bfcca44SGuenter Roeck 	[hwmon_humidity_label] = "humidity%d_label",
4026bfcca44SGuenter Roeck 	[hwmon_humidity_min] = "humidity%d_min",
4036bfcca44SGuenter Roeck 	[hwmon_humidity_min_hyst] = "humidity%d_min_hyst",
4046bfcca44SGuenter Roeck 	[hwmon_humidity_max] = "humidity%d_max",
4056bfcca44SGuenter Roeck 	[hwmon_humidity_max_hyst] = "humidity%d_max_hyst",
4066bfcca44SGuenter Roeck 	[hwmon_humidity_alarm] = "humidity%d_alarm",
4076bfcca44SGuenter Roeck 	[hwmon_humidity_fault] = "humidity%d_fault",
4086bfcca44SGuenter Roeck };
4096bfcca44SGuenter Roeck 
4108faee73fSGuenter Roeck static const char * const hwmon_fan_attr_templates[] = {
4118faee73fSGuenter Roeck 	[hwmon_fan_input] = "fan%d_input",
4128faee73fSGuenter Roeck 	[hwmon_fan_label] = "fan%d_label",
4138faee73fSGuenter Roeck 	[hwmon_fan_min] = "fan%d_min",
4148faee73fSGuenter Roeck 	[hwmon_fan_max] = "fan%d_max",
4158faee73fSGuenter Roeck 	[hwmon_fan_div] = "fan%d_div",
4168faee73fSGuenter Roeck 	[hwmon_fan_pulses] = "fan%d_pulses",
4178faee73fSGuenter Roeck 	[hwmon_fan_target] = "fan%d_target",
4188faee73fSGuenter Roeck 	[hwmon_fan_alarm] = "fan%d_alarm",
4198faee73fSGuenter Roeck 	[hwmon_fan_min_alarm] = "fan%d_min_alarm",
4208faee73fSGuenter Roeck 	[hwmon_fan_max_alarm] = "fan%d_max_alarm",
4218faee73fSGuenter Roeck 	[hwmon_fan_fault] = "fan%d_fault",
4228faee73fSGuenter Roeck };
4238faee73fSGuenter Roeck 
424f9f7bb3aSGuenter Roeck static const char * const hwmon_pwm_attr_templates[] = {
425f9f7bb3aSGuenter Roeck 	[hwmon_pwm_input] = "pwm%d",
426f9f7bb3aSGuenter Roeck 	[hwmon_pwm_enable] = "pwm%d_enable",
427f9f7bb3aSGuenter Roeck 	[hwmon_pwm_mode] = "pwm%d_mode",
428f9f7bb3aSGuenter Roeck 	[hwmon_pwm_freq] = "pwm%d_freq",
429f9f7bb3aSGuenter Roeck };
430f9f7bb3aSGuenter Roeck 
431d560168bSGuenter Roeck static const char * const *__templates[] = {
432d560168bSGuenter Roeck 	[hwmon_chip] = hwmon_chip_attr_templates,
433d560168bSGuenter Roeck 	[hwmon_temp] = hwmon_temp_attr_templates,
43400d616cfSGuenter Roeck 	[hwmon_in] = hwmon_in_attr_templates,
4359b26947cSGuenter Roeck 	[hwmon_curr] = hwmon_curr_attr_templates,
436b308f5c7SGuenter Roeck 	[hwmon_power] = hwmon_power_attr_templates,
4376bfcca44SGuenter Roeck 	[hwmon_energy] = hwmon_energy_attr_templates,
4386bfcca44SGuenter Roeck 	[hwmon_humidity] = hwmon_humidity_attr_templates,
4398faee73fSGuenter Roeck 	[hwmon_fan] = hwmon_fan_attr_templates,
440f9f7bb3aSGuenter Roeck 	[hwmon_pwm] = hwmon_pwm_attr_templates,
441d560168bSGuenter Roeck };
442d560168bSGuenter Roeck 
443d560168bSGuenter Roeck static const int __templates_size[] = {
444d560168bSGuenter Roeck 	[hwmon_chip] = ARRAY_SIZE(hwmon_chip_attr_templates),
445d560168bSGuenter Roeck 	[hwmon_temp] = ARRAY_SIZE(hwmon_temp_attr_templates),
44600d616cfSGuenter Roeck 	[hwmon_in] = ARRAY_SIZE(hwmon_in_attr_templates),
4479b26947cSGuenter Roeck 	[hwmon_curr] = ARRAY_SIZE(hwmon_curr_attr_templates),
448b308f5c7SGuenter Roeck 	[hwmon_power] = ARRAY_SIZE(hwmon_power_attr_templates),
4496bfcca44SGuenter Roeck 	[hwmon_energy] = ARRAY_SIZE(hwmon_energy_attr_templates),
4506bfcca44SGuenter Roeck 	[hwmon_humidity] = ARRAY_SIZE(hwmon_humidity_attr_templates),
4518faee73fSGuenter Roeck 	[hwmon_fan] = ARRAY_SIZE(hwmon_fan_attr_templates),
452f9f7bb3aSGuenter Roeck 	[hwmon_pwm] = ARRAY_SIZE(hwmon_pwm_attr_templates),
453d560168bSGuenter Roeck };
454d560168bSGuenter Roeck 
455d560168bSGuenter Roeck static int hwmon_num_channel_attrs(const struct hwmon_channel_info *info)
456d560168bSGuenter Roeck {
457d560168bSGuenter Roeck 	int i, n;
458d560168bSGuenter Roeck 
459d560168bSGuenter Roeck 	for (i = n = 0; info->config[i]; i++)
460d560168bSGuenter Roeck 		n += hweight32(info->config[i]);
461d560168bSGuenter Roeck 
462d560168bSGuenter Roeck 	return n;
463d560168bSGuenter Roeck }
464d560168bSGuenter Roeck 
465d560168bSGuenter Roeck static int hwmon_genattrs(struct device *dev,
466d560168bSGuenter Roeck 			  const void *drvdata,
467d560168bSGuenter Roeck 			  struct attribute **attrs,
468d560168bSGuenter Roeck 			  const struct hwmon_ops *ops,
469d560168bSGuenter Roeck 			  const struct hwmon_channel_info *info)
470d560168bSGuenter Roeck {
471d560168bSGuenter Roeck 	const char * const *templates;
472d560168bSGuenter Roeck 	int template_size;
473d560168bSGuenter Roeck 	int i, aindex = 0;
474d560168bSGuenter Roeck 
475d560168bSGuenter Roeck 	if (info->type >= ARRAY_SIZE(__templates))
476d560168bSGuenter Roeck 		return -EINVAL;
477d560168bSGuenter Roeck 
478d560168bSGuenter Roeck 	templates = __templates[info->type];
479d560168bSGuenter Roeck 	template_size = __templates_size[info->type];
480d560168bSGuenter Roeck 
481d560168bSGuenter Roeck 	for (i = 0; info->config[i]; i++) {
482d560168bSGuenter Roeck 		u32 attr_mask = info->config[i];
483d560168bSGuenter Roeck 		u32 attr;
484d560168bSGuenter Roeck 
485d560168bSGuenter Roeck 		while (attr_mask) {
486d560168bSGuenter Roeck 			struct attribute *a;
487d560168bSGuenter Roeck 
488d560168bSGuenter Roeck 			attr = __ffs(attr_mask);
489d560168bSGuenter Roeck 			attr_mask &= ~BIT(attr);
490d560168bSGuenter Roeck 			if (attr >= template_size)
491d560168bSGuenter Roeck 				return -EINVAL;
492d560168bSGuenter Roeck 			a = hwmon_genattr(dev, drvdata, info->type, attr, i,
493d560168bSGuenter Roeck 					  templates[attr], ops);
494d560168bSGuenter Roeck 			if (IS_ERR(a)) {
495d560168bSGuenter Roeck 				if (PTR_ERR(a) != -ENOENT)
496d560168bSGuenter Roeck 					return PTR_ERR(a);
497d560168bSGuenter Roeck 				continue;
498d560168bSGuenter Roeck 			}
499d560168bSGuenter Roeck 			attrs[aindex++] = a;
500d560168bSGuenter Roeck 		}
501d560168bSGuenter Roeck 	}
502d560168bSGuenter Roeck 	return aindex;
503d560168bSGuenter Roeck }
504d560168bSGuenter Roeck 
505d560168bSGuenter Roeck static struct attribute **
506d560168bSGuenter Roeck __hwmon_create_attrs(struct device *dev, const void *drvdata,
507d560168bSGuenter Roeck 		     const struct hwmon_chip_info *chip)
508d560168bSGuenter Roeck {
509d560168bSGuenter Roeck 	int ret, i, aindex = 0, nattrs = 0;
510d560168bSGuenter Roeck 	struct attribute **attrs;
511d560168bSGuenter Roeck 
512d560168bSGuenter Roeck 	for (i = 0; chip->info[i]; i++)
513d560168bSGuenter Roeck 		nattrs += hwmon_num_channel_attrs(chip->info[i]);
514d560168bSGuenter Roeck 
515d560168bSGuenter Roeck 	if (nattrs == 0)
516d560168bSGuenter Roeck 		return ERR_PTR(-EINVAL);
517d560168bSGuenter Roeck 
518d560168bSGuenter Roeck 	attrs = devm_kcalloc(dev, nattrs + 1, sizeof(*attrs), GFP_KERNEL);
519d560168bSGuenter Roeck 	if (!attrs)
520d560168bSGuenter Roeck 		return ERR_PTR(-ENOMEM);
521d560168bSGuenter Roeck 
522d560168bSGuenter Roeck 	for (i = 0; chip->info[i]; i++) {
523d560168bSGuenter Roeck 		ret = hwmon_genattrs(dev, drvdata, &attrs[aindex], chip->ops,
524d560168bSGuenter Roeck 				     chip->info[i]);
525d560168bSGuenter Roeck 		if (ret < 0)
526d560168bSGuenter Roeck 			return ERR_PTR(ret);
527d560168bSGuenter Roeck 		aindex += ret;
528d560168bSGuenter Roeck 	}
529d560168bSGuenter Roeck 
530d560168bSGuenter Roeck 	return attrs;
531d560168bSGuenter Roeck }
532d560168bSGuenter Roeck 
533d560168bSGuenter Roeck static struct device *
534d560168bSGuenter Roeck __hwmon_device_register(struct device *dev, const char *name, void *drvdata,
535d560168bSGuenter Roeck 			const struct hwmon_chip_info *chip,
536d560168bSGuenter Roeck 			const struct attribute_group **groups)
537d560168bSGuenter Roeck {
538d560168bSGuenter Roeck 	struct hwmon_device *hwdev;
539d560168bSGuenter Roeck 	struct device *hdev;
540d560168bSGuenter Roeck 	int i, j, err, id;
541d560168bSGuenter Roeck 
542d560168bSGuenter Roeck 	/* Do not accept invalid characters in hwmon name attribute */
543d560168bSGuenter Roeck 	if (name && (!strlen(name) || strpbrk(name, "-* \t\n")))
544d560168bSGuenter Roeck 		return ERR_PTR(-EINVAL);
545d560168bSGuenter Roeck 
546d560168bSGuenter Roeck 	id = ida_simple_get(&hwmon_ida, 0, 0, GFP_KERNEL);
547d560168bSGuenter Roeck 	if (id < 0)
548d560168bSGuenter Roeck 		return ERR_PTR(id);
549d560168bSGuenter Roeck 
550d560168bSGuenter Roeck 	hwdev = kzalloc(sizeof(*hwdev), GFP_KERNEL);
551d560168bSGuenter Roeck 	if (hwdev == NULL) {
552d560168bSGuenter Roeck 		err = -ENOMEM;
553d560168bSGuenter Roeck 		goto ida_remove;
554d560168bSGuenter Roeck 	}
555d560168bSGuenter Roeck 
556d560168bSGuenter Roeck 	hdev = &hwdev->dev;
557d560168bSGuenter Roeck 
558d560168bSGuenter Roeck 	if (chip && chip->ops->is_visible) {
559d560168bSGuenter Roeck 		struct attribute **attrs;
560d560168bSGuenter Roeck 		int ngroups = 2;
561d560168bSGuenter Roeck 
562d560168bSGuenter Roeck 		if (groups)
563d560168bSGuenter Roeck 			for (i = 0; groups[i]; i++)
564d560168bSGuenter Roeck 				ngroups++;
565d560168bSGuenter Roeck 
566d560168bSGuenter Roeck 		hwdev->groups = devm_kcalloc(dev, ngroups, sizeof(*groups),
567d560168bSGuenter Roeck 					     GFP_KERNEL);
56838d8ed65SColin Ian King 		if (!hwdev->groups) {
56938d8ed65SColin Ian King 			err = -ENOMEM;
57038d8ed65SColin Ian King 			goto free_hwmon;
57138d8ed65SColin Ian King 		}
572d560168bSGuenter Roeck 
573d560168bSGuenter Roeck 		attrs = __hwmon_create_attrs(dev, drvdata, chip);
574d560168bSGuenter Roeck 		if (IS_ERR(attrs)) {
575d560168bSGuenter Roeck 			err = PTR_ERR(attrs);
576d560168bSGuenter Roeck 			goto free_hwmon;
577d560168bSGuenter Roeck 		}
578d560168bSGuenter Roeck 
579d560168bSGuenter Roeck 		hwdev->group.attrs = attrs;
580d560168bSGuenter Roeck 		ngroups = 0;
581d560168bSGuenter Roeck 		hwdev->groups[ngroups++] = &hwdev->group;
582d560168bSGuenter Roeck 
583d560168bSGuenter Roeck 		if (groups) {
584d560168bSGuenter Roeck 			for (i = 0; groups[i]; i++)
585d560168bSGuenter Roeck 				hwdev->groups[ngroups++] = groups[i];
586d560168bSGuenter Roeck 		}
587d560168bSGuenter Roeck 
588d560168bSGuenter Roeck 		hdev->groups = hwdev->groups;
589d560168bSGuenter Roeck 	} else {
590d560168bSGuenter Roeck 		hdev->groups = groups;
591d560168bSGuenter Roeck 	}
592d560168bSGuenter Roeck 
593d560168bSGuenter Roeck 	hwdev->name = name;
594d560168bSGuenter Roeck 	hdev->class = &hwmon_class;
595d560168bSGuenter Roeck 	hdev->parent = dev;
596d560168bSGuenter Roeck 	hdev->of_node = dev ? dev->of_node : NULL;
597d560168bSGuenter Roeck 	hwdev->chip = chip;
598d560168bSGuenter Roeck 	dev_set_drvdata(hdev, drvdata);
599d560168bSGuenter Roeck 	dev_set_name(hdev, HWMON_ID_FORMAT, id);
600d560168bSGuenter Roeck 	err = device_register(hdev);
601d560168bSGuenter Roeck 	if (err)
602d560168bSGuenter Roeck 		goto free_hwmon;
603d560168bSGuenter Roeck 
604d560168bSGuenter Roeck 	if (chip && chip->ops->is_visible && chip->ops->read &&
605d560168bSGuenter Roeck 	    chip->info[0]->type == hwmon_chip &&
606d560168bSGuenter Roeck 	    (chip->info[0]->config[0] & HWMON_C_REGISTER_TZ)) {
607d560168bSGuenter Roeck 		const struct hwmon_channel_info **info = chip->info;
608d560168bSGuenter Roeck 
609d560168bSGuenter Roeck 		for (i = 1; info[i]; i++) {
610d560168bSGuenter Roeck 			if (info[i]->type != hwmon_temp)
611d560168bSGuenter Roeck 				continue;
612d560168bSGuenter Roeck 
613d560168bSGuenter Roeck 			for (j = 0; info[i]->config[j]; j++) {
614d560168bSGuenter Roeck 				if (!chip->ops->is_visible(drvdata, hwmon_temp,
615d560168bSGuenter Roeck 							   hwmon_temp_input, j))
616d560168bSGuenter Roeck 					continue;
617d560168bSGuenter Roeck 				if (info[i]->config[j] & HWMON_T_INPUT)
618d560168bSGuenter Roeck 					hwmon_thermal_add_sensor(dev, hwdev, j);
619d560168bSGuenter Roeck 			}
620d560168bSGuenter Roeck 		}
621d560168bSGuenter Roeck 	}
622d560168bSGuenter Roeck 
623d560168bSGuenter Roeck 	return hdev;
624d560168bSGuenter Roeck 
625d560168bSGuenter Roeck free_hwmon:
626d560168bSGuenter Roeck 	kfree(hwdev);
627d560168bSGuenter Roeck ida_remove:
628d560168bSGuenter Roeck 	ida_simple_remove(&hwmon_ida, id);
629d560168bSGuenter Roeck 	return ERR_PTR(err);
630d560168bSGuenter Roeck }
631d560168bSGuenter Roeck 
6321236441fSMark M. Hoffman /**
633bab2243cSGuenter Roeck  * hwmon_device_register_with_groups - register w/ hwmon
634bab2243cSGuenter Roeck  * @dev: the parent device
635bab2243cSGuenter Roeck  * @name: hwmon name attribute
636bab2243cSGuenter Roeck  * @drvdata: driver data to attach to created device
637bab2243cSGuenter Roeck  * @groups: List of attribute groups to create
638bab2243cSGuenter Roeck  *
639bab2243cSGuenter Roeck  * hwmon_device_unregister() must be called when the device is no
640bab2243cSGuenter Roeck  * longer needed.
641bab2243cSGuenter Roeck  *
642bab2243cSGuenter Roeck  * Returns the pointer to the new device.
643bab2243cSGuenter Roeck  */
644bab2243cSGuenter Roeck struct device *
645bab2243cSGuenter Roeck hwmon_device_register_with_groups(struct device *dev, const char *name,
646bab2243cSGuenter Roeck 				  void *drvdata,
647bab2243cSGuenter Roeck 				  const struct attribute_group **groups)
648bab2243cSGuenter Roeck {
649d560168bSGuenter Roeck 	return __hwmon_device_register(dev, name, drvdata, NULL, groups);
650bab2243cSGuenter Roeck }
651bab2243cSGuenter Roeck EXPORT_SYMBOL_GPL(hwmon_device_register_with_groups);
652bab2243cSGuenter Roeck 
653bab2243cSGuenter Roeck /**
654d560168bSGuenter Roeck  * hwmon_device_register_with_info - register w/ hwmon
655d560168bSGuenter Roeck  * @dev: the parent device
656d560168bSGuenter Roeck  * @name: hwmon name attribute
657d560168bSGuenter Roeck  * @drvdata: driver data to attach to created device
658d560168bSGuenter Roeck  * @info: Pointer to hwmon chip information
659d560168bSGuenter Roeck  * @groups - pointer to list of driver specific attribute groups
660d560168bSGuenter Roeck  *
661d560168bSGuenter Roeck  * hwmon_device_unregister() must be called when the device is no
662d560168bSGuenter Roeck  * longer needed.
663d560168bSGuenter Roeck  *
664d560168bSGuenter Roeck  * Returns the pointer to the new device.
665d560168bSGuenter Roeck  */
666d560168bSGuenter Roeck struct device *
667d560168bSGuenter Roeck hwmon_device_register_with_info(struct device *dev, const char *name,
668d560168bSGuenter Roeck 				void *drvdata,
669d560168bSGuenter Roeck 				const struct hwmon_chip_info *chip,
670d560168bSGuenter Roeck 				const struct attribute_group **groups)
671d560168bSGuenter Roeck {
672d560168bSGuenter Roeck 	if (chip && (!chip->ops || !chip->info))
673d560168bSGuenter Roeck 		return ERR_PTR(-EINVAL);
674d560168bSGuenter Roeck 
675d560168bSGuenter Roeck 	return __hwmon_device_register(dev, name, drvdata, chip, groups);
676d560168bSGuenter Roeck }
677d560168bSGuenter Roeck EXPORT_SYMBOL_GPL(hwmon_device_register_with_info);
678d560168bSGuenter Roeck 
679d560168bSGuenter Roeck /**
6801beeffe4STony Jones  * hwmon_device_register - register w/ hwmon
6811236441fSMark M. Hoffman  * @dev: the device to register
6821236441fSMark M. Hoffman  *
6831beeffe4STony Jones  * hwmon_device_unregister() must be called when the device is no
6841236441fSMark M. Hoffman  * longer needed.
6851236441fSMark M. Hoffman  *
6861beeffe4STony Jones  * Returns the pointer to the new device.
6871236441fSMark M. Hoffman  */
6881beeffe4STony Jones struct device *hwmon_device_register(struct device *dev)
6891236441fSMark M. Hoffman {
690bab2243cSGuenter Roeck 	return hwmon_device_register_with_groups(dev, NULL, NULL, NULL);
6911236441fSMark M. Hoffman }
692839a9eefSFrans Meulenbroeks EXPORT_SYMBOL_GPL(hwmon_device_register);
6931236441fSMark M. Hoffman 
6941236441fSMark M. Hoffman /**
6951236441fSMark M. Hoffman  * hwmon_device_unregister - removes the previously registered class device
6961236441fSMark M. Hoffman  *
6971beeffe4STony Jones  * @dev: the class device to destroy
6981236441fSMark M. Hoffman  */
6991beeffe4STony Jones void hwmon_device_unregister(struct device *dev)
7001236441fSMark M. Hoffman {
7011236441fSMark M. Hoffman 	int id;
7021236441fSMark M. Hoffman 
703739cf3a2SKay Sievers 	if (likely(sscanf(dev_name(dev), HWMON_ID_FORMAT, &id) == 1)) {
7041beeffe4STony Jones 		device_unregister(dev);
7054ca5f468SJonathan Cameron 		ida_simple_remove(&hwmon_ida, id);
7061236441fSMark M. Hoffman 	} else
7071beeffe4STony Jones 		dev_dbg(dev->parent,
7081236441fSMark M. Hoffman 			"hwmon_device_unregister() failed: bad class ID!\n");
7091236441fSMark M. Hoffman }
710839a9eefSFrans Meulenbroeks EXPORT_SYMBOL_GPL(hwmon_device_unregister);
7111236441fSMark M. Hoffman 
71274188cbaSGuenter Roeck static void devm_hwmon_release(struct device *dev, void *res)
71374188cbaSGuenter Roeck {
71474188cbaSGuenter Roeck 	struct device *hwdev = *(struct device **)res;
71574188cbaSGuenter Roeck 
71674188cbaSGuenter Roeck 	hwmon_device_unregister(hwdev);
71774188cbaSGuenter Roeck }
71874188cbaSGuenter Roeck 
71974188cbaSGuenter Roeck /**
72074188cbaSGuenter Roeck  * devm_hwmon_device_register_with_groups - register w/ hwmon
72174188cbaSGuenter Roeck  * @dev: the parent device
72274188cbaSGuenter Roeck  * @name: hwmon name attribute
72374188cbaSGuenter Roeck  * @drvdata: driver data to attach to created device
72474188cbaSGuenter Roeck  * @groups: List of attribute groups to create
72574188cbaSGuenter Roeck  *
72674188cbaSGuenter Roeck  * Returns the pointer to the new device. The new device is automatically
72774188cbaSGuenter Roeck  * unregistered with the parent device.
72874188cbaSGuenter Roeck  */
72974188cbaSGuenter Roeck struct device *
73074188cbaSGuenter Roeck devm_hwmon_device_register_with_groups(struct device *dev, const char *name,
73174188cbaSGuenter Roeck 				       void *drvdata,
73274188cbaSGuenter Roeck 				       const struct attribute_group **groups)
73374188cbaSGuenter Roeck {
73474188cbaSGuenter Roeck 	struct device **ptr, *hwdev;
73574188cbaSGuenter Roeck 
73674188cbaSGuenter Roeck 	if (!dev)
73774188cbaSGuenter Roeck 		return ERR_PTR(-EINVAL);
73874188cbaSGuenter Roeck 
73974188cbaSGuenter Roeck 	ptr = devres_alloc(devm_hwmon_release, sizeof(*ptr), GFP_KERNEL);
74074188cbaSGuenter Roeck 	if (!ptr)
74174188cbaSGuenter Roeck 		return ERR_PTR(-ENOMEM);
74274188cbaSGuenter Roeck 
74374188cbaSGuenter Roeck 	hwdev = hwmon_device_register_with_groups(dev, name, drvdata, groups);
74474188cbaSGuenter Roeck 	if (IS_ERR(hwdev))
74574188cbaSGuenter Roeck 		goto error;
74674188cbaSGuenter Roeck 
74774188cbaSGuenter Roeck 	*ptr = hwdev;
74874188cbaSGuenter Roeck 	devres_add(dev, ptr);
74974188cbaSGuenter Roeck 	return hwdev;
75074188cbaSGuenter Roeck 
75174188cbaSGuenter Roeck error:
75274188cbaSGuenter Roeck 	devres_free(ptr);
75374188cbaSGuenter Roeck 	return hwdev;
75474188cbaSGuenter Roeck }
75574188cbaSGuenter Roeck EXPORT_SYMBOL_GPL(devm_hwmon_device_register_with_groups);
75674188cbaSGuenter Roeck 
757d560168bSGuenter Roeck /**
758d560168bSGuenter Roeck  * devm_hwmon_device_register_with_info - register w/ hwmon
759d560168bSGuenter Roeck  * @dev: the parent device
760d560168bSGuenter Roeck  * @name: hwmon name attribute
761d560168bSGuenter Roeck  * @drvdata: driver data to attach to created device
762d560168bSGuenter Roeck  * @info: Pointer to hwmon chip information
763d560168bSGuenter Roeck  * @groups - pointer to list of driver specific attribute groups
764d560168bSGuenter Roeck  *
765d560168bSGuenter Roeck  * Returns the pointer to the new device. The new device is automatically
766d560168bSGuenter Roeck  * unregistered with the parent device.
767d560168bSGuenter Roeck  */
768d560168bSGuenter Roeck struct device *
769d560168bSGuenter Roeck devm_hwmon_device_register_with_info(struct device *dev, const char *name,
770d560168bSGuenter Roeck 				     void *drvdata,
771d560168bSGuenter Roeck 				     const struct hwmon_chip_info *chip,
772d560168bSGuenter Roeck 				     const struct attribute_group **groups)
773d560168bSGuenter Roeck {
774d560168bSGuenter Roeck 	struct device **ptr, *hwdev;
775d560168bSGuenter Roeck 
776d560168bSGuenter Roeck 	if (!dev)
777d560168bSGuenter Roeck 		return ERR_PTR(-EINVAL);
778d560168bSGuenter Roeck 
779d560168bSGuenter Roeck 	ptr = devres_alloc(devm_hwmon_release, sizeof(*ptr), GFP_KERNEL);
780d560168bSGuenter Roeck 	if (!ptr)
781d560168bSGuenter Roeck 		return ERR_PTR(-ENOMEM);
782d560168bSGuenter Roeck 
783d560168bSGuenter Roeck 	hwdev = hwmon_device_register_with_info(dev, name, drvdata, chip,
784d560168bSGuenter Roeck 						groups);
785d560168bSGuenter Roeck 	if (IS_ERR(hwdev))
786d560168bSGuenter Roeck 		goto error;
787d560168bSGuenter Roeck 
788d560168bSGuenter Roeck 	*ptr = hwdev;
789d560168bSGuenter Roeck 	devres_add(dev, ptr);
790d560168bSGuenter Roeck 
791d560168bSGuenter Roeck 	return hwdev;
792d560168bSGuenter Roeck 
793d560168bSGuenter Roeck error:
794d560168bSGuenter Roeck 	devres_free(ptr);
795d560168bSGuenter Roeck 	return hwdev;
796d560168bSGuenter Roeck }
797d560168bSGuenter Roeck EXPORT_SYMBOL_GPL(devm_hwmon_device_register_with_info);
798d560168bSGuenter Roeck 
79974188cbaSGuenter Roeck static int devm_hwmon_match(struct device *dev, void *res, void *data)
80074188cbaSGuenter Roeck {
80174188cbaSGuenter Roeck 	struct device **hwdev = res;
80274188cbaSGuenter Roeck 
80374188cbaSGuenter Roeck 	return *hwdev == data;
80474188cbaSGuenter Roeck }
80574188cbaSGuenter Roeck 
80674188cbaSGuenter Roeck /**
80774188cbaSGuenter Roeck  * devm_hwmon_device_unregister - removes a previously registered hwmon device
80874188cbaSGuenter Roeck  *
80974188cbaSGuenter Roeck  * @dev: the parent device of the device to unregister
81074188cbaSGuenter Roeck  */
81174188cbaSGuenter Roeck void devm_hwmon_device_unregister(struct device *dev)
81274188cbaSGuenter Roeck {
81374188cbaSGuenter Roeck 	WARN_ON(devres_release(dev, devm_hwmon_release, devm_hwmon_match, dev));
81474188cbaSGuenter Roeck }
81574188cbaSGuenter Roeck EXPORT_SYMBOL_GPL(devm_hwmon_device_unregister);
81674188cbaSGuenter Roeck 
8172958b1ecSJean Delvare static void __init hwmon_pci_quirks(void)
8182958b1ecSJean Delvare {
8192958b1ecSJean Delvare #if defined CONFIG_X86 && defined CONFIG_PCI
8202958b1ecSJean Delvare 	struct pci_dev *sb;
8212958b1ecSJean Delvare 	u16 base;
8222958b1ecSJean Delvare 	u8 enable;
8232958b1ecSJean Delvare 
8242958b1ecSJean Delvare 	/* Open access to 0x295-0x296 on MSI MS-7031 */
8252958b1ecSJean Delvare 	sb = pci_get_device(PCI_VENDOR_ID_ATI, 0x436c, NULL);
826d6dab7ddSJean Delvare 	if (sb) {
827d6dab7ddSJean Delvare 		if (sb->subsystem_vendor == 0x1462 &&	/* MSI */
828d6dab7ddSJean Delvare 		    sb->subsystem_device == 0x0031) {	/* MS-7031 */
8292958b1ecSJean Delvare 			pci_read_config_byte(sb, 0x48, &enable);
8302958b1ecSJean Delvare 			pci_read_config_word(sb, 0x64, &base);
8312958b1ecSJean Delvare 
8322958b1ecSJean Delvare 			if (base == 0 && !(enable & BIT(2))) {
8332958b1ecSJean Delvare 				dev_info(&sb->dev,
8342958b1ecSJean Delvare 					 "Opening wide generic port at 0x295\n");
8352958b1ecSJean Delvare 				pci_write_config_word(sb, 0x64, 0x295);
836d6dab7ddSJean Delvare 				pci_write_config_byte(sb, 0x48,
837d6dab7ddSJean Delvare 						      enable | BIT(2));
8382958b1ecSJean Delvare 			}
8392958b1ecSJean Delvare 		}
840d6dab7ddSJean Delvare 		pci_dev_put(sb);
841d6dab7ddSJean Delvare 	}
8422958b1ecSJean Delvare #endif
8432958b1ecSJean Delvare }
8442958b1ecSJean Delvare 
8451236441fSMark M. Hoffman static int __init hwmon_init(void)
8461236441fSMark M. Hoffman {
847bab2243cSGuenter Roeck 	int err;
848bab2243cSGuenter Roeck 
8492958b1ecSJean Delvare 	hwmon_pci_quirks();
8502958b1ecSJean Delvare 
851bab2243cSGuenter Roeck 	err = class_register(&hwmon_class);
852bab2243cSGuenter Roeck 	if (err) {
853bab2243cSGuenter Roeck 		pr_err("couldn't register hwmon sysfs class\n");
854bab2243cSGuenter Roeck 		return err;
8551236441fSMark M. Hoffman 	}
8561236441fSMark M. Hoffman 	return 0;
8571236441fSMark M. Hoffman }
8581236441fSMark M. Hoffman 
8591236441fSMark M. Hoffman static void __exit hwmon_exit(void)
8601236441fSMark M. Hoffman {
861bab2243cSGuenter Roeck 	class_unregister(&hwmon_class);
8621236441fSMark M. Hoffman }
8631236441fSMark M. Hoffman 
86437f54ee5SDavid Brownell subsys_initcall(hwmon_init);
8651236441fSMark M. Hoffman module_exit(hwmon_exit);
8661236441fSMark M. Hoffman 
8671236441fSMark M. Hoffman MODULE_AUTHOR("Mark M. Hoffman <mhoffman@lightlink.com>");
8681236441fSMark M. Hoffman MODULE_DESCRIPTION("hardware monitoring sysfs/class support");
8691236441fSMark M. Hoffman MODULE_LICENSE("GPL");
8701236441fSMark M. Hoffman 
871