Source
130
130
data->valid = 1;
131
131
}
132
132
133
133
mutex_unlock(&data->update_lock);
134
134
135
135
return data;
136
136
}
137
137
138
138
/* sysfs stuff */
139
139
140
-
static ssize_t show_temp(struct device *dev, struct device_attribute *devattr,
140
+
static ssize_t temp_show(struct device *dev, struct device_attribute *devattr,
141
141
char *buf)
142
142
{
143
143
struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
144
144
struct lm77_data *data = lm77_update_device(dev);
145
145
146
146
return sprintf(buf, "%d\n", data->temp[attr->index]);
147
147
}
148
148
149
-
static ssize_t show_temp_hyst(struct device *dev,
149
+
static ssize_t temp_hyst_show(struct device *dev,
150
150
struct device_attribute *devattr, char *buf)
151
151
{
152
152
struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
153
153
struct lm77_data *data = lm77_update_device(dev);
154
154
int nr = attr->index;
155
155
int temp;
156
156
157
157
temp = nr == t_min ? data->temp[nr] + data->temp[t_hyst] :
158
158
data->temp[nr] - data->temp[t_hyst];
159
159
160
160
return sprintf(buf, "%d\n", temp);
161
161
}
162
162
163
-
static ssize_t set_temp(struct device *dev, struct device_attribute *devattr,
164
-
const char *buf, size_t count)
163
+
static ssize_t temp_store(struct device *dev,
164
+
struct device_attribute *devattr, const char *buf,
165
+
size_t count)
165
166
{
166
167
struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
167
168
struct lm77_data *data = dev_get_drvdata(dev);
168
169
struct i2c_client *client = data->client;
169
170
int nr = attr->index;
170
171
long val;
171
172
int err;
172
173
173
174
err = kstrtol(buf, 10, &val);
174
175
if (err)
179
180
data->temp[nr] = val;
180
181
lm77_write_value(client, temp_regs[nr], LM77_TEMP_TO_REG(val));
181
182
mutex_unlock(&data->update_lock);
182
183
return count;
183
184
}
184
185
185
186
/*
186
187
* hysteresis is stored as a relative value on the chip, so it has to be
187
188
* converted first.
188
189
*/
189
-
static ssize_t set_temp_hyst(struct device *dev,
190
-
struct device_attribute *devattr,
191
-
const char *buf, size_t count)
190
+
static ssize_t temp_hyst_store(struct device *dev,
191
+
struct device_attribute *devattr,
192
+
const char *buf, size_t count)
192
193
{
193
194
struct lm77_data *data = dev_get_drvdata(dev);
194
195
struct i2c_client *client = data->client;
195
196
long val;
196
197
int err;
197
198
198
199
err = kstrtol(buf, 10, &val);
199
200
if (err)
200
201
return err;
201
202
202
203
mutex_lock(&data->update_lock);
203
204
val = clamp_val(data->temp[t_crit] - val, LM77_TEMP_MIN, LM77_TEMP_MAX);
204
205
data->temp[t_hyst] = val;
205
206
lm77_write_value(client, LM77_REG_TEMP_HYST,
206
207
LM77_TEMP_TO_REG(data->temp[t_hyst]));
207
208
mutex_unlock(&data->update_lock);
208
209
return count;
209
210
}
210
211
211
-
static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
212
+
static ssize_t alarm_show(struct device *dev, struct device_attribute *attr,
212
213
char *buf)
213
214
{
214
215
int bitnr = to_sensor_dev_attr(attr)->index;
215
216
struct lm77_data *data = lm77_update_device(dev);
216
217
return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
217
218
}
218
219
219
-
static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, show_temp, NULL, t_input);
220
-
static SENSOR_DEVICE_ATTR(temp1_crit, S_IWUSR | S_IRUGO, show_temp, set_temp,
221
-
t_crit);
222
-
static SENSOR_DEVICE_ATTR(temp1_min, S_IWUSR | S_IRUGO, show_temp, set_temp,
223
-
t_min);
224
-
static SENSOR_DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO, show_temp, set_temp,
225
-
t_max);
226
-
227
-
static SENSOR_DEVICE_ATTR(temp1_crit_hyst, S_IWUSR | S_IRUGO, show_temp_hyst,
228
-
set_temp_hyst, t_crit);
229
-
static SENSOR_DEVICE_ATTR(temp1_min_hyst, S_IRUGO, show_temp_hyst, NULL, t_min);
230
-
static SENSOR_DEVICE_ATTR(temp1_max_hyst, S_IRUGO, show_temp_hyst, NULL, t_max);
231
-
232
-
static SENSOR_DEVICE_ATTR(temp1_crit_alarm, S_IRUGO, show_alarm, NULL, 2);
233
-
static SENSOR_DEVICE_ATTR(temp1_min_alarm, S_IRUGO, show_alarm, NULL, 0);
234
-
static SENSOR_DEVICE_ATTR(temp1_max_alarm, S_IRUGO, show_alarm, NULL, 1);
220
+
static SENSOR_DEVICE_ATTR_RO(temp1_input, temp, t_input);
221
+
static SENSOR_DEVICE_ATTR_RW(temp1_crit, temp, t_crit);
222
+
static SENSOR_DEVICE_ATTR_RW(temp1_min, temp, t_min);
223
+
static SENSOR_DEVICE_ATTR_RW(temp1_max, temp, t_max);
224
+
225
+
static SENSOR_DEVICE_ATTR_RW(temp1_crit_hyst, temp_hyst, t_crit);
226
+
static SENSOR_DEVICE_ATTR_RO(temp1_min_hyst, temp_hyst, t_min);
227
+
static SENSOR_DEVICE_ATTR_RO(temp1_max_hyst, temp_hyst, t_max);
228
+
229
+
static SENSOR_DEVICE_ATTR_RO(temp1_crit_alarm, alarm, 2);
230
+
static SENSOR_DEVICE_ATTR_RO(temp1_min_alarm, alarm, 0);
231
+
static SENSOR_DEVICE_ATTR_RO(temp1_max_alarm, alarm, 1);
235
232
236
233
static struct attribute *lm77_attrs[] = {
237
234
&sensor_dev_attr_temp1_input.dev_attr.attr,
238
235
&sensor_dev_attr_temp1_crit.dev_attr.attr,
239
236
&sensor_dev_attr_temp1_min.dev_attr.attr,
240
237
&sensor_dev_attr_temp1_max.dev_attr.attr,
241
238
&sensor_dev_attr_temp1_crit_hyst.dev_attr.attr,
242
239
&sensor_dev_attr_temp1_min_hyst.dev_attr.attr,
243
240
&sensor_dev_attr_temp1_max_hyst.dev_attr.attr,
244
241
&sensor_dev_attr_temp1_crit_alarm.dev_attr.attr,