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>
33 #include <asm/cputhreads.h>
36 #define MAX_ATTR_LEN 32
37 #define MAX_LABEL_LEN 64
39 /* Sensor suffix name from DT */
40 #define DT_FAULT_ATTR_SUFFIX "faulted"
41 #define DT_DATA_ATTR_SUFFIX "data"
42 #define DT_THRESHOLD_ATTR_SUFFIX "thrs"
45 * Enumerates all the types of sensors in the POWERNV platform and does index
46 * into 'struct sensor_group'
56 #define INVALID_INDEX (-1U)
58 static struct sensor_group
{
60 const char *compatible
;
61 struct attribute_group group
;
65 {"fan", "ibm,opal-sensor-cooling-fan"},
66 {"temp", "ibm,opal-sensor-amb-temp"},
67 {"in", "ibm,opal-sensor-power-supply"},
68 {"power", "ibm,opal-sensor-power"}
72 u32 id
; /* An opaque id of the firmware for each sensor */
76 char label
[MAX_LABEL_LEN
];
77 char name
[MAX_ATTR_LEN
];
78 struct device_attribute dev_attr
;
81 struct platform_data
{
82 const struct attribute_group
*attr_groups
[MAX_SENSOR_TYPE
+ 1];
83 u32 sensors_count
; /* Total count of sensors from each group */
86 static ssize_t
show_sensor(struct device
*dev
, struct device_attribute
*devattr
,
89 struct sensor_data
*sdata
= container_of(devattr
, struct sensor_data
,
94 ret
= opal_get_sensor_data(sdata
->id
, &x
);
98 /* Convert temperature to milli-degrees */
99 if (sdata
->type
== TEMP
)
101 /* Convert power to micro-watts */
102 else if (sdata
->type
== POWER_INPUT
)
105 return sprintf(buf
, "%u\n", x
);
108 static ssize_t
show_label(struct device
*dev
, struct device_attribute
*devattr
,
111 struct sensor_data
*sdata
= container_of(devattr
, struct sensor_data
,
114 return sprintf(buf
, "%s\n", sdata
->label
);
117 static int __init
get_logical_cpu(int hwcpu
)
121 for_each_possible_cpu(cpu
)
122 if (get_hard_smp_processor_id(cpu
) == hwcpu
)
128 static void __init
make_sensor_label(struct device_node
*np
,
129 struct sensor_data
*sdata
,
135 n
= snprintf(sdata
->label
, sizeof(sdata
->label
), "%s", label
);
138 * Core temp pretty print
140 if (!of_property_read_u32(np
, "ibm,pir", &id
)) {
141 int cpuid
= get_logical_cpu(id
);
145 * The digital thermal sensors are associated
146 * with a core. Let's print out the range of
147 * cpu ids corresponding to the hardware
148 * threads of the core.
150 n
+= snprintf(sdata
->label
+ n
,
151 sizeof(sdata
->label
) - n
, " %d-%d",
152 cpuid
, cpuid
+ threads_per_core
- 1);
154 n
+= snprintf(sdata
->label
+ n
,
155 sizeof(sdata
->label
) - n
, " phy%d", id
);
159 * Membuffer pretty print
161 if (!of_property_read_u32(np
, "ibm,chip-id", &id
))
162 n
+= snprintf(sdata
->label
+ n
, sizeof(sdata
->label
) - n
,
166 static int get_sensor_index_attr(const char *name
, u32
*index
, char *attr
)
168 char *hash_pos
= strchr(name
, '#');
177 dash_pos
= strchr(hash_pos
, '-');
181 copy_len
= dash_pos
- hash_pos
- 1;
182 if (copy_len
>= sizeof(buf
))
185 strncpy(buf
, hash_pos
+ 1, copy_len
);
187 err
= kstrtou32(buf
, 10, index
);
191 strncpy(attr
, dash_pos
+ 1, MAX_ATTR_LEN
);
196 static const char *convert_opal_attr_name(enum sensors type
,
197 const char *opal_attr
)
199 const char *attr_name
= NULL
;
201 if (!strcmp(opal_attr
, DT_FAULT_ATTR_SUFFIX
)) {
203 } else if (!strcmp(opal_attr
, DT_DATA_ATTR_SUFFIX
)) {
205 } else if (!strcmp(opal_attr
, DT_THRESHOLD_ATTR_SUFFIX
)) {
208 else if (type
== FAN
)
216 * This function translates the DT node name into the 'hwmon' attribute name.
217 * IBMPOWERNV device node appear like cooling-fan#2-data, amb-temp#1-thrs etc.
218 * which need to be mapped as fan2_input, temp1_max respectively before
219 * populating them inside hwmon device class.
221 static const char *parse_opal_node_name(const char *node_name
,
222 enum sensors type
, u32
*index
)
224 char attr_suffix
[MAX_ATTR_LEN
];
225 const char *attr_name
;
228 err
= get_sensor_index_attr(node_name
, index
, attr_suffix
);
232 attr_name
= convert_opal_attr_name(type
, attr_suffix
);
234 return ERR_PTR(-ENOENT
);
239 static int get_sensor_type(struct device_node
*np
)
244 for (type
= 0; type
< MAX_SENSOR_TYPE
; type
++) {
245 if (of_device_is_compatible(np
, sensor_groups
[type
].compatible
))
250 * Let's check if we have a newer device tree
252 if (!of_device_is_compatible(np
, "ibm,opal-sensor"))
253 return MAX_SENSOR_TYPE
;
255 if (of_property_read_string(np
, "sensor-type", &str
))
256 return MAX_SENSOR_TYPE
;
258 for (type
= 0; type
< MAX_SENSOR_TYPE
; type
++)
259 if (!strcmp(str
, sensor_groups
[type
].name
))
262 return MAX_SENSOR_TYPE
;
265 static u32
get_sensor_hwmon_index(struct sensor_data
*sdata
,
266 struct sensor_data
*sdata_table
, int count
)
271 * We don't use the OPAL index on newer device trees
273 if (sdata
->opal_index
!= INVALID_INDEX
) {
274 for (i
= 0; i
< count
; i
++)
275 if (sdata_table
[i
].opal_index
== sdata
->opal_index
&&
276 sdata_table
[i
].type
== sdata
->type
)
277 return sdata_table
[i
].hwmon_index
;
279 return ++sensor_groups
[sdata
->type
].hwmon_index
;
282 static int populate_attr_groups(struct platform_device
*pdev
)
284 struct platform_data
*pdata
= platform_get_drvdata(pdev
);
285 const struct attribute_group
**pgroups
= pdata
->attr_groups
;
286 struct device_node
*opal
, *np
;
289 opal
= of_find_node_by_path("/ibm,opal/sensors");
290 for_each_child_of_node(opal
, np
) {
293 if (np
->name
== NULL
)
296 type
= get_sensor_type(np
);
297 if (type
== MAX_SENSOR_TYPE
)
300 sensor_groups
[type
].attr_count
++;
303 * add a new attribute for labels
305 if (!of_property_read_string(np
, "label", &label
))
306 sensor_groups
[type
].attr_count
++;
311 for (type
= 0; type
< MAX_SENSOR_TYPE
; type
++) {
312 sensor_groups
[type
].group
.attrs
= devm_kzalloc(&pdev
->dev
,
313 sizeof(struct attribute
*) *
314 (sensor_groups
[type
].attr_count
+ 1),
316 if (!sensor_groups
[type
].group
.attrs
)
319 pgroups
[type
] = &sensor_groups
[type
].group
;
320 pdata
->sensors_count
+= sensor_groups
[type
].attr_count
;
321 sensor_groups
[type
].attr_count
= 0;
327 static void create_hwmon_attr(struct sensor_data
*sdata
, const char *attr_name
,
328 ssize_t (*show
)(struct device
*dev
,
329 struct device_attribute
*attr
,
332 snprintf(sdata
->name
, MAX_ATTR_LEN
, "%s%d_%s",
333 sensor_groups
[sdata
->type
].name
, sdata
->hwmon_index
,
336 sysfs_attr_init(&sdata
->dev_attr
.attr
);
337 sdata
->dev_attr
.attr
.name
= sdata
->name
;
338 sdata
->dev_attr
.attr
.mode
= S_IRUGO
;
339 sdata
->dev_attr
.show
= show
;
343 * Iterate through the device tree for each child of 'sensors' node, create
344 * a sysfs attribute file, the file is named by translating the DT node name
345 * to the name required by the higher 'hwmon' driver like fan1_input, temp1_max
348 static int create_device_attrs(struct platform_device
*pdev
)
350 struct platform_data
*pdata
= platform_get_drvdata(pdev
);
351 const struct attribute_group
**pgroups
= pdata
->attr_groups
;
352 struct device_node
*opal
, *np
;
353 struct sensor_data
*sdata
;
359 opal
= of_find_node_by_path("/ibm,opal/sensors");
360 sdata
= devm_kzalloc(&pdev
->dev
, pdata
->sensors_count
* sizeof(*sdata
),
367 for_each_child_of_node(opal
, np
) {
368 const char *attr_name
;
372 if (np
->name
== NULL
)
375 type
= get_sensor_type(np
);
376 if (type
== MAX_SENSOR_TYPE
)
380 * Newer device trees use a "sensor-data" property
383 if (of_property_read_u32(np
, "sensor-id", &sensor_id
) &&
384 of_property_read_u32(np
, "sensor-data", &sensor_id
)) {
386 "'sensor-id' missing in the node '%s'\n",
391 sdata
[count
].id
= sensor_id
;
392 sdata
[count
].type
= type
;
395 * If we can not parse the node name, it means we are
396 * running on a newer device tree. We can just forget
397 * about the OPAL index and use a defaut value for the
398 * hwmon attribute name
400 attr_name
= parse_opal_node_name(np
->name
, type
, &opal_index
);
401 if (IS_ERR(attr_name
)) {
403 opal_index
= INVALID_INDEX
;
406 sdata
[count
].opal_index
= opal_index
;
407 sdata
[count
].hwmon_index
=
408 get_sensor_hwmon_index(&sdata
[count
], sdata
, count
);
410 create_hwmon_attr(&sdata
[count
], attr_name
, show_sensor
);
412 pgroups
[type
]->attrs
[sensor_groups
[type
].attr_count
++] =
413 &sdata
[count
++].dev_attr
.attr
;
415 if (!of_property_read_string(np
, "label", &label
)) {
417 * For the label attribute, we can reuse the
418 * "properties" of the previous "input"
419 * attribute. They are related to the same
422 sdata
[count
].type
= type
;
423 sdata
[count
].opal_index
= sdata
[count
- 1].opal_index
;
424 sdata
[count
].hwmon_index
= sdata
[count
- 1].hwmon_index
;
426 make_sensor_label(np
, &sdata
[count
], label
);
428 create_hwmon_attr(&sdata
[count
], "label", show_label
);
430 pgroups
[type
]->attrs
[sensor_groups
[type
].attr_count
++] =
431 &sdata
[count
++].dev_attr
.attr
;
440 static int ibmpowernv_probe(struct platform_device
*pdev
)
442 struct platform_data
*pdata
;
443 struct device
*hwmon_dev
;
446 pdata
= devm_kzalloc(&pdev
->dev
, sizeof(*pdata
), GFP_KERNEL
);
450 platform_set_drvdata(pdev
, pdata
);
451 pdata
->sensors_count
= 0;
452 err
= populate_attr_groups(pdev
);
456 /* Create sysfs attribute data for each sensor found in the DT */
457 err
= create_device_attrs(pdev
);
461 /* Finally, register with hwmon */
462 hwmon_dev
= devm_hwmon_device_register_with_groups(&pdev
->dev
, DRVNAME
,
466 return PTR_ERR_OR_ZERO(hwmon_dev
);
469 static const struct platform_device_id opal_sensor_driver_ids
[] = {
471 .name
= "opal-sensor",
475 MODULE_DEVICE_TABLE(platform
, opal_sensor_driver_ids
);
477 static struct platform_driver ibmpowernv_driver
= {
478 .probe
= ibmpowernv_probe
,
479 .id_table
= opal_sensor_driver_ids
,
485 module_platform_driver(ibmpowernv_driver
);
487 MODULE_AUTHOR("Neelesh Gupta <neelegup@linux.vnet.ibm.com>");
488 MODULE_DESCRIPTION("IBM POWERNV platform sensors");
489 MODULE_LICENSE("GPL");