1 // SPDX-License-Identifier: GPL-2.0-only
4 * Maxim MAX16065/MAX16066 12-Channel/8-Channel, Flash-Configurable
5 * System Managers with Nonvolatile Fault Registers
6 * Maxim MAX16067/MAX16068 6-Channel, Flash-Configurable System Managers
7 * with Nonvolatile Fault Registers
8 * Maxim MAX16070/MAX16071 12-Channel/8-Channel, Flash-Configurable System
9 * Monitors with Nonvolatile Fault Registers
11 * Copyright (C) 2011 Ericsson AB.
14 #include <linux/kernel.h>
15 #include <linux/module.h>
16 #include <linux/init.h>
17 #include <linux/err.h>
18 #include <linux/slab.h>
19 #include <linux/i2c.h>
20 #include <linux/hwmon.h>
21 #include <linux/hwmon-sysfs.h>
22 #include <linux/jiffies.h>
24 enum chips
{ max16065
, max16066
, max16067
, max16068
, max16070
, max16071
};
29 #define MAX16065_ADC(x) ((x) * 2)
31 #define MAX16065_CURR_SENSE 0x18
32 #define MAX16065_CSP_ADC 0x19
33 #define MAX16065_FAULT(x) (0x1b + (x))
34 #define MAX16065_SCALE(x) (0x43 + (x))
35 #define MAX16065_CURR_CONTROL 0x47
36 #define MAX16065_LIMIT(l, x) (0x48 + (l) + (x) * 3) /*
44 #define MAX16065_SW_ENABLE 0x73
46 #define MAX16065_WARNING_OV (1 << 3) /* Set if secondary threshold is OV
49 #define MAX16065_CURR_ENABLE (1 << 0)
51 #define MAX16065_NUM_LIMIT 3
52 #define MAX16065_NUM_ADC 12 /* maximum number of ADC channels */
54 static const int max16065_num_adc
[] = {
63 static const bool max16065_have_secondary
[] = {
72 static const bool max16065_have_current
[] = {
81 struct max16065_data
{
83 struct i2c_client
*client
;
84 const struct attribute_group
*groups
[4];
85 struct mutex update_lock
;
87 unsigned long last_updated
; /* in jiffies */
91 /* limits are in mV */
92 int limit
[MAX16065_NUM_LIMIT
][MAX16065_NUM_ADC
];
93 int range
[MAX16065_NUM_ADC
+ 1];/* voltage range */
94 int adc
[MAX16065_NUM_ADC
+ 1]; /* adc values (raw) including csp_adc */
99 static const int max16065_adc_range
[] = { 5560, 2780, 1390, 0 };
100 static const int max16065_csp_adc_range
[] = { 7000, 14000 };
102 /* ADC registers have 10 bit resolution. */
103 static inline int ADC_TO_MV(int adc
, int range
)
105 return (adc
* range
) / 1024;
109 * Limit registers have 8 bit resolution and match upper 8 bits of ADC
112 static inline int LIMIT_TO_MV(int limit
, int range
)
114 return limit
* range
/ 256;
117 static inline int MV_TO_LIMIT(unsigned long mv
, int range
)
119 mv
= clamp_val(mv
, 0, ULONG_MAX
/ 256);
120 return DIV_ROUND_CLOSEST(clamp_val(mv
* 256, 0, range
* 255), range
);
123 static inline int ADC_TO_CURR(int adc
, int gain
)
125 return adc
* 1400000 / (gain
* 255);
129 * max16065_read_adc()
131 * Read 16 bit value from <reg>, <reg+1>.
132 * Upper 8 bits are in <reg>, lower 2 bits are in bits 7:6 of <reg+1>.
134 static int max16065_read_adc(struct i2c_client
*client
, int reg
)
138 rv
= i2c_smbus_read_word_swapped(client
, reg
);
139 if (unlikely(rv
< 0))
144 static struct max16065_data
*max16065_update_device(struct device
*dev
)
146 struct max16065_data
*data
= dev_get_drvdata(dev
);
147 struct i2c_client
*client
= data
->client
;
149 mutex_lock(&data
->update_lock
);
150 if (time_after(jiffies
, data
->last_updated
+ HZ
) || !data
->valid
) {
153 for (i
= 0; i
< data
->num_adc
; i
++)
155 = max16065_read_adc(client
, MAX16065_ADC(i
));
157 if (data
->have_current
) {
158 data
->adc
[MAX16065_NUM_ADC
]
159 = max16065_read_adc(client
, MAX16065_CSP_ADC
);
161 = i2c_smbus_read_byte_data(client
,
162 MAX16065_CURR_SENSE
);
165 for (i
= 0; i
< 2; i
++)
167 = i2c_smbus_read_byte_data(client
, MAX16065_FAULT(i
));
170 * MAX16067 and MAX16068 have separate undervoltage and
171 * overvoltage alarm bits. Squash them together.
173 if (data
->chip
== max16067
|| data
->chip
== max16068
)
174 data
->fault
[0] |= data
->fault
[1];
176 data
->last_updated
= jiffies
;
179 mutex_unlock(&data
->update_lock
);
183 static ssize_t
max16065_alarm_show(struct device
*dev
,
184 struct device_attribute
*da
, char *buf
)
186 struct sensor_device_attribute_2
*attr2
= to_sensor_dev_attr_2(da
);
187 struct max16065_data
*data
= max16065_update_device(dev
);
188 int val
= data
->fault
[attr2
->nr
];
193 val
&= (1 << attr2
->index
);
195 i2c_smbus_write_byte_data(data
->client
,
196 MAX16065_FAULT(attr2
->nr
), val
);
198 return sysfs_emit(buf
, "%d\n", !!val
);
201 static ssize_t
max16065_input_show(struct device
*dev
,
202 struct device_attribute
*da
, char *buf
)
204 struct sensor_device_attribute
*attr
= to_sensor_dev_attr(da
);
205 struct max16065_data
*data
= max16065_update_device(dev
);
206 int adc
= data
->adc
[attr
->index
];
208 if (unlikely(adc
< 0))
211 return sysfs_emit(buf
, "%d\n",
212 ADC_TO_MV(adc
, data
->range
[attr
->index
]));
215 static ssize_t
max16065_current_show(struct device
*dev
,
216 struct device_attribute
*da
, char *buf
)
218 struct max16065_data
*data
= max16065_update_device(dev
);
220 if (unlikely(data
->curr_sense
< 0))
221 return data
->curr_sense
;
223 return sysfs_emit(buf
, "%d\n",
224 ADC_TO_CURR(data
->curr_sense
, data
->curr_gain
));
227 static ssize_t
max16065_limit_store(struct device
*dev
,
228 struct device_attribute
*da
,
229 const char *buf
, size_t count
)
231 struct sensor_device_attribute_2
*attr2
= to_sensor_dev_attr_2(da
);
232 struct max16065_data
*data
= dev_get_drvdata(dev
);
237 err
= kstrtoul(buf
, 10, &val
);
238 if (unlikely(err
< 0))
241 limit
= MV_TO_LIMIT(val
, data
->range
[attr2
->index
]);
243 mutex_lock(&data
->update_lock
);
244 data
->limit
[attr2
->nr
][attr2
->index
]
245 = LIMIT_TO_MV(limit
, data
->range
[attr2
->index
]);
246 i2c_smbus_write_byte_data(data
->client
,
247 MAX16065_LIMIT(attr2
->nr
, attr2
->index
),
249 mutex_unlock(&data
->update_lock
);
254 static ssize_t
max16065_limit_show(struct device
*dev
,
255 struct device_attribute
*da
, char *buf
)
257 struct sensor_device_attribute_2
*attr2
= to_sensor_dev_attr_2(da
);
258 struct max16065_data
*data
= dev_get_drvdata(dev
);
260 return sysfs_emit(buf
, "%d\n",
261 data
->limit
[attr2
->nr
][attr2
->index
]);
264 /* Construct a sensor_device_attribute structure for each register */
267 static SENSOR_DEVICE_ATTR_RO(in0_input
, max16065_input
, 0);
268 static SENSOR_DEVICE_ATTR_RO(in1_input
, max16065_input
, 1);
269 static SENSOR_DEVICE_ATTR_RO(in2_input
, max16065_input
, 2);
270 static SENSOR_DEVICE_ATTR_RO(in3_input
, max16065_input
, 3);
271 static SENSOR_DEVICE_ATTR_RO(in4_input
, max16065_input
, 4);
272 static SENSOR_DEVICE_ATTR_RO(in5_input
, max16065_input
, 5);
273 static SENSOR_DEVICE_ATTR_RO(in6_input
, max16065_input
, 6);
274 static SENSOR_DEVICE_ATTR_RO(in7_input
, max16065_input
, 7);
275 static SENSOR_DEVICE_ATTR_RO(in8_input
, max16065_input
, 8);
276 static SENSOR_DEVICE_ATTR_RO(in9_input
, max16065_input
, 9);
277 static SENSOR_DEVICE_ATTR_RO(in10_input
, max16065_input
, 10);
278 static SENSOR_DEVICE_ATTR_RO(in11_input
, max16065_input
, 11);
279 static SENSOR_DEVICE_ATTR_RO(in12_input
, max16065_input
, 12);
281 /* Input voltages lcrit */
282 static SENSOR_DEVICE_ATTR_2_RW(in0_lcrit
, max16065_limit
, 2, 0);
283 static SENSOR_DEVICE_ATTR_2_RW(in1_lcrit
, max16065_limit
, 2, 1);
284 static SENSOR_DEVICE_ATTR_2_RW(in2_lcrit
, max16065_limit
, 2, 2);
285 static SENSOR_DEVICE_ATTR_2_RW(in3_lcrit
, max16065_limit
, 2, 3);
286 static SENSOR_DEVICE_ATTR_2_RW(in4_lcrit
, max16065_limit
, 2, 4);
287 static SENSOR_DEVICE_ATTR_2_RW(in5_lcrit
, max16065_limit
, 2, 5);
288 static SENSOR_DEVICE_ATTR_2_RW(in6_lcrit
, max16065_limit
, 2, 6);
289 static SENSOR_DEVICE_ATTR_2_RW(in7_lcrit
, max16065_limit
, 2, 7);
290 static SENSOR_DEVICE_ATTR_2_RW(in8_lcrit
, max16065_limit
, 2, 8);
291 static SENSOR_DEVICE_ATTR_2_RW(in9_lcrit
, max16065_limit
, 2, 9);
292 static SENSOR_DEVICE_ATTR_2_RW(in10_lcrit
, max16065_limit
, 2, 10);
293 static SENSOR_DEVICE_ATTR_2_RW(in11_lcrit
, max16065_limit
, 2, 11);
295 /* Input voltages crit */
296 static SENSOR_DEVICE_ATTR_2_RW(in0_crit
, max16065_limit
, 1, 0);
297 static SENSOR_DEVICE_ATTR_2_RW(in1_crit
, max16065_limit
, 1, 1);
298 static SENSOR_DEVICE_ATTR_2_RW(in2_crit
, max16065_limit
, 1, 2);
299 static SENSOR_DEVICE_ATTR_2_RW(in3_crit
, max16065_limit
, 1, 3);
300 static SENSOR_DEVICE_ATTR_2_RW(in4_crit
, max16065_limit
, 1, 4);
301 static SENSOR_DEVICE_ATTR_2_RW(in5_crit
, max16065_limit
, 1, 5);
302 static SENSOR_DEVICE_ATTR_2_RW(in6_crit
, max16065_limit
, 1, 6);
303 static SENSOR_DEVICE_ATTR_2_RW(in7_crit
, max16065_limit
, 1, 7);
304 static SENSOR_DEVICE_ATTR_2_RW(in8_crit
, max16065_limit
, 1, 8);
305 static SENSOR_DEVICE_ATTR_2_RW(in9_crit
, max16065_limit
, 1, 9);
306 static SENSOR_DEVICE_ATTR_2_RW(in10_crit
, max16065_limit
, 1, 10);
307 static SENSOR_DEVICE_ATTR_2_RW(in11_crit
, max16065_limit
, 1, 11);
309 /* Input voltages min */
310 static SENSOR_DEVICE_ATTR_2_RW(in0_min
, max16065_limit
, 0, 0);
311 static SENSOR_DEVICE_ATTR_2_RW(in1_min
, max16065_limit
, 0, 1);
312 static SENSOR_DEVICE_ATTR_2_RW(in2_min
, max16065_limit
, 0, 2);
313 static SENSOR_DEVICE_ATTR_2_RW(in3_min
, max16065_limit
, 0, 3);
314 static SENSOR_DEVICE_ATTR_2_RW(in4_min
, max16065_limit
, 0, 4);
315 static SENSOR_DEVICE_ATTR_2_RW(in5_min
, max16065_limit
, 0, 5);
316 static SENSOR_DEVICE_ATTR_2_RW(in6_min
, max16065_limit
, 0, 6);
317 static SENSOR_DEVICE_ATTR_2_RW(in7_min
, max16065_limit
, 0, 7);
318 static SENSOR_DEVICE_ATTR_2_RW(in8_min
, max16065_limit
, 0, 8);
319 static SENSOR_DEVICE_ATTR_2_RW(in9_min
, max16065_limit
, 0, 9);
320 static SENSOR_DEVICE_ATTR_2_RW(in10_min
, max16065_limit
, 0, 10);
321 static SENSOR_DEVICE_ATTR_2_RW(in11_min
, max16065_limit
, 0, 11);
323 /* Input voltages max */
324 static SENSOR_DEVICE_ATTR_2_RW(in0_max
, max16065_limit
, 0, 0);
325 static SENSOR_DEVICE_ATTR_2_RW(in1_max
, max16065_limit
, 0, 1);
326 static SENSOR_DEVICE_ATTR_2_RW(in2_max
, max16065_limit
, 0, 2);
327 static SENSOR_DEVICE_ATTR_2_RW(in3_max
, max16065_limit
, 0, 3);
328 static SENSOR_DEVICE_ATTR_2_RW(in4_max
, max16065_limit
, 0, 4);
329 static SENSOR_DEVICE_ATTR_2_RW(in5_max
, max16065_limit
, 0, 5);
330 static SENSOR_DEVICE_ATTR_2_RW(in6_max
, max16065_limit
, 0, 6);
331 static SENSOR_DEVICE_ATTR_2_RW(in7_max
, max16065_limit
, 0, 7);
332 static SENSOR_DEVICE_ATTR_2_RW(in8_max
, max16065_limit
, 0, 8);
333 static SENSOR_DEVICE_ATTR_2_RW(in9_max
, max16065_limit
, 0, 9);
334 static SENSOR_DEVICE_ATTR_2_RW(in10_max
, max16065_limit
, 0, 10);
335 static SENSOR_DEVICE_ATTR_2_RW(in11_max
, max16065_limit
, 0, 11);
338 static SENSOR_DEVICE_ATTR_2_RO(in0_alarm
, max16065_alarm
, 0, 0);
339 static SENSOR_DEVICE_ATTR_2_RO(in1_alarm
, max16065_alarm
, 0, 1);
340 static SENSOR_DEVICE_ATTR_2_RO(in2_alarm
, max16065_alarm
, 0, 2);
341 static SENSOR_DEVICE_ATTR_2_RO(in3_alarm
, max16065_alarm
, 0, 3);
342 static SENSOR_DEVICE_ATTR_2_RO(in4_alarm
, max16065_alarm
, 0, 4);
343 static SENSOR_DEVICE_ATTR_2_RO(in5_alarm
, max16065_alarm
, 0, 5);
344 static SENSOR_DEVICE_ATTR_2_RO(in6_alarm
, max16065_alarm
, 0, 6);
345 static SENSOR_DEVICE_ATTR_2_RO(in7_alarm
, max16065_alarm
, 0, 7);
346 static SENSOR_DEVICE_ATTR_2_RO(in8_alarm
, max16065_alarm
, 1, 0);
347 static SENSOR_DEVICE_ATTR_2_RO(in9_alarm
, max16065_alarm
, 1, 1);
348 static SENSOR_DEVICE_ATTR_2_RO(in10_alarm
, max16065_alarm
, 1, 2);
349 static SENSOR_DEVICE_ATTR_2_RO(in11_alarm
, max16065_alarm
, 1, 3);
351 /* Current and alarm */
352 static SENSOR_DEVICE_ATTR_RO(curr1_input
, max16065_current
, 0);
353 static SENSOR_DEVICE_ATTR_2_RO(curr1_alarm
, max16065_alarm
, 1, 4);
356 * Finally, construct an array of pointers to members of the above objects,
357 * as required for sysfs_create_group()
359 static struct attribute
*max16065_basic_attributes
[] = {
360 &sensor_dev_attr_in0_input
.dev_attr
.attr
,
361 &sensor_dev_attr_in0_lcrit
.dev_attr
.attr
,
362 &sensor_dev_attr_in0_crit
.dev_attr
.attr
,
363 &sensor_dev_attr_in0_alarm
.dev_attr
.attr
,
365 &sensor_dev_attr_in1_input
.dev_attr
.attr
,
366 &sensor_dev_attr_in1_lcrit
.dev_attr
.attr
,
367 &sensor_dev_attr_in1_crit
.dev_attr
.attr
,
368 &sensor_dev_attr_in1_alarm
.dev_attr
.attr
,
370 &sensor_dev_attr_in2_input
.dev_attr
.attr
,
371 &sensor_dev_attr_in2_lcrit
.dev_attr
.attr
,
372 &sensor_dev_attr_in2_crit
.dev_attr
.attr
,
373 &sensor_dev_attr_in2_alarm
.dev_attr
.attr
,
375 &sensor_dev_attr_in3_input
.dev_attr
.attr
,
376 &sensor_dev_attr_in3_lcrit
.dev_attr
.attr
,
377 &sensor_dev_attr_in3_crit
.dev_attr
.attr
,
378 &sensor_dev_attr_in3_alarm
.dev_attr
.attr
,
380 &sensor_dev_attr_in4_input
.dev_attr
.attr
,
381 &sensor_dev_attr_in4_lcrit
.dev_attr
.attr
,
382 &sensor_dev_attr_in4_crit
.dev_attr
.attr
,
383 &sensor_dev_attr_in4_alarm
.dev_attr
.attr
,
385 &sensor_dev_attr_in5_input
.dev_attr
.attr
,
386 &sensor_dev_attr_in5_lcrit
.dev_attr
.attr
,
387 &sensor_dev_attr_in5_crit
.dev_attr
.attr
,
388 &sensor_dev_attr_in5_alarm
.dev_attr
.attr
,
390 &sensor_dev_attr_in6_input
.dev_attr
.attr
,
391 &sensor_dev_attr_in6_lcrit
.dev_attr
.attr
,
392 &sensor_dev_attr_in6_crit
.dev_attr
.attr
,
393 &sensor_dev_attr_in6_alarm
.dev_attr
.attr
,
395 &sensor_dev_attr_in7_input
.dev_attr
.attr
,
396 &sensor_dev_attr_in7_lcrit
.dev_attr
.attr
,
397 &sensor_dev_attr_in7_crit
.dev_attr
.attr
,
398 &sensor_dev_attr_in7_alarm
.dev_attr
.attr
,
400 &sensor_dev_attr_in8_input
.dev_attr
.attr
,
401 &sensor_dev_attr_in8_lcrit
.dev_attr
.attr
,
402 &sensor_dev_attr_in8_crit
.dev_attr
.attr
,
403 &sensor_dev_attr_in8_alarm
.dev_attr
.attr
,
405 &sensor_dev_attr_in9_input
.dev_attr
.attr
,
406 &sensor_dev_attr_in9_lcrit
.dev_attr
.attr
,
407 &sensor_dev_attr_in9_crit
.dev_attr
.attr
,
408 &sensor_dev_attr_in9_alarm
.dev_attr
.attr
,
410 &sensor_dev_attr_in10_input
.dev_attr
.attr
,
411 &sensor_dev_attr_in10_lcrit
.dev_attr
.attr
,
412 &sensor_dev_attr_in10_crit
.dev_attr
.attr
,
413 &sensor_dev_attr_in10_alarm
.dev_attr
.attr
,
415 &sensor_dev_attr_in11_input
.dev_attr
.attr
,
416 &sensor_dev_attr_in11_lcrit
.dev_attr
.attr
,
417 &sensor_dev_attr_in11_crit
.dev_attr
.attr
,
418 &sensor_dev_attr_in11_alarm
.dev_attr
.attr
,
423 static struct attribute
*max16065_current_attributes
[] = {
424 &sensor_dev_attr_in12_input
.dev_attr
.attr
,
425 &sensor_dev_attr_curr1_input
.dev_attr
.attr
,
426 &sensor_dev_attr_curr1_alarm
.dev_attr
.attr
,
430 static struct attribute
*max16065_min_attributes
[] = {
431 &sensor_dev_attr_in0_min
.dev_attr
.attr
,
432 &sensor_dev_attr_in1_min
.dev_attr
.attr
,
433 &sensor_dev_attr_in2_min
.dev_attr
.attr
,
434 &sensor_dev_attr_in3_min
.dev_attr
.attr
,
435 &sensor_dev_attr_in4_min
.dev_attr
.attr
,
436 &sensor_dev_attr_in5_min
.dev_attr
.attr
,
437 &sensor_dev_attr_in6_min
.dev_attr
.attr
,
438 &sensor_dev_attr_in7_min
.dev_attr
.attr
,
439 &sensor_dev_attr_in8_min
.dev_attr
.attr
,
440 &sensor_dev_attr_in9_min
.dev_attr
.attr
,
441 &sensor_dev_attr_in10_min
.dev_attr
.attr
,
442 &sensor_dev_attr_in11_min
.dev_attr
.attr
,
446 static struct attribute
*max16065_max_attributes
[] = {
447 &sensor_dev_attr_in0_max
.dev_attr
.attr
,
448 &sensor_dev_attr_in1_max
.dev_attr
.attr
,
449 &sensor_dev_attr_in2_max
.dev_attr
.attr
,
450 &sensor_dev_attr_in3_max
.dev_attr
.attr
,
451 &sensor_dev_attr_in4_max
.dev_attr
.attr
,
452 &sensor_dev_attr_in5_max
.dev_attr
.attr
,
453 &sensor_dev_attr_in6_max
.dev_attr
.attr
,
454 &sensor_dev_attr_in7_max
.dev_attr
.attr
,
455 &sensor_dev_attr_in8_max
.dev_attr
.attr
,
456 &sensor_dev_attr_in9_max
.dev_attr
.attr
,
457 &sensor_dev_attr_in10_max
.dev_attr
.attr
,
458 &sensor_dev_attr_in11_max
.dev_attr
.attr
,
462 static umode_t
max16065_basic_is_visible(struct kobject
*kobj
,
463 struct attribute
*a
, int n
)
465 struct device
*dev
= kobj_to_dev(kobj
);
466 struct max16065_data
*data
= dev_get_drvdata(dev
);
469 if (index
>= data
->num_adc
|| !data
->range
[index
])
474 static umode_t
max16065_secondary_is_visible(struct kobject
*kobj
,
475 struct attribute
*a
, int index
)
477 struct device
*dev
= kobj_to_dev(kobj
);
478 struct max16065_data
*data
= dev_get_drvdata(dev
);
480 if (index
>= data
->num_adc
)
485 static const struct attribute_group max16065_basic_group
= {
486 .attrs
= max16065_basic_attributes
,
487 .is_visible
= max16065_basic_is_visible
,
490 static const struct attribute_group max16065_current_group
= {
491 .attrs
= max16065_current_attributes
,
494 static const struct attribute_group max16065_min_group
= {
495 .attrs
= max16065_min_attributes
,
496 .is_visible
= max16065_secondary_is_visible
,
499 static const struct attribute_group max16065_max_group
= {
500 .attrs
= max16065_max_attributes
,
501 .is_visible
= max16065_secondary_is_visible
,
504 static int max16065_probe(struct i2c_client
*client
)
506 struct i2c_adapter
*adapter
= client
->adapter
;
507 struct max16065_data
*data
;
508 struct device
*dev
= &client
->dev
;
509 struct device
*hwmon_dev
;
511 bool have_secondary
; /* true if chip has secondary limits */
512 bool secondary_is_max
= false; /* secondary limits reflect max */
514 enum chips chip
= (uintptr_t)i2c_get_match_data(client
);
516 if (!i2c_check_functionality(adapter
, I2C_FUNC_SMBUS_BYTE_DATA
517 | I2C_FUNC_SMBUS_READ_WORD_DATA
))
520 data
= devm_kzalloc(dev
, sizeof(*data
), GFP_KERNEL
);
525 data
->client
= client
;
526 mutex_init(&data
->update_lock
);
528 data
->num_adc
= max16065_num_adc
[chip
];
529 data
->have_current
= max16065_have_current
[chip
];
530 have_secondary
= max16065_have_secondary
[chip
];
532 if (have_secondary
) {
533 val
= i2c_smbus_read_byte_data(client
, MAX16065_SW_ENABLE
);
534 if (unlikely(val
< 0))
536 secondary_is_max
= val
& MAX16065_WARNING_OV
;
539 /* Read scale registers, convert to range */
540 for (i
= 0; i
< DIV_ROUND_UP(data
->num_adc
, 4); i
++) {
541 val
= i2c_smbus_read_byte_data(client
, MAX16065_SCALE(i
));
542 if (unlikely(val
< 0))
544 for (j
= 0; j
< 4 && i
* 4 + j
< data
->num_adc
; j
++) {
545 data
->range
[i
* 4 + j
] =
546 max16065_adc_range
[(val
>> (j
* 2)) & 0x3];
551 for (i
= 0; i
< MAX16065_NUM_LIMIT
; i
++) {
552 if (i
== 0 && !have_secondary
)
555 for (j
= 0; j
< data
->num_adc
; j
++) {
556 val
= i2c_smbus_read_byte_data(client
,
557 MAX16065_LIMIT(i
, j
));
558 if (unlikely(val
< 0))
560 data
->limit
[i
][j
] = LIMIT_TO_MV(val
, data
->range
[j
]);
565 data
->groups
[groups
++] = &max16065_basic_group
;
567 data
->groups
[groups
++] = secondary_is_max
?
568 &max16065_max_group
: &max16065_min_group
;
570 if (data
->have_current
) {
571 val
= i2c_smbus_read_byte_data(client
, MAX16065_CURR_CONTROL
);
572 if (unlikely(val
< 0))
574 if (val
& MAX16065_CURR_ENABLE
) {
576 * Current gain is 6, 12, 24, 48 based on values in
579 data
->curr_gain
= 6 << ((val
>> 2) & 0x03);
580 data
->range
[MAX16065_NUM_ADC
]
581 = max16065_csp_adc_range
[(val
>> 1) & 0x01];
582 data
->groups
[groups
++] = &max16065_current_group
;
584 data
->have_current
= false;
588 hwmon_dev
= devm_hwmon_device_register_with_groups(dev
, client
->name
,
590 return PTR_ERR_OR_ZERO(hwmon_dev
);
593 static const struct i2c_device_id max16065_id
[] = {
594 { "max16065", max16065
},
595 { "max16066", max16066
},
596 { "max16067", max16067
},
597 { "max16068", max16068
},
598 { "max16070", max16070
},
599 { "max16071", max16071
},
603 MODULE_DEVICE_TABLE(i2c
, max16065_id
);
605 /* This is the driver that will be inserted */
606 static struct i2c_driver max16065_driver
= {
610 .probe
= max16065_probe
,
611 .id_table
= max16065_id
,
614 module_i2c_driver(max16065_driver
);
616 MODULE_AUTHOR("Guenter Roeck <linux@roeck-us.net>");
617 MODULE_DESCRIPTION("MAX16065 driver");
618 MODULE_LICENSE("GPL");