aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hwmon/ibmpowernv.c
blob: b7b1297a9b02c5027d0374e7fd9baf0896c1dcb5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
/*
 * hwmon driver for temperature/power/fan on IBM PowerNV platform
 * Copyright (C) 2013 IBM
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#include <linux/init.h>
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/hwmon.h>
#include <linux/hwmon-sysfs.h>
#include <linux/of.h>
#include <linux/slab.h>

#include <linux/jiffies.h>
#include <linux/platform_device.h>
#include <asm/opal.h>
#include <linux/err.h>

MODULE_DESCRIPTION("IBM PowerNV Platform power/temp/fan sensor hwmon module");
MODULE_LICENSE("GPL");

#define MAX_ATTR_LENGTH		32

/* Device tree sensor name prefixes. The device tree has the names in the
 * format "cooling-fan#2-faulted" where the "cooling-fan" is the sensor type,
 * 2 is the sensor count, and "faulted" is the sensor data attribute type.
 */
#define DT_FAULT_ATTR_SUFFIX		"faulted"
#define DT_DATA_ATTR_SUFFIX		"data"
#define DT_THRESHOLD_ATTR_SUFFIX	"thrs"

enum sensors {
	FAN,
	TEMPERATURE,
	POWERSUPPLY,
	POWER,
	MAX_SENSOR_TYPE,
};

enum attributes {
	INPUT,
	MINIMUM,
	MAXIMUM,
	FAULT,
	MAX_ATTR_TYPES
};

static struct sensor_name {
	char *name;
	char *compaible;
} sensor_names[] = {
		{"fan-sensor", "ibm,opal-sensor-cooling-fan"},
		{"amb-temp-sensor", "ibm,opal-sensor-amb-temp"},
		{"power-sensor", "ibm,opal-sensor-power-supply"},
		{"power", "ibm,opal-sensor-power"}
};

static const char * const attribute_type_table[] = {
	"input",
	"min",
	"max",
	"fault",
	NULL
};

struct pdev_entry {
	struct list_head list;
	struct platform_device *pdev;
	enum sensors type;
};

static LIST_HEAD(pdev_list);

/* The sensors are categorised on type.
 *
 * The sensors of same type are categorised under a common platform device.
 * So, The pdev is shared by all sensors of same type.
 * Ex : temp1_input, temp1_max, temp2_input,temp2_max all share same platform
 * device.
 *
 * "sensor_data" is the Platform device specific data.
 * There is one hwmon_device instance for all the sensors of same type.
 * This also holds the list of all sensors with same type but different
 * attribute and index.
 */
struct sensor_specific_data {
	u32 sensor_id; /* The hex value as in the device tree */
	u32 sensor_index; /* The sensor instance index */
	struct sensor_device_attribute sd_attr;
	enum attributes attr_type;
	char attr_name[64];
};

struct sensor_data {
	struct device *hwmon_dev;
	struct list_head sensor_list;
	struct device_attribute name_attr;
};

struct  sensor_entry {
	struct list_head list;
	struct sensor_specific_data *sensor_data;
};

static struct platform_device *powernv_sensor_get_pdev(enum sensors type)
{
	struct pdev_entry *p;
	list_for_each_entry(p, &pdev_list, list)
		if (p->type == type)
			return p->pdev;

	return NULL;
}

static struct sensor_specific_data *powernv_sensor_get_sensor_data(
					struct sensor_data *pdata,
					int index, enum attributes attr_type)
{
	struct sensor_entry *p;
	list_for_each_entry(p, &pdata->sensor_list, list)
		if ((p->sensor_data->sensor_index == index) &&
		    (attr_type == p->sensor_data->attr_type))
			return p->sensor_data;

	return NULL;
}

static ssize_t show_name(struct device *dev,
				struct device_attribute *devattr, char *buf)
{
	struct platform_device *pdev = to_platform_device(dev);

