123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842 |
- /*
- * hwmon.c - part of lm_sensors, Linux kernel modules for hardware monitoring
- *
- * This file defines the sysfs class "hwmon", for use by sensors drivers.
- *
- * Copyright (C) 2005 Mark M. Hoffman <mhoffman@lightlink.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
- */
- #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
- #include <linux/bitops.h>
- #include <linux/device.h>
- #include <linux/err.h>
- #include <linux/gfp.h>
- #include <linux/hwmon.h>
- #include <linux/idr.h>
- #include <linux/module.h>
- #include <linux/pci.h>
- #include <linux/slab.h>
- #include <linux/string.h>
- #include <linux/thermal.h>
- #define HWMON_ID_PREFIX "hwmon"
- #define HWMON_ID_FORMAT HWMON_ID_PREFIX "%d"
- struct hwmon_device {
- const char *name;
- struct device dev;
- const struct hwmon_chip_info *chip;
- struct attribute_group group;
- const struct attribute_group **groups;
- };
- #define to_hwmon_device(d) container_of(d, struct hwmon_device, dev)
- struct hwmon_device_attribute {
- struct device_attribute dev_attr;
- const struct hwmon_ops *ops;
- enum hwmon_sensor_types type;
- u32 attr;
- int index;
- };
- #define to_hwmon_attr(d) \
- container_of(d, struct hwmon_device_attribute, dev_attr)
- /*
- * Thermal zone information
- * In addition to the reference to the hwmon device,
- * also provides the sensor index.
- */
- struct hwmon_thermal_data {
- struct hwmon_device *hwdev; /* Reference to hwmon device */
- int index; /* sensor index */
- };
- static ssize_t
- show_name(struct device *dev, struct device_attribute *attr, char *buf)
- {
- return sprintf(buf, "%s\n", to_hwmon_device(dev)->name);
- }
- static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
- static struct attribute *hwmon_dev_attrs[] = {
- &dev_attr_name.attr,
- NULL
- };
- static umode_t hwmon_dev_name_is_visible(struct kobject *kobj,
- struct attribute *attr, int n)
- {
- struct device *dev = container_of(kobj, struct device, kobj);
- if (to_hwmon_device(dev)->name == NULL)
- return 0;
- return attr->mode;
- }
- static struct attribute_group hwmon_dev_attr_group = {
- .attrs = hwmon_dev_attrs,
- .is_visible = hwmon_dev_name_is_visible,
- };
- static const struct attribute_group *hwmon_dev_attr_groups[] = {
- &hwmon_dev_attr_group,
- NULL
- };
- static void hwmon_dev_release(struct device *dev)
- {
- kfree(to_hwmon_device(dev));
- }
- static struct class hwmon_class = {
- .name = "hwmon",
- .owner = THIS_MODULE,
- .dev_groups = hwmon_dev_attr_groups,
- .dev_release = hwmon_dev_release,
- };
- static DEFINE_IDA(hwmon_ida);
- /* Thermal zone handling */
- /*
- * The complex conditional is necessary to avoid a cyclic dependency
- * between hwmon and thermal_sys modules.
- */
- #if IS_REACHABLE(CONFIG_THERMAL) && defined(CONFIG_THERMAL_OF) && \
- (!defined(CONFIG_THERMAL_HWMON) || \
- !(defined(MODULE) && IS_MODULE(CONFIG_THERMAL)))
- static int hwmon_thermal_get_temp(void *data, int *temp)
- {
- struct hwmon_thermal_data *tdata = data;
- struct hwmon_device *hwdev = tdata->hwdev;
- int ret;
- long t;
- ret = hwdev->chip->ops->read(&hwdev->dev, hwmon_temp, hwmon_temp_input,
- tdata->index, &t);
- if (ret < 0)
- return ret;
- *temp = t;
- return 0;
- }
- static struct thermal_zone_of_device_ops hwmon_thermal_ops = {
- .get_temp = hwmon_thermal_get_temp,
- };
- static int hwmon_thermal_add_sensor(struct device *dev,
- struct hwmon_device *hwdev, int index)
- {
- struct hwmon_thermal_data *tdata;
- tdata = devm_kzalloc(dev, sizeof(*tdata), GFP_KERNEL);
- if (!tdata)
- return -ENOMEM;
- tdata->hwdev = hwdev;
- tdata->index = index;
- devm_thermal_zone_of_sensor_register(&hwdev->dev, index, tdata,
- &hwmon_thermal_ops);
- return 0;
- }
- #else
- static int hwmon_thermal_add_sensor(struct device *dev,
- struct hwmon_device *hwdev, int index)
- {
- return 0;
- }
- #endif /* IS_REACHABLE(CONFIG_THERMAL) && ... */
- /* sysfs attribute management */
- static ssize_t hwmon_attr_show(struct device *dev,
- struct device_attribute *devattr, char *buf)
- {
- struct hwmon_device_attribute *hattr = to_hwmon_attr(devattr);
- long val;
- int ret;
- ret = hattr->ops->read(dev, hattr->type, hattr->attr, hattr->index,
- &val);
- if (ret < 0)
- return ret;
- return sprintf(buf, "%ld\n", val);
- }
- static ssize_t hwmon_attr_store(struct device *dev,
- struct device_attribute *devattr,
- const char *buf, size_t count)
- {
- struct hwmon_device_attribute *hattr = to_hwmon_attr(devattr);
- long val;
- int ret;
- ret = kstrtol(buf, 10, &val);
- if (ret < 0)
- return ret;
- ret = hattr->ops->write(dev, hattr->type, hattr->attr, hattr->index,
- val);
- if (ret < 0)
- return ret;
- return count;
- }
- static int hwmon_attr_base(enum hwmon_sensor_types type)
- {
- if (type == hwmon_in)
- return 0;
- return 1;
- }
- static struct attribute *hwmon_genattr(struct device *dev,
- const void *drvdata,
- enum hwmon_sensor_types type,
- u32 attr,
- int index,
- const char *template,
- const struct hwmon_ops *ops)
- {
- struct hwmon_device_attribute *hattr;
- struct device_attribute *dattr;
- struct attribute *a;
- umode_t mode;
- char *name;
- /* The attribute is invisible if there is no template string */
- if (!template)
- return ERR_PTR(-ENOENT);
- mode = ops->is_visible(drvdata, type, attr, index);
- if (!mode)
- return ERR_PTR(-ENOENT);
- if ((mode & S_IRUGO) && !ops->read)
- return ERR_PTR(-EINVAL);
- if ((mode & S_IWUGO) && !ops->write)
- return ERR_PTR(-EINVAL);
- if (type == hwmon_chip) {
- name = (char *)template;
- } else {
- name = devm_kzalloc(dev, strlen(template) + 16, GFP_KERNEL);
- if (!name)
- return ERR_PTR(-ENOMEM);
- scnprintf(name, strlen(template) + 16, template,
- index + hwmon_attr_base(type));
- }
- hattr = devm_kzalloc(dev, sizeof(*hattr), GFP_KERNEL);
- if (!hattr)
- return ERR_PTR(-ENOMEM);
- hattr->type = type;
- hattr->attr = attr;
- hattr->index = index;
- hattr->ops = ops;
- dattr = &hattr->dev_attr;
- dattr->show = hwmon_attr_show;
- dattr->store = hwmon_attr_store;
- a = &dattr->attr;
- sysfs_attr_init(a);
- a->name = name;
- a->mode = mode;
- return a;
- }
- static const char * const hwmon_chip_attr_templates[] = {
- [hwmon_chip_temp_reset_history] = "temp_reset_history",
- [hwmon_chip_in_reset_history] = "in_reset_history",
- [hwmon_chip_curr_reset_history] = "curr_reset_history",
- [hwmon_chip_power_reset_history] = "power_reset_history",
- [hwmon_chip_update_interval] = "update_interval",
- [hwmon_chip_alarms] = "alarms",
- };
- static const char * const hwmon_temp_attr_templates[] = {
- [hwmon_temp_input] = "temp%d_input",
- [hwmon_temp_type] = "temp%d_type",
- [hwmon_temp_lcrit] = "temp%d_lcrit",
- [hwmon_temp_lcrit_hyst] = "temp%d_lcrit_hyst",
- [hwmon_temp_min] = "temp%d_min",
- [hwmon_temp_min_hyst] = "temp%d_min_hyst",
- [hwmon_temp_max] = "temp%d_max",
- [hwmon_temp_max_hyst] = "temp%d_max_hyst",
- [hwmon_temp_crit] = "temp%d_crit",
- [hwmon_temp_crit_hyst] = "temp%d_crit_hyst",
- [hwmon_temp_emergency] = "temp%d_emergency",
- [hwmon_temp_emergency_hyst] = "temp%d_emergency_hyst",
- [hwmon_temp_alarm] = "temp%d_alarm",
- [hwmon_temp_lcrit_alarm] = "temp%d_lcrit_alarm",
- [hwmon_temp_min_alarm] = "temp%d_min_alarm",
- [hwmon_temp_max_alarm] = "temp%d_max_alarm",
- [hwmon_temp_crit_alarm] = "temp%d_crit_alarm",
- [hwmon_temp_emergency_alarm] = "temp%d_emergency_alarm",
- [hwmon_temp_fault] = "temp%d_fault",
- [hwmon_temp_offset] = "temp%d_offset",
- [hwmon_temp_label] = "temp%d_label",
- [hwmon_temp_lowest] = "temp%d_lowest",
- [hwmon_temp_highest] = "temp%d_highest",
- [hwmon_temp_reset_history] = "temp%d_reset_history",
- };
- static const char * const hwmon_in_attr_templates[] = {
- [hwmon_in_input] = "in%d_input",
- [hwmon_in_min] = "in%d_min",
- [hwmon_in_max] = "in%d_max",
- [hwmon_in_lcrit] = "in%d_lcrit",
- [hwmon_in_crit] = "in%d_crit",
- [hwmon_in_average] = "in%d_average",
- [hwmon_in_lowest] = "in%d_lowest",
- [hwmon_in_highest] = "in%d_highest",
- [hwmon_in_reset_history] = "in%d_reset_history",
- [hwmon_in_label] = "in%d_label",
- [hwmon_in_alarm] = "in%d_alarm",
- [hwmon_in_min_alarm] = "in%d_min_alarm",
- [hwmon_in_max_alarm] = "in%d_max_alarm",
- [hwmon_in_lcrit_alarm] = "in%d_lcrit_alarm",
- [hwmon_in_crit_alarm] = "in%d_crit_alarm",
- };
- static const char * const hwmon_curr_attr_templates[] = {
- [hwmon_curr_input] = "curr%d_input",
- [hwmon_curr_min] = "curr%d_min",
- [hwmon_curr_max] = "curr%d_max",
- [hwmon_curr_lcrit] = "curr%d_lcrit",
- [hwmon_curr_crit] = "curr%d_crit",
- [hwmon_curr_average] = "curr%d_average",
- [hwmon_curr_lowest] = "curr%d_lowest",
- [hwmon_curr_highest] = "curr%d_highest",
- [hwmon_curr_reset_history] = "curr%d_reset_history",
- [hwmon_curr_label] = "curr%d_label",
- [hwmon_curr_alarm] = "curr%d_alarm",
- [hwmon_curr_min_alarm] = "curr%d_min_alarm",
- [hwmon_curr_max_alarm] = "curr%d_max_alarm",
- [hwmon_curr_lcrit_alarm] = "curr%d_lcrit_alarm",
- [hwmon_curr_crit_alarm] = "curr%d_crit_alarm",
- };
- static const char * const hwmon_power_attr_templates[] = {
- [hwmon_power_average] = "power%d_average",
- [hwmon_power_average_interval] = "power%d_average_interval",
- [hwmon_power_average_interval_max] = "power%d_interval_max",
- [hwmon_power_average_interval_min] = "power%d_interval_min",
- [hwmon_power_average_highest] = "power%d_average_highest",
- [hwmon_power_average_lowest] = "power%d_average_lowest",
- [hwmon_power_average_max] = "power%d_average_max",
- [hwmon_power_average_min] = "power%d_average_min",
- [hwmon_power_input] = "power%d_input",
- [hwmon_power_input_highest] = "power%d_input_highest",
- [hwmon_power_input_lowest] = "power%d_input_lowest",
- [hwmon_power_reset_history] = "power%d_reset_history",
- [hwmon_power_accuracy] = "power%d_accuracy",
- [hwmon_power_cap] = "power%d_cap",
- [hwmon_power_cap_hyst] = "power%d_cap_hyst",
- [hwmon_power_cap_max] = "power%d_cap_max",
- [hwmon_power_cap_min] = "power%d_cap_min",
- [hwmon_power_max] = "power%d_max",
- [hwmon_power_crit] = "power%d_crit",
- [hwmon_power_label] = "power%d_label",
- [hwmon_power_alarm] = "power%d_alarm",
- [hwmon_power_cap_alarm] = "power%d_cap_alarm",
- [hwmon_power_max_alarm] = "power%d_max_alarm",
- [hwmon_power_crit_alarm] = "power%d_crit_alarm",
- };
- static const char * const hwmon_energy_attr_templates[] = {
- [hwmon_energy_input] = "energy%d_input",
- [hwmon_energy_label] = "energy%d_label",
- };
- static const char * const hwmon_humidity_attr_templates[] = {
- [hwmon_humidity_input] = "humidity%d_input",
- [hwmon_humidity_label] = "humidity%d_label",
- [hwmon_humidity_min] = "humidity%d_min",
- [hwmon_humidity_min_hyst] = "humidity%d_min_hyst",
- [hwmon_humidity_max] = "humidity%d_max",
- [hwmon_humidity_max_hyst] = "humidity%d_max_hyst",
- [hwmon_humidity_alarm] = "humidity%d_alarm",
- [hwmon_humidity_fault] = "humidity%d_fault",
- };
- static const char * const hwmon_fan_attr_templates[] = {
- [hwmon_fan_input] = "fan%d_input",
- [hwmon_fan_label] = "fan%d_label",
- [hwmon_fan_min] = "fan%d_min",
- [hwmon_fan_max] = "fan%d_max",
- [hwmon_fan_div] = "fan%d_div",
- [hwmon_fan_pulses] = "fan%d_pulses",
- [hwmon_fan_target] = "fan%d_target",
- [hwmon_fan_alarm] = "fan%d_alarm",
- [hwmon_fan_min_alarm] = "fan%d_min_alarm",
- [hwmon_fan_max_alarm] = "fan%d_max_alarm",
- [hwmon_fan_fault] = "fan%d_fault",
- };
- static const char * const hwmon_pwm_attr_templates[] = {
- [hwmon_pwm_input] = "pwm%d",
- [hwmon_pwm_enable] = "pwm%d_enable",
- [hwmon_pwm_mode] = "pwm%d_mode",
- [hwmon_pwm_freq] = "pwm%d_freq",
- };
- static const char * const *__templates[] = {
- [hwmon_chip] = hwmon_chip_attr_templates,
- [hwmon_temp] = hwmon_temp_attr_templates,
- [hwmon_in] = hwmon_in_attr_templates,
- [hwmon_curr] = hwmon_curr_attr_templates,
- [hwmon_power] = hwmon_power_attr_templates,
- [hwmon_energy] = hwmon_energy_attr_templates,
- [hwmon_humidity] = hwmon_humidity_attr_templates,
- [hwmon_fan] = hwmon_fan_attr_templates,
- [hwmon_pwm] = hwmon_pwm_attr_templates,
- };
- static const int __templates_size[] = {
- [hwmon_chip] = ARRAY_SIZE(hwmon_chip_attr_templates),
- [hwmon_temp] = ARRAY_SIZE(hwmon_temp_attr_templates),
- [hwmon_in] = ARRAY_SIZE(hwmon_in_attr_templates),
- [hwmon_curr] = ARRAY_SIZE(hwmon_curr_attr_templates),
- [hwmon_power] = ARRAY_SIZE(hwmon_power_attr_templates),
- [hwmon_energy] = ARRAY_SIZE(hwmon_energy_attr_templates),
- [hwmon_humidity] = ARRAY_SIZE(hwmon_humidity_attr_templates),
- [hwmon_fan] = ARRAY_SIZE(hwmon_fan_attr_templates),
- [hwmon_pwm] = ARRAY_SIZE(hwmon_pwm_attr_templates),
- };
- static int hwmon_num_channel_attrs(const struct hwmon_channel_info *info)
- {
- int i, n;
- for (i = n = 0; info->config[i]; i++)
- n += hweight32(info->config[i]);
- return n;
- }
- static int hwmon_genattrs(struct device *dev,
- const void *drvdata,
- struct attribute **attrs,
- const struct hwmon_ops *ops,
- const struct hwmon_channel_info *info)
- {
- const char * const *templates;
- int template_size;
- int i, aindex = 0;
- if (info->type >= ARRAY_SIZE(__templates))
- return -EINVAL;
- templates = __templates[info->type];
- template_size = __templates_size[info->type];
- for (i = 0; info->config[i]; i++) {
- u32 attr_mask = info->config[i];
- u32 attr;
- while (attr_mask) {
- struct attribute *a;
- attr = __ffs(attr_mask);
- attr_mask &= ~BIT(attr);
- if (attr >= template_size)
- return -EINVAL;
- a = hwmon_genattr(dev, drvdata, info->type, attr, i,
- templates[attr], ops);
- if (IS_ERR(a)) {
- if (PTR_ERR(a) != -ENOENT)
- return PTR_ERR(a);
- continue;
- }
- attrs[aindex++] = a;
- }
- }
- return aindex;
- }
- static struct attribute **
- __hwmon_create_attrs(struct device *dev, const void *drvdata,
- const struct hwmon_chip_info *chip)
- {
- int ret, i, aindex = 0, nattrs = 0;
- struct attribute **attrs;
- for (i = 0; chip->info[i]; i++)
- nattrs += hwmon_num_channel_attrs(chip->info[i]);
- if (nattrs == 0)
- return ERR_PTR(-EINVAL);
- attrs = devm_kcalloc(dev, nattrs + 1, sizeof(*attrs), GFP_KERNEL);
- if (!attrs)
- return ERR_PTR(-ENOMEM);
- for (i = 0; chip->info[i]; i++) {
- ret = hwmon_genattrs(dev, drvdata, &attrs[aindex], chip->ops,
- chip->info[i]);
- if (ret < 0)
- return ERR_PTR(ret);
- aindex += ret;
- }
- return attrs;
- }
- static struct device *
- __hwmon_device_register(struct device *dev, const char *name, void *drvdata,
- const struct hwmon_chip_info *chip,
- const struct attribute_group **groups)
- {
- struct hwmon_device *hwdev;
- struct device *hdev;
- int i, j, err, id;
- /* Do not accept invalid characters in hwmon name attribute */
- if (name && (!strlen(name) || strpbrk(name, "-* \t\n")))
- return ERR_PTR(-EINVAL);
- id = ida_simple_get(&hwmon_ida, 0, 0, GFP_KERNEL);
- if (id < 0)
- return ERR_PTR(id);
- hwdev = kzalloc(sizeof(*hwdev), GFP_KERNEL);
- if (hwdev == NULL) {
- err = -ENOMEM;
- goto ida_remove;
- }
- hdev = &hwdev->dev;
- if (chip && chip->ops->is_visible) {
- struct attribute **attrs;
- int ngroups = 2;
- if (groups)
- for (i = 0; groups[i]; i++)
- ngroups++;
- hwdev->groups = devm_kcalloc(dev, ngroups, sizeof(*groups),
- GFP_KERNEL);
- if (!hwdev->groups) {
- err = -ENOMEM;
- goto free_hwmon;
- }
- attrs = __hwmon_create_attrs(dev, drvdata, chip);
- if (IS_ERR(attrs)) {
- err = PTR_ERR(attrs);
- goto free_hwmon;
- }
- hwdev->group.attrs = attrs;
- ngroups = 0;
- hwdev->groups[ngroups++] = &hwdev->group;
- if (groups) {
- for (i = 0; groups[i]; i++)
- hwdev->groups[ngroups++] = groups[i];
- }
- hdev->groups = hwdev->groups;
- } else {
- hdev->groups = groups;
- }
- hwdev->name = name;
- hdev->class = &hwmon_class;
- hdev->parent = dev;
- hdev->of_node = dev ? dev->of_node : NULL;
- hwdev->chip = chip;
- dev_set_drvdata(hdev, drvdata);
- dev_set_name(hdev, HWMON_ID_FORMAT, id);
- err = device_register(hdev);
- if (err)
- goto free_hwmon;
- if (chip && chip->ops->is_visible && chip->ops->read &&
- chip->info[0]->type == hwmon_chip &&
- (chip->info[0]->config[0] & HWMON_C_REGISTER_TZ)) {
- const struct hwmon_channel_info **info = chip->info;
- for (i = 1; info[i]; i++) {
- if (info[i]->type != hwmon_temp)
- continue;
- for (j = 0; info[i]->config[j]; j++) {
- if (!chip->ops->is_visible(drvdata, hwmon_temp,
- hwmon_temp_input, j))
- continue;
- if (info[i]->config[j] & HWMON_T_INPUT)
- hwmon_thermal_add_sensor(dev, hwdev, j);
- }
- }
- }
- return hdev;
- free_hwmon:
- kfree(hwdev);
- ida_remove:
- ida_simple_remove(&hwmon_ida, id);
- return ERR_PTR(err);
- }
- /**
- * hwmon_device_register_with_groups - register w/ hwmon
- * @dev: the parent device
- * @name: hwmon name attribute
- * @drvdata: driver data to attach to created device
- * @groups: List of attribute groups to create
- *
- * hwmon_device_unregister() must be called when the device is no
- * longer needed.
- *
- * Returns the pointer to the new device.
- */
- struct device *
- hwmon_device_register_with_groups(struct device *dev, const char *name,
- void *drvdata,
- const struct attribute_group **groups)
- {
- return __hwmon_device_register(dev, name, drvdata, NULL, groups);
- }
- EXPORT_SYMBOL_GPL(hwmon_device_register_with_groups);
- /**
- * hwmon_device_register_with_info - register w/ hwmon
- * @dev: the parent device
- * @name: hwmon name attribute
- * @drvdata: driver data to attach to created device
- * @info: Pointer to hwmon chip information
- * @groups - pointer to list of driver specific attribute groups
- *
- * hwmon_device_unregister() must be called when the device is no
- * longer needed.
- *
- * Returns the pointer to the new device.
- */
- struct device *
- hwmon_device_register_with_info(struct device *dev, const char *name,
- void *drvdata,
- const struct hwmon_chip_info *chip,
- const struct attribute_group **groups)
- {
- if (chip && (!chip->ops || !chip->info))
- return ERR_PTR(-EINVAL);
- return __hwmon_device_register(dev, name, drvdata, chip, groups);
- }
- EXPORT_SYMBOL_GPL(hwmon_device_register_with_info);
- /**
- * hwmon_device_register - register w/ hwmon
- * @dev: the device to register
- *
- * hwmon_device_unregister() must be called when the device is no
- * longer needed.
- *
- * Returns the pointer to the new device.
- */
- struct device *hwmon_device_register(struct device *dev)
- {
- return hwmon_device_register_with_groups(dev, NULL, NULL, NULL);
- }
- EXPORT_SYMBOL_GPL(hwmon_device_register);
- /**
- * hwmon_device_unregister - removes the previously registered class device
- *
- * @dev: the class device to destroy
- */
- void hwmon_device_unregister(struct device *dev)
- {
- int id;
- if (likely(sscanf(dev_name(dev), HWMON_ID_FORMAT, &id) == 1)) {
- device_unregister(dev);
- ida_simple_remove(&hwmon_ida, id);
- } else
- dev_dbg(dev->parent,
- "hwmon_device_unregister() failed: bad class ID!\n");
- }
- EXPORT_SYMBOL_GPL(hwmon_device_unregister);
- static void devm_hwmon_release(struct device *dev, void *res)
- {
- struct device *hwdev = *(struct device **)res;
- hwmon_device_unregister(hwdev);
- }
- /**
- * devm_hwmon_device_register_with_groups - register w/ hwmon
- * @dev: the parent device
- * @name: hwmon name attribute
- * @drvdata: driver data to attach to created device
- * @groups: List of attribute groups to create
- *
- * Returns the pointer to the new device. The new device is automatically
- * unregistered with the parent device.
- */
- struct device *
- devm_hwmon_device_register_with_groups(struct device *dev, const char *name,
- void *drvdata,
- const struct attribute_group **groups)
- {
- struct device **ptr, *hwdev;
- if (!dev)
- return ERR_PTR(-EINVAL);
- ptr = devres_alloc(devm_hwmon_release, sizeof(*ptr), GFP_KERNEL);
- if (!ptr)
- return ERR_PTR(-ENOMEM);
- hwdev = hwmon_device_register_with_groups(dev, name, drvdata, groups);
- if (IS_ERR(hwdev))
- goto error;
- *ptr = hwdev;
- devres_add(dev, ptr);
- return hwdev;
- error:
- devres_free(ptr);
- return hwdev;
- }
- EXPORT_SYMBOL_GPL(devm_hwmon_device_register_with_groups);
- /**
- * devm_hwmon_device_register_with_info - register w/ hwmon
- * @dev: the parent device
- * @name: hwmon name attribute
- * @drvdata: driver data to attach to created device
- * @info: Pointer to hwmon chip information
- * @groups - pointer to list of driver specific attribute groups
- *
- * Returns the pointer to the new device. The new device is automatically
- * unregistered with the parent device.
- */
- struct device *
- devm_hwmon_device_register_with_info(struct device *dev, const char *name,
- void *drvdata,
- const struct hwmon_chip_info *chip,
- const struct attribute_group **groups)
- {
- struct device **ptr, *hwdev;
- if (!dev)
- return ERR_PTR(-EINVAL);
- ptr = devres_alloc(devm_hwmon_release, sizeof(*ptr), GFP_KERNEL);
- if (!ptr)
- return ERR_PTR(-ENOMEM);
- hwdev = hwmon_device_register_with_info(dev, name, drvdata, chip,
- groups);
- if (IS_ERR(hwdev))
- goto error;
- *ptr = hwdev;
- devres_add(dev, ptr);
- return hwdev;
- error:
- devres_free(ptr);
- return hwdev;
- }
- EXPORT_SYMBOL_GPL(devm_hwmon_device_register_with_info);
- static int devm_hwmon_match(struct device *dev, void *res, void *data)
- {
- struct device **hwdev = res;
- return *hwdev == data;
- }
- /**
- * devm_hwmon_device_unregister - removes a previously registered hwmon device
- *
- * @dev: the parent device of the device to unregister
- */
- void devm_hwmon_device_unregister(struct device *dev)
- {
- WARN_ON(devres_release(dev, devm_hwmon_release, devm_hwmon_match, dev));
- }
- EXPORT_SYMBOL_GPL(devm_hwmon_device_unregister);
- static void __init hwmon_pci_quirks(void)
- {
- #if defined CONFIG_X86 && defined CONFIG_PCI
- struct pci_dev *sb;
- u16 base;
- u8 enable;
- /* Open access to 0x295-0x296 on MSI MS-7031 */
- sb = pci_get_device(PCI_VENDOR_ID_ATI, 0x436c, NULL);
- if (sb) {
- if (sb->subsystem_vendor == 0x1462 && /* MSI */
- sb->subsystem_device == 0x0031) { /* MS-7031 */
- pci_read_config_byte(sb, 0x48, &enable);
- pci_read_config_word(sb, 0x64, &base);
- if (base == 0 && !(enable & BIT(2))) {
- dev_info(&sb->dev,
- "Opening wide generic port at 0x295\n");
- pci_write_config_word(sb, 0x64, 0x295);
- pci_write_config_byte(sb, 0x48,
- enable | BIT(2));
- }
- }
- pci_dev_put(sb);
- }
- #endif
- }
- static int __init hwmon_init(void)
- {
- int err;
- hwmon_pci_quirks();
- err = class_register(&hwmon_class);
- if (err) {
- pr_err("couldn't register hwmon sysfs class\n");
- return err;
- }
- return 0;
- }
- static void __exit hwmon_exit(void)
- {
- class_unregister(&hwmon_class);
- }
- subsys_initcall(hwmon_init);
- module_exit(hwmon_exit);
- MODULE_AUTHOR("Mark M. Hoffman <mhoffman@lightlink.com>");
- MODULE_DESCRIPTION("hardware monitoring sysfs/class support");
- MODULE_LICENSE("GPL");
|