1b886d83cSThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only 21236441fSMark M. Hoffman /* 35ed04880SGuenter Roeck * hwmon.c - part of lm_sensors, Linux kernel modules for hardware monitoring 45ed04880SGuenter Roeck * 55ed04880SGuenter Roeck * This file defines the sysfs class "hwmon", for use by sensors drivers. 65ed04880SGuenter Roeck * 75ed04880SGuenter Roeck * Copyright (C) 2005 Mark M. Hoffman <mhoffman@lightlink.com> 81236441fSMark M. Hoffman */ 91236441fSMark M. Hoffman 10c95df1aeSJoe Perches #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 11c95df1aeSJoe Perches 12d560168bSGuenter Roeck #include <linux/bitops.h> 131236441fSMark M. Hoffman #include <linux/device.h> 141236441fSMark M. Hoffman #include <linux/err.h> 158c65b4a6STim Schmielau #include <linux/gfp.h> 16c9ebbe6fSGuenter Roeck #include <linux/hwmon.h> 17c9ebbe6fSGuenter Roeck #include <linux/idr.h> 1825f98688SChristophe JAILLET #include <linux/kstrtox.h> 191597b374SGuenter Roeck #include <linux/list.h> 20c9ebbe6fSGuenter Roeck #include <linux/module.h> 212958b1ecSJean Delvare #include <linux/pci.h> 22e1c9d6d6SPaul Cercueil #include <linux/property.h> 23c9ebbe6fSGuenter Roeck #include <linux/slab.h> 24648cd48cSGuenter Roeck #include <linux/string.h> 25d560168bSGuenter Roeck #include <linux/thermal.h> 261236441fSMark M. Hoffman 2761b8ab2cSNicolin Chen #define CREATE_TRACE_POINTS 2861b8ab2cSNicolin Chen #include <trace/events/hwmon.h> 2961b8ab2cSNicolin Chen 301236441fSMark M. Hoffman #define HWMON_ID_PREFIX "hwmon" 311236441fSMark M. Hoffman #define HWMON_ID_FORMAT HWMON_ID_PREFIX "%d" 321236441fSMark M. Hoffman 33bab2243cSGuenter Roeck struct hwmon_device { 34bab2243cSGuenter Roeck const char *name; 35e1c9d6d6SPaul Cercueil const char *label; 36bab2243cSGuenter Roeck struct device dev; 37d560168bSGuenter Roeck const struct hwmon_chip_info *chip; 381597b374SGuenter Roeck struct list_head tzdata; 39d560168bSGuenter Roeck struct attribute_group group; 40d560168bSGuenter Roeck const struct attribute_group **groups; 41bab2243cSGuenter Roeck }; 42d560168bSGuenter Roeck 43bab2243cSGuenter Roeck #define to_hwmon_device(d) container_of(d, struct hwmon_device, dev) 44bab2243cSGuenter Roeck 453a412d5eSGuenter Roeck #define MAX_SYSFS_ATTR_NAME_LENGTH 32 463a412d5eSGuenter Roeck 47d560168bSGuenter Roeck struct hwmon_device_attribute { 48d560168bSGuenter Roeck struct device_attribute dev_attr; 49d560168bSGuenter Roeck const struct hwmon_ops *ops; 50d560168bSGuenter Roeck enum hwmon_sensor_types type; 51d560168bSGuenter Roeck u32 attr; 52d560168bSGuenter Roeck int index; 533a412d5eSGuenter Roeck char name[MAX_SYSFS_ATTR_NAME_LENGTH]; 54d560168bSGuenter Roeck }; 55d560168bSGuenter Roeck 56d560168bSGuenter Roeck #define to_hwmon_attr(d) \ 57d560168bSGuenter Roeck container_of(d, struct hwmon_device_attribute, dev_attr) 583bf8bdcfSGuenter Roeck #define to_dev_attr(a) container_of(a, struct device_attribute, attr) 59d560168bSGuenter Roeck 60d560168bSGuenter Roeck /* 61d560168bSGuenter Roeck * Thermal zone information 62d560168bSGuenter Roeck */ 63d560168bSGuenter Roeck struct hwmon_thermal_data { 641597b374SGuenter Roeck struct list_head node; /* hwmon tzdata list entry */ 653bf8bdcfSGuenter Roeck struct device *dev; /* Reference to hwmon device */ 66d560168bSGuenter Roeck int index; /* sensor index */ 671597b374SGuenter Roeck struct thermal_zone_device *tzd;/* thermal zone device */ 68d560168bSGuenter Roeck }; 69d560168bSGuenter Roeck 70bab2243cSGuenter Roeck static ssize_t 712ab0c6c5SJulia Lawall name_show(struct device *dev, struct device_attribute *attr, char *buf) 72bab2243cSGuenter Roeck { 73bab2243cSGuenter Roeck return sprintf(buf, "%s\n", to_hwmon_device(dev)->name); 74bab2243cSGuenter Roeck } 752ab0c6c5SJulia Lawall static DEVICE_ATTR_RO(name); 76bab2243cSGuenter Roeck 77e1c9d6d6SPaul Cercueil static ssize_t 78e1c9d6d6SPaul Cercueil label_show(struct device *dev, struct device_attribute *attr, char *buf) 79e1c9d6d6SPaul Cercueil { 80e1c9d6d6SPaul Cercueil return sysfs_emit(buf, "%s\n", to_hwmon_device(dev)->label); 81e1c9d6d6SPaul Cercueil } 82e1c9d6d6SPaul Cercueil static DEVICE_ATTR_RO(label); 83e1c9d6d6SPaul Cercueil 84bab2243cSGuenter Roeck static struct attribute *hwmon_dev_attrs[] = { 85bab2243cSGuenter Roeck &dev_attr_name.attr, 86e1c9d6d6SPaul Cercueil &dev_attr_label.attr, 87bab2243cSGuenter Roeck NULL 88bab2243cSGuenter Roeck }; 89bab2243cSGuenter Roeck 90e1c9d6d6SPaul Cercueil static umode_t hwmon_dev_attr_is_visible(struct kobject *kobj, 91bab2243cSGuenter Roeck struct attribute *attr, int n) 92bab2243cSGuenter Roeck { 9377d76768SYang Li struct device *dev = kobj_to_dev(kobj); 94e1c9d6d6SPaul Cercueil struct hwmon_device *hdev = to_hwmon_device(dev); 95bab2243cSGuenter Roeck 96e1c9d6d6SPaul Cercueil if (attr == &dev_attr_name.attr && hdev->name == NULL) 97e1c9d6d6SPaul Cercueil return 0; 98e1c9d6d6SPaul Cercueil 99e1c9d6d6SPaul Cercueil if (attr == &dev_attr_label.attr && hdev->label == NULL) 100bab2243cSGuenter Roeck return 0; 101bab2243cSGuenter Roeck 102bab2243cSGuenter Roeck return attr->mode; 103bab2243cSGuenter Roeck } 104bab2243cSGuenter Roeck 105524703acSArvind Yadav static const struct attribute_group hwmon_dev_attr_group = { 106bab2243cSGuenter Roeck .attrs = hwmon_dev_attrs, 107e1c9d6d6SPaul Cercueil .is_visible = hwmon_dev_attr_is_visible, 108bab2243cSGuenter Roeck }; 109bab2243cSGuenter Roeck 110bab2243cSGuenter Roeck static const struct attribute_group *hwmon_dev_attr_groups[] = { 111bab2243cSGuenter Roeck &hwmon_dev_attr_group, 112bab2243cSGuenter Roeck NULL 113bab2243cSGuenter Roeck }; 114bab2243cSGuenter Roeck 1153bf8bdcfSGuenter Roeck static void hwmon_free_attrs(struct attribute **attrs) 1163bf8bdcfSGuenter Roeck { 1173bf8bdcfSGuenter Roeck int i; 1183bf8bdcfSGuenter Roeck 1193bf8bdcfSGuenter Roeck for (i = 0; attrs[i]; i++) { 1203bf8bdcfSGuenter Roeck struct device_attribute *dattr = to_dev_attr(attrs[i]); 1213bf8bdcfSGuenter Roeck struct hwmon_device_attribute *hattr = to_hwmon_attr(dattr); 1223bf8bdcfSGuenter Roeck 1233bf8bdcfSGuenter Roeck kfree(hattr); 1243bf8bdcfSGuenter Roeck } 1253bf8bdcfSGuenter Roeck kfree(attrs); 1263bf8bdcfSGuenter Roeck } 1273bf8bdcfSGuenter Roeck 128bab2243cSGuenter Roeck static void hwmon_dev_release(struct device *dev) 129bab2243cSGuenter Roeck { 1303bf8bdcfSGuenter Roeck struct hwmon_device *hwdev = to_hwmon_device(dev); 1313bf8bdcfSGuenter Roeck 1323bf8bdcfSGuenter Roeck if (hwdev->group.attrs) 1333bf8bdcfSGuenter Roeck hwmon_free_attrs(hwdev->group.attrs); 1343bf8bdcfSGuenter Roeck kfree(hwdev->groups); 135e1c9d6d6SPaul Cercueil kfree(hwdev->label); 1363bf8bdcfSGuenter Roeck kfree(hwdev); 137bab2243cSGuenter Roeck } 138bab2243cSGuenter Roeck 139bab2243cSGuenter Roeck static struct class hwmon_class = { 140bab2243cSGuenter Roeck .name = "hwmon", 141bab2243cSGuenter Roeck .dev_groups = hwmon_dev_attr_groups, 142bab2243cSGuenter Roeck .dev_release = hwmon_dev_release, 143bab2243cSGuenter Roeck }; 1441236441fSMark M. Hoffman 1454ca5f468SJonathan Cameron static DEFINE_IDA(hwmon_ida); 1461236441fSMark M. Hoffman 147d560168bSGuenter Roeck /* Thermal zone handling */ 148d560168bSGuenter Roeck 14986430c1aSGuenter Roeck /* 15086430c1aSGuenter Roeck * The complex conditional is necessary to avoid a cyclic dependency 15186430c1aSGuenter Roeck * between hwmon and thermal_sys modules. 15286430c1aSGuenter Roeck */ 153f3735332SDaniel Lezcano #ifdef CONFIG_THERMAL_OF 154e5181331SDaniel Lezcano static int hwmon_thermal_get_temp(struct thermal_zone_device *tz, int *temp) 155d560168bSGuenter Roeck { 1560ce637a5SDaniel Lezcano struct hwmon_thermal_data *tdata = thermal_zone_device_priv(tz); 1573bf8bdcfSGuenter Roeck struct hwmon_device *hwdev = to_hwmon_device(tdata->dev); 158d560168bSGuenter Roeck int ret; 159d560168bSGuenter Roeck long t; 160d560168bSGuenter Roeck 1613bf8bdcfSGuenter Roeck ret = hwdev->chip->ops->read(tdata->dev, hwmon_temp, hwmon_temp_input, 162d560168bSGuenter Roeck tdata->index, &t); 163d560168bSGuenter Roeck if (ret < 0) 164d560168bSGuenter Roeck return ret; 165d560168bSGuenter Roeck 166d560168bSGuenter Roeck *temp = t; 167d560168bSGuenter Roeck 168d560168bSGuenter Roeck return 0; 169d560168bSGuenter Roeck } 170d560168bSGuenter Roeck 171e5181331SDaniel Lezcano static int hwmon_thermal_set_trips(struct thermal_zone_device *tz, int low, int high) 172a5f6c0f8SDmitry Osipenko { 1730ce637a5SDaniel Lezcano struct hwmon_thermal_data *tdata = thermal_zone_device_priv(tz); 174a5f6c0f8SDmitry Osipenko struct hwmon_device *hwdev = to_hwmon_device(tdata->dev); 175a5f6c0f8SDmitry Osipenko const struct hwmon_chip_info *chip = hwdev->chip; 176d8cc9415SKrzysztof Kozlowski const struct hwmon_channel_info * const *info = chip->info; 177a5f6c0f8SDmitry Osipenko unsigned int i; 178a5f6c0f8SDmitry Osipenko int err; 179a5f6c0f8SDmitry Osipenko 180a5f6c0f8SDmitry Osipenko if (!chip->ops->write) 181a5f6c0f8SDmitry Osipenko return 0; 182a5f6c0f8SDmitry Osipenko 183a5f6c0f8SDmitry Osipenko for (i = 0; info[i] && info[i]->type != hwmon_temp; i++) 184a5f6c0f8SDmitry Osipenko continue; 185a5f6c0f8SDmitry Osipenko 186a5f6c0f8SDmitry Osipenko if (!info[i]) 187a5f6c0f8SDmitry Osipenko return 0; 188a5f6c0f8SDmitry Osipenko 189a5f6c0f8SDmitry Osipenko if (info[i]->config[tdata->index] & HWMON_T_MIN) { 190a5f6c0f8SDmitry Osipenko err = chip->ops->write(tdata->dev, hwmon_temp, 191a5f6c0f8SDmitry Osipenko hwmon_temp_min, tdata->index, low); 192a5f6c0f8SDmitry Osipenko if (err && err != -EOPNOTSUPP) 193a5f6c0f8SDmitry Osipenko return err; 194a5f6c0f8SDmitry Osipenko } 195a5f6c0f8SDmitry Osipenko 196a5f6c0f8SDmitry Osipenko if (info[i]->config[tdata->index] & HWMON_T_MAX) { 197a5f6c0f8SDmitry Osipenko err = chip->ops->write(tdata->dev, hwmon_temp, 198a5f6c0f8SDmitry Osipenko hwmon_temp_max, tdata->index, high); 199a5f6c0f8SDmitry Osipenko if (err && err != -EOPNOTSUPP) 200a5f6c0f8SDmitry Osipenko return err; 201a5f6c0f8SDmitry Osipenko } 202a5f6c0f8SDmitry Osipenko 203a5f6c0f8SDmitry Osipenko return 0; 204a5f6c0f8SDmitry Osipenko } 205a5f6c0f8SDmitry Osipenko 206e5181331SDaniel Lezcano static const struct thermal_zone_device_ops hwmon_thermal_ops = { 207d560168bSGuenter Roeck .get_temp = hwmon_thermal_get_temp, 208a5f6c0f8SDmitry Osipenko .set_trips = hwmon_thermal_set_trips, 209d560168bSGuenter Roeck }; 210d560168bSGuenter Roeck 2111597b374SGuenter Roeck static void hwmon_thermal_remove_sensor(void *data) 2121597b374SGuenter Roeck { 2131597b374SGuenter Roeck list_del(data); 2141597b374SGuenter Roeck } 2151597b374SGuenter Roeck 2163bf8bdcfSGuenter Roeck static int hwmon_thermal_add_sensor(struct device *dev, int index) 217d560168bSGuenter Roeck { 2181597b374SGuenter Roeck struct hwmon_device *hwdev = to_hwmon_device(dev); 219d560168bSGuenter Roeck struct hwmon_thermal_data *tdata; 22047c332deSLinus Walleij struct thermal_zone_device *tzd; 2211597b374SGuenter Roeck int err; 222d560168bSGuenter Roeck 223d560168bSGuenter Roeck tdata = devm_kzalloc(dev, sizeof(*tdata), GFP_KERNEL); 224d560168bSGuenter Roeck if (!tdata) 225d560168bSGuenter Roeck return -ENOMEM; 226d560168bSGuenter Roeck 2273bf8bdcfSGuenter Roeck tdata->dev = dev; 228d560168bSGuenter Roeck tdata->index = index; 229d560168bSGuenter Roeck 230e5181331SDaniel Lezcano tzd = devm_thermal_of_zone_register(dev, index, tdata, 231d560168bSGuenter Roeck &hwmon_thermal_ops); 2321b5f517cSGuenter Roeck if (IS_ERR(tzd)) { 2331b5f517cSGuenter Roeck if (PTR_ERR(tzd) != -ENODEV) 23447c332deSLinus Walleij return PTR_ERR(tzd); 2351b5f517cSGuenter Roeck dev_info(dev, "temp%d_input not attached to any thermal zone\n", 2361b5f517cSGuenter Roeck index + 1); 2371b5f517cSGuenter Roeck devm_kfree(dev, tdata); 2381b5f517cSGuenter Roeck return 0; 2391b5f517cSGuenter Roeck } 240d560168bSGuenter Roeck 2411597b374SGuenter Roeck err = devm_add_action(dev, hwmon_thermal_remove_sensor, &tdata->node); 2421597b374SGuenter Roeck if (err) 2431597b374SGuenter Roeck return err; 2441597b374SGuenter Roeck 2451597b374SGuenter Roeck tdata->tzd = tzd; 2461597b374SGuenter Roeck list_add(&tdata->node, &hwdev->tzdata); 2471597b374SGuenter Roeck 248d560168bSGuenter Roeck return 0; 249d560168bSGuenter Roeck } 25044e3ad88SAkinobu Mita 25144e3ad88SAkinobu Mita static int hwmon_thermal_register_sensors(struct device *dev) 25244e3ad88SAkinobu Mita { 25344e3ad88SAkinobu Mita struct hwmon_device *hwdev = to_hwmon_device(dev); 25444e3ad88SAkinobu Mita const struct hwmon_chip_info *chip = hwdev->chip; 255d8cc9415SKrzysztof Kozlowski const struct hwmon_channel_info * const *info = chip->info; 25644e3ad88SAkinobu Mita void *drvdata = dev_get_drvdata(dev); 25744e3ad88SAkinobu Mita int i; 25844e3ad88SAkinobu Mita 25944e3ad88SAkinobu Mita for (i = 1; info[i]; i++) { 26044e3ad88SAkinobu Mita int j; 26144e3ad88SAkinobu Mita 26244e3ad88SAkinobu Mita if (info[i]->type != hwmon_temp) 26344e3ad88SAkinobu Mita continue; 26444e3ad88SAkinobu Mita 26544e3ad88SAkinobu Mita for (j = 0; info[i]->config[j]; j++) { 26644e3ad88SAkinobu Mita int err; 26744e3ad88SAkinobu Mita 26844e3ad88SAkinobu Mita if (!(info[i]->config[j] & HWMON_T_INPUT) || 26944e3ad88SAkinobu Mita !chip->ops->is_visible(drvdata, hwmon_temp, 27044e3ad88SAkinobu Mita hwmon_temp_input, j)) 27144e3ad88SAkinobu Mita continue; 27244e3ad88SAkinobu Mita 27344e3ad88SAkinobu Mita err = hwmon_thermal_add_sensor(dev, j); 27444e3ad88SAkinobu Mita if (err) 27544e3ad88SAkinobu Mita return err; 27644e3ad88SAkinobu Mita } 27744e3ad88SAkinobu Mita } 27844e3ad88SAkinobu Mita 27944e3ad88SAkinobu Mita return 0; 28044e3ad88SAkinobu Mita } 28144e3ad88SAkinobu Mita 2821597b374SGuenter Roeck static void hwmon_thermal_notify(struct device *dev, int index) 2831597b374SGuenter Roeck { 2841597b374SGuenter Roeck struct hwmon_device *hwdev = to_hwmon_device(dev); 2851597b374SGuenter Roeck struct hwmon_thermal_data *tzdata; 2861597b374SGuenter Roeck 2871597b374SGuenter Roeck list_for_each_entry(tzdata, &hwdev->tzdata, node) { 2881597b374SGuenter Roeck if (tzdata->index == index) { 2891597b374SGuenter Roeck thermal_zone_device_update(tzdata->tzd, 2901597b374SGuenter Roeck THERMAL_EVENT_UNSPECIFIED); 2911597b374SGuenter Roeck } 2921597b374SGuenter Roeck } 2931597b374SGuenter Roeck } 2941597b374SGuenter Roeck 295d560168bSGuenter Roeck #else 29644e3ad88SAkinobu Mita static int hwmon_thermal_register_sensors(struct device *dev) 297d560168bSGuenter Roeck { 298d560168bSGuenter Roeck return 0; 299d560168bSGuenter Roeck } 3001597b374SGuenter Roeck 3011597b374SGuenter Roeck static void hwmon_thermal_notify(struct device *dev, int index) { } 3021597b374SGuenter Roeck 30386430c1aSGuenter Roeck #endif /* IS_REACHABLE(CONFIG_THERMAL) && ... */ 304d560168bSGuenter Roeck 30561b8ab2cSNicolin Chen static int hwmon_attr_base(enum hwmon_sensor_types type) 30661b8ab2cSNicolin Chen { 3074413405fSDr. David Alan Gilbert if (type == hwmon_in || type == hwmon_intrusion) 30861b8ab2cSNicolin Chen return 0; 30961b8ab2cSNicolin Chen return 1; 31061b8ab2cSNicolin Chen } 31161b8ab2cSNicolin Chen 312d560168bSGuenter Roeck /* sysfs attribute management */ 313d560168bSGuenter Roeck 314d560168bSGuenter Roeck static ssize_t hwmon_attr_show(struct device *dev, 315d560168bSGuenter Roeck struct device_attribute *devattr, char *buf) 316d560168bSGuenter Roeck { 317d560168bSGuenter Roeck struct hwmon_device_attribute *hattr = to_hwmon_attr(devattr); 318d560168bSGuenter Roeck long val; 319d560168bSGuenter Roeck int ret; 320d560168bSGuenter Roeck 321d560168bSGuenter Roeck ret = hattr->ops->read(dev, hattr->type, hattr->attr, hattr->index, 322d560168bSGuenter Roeck &val); 323d560168bSGuenter Roeck if (ret < 0) 324d560168bSGuenter Roeck return ret; 325d560168bSGuenter Roeck 32661b8ab2cSNicolin Chen trace_hwmon_attr_show(hattr->index + hwmon_attr_base(hattr->type), 32761b8ab2cSNicolin Chen hattr->name, val); 32861b8ab2cSNicolin Chen 329d560168bSGuenter Roeck return sprintf(buf, "%ld\n", val); 330d560168bSGuenter Roeck } 331d560168bSGuenter Roeck 332e159ab5cSGuenter Roeck static ssize_t hwmon_attr_show_string(struct device *dev, 333e159ab5cSGuenter Roeck struct device_attribute *devattr, 334e159ab5cSGuenter Roeck char *buf) 335e159ab5cSGuenter Roeck { 336e159ab5cSGuenter Roeck struct hwmon_device_attribute *hattr = to_hwmon_attr(devattr); 33761b8ab2cSNicolin Chen enum hwmon_sensor_types type = hattr->type; 3385ba6bcbcSJean Delvare const char *s; 339e159ab5cSGuenter Roeck int ret; 340e159ab5cSGuenter Roeck 341e159ab5cSGuenter Roeck ret = hattr->ops->read_string(dev, hattr->type, hattr->attr, 342e159ab5cSGuenter Roeck hattr->index, &s); 343e159ab5cSGuenter Roeck if (ret < 0) 344e159ab5cSGuenter Roeck return ret; 345e159ab5cSGuenter Roeck 34661b8ab2cSNicolin Chen trace_hwmon_attr_show_string(hattr->index + hwmon_attr_base(type), 34761b8ab2cSNicolin Chen hattr->name, s); 34861b8ab2cSNicolin Chen 349e159ab5cSGuenter Roeck return sprintf(buf, "%s\n", s); 350e159ab5cSGuenter Roeck } 351e159ab5cSGuenter Roeck 352d560168bSGuenter Roeck static ssize_t hwmon_attr_store(struct device *dev, 353d560168bSGuenter Roeck struct device_attribute *devattr, 354d560168bSGuenter Roeck const char *buf, size_t count) 355d560168bSGuenter Roeck { 356d560168bSGuenter Roeck struct hwmon_device_attribute *hattr = to_hwmon_attr(devattr); 357d560168bSGuenter Roeck long val; 358d560168bSGuenter Roeck int ret; 359d560168bSGuenter Roeck 360d560168bSGuenter Roeck ret = kstrtol(buf, 10, &val); 361d560168bSGuenter Roeck if (ret < 0) 362d560168bSGuenter Roeck return ret; 363d560168bSGuenter Roeck 364d560168bSGuenter Roeck ret = hattr->ops->write(dev, hattr->type, hattr->attr, hattr->index, 365d560168bSGuenter Roeck val); 366d560168bSGuenter Roeck if (ret < 0) 367d560168bSGuenter Roeck return ret; 368d560168bSGuenter Roeck 36961b8ab2cSNicolin Chen trace_hwmon_attr_store(hattr->index + hwmon_attr_base(hattr->type), 37061b8ab2cSNicolin Chen hattr->name, val); 371d560168bSGuenter Roeck 37261b8ab2cSNicolin Chen return count; 373d560168bSGuenter Roeck } 374d560168bSGuenter Roeck 375e159ab5cSGuenter Roeck static bool is_string_attr(enum hwmon_sensor_types type, u32 attr) 376e159ab5cSGuenter Roeck { 377e159ab5cSGuenter Roeck return (type == hwmon_temp && attr == hwmon_temp_label) || 378e159ab5cSGuenter Roeck (type == hwmon_in && attr == hwmon_in_label) || 379e159ab5cSGuenter Roeck (type == hwmon_curr && attr == hwmon_curr_label) || 380e159ab5cSGuenter Roeck (type == hwmon_power && attr == hwmon_power_label) || 381e159ab5cSGuenter Roeck (type == hwmon_energy && attr == hwmon_energy_label) || 382e159ab5cSGuenter Roeck (type == hwmon_humidity && attr == hwmon_humidity_label) || 383e159ab5cSGuenter Roeck (type == hwmon_fan && attr == hwmon_fan_label); 384e159ab5cSGuenter Roeck } 385e159ab5cSGuenter Roeck 3863bf8bdcfSGuenter Roeck static struct attribute *hwmon_genattr(const void *drvdata, 387d560168bSGuenter Roeck enum hwmon_sensor_types type, 388d560168bSGuenter Roeck u32 attr, 389d560168bSGuenter Roeck int index, 390d560168bSGuenter Roeck const char *template, 391d560168bSGuenter Roeck const struct hwmon_ops *ops) 392d560168bSGuenter Roeck { 393d560168bSGuenter Roeck struct hwmon_device_attribute *hattr; 394d560168bSGuenter Roeck struct device_attribute *dattr; 395d560168bSGuenter Roeck struct attribute *a; 396d560168bSGuenter Roeck umode_t mode; 3973b443defSRasmus Villemoes const char *name; 398e159ab5cSGuenter Roeck bool is_string = is_string_attr(type, attr); 399d560168bSGuenter Roeck 400d560168bSGuenter Roeck /* The attribute is invisible if there is no template string */ 401d560168bSGuenter Roeck if (!template) 402d560168bSGuenter Roeck return ERR_PTR(-ENOENT); 403d560168bSGuenter Roeck 404d560168bSGuenter Roeck mode = ops->is_visible(drvdata, type, attr, index); 405d560168bSGuenter Roeck if (!mode) 406d560168bSGuenter Roeck return ERR_PTR(-ENOENT); 407d560168bSGuenter Roeck 4080d87116fSGuenter Roeck if ((mode & 0444) && ((is_string && !ops->read_string) || 409e159ab5cSGuenter Roeck (!is_string && !ops->read))) 410d560168bSGuenter Roeck return ERR_PTR(-EINVAL); 4110d87116fSGuenter Roeck if ((mode & 0222) && !ops->write) 412d560168bSGuenter Roeck return ERR_PTR(-EINVAL); 413d560168bSGuenter Roeck 4143bf8bdcfSGuenter Roeck hattr = kzalloc(sizeof(*hattr), GFP_KERNEL); 415d560168bSGuenter Roeck if (!hattr) 416d560168bSGuenter Roeck return ERR_PTR(-ENOMEM); 417d560168bSGuenter Roeck 4183a412d5eSGuenter Roeck if (type == hwmon_chip) { 4193b443defSRasmus Villemoes name = template; 4203a412d5eSGuenter Roeck } else { 4213a412d5eSGuenter Roeck scnprintf(hattr->name, sizeof(hattr->name), template, 4223a412d5eSGuenter Roeck index + hwmon_attr_base(type)); 4233a412d5eSGuenter Roeck name = hattr->name; 4243a412d5eSGuenter Roeck } 4253a412d5eSGuenter Roeck 426d560168bSGuenter Roeck hattr->type = type; 427d560168bSGuenter Roeck hattr->attr = attr; 428d560168bSGuenter Roeck hattr->index = index; 429d560168bSGuenter Roeck hattr->ops = ops; 430d560168bSGuenter Roeck 431d560168bSGuenter Roeck dattr = &hattr->dev_attr; 432e159ab5cSGuenter Roeck dattr->show = is_string ? hwmon_attr_show_string : hwmon_attr_show; 433d560168bSGuenter Roeck dattr->store = hwmon_attr_store; 434d560168bSGuenter Roeck 435d560168bSGuenter Roeck a = &dattr->attr; 436d560168bSGuenter Roeck sysfs_attr_init(a); 437d560168bSGuenter Roeck a->name = name; 438d560168bSGuenter Roeck a->mode = mode; 439d560168bSGuenter Roeck 440d560168bSGuenter Roeck return a; 441d560168bSGuenter Roeck } 442d560168bSGuenter Roeck 443f4d325d5SGuenter Roeck /* 444f4d325d5SGuenter Roeck * Chip attributes are not attribute templates but actual sysfs attributes. 445f4d325d5SGuenter Roeck * See hwmon_genattr() for special handling. 446f4d325d5SGuenter Roeck */ 447f4d325d5SGuenter Roeck static const char * const hwmon_chip_attrs[] = { 448d560168bSGuenter Roeck [hwmon_chip_temp_reset_history] = "temp_reset_history", 44900d616cfSGuenter Roeck [hwmon_chip_in_reset_history] = "in_reset_history", 4509b26947cSGuenter Roeck [hwmon_chip_curr_reset_history] = "curr_reset_history", 451b308f5c7SGuenter Roeck [hwmon_chip_power_reset_history] = "power_reset_history", 452d560168bSGuenter Roeck [hwmon_chip_update_interval] = "update_interval", 453d560168bSGuenter Roeck [hwmon_chip_alarms] = "alarms", 4549f00995eSGuenter Roeck [hwmon_chip_samples] = "samples", 4559f00995eSGuenter Roeck [hwmon_chip_curr_samples] = "curr_samples", 4569f00995eSGuenter Roeck [hwmon_chip_in_samples] = "in_samples", 4579f00995eSGuenter Roeck [hwmon_chip_power_samples] = "power_samples", 4589f00995eSGuenter Roeck [hwmon_chip_temp_samples] = "temp_samples", 459fe6ac237SJames Seo [hwmon_chip_beep_enable] = "beep_enable", 460d560168bSGuenter Roeck }; 461d560168bSGuenter Roeck 462d560168bSGuenter Roeck static const char * const hwmon_temp_attr_templates[] = { 463002c6b54SGuenter Roeck [hwmon_temp_enable] = "temp%d_enable", 464d560168bSGuenter Roeck [hwmon_temp_input] = "temp%d_input", 465d560168bSGuenter Roeck [hwmon_temp_type] = "temp%d_type", 466d560168bSGuenter Roeck [hwmon_temp_lcrit] = "temp%d_lcrit", 467d560168bSGuenter Roeck [hwmon_temp_lcrit_hyst] = "temp%d_lcrit_hyst", 468d560168bSGuenter Roeck [hwmon_temp_min] = "temp%d_min", 469d560168bSGuenter Roeck [hwmon_temp_min_hyst] = "temp%d_min_hyst", 470d560168bSGuenter Roeck [hwmon_temp_max] = "temp%d_max", 471d560168bSGuenter Roeck [hwmon_temp_max_hyst] = "temp%d_max_hyst", 472d560168bSGuenter Roeck [hwmon_temp_crit] = "temp%d_crit", 473d560168bSGuenter Roeck [hwmon_temp_crit_hyst] = "temp%d_crit_hyst", 474d560168bSGuenter Roeck [hwmon_temp_emergency] = "temp%d_emergency", 475d560168bSGuenter Roeck [hwmon_temp_emergency_hyst] = "temp%d_emergency_hyst", 476d560168bSGuenter Roeck [hwmon_temp_alarm] = "temp%d_alarm", 477d560168bSGuenter Roeck [hwmon_temp_lcrit_alarm] = "temp%d_lcrit_alarm", 478d560168bSGuenter Roeck [hwmon_temp_min_alarm] = "temp%d_min_alarm", 479d560168bSGuenter Roeck [hwmon_temp_max_alarm] = "temp%d_max_alarm", 480d560168bSGuenter Roeck [hwmon_temp_crit_alarm] = "temp%d_crit_alarm", 481d560168bSGuenter Roeck [hwmon_temp_emergency_alarm] = "temp%d_emergency_alarm", 482d560168bSGuenter Roeck [hwmon_temp_fault] = "temp%d_fault", 483d560168bSGuenter Roeck [hwmon_temp_offset] = "temp%d_offset", 484d560168bSGuenter Roeck [hwmon_temp_label] = "temp%d_label", 485d560168bSGuenter Roeck [hwmon_temp_lowest] = "temp%d_lowest", 486d560168bSGuenter Roeck [hwmon_temp_highest] = "temp%d_highest", 487d560168bSGuenter Roeck [hwmon_temp_reset_history] = "temp%d_reset_history", 4881967f712SZbigniew Lukwinski [hwmon_temp_rated_min] = "temp%d_rated_min", 4891967f712SZbigniew Lukwinski [hwmon_temp_rated_max] = "temp%d_rated_max", 490fe6ac237SJames Seo [hwmon_temp_beep] = "temp%d_beep", 491d560168bSGuenter Roeck }; 492d560168bSGuenter Roeck 49300d616cfSGuenter Roeck static const char * const hwmon_in_attr_templates[] = { 494002c6b54SGuenter Roeck [hwmon_in_enable] = "in%d_enable", 49500d616cfSGuenter Roeck [hwmon_in_input] = "in%d_input", 49600d616cfSGuenter Roeck [hwmon_in_min] = "in%d_min", 49700d616cfSGuenter Roeck [hwmon_in_max] = "in%d_max", 49800d616cfSGuenter Roeck [hwmon_in_lcrit] = "in%d_lcrit", 49900d616cfSGuenter Roeck [hwmon_in_crit] = "in%d_crit", 50000d616cfSGuenter Roeck [hwmon_in_average] = "in%d_average", 50100d616cfSGuenter Roeck [hwmon_in_lowest] = "in%d_lowest", 50200d616cfSGuenter Roeck [hwmon_in_highest] = "in%d_highest", 50300d616cfSGuenter Roeck [hwmon_in_reset_history] = "in%d_reset_history", 50400d616cfSGuenter Roeck [hwmon_in_label] = "in%d_label", 50500d616cfSGuenter Roeck [hwmon_in_alarm] = "in%d_alarm", 50600d616cfSGuenter Roeck [hwmon_in_min_alarm] = "in%d_min_alarm", 50700d616cfSGuenter Roeck [hwmon_in_max_alarm] = "in%d_max_alarm", 50800d616cfSGuenter Roeck [hwmon_in_lcrit_alarm] = "in%d_lcrit_alarm", 50900d616cfSGuenter Roeck [hwmon_in_crit_alarm] = "in%d_crit_alarm", 5101967f712SZbigniew Lukwinski [hwmon_in_rated_min] = "in%d_rated_min", 5111967f712SZbigniew Lukwinski [hwmon_in_rated_max] = "in%d_rated_max", 512fe6ac237SJames Seo [hwmon_in_beep] = "in%d_beep", 513*35c1bfb9SNuno Sa [hwmon_in_fault] = "in%d_fault", 51400d616cfSGuenter Roeck }; 51500d616cfSGuenter Roeck 5169b26947cSGuenter Roeck static const char * const hwmon_curr_attr_templates[] = { 517002c6b54SGuenter Roeck [hwmon_curr_enable] = "curr%d_enable", 5189b26947cSGuenter Roeck [hwmon_curr_input] = "curr%d_input", 5199b26947cSGuenter Roeck [hwmon_curr_min] = "curr%d_min", 5209b26947cSGuenter Roeck [hwmon_curr_max] = "curr%d_max", 5219b26947cSGuenter Roeck [hwmon_curr_lcrit] = "curr%d_lcrit", 5229b26947cSGuenter Roeck [hwmon_curr_crit] = "curr%d_crit", 5239b26947cSGuenter Roeck [hwmon_curr_average] = "curr%d_average", 5249b26947cSGuenter Roeck [hwmon_curr_lowest] = "curr%d_lowest", 5259b26947cSGuenter Roeck [hwmon_curr_highest] = "curr%d_highest", 5269b26947cSGuenter Roeck [hwmon_curr_reset_history] = "curr%d_reset_history", 5279b26947cSGuenter Roeck [hwmon_curr_label] = "curr%d_label", 5289b26947cSGuenter Roeck [hwmon_curr_alarm] = "curr%d_alarm", 5299b26947cSGuenter Roeck [hwmon_curr_min_alarm] = "curr%d_min_alarm", 5309b26947cSGuenter Roeck [hwmon_curr_max_alarm] = "curr%d_max_alarm", 5319b26947cSGuenter Roeck [hwmon_curr_lcrit_alarm] = "curr%d_lcrit_alarm", 5329b26947cSGuenter Roeck [hwmon_curr_crit_alarm] = "curr%d_crit_alarm", 5331967f712SZbigniew Lukwinski [hwmon_curr_rated_min] = "curr%d_rated_min", 5341967f712SZbigniew Lukwinski [hwmon_curr_rated_max] = "curr%d_rated_max", 535fe6ac237SJames Seo [hwmon_curr_beep] = "curr%d_beep", 5369b26947cSGuenter Roeck }; 5379b26947cSGuenter Roeck 538b308f5c7SGuenter Roeck static const char * const hwmon_power_attr_templates[] = { 539002c6b54SGuenter Roeck [hwmon_power_enable] = "power%d_enable", 540b308f5c7SGuenter Roeck [hwmon_power_average] = "power%d_average", 541b308f5c7SGuenter Roeck [hwmon_power_average_interval] = "power%d_average_interval", 542b308f5c7SGuenter Roeck [hwmon_power_average_interval_max] = "power%d_interval_max", 543b308f5c7SGuenter Roeck [hwmon_power_average_interval_min] = "power%d_interval_min", 544b308f5c7SGuenter Roeck [hwmon_power_average_highest] = "power%d_average_highest", 545b308f5c7SGuenter Roeck [hwmon_power_average_lowest] = "power%d_average_lowest", 546b308f5c7SGuenter Roeck [hwmon_power_average_max] = "power%d_average_max", 547b308f5c7SGuenter Roeck [hwmon_power_average_min] = "power%d_average_min", 548b308f5c7SGuenter Roeck [hwmon_power_input] = "power%d_input", 549b308f5c7SGuenter Roeck [hwmon_power_input_highest] = "power%d_input_highest", 550b308f5c7SGuenter Roeck [hwmon_power_input_lowest] = "power%d_input_lowest", 551b308f5c7SGuenter Roeck [hwmon_power_reset_history] = "power%d_reset_history", 552b308f5c7SGuenter Roeck [hwmon_power_accuracy] = "power%d_accuracy", 553b308f5c7SGuenter Roeck [hwmon_power_cap] = "power%d_cap", 554b308f5c7SGuenter Roeck [hwmon_power_cap_hyst] = "power%d_cap_hyst", 555b308f5c7SGuenter Roeck [hwmon_power_cap_max] = "power%d_cap_max", 556b308f5c7SGuenter Roeck [hwmon_power_cap_min] = "power%d_cap_min", 557aa7f29b0SAndrew Lunn [hwmon_power_min] = "power%d_min", 558b308f5c7SGuenter Roeck [hwmon_power_max] = "power%d_max", 559aa7f29b0SAndrew Lunn [hwmon_power_lcrit] = "power%d_lcrit", 560b308f5c7SGuenter Roeck [hwmon_power_crit] = "power%d_crit", 561b308f5c7SGuenter Roeck [hwmon_power_label] = "power%d_label", 562b308f5c7SGuenter Roeck [hwmon_power_alarm] = "power%d_alarm", 563b308f5c7SGuenter Roeck [hwmon_power_cap_alarm] = "power%d_cap_alarm", 564aa7f29b0SAndrew Lunn [hwmon_power_min_alarm] = "power%d_min_alarm", 565b308f5c7SGuenter Roeck [hwmon_power_max_alarm] = "power%d_max_alarm", 566aa7f29b0SAndrew Lunn [hwmon_power_lcrit_alarm] = "power%d_lcrit_alarm", 567b308f5c7SGuenter Roeck [hwmon_power_crit_alarm] = "power%d_crit_alarm", 5681967f712SZbigniew Lukwinski [hwmon_power_rated_min] = "power%d_rated_min", 5691967f712SZbigniew Lukwinski [hwmon_power_rated_max] = "power%d_rated_max", 570b308f5c7SGuenter Roeck }; 571b308f5c7SGuenter Roeck 5726bfcca44SGuenter Roeck static const char * const hwmon_energy_attr_templates[] = { 573002c6b54SGuenter Roeck [hwmon_energy_enable] = "energy%d_enable", 5746bfcca44SGuenter Roeck [hwmon_energy_input] = "energy%d_input", 5756bfcca44SGuenter Roeck [hwmon_energy_label] = "energy%d_label", 5766bfcca44SGuenter Roeck }; 5776bfcca44SGuenter Roeck 5786bfcca44SGuenter Roeck static const char * const hwmon_humidity_attr_templates[] = { 579002c6b54SGuenter Roeck [hwmon_humidity_enable] = "humidity%d_enable", 5806bfcca44SGuenter Roeck [hwmon_humidity_input] = "humidity%d_input", 5816bfcca44SGuenter Roeck [hwmon_humidity_label] = "humidity%d_label", 5826bfcca44SGuenter Roeck [hwmon_humidity_min] = "humidity%d_min", 5836bfcca44SGuenter Roeck [hwmon_humidity_min_hyst] = "humidity%d_min_hyst", 5846bfcca44SGuenter Roeck [hwmon_humidity_max] = "humidity%d_max", 5856bfcca44SGuenter Roeck [hwmon_humidity_max_hyst] = "humidity%d_max_hyst", 5866bfcca44SGuenter Roeck [hwmon_humidity_alarm] = "humidity%d_alarm", 5876bfcca44SGuenter Roeck [hwmon_humidity_fault] = "humidity%d_fault", 5881967f712SZbigniew Lukwinski [hwmon_humidity_rated_min] = "humidity%d_rated_min", 5891967f712SZbigniew Lukwinski [hwmon_humidity_rated_max] = "humidity%d_rated_max", 5906bfcca44SGuenter Roeck }; 5916bfcca44SGuenter Roeck 5928faee73fSGuenter Roeck static const char * const hwmon_fan_attr_templates[] = { 593002c6b54SGuenter Roeck [hwmon_fan_enable] = "fan%d_enable", 5948faee73fSGuenter Roeck [hwmon_fan_input] = "fan%d_input", 5958faee73fSGuenter Roeck [hwmon_fan_label] = "fan%d_label", 5968faee73fSGuenter Roeck [hwmon_fan_min] = "fan%d_min", 5978faee73fSGuenter Roeck [hwmon_fan_max] = "fan%d_max", 5988faee73fSGuenter Roeck [hwmon_fan_div] = "fan%d_div", 5998faee73fSGuenter Roeck [hwmon_fan_pulses] = "fan%d_pulses", 6008faee73fSGuenter Roeck [hwmon_fan_target] = "fan%d_target", 6018faee73fSGuenter Roeck [hwmon_fan_alarm] = "fan%d_alarm", 6028faee73fSGuenter Roeck [hwmon_fan_min_alarm] = "fan%d_min_alarm", 6038faee73fSGuenter Roeck [hwmon_fan_max_alarm] = "fan%d_max_alarm", 6048faee73fSGuenter Roeck [hwmon_fan_fault] = "fan%d_fault", 605fe6ac237SJames Seo [hwmon_fan_beep] = "fan%d_beep", 6068faee73fSGuenter Roeck }; 6078faee73fSGuenter Roeck 608f9f7bb3aSGuenter Roeck static const char * const hwmon_pwm_attr_templates[] = { 609f9f7bb3aSGuenter Roeck [hwmon_pwm_input] = "pwm%d", 610f9f7bb3aSGuenter Roeck [hwmon_pwm_enable] = "pwm%d_enable", 611f9f7bb3aSGuenter Roeck [hwmon_pwm_mode] = "pwm%d_mode", 612f9f7bb3aSGuenter Roeck [hwmon_pwm_freq] = "pwm%d_freq", 613e75d16e5SArmin Wolf [hwmon_pwm_auto_channels_temp] = "pwm%d_auto_channels_temp", 614f9f7bb3aSGuenter Roeck }; 615f9f7bb3aSGuenter Roeck 6164413405fSDr. David Alan Gilbert static const char * const hwmon_intrusion_attr_templates[] = { 6174413405fSDr. David Alan Gilbert [hwmon_intrusion_alarm] = "intrusion%d_alarm", 6184413405fSDr. David Alan Gilbert [hwmon_intrusion_beep] = "intrusion%d_beep", 6194413405fSDr. David Alan Gilbert }; 6204413405fSDr. David Alan Gilbert 621d560168bSGuenter Roeck static const char * const *__templates[] = { 622f4d325d5SGuenter Roeck [hwmon_chip] = hwmon_chip_attrs, 623d560168bSGuenter Roeck [hwmon_temp] = hwmon_temp_attr_templates, 62400d616cfSGuenter Roeck [hwmon_in] = hwmon_in_attr_templates, 6259b26947cSGuenter Roeck [hwmon_curr] = hwmon_curr_attr_templates, 626b308f5c7SGuenter Roeck [hwmon_power] = hwmon_power_attr_templates, 6276bfcca44SGuenter Roeck [hwmon_energy] = hwmon_energy_attr_templates, 6286bfcca44SGuenter Roeck [hwmon_humidity] = hwmon_humidity_attr_templates, 6298faee73fSGuenter Roeck [hwmon_fan] = hwmon_fan_attr_templates, 630f9f7bb3aSGuenter Roeck [hwmon_pwm] = hwmon_pwm_attr_templates, 6314413405fSDr. David Alan Gilbert [hwmon_intrusion] = hwmon_intrusion_attr_templates, 632d560168bSGuenter Roeck }; 633d560168bSGuenter Roeck 634d560168bSGuenter Roeck static const int __templates_size[] = { 635f4d325d5SGuenter Roeck [hwmon_chip] = ARRAY_SIZE(hwmon_chip_attrs), 636d560168bSGuenter Roeck [hwmon_temp] = ARRAY_SIZE(hwmon_temp_attr_templates), 63700d616cfSGuenter Roeck [hwmon_in] = ARRAY_SIZE(hwmon_in_attr_templates), 6389b26947cSGuenter Roeck [hwmon_curr] = ARRAY_SIZE(hwmon_curr_attr_templates), 639b308f5c7SGuenter Roeck [hwmon_power] = ARRAY_SIZE(hwmon_power_attr_templates), 6406bfcca44SGuenter Roeck [hwmon_energy] = ARRAY_SIZE(hwmon_energy_attr_templates), 6416bfcca44SGuenter Roeck [hwmon_humidity] = ARRAY_SIZE(hwmon_humidity_attr_templates), 6428faee73fSGuenter Roeck [hwmon_fan] = ARRAY_SIZE(hwmon_fan_attr_templates), 643f9f7bb3aSGuenter Roeck [hwmon_pwm] = ARRAY_SIZE(hwmon_pwm_attr_templates), 6444413405fSDr. David Alan Gilbert [hwmon_intrusion] = ARRAY_SIZE(hwmon_intrusion_attr_templates), 645d560168bSGuenter Roeck }; 646d560168bSGuenter Roeck 6471597b374SGuenter Roeck int hwmon_notify_event(struct device *dev, enum hwmon_sensor_types type, 6481597b374SGuenter Roeck u32 attr, int channel) 6491597b374SGuenter Roeck { 6507f3cc8f8SGuenter Roeck char event[MAX_SYSFS_ATTR_NAME_LENGTH + 5]; 6511597b374SGuenter Roeck char sattr[MAX_SYSFS_ATTR_NAME_LENGTH]; 6527f3cc8f8SGuenter Roeck char *envp[] = { event, NULL }; 6531597b374SGuenter Roeck const char * const *templates; 6541597b374SGuenter Roeck const char *template; 6551597b374SGuenter Roeck int base; 6561597b374SGuenter Roeck 6571597b374SGuenter Roeck if (type >= ARRAY_SIZE(__templates)) 6581597b374SGuenter Roeck return -EINVAL; 6591597b374SGuenter Roeck if (attr >= __templates_size[type]) 6601597b374SGuenter Roeck return -EINVAL; 6611597b374SGuenter Roeck 6621597b374SGuenter Roeck templates = __templates[type]; 6631597b374SGuenter Roeck template = templates[attr]; 6641597b374SGuenter Roeck 6651597b374SGuenter Roeck base = hwmon_attr_base(type); 6661597b374SGuenter Roeck 6671597b374SGuenter Roeck scnprintf(sattr, MAX_SYSFS_ATTR_NAME_LENGTH, template, base + channel); 6687f3cc8f8SGuenter Roeck scnprintf(event, sizeof(event), "NAME=%s", sattr); 6691597b374SGuenter Roeck sysfs_notify(&dev->kobj, NULL, sattr); 6707f3cc8f8SGuenter Roeck kobject_uevent_env(&dev->kobj, KOBJ_CHANGE, envp); 6711597b374SGuenter Roeck 6721597b374SGuenter Roeck if (type == hwmon_temp) 6731597b374SGuenter Roeck hwmon_thermal_notify(dev, channel); 6741597b374SGuenter Roeck 6751597b374SGuenter Roeck return 0; 6761597b374SGuenter Roeck } 6771597b374SGuenter Roeck EXPORT_SYMBOL_GPL(hwmon_notify_event); 6781597b374SGuenter Roeck 679d560168bSGuenter Roeck static int hwmon_num_channel_attrs(const struct hwmon_channel_info *info) 680d560168bSGuenter Roeck { 681d560168bSGuenter Roeck int i, n; 682d560168bSGuenter Roeck 683d560168bSGuenter Roeck for (i = n = 0; info->config[i]; i++) 684d560168bSGuenter Roeck n += hweight32(info->config[i]); 685d560168bSGuenter Roeck 686d560168bSGuenter Roeck return n; 687d560168bSGuenter Roeck } 688d560168bSGuenter Roeck 6893bf8bdcfSGuenter Roeck static int hwmon_genattrs(const void *drvdata, 690d560168bSGuenter Roeck struct attribute **attrs, 691d560168bSGuenter Roeck const struct hwmon_ops *ops, 692d560168bSGuenter Roeck const struct hwmon_channel_info *info) 693d560168bSGuenter Roeck { 694d560168bSGuenter Roeck const char * const *templates; 695d560168bSGuenter Roeck int template_size; 696d560168bSGuenter Roeck int i, aindex = 0; 697d560168bSGuenter Roeck 698d560168bSGuenter Roeck if (info->type >= ARRAY_SIZE(__templates)) 699d560168bSGuenter Roeck return -EINVAL; 700d560168bSGuenter Roeck 701d560168bSGuenter Roeck templates = __templates[info->type]; 702d560168bSGuenter Roeck template_size = __templates_size[info->type]; 703d560168bSGuenter Roeck 704d560168bSGuenter Roeck for (i = 0; info->config[i]; i++) { 705d560168bSGuenter Roeck u32 attr_mask = info->config[i]; 706d560168bSGuenter Roeck u32 attr; 707d560168bSGuenter Roeck 708d560168bSGuenter Roeck while (attr_mask) { 709d560168bSGuenter Roeck struct attribute *a; 710d560168bSGuenter Roeck 711d560168bSGuenter Roeck attr = __ffs(attr_mask); 712d560168bSGuenter Roeck attr_mask &= ~BIT(attr); 713d560168bSGuenter Roeck if (attr >= template_size) 714d560168bSGuenter Roeck return -EINVAL; 7153bf8bdcfSGuenter Roeck a = hwmon_genattr(drvdata, info->type, attr, i, 716d560168bSGuenter Roeck templates[attr], ops); 717d560168bSGuenter Roeck if (IS_ERR(a)) { 718d560168bSGuenter Roeck if (PTR_ERR(a) != -ENOENT) 719d560168bSGuenter Roeck return PTR_ERR(a); 720d560168bSGuenter Roeck continue; 721d560168bSGuenter Roeck } 722d560168bSGuenter Roeck attrs[aindex++] = a; 723d560168bSGuenter Roeck } 724d560168bSGuenter Roeck } 725d560168bSGuenter Roeck return aindex; 726d560168bSGuenter Roeck } 727d560168bSGuenter Roeck 728d560168bSGuenter Roeck static struct attribute ** 7293bf8bdcfSGuenter Roeck __hwmon_create_attrs(const void *drvdata, const struct hwmon_chip_info *chip) 730d560168bSGuenter Roeck { 731d560168bSGuenter Roeck int ret, i, aindex = 0, nattrs = 0; 732d560168bSGuenter Roeck struct attribute **attrs; 733d560168bSGuenter Roeck 734d560168bSGuenter Roeck for (i = 0; chip->info[i]; i++) 735d560168bSGuenter Roeck nattrs += hwmon_num_channel_attrs(chip->info[i]); 736d560168bSGuenter Roeck 737d560168bSGuenter Roeck if (nattrs == 0) 738d560168bSGuenter Roeck return ERR_PTR(-EINVAL); 739d560168bSGuenter Roeck 7403bf8bdcfSGuenter Roeck attrs = kcalloc(nattrs + 1, sizeof(*attrs), GFP_KERNEL); 741d560168bSGuenter Roeck if (!attrs) 742d560168bSGuenter Roeck return ERR_PTR(-ENOMEM); 743d560168bSGuenter Roeck 744d560168bSGuenter Roeck for (i = 0; chip->info[i]; i++) { 7453bf8bdcfSGuenter Roeck ret = hwmon_genattrs(drvdata, &attrs[aindex], chip->ops, 746d560168bSGuenter Roeck chip->info[i]); 7473bf8bdcfSGuenter Roeck if (ret < 0) { 7483bf8bdcfSGuenter Roeck hwmon_free_attrs(attrs); 749d560168bSGuenter Roeck return ERR_PTR(ret); 7503bf8bdcfSGuenter Roeck } 751d560168bSGuenter Roeck aindex += ret; 752d560168bSGuenter Roeck } 753d560168bSGuenter Roeck 754d560168bSGuenter Roeck return attrs; 755d560168bSGuenter Roeck } 756d560168bSGuenter Roeck 757d560168bSGuenter Roeck static struct device * 758d560168bSGuenter Roeck __hwmon_device_register(struct device *dev, const char *name, void *drvdata, 759d560168bSGuenter Roeck const struct hwmon_chip_info *chip, 760d560168bSGuenter Roeck const struct attribute_group **groups) 761d560168bSGuenter Roeck { 762d560168bSGuenter Roeck struct hwmon_device *hwdev; 763e1c9d6d6SPaul Cercueil const char *label; 764d560168bSGuenter Roeck struct device *hdev; 7652315332eSPhinex Hung struct device *tdev = dev; 76644e3ad88SAkinobu Mita int i, err, id; 767d560168bSGuenter Roeck 76874d3b641SGuenter Roeck /* Complain about invalid characters in hwmon name attribute */ 769d560168bSGuenter Roeck if (name && (!strlen(name) || strpbrk(name, "-* \t\n"))) 77074d3b641SGuenter Roeck dev_warn(dev, 77174d3b641SGuenter Roeck "hwmon: '%s' is not a valid name attribute, please fix\n", 77274d3b641SGuenter Roeck name); 773d560168bSGuenter Roeck 774718fbfa5Skeliu id = ida_alloc(&hwmon_ida, GFP_KERNEL); 775d560168bSGuenter Roeck if (id < 0) 776d560168bSGuenter Roeck return ERR_PTR(id); 777d560168bSGuenter Roeck 778d560168bSGuenter Roeck hwdev = kzalloc(sizeof(*hwdev), GFP_KERNEL); 779d560168bSGuenter Roeck if (hwdev == NULL) { 780d560168bSGuenter Roeck err = -ENOMEM; 781d560168bSGuenter Roeck goto ida_remove; 782d560168bSGuenter Roeck } 783d560168bSGuenter Roeck 784d560168bSGuenter Roeck hdev = &hwdev->dev; 785d560168bSGuenter Roeck 786239552f4SGuenter Roeck if (chip) { 787d560168bSGuenter Roeck struct attribute **attrs; 788b2a4cc3aSGuenter Roeck int ngroups = 2; /* terminating NULL plus &hwdev->groups */ 789d560168bSGuenter Roeck 790d560168bSGuenter Roeck if (groups) 791d560168bSGuenter Roeck for (i = 0; groups[i]; i++) 792d560168bSGuenter Roeck ngroups++; 793d560168bSGuenter Roeck 7943bf8bdcfSGuenter Roeck hwdev->groups = kcalloc(ngroups, sizeof(*groups), GFP_KERNEL); 79538d8ed65SColin Ian King if (!hwdev->groups) { 79638d8ed65SColin Ian King err = -ENOMEM; 79738d8ed65SColin Ian King goto free_hwmon; 79838d8ed65SColin Ian King } 799d560168bSGuenter Roeck 8003bf8bdcfSGuenter Roeck attrs = __hwmon_create_attrs(drvdata, chip); 801d560168bSGuenter Roeck if (IS_ERR(attrs)) { 802d560168bSGuenter Roeck err = PTR_ERR(attrs); 803d560168bSGuenter Roeck goto free_hwmon; 804d560168bSGuenter Roeck } 805d560168bSGuenter Roeck 806d560168bSGuenter Roeck hwdev->group.attrs = attrs; 807d560168bSGuenter Roeck ngroups = 0; 808d560168bSGuenter Roeck hwdev->groups[ngroups++] = &hwdev->group; 809d560168bSGuenter Roeck 810d560168bSGuenter Roeck if (groups) { 811d560168bSGuenter Roeck for (i = 0; groups[i]; i++) 812d560168bSGuenter Roeck hwdev->groups[ngroups++] = groups[i]; 813d560168bSGuenter Roeck } 814d560168bSGuenter Roeck 815d560168bSGuenter Roeck hdev->groups = hwdev->groups; 816d560168bSGuenter Roeck } else { 817d560168bSGuenter Roeck hdev->groups = groups; 818d560168bSGuenter Roeck } 819d560168bSGuenter Roeck 82007320c91SPaul Cercueil if (dev && device_property_present(dev, "label")) { 821e1c9d6d6SPaul Cercueil err = device_property_read_string(dev, "label", &label); 822e1c9d6d6SPaul Cercueil if (err < 0) 823e1c9d6d6SPaul Cercueil goto free_hwmon; 824e1c9d6d6SPaul Cercueil 825e1c9d6d6SPaul Cercueil hwdev->label = kstrdup(label, GFP_KERNEL); 826e1c9d6d6SPaul Cercueil if (hwdev->label == NULL) { 827e1c9d6d6SPaul Cercueil err = -ENOMEM; 828e1c9d6d6SPaul Cercueil goto free_hwmon; 829e1c9d6d6SPaul Cercueil } 830e1c9d6d6SPaul Cercueil } 831e1c9d6d6SPaul Cercueil 832d560168bSGuenter Roeck hwdev->name = name; 833d560168bSGuenter Roeck hdev->class = &hwmon_class; 834d560168bSGuenter Roeck hdev->parent = dev; 8352315332eSPhinex Hung while (tdev && !tdev->of_node) 8362315332eSPhinex Hung tdev = tdev->parent; 8372315332eSPhinex Hung hdev->of_node = tdev ? tdev->of_node : NULL; 838d560168bSGuenter Roeck hwdev->chip = chip; 839d560168bSGuenter Roeck dev_set_drvdata(hdev, drvdata); 840d560168bSGuenter Roeck dev_set_name(hdev, HWMON_ID_FORMAT, id); 841d560168bSGuenter Roeck err = device_register(hdev); 842ada61aa0SYang Yingliang if (err) { 843ada61aa0SYang Yingliang put_device(hdev); 844ada61aa0SYang Yingliang goto ida_remove; 845ada61aa0SYang Yingliang } 846d560168bSGuenter Roeck 8471597b374SGuenter Roeck INIT_LIST_HEAD(&hwdev->tzdata); 8481597b374SGuenter Roeck 8492315332eSPhinex Hung if (hdev->of_node && chip && chip->ops->read && 850d560168bSGuenter Roeck chip->info[0]->type == hwmon_chip && 851d560168bSGuenter Roeck (chip->info[0]->config[0] & HWMON_C_REGISTER_TZ)) { 85244e3ad88SAkinobu Mita err = hwmon_thermal_register_sensors(hdev); 85374e35127SDmitry Osipenko if (err) { 85474e35127SDmitry Osipenko device_unregister(hdev); 855792eac18SGuenter Roeck /* 85644e3ad88SAkinobu Mita * Don't worry about hwdev; hwmon_dev_release(), called 85744e3ad88SAkinobu Mita * from device_unregister(), will free it. 858792eac18SGuenter Roeck */ 85974e35127SDmitry Osipenko goto ida_remove; 86074e35127SDmitry Osipenko } 86147c332deSLinus Walleij } 862d560168bSGuenter Roeck 863d560168bSGuenter Roeck return hdev; 864d560168bSGuenter Roeck 865d560168bSGuenter Roeck free_hwmon: 8663bf8bdcfSGuenter Roeck hwmon_dev_release(hdev); 867d560168bSGuenter Roeck ida_remove: 868718fbfa5Skeliu ida_free(&hwmon_ida, id); 869d560168bSGuenter Roeck return ERR_PTR(err); 870d560168bSGuenter Roeck } 871d560168bSGuenter Roeck 8721236441fSMark M. Hoffman /** 873bab2243cSGuenter Roeck * hwmon_device_register_with_groups - register w/ hwmon 874bab2243cSGuenter Roeck * @dev: the parent device 875bab2243cSGuenter Roeck * @name: hwmon name attribute 876bab2243cSGuenter Roeck * @drvdata: driver data to attach to created device 877bab2243cSGuenter Roeck * @groups: List of attribute groups to create 878bab2243cSGuenter Roeck * 879bab2243cSGuenter Roeck * hwmon_device_unregister() must be called when the device is no 880bab2243cSGuenter Roeck * longer needed. 881bab2243cSGuenter Roeck * 882bab2243cSGuenter Roeck * Returns the pointer to the new device. 883bab2243cSGuenter Roeck */ 884bab2243cSGuenter Roeck struct device * 885bab2243cSGuenter Roeck hwmon_device_register_with_groups(struct device *dev, const char *name, 886bab2243cSGuenter Roeck void *drvdata, 887bab2243cSGuenter Roeck const struct attribute_group **groups) 888bab2243cSGuenter Roeck { 8898353863aSGuenter Roeck if (!name) 8908353863aSGuenter Roeck return ERR_PTR(-EINVAL); 8918353863aSGuenter Roeck 892d560168bSGuenter Roeck return __hwmon_device_register(dev, name, drvdata, NULL, groups); 893bab2243cSGuenter Roeck } 894bab2243cSGuenter Roeck EXPORT_SYMBOL_GPL(hwmon_device_register_with_groups); 895bab2243cSGuenter Roeck 896bab2243cSGuenter Roeck /** 897d560168bSGuenter Roeck * hwmon_device_register_with_info - register w/ hwmon 898ddaefa20SGuenter Roeck * @dev: the parent device (mandatory) 899ddaefa20SGuenter Roeck * @name: hwmon name attribute (mandatory) 900ddaefa20SGuenter Roeck * @drvdata: driver data to attach to created device (optional) 901ddaefa20SGuenter Roeck * @chip: pointer to hwmon chip information (mandatory) 902848ba0a2SGuenter Roeck * @extra_groups: pointer to list of additional non-standard attribute groups 903ddaefa20SGuenter Roeck * (optional) 904d560168bSGuenter Roeck * 905d560168bSGuenter Roeck * hwmon_device_unregister() must be called when the device is no 906d560168bSGuenter Roeck * longer needed. 907d560168bSGuenter Roeck * 908d560168bSGuenter Roeck * Returns the pointer to the new device. 909d560168bSGuenter Roeck */ 910d560168bSGuenter Roeck struct device * 911d560168bSGuenter Roeck hwmon_device_register_with_info(struct device *dev, const char *name, 912d560168bSGuenter Roeck void *drvdata, 913d560168bSGuenter Roeck const struct hwmon_chip_info *chip, 914848ba0a2SGuenter Roeck const struct attribute_group **extra_groups) 915d560168bSGuenter Roeck { 916ddaefa20SGuenter Roeck if (!dev || !name || !chip) 9178353863aSGuenter Roeck return ERR_PTR(-EINVAL); 9188353863aSGuenter Roeck 919ddaefa20SGuenter Roeck if (!chip->ops || !chip->ops->is_visible || !chip->info) 92059df4f4eSLucas Magasweran return ERR_PTR(-EINVAL); 92159df4f4eSLucas Magasweran 922848ba0a2SGuenter Roeck return __hwmon_device_register(dev, name, drvdata, chip, extra_groups); 923d560168bSGuenter Roeck } 924d560168bSGuenter Roeck EXPORT_SYMBOL_GPL(hwmon_device_register_with_info); 925d560168bSGuenter Roeck 926d560168bSGuenter Roeck /** 927e5d21072SGuenter Roeck * hwmon_device_register_for_thermal - register hwmon device for thermal subsystem 928e5d21072SGuenter Roeck * @dev: the parent device 929e5d21072SGuenter Roeck * @name: hwmon name attribute 930e5d21072SGuenter Roeck * @drvdata: driver data to attach to created device 931e5d21072SGuenter Roeck * 932e5d21072SGuenter Roeck * The use of this function is restricted. It is provided for legacy reasons 933e5d21072SGuenter Roeck * and must only be called from the thermal subsystem. 934e5d21072SGuenter Roeck * 935e5d21072SGuenter Roeck * hwmon_device_unregister() must be called when the device is no 936e5d21072SGuenter Roeck * longer needed. 937e5d21072SGuenter Roeck * 938e5d21072SGuenter Roeck * Returns the pointer to the new device. 939e5d21072SGuenter Roeck */ 940e5d21072SGuenter Roeck struct device * 941e5d21072SGuenter Roeck hwmon_device_register_for_thermal(struct device *dev, const char *name, 942e5d21072SGuenter Roeck void *drvdata) 943e5d21072SGuenter Roeck { 944e5d21072SGuenter Roeck if (!name || !dev) 945e5d21072SGuenter Roeck return ERR_PTR(-EINVAL); 946e5d21072SGuenter Roeck 947e5d21072SGuenter Roeck return __hwmon_device_register(dev, name, drvdata, NULL, NULL); 948e5d21072SGuenter Roeck } 949e5d21072SGuenter Roeck EXPORT_SYMBOL_NS_GPL(hwmon_device_register_for_thermal, HWMON_THERMAL); 950e5d21072SGuenter Roeck 951e5d21072SGuenter Roeck /** 9521beeffe4STony Jones * hwmon_device_register - register w/ hwmon 9531236441fSMark M. Hoffman * @dev: the device to register 9541236441fSMark M. Hoffman * 9551beeffe4STony Jones * hwmon_device_unregister() must be called when the device is no 9561236441fSMark M. Hoffman * longer needed. 9571236441fSMark M. Hoffman * 9581beeffe4STony Jones * Returns the pointer to the new device. 9591236441fSMark M. Hoffman */ 9601beeffe4STony Jones struct device *hwmon_device_register(struct device *dev) 9611236441fSMark M. Hoffman { 962af1bd36cSGuenter Roeck dev_warn(dev, 963af1bd36cSGuenter Roeck "hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().\n"); 964af1bd36cSGuenter Roeck 9658353863aSGuenter Roeck return __hwmon_device_register(dev, NULL, NULL, NULL, NULL); 9661236441fSMark M. Hoffman } 967839a9eefSFrans Meulenbroeks EXPORT_SYMBOL_GPL(hwmon_device_register); 9681236441fSMark M. Hoffman 9691236441fSMark M. Hoffman /** 9701236441fSMark M. Hoffman * hwmon_device_unregister - removes the previously registered class device 9711236441fSMark M. Hoffman * 9721beeffe4STony Jones * @dev: the class device to destroy 9731236441fSMark M. Hoffman */ 9741beeffe4STony Jones void hwmon_device_unregister(struct device *dev) 9751236441fSMark M. Hoffman { 9761236441fSMark M. Hoffman int id; 9771236441fSMark M. Hoffman 978739cf3a2SKay Sievers if (likely(sscanf(dev_name(dev), HWMON_ID_FORMAT, &id) == 1)) { 9791beeffe4STony Jones device_unregister(dev); 980718fbfa5Skeliu ida_free(&hwmon_ida, id); 9811236441fSMark M. Hoffman } else 9821beeffe4STony Jones dev_dbg(dev->parent, 9831236441fSMark M. Hoffman "hwmon_device_unregister() failed: bad class ID!\n"); 9841236441fSMark M. Hoffman } 985839a9eefSFrans Meulenbroeks EXPORT_SYMBOL_GPL(hwmon_device_unregister); 9861236441fSMark M. Hoffman 98774188cbaSGuenter Roeck static void devm_hwmon_release(struct device *dev, void *res) 98874188cbaSGuenter Roeck { 98974188cbaSGuenter Roeck struct device *hwdev = *(struct device **)res; 99074188cbaSGuenter Roeck 99174188cbaSGuenter Roeck hwmon_device_unregister(hwdev); 99274188cbaSGuenter Roeck } 99374188cbaSGuenter Roeck 99474188cbaSGuenter Roeck /** 99574188cbaSGuenter Roeck * devm_hwmon_device_register_with_groups - register w/ hwmon 99674188cbaSGuenter Roeck * @dev: the parent device 99774188cbaSGuenter Roeck * @name: hwmon name attribute 99874188cbaSGuenter Roeck * @drvdata: driver data to attach to created device 99974188cbaSGuenter Roeck * @groups: List of attribute groups to create 100074188cbaSGuenter Roeck * 100174188cbaSGuenter Roeck * Returns the pointer to the new device. The new device is automatically 100274188cbaSGuenter Roeck * unregistered with the parent device. 100374188cbaSGuenter Roeck */ 100474188cbaSGuenter Roeck struct device * 100574188cbaSGuenter Roeck devm_hwmon_device_register_with_groups(struct device *dev, const char *name, 100674188cbaSGuenter Roeck void *drvdata, 100774188cbaSGuenter Roeck const struct attribute_group **groups) 100874188cbaSGuenter Roeck { 100974188cbaSGuenter Roeck struct device **ptr, *hwdev; 101074188cbaSGuenter Roeck 101174188cbaSGuenter Roeck if (!dev) 101274188cbaSGuenter Roeck return ERR_PTR(-EINVAL); 101374188cbaSGuenter Roeck 101474188cbaSGuenter Roeck ptr = devres_alloc(devm_hwmon_release, sizeof(*ptr), GFP_KERNEL); 101574188cbaSGuenter Roeck if (!ptr) 101674188cbaSGuenter Roeck return ERR_PTR(-ENOMEM); 101774188cbaSGuenter Roeck 101874188cbaSGuenter Roeck hwdev = hwmon_device_register_with_groups(dev, name, drvdata, groups); 101974188cbaSGuenter Roeck if (IS_ERR(hwdev)) 102074188cbaSGuenter Roeck goto error; 102174188cbaSGuenter Roeck 102274188cbaSGuenter Roeck *ptr = hwdev; 102374188cbaSGuenter Roeck devres_add(dev, ptr); 102474188cbaSGuenter Roeck return hwdev; 102574188cbaSGuenter Roeck 102674188cbaSGuenter Roeck error: 102774188cbaSGuenter Roeck devres_free(ptr); 102874188cbaSGuenter Roeck return hwdev; 102974188cbaSGuenter Roeck } 103074188cbaSGuenter Roeck EXPORT_SYMBOL_GPL(devm_hwmon_device_register_with_groups); 103174188cbaSGuenter Roeck 1032d560168bSGuenter Roeck /** 1033d560168bSGuenter Roeck * devm_hwmon_device_register_with_info - register w/ hwmon 1034d560168bSGuenter Roeck * @dev: the parent device 1035d560168bSGuenter Roeck * @name: hwmon name attribute 1036d560168bSGuenter Roeck * @drvdata: driver data to attach to created device 10373870945aSGuenter Roeck * @chip: pointer to hwmon chip information 10383b9da042SJames Seo * @extra_groups: pointer to list of driver specific attribute groups 1039d560168bSGuenter Roeck * 1040d560168bSGuenter Roeck * Returns the pointer to the new device. The new device is automatically 1041d560168bSGuenter Roeck * unregistered with the parent device. 1042d560168bSGuenter Roeck */ 1043d560168bSGuenter Roeck struct device * 1044d560168bSGuenter Roeck devm_hwmon_device_register_with_info(struct device *dev, const char *name, 1045d560168bSGuenter Roeck void *drvdata, 1046d560168bSGuenter Roeck const struct hwmon_chip_info *chip, 10473b9da042SJames Seo const struct attribute_group **extra_groups) 1048d560168bSGuenter Roeck { 1049d560168bSGuenter Roeck struct device **ptr, *hwdev; 1050d560168bSGuenter Roeck 1051d560168bSGuenter Roeck if (!dev) 1052d560168bSGuenter Roeck return ERR_PTR(-EINVAL); 1053d560168bSGuenter Roeck 1054d560168bSGuenter Roeck ptr = devres_alloc(devm_hwmon_release, sizeof(*ptr), GFP_KERNEL); 1055d560168bSGuenter Roeck if (!ptr) 1056d560168bSGuenter Roeck return ERR_PTR(-ENOMEM); 1057d560168bSGuenter Roeck 1058d560168bSGuenter Roeck hwdev = hwmon_device_register_with_info(dev, name, drvdata, chip, 10593b9da042SJames Seo extra_groups); 1060d560168bSGuenter Roeck if (IS_ERR(hwdev)) 1061d560168bSGuenter Roeck goto error; 1062d560168bSGuenter Roeck 1063d560168bSGuenter Roeck *ptr = hwdev; 1064d560168bSGuenter Roeck devres_add(dev, ptr); 1065d560168bSGuenter Roeck 1066d560168bSGuenter Roeck return hwdev; 1067d560168bSGuenter Roeck 1068d560168bSGuenter Roeck error: 1069d560168bSGuenter Roeck devres_free(ptr); 1070d560168bSGuenter Roeck return hwdev; 1071d560168bSGuenter Roeck } 1072d560168bSGuenter Roeck EXPORT_SYMBOL_GPL(devm_hwmon_device_register_with_info); 1073d560168bSGuenter Roeck 107474188cbaSGuenter Roeck static int devm_hwmon_match(struct device *dev, void *res, void *data) 107574188cbaSGuenter Roeck { 107674188cbaSGuenter Roeck struct device **hwdev = res; 107774188cbaSGuenter Roeck 107874188cbaSGuenter Roeck return *hwdev == data; 107974188cbaSGuenter Roeck } 108074188cbaSGuenter Roeck 108174188cbaSGuenter Roeck /** 108274188cbaSGuenter Roeck * devm_hwmon_device_unregister - removes a previously registered hwmon device 108374188cbaSGuenter Roeck * 108474188cbaSGuenter Roeck * @dev: the parent device of the device to unregister 108574188cbaSGuenter Roeck */ 108674188cbaSGuenter Roeck void devm_hwmon_device_unregister(struct device *dev) 108774188cbaSGuenter Roeck { 108874188cbaSGuenter Roeck WARN_ON(devres_release(dev, devm_hwmon_release, devm_hwmon_match, dev)); 108974188cbaSGuenter Roeck } 109074188cbaSGuenter Roeck EXPORT_SYMBOL_GPL(devm_hwmon_device_unregister); 109174188cbaSGuenter Roeck 10921ad6c3b7SMichael Walle static char *__hwmon_sanitize_name(struct device *dev, const char *old_name) 10931ad6c3b7SMichael Walle { 10941ad6c3b7SMichael Walle char *name, *p; 10951ad6c3b7SMichael Walle 10961ad6c3b7SMichael Walle if (dev) 10971ad6c3b7SMichael Walle name = devm_kstrdup(dev, old_name, GFP_KERNEL); 10981ad6c3b7SMichael Walle else 10991ad6c3b7SMichael Walle name = kstrdup(old_name, GFP_KERNEL); 11001ad6c3b7SMichael Walle if (!name) 11011ad6c3b7SMichael Walle return ERR_PTR(-ENOMEM); 11021ad6c3b7SMichael Walle 11031ad6c3b7SMichael Walle for (p = name; *p; p++) 11041ad6c3b7SMichael Walle if (hwmon_is_bad_char(*p)) 11051ad6c3b7SMichael Walle *p = '_'; 11061ad6c3b7SMichael Walle 11071ad6c3b7SMichael Walle return name; 11081ad6c3b7SMichael Walle } 11091ad6c3b7SMichael Walle 11101ad6c3b7SMichael Walle /** 11111ad6c3b7SMichael Walle * hwmon_sanitize_name - Replaces invalid characters in a hwmon name 11121ad6c3b7SMichael Walle * @name: NUL-terminated name 11131ad6c3b7SMichael Walle * 11141ad6c3b7SMichael Walle * Allocates a new string where any invalid characters will be replaced 11151ad6c3b7SMichael Walle * by an underscore. It is the responsibility of the caller to release 11161ad6c3b7SMichael Walle * the memory. 11171ad6c3b7SMichael Walle * 11181ad6c3b7SMichael Walle * Returns newly allocated name, or ERR_PTR on error. 11191ad6c3b7SMichael Walle */ 11201ad6c3b7SMichael Walle char *hwmon_sanitize_name(const char *name) 11211ad6c3b7SMichael Walle { 11221ad6c3b7SMichael Walle return __hwmon_sanitize_name(NULL, name); 11231ad6c3b7SMichael Walle } 11241ad6c3b7SMichael Walle EXPORT_SYMBOL_GPL(hwmon_sanitize_name); 11251ad6c3b7SMichael Walle 11261ad6c3b7SMichael Walle /** 11271ad6c3b7SMichael Walle * devm_hwmon_sanitize_name - resource managed hwmon_sanitize_name() 11281ad6c3b7SMichael Walle * @dev: device to allocate memory for 11291ad6c3b7SMichael Walle * @name: NUL-terminated name 11301ad6c3b7SMichael Walle * 11311ad6c3b7SMichael Walle * Allocates a new string where any invalid characters will be replaced 11321ad6c3b7SMichael Walle * by an underscore. 11331ad6c3b7SMichael Walle * 11341ad6c3b7SMichael Walle * Returns newly allocated name, or ERR_PTR on error. 11351ad6c3b7SMichael Walle */ 11361ad6c3b7SMichael Walle char *devm_hwmon_sanitize_name(struct device *dev, const char *name) 11371ad6c3b7SMichael Walle { 11381ad6c3b7SMichael Walle if (!dev) 11391ad6c3b7SMichael Walle return ERR_PTR(-EINVAL); 11401ad6c3b7SMichael Walle 11411ad6c3b7SMichael Walle return __hwmon_sanitize_name(dev, name); 11421ad6c3b7SMichael Walle } 11431ad6c3b7SMichael Walle EXPORT_SYMBOL_GPL(devm_hwmon_sanitize_name); 11441ad6c3b7SMichael Walle 11452958b1ecSJean Delvare static void __init hwmon_pci_quirks(void) 11462958b1ecSJean Delvare { 11472958b1ecSJean Delvare #if defined CONFIG_X86 && defined CONFIG_PCI 11482958b1ecSJean Delvare struct pci_dev *sb; 11492958b1ecSJean Delvare u16 base; 11502958b1ecSJean Delvare u8 enable; 11512958b1ecSJean Delvare 11522958b1ecSJean Delvare /* Open access to 0x295-0x296 on MSI MS-7031 */ 11532958b1ecSJean Delvare sb = pci_get_device(PCI_VENDOR_ID_ATI, 0x436c, NULL); 1154d6dab7ddSJean Delvare if (sb) { 1155d6dab7ddSJean Delvare if (sb->subsystem_vendor == 0x1462 && /* MSI */ 1156d6dab7ddSJean Delvare sb->subsystem_device == 0x0031) { /* MS-7031 */ 11572958b1ecSJean Delvare pci_read_config_byte(sb, 0x48, &enable); 11582958b1ecSJean Delvare pci_read_config_word(sb, 0x64, &base); 11592958b1ecSJean Delvare 11602958b1ecSJean Delvare if (base == 0 && !(enable & BIT(2))) { 11612958b1ecSJean Delvare dev_info(&sb->dev, 11622958b1ecSJean Delvare "Opening wide generic port at 0x295\n"); 11632958b1ecSJean Delvare pci_write_config_word(sb, 0x64, 0x295); 1164d6dab7ddSJean Delvare pci_write_config_byte(sb, 0x48, 1165d6dab7ddSJean Delvare enable | BIT(2)); 11662958b1ecSJean Delvare } 11672958b1ecSJean Delvare } 1168d6dab7ddSJean Delvare pci_dev_put(sb); 1169d6dab7ddSJean Delvare } 11702958b1ecSJean Delvare #endif 11712958b1ecSJean Delvare } 11722958b1ecSJean Delvare 11731236441fSMark M. Hoffman static int __init hwmon_init(void) 11741236441fSMark M. Hoffman { 1175bab2243cSGuenter Roeck int err; 1176bab2243cSGuenter Roeck 11772958b1ecSJean Delvare hwmon_pci_quirks(); 11782958b1ecSJean Delvare 1179bab2243cSGuenter Roeck err = class_register(&hwmon_class); 1180bab2243cSGuenter Roeck if (err) { 1181bab2243cSGuenter Roeck pr_err("couldn't register hwmon sysfs class\n"); 1182bab2243cSGuenter Roeck return err; 11831236441fSMark M. Hoffman } 11841236441fSMark M. Hoffman return 0; 11851236441fSMark M. Hoffman } 11861236441fSMark M. Hoffman 11871236441fSMark M. Hoffman static void __exit hwmon_exit(void) 11881236441fSMark M. Hoffman { 1189bab2243cSGuenter Roeck class_unregister(&hwmon_class); 11901236441fSMark M. Hoffman } 11911236441fSMark M. Hoffman 119237f54ee5SDavid Brownell subsys_initcall(hwmon_init); 11931236441fSMark M. Hoffman module_exit(hwmon_exit); 11941236441fSMark M. Hoffman 11951236441fSMark M. Hoffman MODULE_AUTHOR("Mark M. Hoffman <mhoffman@lightlink.com>"); 11961236441fSMark M. Hoffman MODULE_DESCRIPTION("hardware monitoring sysfs/class support"); 11971236441fSMark M. Hoffman MODULE_LICENSE("GPL"); 11981236441fSMark M. Hoffman 1199