	return sprintf(buf, "%s\n", pdev->name);
}

/* Note: Data from the sensors for each sensor type needs to be converted to
 * the dimension appropriate.
 */
static ssize_t show_sensor(struct device *dev,
				struct device_attribute *devattr, char *buf)
{
	struct sensor_device_attribute *sd_attr = to_sensor_dev_attr(devattr);
	struct platform_device *pdev = to_platform_device(dev);
	struct sensor_data *pdata = platform_get_drvdata(pdev);
	struct sensor_specific_data *tdata = NULL;
	enum sensors sensor_type = pdev->id;
	u32 x = -1;
	int ret;

	if (sd_attr && sd_attr->dev_attr.attr.name) {
		char *pos = strchr(sd_attr->dev_attr.attr.name, '_');
		int i;

		for (i = 0; i < MAX_ATTR_TYPES; i++) {
			if (strcmp(pos+1, attribute_type_table[i]) == 0) {
				tdata = powernv_sensor_get_sensor_data(pdata,
						sd_attr->index, i);
				break;
			}
		}
	}

	if (tdata) {
		ret = opal_get_sensor_data(tdata->sensor_id, &x);
		if (ret)
			x = -1;
	}

	if (sensor_type == TEMPERATURE && x > 0) {
		/* Temperature comes in Degrees and convert it to
		 * milli-degrees.
		 */
		x = x*1000;
	} else if (sensor_type == POWER && x > 0) {
		/* Power value comes in watts, convert to micro-watts */
		x = x * 1000000;
	}

	return sprintf(buf, "%d\n", x);
}

static u32 get_sensor_index_from_name(const char *name)
{
	char *hash_position = strchr(name, '#');
	u32 index = 0, copy_length;
	char newbuf[8];

	if (hash_position) {
		copy_length = strchr(hash_position, '-') - hash_position - 1;
		if (copy_length < sizeof(newbuf)) {
			strncpy(newbuf, hash_position + 1, copy_length);
			sscanf(newbuf, "%d", &index);
		}
	}

	return index;
}

static inline void get_sensor_suffix_from_name(const char *name, char *suffix)
{
	char *dash_position = strrchr(name, '-');
	if (dash_position)
		strncpy(suffix, dash_position+1, MAX_ATTR_LENGTH);
	else
		strcpy(suffix,"");
}

static int get_sensor_attr_properties(const char *sensor_name,
		enum sensors sensor_type, enum attributes *attr_type,
		u32 *sensor_index)
{
	char suffix[MAX_ATTR_LENGTH];

	*attr_type = MAX_ATTR_TYPES;
	*sensor_index = get_sensor_index_from_name(sensor_name);
	if (*sensor_index == 0)
		return -EINVAL;

	get_sensor_suffix_from_name(sensor_name, suffix);
	if (strcmp(suffix, "") == 0)
		return -EINVAL;

	if (strcmp(suffix, DT_FAULT_ATTR_SUFFIX) == 0)
		*attr_type = FAULT;
	else if (strcmp(suffix, DT_DATA_ATTR_SUFFIX) == 0)
		*attr_type = INPUT;
	else if ((sensor_type == TEMPERATURE) &&
			(strcmp(suffix, DT_THRESHOLD_ATTR_SUFFIX) == 0))
		*attr_type = MAXIMUM;
	else if ((sensor_type == FAN) &&
			(strcmp(suffix, DT_THRESHOLD_ATTR_SUFFIX) == 0))
		*attr_type = MINIMUM;
	else
		return -ENOENT;

	if (((sensor_type == FAN) && ((*attr_type == INPUT) ||
				    (*attr_type == MINIMUM)))
	    || ((sensor_type == TEMPERATURE) && ((*attr_type == INPUT) ||
						 (*attr_type == MAXIMUM)))
	    || ((sensor_type == POWER) && ((*attr_type == INPUT))))
		return 0;

	return -ENOENT;
}

