1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Driver for Linear Technology LTC4260 I2C Positive Voltage Hot Swap Controller
5 * Copyright (c) 2014 Guenter Roeck
8 #include <linux/kernel.h>
9 #include <linux/module.h>
10 #include <linux/err.h>
11 #include <linux/slab.h>
12 #include <linux/i2c.h>
13 #include <linux/hwmon.h>
14 #include <linux/hwmon-sysfs.h>
15 #include <linux/jiffies.h>
16 #include <linux/regmap.h>
19 #define LTC4260_CONTROL 0x00
20 #define LTC4260_ALERT 0x01
21 #define LTC4260_STATUS 0x02
22 #define LTC4260_FAULT 0x03
23 #define LTC4260_SENSE 0x04
24 #define LTC4260_SOURCE 0x05
25 #define LTC4260_ADIN 0x06
30 #define FAULT_OV (1 << 0)
31 #define FAULT_UV (1 << 1)
32 #define FAULT_OC (1 << 2)
33 #define FAULT_POWER_BAD (1 << 3)
34 #define FAULT_FET_SHORT (1 << 5)
36 /* Return the voltage from the given register in mV or mA */
37 static int ltc4260_get_value(struct device
*dev
, u8 reg
)
39 struct regmap
*regmap
= dev_get_drvdata(dev
);
43 ret
= regmap_read(regmap
, reg
, &val
);
49 /* 10 mV resolution. Convert to mV. */
53 /* 400 mV resolution. Convert to mV. */
58 * 300 uV resolution. Convert to current as measured with
59 * an 1 mOhm sense resistor, in mA. If a different sense
60 * resistor is installed, calculate the actual current by
61 * dividing the reported current by the sense resistor value
73 static ssize_t
ltc4260_value_show(struct device
*dev
,
74 struct device_attribute
*da
, char *buf
)
76 struct sensor_device_attribute
*attr
= to_sensor_dev_attr(da
);
79 value
= ltc4260_get_value(dev
, attr
->index
);
82 return snprintf(buf
, PAGE_SIZE
, "%d\n", value
);
85 static ssize_t
ltc4260_bool_show(struct device
*dev
,
86 struct device_attribute
*da
, char *buf
)
88 struct sensor_device_attribute
*attr
= to_sensor_dev_attr(da
);
89 struct regmap
*regmap
= dev_get_drvdata(dev
);
93 ret
= regmap_read(regmap
, LTC4260_FAULT
, &fault
);
98 if (fault
) /* Clear reported faults in chip register */
99 regmap_update_bits(regmap
, LTC4260_FAULT
, attr
->index
, 0);
101 return snprintf(buf
, PAGE_SIZE
, "%d\n", !!fault
);
105 static SENSOR_DEVICE_ATTR_RO(in1_input
, ltc4260_value
, LTC4260_SOURCE
);
106 static SENSOR_DEVICE_ATTR_RO(in2_input
, ltc4260_value
, LTC4260_ADIN
);
110 * UV/OV faults are associated with the input voltage, and the POWER BAD and
111 * FET SHORT faults are associated with the output voltage.
113 static SENSOR_DEVICE_ATTR_RO(in1_min_alarm
, ltc4260_bool
, FAULT_UV
);
114 static SENSOR_DEVICE_ATTR_RO(in1_max_alarm
, ltc4260_bool
, FAULT_OV
);
115 static SENSOR_DEVICE_ATTR_RO(in2_alarm
, ltc4260_bool
,
116 FAULT_POWER_BAD
| FAULT_FET_SHORT
);
118 /* Current (via sense resistor) */
119 static SENSOR_DEVICE_ATTR_RO(curr1_input
, ltc4260_value
, LTC4260_SENSE
);
121 /* Overcurrent alarm */
122 static SENSOR_DEVICE_ATTR_RO(curr1_max_alarm
, ltc4260_bool
, FAULT_OC
);
124 static struct attribute
*ltc4260_attrs
[] = {
125 &sensor_dev_attr_in1_input
.dev_attr
.attr
,
126 &sensor_dev_attr_in1_min_alarm
.dev_attr
.attr
,
127 &sensor_dev_attr_in1_max_alarm
.dev_attr
.attr
,
128 &sensor_dev_attr_in2_input
.dev_attr
.attr
,
129 &sensor_dev_attr_in2_alarm
.dev_attr
.attr
,
131 &sensor_dev_attr_curr1_input
.dev_attr
.attr
,
132 &sensor_dev_attr_curr1_max_alarm
.dev_attr
.attr
,
136 ATTRIBUTE_GROUPS(ltc4260
);
138 static const struct regmap_config ltc4260_regmap_config
= {
141 .max_register
= LTC4260_ADIN
,
144 static int ltc4260_probe(struct i2c_client
*client
,
145 const struct i2c_device_id
*id
)
147 struct device
*dev
= &client
->dev
;
148 struct device
*hwmon_dev
;
149 struct regmap
*regmap
;
151 regmap
= devm_regmap_init_i2c(client
, <c4260_regmap_config
);
152 if (IS_ERR(regmap
)) {
153 dev_err(dev
, "failed to allocate register map\n");
154 return PTR_ERR(regmap
);
158 regmap_write(regmap
, LTC4260_FAULT
, 0x00);
160 hwmon_dev
= devm_hwmon_device_register_with_groups(dev
, client
->name
,
163 return PTR_ERR_OR_ZERO(hwmon_dev
);
166 static const struct i2c_device_id ltc4260_id
[] = {
171 MODULE_DEVICE_TABLE(i2c
, ltc4260_id
);
173 static struct i2c_driver ltc4260_driver
= {
177 .probe
= ltc4260_probe
,
178 .id_table
= ltc4260_id
,
181 module_i2c_driver(ltc4260_driver
);
183 MODULE_AUTHOR("Guenter Roeck <linux@roeck-us.net>");
184 MODULE_DESCRIPTION("LTC4260 driver");
185 MODULE_LICENSE("GPL");