2 * hwmon.c - part of lm_sensors, Linux kernel modules for hardware monitoring
4 * This file defines the sysfs class "hwmon", for use by sensors drivers.
6 * Copyright (C) 2005 Mark M. Hoffman <mhoffman@lightlink.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
13 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15 #include <linux/bitops.h>
16 #include <linux/device.h>
17 #include <linux/err.h>
18 #include <linux/gfp.h>
19 #include <linux/hwmon.h>
20 #include <linux/idr.h>
21 #include <linux/module.h>
22 #include <linux/pci.h>
23 #include <linux/slab.h>
24 #include <linux/string.h>
25 #include <linux/thermal.h>
27 #define HWMON_ID_PREFIX "hwmon"
28 #define HWMON_ID_FORMAT HWMON_ID_PREFIX "%d"
33 const struct hwmon_chip_info
*chip
;
35 struct attribute_group group
;
36 const struct attribute_group
**groups
;
39 #define to_hwmon_device(d) container_of(d, struct hwmon_device, dev)
41 struct hwmon_device_attribute
{
42 struct device_attribute dev_attr
;
43 const struct hwmon_ops
*ops
;
44 enum hwmon_sensor_types type
;
49 #define to_hwmon_attr(d) \
50 container_of(d, struct hwmon_device_attribute, dev_attr)
53 * Thermal zone information
54 * In addition to the reference to the hwmon device,
55 * also provides the sensor index.
57 struct hwmon_thermal_data
{
58 struct hwmon_device
*hwdev
; /* Reference to hwmon device */
59 int index
; /* sensor index */
63 show_name(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
65 return sprintf(buf
, "%s\n", to_hwmon_device(dev
)->name
);
67 static DEVICE_ATTR(name
, S_IRUGO
, show_name
, NULL
);
69 static struct attribute
*hwmon_dev_attrs
[] = {
74 static umode_t
hwmon_dev_name_is_visible(struct kobject
*kobj
,
75 struct attribute
*attr
, int n
)
77 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
79 if (to_hwmon_device(dev
)->name
== NULL
)
85 static struct attribute_group hwmon_dev_attr_group
= {
86 .attrs
= hwmon_dev_attrs
,
87 .is_visible
= hwmon_dev_name_is_visible
,
90 static const struct attribute_group
*hwmon_dev_attr_groups
[] = {
91 &hwmon_dev_attr_group
,
95 static void hwmon_dev_release(struct device
*dev
)
97 kfree(to_hwmon_device(dev
));
100 static struct class hwmon_class
= {
102 .owner
= THIS_MODULE
,
103 .dev_groups
= hwmon_dev_attr_groups
,
104 .dev_release
= hwmon_dev_release
,
107 static DEFINE_IDA(hwmon_ida
);
109 /* Thermal zone handling */
112 * The complex conditional is necessary to avoid a cyclic dependency
113 * between hwmon and thermal_sys modules.
115 #if IS_REACHABLE(CONFIG_THERMAL) && defined(CONFIG_THERMAL_OF) && \
116 (!defined(CONFIG_THERMAL_HWMON) || \
117 !(defined(MODULE) && IS_MODULE(CONFIG_THERMAL)))
118 static int hwmon_thermal_get_temp(void *data
, int *temp
)
120 struct hwmon_thermal_data
*tdata
= data
;
121 struct hwmon_device
*hwdev
= tdata
->hwdev
;
125 ret
= hwdev
->chip
->ops
->read(&hwdev
->dev
, hwmon_temp
, hwmon_temp_input
,
135 static struct thermal_zone_of_device_ops hwmon_thermal_ops
= {
136 .get_temp
= hwmon_thermal_get_temp
,
139 static int hwmon_thermal_add_sensor(struct device
*dev
,
140 struct hwmon_device
*hwdev
, int index
)
142 struct hwmon_thermal_data
*tdata
;
144 tdata
= devm_kzalloc(dev
, sizeof(*tdata
), GFP_KERNEL
);
148 tdata
->hwdev
= hwdev
;
149 tdata
->index
= index
;
151 devm_thermal_zone_of_sensor_register(&hwdev
->dev
, index
, tdata
,
157 static int hwmon_thermal_add_sensor(struct device
*dev
,
158 struct hwmon_device
*hwdev
, int index
)
162 #endif /* IS_REACHABLE(CONFIG_THERMAL) && ... */
164 /* sysfs attribute management */
166 static ssize_t
hwmon_attr_show(struct device
*dev
,
167 struct device_attribute
*devattr
, char *buf
)
169 struct hwmon_device_attribute
*hattr
= to_hwmon_attr(devattr
);
173 ret
= hattr
->ops
->read(dev
, hattr
->type
, hattr
->attr
, hattr
->index
,
178 return sprintf(buf
, "%ld\n", val
);
181 static ssize_t
hwmon_attr_store(struct device
*dev
,
182 struct device_attribute
*devattr
,
183 const char *buf
, size_t count
)
185 struct hwmon_device_attribute
*hattr
= to_hwmon_attr(devattr
);
189 ret
= kstrtol(buf
, 10, &val
);
193 ret
= hattr
->ops
->write(dev
, hattr
->type
, hattr
->attr
, hattr
->index
,
201 static int hwmon_attr_base(enum hwmon_sensor_types type
)
203 if (type
== hwmon_in
)
208 static struct attribute
*hwmon_genattr(struct device
*dev
,
210 enum hwmon_sensor_types type
,
213 const char *template,
214 const struct hwmon_ops
*ops
)
216 struct hwmon_device_attribute
*hattr
;
217 struct device_attribute
*dattr
;
222 /* The attribute is invisible if there is no template string */
224 return ERR_PTR(-ENOENT
);
226 mode
= ops
->is_visible(drvdata
, type
, attr
, index
);
228 return ERR_PTR(-ENOENT
);
230 if ((mode
& S_IRUGO
) && !ops
->read
)
231 return ERR_PTR(-EINVAL
);
232 if ((mode
& S_IWUGO
) && !ops
->write
)
233 return ERR_PTR(-EINVAL
);
235 if (type
== hwmon_chip
) {
236 name
= (char *)template;
238 name
= devm_kzalloc(dev
, strlen(template) + 16, GFP_KERNEL
);
240 return ERR_PTR(-ENOMEM
);
241 scnprintf(name
, strlen(template) + 16, template,
242 index
+ hwmon_attr_base(type
));
245 hattr
= devm_kzalloc(dev
, sizeof(*hattr
), GFP_KERNEL
);
247 return ERR_PTR(-ENOMEM
);
251 hattr
->index
= index
;
254 dattr
= &hattr
->dev_attr
;
255 dattr
->show
= hwmon_attr_show
;
256 dattr
->store
= hwmon_attr_store
;
266 static const char * const hwmon_chip_attr_templates
[] = {
267 [hwmon_chip_temp_reset_history
] = "temp_reset_history",
268 [hwmon_chip_in_reset_history
] = "in_reset_history",
269 [hwmon_chip_curr_reset_history
] = "curr_reset_history",
270 [hwmon_chip_power_reset_history
] = "power_reset_history",
271 [hwmon_chip_update_interval
] = "update_interval",
272 [hwmon_chip_alarms
] = "alarms",
275 static const char * const hwmon_temp_attr_templates
[] = {
276 [hwmon_temp_input
] = "temp%d_input",
277 [hwmon_temp_type
] = "temp%d_type",
278 [hwmon_temp_lcrit
] = "temp%d_lcrit",
279 [hwmon_temp_lcrit_hyst
] = "temp%d_lcrit_hyst",
280 [hwmon_temp_min
] = "temp%d_min",
281 [hwmon_temp_min_hyst
] = "temp%d_min_hyst",
282 [hwmon_temp_max
] = "temp%d_max",
283 [hwmon_temp_max_hyst
] = "temp%d_max_hyst",
284 [hwmon_temp_crit
] = "temp%d_crit",
285 [hwmon_temp_crit_hyst
] = "temp%d_crit_hyst",
286 [hwmon_temp_emergency
] = "temp%d_emergency",
287 [hwmon_temp_emergency_hyst
] = "temp%d_emergency_hyst",
288 [hwmon_temp_alarm
] = "temp%d_alarm",
289 [hwmon_temp_lcrit_alarm
] = "temp%d_lcrit_alarm",
290 [hwmon_temp_min_alarm
] = "temp%d_min_alarm",
291 [hwmon_temp_max_alarm
] = "temp%d_max_alarm",
292 [hwmon_temp_crit_alarm
] = "temp%d_crit_alarm",
293 [hwmon_temp_emergency_alarm
] = "temp%d_emergency_alarm",
294 [hwmon_temp_fault
] = "temp%d_fault",
295 [hwmon_temp_offset
] = "temp%d_offset",
296 [hwmon_temp_label
] = "temp%d_label",
297 [hwmon_temp_lowest
] = "temp%d_lowest",
298 [hwmon_temp_highest
] = "temp%d_highest",
299 [hwmon_temp_reset_history
] = "temp%d_reset_history",
302 static const char * const hwmon_in_attr_templates
[] = {
303 [hwmon_in_input
] = "in%d_input",
304 [hwmon_in_min
] = "in%d_min",
305 [hwmon_in_max
] = "in%d_max",
306 [hwmon_in_lcrit
] = "in%d_lcrit",
307 [hwmon_in_crit
] = "in%d_crit",
308 [hwmon_in_average
] = "in%d_average",
309 [hwmon_in_lowest
] = "in%d_lowest",
310 [hwmon_in_highest
] = "in%d_highest",
311 [hwmon_in_reset_history
] = "in%d_reset_history",
312 [hwmon_in_label
] = "in%d_label",
313 [hwmon_in_alarm
] = "in%d_alarm",
314 [hwmon_in_min_alarm
] = "in%d_min_alarm",
315 [hwmon_in_max_alarm
] = "in%d_max_alarm",
316 [hwmon_in_lcrit_alarm
] = "in%d_lcrit_alarm",
317 [hwmon_in_crit_alarm
] = "in%d_crit_alarm",
320 static const char * const hwmon_curr_attr_templates
[] = {
321 [hwmon_curr_input
] = "curr%d_input",
322 [hwmon_curr_min
] = "curr%d_min",
323 [hwmon_curr_max
] = "curr%d_max",
324 [hwmon_curr_lcrit
] = "curr%d_lcrit",
325 [hwmon_curr_crit
] = "curr%d_crit",
326 [hwmon_curr_average
] = "curr%d_average",
327 [hwmon_curr_lowest
] = "curr%d_lowest",
328 [hwmon_curr_highest
] = "curr%d_highest",
329 [hwmon_curr_reset_history
] = "curr%d_reset_history",
330 [hwmon_curr_label
] = "curr%d_label",
331 [hwmon_curr_alarm
] = "curr%d_alarm",
332 [hwmon_curr_min_alarm
] = "curr%d_min_alarm",
333 [hwmon_curr_max_alarm
] = "curr%d_max_alarm",
334 [hwmon_curr_lcrit_alarm
] = "curr%d_lcrit_alarm",
335 [hwmon_curr_crit_alarm
] = "curr%d_crit_alarm",
338 static const char * const hwmon_power_attr_templates
[] = {
339 [hwmon_power_average
] = "power%d_average",
340 [hwmon_power_average_interval
] = "power%d_average_interval",
341 [hwmon_power_average_interval_max
] = "power%d_interval_max",
342 [hwmon_power_average_interval_min
] = "power%d_interval_min",
343 [hwmon_power_average_highest
] = "power%d_average_highest",
344 [hwmon_power_average_lowest
] = "power%d_average_lowest",
345 [hwmon_power_average_max
] = "power%d_average_max",
346 [hwmon_power_average_min
] = "power%d_average_min",
347 [hwmon_power_input
] = "power%d_input",
348 [hwmon_power_input_highest
] = "power%d_input_highest",
349 [hwmon_power_input_lowest
] = "power%d_input_lowest",
350 [hwmon_power_reset_history
] = "power%d_reset_history",
351 [hwmon_power_accuracy
] = "power%d_accuracy",
352 [hwmon_power_cap
] = "power%d_cap",
353 [hwmon_power_cap_hyst
] = "power%d_cap_hyst",
354 [hwmon_power_cap_max
] = "power%d_cap_max",
355 [hwmon_power_cap_min
] = "power%d_cap_min",
356 [hwmon_power_max
] = "power%d_max",
357 [hwmon_power_crit
] = "power%d_crit",
358 [hwmon_power_label
] = "power%d_label",
359 [hwmon_power_alarm
] = "power%d_alarm",
360 [hwmon_power_cap_alarm
] = "power%d_cap_alarm",
361 [hwmon_power_max_alarm
] = "power%d_max_alarm",
362 [hwmon_power_crit_alarm
] = "power%d_crit_alarm",
365 static const char * const hwmon_energy_attr_templates
[] = {
366 [hwmon_energy_input
] = "energy%d_input",
367 [hwmon_energy_label
] = "energy%d_label",
370 static const char * const hwmon_humidity_attr_templates
[] = {
371 [hwmon_humidity_input
] = "humidity%d_input",
372 [hwmon_humidity_label
] = "humidity%d_label",
373 [hwmon_humidity_min
] = "humidity%d_min",
374 [hwmon_humidity_min_hyst
] = "humidity%d_min_hyst",
375 [hwmon_humidity_max
] = "humidity%d_max",
376 [hwmon_humidity_max_hyst
] = "humidity%d_max_hyst",
377 [hwmon_humidity_alarm
] = "humidity%d_alarm",
378 [hwmon_humidity_fault
] = "humidity%d_fault",
381 static const char * const hwmon_fan_attr_templates
[] = {
382 [hwmon_fan_input
] = "fan%d_input",
383 [hwmon_fan_label
] = "fan%d_label",
384 [hwmon_fan_min
] = "fan%d_min",
385 [hwmon_fan_max
] = "fan%d_max",
386 [hwmon_fan_div
] = "fan%d_div",
387 [hwmon_fan_pulses
] = "fan%d_pulses",
388 [hwmon_fan_target
] = "fan%d_target",
389 [hwmon_fan_alarm
] = "fan%d_alarm",
390 [hwmon_fan_min_alarm
] = "fan%d_min_alarm",
391 [hwmon_fan_max_alarm
] = "fan%d_max_alarm",
392 [hwmon_fan_fault
] = "fan%d_fault",
395 static const char * const hwmon_pwm_attr_templates
[] = {
396 [hwmon_pwm_input
] = "pwm%d",
397 [hwmon_pwm_enable
] = "pwm%d_enable",
398 [hwmon_pwm_mode
] = "pwm%d_mode",
399 [hwmon_pwm_freq
] = "pwm%d_freq",
402 static const char * const *__templates
[] = {
403 [hwmon_chip
] = hwmon_chip_attr_templates
,
404 [hwmon_temp
] = hwmon_temp_attr_templates
,
405 [hwmon_in
] = hwmon_in_attr_templates
,
406 [hwmon_curr
] = hwmon_curr_attr_templates
,
407 [hwmon_power
] = hwmon_power_attr_templates
,
408 [hwmon_energy
] = hwmon_energy_attr_templates
,
409 [hwmon_humidity
] = hwmon_humidity_attr_templates
,
410 [hwmon_fan
] = hwmon_fan_attr_templates
,
411 [hwmon_pwm
] = hwmon_pwm_attr_templates
,
414 static const int __templates_size
[] = {
415 [hwmon_chip
] = ARRAY_SIZE(hwmon_chip_attr_templates
),
416 [hwmon_temp
] = ARRAY_SIZE(hwmon_temp_attr_templates
),
417 [hwmon_in
] = ARRAY_SIZE(hwmon_in_attr_templates
),
418 [hwmon_curr
] = ARRAY_SIZE(hwmon_curr_attr_templates
),
419 [hwmon_power
] = ARRAY_SIZE(hwmon_power_attr_templates
),
420 [hwmon_energy
] = ARRAY_SIZE(hwmon_energy_attr_templates
),
421 [hwmon_humidity
] = ARRAY_SIZE(hwmon_humidity_attr_templates
),
422 [hwmon_fan
] = ARRAY_SIZE(hwmon_fan_attr_templates
),
423 [hwmon_pwm
] = ARRAY_SIZE(hwmon_pwm_attr_templates
),
426 static int hwmon_num_channel_attrs(const struct hwmon_channel_info
*info
)
430 for (i
= n
= 0; info
->config
[i
]; i
++)
431 n
+= hweight32(info
->config
[i
]);
436 static int hwmon_genattrs(struct device
*dev
,
438 struct attribute
**attrs
,
439 const struct hwmon_ops
*ops
,
440 const struct hwmon_channel_info
*info
)
442 const char * const *templates
;
446 if (info
->type
>= ARRAY_SIZE(__templates
))
449 templates
= __templates
[info
->type
];
450 template_size
= __templates_size
[info
->type
];
452 for (i
= 0; info
->config
[i
]; i
++) {
453 u32 attr_mask
= info
->config
[i
];
459 attr
= __ffs(attr_mask
);
460 attr_mask
&= ~BIT(attr
);
461 if (attr
>= template_size
)
463 a
= hwmon_genattr(dev
, drvdata
, info
->type
, attr
, i
,
464 templates
[attr
], ops
);
466 if (PTR_ERR(a
) != -ENOENT
)
476 static struct attribute
**
477 __hwmon_create_attrs(struct device
*dev
, const void *drvdata
,
478 const struct hwmon_chip_info
*chip
)
480 int ret
, i
, aindex
= 0, nattrs
= 0;
481 struct attribute
**attrs
;
483 for (i
= 0; chip
->info
[i
]; i
++)
484 nattrs
+= hwmon_num_channel_attrs(chip
->info
[i
]);
487 return ERR_PTR(-EINVAL
);
489 attrs
= devm_kcalloc(dev
, nattrs
+ 1, sizeof(*attrs
), GFP_KERNEL
);
491 return ERR_PTR(-ENOMEM
);
493 for (i
= 0; chip
->info
[i
]; i
++) {
494 ret
= hwmon_genattrs(dev
, drvdata
, &attrs
[aindex
], chip
->ops
,
504 static struct device
*
505 __hwmon_device_register(struct device
*dev
, const char *name
, void *drvdata
,
506 const struct hwmon_chip_info
*chip
,
507 const struct attribute_group
**groups
)
509 struct hwmon_device
*hwdev
;
513 /* Do not accept invalid characters in hwmon name attribute */
514 if (name
&& (!strlen(name
) || strpbrk(name
, "-* \t\n")))
515 return ERR_PTR(-EINVAL
);
517 id
= ida_simple_get(&hwmon_ida
, 0, 0, GFP_KERNEL
);
521 hwdev
= kzalloc(sizeof(*hwdev
), GFP_KERNEL
);
529 if (chip
&& chip
->ops
->is_visible
) {
530 struct attribute
**attrs
;
534 for (i
= 0; groups
[i
]; i
++)
537 hwdev
->groups
= devm_kcalloc(dev
, ngroups
, sizeof(*groups
),
540 return ERR_PTR(-ENOMEM
);
542 attrs
= __hwmon_create_attrs(dev
, drvdata
, chip
);
544 err
= PTR_ERR(attrs
);
548 hwdev
->group
.attrs
= attrs
;
550 hwdev
->groups
[ngroups
++] = &hwdev
->group
;
553 for (i
= 0; groups
[i
]; i
++)
554 hwdev
->groups
[ngroups
++] = groups
[i
];
557 hdev
->groups
= hwdev
->groups
;
559 hdev
->groups
= groups
;
563 hdev
->class = &hwmon_class
;
565 hdev
->of_node
= dev
? dev
->of_node
: NULL
;
567 dev_set_drvdata(hdev
, drvdata
);
568 dev_set_name(hdev
, HWMON_ID_FORMAT
, id
);
569 err
= device_register(hdev
);
573 if (chip
&& chip
->ops
->is_visible
&& chip
->ops
->read
&&
574 chip
->info
[0]->type
== hwmon_chip
&&
575 (chip
->info
[0]->config
[0] & HWMON_C_REGISTER_TZ
)) {
576 const struct hwmon_channel_info
**info
= chip
->info
;
578 for (i
= 1; info
[i
]; i
++) {
579 if (info
[i
]->type
!= hwmon_temp
)
582 for (j
= 0; info
[i
]->config
[j
]; j
++) {
583 if (!chip
->ops
->is_visible(drvdata
, hwmon_temp
,
584 hwmon_temp_input
, j
))
586 if (info
[i
]->config
[j
] & HWMON_T_INPUT
)
587 hwmon_thermal_add_sensor(dev
, hwdev
, j
);
597 ida_simple_remove(&hwmon_ida
, id
);
602 * hwmon_device_register_with_groups - register w/ hwmon
603 * @dev: the parent device
604 * @name: hwmon name attribute
605 * @drvdata: driver data to attach to created device
606 * @groups: List of attribute groups to create
608 * hwmon_device_unregister() must be called when the device is no
611 * Returns the pointer to the new device.
614 hwmon_device_register_with_groups(struct device
*dev
, const char *name
,
616 const struct attribute_group
**groups
)
618 return __hwmon_device_register(dev
, name
, drvdata
, NULL
, groups
);
620 EXPORT_SYMBOL_GPL(hwmon_device_register_with_groups
);
623 * hwmon_device_register_with_info - register w/ hwmon
624 * @dev: the parent device
625 * @name: hwmon name attribute
626 * @drvdata: driver data to attach to created device
627 * @info: Pointer to hwmon chip information
628 * @groups - pointer to list of driver specific attribute groups
630 * hwmon_device_unregister() must be called when the device is no
633 * Returns the pointer to the new device.
636 hwmon_device_register_with_info(struct device
*dev
, const char *name
,
638 const struct hwmon_chip_info
*chip
,
639 const struct attribute_group
**groups
)
641 if (chip
&& (!chip
->ops
|| !chip
->info
))
642 return ERR_PTR(-EINVAL
);
644 return __hwmon_device_register(dev
, name
, drvdata
, chip
, groups
);
646 EXPORT_SYMBOL_GPL(hwmon_device_register_with_info
);
649 * hwmon_device_register - register w/ hwmon
650 * @dev: the device to register
652 * hwmon_device_unregister() must be called when the device is no
655 * Returns the pointer to the new device.
657 struct device
*hwmon_device_register(struct device
*dev
)
659 return hwmon_device_register_with_groups(dev
, NULL
, NULL
, NULL
);
661 EXPORT_SYMBOL_GPL(hwmon_device_register
);
664 * hwmon_device_unregister - removes the previously registered class device
666 * @dev: the class device to destroy
668 void hwmon_device_unregister(struct device
*dev
)
672 if (likely(sscanf(dev_name(dev
), HWMON_ID_FORMAT
, &id
) == 1)) {
673 device_unregister(dev
);
674 ida_simple_remove(&hwmon_ida
, id
);
677 "hwmon_device_unregister() failed: bad class ID!\n");
679 EXPORT_SYMBOL_GPL(hwmon_device_unregister
);
681 static void devm_hwmon_release(struct device
*dev
, void *res
)
683 struct device
*hwdev
= *(struct device
**)res
;
685 hwmon_device_unregister(hwdev
);
689 * devm_hwmon_device_register_with_groups - register w/ hwmon
690 * @dev: the parent device
691 * @name: hwmon name attribute
692 * @drvdata: driver data to attach to created device
693 * @groups: List of attribute groups to create
695 * Returns the pointer to the new device. The new device is automatically
696 * unregistered with the parent device.
699 devm_hwmon_device_register_with_groups(struct device
*dev
, const char *name
,
701 const struct attribute_group
**groups
)
703 struct device
**ptr
, *hwdev
;
706 return ERR_PTR(-EINVAL
);
708 ptr
= devres_alloc(devm_hwmon_release
, sizeof(*ptr
), GFP_KERNEL
);
710 return ERR_PTR(-ENOMEM
);
712 hwdev
= hwmon_device_register_with_groups(dev
, name
, drvdata
, groups
);
717 devres_add(dev
, ptr
);
724 EXPORT_SYMBOL_GPL(devm_hwmon_device_register_with_groups
);
727 * devm_hwmon_device_register_with_info - register w/ hwmon
728 * @dev: the parent device
729 * @name: hwmon name attribute
730 * @drvdata: driver data to attach to created device
731 * @info: Pointer to hwmon chip information
732 * @groups - pointer to list of driver specific attribute groups
734 * Returns the pointer to the new device. The new device is automatically
735 * unregistered with the parent device.
738 devm_hwmon_device_register_with_info(struct device
*dev
, const char *name
,
740 const struct hwmon_chip_info
*chip
,
741 const struct attribute_group
**groups
)
743 struct device
**ptr
, *hwdev
;
746 return ERR_PTR(-EINVAL
);
748 ptr
= devres_alloc(devm_hwmon_release
, sizeof(*ptr
), GFP_KERNEL
);
750 return ERR_PTR(-ENOMEM
);
752 hwdev
= hwmon_device_register_with_info(dev
, name
, drvdata
, chip
,
758 devres_add(dev
, ptr
);
766 EXPORT_SYMBOL_GPL(devm_hwmon_device_register_with_info
);
768 static int devm_hwmon_match(struct device
*dev
, void *res
, void *data
)
770 struct device
**hwdev
= res
;
772 return *hwdev
== data
;
776 * devm_hwmon_device_unregister - removes a previously registered hwmon device
778 * @dev: the parent device of the device to unregister
780 void devm_hwmon_device_unregister(struct device
*dev
)
782 WARN_ON(devres_release(dev
, devm_hwmon_release
, devm_hwmon_match
, dev
));
784 EXPORT_SYMBOL_GPL(devm_hwmon_device_unregister
);
786 static void __init
hwmon_pci_quirks(void)
788 #if defined CONFIG_X86 && defined CONFIG_PCI
793 /* Open access to 0x295-0x296 on MSI MS-7031 */
794 sb
= pci_get_device(PCI_VENDOR_ID_ATI
, 0x436c, NULL
);
796 if (sb
->subsystem_vendor
== 0x1462 && /* MSI */
797 sb
->subsystem_device
== 0x0031) { /* MS-7031 */
798 pci_read_config_byte(sb
, 0x48, &enable
);
799 pci_read_config_word(sb
, 0x64, &base
);
801 if (base
== 0 && !(enable
& BIT(2))) {
803 "Opening wide generic port at 0x295\n");
804 pci_write_config_word(sb
, 0x64, 0x295);
805 pci_write_config_byte(sb
, 0x48,
814 static int __init
hwmon_init(void)
820 err
= class_register(&hwmon_class
);
822 pr_err("couldn't register hwmon sysfs class\n");
828 static void __exit
hwmon_exit(void)
830 class_unregister(&hwmon_class
);
833 subsys_initcall(hwmon_init
);
834 module_exit(hwmon_exit
);
836 MODULE_AUTHOR("Mark M. Hoffman <mhoffman@lightlink.com>");
837 MODULE_DESCRIPTION("hardware monitoring sysfs/class support");
838 MODULE_LICENSE("GPL");