static int create_sensor_attr(struct sensor_specific_data *tdata,
		struct device *dev, enum sensors sensor_type,
		enum attributes attr_type)
{
	int err = 0;
	char temp_file_prefix[50];
	static const char *const file_name_format = "%s%d_%s";

	tdata->attr_type = attr_type;

	if (sensor_type == FAN)
		strcpy(temp_file_prefix, "fan");
	else if (sensor_type == TEMPERATURE)
		strcpy(temp_file_prefix, "temp");
	else if (sensor_type == POWERSUPPLY)
		strcpy(temp_file_prefix, "powersupply");
	else if (sensor_type == POWER)
		strcpy(temp_file_prefix, "power");

	snprintf(tdata->attr_name, sizeof(tdata->attr_name), file_name_format,
		 temp_file_prefix, tdata->sensor_index,
		 attribute_type_table[tdata->attr_type]);

	sysfs_attr_init(&tdata->sd_attr.dev_attr.attr);
	tdata->sd_attr.dev_attr.attr.name = tdata->attr_name;
	tdata->sd_attr.dev_attr.attr.mode = S_IRUGO;
	tdata->sd_attr.dev_attr.show = show_sensor;

	tdata->sd_attr.index = tdata->sensor_index;
	err = device_create_file(dev, &tdata->sd_attr.dev_attr);

	return err;
}

static int create_name_attr(struct sensor_data *pdata,
				struct device *dev)
{
	sysfs_attr_init(&pdata->name_attr.attr);
	pdata->name_attr.attr.name = "name";
	pdata->name_attr.attr.mode = S_IRUGO;
	pdata->name_attr.show = show_name;
	return device_create_file(dev, &pdata->name_attr);
}

static int create_platform_device(enum sensors sensor_type,
					struct platform_device **pdev)
{
	struct pdev_entry *pdev_entry = NULL;
	int err;

	*pdev = platform_device_alloc(sensor_names[sensor_type].name,
			sensor_type);
	if (!*pdev) {
		pr_err("Device allocation failed\n");
		err = -ENOMEM;
		goto exit;
	}

	pdev_entry = kzalloc(sizeof(struct pdev_entry), GFP_KERNEL);
	if (!pdev_entry) {
		pr_err("Device allocation failed\n");
		err = -ENOMEM;
		goto exit_device_put;
	}

	err = platform_device_add(*pdev);
	if (err) {
		pr_err("Device addition failed (%d)\n", err);
		goto exit_device_free;
	}

	pdev_entry->pdev = *pdev;
	pdev_entry->type = (*pdev)->id;

	list_add_tail(&pdev_entry->list, &pdev_list);

	return 0;
exit_device_free:
	kfree(pdev_entry);
exit_device_put:
	platform_device_put(*pdev);
exit:
	return err;
}

static int create_sensor_data(struct platform_device *pdev)
{
	struct sensor_data *pdata = NULL;
	int err = 0;

	pdata = kzalloc(sizeof(struct sensor_data), GFP_KERNEL);
	if (!pdata) {
		err = -ENOMEM;
		goto exit;
	}

	err = create_name_attr(pdata, &pdev->dev);
	if (err)
		goto exit_free;

	pdata->hwmon_dev = hwmon_device_register(&pdev->dev);
	if (IS_ERR(pdata->hwmon_dev)) {
		err = PTR_ERR(pdata->hwmon_dev);
		dev_err(&pdev->dev, "Class registration failed (%d)\n",
			err);
		goto exit_name;
	}

	INIT_LIST_HEAD(&pdata->sensor_list);
	platform_set_drvdata(pdev, pdata);

	return 0;

exit_name:
	device_remove_file(&pdev->dev, &pdata->name_attr);
exit_free:
	kfree(pdata);
exit:
	return err;
}

