Source
223
223
* temperature is stored in twos complement format, in steps of
224
224
* 1/128°C
225
225
*/
226
226
return DIV_ROUND_CLOSEST(reg * 1000, 128);
227
227
}
228
228
229
229
/*-----------------------------------------------------------------------*/
230
230
231
231
/* sysfs attributes for hwmon */
232
232
233
-
static ssize_t adt7x10_show_temp(struct device *dev,
234
-
struct device_attribute *da,
235
-
char *buf)
233
+
static ssize_t adt7x10_temp_show(struct device *dev,
234
+
struct device_attribute *da, char *buf)
236
235
{
237
236
struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
238
237
struct adt7x10_data *data = dev_get_drvdata(dev);
239
238
240
239
241
240
if (attr->index == 0) {
242
241
int ret;
243
242
244
243
ret = adt7x10_update_temp(dev);
245
244
if (ret)
246
245
return ret;
247
246
}
248
247
249
248
return sprintf(buf, "%d\n", ADT7X10_REG_TO_TEMP(data,
250
249
data->temp[attr->index]));
251
250
}
252
251
253
-
static ssize_t adt7x10_set_temp(struct device *dev,
254
-
struct device_attribute *da,
255
-
const char *buf, size_t count)
252
+
static ssize_t adt7x10_temp_store(struct device *dev,
253
+
struct device_attribute *da,
254
+
const char *buf, size_t count)
256
255
{
257
256
struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
258
257
struct adt7x10_data *data = dev_get_drvdata(dev);
259
258
int nr = attr->index;
260
259
long temp;
261
260
int ret;
262
261
263
262
ret = kstrtol(buf, 10, &temp);
264
263
if (ret)
265
264
return ret;
266
265
267
266
mutex_lock(&data->update_lock);
268
267
data->temp[nr] = ADT7X10_TEMP_TO_REG(temp);
269
268
ret = adt7x10_write_word(dev, ADT7X10_REG_TEMP[nr], data->temp[nr]);
270
269
if (ret)
271
270
count = ret;
272
271
mutex_unlock(&data->update_lock);
273
272
return count;
274
273
}
275
274
276
-
static ssize_t adt7x10_show_t_hyst(struct device *dev,
277
-
struct device_attribute *da,
278
-
char *buf)
275
+
static ssize_t adt7x10_t_hyst_show(struct device *dev,
276
+
struct device_attribute *da, char *buf)
279
277
{
280
278
struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
281
279
struct adt7x10_data *data = dev_get_drvdata(dev);
282
280
int nr = attr->index;
283
281
int hyst;
284
282
285
283
hyst = (data->hyst & ADT7X10_T_HYST_MASK) * 1000;
286
284
287
285
/*
288
286
* hysteresis is stored as a 4 bit offset in the device, convert it
289
287
* to an absolute value
290
288
*/
291
289
if (nr == 2) /* min has positive offset, others have negative */
292
290
hyst = -hyst;
293
291
return sprintf(buf, "%d\n",
294
292
ADT7X10_REG_TO_TEMP(data, data->temp[nr]) - hyst);
295
293
}
296
294
297
-
static ssize_t adt7x10_set_t_hyst(struct device *dev,
298
-
struct device_attribute *da,
299
-
const char *buf, size_t count)
295
+
static ssize_t adt7x10_t_hyst_store(struct device *dev,
296
+
struct device_attribute *da,
297
+
const char *buf, size_t count)
300
298
{
301
299
struct adt7x10_data *data = dev_get_drvdata(dev);
302
300
int limit, ret;
303
301
long hyst;
304
302
305
303
ret = kstrtol(buf, 10, &hyst);
306
304
if (ret)
307
305
return ret;
308
306
/* convert absolute hysteresis value to a 4 bit delta value */
309
307
limit = ADT7X10_REG_TO_TEMP(data, data->temp[1]);
310
308
hyst = clamp_val(hyst, ADT7X10_TEMP_MIN, ADT7X10_TEMP_MAX);
311
309
data->hyst = clamp_val(DIV_ROUND_CLOSEST(limit - hyst, 1000),
312
310
0, ADT7X10_T_HYST_MASK);
313
311
ret = adt7x10_write_byte(dev, ADT7X10_T_HYST, data->hyst);
314
312
if (ret)
315
313
return ret;
316
314
317
315
return count;
318
316
}
319
317
320
-
static ssize_t adt7x10_show_alarm(struct device *dev,
321
-
struct device_attribute *da,
322
-
char *buf)
318
+
static ssize_t adt7x10_alarm_show(struct device *dev,
319
+
struct device_attribute *da, char *buf)
323
320
{
324
321
struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
325
322
int ret;
326
323
327
324
ret = adt7x10_read_byte(dev, ADT7X10_STATUS);
328
325
if (ret < 0)
329
326
return ret;
330
327
331
328
return sprintf(buf, "%d\n", !!(ret & attr->index));
332
329
}
333
330
334
331
static ssize_t name_show(struct device *dev, struct device_attribute *da,
335
332
char *buf)
336
333
{
337
334
struct adt7x10_data *data = dev_get_drvdata(dev);
338
335
339
336
return sprintf(buf, "%s\n", data->name);
340
337
}
341
338
342
-
static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, adt7x10_show_temp, NULL, 0);
343
-
static SENSOR_DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO,
344
-
adt7x10_show_temp, adt7x10_set_temp, 1);
345
-
static SENSOR_DEVICE_ATTR(temp1_min, S_IWUSR | S_IRUGO,
346
-
adt7x10_show_temp, adt7x10_set_temp, 2);
347
-
static SENSOR_DEVICE_ATTR(temp1_crit, S_IWUSR | S_IRUGO,
348
-
adt7x10_show_temp, adt7x10_set_temp, 3);
349
-
static SENSOR_DEVICE_ATTR(temp1_max_hyst, S_IWUSR | S_IRUGO,
350
-
adt7x10_show_t_hyst, adt7x10_set_t_hyst, 1);
351
-
static SENSOR_DEVICE_ATTR(temp1_min_hyst, S_IRUGO,
352
-
adt7x10_show_t_hyst, NULL, 2);
353
-
static SENSOR_DEVICE_ATTR(temp1_crit_hyst, S_IRUGO,
354
-
adt7x10_show_t_hyst, NULL, 3);
355
-
static SENSOR_DEVICE_ATTR(temp1_min_alarm, S_IRUGO, adt7x10_show_alarm,
356
-
NULL, ADT7X10_STAT_T_LOW);
357
-
static SENSOR_DEVICE_ATTR(temp1_max_alarm, S_IRUGO, adt7x10_show_alarm,
358
-
NULL, ADT7X10_STAT_T_HIGH);
359
-
static SENSOR_DEVICE_ATTR(temp1_crit_alarm, S_IRUGO, adt7x10_show_alarm,
360
-
NULL, ADT7X10_STAT_T_CRIT);
339
+
static SENSOR_DEVICE_ATTR_RO(temp1_input, adt7x10_temp, 0);
340
+
static SENSOR_DEVICE_ATTR_RW(temp1_max, adt7x10_temp, 1);
341
+
static SENSOR_DEVICE_ATTR_RW(temp1_min, adt7x10_temp, 2);
342
+
static SENSOR_DEVICE_ATTR_RW(temp1_crit, adt7x10_temp, 3);
343
+
static SENSOR_DEVICE_ATTR_RW(temp1_max_hyst, adt7x10_t_hyst, 1);
344
+
static SENSOR_DEVICE_ATTR_RO(temp1_min_hyst, adt7x10_t_hyst, 2);
345
+
static SENSOR_DEVICE_ATTR_RO(temp1_crit_hyst, adt7x10_t_hyst, 3);
346
+
static SENSOR_DEVICE_ATTR_RO(temp1_min_alarm, adt7x10_alarm,
347
+
ADT7X10_STAT_T_LOW);
348
+
static SENSOR_DEVICE_ATTR_RO(temp1_max_alarm, adt7x10_alarm,
349
+
ADT7X10_STAT_T_HIGH);
350
+
static SENSOR_DEVICE_ATTR_RO(temp1_crit_alarm, adt7x10_alarm,
351
+
ADT7X10_STAT_T_CRIT);
361
352
static DEVICE_ATTR_RO(name);
362
353
363
354
static struct attribute *adt7x10_attributes[] = {
364
355
&sensor_dev_attr_temp1_input.dev_attr.attr,
365
356
&sensor_dev_attr_temp1_max.dev_attr.attr,
366
357
&sensor_dev_attr_temp1_min.dev_attr.attr,
367
358
&sensor_dev_attr_temp1_crit.dev_attr.attr,
368
359
&sensor_dev_attr_temp1_max_hyst.dev_attr.attr,
369
360
&sensor_dev_attr_temp1_min_hyst.dev_attr.attr,
370
361
&sensor_dev_attr_temp1_crit_hyst.dev_attr.attr,