Source
55
55
};
56
56
57
57
struct lm73_data {
58
58
struct i2c_client *client;
59
59
struct mutex lock;
60
60
u8 ctrl; /* control register value */
61
61
};
62
62
63
63
/*-----------------------------------------------------------------------*/
64
64
65
-
static ssize_t set_temp(struct device *dev, struct device_attribute *da,
66
-
const char *buf, size_t count)
65
+
static ssize_t temp_store(struct device *dev, struct device_attribute *da,
66
+
const char *buf, size_t count)
67
67
{
68
68
struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
69
69
struct lm73_data *data = dev_get_drvdata(dev);
70
70
long temp;
71
71
short value;
72
72
s32 err;
73
73
74
74
int status = kstrtol(buf, 10, &temp);
75
75
if (status < 0)
76
76
return status;
77
77
78
78
/* Write value */
79
79
value = clamp_val(temp / 250, LM73_TEMP_MIN, LM73_TEMP_MAX) << 5;
80
80
err = i2c_smbus_write_word_swapped(data->client, attr->index, value);
81
81
return (err < 0) ? err : count;
82
82
}
83
83
84
-
static ssize_t show_temp(struct device *dev, struct device_attribute *da,
84
+
static ssize_t temp_show(struct device *dev, struct device_attribute *da,
85
85
char *buf)
86
86
{
87
87
struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
88
88
struct lm73_data *data = dev_get_drvdata(dev);
89
89
int temp;
90
90
91
91
s32 err = i2c_smbus_read_word_swapped(data->client, attr->index);
92
92
if (err < 0)
93
93
return err;
94
94
95
95
/* use integer division instead of equivalent right shift to
96
96
guarantee arithmetic shift and preserve the sign */
97
97
temp = (((s16) err) * 250) / 32;
98
98
return scnprintf(buf, PAGE_SIZE, "%d\n", temp);
99
99
}
100
100
101
-
static ssize_t set_convrate(struct device *dev, struct device_attribute *da,
102
-
const char *buf, size_t count)
101
+
static ssize_t convrate_store(struct device *dev, struct device_attribute *da,
102
+
const char *buf, size_t count)
103
103
{
104
104
struct lm73_data *data = dev_get_drvdata(dev);
105
105
unsigned long convrate;
106
106
s32 err;
107
107
int res = 0;
108
108
109
109
err = kstrtoul(buf, 10, &convrate);
110
110
if (err < 0)
111
111
return err;
112
112
126
126
err = i2c_smbus_write_byte_data(data->client, LM73_REG_CTRL,
127
127
data->ctrl);
128
128
mutex_unlock(&data->lock);
129
129
130
130
if (err < 0)
131
131
return err;
132
132
133
133
return count;
134
134
}
135
135
136
-
static ssize_t show_convrate(struct device *dev, struct device_attribute *da,
136
+
static ssize_t convrate_show(struct device *dev, struct device_attribute *da,
137
137
char *buf)
138
138
{
139
139
struct lm73_data *data = dev_get_drvdata(dev);
140
140
int res;
141
141
142
142
res = (data->ctrl & LM73_CTRL_RES_MASK) >> LM73_CTRL_RES_SHIFT;
143
143
return scnprintf(buf, PAGE_SIZE, "%hu\n", lm73_convrates[res]);
144
144
}
145
145
146
-
static ssize_t show_maxmin_alarm(struct device *dev,
146
+
static ssize_t maxmin_alarm_show(struct device *dev,
147
147
struct device_attribute *da, char *buf)
148
148
{
149
149
struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
150
150
struct lm73_data *data = dev_get_drvdata(dev);
151
151
s32 ctrl;
152
152
153
153
mutex_lock(&data->lock);
154
154
ctrl = i2c_smbus_read_byte_data(data->client, LM73_REG_CTRL);
155
155
if (ctrl < 0)
156
156
goto abort;
161
161
162
162
abort:
163
163
mutex_unlock(&data->lock);
164
164
return ctrl;
165
165
}
166
166
167
167
/*-----------------------------------------------------------------------*/
168
168
169
169
/* sysfs attributes for hwmon */
170
170
171
-
static SENSOR_DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO,
172
-
show_temp, set_temp, LM73_REG_MAX);
173
-
static SENSOR_DEVICE_ATTR(temp1_min, S_IWUSR | S_IRUGO,
174
-
show_temp, set_temp, LM73_REG_MIN);
175
-
static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO,
176
-
show_temp, NULL, LM73_REG_INPUT);
177
-
static SENSOR_DEVICE_ATTR(update_interval, S_IWUSR | S_IRUGO,
178
-
show_convrate, set_convrate, 0);
179
-
static SENSOR_DEVICE_ATTR(temp1_max_alarm, S_IRUGO,
180
-
show_maxmin_alarm, NULL, LM73_CTRL_HI_SHIFT);
181
-
static SENSOR_DEVICE_ATTR(temp1_min_alarm, S_IRUGO,
182
-
show_maxmin_alarm, NULL, LM73_CTRL_LO_SHIFT);
171
+
static SENSOR_DEVICE_ATTR_RW(temp1_max, temp, LM73_REG_MAX);
172
+
static SENSOR_DEVICE_ATTR_RW(temp1_min, temp, LM73_REG_MIN);
173
+
static SENSOR_DEVICE_ATTR_RO(temp1_input, temp, LM73_REG_INPUT);
174
+
static SENSOR_DEVICE_ATTR_RW(update_interval, convrate, 0);
175
+
static SENSOR_DEVICE_ATTR_RO(temp1_max_alarm, maxmin_alarm,
176
+
LM73_CTRL_HI_SHIFT);
177
+
static SENSOR_DEVICE_ATTR_RO(temp1_min_alarm, maxmin_alarm,
178
+
LM73_CTRL_LO_SHIFT);
183
179
184
180
static struct attribute *lm73_attrs[] = {
185
181
&sensor_dev_attr_temp1_input.dev_attr.attr,
186
182
&sensor_dev_attr_temp1_max.dev_attr.attr,
187
183
&sensor_dev_attr_temp1_min.dev_attr.attr,
188
184
&sensor_dev_attr_update_interval.dev_attr.attr,
189
185
&sensor_dev_attr_temp1_max_alarm.dev_attr.attr,
190
186
&sensor_dev_attr_temp1_min_alarm.dev_attr.attr,
191
187
NULL
192
188
};