Source
315
315
316
316
return val1 | (val2 << 8);
317
317
}
318
318
319
319
static void adt7475_write_word(struct i2c_client *client, int reg, u16 val)
320
320
{
321
321
i2c_smbus_write_byte_data(client, reg + 1, val >> 8);
322
322
i2c_smbus_write_byte_data(client, reg, val & 0xFF);
323
323
}
324
324
325
-
static ssize_t show_voltage(struct device *dev, struct device_attribute *attr,
325
+
static ssize_t voltage_show(struct device *dev, struct device_attribute *attr,
326
326
char *buf)
327
327
{
328
328
struct adt7475_data *data = adt7475_update_device(dev);
329
329
struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
330
330
unsigned short val;
331
331
332
332
if (IS_ERR(data))
333
333
return PTR_ERR(data);
334
334
335
335
switch (sattr->nr) {
336
336
case ALARM:
337
337
return sprintf(buf, "%d\n",
338
338
(data->alarms >> sattr->index) & 1);
339
339
default:
340
340
val = data->voltage[sattr->nr][sattr->index];
341
341
return sprintf(buf, "%d\n",
342
342
reg2volt(sattr->index, val, data->bypass_attn));
343
343
}
344
344
}
345
345
346
-
static ssize_t set_voltage(struct device *dev, struct device_attribute *attr,
347
-
const char *buf, size_t count)
346
+
static ssize_t voltage_store(struct device *dev,
347
+
struct device_attribute *attr, const char *buf,
348
+
size_t count)
348
349
{
349
350
350
351
struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
351
352
struct i2c_client *client = to_i2c_client(dev);
352
353
struct adt7475_data *data = i2c_get_clientdata(client);
353
354
unsigned char reg;
354
355
long val;
355
356
356
357
if (kstrtol(buf, 10, &val))
357
358
return -EINVAL;
373
374
reg = REG_VTT_MAX;
374
375
}
375
376
376
377
i2c_smbus_write_byte_data(client, reg,
377
378
data->voltage[sattr->nr][sattr->index] >> 2);
378
379
mutex_unlock(&data->lock);
379
380
380
381
return count;
381
382
}
382
383
383
-
static ssize_t show_temp(struct device *dev, struct device_attribute *attr,
384
+
static ssize_t temp_show(struct device *dev, struct device_attribute *attr,
384
385
char *buf)
385
386
{
386
387
struct adt7475_data *data = adt7475_update_device(dev);
387
388
struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
388
389
int out;
389
390
390
391
if (IS_ERR(data))
391
392
return PTR_ERR(data);
392
393
393
394
switch (sattr->nr) {
431
432
break;
432
433
433
434
default:
434
435
/* All other temp values are in the configured format */
435
436
out = reg2temp(data, data->temp[sattr->nr][sattr->index]);
436
437
}
437
438
438
439
return sprintf(buf, "%d\n", out);
439
440
}
440
441
441
-
static ssize_t set_temp(struct device *dev, struct device_attribute *attr,
442
-
const char *buf, size_t count)
442
+
static ssize_t temp_store(struct device *dev, struct device_attribute *attr,
443
+
const char *buf, size_t count)
443
444
{
444
445
struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
445
446
struct i2c_client *client = to_i2c_client(dev);
446
447
struct adt7475_data *data = i2c_get_clientdata(client);
447
448
unsigned char reg = 0;
448
449
u8 out;
449
450
int temp;
450
451
long val;
451
452
452
453
if (kstrtol(buf, 10, &val))
533
534
534
535
mutex_unlock(&data->lock);
535
536
return count;
536
537
}
537
538
538
539
/* Assuming CONFIG6[SLOW] is 0 */
539
540
static const int ad7475_st_map[] = {
540
541
37500, 18800, 12500, 7500, 4700, 3100, 1600, 800,
541
542
};
542
543
543
-
static ssize_t show_temp_st(struct device *dev, struct device_attribute *attr,
544
-
char *buf)
544
+
static ssize_t temp_st_show(struct device *dev, struct device_attribute *attr,
545
+
char *buf)
545
546
{
546
547
struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
547
548
struct i2c_client *client = to_i2c_client(dev);
548
549
struct adt7475_data *data = i2c_get_clientdata(client);
549
550
long val;
550
551
551
552
switch (sattr->index) {
552
553
case 0:
553
554
val = data->enh_acoustics[0] & 0xf;
554
555
break;
560
561
val = data->enh_acoustics[1] & 0xf;
561
562
break;
562
563
}
563
564
564
565
if (val & 0x8)
565
566
return sprintf(buf, "%d\n", ad7475_st_map[val & 0x7]);
566
567
else
567
568
return sprintf(buf, "0\n");
568
569
}
569
570
570
-
static ssize_t set_temp_st(struct device *dev, struct device_attribute *attr,
571
-
const char *buf, size_t count)
571
+
static ssize_t temp_st_store(struct device *dev,
572
+
struct device_attribute *attr, const char *buf,
573
+
size_t count)
572
574
{
573
575
struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
574
576
struct i2c_client *client = to_i2c_client(dev);
575
577
struct adt7475_data *data = i2c_get_clientdata(client);
576
578
unsigned char reg;
577
579
int shift, idx;
578
580
ulong val;
579
581
580
582
if (kstrtoul(buf, 10, &val))
581
583
return -EINVAL;
620
622
/*
621
623
* Table of autorange values - the user will write the value in millidegrees,
622
624
* and we'll convert it
623
625
*/
624
626
static const int autorange_table[] = {
625
627
2000, 2500, 3330, 4000, 5000, 6670, 8000,
626
628
10000, 13330, 16000, 20000, 26670, 32000, 40000,
627
629
53330, 80000
628
630
};
629
631
630
-
static ssize_t show_point2(struct device *dev, struct device_attribute *attr,
632
+
static ssize_t point2_show(struct device *dev, struct device_attribute *attr,
631
633
char *buf)
632
634
{
633
635
struct adt7475_data *data = adt7475_update_device(dev);
634
636
struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
635
637
int out, val;
636
638
637
639
if (IS_ERR(data))
638
640
return PTR_ERR(data);
639
641
640
642
mutex_lock(&data->lock);
641
643
out = (data->range[sattr->index] >> 4) & 0x0F;
642
644
val = reg2temp(data, data->temp[AUTOMIN][sattr->index]);
643
645
mutex_unlock(&data->lock);
644
646
645
647
return sprintf(buf, "%d\n", val + autorange_table[out]);
646
648
}
647
649
648
-
static ssize_t set_point2(struct device *dev, struct device_attribute *attr,
649
-
const char *buf, size_t count)
650
+
static ssize_t point2_store(struct device *dev, struct device_attribute *attr,
651
+
const char *buf, size_t count)
650
652
{
651
653
struct i2c_client *client = to_i2c_client(dev);
652
654
struct adt7475_data *data = i2c_get_clientdata(client);
653
655
struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
654
656
int temp;
655
657
long val;
656
658
657
659
if (kstrtol(buf, 10, &val))
658
660
return -EINVAL;
659
661
681
683
data->range[sattr->index] &= ~0xF0;
682
684
data->range[sattr->index] |= val << 4;
683
685
684
686
i2c_smbus_write_byte_data(client, TEMP_TRANGE_REG(sattr->index),
685
687
data->range[sattr->index]);
686
688
687
689
mutex_unlock(&data->lock);
688
690
return count;
689
691
}
690
692
691
-
static ssize_t show_tach(struct device *dev, struct device_attribute *attr,
693
+
static ssize_t tach_show(struct device *dev, struct device_attribute *attr,
692
694
char *buf)
693
695
{
694
696
struct adt7475_data *data = adt7475_update_device(dev);
695
697
struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
696
698
int out;
697
699
698
700
if (IS_ERR(data))
699
701
return PTR_ERR(data);
700
702
701
703
if (sattr->nr == ALARM)
702
704
out = (data->alarms >> (sattr->index + 10)) & 1;
703
705
else
704
706
out = tach2rpm(data->tach[sattr->nr][sattr->index]);
705
707
706
708
return sprintf(buf, "%d\n", out);
707
709
}
708
710
709
-
static ssize_t set_tach(struct device *dev, struct device_attribute *attr,
710
-
const char *buf, size_t count)
711
+
static ssize_t tach_store(struct device *dev, struct device_attribute *attr,
712
+
const char *buf, size_t count)
711
713
{
712
714
713
715
struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
714
716
struct i2c_client *client = to_i2c_client(dev);
715
717
struct adt7475_data *data = i2c_get_clientdata(client);
716
718
unsigned long val;
717
719
718
720
if (kstrtoul(buf, 10, &val))
719
721
return -EINVAL;
720
722
722
724
723
725
data->tach[MIN][sattr->index] = rpm2tach(val);
724
726
725
727
adt7475_write_word(client, TACH_MIN_REG(sattr->index),
726
728
data->tach[MIN][sattr->index]);
727
729
728
730
mutex_unlock(&data->lock);
729
731
return count;
730
732
}
731
733
732
-
static ssize_t show_pwm(struct device *dev, struct device_attribute *attr,
734
+
static ssize_t pwm_show(struct device *dev, struct device_attribute *attr,
733
735
char *buf)
734
736
{
735
737
struct adt7475_data *data = adt7475_update_device(dev);
736
738
struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
737
739
738
740
if (IS_ERR(data))
739
741
return PTR_ERR(data);
740
742
741
743
return sprintf(buf, "%d\n", data->pwm[sattr->nr][sattr->index]);
742
744
}
743
745
744
-
static ssize_t show_pwmchan(struct device *dev, struct device_attribute *attr,
746
+
static ssize_t pwmchan_show(struct device *dev, struct device_attribute *attr,
745
747
char *buf)
746
748
{
747
749
struct adt7475_data *data = adt7475_update_device(dev);
748
750
struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
749
751
750
752
if (IS_ERR(data))
751
753
return PTR_ERR(data);
752
754
753
755
return sprintf(buf, "%d\n", data->pwmchan[sattr->index]);
754
756
}
755
757
756
-
static ssize_t show_pwmctrl(struct device *dev, struct device_attribute *attr,
758
+
static ssize_t pwmctrl_show(struct device *dev, struct device_attribute *attr,
757
759
char *buf)
758
760
{
759
761
struct adt7475_data *data = adt7475_update_device(dev);
760
762
struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
761
763
762
764
if (IS_ERR(data))
763
765
return PTR_ERR(data);
764
766
765
767
return sprintf(buf, "%d\n", data->pwmctl[sattr->index]);
766
768
}
767
769
768
-
static ssize_t set_pwm(struct device *dev, struct device_attribute *attr,
769
-
const char *buf, size_t count)
770
+
static ssize_t pwm_store(struct device *dev, struct device_attribute *attr,
771
+
const char *buf, size_t count)
770
772
{
771
773
772
774
struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
773
775
struct i2c_client *client = to_i2c_client(dev);
774
776
struct adt7475_data *data = i2c_get_clientdata(client);
775
777
unsigned char reg = 0;
776
778
long val;
777
779
778
780
if (kstrtol(buf, 10, &val))
779
781
return -EINVAL;
808
810
}
809
811
810
812
data->pwm[sattr->nr][sattr->index] = clamp_val(val, 0, 0xFF);
811
813
i2c_smbus_write_byte_data(client, reg,
812
814
data->pwm[sattr->nr][sattr->index]);
813
815
mutex_unlock(&data->lock);
814
816
815
817
return count;
816
818
}
817
819
818
-
static ssize_t show_stall_disable(struct device *dev,
820
+
static ssize_t stall_disable_show(struct device *dev,
819
821
struct device_attribute *attr, char *buf)
820
822
{
821
823
struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
822
824
struct i2c_client *client = to_i2c_client(dev);
823
825
struct adt7475_data *data = i2c_get_clientdata(client);
824
826
u8 mask = BIT(5 + sattr->index);
825
827
826
828
return sprintf(buf, "%d\n", !!(data->enh_acoustics[0] & mask));
827
829
}
828
830
829
-
static ssize_t set_stall_disable(struct device *dev,
830
-
struct device_attribute *attr, const char *buf,
831
-
size_t count)
831
+
static ssize_t stall_disable_store(struct device *dev,
832
+
struct device_attribute *attr,
833
+
const char *buf, size_t count)
832
834
{
833
835
struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
834
836
struct i2c_client *client = to_i2c_client(dev);
835
837
struct adt7475_data *data = i2c_get_clientdata(client);
836
838
long val;
837
839
u8 mask = BIT(5 + sattr->index);
838
840
839
841
if (kstrtol(buf, 10, &val))
840
842
return -EINVAL;
841
843
903
905
904
906
data->pwm[CONTROL][index] &= ~0xE0;
905
907
data->pwm[CONTROL][index] |= (val & 7) << 5;
906
908
907
909
i2c_smbus_write_byte_data(client, PWM_CONFIG_REG(index),
908
910
data->pwm[CONTROL][index]);
909
911
910
912
return 0;
911
913
}
912
914
913
-
static ssize_t set_pwmchan(struct device *dev, struct device_attribute *attr,
914
-
const char *buf, size_t count)
915
+
static ssize_t pwmchan_store(struct device *dev,
916
+
struct device_attribute *attr, const char *buf,
917
+
size_t count)
915
918
{
916
919
struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
917
920
struct i2c_client *client = to_i2c_client(dev);
918
921
struct adt7475_data *data = i2c_get_clientdata(client);
919
922
int r;
920
923
long val;
921
924
922
925
if (kstrtol(buf, 10, &val))
923
926
return -EINVAL;
924
927
926
929
/* Read Modify Write PWM values */
927
930
adt7475_read_pwm(client, sattr->index);
928
931
r = hw_set_pwm(client, sattr->index, data->pwmctl[sattr->index], val);
929
932
if (r)
930
933
count = r;
931
934
mutex_unlock(&data->lock);
932
935
933
936
return count;
934
937
}
935
938
936
-
static ssize_t set_pwmctrl(struct device *dev, struct device_attribute *attr,
937
-
const char *buf, size_t count)
939
+
static ssize_t pwmctrl_store(struct device *dev,
940
+
struct device_attribute *attr, const char *buf,
941
+
size_t count)
938
942
{
939
943
struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
940
944
struct i2c_client *client = to_i2c_client(dev);
941
945
struct adt7475_data *data = i2c_get_clientdata(client);
942
946
int r;
943
947
long val;
944
948
945
949
if (kstrtol(buf, 10, &val))
946
950
return -EINVAL;
947
951
954
958
mutex_unlock(&data->lock);
955
959
956
960
return count;
957
961
}
958
962
959
963
/* List of frequencies for the PWM */
960
964
static const int pwmfreq_table[] = {
961
965
11, 14, 22, 29, 35, 44, 58, 88, 22500
962
966
};
963
967
964
-
static ssize_t show_pwmfreq(struct device *dev, struct device_attribute *attr,
968
+
static ssize_t pwmfreq_show(struct device *dev, struct device_attribute *attr,
965
969
char *buf)
966
970
{
967
971
struct adt7475_data *data = adt7475_update_device(dev);
968
972
struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
969
973
int idx;
970
974
971
975
if (IS_ERR(data))
972
976
return PTR_ERR(data);
973
977
idx = clamp_val(data->range[sattr->index] & 0xf, 0,
974
978
ARRAY_SIZE(pwmfreq_table) - 1);
975
979
976
980
return sprintf(buf, "%d\n", pwmfreq_table[idx]);
977
981
}
978
982
979
-
static ssize_t set_pwmfreq(struct device *dev, struct device_attribute *attr,
980
-
const char *buf, size_t count)
983
+
static ssize_t pwmfreq_store(struct device *dev,
984
+
struct device_attribute *attr, const char *buf,
985
+
size_t count)
981
986
{
982
987
struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
983
988
struct i2c_client *client = to_i2c_client(dev);
984
989
struct adt7475_data *data = i2c_get_clientdata(client);
985
990
int out;
986
991
long val;
987
992
988
993
if (kstrtol(buf, 10, &val))
989
994
return -EINVAL;
990
995
1067
1072
struct device_attribute *devattr, char *buf)
1068
1073
{
1069
1074
struct adt7475_data *data = adt7475_update_device(dev);
1070
1075
1071
1076
if (IS_ERR(data))
1072
1077
return PTR_ERR(data);
1073
1078
1074
1079
return sprintf(buf, "%d\n", vid_from_reg(data->vid, data->vrm));
1075
1080
}
1076
1081
1077
-
static SENSOR_DEVICE_ATTR_2(in0_input, S_IRUGO, show_voltage, NULL, INPUT, 0);
1078
-
static SENSOR_DEVICE_ATTR_2(in0_max, S_IRUGO | S_IWUSR, show_voltage,
1079
-
set_voltage, MAX, 0);
1080
-
static SENSOR_DEVICE_ATTR_2(in0_min, S_IRUGO | S_IWUSR, show_voltage,
1081
-
set_voltage, MIN, 0);
1082
-
static SENSOR_DEVICE_ATTR_2(in0_alarm, S_IRUGO, show_voltage, NULL, ALARM, 0);
1083
-
static SENSOR_DEVICE_ATTR_2(in1_input, S_IRUGO, show_voltage, NULL, INPUT, 1);
1084
-
static SENSOR_DEVICE_ATTR_2(in1_max, S_IRUGO | S_IWUSR, show_voltage,
1085
-
set_voltage, MAX, 1);
1086
-
static SENSOR_DEVICE_ATTR_2(in1_min, S_IRUGO | S_IWUSR, show_voltage,
1087
-
set_voltage, MIN, 1);
1088
-
static SENSOR_DEVICE_ATTR_2(in1_alarm, S_IRUGO, show_voltage, NULL, ALARM, 1);
1089
-
static SENSOR_DEVICE_ATTR_2(in2_input, S_IRUGO, show_voltage, NULL, INPUT, 2);
1090
-
static SENSOR_DEVICE_ATTR_2(in2_max, S_IRUGO | S_IWUSR, show_voltage,
1091
-
set_voltage, MAX, 2);
1092
-
static SENSOR_DEVICE_ATTR_2(in2_min, S_IRUGO | S_IWUSR, show_voltage,
1093
-
set_voltage, MIN, 2);
1094
-
static SENSOR_DEVICE_ATTR_2(in2_alarm, S_IRUGO, show_voltage, NULL, ALARM, 2);
1095
-
static SENSOR_DEVICE_ATTR_2(in3_input, S_IRUGO, show_voltage, NULL, INPUT, 3);
1096
-
static SENSOR_DEVICE_ATTR_2(in3_max, S_IRUGO | S_IWUSR, show_voltage,
1097
-
set_voltage, MAX, 3);
1098
-
static SENSOR_DEVICE_ATTR_2(in3_min, S_IRUGO | S_IWUSR, show_voltage,
1099
-
set_voltage, MIN, 3);
1100
-
static SENSOR_DEVICE_ATTR_2(in3_alarm, S_IRUGO, show_voltage, NULL, ALARM, 3);
1101
-
static SENSOR_DEVICE_ATTR_2(in4_input, S_IRUGO, show_voltage, NULL, INPUT, 4);
1102
-
static SENSOR_DEVICE_ATTR_2(in4_max, S_IRUGO | S_IWUSR, show_voltage,
1103
-
set_voltage, MAX, 4);
1104
-
static SENSOR_DEVICE_ATTR_2(in4_min, S_IRUGO | S_IWUSR, show_voltage,
1105
-
set_voltage, MIN, 4);
1106
-
static SENSOR_DEVICE_ATTR_2(in4_alarm, S_IRUGO, show_voltage, NULL, ALARM, 8);
1107
-
static SENSOR_DEVICE_ATTR_2(in5_input, S_IRUGO, show_voltage, NULL, INPUT, 5);
1108
-
static SENSOR_DEVICE_ATTR_2(in5_max, S_IRUGO | S_IWUSR, show_voltage,
1109
-
set_voltage, MAX, 5);
1110
-
static SENSOR_DEVICE_ATTR_2(in5_min, S_IRUGO | S_IWUSR, show_voltage,
1111
-
set_voltage, MIN, 5);
1112
-
static SENSOR_DEVICE_ATTR_2(in5_alarm, S_IRUGO, show_voltage, NULL, ALARM, 31);
1113
-
static SENSOR_DEVICE_ATTR_2(temp1_input, S_IRUGO, show_temp, NULL, INPUT, 0);
1114
-
static SENSOR_DEVICE_ATTR_2(temp1_alarm, S_IRUGO, show_temp, NULL, ALARM, 0);
1115
-
static SENSOR_DEVICE_ATTR_2(temp1_fault, S_IRUGO, show_temp, NULL, FAULT, 0);
1116
-
static SENSOR_DEVICE_ATTR_2(temp1_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
1117
-
MAX, 0);
1118
-
static SENSOR_DEVICE_ATTR_2(temp1_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
1119
-
MIN, 0);
1120
-
static SENSOR_DEVICE_ATTR_2(temp1_offset, S_IRUGO | S_IWUSR, show_temp,
1121
-
set_temp, OFFSET, 0);
1122
-
static SENSOR_DEVICE_ATTR_2(temp1_auto_point1_temp, S_IRUGO | S_IWUSR,
1123
-
show_temp, set_temp, AUTOMIN, 0);
1124
-
static SENSOR_DEVICE_ATTR_2(temp1_auto_point2_temp, S_IRUGO | S_IWUSR,
1125
-
show_point2, set_point2, 0, 0);
1126
-
static SENSOR_DEVICE_ATTR_2(temp1_crit, S_IRUGO | S_IWUSR, show_temp, set_temp,
1127
-
THERM, 0);
1128
-
static SENSOR_DEVICE_ATTR_2(temp1_crit_hyst, S_IRUGO | S_IWUSR, show_temp,
1129
-
set_temp, HYSTERSIS, 0);
1130
-
static SENSOR_DEVICE_ATTR_2(temp1_smoothing, S_IRUGO | S_IWUSR, show_temp_st,
1131
-
set_temp_st, 0, 0);
1132
-
static SENSOR_DEVICE_ATTR_2(temp2_input, S_IRUGO, show_temp, NULL, INPUT, 1);
1133
-
static SENSOR_DEVICE_ATTR_2(temp2_alarm, S_IRUGO, show_temp, NULL, ALARM, 1);
1134
-
static SENSOR_DEVICE_ATTR_2(temp2_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
1135
-
MAX, 1);
1136
-
static SENSOR_DEVICE_ATTR_2(temp2_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
1137
-
MIN, 1);
1138
-
static SENSOR_DEVICE_ATTR_2(temp2_offset, S_IRUGO | S_IWUSR, show_temp,
1139
-
set_temp, OFFSET, 1);
1140
-
static SENSOR_DEVICE_ATTR_2(temp2_auto_point1_temp, S_IRUGO | S_IWUSR,
1141
-
show_temp, set_temp, AUTOMIN, 1);
1142
-
static SENSOR_DEVICE_ATTR_2(temp2_auto_point2_temp, S_IRUGO | S_IWUSR,
1143
-
show_point2, set_point2, 0, 1);
1144
-
static SENSOR_DEVICE_ATTR_2(temp2_crit, S_IRUGO | S_IWUSR, show_temp, set_temp,
1145
-
THERM, 1);
1146
-
static SENSOR_DEVICE_ATTR_2(temp2_crit_hyst, S_IRUGO | S_IWUSR, show_temp,
1147
-
set_temp, HYSTERSIS, 1);
1148
-
static SENSOR_DEVICE_ATTR_2(temp2_smoothing, S_IRUGO | S_IWUSR, show_temp_st,
1149
-
set_temp_st, 0, 1);
1150
-
static SENSOR_DEVICE_ATTR_2(temp3_input, S_IRUGO, show_temp, NULL, INPUT, 2);
1151
-
static SENSOR_DEVICE_ATTR_2(temp3_alarm, S_IRUGO, show_temp, NULL, ALARM, 2);
1152
-
static SENSOR_DEVICE_ATTR_2(temp3_fault, S_IRUGO, show_temp, NULL, FAULT, 2);
1153
-
static SENSOR_DEVICE_ATTR_2(temp3_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
1154
-
MAX, 2);
1155
-
static SENSOR_DEVICE_ATTR_2(temp3_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
1156
-
MIN, 2);
1157
-
static SENSOR_DEVICE_ATTR_2(temp3_offset, S_IRUGO | S_IWUSR, show_temp,
1158
-
set_temp, OFFSET, 2);
1159
-
static SENSOR_DEVICE_ATTR_2(temp3_auto_point1_temp, S_IRUGO | S_IWUSR,
1160
-
show_temp, set_temp, AUTOMIN, 2);
1161
-
static SENSOR_DEVICE_ATTR_2(temp3_auto_point2_temp, S_IRUGO | S_IWUSR,
1162
-
show_point2, set_point2, 0, 2);
1163
-
static SENSOR_DEVICE_ATTR_2(temp3_crit, S_IRUGO | S_IWUSR, show_temp, set_temp,
1164
-
THERM, 2);
1165
-
static SENSOR_DEVICE_ATTR_2(temp3_crit_hyst, S_IRUGO | S_IWUSR, show_temp,
1166
-
set_temp, HYSTERSIS, 2);
1167
-
static SENSOR_DEVICE_ATTR_2(temp3_smoothing, S_IRUGO | S_IWUSR, show_temp_st,
1168
-
set_temp_st, 0, 2);
1169
-
static SENSOR_DEVICE_ATTR_2(fan1_input, S_IRUGO, show_tach, NULL, INPUT, 0);
1170
-
static SENSOR_DEVICE_ATTR_2(fan1_min, S_IRUGO | S_IWUSR, show_tach, set_tach,
1171
-
MIN, 0);
1172
-
static SENSOR_DEVICE_ATTR_2(fan1_alarm, S_IRUGO, show_tach, NULL, ALARM, 0);
1173
-
static SENSOR_DEVICE_ATTR_2(fan2_input, S_IRUGO, show_tach, NULL, INPUT, 1);
1174
-
static SENSOR_DEVICE_ATTR_2(fan2_min, S_IRUGO | S_IWUSR, show_tach, set_tach,
1175
-
MIN, 1);
1176
-
static SENSOR_DEVICE_ATTR_2(fan2_alarm, S_IRUGO, show_tach, NULL, ALARM, 1);
1177
-
static SENSOR_DEVICE_ATTR_2(fan3_input, S_IRUGO, show_tach, NULL, INPUT, 2);
1178
-
static SENSOR_DEVICE_ATTR_2(fan3_min, S_IRUGO | S_IWUSR, show_tach, set_tach,
1179
-
MIN, 2);
1180
-
static SENSOR_DEVICE_ATTR_2(fan3_alarm, S_IRUGO, show_tach, NULL, ALARM, 2);
1181
-
static SENSOR_DEVICE_ATTR_2(fan4_input, S_IRUGO, show_tach, NULL, INPUT, 3);
1182
-
static SENSOR_DEVICE_ATTR_2(fan4_min, S_IRUGO | S_IWUSR, show_tach, set_tach,
1183
-
MIN, 3);
1184
-
static SENSOR_DEVICE_ATTR_2(fan4_alarm, S_IRUGO, show_tach, NULL, ALARM, 3);
1185
-
static SENSOR_DEVICE_ATTR_2(pwm1, S_IRUGO | S_IWUSR, show_pwm, set_pwm, INPUT,
1186
-
0);
1187
-
static SENSOR_DEVICE_ATTR_2(pwm1_freq, S_IRUGO | S_IWUSR, show_pwmfreq,
1188
-
set_pwmfreq, INPUT, 0);
1189
-
static SENSOR_DEVICE_ATTR_2(pwm1_enable, S_IRUGO | S_IWUSR, show_pwmctrl,
1190
-
set_pwmctrl, INPUT, 0);
1191
-
static SENSOR_DEVICE_ATTR_2(pwm1_auto_channels_temp, S_IRUGO | S_IWUSR,
1192
-
show_pwmchan, set_pwmchan, INPUT, 0);
1193
-
static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_pwm, S_IRUGO | S_IWUSR, show_pwm,
1194
-
set_pwm, MIN, 0);
1195
-
static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_pwm, S_IRUGO | S_IWUSR, show_pwm,
1196
-
set_pwm, MAX, 0);
1197
-
static SENSOR_DEVICE_ATTR_2(pwm1_stall_disable, S_IRUGO | S_IWUSR,
1198
-
show_stall_disable, set_stall_disable, 0, 0);
1199
-
static SENSOR_DEVICE_ATTR_2(pwm2, S_IRUGO | S_IWUSR, show_pwm, set_pwm, INPUT,
1200
-
1);
1201
-
static SENSOR_DEVICE_ATTR_2(pwm2_freq, S_IRUGO | S_IWUSR, show_pwmfreq,
1202
-
set_pwmfreq, INPUT, 1);
1203
-
static SENSOR_DEVICE_ATTR_2(pwm2_enable, S_IRUGO | S_IWUSR, show_pwmctrl,
1204
-
set_pwmctrl, INPUT, 1);
1205
-
static SENSOR_DEVICE_ATTR_2(pwm2_auto_channels_temp, S_IRUGO | S_IWUSR,
1206
-
show_pwmchan, set_pwmchan, INPUT, 1);
1207
-
static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_pwm, S_IRUGO | S_IWUSR, show_pwm,
1208
-
set_pwm, MIN, 1);
1209
-
static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_pwm, S_IRUGO | S_IWUSR, show_pwm,
1210
-
set_pwm, MAX, 1);
1211
-
static SENSOR_DEVICE_ATTR_2(pwm2_stall_disable, S_IRUGO | S_IWUSR,
1212
-
show_stall_disable, set_stall_disable, 0, 1);
1213
-
static SENSOR_DEVICE_ATTR_2(pwm3, S_IRUGO | S_IWUSR, show_pwm, set_pwm, INPUT,
1214
-
2);
1215
-
static SENSOR_DEVICE_ATTR_2(pwm3_freq, S_IRUGO | S_IWUSR, show_pwmfreq,
1216
-
set_pwmfreq, INPUT, 2);
1217
-
static SENSOR_DEVICE_ATTR_2(pwm3_enable, S_IRUGO | S_IWUSR, show_pwmctrl,
1218
-
set_pwmctrl, INPUT, 2);
1219
-
static SENSOR_DEVICE_ATTR_2(pwm3_auto_channels_temp, S_IRUGO | S_IWUSR,
1220
-
show_pwmchan, set_pwmchan, INPUT, 2);
1221
-
static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_pwm, S_IRUGO | S_IWUSR, show_pwm,
1222
-
set_pwm, MIN, 2);
1223
-
static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_pwm, S_IRUGO | S_IWUSR, show_pwm,
1224
-
set_pwm, MAX, 2);
1225
-
static SENSOR_DEVICE_ATTR_2(pwm3_stall_disable, S_IRUGO | S_IWUSR,
1226
-
show_stall_disable, set_stall_disable, 0, 2);
1082
+
static SENSOR_DEVICE_ATTR_2_RO(in0_input, voltage, INPUT, 0);
1083
+
static SENSOR_DEVICE_ATTR_2_RW(in0_max, voltage, MAX, 0);
1084
+
static SENSOR_DEVICE_ATTR_2_RW(in0_min, voltage, MIN, 0);
1085
+
static SENSOR_DEVICE_ATTR_2_RO(in0_alarm, voltage, ALARM, 0);
1086
+
static SENSOR_DEVICE_ATTR_2_RO(in1_input, voltage, INPUT, 1);
1087
+
static SENSOR_DEVICE_ATTR_2_RW(in1_max, voltage, MAX, 1);
1088
+
static SENSOR_DEVICE_ATTR_2_RW(in1_min, voltage, MIN, 1);
1089
+
static SENSOR_DEVICE_ATTR_2_RO(in1_alarm, voltage, ALARM, 1);
1090
+
static SENSOR_DEVICE_ATTR_2_RO(in2_input, voltage, INPUT, 2);
1091
+
static SENSOR_DEVICE_ATTR_2_RW(in2_max, voltage, MAX, 2);
1092
+
static SENSOR_DEVICE_ATTR_2_RW(in2_min, voltage, MIN, 2);
1093
+
static SENSOR_DEVICE_ATTR_2_RO(in2_alarm, voltage, ALARM, 2);
1094
+
static SENSOR_DEVICE_ATTR_2_RO(in3_input, voltage, INPUT, 3);
1095
+
static SENSOR_DEVICE_ATTR_2_RW(in3_max, voltage, MAX, 3);
1096
+
static SENSOR_DEVICE_ATTR_2_RW(in3_min, voltage, MIN, 3);
1097
+
static SENSOR_DEVICE_ATTR_2_RO(in3_alarm, voltage, ALARM, 3);
1098
+
static SENSOR_DEVICE_ATTR_2_RO(in4_input, voltage, INPUT, 4);
1099
+
static SENSOR_DEVICE_ATTR_2_RW(in4_max, voltage, MAX, 4);
1100
+
static SENSOR_DEVICE_ATTR_2_RW(in4_min, voltage, MIN, 4);
1101
+
static SENSOR_DEVICE_ATTR_2_RO(in4_alarm, voltage, ALARM, 8);
1102
+
static SENSOR_DEVICE_ATTR_2_RO(in5_input, voltage, INPUT, 5);
1103
+
static SENSOR_DEVICE_ATTR_2_RW(in5_max, voltage, MAX, 5);
1104
+
static SENSOR_DEVICE_ATTR_2_RW(in5_min, voltage, MIN, 5);
1105
+
static SENSOR_DEVICE_ATTR_2_RO(in5_alarm, voltage, ALARM, 31);
1106
+
static SENSOR_DEVICE_ATTR_2_RO(temp1_input, temp, INPUT, 0);
1107
+
static SENSOR_DEVICE_ATTR_2_RO(temp1_alarm, temp, ALARM, 0);
1108
+
static SENSOR_DEVICE_ATTR_2_RO(temp1_fault, temp, FAULT, 0);
1109
+
static SENSOR_DEVICE_ATTR_2_RW(temp1_max, temp, MAX, 0);
1110
+
static SENSOR_DEVICE_ATTR_2_RW(temp1_min, temp, MIN, 0);
1111
+
static SENSOR_DEVICE_ATTR_2_RW(temp1_offset, temp, OFFSET, 0);
1112
+
static SENSOR_DEVICE_ATTR_2_RW(temp1_auto_point1_temp, temp, AUTOMIN, 0);
1113
+
static SENSOR_DEVICE_ATTR_2_RW(temp1_auto_point2_temp, point2, 0, 0);
1114
+
static SENSOR_DEVICE_ATTR_2_RW(temp1_crit, temp, THERM, 0);
1115
+
static SENSOR_DEVICE_ATTR_2_RW(temp1_crit_hyst, temp, HYSTERSIS, 0);
1116
+
static SENSOR_DEVICE_ATTR_2_RW(temp1_smoothing, temp_st, 0, 0);
1117
+
static SENSOR_DEVICE_ATTR_2_RO(temp2_input, temp, INPUT, 1);
1118
+
static SENSOR_DEVICE_ATTR_2_RO(temp2_alarm, temp, ALARM, 1);
1119
+
static SENSOR_DEVICE_ATTR_2_RW(temp2_max, temp, MAX, 1);
1120
+
static SENSOR_DEVICE_ATTR_2_RW(temp2_min, temp, MIN, 1);
1121
+
static SENSOR_DEVICE_ATTR_2_RW(temp2_offset, temp, OFFSET, 1);
1122
+
static SENSOR_DEVICE_ATTR_2_RW(temp2_auto_point1_temp, temp, AUTOMIN, 1);
1123
+
static SENSOR_DEVICE_ATTR_2_RW(temp2_auto_point2_temp, point2, 0, 1);
1124
+
static SENSOR_DEVICE_ATTR_2_RW(temp2_crit, temp, THERM, 1);
1125
+
static SENSOR_DEVICE_ATTR_2_RW(temp2_crit_hyst, temp, HYSTERSIS, 1);
1126
+
static SENSOR_DEVICE_ATTR_2_RW(temp2_smoothing, temp_st, 0, 1);
1127
+
static SENSOR_DEVICE_ATTR_2_RO(temp3_input, temp, INPUT, 2);
1128
+
static SENSOR_DEVICE_ATTR_2_RO(temp3_alarm, temp, ALARM, 2);
1129
+
static SENSOR_DEVICE_ATTR_2_RO(temp3_fault, temp, FAULT, 2);
1130
+
static SENSOR_DEVICE_ATTR_2_RW(temp3_max, temp, MAX, 2);
1131
+
static SENSOR_DEVICE_ATTR_2_RW(temp3_min, temp, MIN, 2);
1132
+
static SENSOR_DEVICE_ATTR_2_RW(temp3_offset, temp, OFFSET, 2);
1133
+
static SENSOR_DEVICE_ATTR_2_RW(temp3_auto_point1_temp, temp, AUTOMIN, 2);
1134
+
static SENSOR_DEVICE_ATTR_2_RW(temp3_auto_point2_temp, point2, 0, 2);
1135
+
static SENSOR_DEVICE_ATTR_2_RW(temp3_crit, temp, THERM, 2);
1136
+
static SENSOR_DEVICE_ATTR_2_RW(temp3_crit_hyst, temp, HYSTERSIS, 2);
1137
+
static SENSOR_DEVICE_ATTR_2_RW(temp3_smoothing, temp_st, 0, 2);
1138
+
static SENSOR_DEVICE_ATTR_2_RO(fan1_input, tach, INPUT, 0);
1139
+
static SENSOR_DEVICE_ATTR_2_RW(fan1_min, tach, MIN, 0);
1140
+
static SENSOR_DEVICE_ATTR_2_RO(fan1_alarm, tach, ALARM, 0);
1141
+
static SENSOR_DEVICE_ATTR_2_RO(fan2_input, tach, INPUT, 1);
1142
+
static SENSOR_DEVICE_ATTR_2_RW(fan2_min, tach, MIN, 1);
1143
+
static SENSOR_DEVICE_ATTR_2_RO(fan2_alarm, tach, ALARM, 1);
1144
+
static SENSOR_DEVICE_ATTR_2_RO(fan3_input, tach, INPUT, 2);
1145
+
static SENSOR_DEVICE_ATTR_2_RW(fan3_min, tach, MIN, 2);
1146
+
static SENSOR_DEVICE_ATTR_2_RO(fan3_alarm, tach, ALARM, 2);
1147
+
static SENSOR_DEVICE_ATTR_2_RO(fan4_input, tach, INPUT, 3);
1148
+
static SENSOR_DEVICE_ATTR_2_RW(fan4_min, tach, MIN, 3);
1149
+
static SENSOR_DEVICE_ATTR_2_RO(fan4_alarm, tach, ALARM, 3);
1150
+
static SENSOR_DEVICE_ATTR_2_RW(pwm1, pwm, INPUT, 0);
1151
+
static SENSOR_DEVICE_ATTR_2_RW(pwm1_freq, pwmfreq, INPUT, 0);
1152
+
static SENSOR_DEVICE_ATTR_2_RW(pwm1_enable, pwmctrl, INPUT, 0);
1153
+
static SENSOR_DEVICE_ATTR_2_RW(pwm1_auto_channels_temp, pwmchan, INPUT, 0);
1154
+
static SENSOR_DEVICE_ATTR_2_RW(pwm1_auto_point1_pwm, pwm, MIN, 0);
1155
+
static SENSOR_DEVICE_ATTR_2_RW(pwm1_auto_point2_pwm, pwm, MAX, 0);
1156
+
static SENSOR_DEVICE_ATTR_2_RW(pwm1_stall_disable, stall_disable, 0, 0);
1157
+
static SENSOR_DEVICE_ATTR_2_RW(pwm2, pwm, INPUT, 1);
1158
+
static SENSOR_DEVICE_ATTR_2_RW(pwm2_freq, pwmfreq, INPUT, 1);
1159
+
static SENSOR_DEVICE_ATTR_2_RW(pwm2_enable, pwmctrl, INPUT, 1);
1160
+
static SENSOR_DEVICE_ATTR_2_RW(pwm2_auto_channels_temp, pwmchan, INPUT, 1);
1161
+
static SENSOR_DEVICE_ATTR_2_RW(pwm2_auto_point1_pwm, pwm, MIN, 1);
1162
+
static SENSOR_DEVICE_ATTR_2_RW(pwm2_auto_point2_pwm, pwm, MAX, 1);
1163
+
static SENSOR_DEVICE_ATTR_2_RW(pwm2_stall_disable, stall_disable, 0, 1);
1164
+
static SENSOR_DEVICE_ATTR_2_RW(pwm3, pwm, INPUT, 2);
1165
+
static SENSOR_DEVICE_ATTR_2_RW(pwm3_freq, pwmfreq, INPUT, 2);
1166
+
static SENSOR_DEVICE_ATTR_2_RW(pwm3_enable, pwmctrl, INPUT, 2);
1167
+
static SENSOR_DEVICE_ATTR_2_RW(pwm3_auto_channels_temp, pwmchan, INPUT, 2);
1168
+
static SENSOR_DEVICE_ATTR_2_RW(pwm3_auto_point1_pwm, pwm, MIN, 2);
1169
+
static SENSOR_DEVICE_ATTR_2_RW(pwm3_auto_point2_pwm, pwm, MAX, 2);
1170
+
static SENSOR_DEVICE_ATTR_2_RW(pwm3_stall_disable, stall_disable, 0, 2);
1227
1171
1228
1172
/* Non-standard name, might need revisiting */
1229
1173
static DEVICE_ATTR_RW(pwm_use_point2_pwm_at_crit);
1230
1174
1231
1175
static DEVICE_ATTR_RW(vrm);
1232
1176
static DEVICE_ATTR_RO(cpu0_vid);
1233
1177
1234
1178
static struct attribute *adt7475_attrs[] = {
1235
1179
&sensor_dev_attr_in1_input.dev_attr.attr,
1236
1180
&sensor_dev_attr_in1_max.dev_attr.attr,