Source
262
262
done:
263
263
mutex_unlock(&data->update_lock);
264
264
265
265
return ret;
266
266
}
267
267
268
268
/*
269
269
* Sysfs stuff
270
270
*/
271
271
272
-
static ssize_t show_in(struct device *dev, struct device_attribute *attr,
272
+
static ssize_t in_show(struct device *dev, struct device_attribute *attr,
273
273
char *buf)
274
274
{
275
275
struct lm80_data *data = lm80_update_device(dev);
276
276
int index = to_sensor_dev_attr_2(attr)->index;
277
277
int nr = to_sensor_dev_attr_2(attr)->nr;
278
278
279
279
if (IS_ERR(data))
280
280
return PTR_ERR(data);
281
281
return sprintf(buf, "%d\n", IN_FROM_REG(data->in[nr][index]));
282
282
}
283
283
284
-
static ssize_t set_in(struct device *dev, struct device_attribute *attr,
285
-
const char *buf, size_t count)
284
+
static ssize_t in_store(struct device *dev, struct device_attribute *attr,
285
+
const char *buf, size_t count)
286
286
{
287
287
struct lm80_data *data = dev_get_drvdata(dev);
288
288
struct i2c_client *client = data->client;
289
289
int index = to_sensor_dev_attr_2(attr)->index;
290
290
int nr = to_sensor_dev_attr_2(attr)->nr;
291
291
long val;
292
292
u8 reg;
293
293
int err = kstrtol(buf, 10, &val);
294
294
if (err < 0)
295
295
return err;
296
296
297
297
reg = nr == i_min ? LM80_REG_IN_MIN(index) : LM80_REG_IN_MAX(index);
298
298
299
299
mutex_lock(&data->update_lock);
300
300
data->in[nr][index] = IN_TO_REG(val);
301
301
lm80_write_value(client, reg, data->in[nr][index]);
302
302
mutex_unlock(&data->update_lock);
303
303
return count;
304
304
}
305
305
306
-
static ssize_t show_fan(struct device *dev, struct device_attribute *attr,
306
+
static ssize_t fan_show(struct device *dev, struct device_attribute *attr,
307
307
char *buf)
308
308
{
309
309
int index = to_sensor_dev_attr_2(attr)->index;
310
310
int nr = to_sensor_dev_attr_2(attr)->nr;
311
311
struct lm80_data *data = lm80_update_device(dev);
312
312
if (IS_ERR(data))
313
313
return PTR_ERR(data);
314
314
return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan[nr][index],
315
315
DIV_FROM_REG(data->fan_div[index])));
316
316
}
317
317
318
-
static ssize_t show_fan_div(struct device *dev, struct device_attribute *attr,
319
-
char *buf)
318
+
static ssize_t fan_div_show(struct device *dev, struct device_attribute *attr,
319
+
char *buf)
320
320
{
321
321
int nr = to_sensor_dev_attr(attr)->index;
322
322
struct lm80_data *data = lm80_update_device(dev);
323
323
if (IS_ERR(data))
324
324
return PTR_ERR(data);
325
325
return sprintf(buf, "%d\n", DIV_FROM_REG(data->fan_div[nr]));
326
326
}
327
327
328
-
static ssize_t set_fan_min(struct device *dev, struct device_attribute *attr,
329
-
const char *buf, size_t count)
328
+
static ssize_t fan_store(struct device *dev, struct device_attribute *attr,
329
+
const char *buf, size_t count)
330
330
{
331
331
int index = to_sensor_dev_attr_2(attr)->index;
332
332
int nr = to_sensor_dev_attr_2(attr)->nr;
333
333
struct lm80_data *data = dev_get_drvdata(dev);
334
334
struct i2c_client *client = data->client;
335
335
unsigned long val;
336
336
int err = kstrtoul(buf, 10, &val);
337
337
if (err < 0)
338
338
return err;
339
339
345
345
mutex_unlock(&data->update_lock);
346
346
return count;
347
347
}
348
348
349
349
/*
350
350
* Note: we save and restore the fan minimum here, because its value is
351
351
* determined in part by the fan divisor. This follows the principle of
352
352
* least surprise; the user doesn't expect the fan minimum to change just
353
353
* because the divisor changed.
354
354
*/
355
-
static ssize_t set_fan_div(struct device *dev, struct device_attribute *attr,
356
-
const char *buf, size_t count)
355
+
static ssize_t fan_div_store(struct device *dev,
356
+
struct device_attribute *attr, const char *buf,
357
+
size_t count)
357
358
{
358
359
int nr = to_sensor_dev_attr(attr)->index;
359
360
struct lm80_data *data = dev_get_drvdata(dev);
360
361
struct i2c_client *client = data->client;
361
362
unsigned long min, val;
362
363
u8 reg;
363
364
int rv;
364
365
365
366
rv = kstrtoul(buf, 10, &val);
366
367
if (rv < 0)
403
404
404
405
/* Restore fan_min */
405
406
data->fan[f_min][nr] = FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr]));
406
407
lm80_write_value(client, LM80_REG_FAN_MIN(nr + 1),
407
408
data->fan[f_min][nr]);
408
409
mutex_unlock(&data->update_lock);
409
410
410
411
return count;
411
412
}
412
413
413
-
static ssize_t show_temp(struct device *dev, struct device_attribute *devattr,
414
+
static ssize_t temp_show(struct device *dev, struct device_attribute *devattr,
414
415
char *buf)
415
416
{
416
417
struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
417
418
struct lm80_data *data = lm80_update_device(dev);
418
419
if (IS_ERR(data))
419
420
return PTR_ERR(data);
420
421
return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[attr->index]));
421
422
}
422
423
423
-
static ssize_t set_temp(struct device *dev, struct device_attribute *devattr,
424
-
const char *buf, size_t count)
424
+
static ssize_t temp_store(struct device *dev,
425
+
struct device_attribute *devattr, const char *buf,
426
+
size_t count)
425
427
{
426
428
struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
427
429
struct lm80_data *data = dev_get_drvdata(dev);
428
430
struct i2c_client *client = data->client;
429
431
int nr = attr->index;
430
432
long val;
431
433
int err = kstrtol(buf, 10, &val);
432
434
if (err < 0)
433
435
return err;
434
436
441
443
442
444
static ssize_t alarms_show(struct device *dev, struct device_attribute *attr,
443
445
char *buf)
444
446
{
445
447
struct lm80_data *data = lm80_update_device(dev);
446
448
if (IS_ERR(data))
447
449
return PTR_ERR(data);
448
450
return sprintf(buf, "%u\n", data->alarms);
449
451
}
450
452
451
-
static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
453
+
static ssize_t alarm_show(struct device *dev, struct device_attribute *attr,
452
454
char *buf)
453
455
{
454
456
int bitnr = to_sensor_dev_attr(attr)->index;
455
457
struct lm80_data *data = lm80_update_device(dev);
456
458
if (IS_ERR(data))
457
459
return PTR_ERR(data);
458
460
return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
459
461
}
460
462
461
-
static SENSOR_DEVICE_ATTR_2(in0_min, S_IWUSR | S_IRUGO,
462
-
show_in, set_in, i_min, 0);
463
-
static SENSOR_DEVICE_ATTR_2(in1_min, S_IWUSR | S_IRUGO,
464
-
show_in, set_in, i_min, 1);
465
-
static SENSOR_DEVICE_ATTR_2(in2_min, S_IWUSR | S_IRUGO,
466
-
show_in, set_in, i_min, 2);
467
-
static SENSOR_DEVICE_ATTR_2(in3_min, S_IWUSR | S_IRUGO,
468
-
show_in, set_in, i_min, 3);
469
-
static SENSOR_DEVICE_ATTR_2(in4_min, S_IWUSR | S_IRUGO,
470
-
show_in, set_in, i_min, 4);
471
-
static SENSOR_DEVICE_ATTR_2(in5_min, S_IWUSR | S_IRUGO,
472
-
show_in, set_in, i_min, 5);
473
-
static SENSOR_DEVICE_ATTR_2(in6_min, S_IWUSR | S_IRUGO,
474
-
show_in, set_in, i_min, 6);
475
-
static SENSOR_DEVICE_ATTR_2(in0_max, S_IWUSR | S_IRUGO,
476
-
show_in, set_in, i_max, 0);
477
-
static SENSOR_DEVICE_ATTR_2(in1_max, S_IWUSR | S_IRUGO,
478
-
show_in, set_in, i_max, 1);
479
-
static SENSOR_DEVICE_ATTR_2(in2_max, S_IWUSR | S_IRUGO,
480
-
show_in, set_in, i_max, 2);
481
-
static SENSOR_DEVICE_ATTR_2(in3_max, S_IWUSR | S_IRUGO,
482
-
show_in, set_in, i_max, 3);
483
-
static SENSOR_DEVICE_ATTR_2(in4_max, S_IWUSR | S_IRUGO,
484
-
show_in, set_in, i_max, 4);
485
-
static SENSOR_DEVICE_ATTR_2(in5_max, S_IWUSR | S_IRUGO,
486
-
show_in, set_in, i_max, 5);
487
-
static SENSOR_DEVICE_ATTR_2(in6_max, S_IWUSR | S_IRUGO,
488
-
show_in, set_in, i_max, 6);
489
-
static SENSOR_DEVICE_ATTR_2(in0_input, S_IRUGO, show_in, NULL, i_input, 0);
490
-
static SENSOR_DEVICE_ATTR_2(in1_input, S_IRUGO, show_in, NULL, i_input, 1);
491
-
static SENSOR_DEVICE_ATTR_2(in2_input, S_IRUGO, show_in, NULL, i_input, 2);
492
-
static SENSOR_DEVICE_ATTR_2(in3_input, S_IRUGO, show_in, NULL, i_input, 3);
493
-
static SENSOR_DEVICE_ATTR_2(in4_input, S_IRUGO, show_in, NULL, i_input, 4);
494
-
static SENSOR_DEVICE_ATTR_2(in5_input, S_IRUGO, show_in, NULL, i_input, 5);
495
-
static SENSOR_DEVICE_ATTR_2(in6_input, S_IRUGO, show_in, NULL, i_input, 6);
496
-
static SENSOR_DEVICE_ATTR_2(fan1_min, S_IWUSR | S_IRUGO,
497
-
show_fan, set_fan_min, f_min, 0);
498
-
static SENSOR_DEVICE_ATTR_2(fan2_min, S_IWUSR | S_IRUGO,
499
-
show_fan, set_fan_min, f_min, 1);
500
-
static SENSOR_DEVICE_ATTR_2(fan1_input, S_IRUGO, show_fan, NULL, f_input, 0);
501
-
static SENSOR_DEVICE_ATTR_2(fan2_input, S_IRUGO, show_fan, NULL, f_input, 1);
502
-
static SENSOR_DEVICE_ATTR(fan1_div, S_IWUSR | S_IRUGO,
503
-
show_fan_div, set_fan_div, 0);
504
-
static SENSOR_DEVICE_ATTR(fan2_div, S_IWUSR | S_IRUGO,
505
-
show_fan_div, set_fan_div, 1);
506
-
static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, show_temp, NULL, t_input);
507
-
static SENSOR_DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO, show_temp,
508
-
set_temp, t_hot_max);
509
-
static SENSOR_DEVICE_ATTR(temp1_max_hyst, S_IWUSR | S_IRUGO, show_temp,
510
-
set_temp, t_hot_hyst);
511
-
static SENSOR_DEVICE_ATTR(temp1_crit, S_IWUSR | S_IRUGO, show_temp,
512
-
set_temp, t_os_max);
513
-
static SENSOR_DEVICE_ATTR(temp1_crit_hyst, S_IWUSR | S_IRUGO, show_temp,
514
-
set_temp, t_os_hyst);
463
+
static SENSOR_DEVICE_ATTR_2_RW(in0_min, in, i_min, 0);
464
+
static SENSOR_DEVICE_ATTR_2_RW(in1_min, in, i_min, 1);
465
+
static SENSOR_DEVICE_ATTR_2_RW(in2_min, in, i_min, 2);
466
+
static SENSOR_DEVICE_ATTR_2_RW(in3_min, in, i_min, 3);
467
+
static SENSOR_DEVICE_ATTR_2_RW(in4_min, in, i_min, 4);
468
+
static SENSOR_DEVICE_ATTR_2_RW(in5_min, in, i_min, 5);
469
+
static SENSOR_DEVICE_ATTR_2_RW(in6_min, in, i_min, 6);
470
+
static SENSOR_DEVICE_ATTR_2_RW(in0_max, in, i_max, 0);
471
+
static SENSOR_DEVICE_ATTR_2_RW(in1_max, in, i_max, 1);
472
+
static SENSOR_DEVICE_ATTR_2_RW(in2_max, in, i_max, 2);
473
+
static SENSOR_DEVICE_ATTR_2_RW(in3_max, in, i_max, 3);
474
+
static SENSOR_DEVICE_ATTR_2_RW(in4_max, in, i_max, 4);
475
+
static SENSOR_DEVICE_ATTR_2_RW(in5_max, in, i_max, 5);
476
+
static SENSOR_DEVICE_ATTR_2_RW(in6_max, in, i_max, 6);
477
+
static SENSOR_DEVICE_ATTR_2_RO(in0_input, in, i_input, 0);
478
+
static SENSOR_DEVICE_ATTR_2_RO(in1_input, in, i_input, 1);
479
+
static SENSOR_DEVICE_ATTR_2_RO(in2_input, in, i_input, 2);
480
+
static SENSOR_DEVICE_ATTR_2_RO(in3_input, in, i_input, 3);
481
+
static SENSOR_DEVICE_ATTR_2_RO(in4_input, in, i_input, 4);
482
+
static SENSOR_DEVICE_ATTR_2_RO(in5_input, in, i_input, 5);
483
+
static SENSOR_DEVICE_ATTR_2_RO(in6_input, in, i_input, 6);
484
+
static SENSOR_DEVICE_ATTR_2_RW(fan1_min, fan, f_min, 0);
485
+
static SENSOR_DEVICE_ATTR_2_RW(fan2_min, fan, f_min, 1);
486
+
static SENSOR_DEVICE_ATTR_2_RO(fan1_input, fan, f_input, 0);
487
+
static SENSOR_DEVICE_ATTR_2_RO(fan2_input, fan, f_input, 1);
488
+
static SENSOR_DEVICE_ATTR_RW(fan1_div, fan_div, 0);
489
+
static SENSOR_DEVICE_ATTR_RW(fan2_div, fan_div, 1);
490
+
static SENSOR_DEVICE_ATTR_RO(temp1_input, temp, t_input);
491
+
static SENSOR_DEVICE_ATTR_RW(temp1_max, temp, t_hot_max);
492
+
static SENSOR_DEVICE_ATTR_RW(temp1_max_hyst, temp, t_hot_hyst);
493
+
static SENSOR_DEVICE_ATTR_RW(temp1_crit, temp, t_os_max);
494
+
static SENSOR_DEVICE_ATTR_RW(temp1_crit_hyst, temp, t_os_hyst);
515
495
static DEVICE_ATTR_RO(alarms);
516
-
static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 0);
517
-
static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 1);
518
-
static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 2);
519
-
static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 3);
520
-
static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 4);
521
-
static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 5);
522
-
static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 6);
523
-
static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 10);
524
-
static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 11);
525
-
static SENSOR_DEVICE_ATTR(temp1_max_alarm, S_IRUGO, show_alarm, NULL, 8);
526
-
static SENSOR_DEVICE_ATTR(temp1_crit_alarm, S_IRUGO, show_alarm, NULL, 13);
496
+
static SENSOR_DEVICE_ATTR_RO(in0_alarm, alarm, 0);
497
+
static SENSOR_DEVICE_ATTR_RO(in1_alarm, alarm, 1);
498
+
static SENSOR_DEVICE_ATTR_RO(in2_alarm, alarm, 2);
499
+
static SENSOR_DEVICE_ATTR_RO(in3_alarm, alarm, 3);
500
+
static SENSOR_DEVICE_ATTR_RO(in4_alarm, alarm, 4);
501
+
static SENSOR_DEVICE_ATTR_RO(in5_alarm, alarm, 5);
502
+
static SENSOR_DEVICE_ATTR_RO(in6_alarm, alarm, 6);
503
+
static SENSOR_DEVICE_ATTR_RO(fan1_alarm, alarm, 10);
504
+
static SENSOR_DEVICE_ATTR_RO(fan2_alarm, alarm, 11);
505
+
static SENSOR_DEVICE_ATTR_RO(temp1_max_alarm, alarm, 8);
506
+
static SENSOR_DEVICE_ATTR_RO(temp1_crit_alarm, alarm, 13);
527
507
528
508
/*
529
509
* Real code
530
510
*/
531
511
532
512
static struct attribute *lm80_attrs[] = {
533
513
&sensor_dev_attr_in0_min.dev_attr.attr,
534
514
&sensor_dev_attr_in1_min.dev_attr.attr,
535
515
&sensor_dev_attr_in2_min.dev_attr.attr,
536
516
&sensor_dev_attr_in3_min.dev_attr.attr,