Source
281
281
282
282
data->last_updated = jiffies;
283
283
data->valid = 1;
284
284
}
285
285
286
286
abort:
287
287
mutex_unlock(&data->update_lock);
288
288
return ret;
289
289
}
290
290
291
-
static ssize_t show_temp(struct device *dev,
292
-
struct device_attribute *devattr, char *buf)
291
+
static ssize_t temp_show(struct device *dev, struct device_attribute *devattr,
292
+
char *buf)
293
293
{
294
294
int nr = to_sensor_dev_attr_2(devattr)->nr;
295
295
int index = to_sensor_dev_attr_2(devattr)->index;
296
296
struct tmp401_data *data = tmp401_update_device(dev);
297
297
298
298
if (IS_ERR(data))
299
299
return PTR_ERR(data);
300
300
301
301
return sprintf(buf, "%d\n",
302
302
tmp401_register_to_temp(data->temp[nr][index], data->config));
303
303
}
304
304
305
-
static ssize_t show_temp_crit_hyst(struct device *dev,
306
-
struct device_attribute *devattr, char *buf)
305
+
static ssize_t temp_crit_hyst_show(struct device *dev,
306
+
struct device_attribute *devattr,
307
+
char *buf)
307
308
{
308
309
int temp, index = to_sensor_dev_attr(devattr)->index;
309
310
struct tmp401_data *data = tmp401_update_device(dev);
310
311
311
312
if (IS_ERR(data))
312
313
return PTR_ERR(data);
313
314
314
315
mutex_lock(&data->update_lock);
315
316
temp = tmp401_register_to_temp(data->temp[3][index], data->config);
316
317
temp -= data->temp_crit_hyst * 1000;
317
318
mutex_unlock(&data->update_lock);
318
319
319
320
return sprintf(buf, "%d\n", temp);
320
321
}
321
322
322
-
static ssize_t show_status(struct device *dev,
323
-
struct device_attribute *devattr, char *buf)
323
+
static ssize_t status_show(struct device *dev,
324
+
struct device_attribute *devattr, char *buf)
324
325
{
325
326
int nr = to_sensor_dev_attr_2(devattr)->nr;
326
327
int mask = to_sensor_dev_attr_2(devattr)->index;
327
328
struct tmp401_data *data = tmp401_update_device(dev);
328
329
329
330
if (IS_ERR(data))
330
331
return PTR_ERR(data);
331
332
332
333
return sprintf(buf, "%d\n", !!(data->status[nr] & mask));
333
334
}
334
335
335
-
static ssize_t store_temp(struct device *dev, struct device_attribute *devattr,
336
-
const char *buf, size_t count)
336
+
static ssize_t temp_store(struct device *dev,
337
+
struct device_attribute *devattr, const char *buf,
338
+
size_t count)
337
339
{
338
340
int nr = to_sensor_dev_attr_2(devattr)->nr;
339
341
int index = to_sensor_dev_attr_2(devattr)->index;
340
342
struct tmp401_data *data = dev_get_drvdata(dev);
341
343
struct i2c_client *client = data->client;
342
344
long val;
343
345
u16 reg;
344
346
u8 regaddr;
345
347
346
348
if (kstrtol(buf, 10, &val))
358
360
/* Hardware expects big endian data --> use _swapped */
359
361
i2c_smbus_write_word_swapped(client, regaddr, reg);
360
362
}
361
363
data->temp[nr][index] = reg;
362
364
363
365
mutex_unlock(&data->update_lock);
364
366
365
367
return count;
366
368
}
367
369
368
-
static ssize_t store_temp_crit_hyst(struct device *dev, struct device_attribute
369
-
*devattr, const char *buf, size_t count)
370
+
static ssize_t temp_crit_hyst_store(struct device *dev,
371
+
struct device_attribute *devattr,
372
+
const char *buf, size_t count)
370
373
{
371
374
int temp, index = to_sensor_dev_attr(devattr)->index;
372
375
struct tmp401_data *data = tmp401_update_device(dev);
373
376
long val;
374
377
u8 reg;
375
378
376
379
if (IS_ERR(data))
377
380
return PTR_ERR(data);
378
381
379
382
if (kstrtol(buf, 10, &val))
397
400
mutex_unlock(&data->update_lock);
398
401
399
402
return count;
400
403
}
401
404
402
405
/*
403
406
* Resets the historical measurements of minimum and maximum temperatures.
404
407
* This is done by writing any value to any of the minimum/maximum registers
405
408
* (0x30-0x37).
406
409
*/
407
-
static ssize_t reset_temp_history(struct device *dev,
408
-
struct device_attribute *devattr, const char *buf, size_t count)
410
+
static ssize_t reset_temp_history_store(struct device *dev,
411
+
struct device_attribute *devattr,
412
+
const char *buf, size_t count)
409
413
{
410
414
struct tmp401_data *data = dev_get_drvdata(dev);
411
415
struct i2c_client *client = data->client;
412
416
long val;
413
417
414
418
if (kstrtol(buf, 10, &val))
415
419
return -EINVAL;
416
420
417
421
if (val != 1) {
418
422
dev_err(dev,
460
464
val = clamp_val(val, 125, 16000);
461
465
rate = 7 - __fls(val * 4 / (125 * 3));
462
466
mutex_lock(&data->update_lock);
463
467
i2c_smbus_write_byte_data(client, TMP401_CONVERSION_RATE_WRITE, rate);
464
468
data->update_interval = (1 << (7 - rate)) * 125;
465
469
mutex_unlock(&data->update_lock);
466
470
467
471
return count;
468
472
}
469
473
470
-
static SENSOR_DEVICE_ATTR_2(temp1_input, S_IRUGO, show_temp, NULL, 0, 0);
471
-
static SENSOR_DEVICE_ATTR_2(temp1_min, S_IWUSR | S_IRUGO, show_temp,
472
-
store_temp, 1, 0);
473
-
static SENSOR_DEVICE_ATTR_2(temp1_max, S_IWUSR | S_IRUGO, show_temp,
474
-
store_temp, 2, 0);
475
-
static SENSOR_DEVICE_ATTR_2(temp1_crit, S_IWUSR | S_IRUGO, show_temp,
476
-
store_temp, 3, 0);
477
-
static SENSOR_DEVICE_ATTR(temp1_crit_hyst, S_IWUSR | S_IRUGO,
478
-
show_temp_crit_hyst, store_temp_crit_hyst, 0);
479
-
static SENSOR_DEVICE_ATTR_2(temp1_min_alarm, S_IRUGO, show_status, NULL,
480
-
1, TMP432_STATUS_LOCAL);
481
-
static SENSOR_DEVICE_ATTR_2(temp1_max_alarm, S_IRUGO, show_status, NULL,
482
-
2, TMP432_STATUS_LOCAL);
483
-
static SENSOR_DEVICE_ATTR_2(temp1_crit_alarm, S_IRUGO, show_status, NULL,
484
-
3, TMP432_STATUS_LOCAL);
485
-
static SENSOR_DEVICE_ATTR_2(temp2_input, S_IRUGO, show_temp, NULL, 0, 1);
486
-
static SENSOR_DEVICE_ATTR_2(temp2_min, S_IWUSR | S_IRUGO, show_temp,
487
-
store_temp, 1, 1);
488
-
static SENSOR_DEVICE_ATTR_2(temp2_max, S_IWUSR | S_IRUGO, show_temp,
489
-
store_temp, 2, 1);
490
-
static SENSOR_DEVICE_ATTR_2(temp2_crit, S_IWUSR | S_IRUGO, show_temp,
491
-
store_temp, 3, 1);
492
-
static SENSOR_DEVICE_ATTR(temp2_crit_hyst, S_IRUGO, show_temp_crit_hyst,
493
-
NULL, 1);
494
-
static SENSOR_DEVICE_ATTR_2(temp2_fault, S_IRUGO, show_status, NULL,
495
-
0, TMP432_STATUS_REMOTE1);
496
-
static SENSOR_DEVICE_ATTR_2(temp2_min_alarm, S_IRUGO, show_status, NULL,
497
-
1, TMP432_STATUS_REMOTE1);
498
-
static SENSOR_DEVICE_ATTR_2(temp2_max_alarm, S_IRUGO, show_status, NULL,
499
-
2, TMP432_STATUS_REMOTE1);
500
-
static SENSOR_DEVICE_ATTR_2(temp2_crit_alarm, S_IRUGO, show_status, NULL,
501
-
3, TMP432_STATUS_REMOTE1);
474
+
static SENSOR_DEVICE_ATTR_2_RO(temp1_input, temp, 0, 0);
475
+
static SENSOR_DEVICE_ATTR_2_RW(temp1_min, temp, 1, 0);
476
+
static SENSOR_DEVICE_ATTR_2_RW(temp1_max, temp, 2, 0);
477
+
static SENSOR_DEVICE_ATTR_2_RW(temp1_crit, temp, 3, 0);
478
+
static SENSOR_DEVICE_ATTR_RW(temp1_crit_hyst, temp_crit_hyst, 0);
479
+
static SENSOR_DEVICE_ATTR_2_RO(temp1_min_alarm, status, 1,
480
+
TMP432_STATUS_LOCAL);
481
+
static SENSOR_DEVICE_ATTR_2_RO(temp1_max_alarm, status, 2,
482
+
TMP432_STATUS_LOCAL);
483
+
static SENSOR_DEVICE_ATTR_2_RO(temp1_crit_alarm, status, 3,
484
+
TMP432_STATUS_LOCAL);
485
+
static SENSOR_DEVICE_ATTR_2_RO(temp2_input, temp, 0, 1);
486
+
static SENSOR_DEVICE_ATTR_2_RW(temp2_min, temp, 1, 1);
487
+
static SENSOR_DEVICE_ATTR_2_RW(temp2_max, temp, 2, 1);
488
+
static SENSOR_DEVICE_ATTR_2_RW(temp2_crit, temp, 3, 1);
489
+
static SENSOR_DEVICE_ATTR_RO(temp2_crit_hyst, temp_crit_hyst, 1);
490
+
static SENSOR_DEVICE_ATTR_2_RO(temp2_fault, status, 0, TMP432_STATUS_REMOTE1);
491
+
static SENSOR_DEVICE_ATTR_2_RO(temp2_min_alarm, status, 1,
492
+
TMP432_STATUS_REMOTE1);
493
+
static SENSOR_DEVICE_ATTR_2_RO(temp2_max_alarm, status, 2,
494
+
TMP432_STATUS_REMOTE1);
495
+
static SENSOR_DEVICE_ATTR_2_RO(temp2_crit_alarm, status, 3,
496
+
TMP432_STATUS_REMOTE1);
502
497
503
498
static DEVICE_ATTR_RW(update_interval);
504
499
505
500
static struct attribute *tmp401_attributes[] = {
506
501
&sensor_dev_attr_temp1_input.dev_attr.attr,
507
502
&sensor_dev_attr_temp1_min.dev_attr.attr,
508
503
&sensor_dev_attr_temp1_max.dev_attr.attr,
509
504
&sensor_dev_attr_temp1_crit.dev_attr.attr,
510
505
&sensor_dev_attr_temp1_crit_hyst.dev_attr.attr,
511
506
&sensor_dev_attr_temp1_max_alarm.dev_attr.attr,
531
526
.attrs = tmp401_attributes,
532
527
};
533
528
534
529
/*
535
530
* Additional features of the TMP411 chip.
536
531
* The TMP411 stores the minimum and maximum
537
532
* temperature measured since power-on, chip-reset, or
538
533
* minimum and maximum register reset for both the local
539
534
* and remote channels.
540
535
*/
541
-
static SENSOR_DEVICE_ATTR_2(temp1_lowest, S_IRUGO, show_temp, NULL, 4, 0);
542
-
static SENSOR_DEVICE_ATTR_2(temp1_highest, S_IRUGO, show_temp, NULL, 5, 0);
543
-
static SENSOR_DEVICE_ATTR_2(temp2_lowest, S_IRUGO, show_temp, NULL, 4, 1);
544
-
static SENSOR_DEVICE_ATTR_2(temp2_highest, S_IRUGO, show_temp, NULL, 5, 1);
545
-
static SENSOR_DEVICE_ATTR(temp_reset_history, S_IWUSR, NULL, reset_temp_history,
546
-
0);
536
+
static SENSOR_DEVICE_ATTR_2_RO(temp1_lowest, temp, 4, 0);
537
+
static SENSOR_DEVICE_ATTR_2_RO(temp1_highest, temp, 5, 0);
538
+
static SENSOR_DEVICE_ATTR_2_RO(temp2_lowest, temp, 4, 1);
539
+
static SENSOR_DEVICE_ATTR_2_RO(temp2_highest, temp, 5, 1);
540
+
static SENSOR_DEVICE_ATTR_WO(temp_reset_history, reset_temp_history, 0);
547
541
548
542
static struct attribute *tmp411_attributes[] = {
549
543
&sensor_dev_attr_temp1_highest.dev_attr.attr,
550
544
&sensor_dev_attr_temp1_lowest.dev_attr.attr,
551
545
&sensor_dev_attr_temp2_highest.dev_attr.attr,
552
546
&sensor_dev_attr_temp2_lowest.dev_attr.attr,
553
547
&sensor_dev_attr_temp_reset_history.dev_attr.attr,
554
548
NULL
555
549
};
556
550
557
551
static const struct attribute_group tmp411_group = {
558
552
.attrs = tmp411_attributes,
559
553
};
560
554
561
-
static SENSOR_DEVICE_ATTR_2(temp3_input, S_IRUGO, show_temp, NULL, 0, 2);
562
-
static SENSOR_DEVICE_ATTR_2(temp3_min, S_IWUSR | S_IRUGO, show_temp,
563
-
store_temp, 1, 2);
564
-
static SENSOR_DEVICE_ATTR_2(temp3_max, S_IWUSR | S_IRUGO, show_temp,
565
-
store_temp, 2, 2);
566
-
static SENSOR_DEVICE_ATTR_2(temp3_crit, S_IWUSR | S_IRUGO, show_temp,
567
-
store_temp, 3, 2);
568
-
static SENSOR_DEVICE_ATTR(temp3_crit_hyst, S_IRUGO, show_temp_crit_hyst,
569
-
NULL, 2);
570
-
static SENSOR_DEVICE_ATTR_2(temp3_fault, S_IRUGO, show_status, NULL,
571
-
0, TMP432_STATUS_REMOTE2);
572
-
static SENSOR_DEVICE_ATTR_2(temp3_min_alarm, S_IRUGO, show_status, NULL,
573
-
1, TMP432_STATUS_REMOTE2);
574
-
static SENSOR_DEVICE_ATTR_2(temp3_max_alarm, S_IRUGO, show_status, NULL,
575
-
2, TMP432_STATUS_REMOTE2);
576
-
static SENSOR_DEVICE_ATTR_2(temp3_crit_alarm, S_IRUGO, show_status, NULL,
577
-
3, TMP432_STATUS_REMOTE2);
555
+
static SENSOR_DEVICE_ATTR_2_RO(temp3_input, temp, 0, 2);
556
+
static SENSOR_DEVICE_ATTR_2_RW(temp3_min, temp, 1, 2);
557
+
static SENSOR_DEVICE_ATTR_2_RW(temp3_max, temp, 2, 2);
558
+
static SENSOR_DEVICE_ATTR_2_RW(temp3_crit, temp, 3, 2);
559
+
static SENSOR_DEVICE_ATTR_RO(temp3_crit_hyst, temp_crit_hyst, 2);
560
+
static SENSOR_DEVICE_ATTR_2_RO(temp3_fault, status, 0, TMP432_STATUS_REMOTE2);
561
+
static SENSOR_DEVICE_ATTR_2_RO(temp3_min_alarm, status, 1,
562
+
TMP432_STATUS_REMOTE2);
563
+
static SENSOR_DEVICE_ATTR_2_RO(temp3_max_alarm, status, 2,
564
+
TMP432_STATUS_REMOTE2);
565
+
static SENSOR_DEVICE_ATTR_2_RO(temp3_crit_alarm, status, 3,
566
+
TMP432_STATUS_REMOTE2);
578
567
579
568
static struct attribute *tmp432_attributes[] = {
580
569
&sensor_dev_attr_temp3_input.dev_attr.attr,
581
570
&sensor_dev_attr_temp3_min.dev_attr.attr,
582
571
&sensor_dev_attr_temp3_max.dev_attr.attr,
583
572
&sensor_dev_attr_temp3_crit.dev_attr.attr,
584
573
&sensor_dev_attr_temp3_crit_hyst.dev_attr.attr,
585
574
&sensor_dev_attr_temp3_fault.dev_attr.attr,
586
575
&sensor_dev_attr_temp3_max_alarm.dev_attr.attr,
587
576
&sensor_dev_attr_temp3_min_alarm.dev_attr.attr,
591
580
};
592
581
593
582
static const struct attribute_group tmp432_group = {
594
583
.attrs = tmp432_attributes,
595
584
};
596
585
597
586
/*
598
587
* Additional features of the TMP461 chip.
599
588
* The TMP461 temperature offset for the remote channel.
600
589
*/
601
-
static SENSOR_DEVICE_ATTR_2(temp2_offset, S_IWUSR | S_IRUGO, show_temp,
602
-
store_temp, 6, 1);
590
+
static SENSOR_DEVICE_ATTR_2_RW(temp2_offset, temp, 6, 1);
603
591
604
592
static struct attribute *tmp461_attributes[] = {
605
593
&sensor_dev_attr_temp2_offset.dev_attr.attr,
606
594
NULL
607
595
};
608
596
609
597
static const struct attribute_group tmp461_group = {
610
598
.attrs = tmp461_attributes,
611
599
};
612
600