Source
204
204
205
205
return 5400540 / reg;
206
206
}
207
207
208
208
static ssize_t name_show(struct device *dev, struct device_attribute *devattr,
209
209
char *buf)
210
210
{
211
211
return snprintf(buf, PAGE_SIZE, "%s\n", DEVNAME);
212
212
}
213
213
214
-
static ssize_t show_temp(struct device *dev, struct device_attribute
215
-
*devattr, char *buf)
214
+
static ssize_t temp_show(struct device *dev, struct device_attribute *devattr,
215
+
char *buf)
216
216
{
217
217
struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
218
218
struct sch5627_data *data = sch5627_update_device(dev);
219
219
int val;
220
220
221
221
if (IS_ERR(data))
222
222
return PTR_ERR(data);
223
223
224
224
val = reg_to_temp(data->temp[attr->index]);
225
225
return snprintf(buf, PAGE_SIZE, "%d\n", val);
226
226
}
227
227
228
-
static ssize_t show_temp_fault(struct device *dev, struct device_attribute
229
-
*devattr, char *buf)
228
+
static ssize_t temp_fault_show(struct device *dev,
229
+
struct device_attribute *devattr, char *buf)
230
230
{
231
231
struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
232
232
struct sch5627_data *data = sch5627_update_device(dev);
233
233
234
234
if (IS_ERR(data))
235
235
return PTR_ERR(data);
236
236
237
237
return snprintf(buf, PAGE_SIZE, "%d\n", data->temp[attr->index] == 0);
238
238
}
239
239
240
-
static ssize_t show_temp_max(struct device *dev, struct device_attribute
241
-
*devattr, char *buf)
240
+
static ssize_t temp_max_show(struct device *dev,
241
+
struct device_attribute *devattr, char *buf)
242
242
{
243
243
struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
244
244
struct sch5627_data *data = dev_get_drvdata(dev);
245
245
int val;
246
246
247
247
val = reg_to_temp_limit(data->temp_max[attr->index]);
248
248
return snprintf(buf, PAGE_SIZE, "%d\n", val);
249
249
}
250
250
251
-
static ssize_t show_temp_crit(struct device *dev, struct device_attribute
252
-
*devattr, char *buf)
251
+
static ssize_t temp_crit_show(struct device *dev,
252
+
struct device_attribute *devattr, char *buf)
253
253
{
254
254
struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
255
255
struct sch5627_data *data = dev_get_drvdata(dev);
256
256
int val;
257
257
258
258
val = reg_to_temp_limit(data->temp_crit[attr->index]);
259
259
return snprintf(buf, PAGE_SIZE, "%d\n", val);
260
260
}
261
261
262
-
static ssize_t show_fan(struct device *dev, struct device_attribute
263
-
*devattr, char *buf)
262
+
static ssize_t fan_show(struct device *dev, struct device_attribute *devattr,
263
+
char *buf)
264
264
{
265
265
struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
266
266
struct sch5627_data *data = sch5627_update_device(dev);
267
267
int val;
268
268
269
269
if (IS_ERR(data))
270
270
return PTR_ERR(data);
271
271
272
272
val = reg_to_rpm(data->fan[attr->index]);
273
273
if (val < 0)
274
274
return val;
275
275
276
276
return snprintf(buf, PAGE_SIZE, "%d\n", val);
277
277
}
278
278
279
-
static ssize_t show_fan_fault(struct device *dev, struct device_attribute
280
-
*devattr, char *buf)
279
+
static ssize_t fan_fault_show(struct device *dev,
280
+
struct device_attribute *devattr, char *buf)
281
281
{
282
282
struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
283
283
struct sch5627_data *data = sch5627_update_device(dev);
284
284
285
285
if (IS_ERR(data))
286
286
return PTR_ERR(data);
287
287
288
288
return snprintf(buf, PAGE_SIZE, "%d\n",
289
289
data->fan[attr->index] == 0xffff);
290
290
}
291
291
292
-
static ssize_t show_fan_min(struct device *dev, struct device_attribute
293
-
*devattr, char *buf)
292
+
static ssize_t fan_min_show(struct device *dev,
293
+
struct device_attribute *devattr, char *buf)
294
294
{
295
295
struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
296
296
struct sch5627_data *data = dev_get_drvdata(dev);
297
297
int val = reg_to_rpm(data->fan_min[attr->index]);
298
298
if (val < 0)
299
299
return val;
300
300
301
301
return snprintf(buf, PAGE_SIZE, "%d\n", val);
302
302
}
303
303
304
-
static ssize_t show_in(struct device *dev, struct device_attribute
305
-
*devattr, char *buf)
304
+
static ssize_t in_show(struct device *dev, struct device_attribute *devattr,
305
+
char *buf)
306
306
{
307
307
struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
308
308
struct sch5627_data *data = sch5627_update_device(dev);
309
309
int val;
310
310
311
311
if (IS_ERR(data))
312
312
return PTR_ERR(data);
313
313
314
314
val = DIV_ROUND_CLOSEST(
315
315
data->in[attr->index] * SCH5627_REG_IN_FACTOR[attr->index],
316
316
10000);
317
317
return snprintf(buf, PAGE_SIZE, "%d\n", val);
318
318
}
319
319
320
-
static ssize_t show_in_label(struct device *dev, struct device_attribute
321
-
*devattr, char *buf)
320
+
static ssize_t in_label_show(struct device *dev,
321
+
struct device_attribute *devattr, char *buf)
322
322
{
323
323
struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
324
324
325
325
return snprintf(buf, PAGE_SIZE, "%s\n",
326
326
SCH5627_IN_LABELS[attr->index]);
327
327
}
328
328
329
329
static DEVICE_ATTR_RO(name);
330
-
static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, show_temp, NULL, 0);
331
-
static SENSOR_DEVICE_ATTR(temp2_input, S_IRUGO, show_temp, NULL, 1);
332
-
static SENSOR_DEVICE_ATTR(temp3_input, S_IRUGO, show_temp, NULL, 2);
333
-
static SENSOR_DEVICE_ATTR(temp4_input, S_IRUGO, show_temp, NULL, 3);
334
-
static SENSOR_DEVICE_ATTR(temp5_input, S_IRUGO, show_temp, NULL, 4);
335
-
static SENSOR_DEVICE_ATTR(temp6_input, S_IRUGO, show_temp, NULL, 5);
336
-
static SENSOR_DEVICE_ATTR(temp7_input, S_IRUGO, show_temp, NULL, 6);
337
-
static SENSOR_DEVICE_ATTR(temp8_input, S_IRUGO, show_temp, NULL, 7);
338
-
static SENSOR_DEVICE_ATTR(temp1_fault, S_IRUGO, show_temp_fault, NULL, 0);
339
-
static SENSOR_DEVICE_ATTR(temp2_fault, S_IRUGO, show_temp_fault, NULL, 1);
340
-
static SENSOR_DEVICE_ATTR(temp3_fault, S_IRUGO, show_temp_fault, NULL, 2);
341
-
static SENSOR_DEVICE_ATTR(temp4_fault, S_IRUGO, show_temp_fault, NULL, 3);
342
-
static SENSOR_DEVICE_ATTR(temp5_fault, S_IRUGO, show_temp_fault, NULL, 4);
343
-
static SENSOR_DEVICE_ATTR(temp6_fault, S_IRUGO, show_temp_fault, NULL, 5);
344
-
static SENSOR_DEVICE_ATTR(temp7_fault, S_IRUGO, show_temp_fault, NULL, 6);
345
-
static SENSOR_DEVICE_ATTR(temp8_fault, S_IRUGO, show_temp_fault, NULL, 7);
346
-
static SENSOR_DEVICE_ATTR(temp1_max, S_IRUGO, show_temp_max, NULL, 0);
347
-
static SENSOR_DEVICE_ATTR(temp2_max, S_IRUGO, show_temp_max, NULL, 1);
348
-
static SENSOR_DEVICE_ATTR(temp3_max, S_IRUGO, show_temp_max, NULL, 2);
349
-
static SENSOR_DEVICE_ATTR(temp4_max, S_IRUGO, show_temp_max, NULL, 3);
350
-
static SENSOR_DEVICE_ATTR(temp5_max, S_IRUGO, show_temp_max, NULL, 4);
351
-
static SENSOR_DEVICE_ATTR(temp6_max, S_IRUGO, show_temp_max, NULL, 5);
352
-
static SENSOR_DEVICE_ATTR(temp7_max, S_IRUGO, show_temp_max, NULL, 6);
353
-
static SENSOR_DEVICE_ATTR(temp8_max, S_IRUGO, show_temp_max, NULL, 7);
354
-
static SENSOR_DEVICE_ATTR(temp1_crit, S_IRUGO, show_temp_crit, NULL, 0);
355
-
static SENSOR_DEVICE_ATTR(temp2_crit, S_IRUGO, show_temp_crit, NULL, 1);
356
-
static SENSOR_DEVICE_ATTR(temp3_crit, S_IRUGO, show_temp_crit, NULL, 2);
357
-
static SENSOR_DEVICE_ATTR(temp4_crit, S_IRUGO, show_temp_crit, NULL, 3);
358
-
static SENSOR_DEVICE_ATTR(temp5_crit, S_IRUGO, show_temp_crit, NULL, 4);
359
-
static SENSOR_DEVICE_ATTR(temp6_crit, S_IRUGO, show_temp_crit, NULL, 5);
360
-
static SENSOR_DEVICE_ATTR(temp7_crit, S_IRUGO, show_temp_crit, NULL, 6);
361
-
static SENSOR_DEVICE_ATTR(temp8_crit, S_IRUGO, show_temp_crit, NULL, 7);
362
-
363
-
static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO, show_fan, NULL, 0);
364
-
static SENSOR_DEVICE_ATTR(fan2_input, S_IRUGO, show_fan, NULL, 1);
365
-
static SENSOR_DEVICE_ATTR(fan3_input, S_IRUGO, show_fan, NULL, 2);
366
-
static SENSOR_DEVICE_ATTR(fan4_input, S_IRUGO, show_fan, NULL, 3);
367
-
static SENSOR_DEVICE_ATTR(fan1_fault, S_IRUGO, show_fan_fault, NULL, 0);
368
-
static SENSOR_DEVICE_ATTR(fan2_fault, S_IRUGO, show_fan_fault, NULL, 1);
369
-
static SENSOR_DEVICE_ATTR(fan3_fault, S_IRUGO, show_fan_fault, NULL, 2);
370
-
static SENSOR_DEVICE_ATTR(fan4_fault, S_IRUGO, show_fan_fault, NULL, 3);
371
-
static SENSOR_DEVICE_ATTR(fan1_min, S_IRUGO, show_fan_min, NULL, 0);
372
-
static SENSOR_DEVICE_ATTR(fan2_min, S_IRUGO, show_fan_min, NULL, 1);
373
-
static SENSOR_DEVICE_ATTR(fan3_min, S_IRUGO, show_fan_min, NULL, 2);
374
-
static SENSOR_DEVICE_ATTR(fan4_min, S_IRUGO, show_fan_min, NULL, 3);
375
-
376
-
static SENSOR_DEVICE_ATTR(in0_input, S_IRUGO, show_in, NULL, 0);
377
-
static SENSOR_DEVICE_ATTR(in1_input, S_IRUGO, show_in, NULL, 1);
378
-
static SENSOR_DEVICE_ATTR(in2_input, S_IRUGO, show_in, NULL, 2);
379
-
static SENSOR_DEVICE_ATTR(in3_input, S_IRUGO, show_in, NULL, 3);
380
-
static SENSOR_DEVICE_ATTR(in4_input, S_IRUGO, show_in, NULL, 4);
381
-
static SENSOR_DEVICE_ATTR(in0_label, S_IRUGO, show_in_label, NULL, 0);
382
-
static SENSOR_DEVICE_ATTR(in1_label, S_IRUGO, show_in_label, NULL, 1);
383
-
static SENSOR_DEVICE_ATTR(in2_label, S_IRUGO, show_in_label, NULL, 2);
384
-
static SENSOR_DEVICE_ATTR(in3_label, S_IRUGO, show_in_label, NULL, 3);
330
+
static SENSOR_DEVICE_ATTR_RO(temp1_input, temp, 0);
331
+
static SENSOR_DEVICE_ATTR_RO(temp2_input, temp, 1);
332
+
static SENSOR_DEVICE_ATTR_RO(temp3_input, temp, 2);
333
+
static SENSOR_DEVICE_ATTR_RO(temp4_input, temp, 3);
334
+
static SENSOR_DEVICE_ATTR_RO(temp5_input, temp, 4);
335
+
static SENSOR_DEVICE_ATTR_RO(temp6_input, temp, 5);
336
+
static SENSOR_DEVICE_ATTR_RO(temp7_input, temp, 6);
337
+
static SENSOR_DEVICE_ATTR_RO(temp8_input, temp, 7);
338
+
static SENSOR_DEVICE_ATTR_RO(temp1_fault, temp_fault, 0);
339
+
static SENSOR_DEVICE_ATTR_RO(temp2_fault, temp_fault, 1);
340
+
static SENSOR_DEVICE_ATTR_RO(temp3_fault, temp_fault, 2);
341
+
static SENSOR_DEVICE_ATTR_RO(temp4_fault, temp_fault, 3);
342
+
static SENSOR_DEVICE_ATTR_RO(temp5_fault, temp_fault, 4);
343
+
static SENSOR_DEVICE_ATTR_RO(temp6_fault, temp_fault, 5);
344
+
static SENSOR_DEVICE_ATTR_RO(temp7_fault, temp_fault, 6);
345
+
static SENSOR_DEVICE_ATTR_RO(temp8_fault, temp_fault, 7);
346
+
static SENSOR_DEVICE_ATTR_RO(temp1_max, temp_max, 0);
347
+
static SENSOR_DEVICE_ATTR_RO(temp2_max, temp_max, 1);
348
+
static SENSOR_DEVICE_ATTR_RO(temp3_max, temp_max, 2);
349
+
static SENSOR_DEVICE_ATTR_RO(temp4_max, temp_max, 3);
350
+
static SENSOR_DEVICE_ATTR_RO(temp5_max, temp_max, 4);
351
+
static SENSOR_DEVICE_ATTR_RO(temp6_max, temp_max, 5);
352
+
static SENSOR_DEVICE_ATTR_RO(temp7_max, temp_max, 6);
353
+
static SENSOR_DEVICE_ATTR_RO(temp8_max, temp_max, 7);
354
+
static SENSOR_DEVICE_ATTR_RO(temp1_crit, temp_crit, 0);
355
+
static SENSOR_DEVICE_ATTR_RO(temp2_crit, temp_crit, 1);
356
+
static SENSOR_DEVICE_ATTR_RO(temp3_crit, temp_crit, 2);
357
+
static SENSOR_DEVICE_ATTR_RO(temp4_crit, temp_crit, 3);
358
+
static SENSOR_DEVICE_ATTR_RO(temp5_crit, temp_crit, 4);
359
+
static SENSOR_DEVICE_ATTR_RO(temp6_crit, temp_crit, 5);
360
+
static SENSOR_DEVICE_ATTR_RO(temp7_crit, temp_crit, 6);
361
+
static SENSOR_DEVICE_ATTR_RO(temp8_crit, temp_crit, 7);
362
+
363
+
static SENSOR_DEVICE_ATTR_RO(fan1_input, fan, 0);
364
+
static SENSOR_DEVICE_ATTR_RO(fan2_input, fan, 1);
365
+
static SENSOR_DEVICE_ATTR_RO(fan3_input, fan, 2);
366
+
static SENSOR_DEVICE_ATTR_RO(fan4_input, fan, 3);
367
+
static SENSOR_DEVICE_ATTR_RO(fan1_fault, fan_fault, 0);
368
+
static SENSOR_DEVICE_ATTR_RO(fan2_fault, fan_fault, 1);
369
+
static SENSOR_DEVICE_ATTR_RO(fan3_fault, fan_fault, 2);
370
+
static SENSOR_DEVICE_ATTR_RO(fan4_fault, fan_fault, 3);
371
+
static SENSOR_DEVICE_ATTR_RO(fan1_min, fan_min, 0);
372
+
static SENSOR_DEVICE_ATTR_RO(fan2_min, fan_min, 1);
373
+
static SENSOR_DEVICE_ATTR_RO(fan3_min, fan_min, 2);
374
+
static SENSOR_DEVICE_ATTR_RO(fan4_min, fan_min, 3);
375
+
376
+
static SENSOR_DEVICE_ATTR_RO(in0_input, in, 0);
377
+
static SENSOR_DEVICE_ATTR_RO(in1_input, in, 1);
378
+
static SENSOR_DEVICE_ATTR_RO(in2_input, in, 2);
379
+
static SENSOR_DEVICE_ATTR_RO(in3_input, in, 3);
380
+
static SENSOR_DEVICE_ATTR_RO(in4_input, in, 4);
381
+
static SENSOR_DEVICE_ATTR_RO(in0_label, in_label, 0);
382
+
static SENSOR_DEVICE_ATTR_RO(in1_label, in_label, 1);
383
+
static SENSOR_DEVICE_ATTR_RO(in2_label, in_label, 2);
384
+
static SENSOR_DEVICE_ATTR_RO(in3_label, in_label, 3);
385
385
386
386
static struct attribute *sch5627_attributes[] = {
387
387
&dev_attr_name.attr,
388
388
389
389
&sensor_dev_attr_temp1_input.dev_attr.attr,
390
390
&sensor_dev_attr_temp2_input.dev_attr.attr,
391
391
&sensor_dev_attr_temp3_input.dev_attr.attr,
392
392
&sensor_dev_attr_temp4_input.dev_attr.attr,
393
393
&sensor_dev_attr_temp5_input.dev_attr.attr,
394
394
&sensor_dev_attr_temp6_input.dev_attr.attr,