xref: /openbmc/linux/drivers/hwmon/ibmpowernv.c (revision 0c874100)
1 /*
2  * IBM PowerNV platform sensors for temperature/fan/voltage/power
3  * Copyright (C) 2014 IBM
4  *
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.
9  *
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.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.
17  */
18 
19 #define DRVNAME		"ibmpowernv"
20 #define pr_fmt(fmt)	DRVNAME ": " fmt
21 
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>
27 #include <linux/of.h>
28 #include <linux/slab.h>
29 
30 #include <linux/platform_device.h>
31 #include <asm/opal.h>
32 #include <linux/err.h>
33 #include <asm/cputhreads.h>
34 #include <asm/smp.h>
35 
36 #define MAX_ATTR_LEN	32
37 #define MAX_LABEL_LEN	64
38 
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"
43 
44 /*
45  * Enumerates all the types of sensors in the POWERNV platform and does index
46  * into 'struct sensor_group'
47  */
48 enum sensors {
49 	FAN,
50 	TEMP,
51 	POWER_SUPPLY,
52 	POWER_INPUT,
53 	CURRENT,
54 	ENERGY,
55 	MAX_SENSOR_TYPE,
56 };
57 
58 #define INVALID_INDEX (-1U)
59 
60 /*
61  * 'compatible' string properties for sensor types as defined in old
62  * PowerNV firmware (skiboot). These are ordered as 'enum sensors'.
63  */
64 static const char * const legacy_compatibles[] = {
65 	"ibm,opal-sensor-cooling-fan",
66 	"ibm,opal-sensor-amb-temp",
67 	"ibm,opal-sensor-power-supply",
68 	"ibm,opal-sensor-power"
69 };
70 
71 static struct sensor_group {
72 	const char *name; /* matches property 'sensor-type' */
73 	struct attribute_group group;
74 	u32 attr_count;
75 	u32 hwmon_index;
76 } sensor_groups[] = {
77 	{ "fan"   },
78 	{ "temp"  },
79 	{ "in"    },
80 	{ "power" },
81 	{ "curr"  },
82 	{ "energy" },
83 };
84 
85 struct sensor_data {
86 	u32 id; /* An opaque id of the firmware for each sensor */
87 	u32 hwmon_index;
88 	u32 opal_index;
89 	enum sensors type;
90 	char label[MAX_LABEL_LEN];
91 	char name[MAX_ATTR_LEN];
92 	struct device_attribute dev_attr;
93 	struct sensor_group_data *sgrp_data;
94 };
95 
96 struct sensor_group_data {
97 	struct mutex mutex;
98 	u32 gid;
99 	bool enable;
100 };
101 
102 struct platform_data {
103 	const struct attribute_group *attr_groups[MAX_SENSOR_TYPE + 1];
104 	struct sensor_group_data *sgrp_data;
105 	u32 sensors_count; /* Total count of sensors from each group */
106 	u32 nr_sensor_groups; /* Total number of sensor groups */
107 };
108 
109 static ssize_t show_sensor(struct device *dev, struct device_attribute *devattr,
110 			   char *buf)
111 {
112 	struct sensor_data *sdata = container_of(devattr, struct sensor_data,
113 						 dev_attr);
114 	ssize_t ret;
115 	u64 x;
116 
117 	if (sdata->sgrp_data && !sdata->sgrp_data->enable)
118 		return -ENODATA;
119 
120 	ret =  opal_get_sensor_data_u64(sdata->id, &x);
121 
122 	if (ret)
123 		return ret;
124 
125 	/* Convert temperature to milli-degrees */
126 	if (sdata->type == TEMP)
127 		x *= 1000;
128 	/* Convert power to micro-watts */
129 	else if (sdata->type == POWER_INPUT)
130 		x *= 1000000;
131 
132 	return sprintf(buf, "%llu\n", x);
133 }
134 
135 static ssize_t show_enable(struct device *dev,
136 			   struct device_attribute *devattr, char *buf)
137 {
138 	struct sensor_data *sdata = container_of(devattr, struct sensor_data,
139 						 dev_attr);
140 
141 	return sprintf(buf, "%u\n", sdata->sgrp_data->enable);
142 }
143 
144 static ssize_t store_enable(struct device *dev,
145 			    struct device_attribute *devattr,
146 			    const char *buf, size_t count)
147 {
148 	struct sensor_data *sdata = container_of(devattr, struct sensor_data,
149 						 dev_attr);
150 	struct sensor_group_data *sgrp_data = sdata->sgrp_data;
151 	int ret;
152 	bool data;
153 
154 	ret = kstrtobool(buf, &data);
155 	if (ret)
156 		return ret;
157 
158 	ret = mutex_lock_interruptible(&sgrp_data->mutex);
159 	if (ret)
160 		return ret;
161 
162 	if (data != sgrp_data->enable) {
163 		ret =  sensor_group_enable(sgrp_data->gid, data);
164 		if (!ret)
165 			sgrp_data->enable = data;
166 	}
167 
168 	if (!ret)
169 		ret = count;
170 
171 	mutex_unlock(&sgrp_data->mutex);
172 	return ret;
173 }
174 
175 static ssize_t show_label(struct device *dev, struct device_attribute *devattr,
176 			  char *buf)
177 {
178 	struct sensor_data *sdata = container_of(devattr, struct sensor_data,
179 						 dev_attr);
180 
181 	return sprintf(buf, "%s\n", sdata->label);
182 }
183 
184 static int get_logical_cpu(int hwcpu)
185 {
186 	int cpu;
187 
188 	for_each_possible_cpu(cpu)
189 		if (get_hard_smp_processor_id(cpu) == hwcpu)
190 			return cpu;
191 
192 	return -ENOENT;
193 }
194 
195 static void make_sensor_label(struct device_node *np,
196 			      struct sensor_data *sdata, const char *label)
197 {
198 	u32 id;
199 	size_t n;
200 
201 	n = snprintf(sdata->label, sizeof(sdata->label), "%s", label);
202 
203 	/*
204 	 * Core temp pretty print
205 	 */
206 	if (!of_property_read_u32(np, "ibm,pir", &id)) {
207 		int cpuid = get_logical_cpu(id);
208 
209 		if (cpuid >= 0)
210 			/*
211 			 * The digital thermal sensors are associated
212 			 * with a core.
213 			 */
214 			n += snprintf(sdata->label + n,
215 				      sizeof(sdata->label) - n, " %d",
216 				      cpuid);
217 		else
218 			n += snprintf(sdata->label + n,
219 				      sizeof(sdata->label) - n, " phy%d", id);
220 	}
221 
222 	/*
223 	 * Membuffer pretty print
224 	 */
225 	if (!of_property_read_u32(np, "ibm,chip-id", &id))
226 		n += snprintf(sdata->label + n, sizeof(sdata->label) - n,
227 			      " %d", id & 0xffff);
228 }
229 
230 static int get_sensor_index_attr(const char *name, u32 *index, char *attr)
231 {
232 	char *hash_pos = strchr(name, '#');
233 	char buf[8] = { 0 };
234 	char *dash_pos;
235 	u32 copy_len;
236 	int err;
237 
238 	if (!hash_pos)
239 		return -EINVAL;
240 
241 	dash_pos = strchr(hash_pos, '-');
242 	if (!dash_pos)
243 		return -EINVAL;
244 
245 	copy_len = dash_pos - hash_pos - 1;
246 	if (copy_len >= sizeof(buf))
247 		return -EINVAL;
248 
249 	strncpy(buf, hash_pos + 1, copy_len);
250 
251 	err = kstrtou32(buf, 10, index);
252 	if (err)
253 		return err;
254 
255 	strncpy(attr, dash_pos + 1, MAX_ATTR_LEN);
256 
257 	return 0;
258 }
259 
260 static const char *convert_opal_attr_name(enum sensors type,
261 					  const char *opal_attr)
262 {
263 	const char *attr_name = NULL;
264 
265 	if (!strcmp(opal_attr, DT_FAULT_ATTR_SUFFIX)) {
266 		attr_name = "fault";
267 	} else if (!strcmp(opal_attr, DT_DATA_ATTR_SUFFIX)) {
268 		attr_name = "input";
269 	} else if (!strcmp(opal_attr, DT_THRESHOLD_ATTR_SUFFIX)) {
270 		if (type == TEMP)
271 			attr_name = "max";
272 		else if (type == FAN)
273 			attr_name = "min";
274 	}
275 
276 	return attr_name;
277 }
278 
279 /*
280  * This function translates the DT node name into the 'hwmon' attribute name.
281  * IBMPOWERNV device node appear like cooling-fan#2-data, amb-temp#1-thrs etc.
282  * which need to be mapped as fan2_input, temp1_max respectively before
283  * populating them inside hwmon device class.
284  */
285 static const char *parse_opal_node_name(const char *node_name,
286 					enum sensors type, u32 *index)
287 {
288 	char attr_suffix[MAX_ATTR_LEN];
289 	const char *attr_name;
290 	int err;
291 
292 	err = get_sensor_index_attr(node_name, index, attr_suffix);
293 	if (err)
294 		return ERR_PTR(err);
295 
296 	attr_name = convert_opal_attr_name(type, attr_suffix);
297 	if (!attr_name)
298 		return ERR_PTR(-ENOENT);
299 
300 	return attr_name;
301 }
302 
303 static int get_sensor_type(struct device_node *np)
304 {
305 	enum sensors type;
306 	const char *str;
307 
308 	for (type = 0; type < ARRAY_SIZE(legacy_compatibles); type++) {
309 		if (of_device_is_compatible(np, legacy_compatibles[type]))
310 			return type;
311 	}
312 
313 	/*
314 	 * Let's check if we have a newer device tree
315 	 */
316 	if (!of_device_is_compatible(np, "ibm,opal-sensor"))
317 		return MAX_SENSOR_TYPE;
318 
319 	if (of_property_read_string(np, "sensor-type", &str))
320 		return MAX_SENSOR_TYPE;
321 
322 	for (type = 0; type < MAX_SENSOR_TYPE; type++)
323 		if (!strcmp(str, sensor_groups[type].name))
324 			return type;
325 
326 	return MAX_SENSOR_TYPE;
327 }
328 
329 static u32 get_sensor_hwmon_index(struct sensor_data *sdata,
330 				  struct sensor_data *sdata_table, int count)
331 {
332 	int i;
333 
334 	/*
335 	 * We don't use the OPAL index on newer device trees
336 	 */
337 	if (sdata->opal_index != INVALID_INDEX) {
338 		for (i = 0; i < count; i++)
339 			if (sdata_table[i].opal_index == sdata->opal_index &&
340 			    sdata_table[i].type == sdata->type)
341 				return sdata_table[i].hwmon_index;
342 	}
343 	return ++sensor_groups[sdata->type].hwmon_index;
344 }
345 
346 static int init_sensor_group_data(struct platform_device *pdev,
347 				  struct platform_data *pdata)
348 {
349 	struct sensor_group_data *sgrp_data;
350 	struct device_node *groups, *sgrp;
351 	int count = 0, ret = 0;
352 	enum sensors type;
353 
354 	groups = of_find_compatible_node(NULL, NULL, "ibm,opal-sensor-group");
355 	if (!groups)
356 		return ret;
357 
358 	for_each_child_of_node(groups, sgrp) {
359 		type = get_sensor_type(sgrp);
360 		if (type != MAX_SENSOR_TYPE)
361 			pdata->nr_sensor_groups++;
362 	}
363 
364 	if (!pdata->nr_sensor_groups)
365 		goto out;
366 
367 	sgrp_data = devm_kcalloc(&pdev->dev, pdata->nr_sensor_groups,
368 				 sizeof(*sgrp_data), GFP_KERNEL);
369 	if (!sgrp_data) {
370 		ret = -ENOMEM;
371 		goto out;
372 	}
373 
374 	for_each_child_of_node(groups, sgrp) {
375 		u32 gid;
376 
377 		type = get_sensor_type(sgrp);
378 		if (type == MAX_SENSOR_TYPE)
379 			continue;
380 
381 		if (of_property_read_u32(sgrp, "sensor-group-id", &gid))
382 			continue;
383 
384 		if (of_count_phandle_with_args(sgrp, "sensors", NULL) <= 0)
385 			continue;
386 
387 		sensor_groups[type].attr_count++;
388 		sgrp_data[count].gid = gid;
389 		mutex_init(&sgrp_data[count].mutex);
390 		sgrp_data[count++].enable = false;
391 	}
392 
393 	pdata->sgrp_data = sgrp_data;
394 out:
395 	of_node_put(groups);
396 	return ret;
397 }
398 
399 static struct sensor_group_data *get_sensor_group(struct platform_data *pdata,
400 						  struct device_node *node,
401 						  enum sensors gtype)
402 {
403 	struct sensor_group_data *sgrp_data = pdata->sgrp_data;
404 	struct device_node *groups, *sgrp;
405 
406 	groups = of_find_compatible_node(NULL, NULL, "ibm,opal-sensor-group");
407 	if (!groups)
408 		return NULL;
409 
410 	for_each_child_of_node(groups, sgrp) {
411 		struct of_phandle_iterator it;
412 		u32 gid;
413 		int rc, i;
414 		enum sensors type;
415 
416 		type = get_sensor_type(sgrp);
417 		if (type != gtype)
418 			continue;
419 
420 		if (of_property_read_u32(sgrp, "sensor-group-id", &gid))
421 			continue;
422 
423 		of_for_each_phandle(&it, rc, sgrp, "sensors", NULL, 0)
424 			if (it.phandle == node->phandle) {
425 				of_node_put(it.node);
426 				break;
427 			}
428 
429 		if (rc)
430 			continue;
431 
432 		for (i = 0; i < pdata->nr_sensor_groups; i++)
433 			if (gid == sgrp_data[i].gid) {
434 				of_node_put(sgrp);
435 				of_node_put(groups);
436 				return &sgrp_data[i];
437 			}
438 	}
439 
440 	of_node_put(groups);
441 	return NULL;
442 }
443 
444 static int populate_attr_groups(struct platform_device *pdev)
445 {
446 	struct platform_data *pdata = platform_get_drvdata(pdev);
447 	const struct attribute_group **pgroups = pdata->attr_groups;
448 	struct device_node *opal, *np;
449 	enum sensors type;
450 	int ret;
451 
452 	ret = init_sensor_group_data(pdev, pdata);
453 	if (ret)
454 		return ret;
455 
456 	opal = of_find_node_by_path("/ibm,opal/sensors");
457 	for_each_child_of_node(opal, np) {
458 		const char *label;
459 
460 		type = get_sensor_type(np);
461 		if (type == MAX_SENSOR_TYPE)
462 			continue;
463 
464 		sensor_groups[type].attr_count++;
465 
466 		/*
467 		 * add attributes for labels, min and max
468 		 */
469 		if (!of_property_read_string(np, "label", &label))
470 			sensor_groups[type].attr_count++;
471 		if (of_find_property(np, "sensor-data-min", NULL))
472 			sensor_groups[type].attr_count++;
473 		if (of_find_property(np, "sensor-data-max", NULL))
474 			sensor_groups[type].attr_count++;
475 	}
476 
477 	of_node_put(opal);
478 
479 	for (type = 0; type < MAX_SENSOR_TYPE; type++) {
480 		sensor_groups[type].group.attrs = devm_kcalloc(&pdev->dev,
481 					sensor_groups[type].attr_count + 1,
482 					sizeof(struct attribute *),
483 					GFP_KERNEL);
484 		if (!sensor_groups[type].group.attrs)
485 			return -ENOMEM;
486 
487 		pgroups[type] = &sensor_groups[type].group;
488 		pdata->sensors_count += sensor_groups[type].attr_count;
489 		sensor_groups[type].attr_count = 0;
490 	}
491 
492 	return 0;
493 }
494 
495 static void create_hwmon_attr(struct sensor_data *sdata, const char *attr_name,
496 			      ssize_t (*show)(struct device *dev,
497 					      struct device_attribute *attr,
498 					      char *buf),
499 			    ssize_t (*store)(struct device *dev,
500 					     struct device_attribute *attr,
501 					     const char *buf, size_t count))
502 {
503 	snprintf(sdata->name, MAX_ATTR_LEN, "%s%d_%s",
504 		 sensor_groups[sdata->type].name, sdata->hwmon_index,
505 		 attr_name);
506 
507 	sysfs_attr_init(&sdata->dev_attr.attr);
508 	sdata->dev_attr.attr.name = sdata->name;
509 	sdata->dev_attr.show = show;
510 	if (store) {
511 		sdata->dev_attr.store = store;
512 		sdata->dev_attr.attr.mode = 0664;
513 	} else {
514 		sdata->dev_attr.attr.mode = 0444;
515 	}
516 }
517 
518 static void populate_sensor(struct sensor_data *sdata, int od, int hd, int sid,
519 			    const char *attr_name, enum sensors type,
520 			    const struct attribute_group *pgroup,
521 			    struct sensor_group_data *sgrp_data,
522 			    ssize_t (*show)(struct device *dev,
523 					    struct device_attribute *attr,
524 					    char *buf),
525 			    ssize_t (*store)(struct device *dev,
526 					     struct device_attribute *attr,
527 					     const char *buf, size_t count))
528 {
529 	sdata->id = sid;
530 	sdata->type = type;
531 	sdata->opal_index = od;
532 	sdata->hwmon_index = hd;
533 	create_hwmon_attr(sdata, attr_name, show, store);
534 	pgroup->attrs[sensor_groups[type].attr_count++] = &sdata->dev_attr.attr;
535 	sdata->sgrp_data = sgrp_data;
536 }
537 
538 static char *get_max_attr(enum sensors type)
539 {
540 	switch (type) {
541 	case POWER_INPUT:
542 		return "input_highest";
543 	default:
544 		return "highest";
545 	}
546 }
547 
548 static char *get_min_attr(enum sensors type)
549 {
550 	switch (type) {
551 	case POWER_INPUT:
552 		return "input_lowest";
553 	default:
554 		return "lowest";
555 	}
556 }
557 
558 /*
559  * Iterate through the device tree for each child of 'sensors' node, create
560  * a sysfs attribute file, the file is named by translating the DT node name
561  * to the name required by the higher 'hwmon' driver like fan1_input, temp1_max
562  * etc..
563  */
564 static int create_device_attrs(struct platform_device *pdev)
565 {
566 	struct platform_data *pdata = platform_get_drvdata(pdev);
567 	const struct attribute_group **pgroups = pdata->attr_groups;
568 	struct device_node *opal, *np;
569 	struct sensor_data *sdata;
570 	u32 count = 0;
571 	u32 group_attr_id[MAX_SENSOR_TYPE] = {0};
572 
573 	sdata = devm_kcalloc(&pdev->dev,
574 			     pdata->sensors_count, sizeof(*sdata),
575 			     GFP_KERNEL);
576 	if (!sdata)
577 		return -ENOMEM;
578 
579 	opal = of_find_node_by_path("/ibm,opal/sensors");
580 	for_each_child_of_node(opal, np) {
581 		struct sensor_group_data *sgrp_data;
582 		const char *attr_name;
583 		u32 opal_index, hw_id;
584 		u32 sensor_id;
585 		const char *label;
586 		enum sensors type;
587 
588 		type = get_sensor_type(np);
589 		if (type == MAX_SENSOR_TYPE)
590 			continue;
591 
592 		/*
593 		 * Newer device trees use a "sensor-data" property
594 		 * name for input.
595 		 */
596 		if (of_property_read_u32(np, "sensor-id", &sensor_id) &&
597 		    of_property_read_u32(np, "sensor-data", &sensor_id)) {
598 			dev_info(&pdev->dev,
599 				 "'sensor-id' missing in the node '%pOFn'\n",
600 				 np);
601 			continue;
602 		}
603 
604 		sdata[count].id = sensor_id;
605 		sdata[count].type = type;
606 
607 		/*
608 		 * If we can not parse the node name, it means we are
609 		 * running on a newer device tree. We can just forget
610 		 * about the OPAL index and use a defaut value for the
611 		 * hwmon attribute name
612 		 */
613 		attr_name = parse_opal_node_name(np->name, type, &opal_index);
614 		if (IS_ERR(attr_name)) {
615 			attr_name = "input";
616 			opal_index = INVALID_INDEX;
617 		}
618 
619 		hw_id = get_sensor_hwmon_index(&sdata[count], sdata, count);
620 		sgrp_data = get_sensor_group(pdata, np, type);
621 		populate_sensor(&sdata[count], opal_index, hw_id, sensor_id,
622 				attr_name, type, pgroups[type], sgrp_data,
623 				show_sensor, NULL);
624 		count++;
625 
626 		if (!of_property_read_string(np, "label", &label)) {
627 			/*
628 			 * For the label attribute, we can reuse the
629 			 * "properties" of the previous "input"
630 			 * attribute. They are related to the same
631 			 * sensor.
632 			 */
633 
634 			make_sensor_label(np, &sdata[count], label);
635 			populate_sensor(&sdata[count], opal_index, hw_id,
636 					sensor_id, "label", type, pgroups[type],
637 					NULL, show_label, NULL);
638 			count++;
639 		}
640 
641 		if (!of_property_read_u32(np, "sensor-data-max", &sensor_id)) {
642 			attr_name = get_max_attr(type);
643 			populate_sensor(&sdata[count], opal_index, hw_id,
644 					sensor_id, attr_name, type,
645 					pgroups[type], sgrp_data, show_sensor,
646 					NULL);
647 			count++;
648 		}
649 
650 		if (!of_property_read_u32(np, "sensor-data-min", &sensor_id)) {
651 			attr_name = get_min_attr(type);
652 			populate_sensor(&sdata[count], opal_index, hw_id,
653 					sensor_id, attr_name, type,
654 					pgroups[type], sgrp_data, show_sensor,
655 					NULL);
656 			count++;
657 		}
658 
659 		if (sgrp_data && !sgrp_data->enable) {
660 			sgrp_data->enable = true;
661 			hw_id = ++group_attr_id[type];
662 			populate_sensor(&sdata[count], opal_index, hw_id,
663 					sgrp_data->gid, "enable", type,
664 					pgroups[type], sgrp_data, show_enable,
665 					store_enable);
666 			count++;
667 		}
668 	}
669 
670 	of_node_put(opal);
671 	return 0;
672 }
673 
674 static int ibmpowernv_probe(struct platform_device *pdev)
675 {
676 	struct platform_data *pdata;
677 	struct device *hwmon_dev;
678 	int err;
679 
680 	pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
681 	if (!pdata)
682 		return -ENOMEM;
683 
684 	platform_set_drvdata(pdev, pdata);
685 	pdata->sensors_count = 0;
686 	pdata->nr_sensor_groups = 0;
687 	err = populate_attr_groups(pdev);
688 	if (err)
689 		return err;
690 
691 	/* Create sysfs attribute data for each sensor found in the DT */
692 	err = create_device_attrs(pdev);
693 	if (err)
694 		return err;
695 
696 	/* Finally, register with hwmon */
697 	hwmon_dev = devm_hwmon_device_register_with_groups(&pdev->dev, DRVNAME,
698 							   pdata,
699 							   pdata->attr_groups);
700 
701 	return PTR_ERR_OR_ZERO(hwmon_dev);
702 }
703 
704 static const struct platform_device_id opal_sensor_driver_ids[] = {
705 	{
706 		.name = "opal-sensor",
707 	},
708 	{ }
709 };
710 MODULE_DEVICE_TABLE(platform, opal_sensor_driver_ids);
711 
712 static const struct of_device_id opal_sensor_match[] = {
713 	{ .compatible	= "ibm,opal-sensor" },
714 	{ },
715 };
716 MODULE_DEVICE_TABLE(of, opal_sensor_match);
717 
718 static struct platform_driver ibmpowernv_driver = {
719 	.probe		= ibmpowernv_probe,
720 	.id_table	= opal_sensor_driver_ids,
721 	.driver		= {
722 		.name	= DRVNAME,
723 		.of_match_table	= opal_sensor_match,
724 	},
725 };
726 
727 module_platform_driver(ibmpowernv_driver);
728 
729 MODULE_AUTHOR("Neelesh Gupta <neelegup@linux.vnet.ibm.com>");
730 MODULE_DESCRIPTION("IBM POWERNV platform sensors");
731 MODULE_LICENSE("GPL");
732