1 // SPDX-License-Identifier: GPL-2.0
5 * Maxim max9611/max9612 high side current sense amplifier with
6 * 12-bit ADC interface.
8 * Copyright (C) 2017 Jacopo Mondi
12 * This driver supports input common-mode voltage, current-sense
13 * amplifier with programmable gains and die temperature reading from
14 * Maxim max9611/max9612.
16 * Op-amp, analog comparator, and watchdog functionalities are not
17 * supported by this driver.
20 #include <linux/delay.h>
21 #include <linux/i2c.h>
22 #include <linux/iio/iio.h>
23 #include <linux/iio/sysfs.h>
24 #include <linux/module.h>
25 #include <linux/of_device.h>
27 #define DRIVER_NAME "max9611"
29 /* max9611 register addresses */
30 #define MAX9611_REG_CSA_DATA 0x00
31 #define MAX9611_REG_RS_DATA 0x02
32 #define MAX9611_REG_TEMP_DATA 0x08
33 #define MAX9611_REG_CTRL1 0x0a
34 #define MAX9611_REG_CTRL2 0x0b
36 /* max9611 REG1 mux configuration options */
37 #define MAX9611_MUX_MASK GENMASK(3, 0)
38 #define MAX9611_MUX_SENSE_1x 0x00
39 #define MAX9611_MUX_SENSE_4x 0x01
40 #define MAX9611_MUX_SENSE_8x 0x02
41 #define MAX9611_INPUT_VOLT 0x03
42 #define MAX9611_MUX_TEMP 0x06
44 /* max9611 voltage (both csa and input) helper macros */
45 #define MAX9611_VOLTAGE_SHIFT 0x04
46 #define MAX9611_VOLTAGE_RAW(_r) ((_r) >> MAX9611_VOLTAGE_SHIFT)
49 * max9611 current sense amplifier voltage output:
50 * LSB and offset values depends on selected gain (1x, 4x, 8x)
52 * GAIN LSB (nV) OFFSET (LSB steps)
57 * The complete formula to calculate current sense voltage is:
58 * (((adc_read >> 4) - offset) / ((1 / LSB) * 10^-3)
60 #define MAX9611_CSA_1X_LSB_nV 107500
61 #define MAX9611_CSA_4X_LSB_nV 26880
62 #define MAX9611_CSA_8X_LSB_nV 13440
64 #define MAX9611_CSA_1X_OFFS_RAW 1
65 #define MAX9611_CSA_4X_OFFS_RAW 1
66 #define MAX9611_CSA_8X_OFFS_RAW 3
69 * max9611 common input mode (CIM): LSB is 14mV, with 14mV offset at 25 C
71 * The complete formula to calculate input common voltage is:
72 * (((adc_read >> 4) * 1000) - offset) / (1 / 14 * 1000)
74 #define MAX9611_CIM_LSB_mV 14
75 #define MAX9611_CIM_OFFSET_RAW 1
78 * max9611 temperature reading: LSB is 480 milli degrees Celsius
80 * The complete formula to calculate temperature is:
81 * ((adc_read >> 7) * 1000) / (1 / 480 * 1000)
83 #define MAX9611_TEMP_MAX_POS 0x7f80
84 #define MAX9611_TEMP_MAX_NEG 0xff80
85 #define MAX9611_TEMP_MIN_NEG 0xd980
86 #define MAX9611_TEMP_MASK GENMASK(15, 7)
87 #define MAX9611_TEMP_SHIFT 0x07
88 #define MAX9611_TEMP_RAW(_r) ((_r) >> MAX9611_TEMP_SHIFT)
89 #define MAX9611_TEMP_SCALE_NUM 1000000
90 #define MAX9611_TEMP_SCALE_DIV 2083
93 * Conversion time is 2 ms (typically) at Ta=25 degreeC
94 * No maximum value is known, so play it safe.
96 #define MAX9611_CONV_TIME_US_RANGE 3000, 3300
100 struct i2c_client
*i2c_client
;
102 unsigned int shunt_resistor_uohm
;
105 enum max9611_conf_ids
{
114 * max9611_mux_conf - associate ADC mux configuration with register address
115 * where data shall be read from
117 static const unsigned int max9611_mux_conf
[][2] = {
118 [CONF_SENSE_1x
] = { MAX9611_MUX_SENSE_1x
, MAX9611_REG_CSA_DATA
},
119 [CONF_SENSE_4x
] = { MAX9611_MUX_SENSE_4x
, MAX9611_REG_CSA_DATA
},
120 [CONF_SENSE_8x
] = { MAX9611_MUX_SENSE_8x
, MAX9611_REG_CSA_DATA
},
121 [CONF_IN_VOLT
] = { MAX9611_INPUT_VOLT
, MAX9611_REG_RS_DATA
},
122 [CONF_TEMP
] = { MAX9611_MUX_TEMP
, MAX9611_REG_TEMP_DATA
},
125 enum max9611_csa_gain
{
126 CSA_GAIN_1x
= CONF_SENSE_1x
,
127 CSA_GAIN_4x
= CONF_SENSE_4x
,
128 CSA_GAIN_8x
= CONF_SENSE_8x
,
131 enum max9611_csa_gain_params
{
137 * max9611_csa_gain_conf - associate gain multiplier with LSB and
140 * Group together parameters associated with configurable gain
141 * on current sense amplifier path to ADC interface.
142 * Current sense read routine adjusts gain until it gets a meaningful
143 * value; use this structure to retrieve the correct LSB and offset values.
145 static const unsigned int max9611_gain_conf
[][2] = {
146 [CSA_GAIN_1x
] = { MAX9611_CSA_1X_LSB_nV
, MAX9611_CSA_1X_OFFS_RAW
, },
147 [CSA_GAIN_4x
] = { MAX9611_CSA_4X_LSB_nV
, MAX9611_CSA_4X_OFFS_RAW
, },
148 [CSA_GAIN_8x
] = { MAX9611_CSA_8X_LSB_nV
, MAX9611_CSA_8X_OFFS_RAW
, },
151 enum max9611_chan_addrs
{
152 MAX9611_CHAN_VOLTAGE_INPUT
,
153 MAX9611_CHAN_VOLTAGE_SENSE
,
154 MAX9611_CHAN_TEMPERATURE
,
155 MAX9611_CHAN_CURRENT_LOAD
,
156 MAX9611_CHAN_POWER_LOAD
,
159 static const struct iio_chan_spec max9611_channels
[] = {
162 .info_mask_separate
= BIT(IIO_CHAN_INFO_RAW
) |
163 BIT(IIO_CHAN_INFO_SCALE
),
164 .address
= MAX9611_CHAN_TEMPERATURE
,
168 .info_mask_separate
= BIT(IIO_CHAN_INFO_PROCESSED
),
169 .address
= MAX9611_CHAN_VOLTAGE_SENSE
,
175 .info_mask_separate
= BIT(IIO_CHAN_INFO_RAW
) |
176 BIT(IIO_CHAN_INFO_SCALE
) |
177 BIT(IIO_CHAN_INFO_OFFSET
),
178 .address
= MAX9611_CHAN_VOLTAGE_INPUT
,
184 .info_mask_separate
= BIT(IIO_CHAN_INFO_PROCESSED
),
185 .address
= MAX9611_CHAN_CURRENT_LOAD
,
189 .info_mask_separate
= BIT(IIO_CHAN_INFO_PROCESSED
),
190 .address
= MAX9611_CHAN_POWER_LOAD
195 * max9611_read_single() - read a single value from ADC interface
197 * Data registers are 16 bit long, spread between two 8 bit registers
198 * with consecutive addresses.
199 * Configure ADC mux first, then read register at address "reg_addr".
200 * The smbus_read_word routine asks for 16 bits and the ADC is kind enough
201 * to return values from "reg_addr" and "reg_addr + 1" consecutively.
202 * Data are transmitted with big-endian ordering: MSB arrives first.
204 * @max9611: max9611 device
205 * @selector: index for mux and register configuration
206 * @raw_val: the value returned from ADC
208 static int max9611_read_single(struct max9611_dev
*max9611
,
209 enum max9611_conf_ids selector
,
214 u8 mux_conf
= max9611_mux_conf
[selector
][0] & MAX9611_MUX_MASK
;
215 u8 reg_addr
= max9611_mux_conf
[selector
][1];
218 * Keep mutex lock held during read-write to avoid mux register
219 * (CTRL1) re-configuration.
221 mutex_lock(&max9611
->lock
);
222 ret
= i2c_smbus_write_byte_data(max9611
->i2c_client
,
223 MAX9611_REG_CTRL1
, mux_conf
);
225 dev_err(max9611
->dev
, "i2c write byte failed: 0x%2x - 0x%2x\n",
226 MAX9611_REG_CTRL1
, mux_conf
);
227 mutex_unlock(&max9611
->lock
);
231 /* need a delay here to make register configuration stabilize. */
233 usleep_range(MAX9611_CONV_TIME_US_RANGE
);
235 ret
= i2c_smbus_read_word_swapped(max9611
->i2c_client
, reg_addr
);
237 dev_err(max9611
->dev
, "i2c read word from 0x%2x failed\n",
239 mutex_unlock(&max9611
->lock
);
244 mutex_unlock(&max9611
->lock
);
250 * max9611_read_csa_voltage() - read current sense amplifier output voltage
252 * Current sense amplifier output voltage is read through a configurable
254 * Start with plain 1x gain, and adjust gain control properly until a
255 * meaningful value is read from ADC output.
257 * @max9611: max9611 device
258 * @adc_raw: raw value read from ADC output
259 * @csa_gain: gain configuration option selector
261 static int max9611_read_csa_voltage(struct max9611_dev
*max9611
,
263 enum max9611_csa_gain
*csa_gain
)
265 enum max9611_conf_ids gain_selectors
[] = {
273 for (i
= 0; i
< ARRAY_SIZE(gain_selectors
); ++i
) {
274 ret
= max9611_read_single(max9611
, gain_selectors
[i
], adc_raw
);
279 *csa_gain
= (enum max9611_csa_gain
)gain_selectors
[i
];
287 static int max9611_read_raw(struct iio_dev
*indio_dev
,
288 struct iio_chan_spec
const *chan
,
289 int *val
, int *val2
, long mask
)
291 struct max9611_dev
*dev
= iio_priv(indio_dev
);
292 enum max9611_csa_gain gain_selector
;
293 const unsigned int *csa_gain
;
298 case IIO_CHAN_INFO_RAW
:
300 switch (chan
->address
) {
301 case MAX9611_CHAN_TEMPERATURE
:
302 ret
= max9611_read_single(dev
, CONF_TEMP
,
307 *val
= MAX9611_TEMP_RAW(adc_data
);
310 case MAX9611_CHAN_VOLTAGE_INPUT
:
311 ret
= max9611_read_single(dev
, CONF_IN_VOLT
,
316 *val
= MAX9611_VOLTAGE_RAW(adc_data
);
322 case IIO_CHAN_INFO_OFFSET
:
323 /* MAX9611_CHAN_VOLTAGE_INPUT */
324 *val
= MAX9611_CIM_OFFSET_RAW
;
328 case IIO_CHAN_INFO_SCALE
:
330 switch (chan
->address
) {
331 case MAX9611_CHAN_TEMPERATURE
:
332 *val
= MAX9611_TEMP_SCALE_NUM
;
333 *val2
= MAX9611_TEMP_SCALE_DIV
;
335 return IIO_VAL_FRACTIONAL
;
337 case MAX9611_CHAN_VOLTAGE_INPUT
:
338 *val
= MAX9611_CIM_LSB_mV
;
345 case IIO_CHAN_INFO_PROCESSED
:
347 switch (chan
->address
) {
348 case MAX9611_CHAN_VOLTAGE_SENSE
:
350 * processed (mV): (raw - offset) * LSB (nV) / 10^6
352 * Even if max9611 can output raw csa voltage readings,
353 * use a produced value as scale depends on gain.
355 ret
= max9611_read_csa_voltage(dev
, &adc_data
,
360 csa_gain
= max9611_gain_conf
[gain_selector
];
362 adc_data
-= csa_gain
[CSA_GAIN_OFFS_RAW
];
363 *val
= MAX9611_VOLTAGE_RAW(adc_data
) *
364 csa_gain
[CSA_GAIN_LSB_nV
];
367 return IIO_VAL_FRACTIONAL
;
369 case MAX9611_CHAN_CURRENT_LOAD
:
370 /* processed (mA): Vcsa (nV) / Rshunt (uOhm) */
371 ret
= max9611_read_csa_voltage(dev
, &adc_data
,
376 csa_gain
= max9611_gain_conf
[gain_selector
];
378 adc_data
-= csa_gain
[CSA_GAIN_OFFS_RAW
];
379 *val
= MAX9611_VOLTAGE_RAW(adc_data
) *
380 csa_gain
[CSA_GAIN_LSB_nV
];
381 *val2
= dev
->shunt_resistor_uohm
;
383 return IIO_VAL_FRACTIONAL
;
385 case MAX9611_CHAN_POWER_LOAD
:
387 * processed (mW): Vin (mV) * Vcsa (uV) /
390 ret
= max9611_read_single(dev
, CONF_IN_VOLT
,
395 adc_data
-= MAX9611_CIM_OFFSET_RAW
;
396 *val
= MAX9611_VOLTAGE_RAW(adc_data
) *
399 ret
= max9611_read_csa_voltage(dev
, &adc_data
,
404 csa_gain
= max9611_gain_conf
[gain_selector
];
406 /* divide by 10^3 here to avoid 32bit overflow */
407 adc_data
-= csa_gain
[CSA_GAIN_OFFS_RAW
];
408 *val
*= MAX9611_VOLTAGE_RAW(adc_data
) *
409 csa_gain
[CSA_GAIN_LSB_nV
] / 1000;
410 *val2
= dev
->shunt_resistor_uohm
;
412 return IIO_VAL_FRACTIONAL
;
421 static ssize_t
max9611_shunt_resistor_show(struct device
*dev
,
422 struct device_attribute
*attr
,
425 struct max9611_dev
*max9611
= iio_priv(dev_to_iio_dev(dev
));
428 i
= max9611
->shunt_resistor_uohm
/ 1000000;
429 r
= max9611
->shunt_resistor_uohm
% 1000000;
431 return sprintf(buf
, "%u.%06u\n", i
, r
);
434 static IIO_DEVICE_ATTR(in_power_shunt_resistor
, 0444,
435 max9611_shunt_resistor_show
, NULL
, 0);
436 static IIO_DEVICE_ATTR(in_current_shunt_resistor
, 0444,
437 max9611_shunt_resistor_show
, NULL
, 0);
439 static struct attribute
*max9611_attributes
[] = {
440 &iio_dev_attr_in_power_shunt_resistor
.dev_attr
.attr
,
441 &iio_dev_attr_in_current_shunt_resistor
.dev_attr
.attr
,
445 static const struct attribute_group max9611_attribute_group
= {
446 .attrs
= max9611_attributes
,
449 static const struct iio_info indio_info
= {
450 .read_raw
= max9611_read_raw
,
451 .attrs
= &max9611_attribute_group
,
454 static int max9611_init(struct max9611_dev
*max9611
)
456 struct i2c_client
*client
= max9611
->i2c_client
;
460 if (!i2c_check_functionality(client
->adapter
,
461 I2C_FUNC_SMBUS_WRITE_BYTE
|
462 I2C_FUNC_SMBUS_READ_WORD_DATA
)) {
463 dev_err(max9611
->dev
,
464 "I2c adapter does not support smbus write_byte or read_word functionalities: aborting probe.\n");
468 /* Make sure die temperature is in range to test communications. */
469 ret
= max9611_read_single(max9611
, CONF_TEMP
, ®val
);
473 regval
&= MAX9611_TEMP_MASK
;
475 if ((regval
> MAX9611_TEMP_MAX_POS
&&
476 regval
< MAX9611_TEMP_MIN_NEG
) ||
477 regval
> MAX9611_TEMP_MAX_NEG
) {
478 dev_err(max9611
->dev
,
479 "Invalid value received from ADC 0x%4x: aborting\n",
484 /* Mux shall be zeroed back before applying other configurations */
485 ret
= i2c_smbus_write_byte_data(max9611
->i2c_client
,
486 MAX9611_REG_CTRL1
, 0);
488 dev_err(max9611
->dev
, "i2c write byte failed: 0x%2x - 0x%2x\n",
489 MAX9611_REG_CTRL1
, 0);
493 ret
= i2c_smbus_write_byte_data(max9611
->i2c_client
,
494 MAX9611_REG_CTRL2
, 0);
496 dev_err(max9611
->dev
, "i2c write byte failed: 0x%2x - 0x%2x\n",
497 MAX9611_REG_CTRL2
, 0);
500 usleep_range(MAX9611_CONV_TIME_US_RANGE
);
505 static const struct of_device_id max9611_of_table
[] = {
506 {.compatible
= "maxim,max9611", .data
= "max9611"},
507 {.compatible
= "maxim,max9612", .data
= "max9612"},
511 MODULE_DEVICE_TABLE(of
, max9611_of_table
);
512 static int max9611_probe(struct i2c_client
*client
,
513 const struct i2c_device_id
*id
)
515 const char * const shunt_res_prop
= "shunt-resistor-micro-ohms";
516 const struct device_node
*of_node
= client
->dev
.of_node
;
517 const struct of_device_id
*of_id
=
518 of_match_device(max9611_of_table
, &client
->dev
);
519 struct max9611_dev
*max9611
;
520 struct iio_dev
*indio_dev
;
521 unsigned int of_shunt
;
524 indio_dev
= devm_iio_device_alloc(&client
->dev
, sizeof(*max9611
));
528 i2c_set_clientdata(client
, indio_dev
);
530 max9611
= iio_priv(indio_dev
);
531 max9611
->dev
= &client
->dev
;
532 max9611
->i2c_client
= client
;
533 mutex_init(&max9611
->lock
);
535 ret
= of_property_read_u32(of_node
, shunt_res_prop
, &of_shunt
);
537 dev_err(&client
->dev
,
538 "Missing %s property for %pOF node\n",
539 shunt_res_prop
, of_node
);
542 max9611
->shunt_resistor_uohm
= of_shunt
;
544 ret
= max9611_init(max9611
);
548 indio_dev
->name
= of_id
->data
;
549 indio_dev
->modes
= INDIO_DIRECT_MODE
;
550 indio_dev
->info
= &indio_info
;
551 indio_dev
->channels
= max9611_channels
;
552 indio_dev
->num_channels
= ARRAY_SIZE(max9611_channels
);
554 return devm_iio_device_register(&client
->dev
, indio_dev
);
557 static struct i2c_driver max9611_driver
= {
560 .of_match_table
= max9611_of_table
,
562 .probe
= max9611_probe
,
564 module_i2c_driver(max9611_driver
);
566 MODULE_AUTHOR("Jacopo Mondi <jacopo+renesas@jmondi.org>");
567 MODULE_DESCRIPTION("Maxim max9611/12 current sense amplifier with 12bit ADC");
568 MODULE_LICENSE("GPL v2");