1 // SPDX-License-Identifier: GPL-2.0
3 * ADM1177 Hot Swap Controller and Digital Power Monitor with Soft Start Pin
5 * Copyright 2015-2019 Analog Devices Inc.
8 #include <linux/bits.h>
9 #include <linux/device.h>
10 #include <linux/hwmon.h>
11 #include <linux/i2c.h>
12 #include <linux/init.h>
13 #include <linux/module.h>
14 #include <linux/regulator/consumer.h>
16 /* Command Byte Operations */
17 #define ADM1177_CMD_V_CONT BIT(0)
18 #define ADM1177_CMD_I_CONT BIT(2)
19 #define ADM1177_CMD_VRANGE BIT(4)
21 /* Extended Register */
22 #define ADM1177_REG_ALERT_TH 2
24 #define ADM1177_BITS 12
27 * struct adm1177_state - driver instance specific data
28 * @client pointer to i2c client
29 * @reg regulator info for the the power supply of the device
30 * @r_sense_uohm current sense resistor value
31 * @alert_threshold_ua current limit for shutdown
32 * @vrange_high internal voltage divider
34 struct adm1177_state
{
35 struct i2c_client
*client
;
36 struct regulator
*reg
;
38 u32 alert_threshold_ua
;
42 static int adm1177_read_raw(struct adm1177_state
*st
, u8 num
, u8
*data
)
44 return i2c_master_recv(st
->client
, data
, num
);
47 static int adm1177_write_cmd(struct adm1177_state
*st
, u8 cmd
)
49 return i2c_smbus_write_byte(st
->client
, cmd
);
52 static int adm1177_write_alert_thr(struct adm1177_state
*st
,
53 u32 alert_threshold_ua
)
58 val
= 0xFFULL
* alert_threshold_ua
* st
->r_sense_uohm
;
59 val
= div_u64(val
, 105840000U);
60 val
= div_u64(val
, 1000U);
64 ret
= i2c_smbus_write_byte_data(st
->client
, ADM1177_REG_ALERT_TH
,
69 st
->alert_threshold_ua
= alert_threshold_ua
;
73 static int adm1177_read(struct device
*dev
, enum hwmon_sensor_types type
,
74 u32 attr
, int channel
, long *val
)
76 struct adm1177_state
*st
= dev_get_drvdata(dev
);
84 case hwmon_curr_input
:
85 ret
= adm1177_read_raw(st
, 3, data
);
88 dummy
= (data
[1] << 4) | (data
[2] & 0xF);
90 * convert to milliamperes
91 * ((105.84mV / 4096) x raw) / senseResistor(ohm)
93 *val
= div_u64((105840000ull * dummy
),
94 4096 * st
->r_sense_uohm
);
96 case hwmon_curr_max_alarm
:
97 *val
= st
->alert_threshold_ua
;
103 ret
= adm1177_read_raw(st
, 3, data
);
106 dummy
= (data
[0] << 4) | (data
[2] >> 4);
108 * convert to millivolts based on resistor devision
109 * (V_fullscale / 4096) * raw
116 *val
= DIV_ROUND_CLOSEST(dummy
, 4096);
123 static int adm1177_write(struct device
*dev
, enum hwmon_sensor_types type
,
124 u32 attr
, int channel
, long val
)
126 struct adm1177_state
*st
= dev_get_drvdata(dev
);
131 case hwmon_curr_max_alarm
:
132 adm1177_write_alert_thr(st
, val
);
142 static umode_t
adm1177_is_visible(const void *data
,
143 enum hwmon_sensor_types type
,
144 u32 attr
, int channel
)
146 const struct adm1177_state
*st
= data
;
157 case hwmon_curr_input
:
158 if (st
->r_sense_uohm
)
161 case hwmon_curr_max_alarm
:
162 if (st
->r_sense_uohm
)
173 static const struct hwmon_channel_info
*adm1177_info
[] = {
174 HWMON_CHANNEL_INFO(curr
,
175 HWMON_C_INPUT
| HWMON_C_MAX_ALARM
),
176 HWMON_CHANNEL_INFO(in
,
181 static const struct hwmon_ops adm1177_hwmon_ops
= {
182 .is_visible
= adm1177_is_visible
,
183 .read
= adm1177_read
,
184 .write
= adm1177_write
,
187 static const struct hwmon_chip_info adm1177_chip_info
= {
188 .ops
= &adm1177_hwmon_ops
,
189 .info
= adm1177_info
,
192 static void adm1177_remove(void *data
)
194 struct adm1177_state
*st
= data
;
196 regulator_disable(st
->reg
);
199 static int adm1177_probe(struct i2c_client
*client
,
200 const struct i2c_device_id
*id
)
202 struct device
*dev
= &client
->dev
;
203 struct device
*hwmon_dev
;
204 struct adm1177_state
*st
;
205 u32 alert_threshold_ua
;
208 st
= devm_kzalloc(dev
, sizeof(*st
), GFP_KERNEL
);
214 st
->reg
= devm_regulator_get_optional(&client
->dev
, "vref");
215 if (IS_ERR(st
->reg
)) {
216 if (PTR_ERR(st
->reg
) == -EPROBE_DEFER
)
217 return -EPROBE_DEFER
;
221 ret
= regulator_enable(st
->reg
);
224 ret
= devm_add_action_or_reset(&client
->dev
, adm1177_remove
,
230 if (device_property_read_u32(dev
, "shunt-resistor-micro-ohms",
232 st
->r_sense_uohm
= 0;
233 if (device_property_read_u32(dev
, "adi,shutdown-threshold-microamp",
234 &alert_threshold_ua
)) {
235 if (st
->r_sense_uohm
)
237 * set maximum default value from datasheet based on
240 alert_threshold_ua
= div_u64(105840000000,
243 alert_threshold_ua
= 0;
245 st
->vrange_high
= device_property_read_bool(dev
,
246 "adi,vrange-high-enable");
247 if (alert_threshold_ua
&& st
->r_sense_uohm
)
248 adm1177_write_alert_thr(st
, alert_threshold_ua
);
250 ret
= adm1177_write_cmd(st
, ADM1177_CMD_V_CONT
|
252 (st
->vrange_high
? 0 : ADM1177_CMD_VRANGE
));
257 devm_hwmon_device_register_with_info(dev
, client
->name
, st
,
258 &adm1177_chip_info
, NULL
);
259 return PTR_ERR_OR_ZERO(hwmon_dev
);
262 static const struct i2c_device_id adm1177_id
[] = {
266 MODULE_DEVICE_TABLE(i2c
, adm1177_id
);
268 static const struct of_device_id adm1177_dt_ids
[] = {
269 { .compatible
= "adi,adm1177" },
272 MODULE_DEVICE_TABLE(of
, adm1177_dt_ids
);
274 static struct i2c_driver adm1177_driver
= {
275 .class = I2C_CLASS_HWMON
,
278 .of_match_table
= adm1177_dt_ids
,
280 .probe
= adm1177_probe
,
281 .id_table
= adm1177_id
,
283 module_i2c_driver(adm1177_driver
);
285 MODULE_AUTHOR("Beniamin Bia <beniamin.bia@analog.com>");
286 MODULE_AUTHOR("Michael Hennerich <michael.hennerich@analog.com>");
287 MODULE_DESCRIPTION("Analog Devices ADM1177 ADC driver");
288 MODULE_LICENSE("GPL v2");