1 // SPDX-License-Identifier: GPL-2.0-only
4 * Copyright (C) 2012 ARM Limited
7 #define DRVNAME "vexpress-hwmon"
8 #define pr_fmt(fmt) DRVNAME ": " fmt
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>
16 #include <linux/of_device.h>
17 #include <linux/platform_device.h>
18 #include <linux/vexpress.h>
20 struct vexpress_hwmon_data
{
21 struct device
*hwmon_dev
;
25 static ssize_t
vexpress_hwmon_label_show(struct device
*dev
,
26 struct device_attribute
*dev_attr
, char *buffer
)
28 const char *label
= of_get_property(dev
->of_node
, "label", NULL
);
30 return snprintf(buffer
, PAGE_SIZE
, "%s\n", label
);
33 static ssize_t
vexpress_hwmon_u32_show(struct device
*dev
,
34 struct device_attribute
*dev_attr
, char *buffer
)
36 struct vexpress_hwmon_data
*data
= dev_get_drvdata(dev
);
40 err
= regmap_read(data
->reg
, 0, &value
);
44 return snprintf(buffer
, PAGE_SIZE
, "%u\n", value
/
45 to_sensor_dev_attr(dev_attr
)->index
);
48 static ssize_t
vexpress_hwmon_u64_show(struct device
*dev
,
49 struct device_attribute
*dev_attr
, char *buffer
)
51 struct vexpress_hwmon_data
*data
= dev_get_drvdata(dev
);
53 u32 value_hi
, value_lo
;
55 err
= regmap_read(data
->reg
, 0, &value_lo
);
59 err
= regmap_read(data
->reg
, 1, &value_hi
);
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
));
68 static umode_t
vexpress_hwmon_attr_is_visible(struct kobject
*kobj
,
69 struct attribute
*attr
, int index
)
71 struct device
*dev
= kobj_to_dev(kobj
);
72 struct device_attribute
*dev_attr
= container_of(attr
,
73 struct device_attribute
, attr
);
75 if (dev_attr
->show
== vexpress_hwmon_label_show
&&
76 !of_get_property(dev
->of_node
, "label", NULL
))
82 struct vexpress_hwmon_type
{
84 const struct attribute_group
**attr_groups
;
87 #if !defined(CONFIG_REGULATOR_VEXPRESS)
88 static DEVICE_ATTR(in1_label
, 0444, vexpress_hwmon_label_show
, NULL
);
89 static SENSOR_DEVICE_ATTR_RO(in1_input
, vexpress_hwmon_u32
, 1000);
90 static struct attribute
*vexpress_hwmon_attrs_volt
[] = {
91 &dev_attr_in1_label
.attr
,
92 &sensor_dev_attr_in1_input
.dev_attr
.attr
,
95 static struct attribute_group vexpress_hwmon_group_volt
= {
96 .is_visible
= vexpress_hwmon_attr_is_visible
,
97 .attrs
= vexpress_hwmon_attrs_volt
,
99 static struct vexpress_hwmon_type vexpress_hwmon_volt
= {
100 .name
= "vexpress_volt",
101 .attr_groups
= (const struct attribute_group
*[]) {
102 &vexpress_hwmon_group_volt
,
108 static DEVICE_ATTR(curr1_label
, 0444, vexpress_hwmon_label_show
, NULL
);
109 static SENSOR_DEVICE_ATTR_RO(curr1_input
, vexpress_hwmon_u32
, 1000);
110 static struct attribute
*vexpress_hwmon_attrs_amp
[] = {
111 &dev_attr_curr1_label
.attr
,
112 &sensor_dev_attr_curr1_input
.dev_attr
.attr
,
115 static struct attribute_group vexpress_hwmon_group_amp
= {
116 .is_visible
= vexpress_hwmon_attr_is_visible
,
117 .attrs
= vexpress_hwmon_attrs_amp
,
119 static struct vexpress_hwmon_type vexpress_hwmon_amp
= {
120 .name
= "vexpress_amp",
121 .attr_groups
= (const struct attribute_group
*[]) {
122 &vexpress_hwmon_group_amp
,
127 static DEVICE_ATTR(temp1_label
, 0444, vexpress_hwmon_label_show
, NULL
);
128 static SENSOR_DEVICE_ATTR_RO(temp1_input
, vexpress_hwmon_u32
, 1000);
129 static struct attribute
*vexpress_hwmon_attrs_temp
[] = {
130 &dev_attr_temp1_label
.attr
,
131 &sensor_dev_attr_temp1_input
.dev_attr
.attr
,
134 static struct attribute_group vexpress_hwmon_group_temp
= {
135 .is_visible
= vexpress_hwmon_attr_is_visible
,
136 .attrs
= vexpress_hwmon_attrs_temp
,
138 static struct vexpress_hwmon_type vexpress_hwmon_temp
= {
139 .name
= "vexpress_temp",
140 .attr_groups
= (const struct attribute_group
*[]) {
141 &vexpress_hwmon_group_temp
,
146 static DEVICE_ATTR(power1_label
, 0444, vexpress_hwmon_label_show
, NULL
);
147 static SENSOR_DEVICE_ATTR_RO(power1_input
, vexpress_hwmon_u32
, 1);
148 static struct attribute
*vexpress_hwmon_attrs_power
[] = {
149 &dev_attr_power1_label
.attr
,
150 &sensor_dev_attr_power1_input
.dev_attr
.attr
,
153 static struct attribute_group vexpress_hwmon_group_power
= {
154 .is_visible
= vexpress_hwmon_attr_is_visible
,
155 .attrs
= vexpress_hwmon_attrs_power
,
157 static struct vexpress_hwmon_type vexpress_hwmon_power
= {
158 .name
= "vexpress_power",
159 .attr_groups
= (const struct attribute_group
*[]) {
160 &vexpress_hwmon_group_power
,
165 static DEVICE_ATTR(energy1_label
, 0444, vexpress_hwmon_label_show
, NULL
);
166 static SENSOR_DEVICE_ATTR_RO(energy1_input
, vexpress_hwmon_u64
, 1);
167 static struct attribute
*vexpress_hwmon_attrs_energy
[] = {
168 &dev_attr_energy1_label
.attr
,
169 &sensor_dev_attr_energy1_input
.dev_attr
.attr
,
172 static struct attribute_group vexpress_hwmon_group_energy
= {
173 .is_visible
= vexpress_hwmon_attr_is_visible
,
174 .attrs
= vexpress_hwmon_attrs_energy
,
176 static struct vexpress_hwmon_type vexpress_hwmon_energy
= {
177 .name
= "vexpress_energy",
178 .attr_groups
= (const struct attribute_group
*[]) {
179 &vexpress_hwmon_group_energy
,
184 static const struct of_device_id vexpress_hwmon_of_match
[] = {
185 #if !defined(CONFIG_REGULATOR_VEXPRESS)
187 .compatible
= "arm,vexpress-volt",
188 .data
= &vexpress_hwmon_volt
,
192 .compatible
= "arm,vexpress-amp",
193 .data
= &vexpress_hwmon_amp
,
195 .compatible
= "arm,vexpress-temp",
196 .data
= &vexpress_hwmon_temp
,
198 .compatible
= "arm,vexpress-power",
199 .data
= &vexpress_hwmon_power
,
201 .compatible
= "arm,vexpress-energy",
202 .data
= &vexpress_hwmon_energy
,
206 MODULE_DEVICE_TABLE(of
, vexpress_hwmon_of_match
);
208 static int vexpress_hwmon_probe(struct platform_device
*pdev
)
210 const struct of_device_id
*match
;
211 struct vexpress_hwmon_data
*data
;
212 const struct vexpress_hwmon_type
*type
;
214 data
= devm_kzalloc(&pdev
->dev
, sizeof(*data
), GFP_KERNEL
);
217 platform_set_drvdata(pdev
, data
);
219 match
= of_match_device(vexpress_hwmon_of_match
, &pdev
->dev
);
224 data
->reg
= devm_regmap_init_vexpress_config(&pdev
->dev
);
225 if (IS_ERR(data
->reg
))
226 return PTR_ERR(data
->reg
);
228 data
->hwmon_dev
= devm_hwmon_device_register_with_groups(&pdev
->dev
,
229 type
->name
, data
, type
->attr_groups
);
231 return PTR_ERR_OR_ZERO(data
->hwmon_dev
);
234 static struct platform_driver vexpress_hwmon_driver
= {
235 .probe
= vexpress_hwmon_probe
,
238 .of_match_table
= vexpress_hwmon_of_match
,
242 module_platform_driver(vexpress_hwmon_driver
);
244 MODULE_AUTHOR("Pawel Moll <pawel.moll@arm.com>");
245 MODULE_DESCRIPTION("Versatile Express hwmon sensors driver");
246 MODULE_LICENSE("GPL");
247 MODULE_ALIAS("platform:vexpress-hwmon");