3 * Maxim MAX16065/MAX16066 12-Channel/8-Channel, Flash-Configurable
4 * System Managers with Nonvolatile Fault Registers
5 * Maxim MAX16067/MAX16068 6-Channel, Flash-Configurable System Managers
6 * with Nonvolatile Fault Registers
7 * Maxim MAX16070/MAX16071 12-Channel/8-Channel, Flash-Configurable System
8 * Monitors with Nonvolatile Fault Registers
10 * Copyright (C) 2011 Ericsson AB.
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; version 2 of the License.
17 #include <linux/kernel.h>
18 #include <linux/module.h>
19 #include <linux/init.h>
20 #include <linux/err.h>
21 #include <linux/slab.h>
22 #include <linux/i2c.h>
23 #include <linux/hwmon.h>
24 #include <linux/hwmon-sysfs.h>
25 #include <linux/jiffies.h>
27 enum chips
{ max16065
, max16066
, max16067
, max16068
, max16070
, max16071
};
32 #define MAX16065_ADC(x) ((x) * 2)
34 #define MAX16065_CURR_SENSE 0x18
35 #define MAX16065_CSP_ADC 0x19
36 #define MAX16065_FAULT(x) (0x1b + (x))
37 #define MAX16065_SCALE(x) (0x43 + (x))
38 #define MAX16065_CURR_CONTROL 0x47
39 #define MAX16065_LIMIT(l, x) (0x48 + (l) + (x) * 3) /*
47 #define MAX16065_SW_ENABLE 0x73
49 #define MAX16065_WARNING_OV (1 << 3) /* Set if secondary threshold is OV
52 #define MAX16065_CURR_ENABLE (1 << 0)
54 #define MAX16065_NUM_LIMIT 3
55 #define MAX16065_NUM_ADC 12 /* maximum number of ADC channels */
57 static const int max16065_num_adc
[] = {
66 static const bool max16065_have_secondary
[] = {
75 static const bool max16065_have_current
[] = {
84 struct max16065_data
{
86 struct device
*hwmon_dev
;
87 struct mutex update_lock
;
89 unsigned long last_updated
; /* in jiffies */
93 /* limits are in mV */
94 int limit
[MAX16065_NUM_LIMIT
][MAX16065_NUM_ADC
];
95 int range
[MAX16065_NUM_ADC
+ 1];/* voltage range */
96 int adc
[MAX16065_NUM_ADC
+ 1]; /* adc values (raw) including csp_adc */
101 static const int max16065_adc_range
[] = { 5560, 2780, 1390, 0 };
102 static const int max16065_csp_adc_range
[] = { 7000, 14000 };
104 /* ADC registers have 10 bit resolution. */
105 static inline int ADC_TO_MV(int adc
, int range
)
107 return (adc
* range
) / 1024;
111 * Limit registers have 8 bit resolution and match upper 8 bits of ADC
114 static inline int LIMIT_TO_MV(int limit
, int range
)
116 return limit
* range
/ 256;
119 static inline int MV_TO_LIMIT(int mv
, int range
)
121 return clamp_val(DIV_ROUND_CLOSEST(mv
* 256, range
), 0, 255);
124 static inline int ADC_TO_CURR(int adc
, int gain
)
126 return adc
* 1400000 / (gain
* 255);
130 * max16065_read_adc()
132 * Read 16 bit value from <reg>, <reg+1>.
133 * Upper 8 bits are in <reg>, lower 2 bits are in bits 7:6 of <reg+1>.
135 static int max16065_read_adc(struct i2c_client
*client
, int reg
)
139 rv
= i2c_smbus_read_word_swapped(client
, reg
);
140 if (unlikely(rv
< 0))
145 static struct max16065_data
*max16065_update_device(struct device
*dev
)
147 struct i2c_client
*client
= to_i2c_client(dev
);
148 struct max16065_data
*data
= i2c_get_clientdata(client
);
150 mutex_lock(&data
->update_lock
);
151 if (time_after(jiffies
, data
->last_updated
+ HZ
) || !data
->valid
) {
154 for (i
= 0; i
< data
->num_adc
; i
++)
156 = max16065_read_adc(client
, MAX16065_ADC(i
));
158 if (data
->have_current
) {
159 data
->adc
[MAX16065_NUM_ADC
]
160 = max16065_read_adc(client
, MAX16065_CSP_ADC
);
162 = i2c_smbus_read_byte_data(client
,
163 MAX16065_CURR_SENSE
);
166 for (i
= 0; i
< DIV_ROUND_UP(data
->num_adc
, 8); i
++)
168 = i2c_smbus_read_byte_data(client
, MAX16065_FAULT(i
));
170 data
->last_updated
= jiffies
;
173 mutex_unlock(&data
->update_lock
);
177 static ssize_t
max16065_show_alarm(struct device
*dev
,
178 struct device_attribute
*da
, char *buf
)
180 struct sensor_device_attribute_2
*attr2
= to_sensor_dev_attr_2(da
);
181 struct max16065_data
*data
= max16065_update_device(dev
);
182 int val
= data
->fault
[attr2
->nr
];
187 val
&= (1 << attr2
->index
);
189 i2c_smbus_write_byte_data(to_i2c_client(dev
),
190 MAX16065_FAULT(attr2
->nr
), val
);
192 return snprintf(buf
, PAGE_SIZE
, "%d\n", !!val
);
195 static ssize_t
max16065_show_input(struct device
*dev
,
196 struct device_attribute
*da
, char *buf
)
198 struct sensor_device_attribute
*attr
= to_sensor_dev_attr(da
);
199 struct max16065_data
*data
= max16065_update_device(dev
);
200 int adc
= data
->adc
[attr
->index
];
202 if (unlikely(adc
< 0))
205 return snprintf(buf
, PAGE_SIZE
, "%d\n",
206 ADC_TO_MV(adc
, data
->range
[attr
->index
]));
209 static ssize_t
max16065_show_current(struct device
*dev
,
210 struct device_attribute
*da
, char *buf
)
212 struct max16065_data
*data
= max16065_update_device(dev
);
214 if (unlikely(data
->curr_sense
< 0))
215 return data
->curr_sense
;
217 return snprintf(buf
, PAGE_SIZE
, "%d\n",
218 ADC_TO_CURR(data
->curr_sense
, data
->curr_gain
));
221 static ssize_t
max16065_set_limit(struct device
*dev
,
222 struct device_attribute
*da
,
223 const char *buf
, size_t count
)
225 struct sensor_device_attribute_2
*attr2
= to_sensor_dev_attr_2(da
);
226 struct i2c_client
*client
= to_i2c_client(dev
);
227 struct max16065_data
*data
= i2c_get_clientdata(client
);
232 err
= kstrtoul(buf
, 10, &val
);
233 if (unlikely(err
< 0))
236 limit
= MV_TO_LIMIT(val
, data
->range
[attr2
->index
]);
238 mutex_lock(&data
->update_lock
);
239 data
->limit
[attr2
->nr
][attr2
->index
]
240 = LIMIT_TO_MV(limit
, data
->range
[attr2
->index
]);
241 i2c_smbus_write_byte_data(client
,
242 MAX16065_LIMIT(attr2
->nr
, attr2
->index
),
244 mutex_unlock(&data
->update_lock
);
249 static ssize_t
max16065_show_limit(struct device
*dev
,
250 struct device_attribute
*da
, char *buf
)
252 struct sensor_device_attribute_2
*attr2
= to_sensor_dev_attr_2(da
);
253 struct i2c_client
*client
= to_i2c_client(dev
);
254 struct max16065_data
*data
= i2c_get_clientdata(client
);
256 return snprintf(buf
, PAGE_SIZE
, "%d\n",
257 data
->limit
[attr2
->nr
][attr2
->index
]);
260 /* Construct a sensor_device_attribute structure for each register */
263 static SENSOR_DEVICE_ATTR(in0_input
, S_IRUGO
, max16065_show_input
, NULL
, 0);
264 static SENSOR_DEVICE_ATTR(in1_input
, S_IRUGO
, max16065_show_input
, NULL
, 1);
265 static SENSOR_DEVICE_ATTR(in2_input
, S_IRUGO
, max16065_show_input
, NULL
, 2);
266 static SENSOR_DEVICE_ATTR(in3_input
, S_IRUGO
, max16065_show_input
, NULL
, 3);
267 static SENSOR_DEVICE_ATTR(in4_input
, S_IRUGO
, max16065_show_input
, NULL
, 4);
268 static SENSOR_DEVICE_ATTR(in5_input
, S_IRUGO
, max16065_show_input
, NULL
, 5);
269 static SENSOR_DEVICE_ATTR(in6_input
, S_IRUGO
, max16065_show_input
, NULL
, 6);
270 static SENSOR_DEVICE_ATTR(in7_input
, S_IRUGO
, max16065_show_input
, NULL
, 7);
271 static SENSOR_DEVICE_ATTR(in8_input
, S_IRUGO
, max16065_show_input
, NULL
, 8);
272 static SENSOR_DEVICE_ATTR(in9_input
, S_IRUGO
, max16065_show_input
, NULL
, 9);
273 static SENSOR_DEVICE_ATTR(in10_input
, S_IRUGO
, max16065_show_input
, NULL
, 10);
274 static SENSOR_DEVICE_ATTR(in11_input
, S_IRUGO
, max16065_show_input
, NULL
, 11);
275 static SENSOR_DEVICE_ATTR(in12_input
, S_IRUGO
, max16065_show_input
, NULL
, 12);
277 /* Input voltages lcrit */
278 static SENSOR_DEVICE_ATTR_2(in0_lcrit
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
279 max16065_set_limit
, 2, 0);
280 static SENSOR_DEVICE_ATTR_2(in1_lcrit
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
281 max16065_set_limit
, 2, 1);
282 static SENSOR_DEVICE_ATTR_2(in2_lcrit
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
283 max16065_set_limit
, 2, 2);
284 static SENSOR_DEVICE_ATTR_2(in3_lcrit
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
285 max16065_set_limit
, 2, 3);
286 static SENSOR_DEVICE_ATTR_2(in4_lcrit
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
287 max16065_set_limit
, 2, 4);
288 static SENSOR_DEVICE_ATTR_2(in5_lcrit
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
289 max16065_set_limit
, 2, 5);
290 static SENSOR_DEVICE_ATTR_2(in6_lcrit
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
291 max16065_set_limit
, 2, 6);
292 static SENSOR_DEVICE_ATTR_2(in7_lcrit
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
293 max16065_set_limit
, 2, 7);
294 static SENSOR_DEVICE_ATTR_2(in8_lcrit
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
295 max16065_set_limit
, 2, 8);
296 static SENSOR_DEVICE_ATTR_2(in9_lcrit
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
297 max16065_set_limit
, 2, 9);
298 static SENSOR_DEVICE_ATTR_2(in10_lcrit
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
299 max16065_set_limit
, 2, 10);
300 static SENSOR_DEVICE_ATTR_2(in11_lcrit
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
301 max16065_set_limit
, 2, 11);
303 /* Input voltages crit */
304 static SENSOR_DEVICE_ATTR_2(in0_crit
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
305 max16065_set_limit
, 1, 0);
306 static SENSOR_DEVICE_ATTR_2(in1_crit
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
307 max16065_set_limit
, 1, 1);
308 static SENSOR_DEVICE_ATTR_2(in2_crit
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
309 max16065_set_limit
, 1, 2);
310 static SENSOR_DEVICE_ATTR_2(in3_crit
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
311 max16065_set_limit
, 1, 3);
312 static SENSOR_DEVICE_ATTR_2(in4_crit
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
313 max16065_set_limit
, 1, 4);
314 static SENSOR_DEVICE_ATTR_2(in5_crit
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
315 max16065_set_limit
, 1, 5);
316 static SENSOR_DEVICE_ATTR_2(in6_crit
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
317 max16065_set_limit
, 1, 6);
318 static SENSOR_DEVICE_ATTR_2(in7_crit
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
319 max16065_set_limit
, 1, 7);
320 static SENSOR_DEVICE_ATTR_2(in8_crit
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
321 max16065_set_limit
, 1, 8);
322 static SENSOR_DEVICE_ATTR_2(in9_crit
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
323 max16065_set_limit
, 1, 9);
324 static SENSOR_DEVICE_ATTR_2(in10_crit
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
325 max16065_set_limit
, 1, 10);
326 static SENSOR_DEVICE_ATTR_2(in11_crit
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
327 max16065_set_limit
, 1, 11);
329 /* Input voltages min */
330 static SENSOR_DEVICE_ATTR_2(in0_min
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
331 max16065_set_limit
, 0, 0);
332 static SENSOR_DEVICE_ATTR_2(in1_min
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
333 max16065_set_limit
, 0, 1);
334 static SENSOR_DEVICE_ATTR_2(in2_min
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
335 max16065_set_limit
, 0, 2);
336 static SENSOR_DEVICE_ATTR_2(in3_min
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
337 max16065_set_limit
, 0, 3);
338 static SENSOR_DEVICE_ATTR_2(in4_min
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
339 max16065_set_limit
, 0, 4);
340 static SENSOR_DEVICE_ATTR_2(in5_min
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
341 max16065_set_limit
, 0, 5);
342 static SENSOR_DEVICE_ATTR_2(in6_min
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
343 max16065_set_limit
, 0, 6);
344 static SENSOR_DEVICE_ATTR_2(in7_min
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
345 max16065_set_limit
, 0, 7);
346 static SENSOR_DEVICE_ATTR_2(in8_min
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
347 max16065_set_limit
, 0, 8);
348 static SENSOR_DEVICE_ATTR_2(in9_min
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
349 max16065_set_limit
, 0, 9);
350 static SENSOR_DEVICE_ATTR_2(in10_min
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
351 max16065_set_limit
, 0, 10);
352 static SENSOR_DEVICE_ATTR_2(in11_min
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
353 max16065_set_limit
, 0, 11);
355 /* Input voltages max */
356 static SENSOR_DEVICE_ATTR_2(in0_max
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
357 max16065_set_limit
, 0, 0);
358 static SENSOR_DEVICE_ATTR_2(in1_max
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
359 max16065_set_limit
, 0, 1);
360 static SENSOR_DEVICE_ATTR_2(in2_max
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
361 max16065_set_limit
, 0, 2);
362 static SENSOR_DEVICE_ATTR_2(in3_max
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
363 max16065_set_limit
, 0, 3);
364 static SENSOR_DEVICE_ATTR_2(in4_max
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
365 max16065_set_limit
, 0, 4);
366 static SENSOR_DEVICE_ATTR_2(in5_max
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
367 max16065_set_limit
, 0, 5);
368 static SENSOR_DEVICE_ATTR_2(in6_max
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
369 max16065_set_limit
, 0, 6);
370 static SENSOR_DEVICE_ATTR_2(in7_max
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
371 max16065_set_limit
, 0, 7);
372 static SENSOR_DEVICE_ATTR_2(in8_max
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
373 max16065_set_limit
, 0, 8);
374 static SENSOR_DEVICE_ATTR_2(in9_max
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
375 max16065_set_limit
, 0, 9);
376 static SENSOR_DEVICE_ATTR_2(in10_max
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
377 max16065_set_limit
, 0, 10);
378 static SENSOR_DEVICE_ATTR_2(in11_max
, S_IWUSR
| S_IRUGO
, max16065_show_limit
,
379 max16065_set_limit
, 0, 11);
382 static SENSOR_DEVICE_ATTR_2(in0_alarm
, S_IRUGO
, max16065_show_alarm
, NULL
,
384 static SENSOR_DEVICE_ATTR_2(in1_alarm
, S_IRUGO
, max16065_show_alarm
, NULL
,
386 static SENSOR_DEVICE_ATTR_2(in2_alarm
, S_IRUGO
, max16065_show_alarm
, NULL
,
388 static SENSOR_DEVICE_ATTR_2(in3_alarm
, S_IRUGO
, max16065_show_alarm
, NULL
,
390 static SENSOR_DEVICE_ATTR_2(in4_alarm
, S_IRUGO
, max16065_show_alarm
, NULL
,
392 static SENSOR_DEVICE_ATTR_2(in5_alarm
, S_IRUGO
, max16065_show_alarm
, NULL
,
394 static SENSOR_DEVICE_ATTR_2(in6_alarm
, S_IRUGO
, max16065_show_alarm
, NULL
,
396 static SENSOR_DEVICE_ATTR_2(in7_alarm
, S_IRUGO
, max16065_show_alarm
, NULL
,
398 static SENSOR_DEVICE_ATTR_2(in8_alarm
, S_IRUGO
, max16065_show_alarm
, NULL
,
400 static SENSOR_DEVICE_ATTR_2(in9_alarm
, S_IRUGO
, max16065_show_alarm
, NULL
,
402 static SENSOR_DEVICE_ATTR_2(in10_alarm
, S_IRUGO
, max16065_show_alarm
, NULL
,
404 static SENSOR_DEVICE_ATTR_2(in11_alarm
, S_IRUGO
, max16065_show_alarm
, NULL
,
407 /* Current and alarm */
408 static SENSOR_DEVICE_ATTR(curr1_input
, S_IRUGO
, max16065_show_current
, NULL
, 0);
409 static SENSOR_DEVICE_ATTR_2(curr1_alarm
, S_IRUGO
, max16065_show_alarm
, NULL
,
413 * Finally, construct an array of pointers to members of the above objects,
414 * as required for sysfs_create_group()
416 static struct attribute
*max16065_basic_attributes
[] = {
417 &sensor_dev_attr_in0_input
.dev_attr
.attr
,
418 &sensor_dev_attr_in0_lcrit
.dev_attr
.attr
,
419 &sensor_dev_attr_in0_crit
.dev_attr
.attr
,
420 &sensor_dev_attr_in0_alarm
.dev_attr
.attr
,
422 &sensor_dev_attr_in1_input
.dev_attr
.attr
,
423 &sensor_dev_attr_in1_lcrit
.dev_attr
.attr
,
424 &sensor_dev_attr_in1_crit
.dev_attr
.attr
,
425 &sensor_dev_attr_in1_alarm
.dev_attr
.attr
,
427 &sensor_dev_attr_in2_input
.dev_attr
.attr
,
428 &sensor_dev_attr_in2_lcrit
.dev_attr
.attr
,
429 &sensor_dev_attr_in2_crit
.dev_attr
.attr
,
430 &sensor_dev_attr_in2_alarm
.dev_attr
.attr
,
432 &sensor_dev_attr_in3_input
.dev_attr
.attr
,
433 &sensor_dev_attr_in3_lcrit
.dev_attr
.attr
,
434 &sensor_dev_attr_in3_crit
.dev_attr
.attr
,
435 &sensor_dev_attr_in3_alarm
.dev_attr
.attr
,
437 &sensor_dev_attr_in4_input
.dev_attr
.attr
,
438 &sensor_dev_attr_in4_lcrit
.dev_attr
.attr
,
439 &sensor_dev_attr_in4_crit
.dev_attr
.attr
,
440 &sensor_dev_attr_in4_alarm
.dev_attr
.attr
,
442 &sensor_dev_attr_in5_input
.dev_attr
.attr
,
443 &sensor_dev_attr_in5_lcrit
.dev_attr
.attr
,
444 &sensor_dev_attr_in5_crit
.dev_attr
.attr
,
445 &sensor_dev_attr_in5_alarm
.dev_attr
.attr
,
447 &sensor_dev_attr_in6_input
.dev_attr
.attr
,
448 &sensor_dev_attr_in6_lcrit
.dev_attr
.attr
,
449 &sensor_dev_attr_in6_crit
.dev_attr
.attr
,
450 &sensor_dev_attr_in6_alarm
.dev_attr
.attr
,
452 &sensor_dev_attr_in7_input
.dev_attr
.attr
,
453 &sensor_dev_attr_in7_lcrit
.dev_attr
.attr
,
454 &sensor_dev_attr_in7_crit
.dev_attr
.attr
,
455 &sensor_dev_attr_in7_alarm
.dev_attr
.attr
,
457 &sensor_dev_attr_in8_input
.dev_attr
.attr
,
458 &sensor_dev_attr_in8_lcrit
.dev_attr
.attr
,
459 &sensor_dev_attr_in8_crit
.dev_attr
.attr
,
460 &sensor_dev_attr_in8_alarm
.dev_attr
.attr
,
462 &sensor_dev_attr_in9_input
.dev_attr
.attr
,
463 &sensor_dev_attr_in9_lcrit
.dev_attr
.attr
,
464 &sensor_dev_attr_in9_crit
.dev_attr
.attr
,
465 &sensor_dev_attr_in9_alarm
.dev_attr
.attr
,
467 &sensor_dev_attr_in10_input
.dev_attr
.attr
,
468 &sensor_dev_attr_in10_lcrit
.dev_attr
.attr
,
469 &sensor_dev_attr_in10_crit
.dev_attr
.attr
,
470 &sensor_dev_attr_in10_alarm
.dev_attr
.attr
,
472 &sensor_dev_attr_in11_input
.dev_attr
.attr
,
473 &sensor_dev_attr_in11_lcrit
.dev_attr
.attr
,
474 &sensor_dev_attr_in11_crit
.dev_attr
.attr
,
475 &sensor_dev_attr_in11_alarm
.dev_attr
.attr
,
480 static struct attribute
*max16065_current_attributes
[] = {
481 &sensor_dev_attr_in12_input
.dev_attr
.attr
,
482 &sensor_dev_attr_curr1_input
.dev_attr
.attr
,
483 &sensor_dev_attr_curr1_alarm
.dev_attr
.attr
,
487 static struct attribute
*max16065_min_attributes
[] = {
488 &sensor_dev_attr_in0_min
.dev_attr
.attr
,
489 &sensor_dev_attr_in1_min
.dev_attr
.attr
,
490 &sensor_dev_attr_in2_min
.dev_attr
.attr
,
491 &sensor_dev_attr_in3_min
.dev_attr
.attr
,
492 &sensor_dev_attr_in4_min
.dev_attr
.attr
,
493 &sensor_dev_attr_in5_min
.dev_attr
.attr
,
494 &sensor_dev_attr_in6_min
.dev_attr
.attr
,
495 &sensor_dev_attr_in7_min
.dev_attr
.attr
,
496 &sensor_dev_attr_in8_min
.dev_attr
.attr
,
497 &sensor_dev_attr_in9_min
.dev_attr
.attr
,
498 &sensor_dev_attr_in10_min
.dev_attr
.attr
,
499 &sensor_dev_attr_in11_min
.dev_attr
.attr
,
503 static struct attribute
*max16065_max_attributes
[] = {
504 &sensor_dev_attr_in0_max
.dev_attr
.attr
,
505 &sensor_dev_attr_in1_max
.dev_attr
.attr
,
506 &sensor_dev_attr_in2_max
.dev_attr
.attr
,
507 &sensor_dev_attr_in3_max
.dev_attr
.attr
,
508 &sensor_dev_attr_in4_max
.dev_attr
.attr
,
509 &sensor_dev_attr_in5_max
.dev_attr
.attr
,
510 &sensor_dev_attr_in6_max
.dev_attr
.attr
,
511 &sensor_dev_attr_in7_max
.dev_attr
.attr
,
512 &sensor_dev_attr_in8_max
.dev_attr
.attr
,
513 &sensor_dev_attr_in9_max
.dev_attr
.attr
,
514 &sensor_dev_attr_in10_max
.dev_attr
.attr
,
515 &sensor_dev_attr_in11_max
.dev_attr
.attr
,
519 static const struct attribute_group max16065_basic_group
= {
520 .attrs
= max16065_basic_attributes
,
523 static const struct attribute_group max16065_current_group
= {
524 .attrs
= max16065_current_attributes
,
527 static const struct attribute_group max16065_min_group
= {
528 .attrs
= max16065_min_attributes
,
531 static const struct attribute_group max16065_max_group
= {
532 .attrs
= max16065_max_attributes
,
535 static void max16065_cleanup(struct i2c_client
*client
)
537 sysfs_remove_group(&client
->dev
.kobj
, &max16065_max_group
);
538 sysfs_remove_group(&client
->dev
.kobj
, &max16065_min_group
);
539 sysfs_remove_group(&client
->dev
.kobj
, &max16065_current_group
);
540 sysfs_remove_group(&client
->dev
.kobj
, &max16065_basic_group
);
543 static int max16065_probe(struct i2c_client
*client
,
544 const struct i2c_device_id
*id
)
546 struct i2c_adapter
*adapter
= client
->adapter
;
547 struct max16065_data
*data
;
549 bool have_secondary
; /* true if chip has secondary limits */
550 bool secondary_is_max
= false; /* secondary limits reflect max */
552 if (!i2c_check_functionality(adapter
, I2C_FUNC_SMBUS_BYTE_DATA
553 | I2C_FUNC_SMBUS_READ_WORD_DATA
))
556 data
= devm_kzalloc(&client
->dev
, sizeof(*data
), GFP_KERNEL
);
560 i2c_set_clientdata(client
, data
);
561 mutex_init(&data
->update_lock
);
563 data
->num_adc
= max16065_num_adc
[id
->driver_data
];
564 data
->have_current
= max16065_have_current
[id
->driver_data
];
565 have_secondary
= max16065_have_secondary
[id
->driver_data
];
567 if (have_secondary
) {
568 val
= i2c_smbus_read_byte_data(client
, MAX16065_SW_ENABLE
);
569 if (unlikely(val
< 0))
571 secondary_is_max
= val
& MAX16065_WARNING_OV
;
574 /* Read scale registers, convert to range */
575 for (i
= 0; i
< DIV_ROUND_UP(data
->num_adc
, 4); i
++) {
576 val
= i2c_smbus_read_byte_data(client
, MAX16065_SCALE(i
));
577 if (unlikely(val
< 0))
579 for (j
= 0; j
< 4 && i
* 4 + j
< data
->num_adc
; j
++) {
580 data
->range
[i
* 4 + j
] =
581 max16065_adc_range
[(val
>> (j
* 2)) & 0x3];
586 for (i
= 0; i
< MAX16065_NUM_LIMIT
; i
++) {
587 if (i
== 0 && !have_secondary
)
590 for (j
= 0; j
< data
->num_adc
; j
++) {
591 val
= i2c_smbus_read_byte_data(client
,
592 MAX16065_LIMIT(i
, j
));
593 if (unlikely(val
< 0))
595 data
->limit
[i
][j
] = LIMIT_TO_MV(val
, data
->range
[j
]);
599 /* Register sysfs hooks */
600 for (i
= 0; i
< data
->num_adc
* 4; i
++) {
601 /* Do not create sysfs entry if channel is disabled */
602 if (!data
->range
[i
/ 4])
605 ret
= sysfs_create_file(&client
->dev
.kobj
,
606 max16065_basic_attributes
[i
]);
611 if (have_secondary
) {
612 struct attribute
**attr
= secondary_is_max
?
613 max16065_max_attributes
: max16065_min_attributes
;
615 for (i
= 0; i
< data
->num_adc
; i
++) {
619 ret
= sysfs_create_file(&client
->dev
.kobj
, attr
[i
]);
625 if (data
->have_current
) {
626 val
= i2c_smbus_read_byte_data(client
, MAX16065_CURR_CONTROL
);
627 if (unlikely(val
< 0)) {
631 if (val
& MAX16065_CURR_ENABLE
) {
633 * Current gain is 6, 12, 24, 48 based on values in
636 data
->curr_gain
= 6 << ((val
>> 2) & 0x03);
637 data
->range
[MAX16065_NUM_ADC
]
638 = max16065_csp_adc_range
[(val
>> 1) & 0x01];
639 ret
= sysfs_create_group(&client
->dev
.kobj
,
640 &max16065_current_group
);
644 data
->have_current
= false;
648 data
->hwmon_dev
= hwmon_device_register(&client
->dev
);
649 if (unlikely(IS_ERR(data
->hwmon_dev
))) {
650 ret
= PTR_ERR(data
->hwmon_dev
);
656 max16065_cleanup(client
);
660 static int max16065_remove(struct i2c_client
*client
)
662 struct max16065_data
*data
= i2c_get_clientdata(client
);
664 hwmon_device_unregister(data
->hwmon_dev
);
665 max16065_cleanup(client
);
670 static const struct i2c_device_id max16065_id
[] = {
671 { "max16065", max16065
},
672 { "max16066", max16066
},
673 { "max16067", max16067
},
674 { "max16068", max16068
},
675 { "max16070", max16070
},
676 { "max16071", max16071
},
680 MODULE_DEVICE_TABLE(i2c
, max16065_id
);
682 /* This is the driver that will be inserted */
683 static struct i2c_driver max16065_driver
= {
687 .probe
= max16065_probe
,
688 .remove
= max16065_remove
,
689 .id_table
= max16065_id
,
692 module_i2c_driver(max16065_driver
);
694 MODULE_AUTHOR("Guenter Roeck <linux@roeck-us.net>");
695 MODULE_DESCRIPTION("MAX16065 driver");
696 MODULE_LICENSE("GPL");