blob: e7109657129a0e25f8e741320285c3f9dcee4ee4 [file] [log] [blame]
Thomas Gleixner1802d0b2019-05-27 08:55:21 +02001// SPDX-License-Identifier: GPL-2.0-only
Pawel Moll48ed8872012-09-17 18:40:09 +01002/*
Pawel Moll48ed8872012-09-17 18:40:09 +01003 *
4 * Copyright (C) 2012 ARM Limited
5 */
6
7#define DRVNAME "vexpress-hwmon"
8#define pr_fmt(fmt) DRVNAME ": " fmt
9
10#include <linux/device.h>
11#include <linux/err.h>
12#include <linux/hwmon.h>
13#include <linux/hwmon-sysfs.h>
14#include <linux/module.h>
Guenter Roeck08245ad2012-12-31 00:04:59 -080015#include <linux/of.h>
Pawel Moll48ed8872012-09-17 18:40:09 +010016#include <linux/of_device.h>
17#include <linux/platform_device.h>
18#include <linux/vexpress.h>
19
20struct vexpress_hwmon_data {
21 struct device *hwmon_dev;
Pawel Moll3b9334a2014-04-30 16:46:29 +010022 struct regmap *reg;
Pawel Moll48ed8872012-09-17 18:40:09 +010023};
24
Pawel Moll48ed8872012-09-17 18:40:09 +010025static ssize_t vexpress_hwmon_label_show(struct device *dev,
26 struct device_attribute *dev_attr, char *buffer)
27{
28 const char *label = of_get_property(dev->of_node, "label", NULL);
29
Pawel Moll48ed8872012-09-17 18:40:09 +010030 return snprintf(buffer, PAGE_SIZE, "%s\n", label);
31}
32
33static ssize_t vexpress_hwmon_u32_show(struct device *dev,
34 struct device_attribute *dev_attr, char *buffer)
35{
36 struct vexpress_hwmon_data *data = dev_get_drvdata(dev);
37 int err;
38 u32 value;
39
Pawel Moll3b9334a2014-04-30 16:46:29 +010040 err = regmap_read(data->reg, 0, &value);
Pawel Moll48ed8872012-09-17 18:40:09 +010041 if (err)
42 return err;
43
44 return snprintf(buffer, PAGE_SIZE, "%u\n", value /
45 to_sensor_dev_attr(dev_attr)->index);
46}
47
48static ssize_t vexpress_hwmon_u64_show(struct device *dev,
49 struct device_attribute *dev_attr, char *buffer)
50{
51 struct vexpress_hwmon_data *data = dev_get_drvdata(dev);
52 int err;
53 u32 value_hi, value_lo;
54
Pawel Moll3b9334a2014-04-30 16:46:29 +010055 err = regmap_read(data->reg, 0, &value_lo);
Pawel Moll48ed8872012-09-17 18:40:09 +010056 if (err)
57 return err;
58
Pawel Moll3b9334a2014-04-30 16:46:29 +010059 err = regmap_read(data->reg, 1, &value_hi);
Pawel Moll48ed8872012-09-17 18:40:09 +010060 if (err)
61 return err;
62
63 return snprintf(buffer, PAGE_SIZE, "%llu\n",
64 div_u64(((u64)value_hi << 32) | value_lo,
65 to_sensor_dev_attr(dev_attr)->index));
66}
67
Pawel Mollb2e54112014-04-23 18:27:05 +010068static umode_t vexpress_hwmon_attr_is_visible(struct kobject *kobj,
69 struct attribute *attr, int index)
70{
71 struct device *dev = kobj_to_dev(kobj);
72 struct device_attribute *dev_attr = container_of(attr,
73 struct device_attribute, attr);
74
75 if (dev_attr->show == vexpress_hwmon_label_show &&
76 !of_get_property(dev->of_node, "label", NULL))
77 return 0;
78
79 return attr->mode;
80}
81
Pawel Moll52feaca2014-04-23 18:27:04 +010082struct vexpress_hwmon_type {
83 const char *name;
84 const struct attribute_group **attr_groups;
85};
86
Pawel Moll48ed8872012-09-17 18:40:09 +010087#if !defined(CONFIG_REGULATOR_VEXPRESS)
Guenter Roeckfa75f742018-12-10 14:02:23 -080088static DEVICE_ATTR(in1_label, 0444, vexpress_hwmon_label_show, NULL);
89static SENSOR_DEVICE_ATTR_RO(in1_input, vexpress_hwmon_u32, 1000);
Pawel Moll78cebd02014-06-12 15:14:33 +010090static struct attribute *vexpress_hwmon_attrs_volt[] = {
91 &dev_attr_in1_label.attr,
92 &sensor_dev_attr_in1_input.dev_attr.attr,
93 NULL
94};
Pawel Moll48ed8872012-09-17 18:40:09 +010095static struct attribute_group vexpress_hwmon_group_volt = {
Pawel Mollb2e54112014-04-23 18:27:05 +010096 .is_visible = vexpress_hwmon_attr_is_visible,
Pawel Moll48ed8872012-09-17 18:40:09 +010097 .attrs = vexpress_hwmon_attrs_volt,
98};
Pawel Moll52feaca2014-04-23 18:27:04 +010099static struct vexpress_hwmon_type vexpress_hwmon_volt = {
100 .name = "vexpress_volt",
101 .attr_groups = (const struct attribute_group *[]) {
102 &vexpress_hwmon_group_volt,
103 NULL,
104 },
105};
Pawel Moll48ed8872012-09-17 18:40:09 +0100106#endif
107
Guenter Roeckfa75f742018-12-10 14:02:23 -0800108static DEVICE_ATTR(curr1_label, 0444, vexpress_hwmon_label_show, NULL);
109static SENSOR_DEVICE_ATTR_RO(curr1_input, vexpress_hwmon_u32, 1000);
Pawel Moll78cebd02014-06-12 15:14:33 +0100110static struct attribute *vexpress_hwmon_attrs_amp[] = {
111 &dev_attr_curr1_label.attr,
112 &sensor_dev_attr_curr1_input.dev_attr.attr,
113 NULL
114};
Pawel Moll48ed8872012-09-17 18:40:09 +0100115static struct attribute_group vexpress_hwmon_group_amp = {
Pawel Mollb2e54112014-04-23 18:27:05 +0100116 .is_visible = vexpress_hwmon_attr_is_visible,
Pawel Moll48ed8872012-09-17 18:40:09 +0100117 .attrs = vexpress_hwmon_attrs_amp,
118};
Pawel Moll52feaca2014-04-23 18:27:04 +0100119static struct vexpress_hwmon_type vexpress_hwmon_amp = {
120 .name = "vexpress_amp",
121 .attr_groups = (const struct attribute_group *[]) {
122 &vexpress_hwmon_group_amp,
123 NULL
124 },
125};
Pawel Moll48ed8872012-09-17 18:40:09 +0100126
Guenter Roeckfa75f742018-12-10 14:02:23 -0800127static DEVICE_ATTR(temp1_label, 0444, vexpress_hwmon_label_show, NULL);
128static SENSOR_DEVICE_ATTR_RO(temp1_input, vexpress_hwmon_u32, 1000);
Pawel Moll78cebd02014-06-12 15:14:33 +0100129static struct attribute *vexpress_hwmon_attrs_temp[] = {
130 &dev_attr_temp1_label.attr,
131 &sensor_dev_attr_temp1_input.dev_attr.attr,
132 NULL
133};
Pawel Moll48ed8872012-09-17 18:40:09 +0100134static struct attribute_group vexpress_hwmon_group_temp = {
Pawel Mollb2e54112014-04-23 18:27:05 +0100135 .is_visible = vexpress_hwmon_attr_is_visible,
Pawel Moll48ed8872012-09-17 18:40:09 +0100136 .attrs = vexpress_hwmon_attrs_temp,
137};
Pawel Moll52feaca2014-04-23 18:27:04 +0100138static struct vexpress_hwmon_type vexpress_hwmon_temp = {
139 .name = "vexpress_temp",
140 .attr_groups = (const struct attribute_group *[]) {
141 &vexpress_hwmon_group_temp,
142 NULL
143 },
144};
Pawel Moll48ed8872012-09-17 18:40:09 +0100145
Guenter Roeckfa75f742018-12-10 14:02:23 -0800146static DEVICE_ATTR(power1_label, 0444, vexpress_hwmon_label_show, NULL);
147static SENSOR_DEVICE_ATTR_RO(power1_input, vexpress_hwmon_u32, 1);
Pawel Moll78cebd02014-06-12 15:14:33 +0100148static struct attribute *vexpress_hwmon_attrs_power[] = {
149 &dev_attr_power1_label.attr,
150 &sensor_dev_attr_power1_input.dev_attr.attr,
151 NULL
152};
Pawel Moll48ed8872012-09-17 18:40:09 +0100153static struct attribute_group vexpress_hwmon_group_power = {
Pawel Mollb2e54112014-04-23 18:27:05 +0100154 .is_visible = vexpress_hwmon_attr_is_visible,
Pawel Moll48ed8872012-09-17 18:40:09 +0100155 .attrs = vexpress_hwmon_attrs_power,
156};
Pawel Moll52feaca2014-04-23 18:27:04 +0100157static struct vexpress_hwmon_type vexpress_hwmon_power = {
158 .name = "vexpress_power",
159 .attr_groups = (const struct attribute_group *[]) {
160 &vexpress_hwmon_group_power,
161 NULL
162 },
163};
Pawel Moll48ed8872012-09-17 18:40:09 +0100164
Guenter Roeckfa75f742018-12-10 14:02:23 -0800165static DEVICE_ATTR(energy1_label, 0444, vexpress_hwmon_label_show, NULL);
166static SENSOR_DEVICE_ATTR_RO(energy1_input, vexpress_hwmon_u64, 1);
Pawel Moll78cebd02014-06-12 15:14:33 +0100167static struct attribute *vexpress_hwmon_attrs_energy[] = {
168 &dev_attr_energy1_label.attr,
169 &sensor_dev_attr_energy1_input.dev_attr.attr,
170 NULL
171};
Pawel Moll48ed8872012-09-17 18:40:09 +0100172static struct attribute_group vexpress_hwmon_group_energy = {
Pawel Mollb2e54112014-04-23 18:27:05 +0100173 .is_visible = vexpress_hwmon_attr_is_visible,
Pawel Moll48ed8872012-09-17 18:40:09 +0100174 .attrs = vexpress_hwmon_attrs_energy,
175};
Pawel Moll52feaca2014-04-23 18:27:04 +0100176static struct vexpress_hwmon_type vexpress_hwmon_energy = {
177 .name = "vexpress_energy",
178 .attr_groups = (const struct attribute_group *[]) {
179 &vexpress_hwmon_group_energy,
180 NULL
181 },
182};
Pawel Moll48ed8872012-09-17 18:40:09 +0100183
Fabian Frederickd720aca2015-03-16 20:54:36 +0100184static const struct of_device_id vexpress_hwmon_of_match[] = {
Pawel Moll48ed8872012-09-17 18:40:09 +0100185#if !defined(CONFIG_REGULATOR_VEXPRESS)
186 {
187 .compatible = "arm,vexpress-volt",
Pawel Moll52feaca2014-04-23 18:27:04 +0100188 .data = &vexpress_hwmon_volt,
Pawel Moll48ed8872012-09-17 18:40:09 +0100189 },
190#endif
191 {
192 .compatible = "arm,vexpress-amp",
Pawel Moll52feaca2014-04-23 18:27:04 +0100193 .data = &vexpress_hwmon_amp,
Pawel Moll48ed8872012-09-17 18:40:09 +0100194 }, {
195 .compatible = "arm,vexpress-temp",
Pawel Moll52feaca2014-04-23 18:27:04 +0100196 .data = &vexpress_hwmon_temp,
Pawel Moll48ed8872012-09-17 18:40:09 +0100197 }, {
198 .compatible = "arm,vexpress-power",
Pawel Moll52feaca2014-04-23 18:27:04 +0100199 .data = &vexpress_hwmon_power,
Pawel Moll48ed8872012-09-17 18:40:09 +0100200 }, {
201 .compatible = "arm,vexpress-energy",
Pawel Moll52feaca2014-04-23 18:27:04 +0100202 .data = &vexpress_hwmon_energy,
Pawel Moll48ed8872012-09-17 18:40:09 +0100203 },
204 {}
205};
206MODULE_DEVICE_TABLE(of, vexpress_hwmon_of_match);
207
208static int vexpress_hwmon_probe(struct platform_device *pdev)
209{
Pawel Moll48ed8872012-09-17 18:40:09 +0100210 const struct of_device_id *match;
211 struct vexpress_hwmon_data *data;
Pawel Moll52feaca2014-04-23 18:27:04 +0100212 const struct vexpress_hwmon_type *type;
Pawel Moll48ed8872012-09-17 18:40:09 +0100213
214 data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
215 if (!data)
216 return -ENOMEM;
217 platform_set_drvdata(pdev, data);
218
219 match = of_match_device(vexpress_hwmon_of_match, &pdev->dev);
220 if (!match)
221 return -ENODEV;
Pawel Moll52feaca2014-04-23 18:27:04 +0100222 type = match->data;
Pawel Moll48ed8872012-09-17 18:40:09 +0100223
Pawel Moll3b9334a2014-04-30 16:46:29 +0100224 data->reg = devm_regmap_init_vexpress_config(&pdev->dev);
225 if (IS_ERR(data->reg))
226 return PTR_ERR(data->reg);
Pawel Moll48ed8872012-09-17 18:40:09 +0100227
Pawel Moll78cebd02014-06-12 15:14:33 +0100228 data->hwmon_dev = devm_hwmon_device_register_with_groups(&pdev->dev,
229 type->name, data, type->attr_groups);
Pawel Moll48ed8872012-09-17 18:40:09 +0100230
Pawel Moll78cebd02014-06-12 15:14:33 +0100231 return PTR_ERR_OR_ZERO(data->hwmon_dev);
Pawel Moll48ed8872012-09-17 18:40:09 +0100232}
233
234static struct platform_driver vexpress_hwmon_driver = {
235 .probe = vexpress_hwmon_probe,
Pawel Moll48ed8872012-09-17 18:40:09 +0100236 .driver = {
237 .name = DRVNAME,
Pawel Moll48ed8872012-09-17 18:40:09 +0100238 .of_match_table = vexpress_hwmon_of_match,
239 },
240};
241
242module_platform_driver(vexpress_hwmon_driver);
243
244MODULE_AUTHOR("Pawel Moll <pawel.moll@arm.com>");
245MODULE_DESCRIPTION("Versatile Express hwmon sensors driver");
246MODULE_LICENSE("GPL");
247MODULE_ALIAS("platform:vexpress-hwmon");