static void delete_sensor_attr(struct sensor_data *pdata)
{
	struct sensor_entry *s, *l;

	list_for_each_entry_safe(s, l, &pdata->sensor_list, list) {
		struct sensor_specific_data *tdata = s->sensor_data;
			kfree(tdata);
			list_del(&s->list);
			kfree(s);
		}
}

static int powernv_sensor_init(u32 sensor_id, const struct device_node *np,
		enum sensors sensor_type, enum attributes attr_type,
		u32 sensor_index)
{
	struct platform_device *pdev = powernv_sensor_get_pdev(sensor_type);
	struct sensor_specific_data *tdata;
	struct sensor_entry *sensor_entry;
	struct sensor_data *pdata;
	int err = 0;

	if (!pdev) {
		err = create_platform_device(sensor_type, &pdev);
		if (err)
			goto exit;

		err = create_sensor_data(pdev);
		if (err)
			goto exit;
	}

	pdata = platform_get_drvdata(pdev);
	if (!pdata) {
		err = -ENOMEM;
		goto exit;
	}

	tdata = kzalloc(sizeof(struct sensor_specific_data), GFP_KERNEL);
	if (!tdata) {
		err = -ENOMEM;
		goto exit;
	}

	tdata->sensor_id = sensor_id;
	tdata->sensor_index = sensor_index;

	err = create_sensor_attr(tdata, &pdev->dev, sensor_type, attr_type);
	if (err)
		goto exit_free;

	sensor_entry = kzalloc(sizeof(struct sensor_entry), GFP_KERNEL);
	if (!sensor_entry) {
		err = -ENOMEM;
		goto exit_attr;
	}

	sensor_entry->sensor_data = tdata;

	list_add_tail(&sensor_entry->list, &pdata->sensor_list);

	return 0;
exit_attr:
	device_remove_file(&pdev->dev, &tdata->sd_attr.dev_attr);
exit_free:
	kfree(tdata);
exit:
	return err;
}

static void delete_unregister_sensors(void)
{
	struct pdev_entry *p, *n;

	list_for_each_entry_safe(p, n, &pdev_list, list) {
		struct sensor_data *pdata = platform_get_drvdata(p->pdev);
			if (pdata) {
				delete_sensor_attr(pdata);

				hwmon_device_unregister(pdata->hwmon_dev);
				kfree(pdata);
			}
		platform_device_unregister(p->pdev);
		list_del(&p->list);
		kfree(p);
	}
}

static int __init powernv_hwmon_init(void)
{
	struct device_node *opal, *np = NULL;
	enum attributes attr_type;
	enum sensors type;
	const u32 *sensor_id;
	u32 sensor_index;
	int err;

	opal = of_find_node_by_path("/ibm,opal/sensors");
	if (!opal) {
		pr_err("%s: Opal 'sensors' node not found\n", __func__);
		return -ENXIO;
	}

	for_each_child_of_node(opal, np) {
		if (np->name == NULL)
			continue;

		for (type = 0; type < MAX_SENSOR_TYPE; type++)
			if (of_device_is_compatible(np,
					sensor_names[type].compaible))
				break;

		if (type == MAX_SENSOR_TYPE)
			continue;

		if (get_sensor_attr_properties(np->name, type, &attr_type,
				&sensor_index))
			continue;

		sensor_id = of_get_property(np, "sensor-id", NULL);
		if (!sensor_id) {
			pr_info("%s: %s doesn't have sensor-id\n", __func__,
					np->name);
			continue;
		}

		err = powernv_sensor_init(*sensor_id, np, type, attr_type,
				sensor_index);
		if (err) {
			of_node_put(opal);
			goto exit;
		}
	}
	of_node_put(opal);

	return 0;
exit:
	delete_unregister_sensors();
	return err;

}

static void powernv_hwmon_exit(void)
{
	delete_unregister_sensors();
}

module_init(powernv_hwmon_init);
module_exit(powernv_hwmon_exit);