2 * IBM PowerNV platform sensors for temperature/fan/voltage/power
3 * Copyright (C) 2014 IBM
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program.
19 #define DRVNAME "ibmpowernv"
20 #define pr_fmt(fmt) DRVNAME ": " fmt
22 #include <linux/init.h>
23 #include <linux/module.h>
24 #include <linux/kernel.h>
25 #include <linux/hwmon.h>
26 #include <linux/hwmon-sysfs.h>
28 #include <linux/slab.h>
30 #include <linux/platform_device.h>
32 #include <linux/err.h>
34 #define MAX_ATTR_LEN 32
36 /* Sensor suffix name from DT */
37 #define DT_FAULT_ATTR_SUFFIX "faulted"
38 #define DT_DATA_ATTR_SUFFIX "data"
39 #define DT_THRESHOLD_ATTR_SUFFIX "thrs"
42 * Enumerates all the types of sensors in the POWERNV platform and does index
43 * into 'struct sensor_group'
53 static struct sensor_group
{
55 const char *compatible
;
56 struct attribute_group group
;
59 {"fan", "ibm,opal-sensor-cooling-fan"},
60 {"temp", "ibm,opal-sensor-amb-temp"},
61 {"in", "ibm,opal-sensor-power-supply"},
62 {"power", "ibm,opal-sensor-power"}
66 u32 id
; /* An opaque id of the firmware for each sensor */
68 char name
[MAX_ATTR_LEN
];
69 struct device_attribute dev_attr
;
72 struct platform_data
{
73 const struct attribute_group
*attr_groups
[MAX_SENSOR_TYPE
+ 1];
74 u32 sensors_count
; /* Total count of sensors from each group */
77 static ssize_t
show_sensor(struct device
*dev
, struct device_attribute
*devattr
,
80 struct sensor_data
*sdata
= container_of(devattr
, struct sensor_data
,
85 ret
= opal_get_sensor_data(sdata
->id
, &x
);
89 /* Convert temperature to milli-degrees */
90 if (sdata
->type
== TEMP
)
92 /* Convert power to micro-watts */
93 else if (sdata
->type
== POWER_INPUT
)
96 return sprintf(buf
, "%u\n", x
);
99 static int get_sensor_index_attr(const char *name
, u32
*index
,
102 char *hash_pos
= strchr(name
, '#');
111 dash_pos
= strchr(hash_pos
, '-');
115 copy_len
= dash_pos
- hash_pos
- 1;
116 if (copy_len
>= sizeof(buf
))
119 strncpy(buf
, hash_pos
+ 1, copy_len
);
121 err
= kstrtou32(buf
, 10, index
);
125 strncpy(attr
, dash_pos
+ 1, MAX_ATTR_LEN
);
131 * This function translates the DT node name into the 'hwmon' attribute name.
132 * IBMPOWERNV device node appear like cooling-fan#2-data, amb-temp#1-thrs etc.
133 * which need to be mapped as fan2_input, temp1_max respectively before
134 * populating them inside hwmon device class.
136 static int create_hwmon_attr_name(struct device
*dev
, enum sensors type
,
137 const char *node_name
,
138 char *hwmon_attr_name
)
140 char attr_suffix
[MAX_ATTR_LEN
];
145 err
= get_sensor_index_attr(node_name
, &index
, attr_suffix
);
147 dev_err(dev
, "Sensor device node name '%s' is invalid\n",
152 if (!strcmp(attr_suffix
, DT_FAULT_ATTR_SUFFIX
)) {
154 } else if (!strcmp(attr_suffix
, DT_DATA_ATTR_SUFFIX
)) {
156 } else if (!strcmp(attr_suffix
, DT_THRESHOLD_ATTR_SUFFIX
)) {
159 else if (type
== FAN
)
167 snprintf(hwmon_attr_name
, MAX_ATTR_LEN
, "%s%d_%s",
168 sensor_groups
[type
].name
, index
, attr_name
);
172 static int populate_attr_groups(struct platform_device
*pdev
)
174 struct platform_data
*pdata
= platform_get_drvdata(pdev
);
175 const struct attribute_group
**pgroups
= pdata
->attr_groups
;
176 struct device_node
*opal
, *np
;
179 opal
= of_find_node_by_path("/ibm,opal/sensors");
180 for_each_child_of_node(opal
, np
) {
181 if (np
->name
== NULL
)
184 for (type
= 0; type
< MAX_SENSOR_TYPE
; type
++)
185 if (of_device_is_compatible(np
,
186 sensor_groups
[type
].compatible
)) {
187 sensor_groups
[type
].attr_count
++;
194 for (type
= 0; type
< MAX_SENSOR_TYPE
; type
++) {
195 sensor_groups
[type
].group
.attrs
= devm_kzalloc(&pdev
->dev
,
196 sizeof(struct attribute
*) *
197 (sensor_groups
[type
].attr_count
+ 1),
199 if (!sensor_groups
[type
].group
.attrs
)
202 pgroups
[type
] = &sensor_groups
[type
].group
;
203 pdata
->sensors_count
+= sensor_groups
[type
].attr_count
;
204 sensor_groups
[type
].attr_count
= 0;
211 * Iterate through the device tree for each child of 'sensors' node, create
212 * a sysfs attribute file, the file is named by translating the DT node name
213 * to the name required by the higher 'hwmon' driver like fan1_input, temp1_max
216 static int create_device_attrs(struct platform_device
*pdev
)
218 struct platform_data
*pdata
= platform_get_drvdata(pdev
);
219 const struct attribute_group
**pgroups
= pdata
->attr_groups
;
220 struct device_node
*opal
, *np
;
221 struct sensor_data
*sdata
;
227 opal
= of_find_node_by_path("/ibm,opal/sensors");
228 sdata
= devm_kzalloc(&pdev
->dev
, pdata
->sensors_count
* sizeof(*sdata
),
235 for_each_child_of_node(opal
, np
) {
236 if (np
->name
== NULL
)
239 for (type
= 0; type
< MAX_SENSOR_TYPE
; type
++)
240 if (of_device_is_compatible(np
,
241 sensor_groups
[type
].compatible
))
244 if (type
== MAX_SENSOR_TYPE
)
247 if (of_property_read_u32(np
, "sensor-id", &sensor_id
)) {
249 "'sensor-id' missing in the node '%s'\n",
254 sdata
[count
].id
= sensor_id
;
255 sdata
[count
].type
= type
;
256 err
= create_hwmon_attr_name(&pdev
->dev
, type
, np
->name
,
261 sysfs_attr_init(&sdata
[count
].dev_attr
.attr
);
262 sdata
[count
].dev_attr
.attr
.name
= sdata
[count
].name
;
263 sdata
[count
].dev_attr
.attr
.mode
= S_IRUGO
;
264 sdata
[count
].dev_attr
.show
= show_sensor
;
266 pgroups
[type
]->attrs
[sensor_groups
[type
].attr_count
++] =
267 &sdata
[count
++].dev_attr
.attr
;
275 static int ibmpowernv_probe(struct platform_device
*pdev
)
277 struct platform_data
*pdata
;
278 struct device
*hwmon_dev
;
281 pdata
= devm_kzalloc(&pdev
->dev
, sizeof(*pdata
), GFP_KERNEL
);
285 platform_set_drvdata(pdev
, pdata
);
286 pdata
->sensors_count
= 0;
287 err
= populate_attr_groups(pdev
);
291 /* Create sysfs attribute data for each sensor found in the DT */
292 err
= create_device_attrs(pdev
);
296 /* Finally, register with hwmon */
297 hwmon_dev
= devm_hwmon_device_register_with_groups(&pdev
->dev
, DRVNAME
,
301 return PTR_ERR_OR_ZERO(hwmon_dev
);
304 static const struct platform_device_id opal_sensor_driver_ids
[] = {
306 .name
= "opal-sensor",
310 MODULE_DEVICE_TABLE(platform
, opal_sensor_driver_ids
);
312 static struct platform_driver ibmpowernv_driver
= {
313 .probe
= ibmpowernv_probe
,
314 .id_table
= opal_sensor_driver_ids
,
320 module_platform_driver(ibmpowernv_driver
);
322 MODULE_AUTHOR("Neelesh Gupta <neelegup@linux.vnet.ibm.com>");
323 MODULE_DESCRIPTION("IBM POWERNV platform sensors");
324 MODULE_LICENSE("GPL");