Source
229
229
230
230
show_in_offset(0);
231
231
show_in_offset(1);
232
232
show_in_offset(2);
233
233
show_in_offset(3);
234
234
show_in_offset(4);
235
235
show_in_offset(5);
236
236
show_in_offset(6);
237
237
238
238
/* Temperature */
239
-
static ssize_t show_temp(struct device *dev, struct device_attribute *da,
240
-
char *buf)
239
+
static ssize_t temp1_input_show(struct device *dev,
240
+
struct device_attribute *da, char *buf)
241
241
{
242
242
struct lm78_data *data = lm78_update_device(dev);
243
243
return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp));
244
244
}
245
245
246
-
static ssize_t show_temp_over(struct device *dev, struct device_attribute *da,
246
+
static ssize_t temp1_max_show(struct device *dev, struct device_attribute *da,
247
247
char *buf)
248
248
{
249
249
struct lm78_data *data = lm78_update_device(dev);
250
250
return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_over));
251
251
}
252
252
253
-
static ssize_t set_temp_over(struct device *dev, struct device_attribute *da,
254
-
const char *buf, size_t count)
253
+
static ssize_t temp1_max_store(struct device *dev,
254
+
struct device_attribute *da, const char *buf,
255
+
size_t count)
255
256
{
256
257
struct lm78_data *data = dev_get_drvdata(dev);
257
258
long val;
258
259
int err;
259
260
260
261
err = kstrtol(buf, 10, &val);
261
262
if (err)
262
263
return err;
263
264
264
265
mutex_lock(&data->update_lock);
265
266
data->temp_over = TEMP_TO_REG(val);
266
267
lm78_write_value(data, LM78_REG_TEMP_OVER, data->temp_over);
267
268
mutex_unlock(&data->update_lock);
268
269
return count;
269
270
}
270
271
271
-
static ssize_t show_temp_hyst(struct device *dev, struct device_attribute *da,
272
-
char *buf)
272
+
static ssize_t temp1_max_hyst_show(struct device *dev,
273
+
struct device_attribute *da, char *buf)
273
274
{
274
275
struct lm78_data *data = lm78_update_device(dev);
275
276
return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_hyst));
276
277
}
277
278
278
-
static ssize_t set_temp_hyst(struct device *dev, struct device_attribute *da,
279
-
const char *buf, size_t count)
279
+
static ssize_t temp1_max_hyst_store(struct device *dev,
280
+
struct device_attribute *da,
281
+
const char *buf, size_t count)
280
282
{
281
283
struct lm78_data *data = dev_get_drvdata(dev);
282
284
long val;
283
285
int err;
284
286
285
287
err = kstrtol(buf, 10, &val);
286
288
if (err)
287
289
return err;
288
290
289
291
mutex_lock(&data->update_lock);
290
292
data->temp_hyst = TEMP_TO_REG(val);
291
293
lm78_write_value(data, LM78_REG_TEMP_HYST, data->temp_hyst);
292
294
mutex_unlock(&data->update_lock);
293
295
return count;
294
296
}
295
297
296
-
static DEVICE_ATTR(temp1_input, S_IRUGO, show_temp, NULL);
297
-
static DEVICE_ATTR(temp1_max, S_IRUGO | S_IWUSR,
298
-
show_temp_over, set_temp_over);
299
-
static DEVICE_ATTR(temp1_max_hyst, S_IRUGO | S_IWUSR,
300
-
show_temp_hyst, set_temp_hyst);
298
+
static DEVICE_ATTR_RO(temp1_input);
299
+
static DEVICE_ATTR_RW(temp1_max);
300
+
static DEVICE_ATTR_RW(temp1_max_hyst);
301
301
302
302
/* 3 Fans */
303
303
static ssize_t show_fan(struct device *dev, struct device_attribute *da,
304
304
char *buf)
305
305
{
306
306
struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
307
307
struct lm78_data *data = lm78_update_device(dev);
308
308
int nr = attr->index;
309
309
return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan[nr],
310
310
DIV_FROM_REG(data->fan_div[nr])));
424
424
show_fan_offset(3);
425
425
426
426
/* Fan 3 divisor is locked in H/W */
427
427
static SENSOR_DEVICE_ATTR(fan1_div, S_IRUGO | S_IWUSR,
428
428
show_fan_div, set_fan_div, 0);
429
429
static SENSOR_DEVICE_ATTR(fan2_div, S_IRUGO | S_IWUSR,
430
430
show_fan_div, set_fan_div, 1);
431
431
static SENSOR_DEVICE_ATTR(fan3_div, S_IRUGO, show_fan_div, NULL, 2);
432
432
433
433
/* VID */
434
-
static ssize_t show_vid(struct device *dev, struct device_attribute *da,
435
-
char *buf)
434
+
static ssize_t cpu0_vid_show(struct device *dev, struct device_attribute *da,
435
+
char *buf)
436
436
{
437
437
struct lm78_data *data = lm78_update_device(dev);
438
438
return sprintf(buf, "%d\n", vid_from_reg(data->vid, 82));
439
439
}
440
-
static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid, NULL);
440
+
static DEVICE_ATTR_RO(cpu0_vid);
441
441
442
442
/* Alarms */
443
-
static ssize_t show_alarms(struct device *dev, struct device_attribute *da,
443
+
static ssize_t alarms_show(struct device *dev, struct device_attribute *da,
444
444
char *buf)
445
445
{
446
446
struct lm78_data *data = lm78_update_device(dev);
447
447
return sprintf(buf, "%u\n", data->alarms);
448
448
}
449
-
static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
449
+
static DEVICE_ATTR_RO(alarms);
450
450
451
451
static ssize_t show_alarm(struct device *dev, struct device_attribute *da,
452
452
char *buf)
453
453
{
454
454
struct lm78_data *data = lm78_update_device(dev);
455
455
int nr = to_sensor_dev_attr(da)->index;
456
456
return sprintf(buf, "%u\n", (data->alarms >> nr) & 1);
457
457
}
458
458
static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 0);
459
459
static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 1);