Source
204
204
data->last_updated = jiffies;
205
205
data->valid = true;
206
206
}
207
207
ret = 0;
208
208
abort:
209
209
mutex_unlock(&data->update_lock);
210
210
211
211
return ret;
212
212
}
213
213
214
-
static ssize_t show_temp(struct device *dev, struct device_attribute *attr,
214
+
static ssize_t temp_show(struct device *dev, struct device_attribute *attr,
215
215
char *buf)
216
216
{
217
217
struct lm95234_data *data = dev_get_drvdata(dev);
218
218
int index = to_sensor_dev_attr(attr)->index;
219
219
int ret = lm95234_update_device(data);
220
220
221
221
if (ret)
222
222
return ret;
223
223
224
224
return sprintf(buf, "%d\n",
225
225
DIV_ROUND_CLOSEST(data->temp[index] * 125, 32));
226
226
}
227
227
228
-
static ssize_t show_alarm(struct device *dev,
229
-
struct device_attribute *attr, char *buf)
228
+
static ssize_t alarm_show(struct device *dev, struct device_attribute *attr,
229
+
char *buf)
230
230
{
231
231
struct lm95234_data *data = dev_get_drvdata(dev);
232
232
u32 mask = to_sensor_dev_attr(attr)->index;
233
233
int ret = lm95234_update_device(data);
234
234
235
235
if (ret)
236
236
return ret;
237
237
238
238
return sprintf(buf, "%u", !!(data->status & mask));
239
239
}
240
240
241
-
static ssize_t show_type(struct device *dev, struct device_attribute *attr,
241
+
static ssize_t type_show(struct device *dev, struct device_attribute *attr,
242
242
char *buf)
243
243
{
244
244
struct lm95234_data *data = dev_get_drvdata(dev);
245
245
u8 mask = to_sensor_dev_attr(attr)->index;
246
246
int ret = lm95234_update_device(data);
247
247
248
248
if (ret)
249
249
return ret;
250
250
251
251
return sprintf(buf, data->sensor_type & mask ? "1\n" : "2\n");
252
252
}
253
253
254
-
static ssize_t set_type(struct device *dev, struct device_attribute *attr,
255
-
const char *buf, size_t count)
254
+
static ssize_t type_store(struct device *dev, struct device_attribute *attr,
255
+
const char *buf, size_t count)
256
256
{
257
257
struct lm95234_data *data = dev_get_drvdata(dev);
258
258
unsigned long val;
259
259
u8 mask = to_sensor_dev_attr(attr)->index;
260
260
int ret = lm95234_update_device(data);
261
261
262
262
if (ret)
263
263
return ret;
264
264
265
265
ret = kstrtoul(buf, 10, &val);
275
275
else
276
276
data->sensor_type &= ~mask;
277
277
data->valid = false;
278
278
i2c_smbus_write_byte_data(data->client, LM95234_REG_REM_MODEL,
279
279
data->sensor_type);
280
280
mutex_unlock(&data->update_lock);
281
281
282
282
return count;
283
283
}
284
284
285
-
static ssize_t show_tcrit2(struct device *dev, struct device_attribute *attr,
285
+
static ssize_t tcrit2_show(struct device *dev, struct device_attribute *attr,
286
286
char *buf)
287
287
{
288
288
struct lm95234_data *data = dev_get_drvdata(dev);
289
289
int index = to_sensor_dev_attr(attr)->index;
290
290
int ret = lm95234_update_device(data);
291
291
292
292
if (ret)
293
293
return ret;
294
294
295
295
return sprintf(buf, "%u", data->tcrit2[index] * 1000);
296
296
}
297
297
298
-
static ssize_t set_tcrit2(struct device *dev, struct device_attribute *attr,
299
-
const char *buf, size_t count)
298
+
static ssize_t tcrit2_store(struct device *dev, struct device_attribute *attr,
299
+
const char *buf, size_t count)
300
300
{
301
301
struct lm95234_data *data = dev_get_drvdata(dev);
302
302
int index = to_sensor_dev_attr(attr)->index;
303
303
long val;
304
304
int ret = lm95234_update_device(data);
305
305
306
306
if (ret)
307
307
return ret;
308
308
309
309
ret = kstrtol(buf, 10, &val);
313
313
val = clamp_val(DIV_ROUND_CLOSEST(val, 1000), 0, index ? 255 : 127);
314
314
315
315
mutex_lock(&data->update_lock);
316
316
data->tcrit2[index] = val;
317
317
i2c_smbus_write_byte_data(data->client, LM95234_REG_TCRIT2(index), val);
318
318
mutex_unlock(&data->update_lock);
319
319
320
320
return count;
321
321
}
322
322
323
-
static ssize_t show_tcrit2_hyst(struct device *dev,
323
+
static ssize_t tcrit2_hyst_show(struct device *dev,
324
324
struct device_attribute *attr, char *buf)
325
325
{
326
326
struct lm95234_data *data = dev_get_drvdata(dev);
327
327
int index = to_sensor_dev_attr(attr)->index;
328
328
int ret = lm95234_update_device(data);
329
329
330
330
if (ret)
331
331
return ret;
332
332
333
333
/* Result can be negative, so be careful with unsigned operands */
334
334
return sprintf(buf, "%d",
335
335
((int)data->tcrit2[index] - (int)data->thyst) * 1000);
336
336
}
337
337
338
-
static ssize_t show_tcrit1(struct device *dev, struct device_attribute *attr,
338
+
static ssize_t tcrit1_show(struct device *dev, struct device_attribute *attr,
339
339
char *buf)
340
340
{
341
341
struct lm95234_data *data = dev_get_drvdata(dev);
342
342
int index = to_sensor_dev_attr(attr)->index;
343
343
344
344
return sprintf(buf, "%u", data->tcrit1[index] * 1000);
345
345
}
346
346
347
-
static ssize_t set_tcrit1(struct device *dev, struct device_attribute *attr,
348
-
const char *buf, size_t count)
347
+
static ssize_t tcrit1_store(struct device *dev, struct device_attribute *attr,
348
+
const char *buf, size_t count)
349
349
{
350
350
struct lm95234_data *data = dev_get_drvdata(dev);
351
351
int index = to_sensor_dev_attr(attr)->index;
352
352
int ret = lm95234_update_device(data);
353
353
long val;
354
354
355
355
if (ret)
356
356
return ret;
357
357
358
358
ret = kstrtol(buf, 10, &val);
362
362
val = clamp_val(DIV_ROUND_CLOSEST(val, 1000), 0, 255);
363
363
364
364
mutex_lock(&data->update_lock);
365
365
data->tcrit1[index] = val;
366
366
i2c_smbus_write_byte_data(data->client, LM95234_REG_TCRIT1(index), val);
367
367
mutex_unlock(&data->update_lock);
368
368
369
369
return count;
370
370
}
371
371
372
-
static ssize_t show_tcrit1_hyst(struct device *dev,
372
+
static ssize_t tcrit1_hyst_show(struct device *dev,
373
373
struct device_attribute *attr, char *buf)
374
374
{
375
375
struct lm95234_data *data = dev_get_drvdata(dev);
376
376
int index = to_sensor_dev_attr(attr)->index;
377
377
int ret = lm95234_update_device(data);
378
378
379
379
if (ret)
380
380
return ret;
381
381
382
382
/* Result can be negative, so be careful with unsigned operands */
383
383
return sprintf(buf, "%d",
384
384
((int)data->tcrit1[index] - (int)data->thyst) * 1000);
385
385
}
386
386
387
-
static ssize_t set_tcrit1_hyst(struct device *dev,
388
-
struct device_attribute *attr,
389
-
const char *buf, size_t count)
387
+
static ssize_t tcrit1_hyst_store(struct device *dev,
388
+
struct device_attribute *attr,
389
+
const char *buf, size_t count)
390
390
{
391
391
struct lm95234_data *data = dev_get_drvdata(dev);
392
392
int index = to_sensor_dev_attr(attr)->index;
393
393
int ret = lm95234_update_device(data);
394
394
long val;
395
395
396
396
if (ret)
397
397
return ret;
398
398
399
399
ret = kstrtol(buf, 10, &val);
404
404
val = clamp_val((int)data->tcrit1[index] - val, 0, 31);
405
405
406
406
mutex_lock(&data->update_lock);
407
407
data->thyst = val;
408
408
i2c_smbus_write_byte_data(data->client, LM95234_REG_TCRIT_HYST, val);
409
409
mutex_unlock(&data->update_lock);
410
410
411
411
return count;
412
412
}
413
413
414
-
static ssize_t show_offset(struct device *dev, struct device_attribute *attr,
414
+
static ssize_t offset_show(struct device *dev, struct device_attribute *attr,
415
415
char *buf)
416
416
{
417
417
struct lm95234_data *data = dev_get_drvdata(dev);
418
418
int index = to_sensor_dev_attr(attr)->index;
419
419
int ret = lm95234_update_device(data);
420
420
421
421
if (ret)
422
422
return ret;
423
423
424
424
return sprintf(buf, "%d", data->toffset[index] * 500);
425
425
}
426
426
427
-
static ssize_t set_offset(struct device *dev, struct device_attribute *attr,
428
-
const char *buf, size_t count)
427
+
static ssize_t offset_store(struct device *dev, struct device_attribute *attr,
428
+
const char *buf, size_t count)
429
429
{
430
430
struct lm95234_data *data = dev_get_drvdata(dev);
431
431
int index = to_sensor_dev_attr(attr)->index;
432
432
int ret = lm95234_update_device(data);
433
433
long val;
434
434
435
435
if (ret)
436
436
return ret;
437
437
438
438
ret = kstrtol(buf, 10, &val);
485
485
}
486
486
487
487
mutex_lock(&data->update_lock);
488
488
data->interval = msecs_to_jiffies(update_intervals[regval]);
489
489
i2c_smbus_write_byte_data(data->client, LM95234_REG_CONVRATE, regval);
490
490
mutex_unlock(&data->update_lock);
491
491
492
492
return count;
493
493
}
494
494
495
-
static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, show_temp, NULL, 0);
496
-
static SENSOR_DEVICE_ATTR(temp2_input, S_IRUGO, show_temp, NULL, 1);
497
-
static SENSOR_DEVICE_ATTR(temp3_input, S_IRUGO, show_temp, NULL, 2);
498
-
static SENSOR_DEVICE_ATTR(temp4_input, S_IRUGO, show_temp, NULL, 3);
499
-
static SENSOR_DEVICE_ATTR(temp5_input, S_IRUGO, show_temp, NULL, 4);
500
-
501
-
static SENSOR_DEVICE_ATTR(temp2_fault, S_IRUGO, show_alarm, NULL,
502
-
BIT(0) | BIT(1));
503
-
static SENSOR_DEVICE_ATTR(temp3_fault, S_IRUGO, show_alarm, NULL,
504
-
BIT(2) | BIT(3));
505
-
static SENSOR_DEVICE_ATTR(temp4_fault, S_IRUGO, show_alarm, NULL,
506
-
BIT(4) | BIT(5));
507
-
static SENSOR_DEVICE_ATTR(temp5_fault, S_IRUGO, show_alarm, NULL,
508
-
BIT(6) | BIT(7));
509
-
510
-
static SENSOR_DEVICE_ATTR(temp2_type, S_IWUSR | S_IRUGO, show_type, set_type,
511
-
BIT(1));
512
-
static SENSOR_DEVICE_ATTR(temp3_type, S_IWUSR | S_IRUGO, show_type, set_type,
513
-
BIT(2));
514
-
static SENSOR_DEVICE_ATTR(temp4_type, S_IWUSR | S_IRUGO, show_type, set_type,
515
-
BIT(3));
516
-
static SENSOR_DEVICE_ATTR(temp5_type, S_IWUSR | S_IRUGO, show_type, set_type,
517
-
BIT(4));
518
-
519
-
static SENSOR_DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO, show_tcrit1,
520
-
set_tcrit1, 0);
521
-
static SENSOR_DEVICE_ATTR(temp2_max, S_IWUSR | S_IRUGO, show_tcrit2,
522
-
set_tcrit2, 0);
523
-
static SENSOR_DEVICE_ATTR(temp3_max, S_IWUSR | S_IRUGO, show_tcrit2,
524
-
set_tcrit2, 1);
525
-
static SENSOR_DEVICE_ATTR(temp4_max, S_IWUSR | S_IRUGO, show_tcrit1,
526
-
set_tcrit1, 3);
527
-
static SENSOR_DEVICE_ATTR(temp5_max, S_IWUSR | S_IRUGO, show_tcrit1,
528
-
set_tcrit1, 4);
529
-
530
-
static SENSOR_DEVICE_ATTR(temp1_max_hyst, S_IWUSR | S_IRUGO, show_tcrit1_hyst,
531
-
set_tcrit1_hyst, 0);
532
-
static SENSOR_DEVICE_ATTR(temp2_max_hyst, S_IRUGO, show_tcrit2_hyst, NULL, 0);
533
-
static SENSOR_DEVICE_ATTR(temp3_max_hyst, S_IRUGO, show_tcrit2_hyst, NULL, 1);
534
-
static SENSOR_DEVICE_ATTR(temp4_max_hyst, S_IRUGO, show_tcrit1_hyst, NULL, 3);
535
-
static SENSOR_DEVICE_ATTR(temp5_max_hyst, S_IRUGO, show_tcrit1_hyst, NULL, 4);
536
-
537
-
static SENSOR_DEVICE_ATTR(temp1_max_alarm, S_IRUGO, show_alarm, NULL,
538
-
BIT(0 + 8));
539
-
static SENSOR_DEVICE_ATTR(temp2_max_alarm, S_IRUGO, show_alarm, NULL,
540
-
BIT(1 + 16));
541
-
static SENSOR_DEVICE_ATTR(temp3_max_alarm, S_IRUGO, show_alarm, NULL,
542
-
BIT(2 + 16));
543
-
static SENSOR_DEVICE_ATTR(temp4_max_alarm, S_IRUGO, show_alarm, NULL,
544
-
BIT(3 + 8));
545
-
static SENSOR_DEVICE_ATTR(temp5_max_alarm, S_IRUGO, show_alarm, NULL,
546
-
BIT(4 + 8));
547
-
548
-
static SENSOR_DEVICE_ATTR(temp2_crit, S_IWUSR | S_IRUGO, show_tcrit1,
549
-
set_tcrit1, 1);
550
-
static SENSOR_DEVICE_ATTR(temp3_crit, S_IWUSR | S_IRUGO, show_tcrit1,
551
-
set_tcrit1, 2);
552
-
553
-
static SENSOR_DEVICE_ATTR(temp2_crit_hyst, S_IRUGO, show_tcrit1_hyst, NULL, 1);
554
-
static SENSOR_DEVICE_ATTR(temp3_crit_hyst, S_IRUGO, show_tcrit1_hyst, NULL, 2);
555
-
556
-
static SENSOR_DEVICE_ATTR(temp2_crit_alarm, S_IRUGO, show_alarm, NULL,
557
-
BIT(1 + 8));
558
-
static SENSOR_DEVICE_ATTR(temp3_crit_alarm, S_IRUGO, show_alarm, NULL,
559
-
BIT(2 + 8));
560
-
561
-
static SENSOR_DEVICE_ATTR(temp2_offset, S_IWUSR | S_IRUGO, show_offset,
562
-
set_offset, 0);
563
-
static SENSOR_DEVICE_ATTR(temp3_offset, S_IWUSR | S_IRUGO, show_offset,
564
-
set_offset, 1);
565
-
static SENSOR_DEVICE_ATTR(temp4_offset, S_IWUSR | S_IRUGO, show_offset,
566
-
set_offset, 2);
567
-
static SENSOR_DEVICE_ATTR(temp5_offset, S_IWUSR | S_IRUGO, show_offset,
568
-
set_offset, 3);
495
+
static SENSOR_DEVICE_ATTR_RO(temp1_input, temp, 0);
496
+
static SENSOR_DEVICE_ATTR_RO(temp2_input, temp, 1);
497
+
static SENSOR_DEVICE_ATTR_RO(temp3_input, temp, 2);
498
+
static SENSOR_DEVICE_ATTR_RO(temp4_input, temp, 3);
499
+
static SENSOR_DEVICE_ATTR_RO(temp5_input, temp, 4);
500
+
501
+
static SENSOR_DEVICE_ATTR_RO(temp2_fault, alarm, BIT(0) | BIT(1));
502
+
static SENSOR_DEVICE_ATTR_RO(temp3_fault, alarm, BIT(2) | BIT(3));
503
+
static SENSOR_DEVICE_ATTR_RO(temp4_fault, alarm, BIT(4) | BIT(5));
504
+
static SENSOR_DEVICE_ATTR_RO(temp5_fault, alarm, BIT(6) | BIT(7));
505
+
506
+
static SENSOR_DEVICE_ATTR_RW(temp2_type, type, BIT(1));
507
+
static SENSOR_DEVICE_ATTR_RW(temp3_type, type, BIT(2));
508
+
static SENSOR_DEVICE_ATTR_RW(temp4_type, type, BIT(3));
509
+
static SENSOR_DEVICE_ATTR_RW(temp5_type, type, BIT(4));
510
+
511
+
static SENSOR_DEVICE_ATTR_RW(temp1_max, tcrit1, 0);
512
+
static SENSOR_DEVICE_ATTR_RW(temp2_max, tcrit2, 0);
513
+
static SENSOR_DEVICE_ATTR_RW(temp3_max, tcrit2, 1);
514
+
static SENSOR_DEVICE_ATTR_RW(temp4_max, tcrit1, 3);
515
+
static SENSOR_DEVICE_ATTR_RW(temp5_max, tcrit1, 4);
516
+
517
+
static SENSOR_DEVICE_ATTR_RW(temp1_max_hyst, tcrit1_hyst, 0);
518
+
static SENSOR_DEVICE_ATTR_RO(temp2_max_hyst, tcrit2_hyst, 0);
519
+
static SENSOR_DEVICE_ATTR_RO(temp3_max_hyst, tcrit2_hyst, 1);
520
+
static SENSOR_DEVICE_ATTR_RO(temp4_max_hyst, tcrit1_hyst, 3);
521
+
static SENSOR_DEVICE_ATTR_RO(temp5_max_hyst, tcrit1_hyst, 4);
522
+
523
+
static SENSOR_DEVICE_ATTR_RO(temp1_max_alarm, alarm, BIT(0 + 8));
524
+
static SENSOR_DEVICE_ATTR_RO(temp2_max_alarm, alarm, BIT(1 + 16));
525
+
static SENSOR_DEVICE_ATTR_RO(temp3_max_alarm, alarm, BIT(2 + 16));
526
+
static SENSOR_DEVICE_ATTR_RO(temp4_max_alarm, alarm, BIT(3 + 8));
527
+
static SENSOR_DEVICE_ATTR_RO(temp5_max_alarm, alarm, BIT(4 + 8));
528
+
529
+
static SENSOR_DEVICE_ATTR_RW(temp2_crit, tcrit1, 1);
530
+
static SENSOR_DEVICE_ATTR_RW(temp3_crit, tcrit1, 2);
531
+
532
+
static SENSOR_DEVICE_ATTR_RO(temp2_crit_hyst, tcrit1_hyst, 1);
533
+
static SENSOR_DEVICE_ATTR_RO(temp3_crit_hyst, tcrit1_hyst, 2);
534
+
535
+
static SENSOR_DEVICE_ATTR_RO(temp2_crit_alarm, alarm, BIT(1 + 8));
536
+
static SENSOR_DEVICE_ATTR_RO(temp3_crit_alarm, alarm, BIT(2 + 8));
537
+
538
+
static SENSOR_DEVICE_ATTR_RW(temp2_offset, offset, 0);
539
+
static SENSOR_DEVICE_ATTR_RW(temp3_offset, offset, 1);
540
+
static SENSOR_DEVICE_ATTR_RW(temp4_offset, offset, 2);
541
+
static SENSOR_DEVICE_ATTR_RW(temp5_offset, offset, 3);
569
542
570
543
static DEVICE_ATTR_RW(update_interval);
571
544
572
545
static struct attribute *lm95234_common_attrs[] = {
573
546
&sensor_dev_attr_temp1_input.dev_attr.attr,
574
547
&sensor_dev_attr_temp2_input.dev_attr.attr,
575
548
&sensor_dev_attr_temp3_input.dev_attr.attr,
576
549
&sensor_dev_attr_temp2_fault.dev_attr.attr,
577
550
&sensor_dev_attr_temp3_fault.dev_attr.attr,
578
551
&sensor_dev_attr_temp2_type.dev_attr.attr,