2 * I2C client/driver for the Maxim/Dallas DS2782 Stand-Alone Fuel Gauge IC
4 * Copyright (C) 2009 Bluewater Systems Ltd
6 * Author: Ryan Mallon <ryan@bluewatersys.com>
8 * DS2786 added by Yulia Vilensky <vilensky@compulab.co.il>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
16 #include <linux/kernel.h>
17 #include <linux/module.h>
18 #include <linux/types.h>
19 #include <linux/errno.h>
20 #include <linux/swab.h>
21 #include <linux/i2c.h>
22 #include <linux/idr.h>
23 #include <linux/power_supply.h>
24 #include <linux/slab.h>
25 #include <linux/ds2782_battery.h>
27 #define DS2782_REG_RARC 0x06 /* Remaining active relative capacity */
29 #define DS278x_REG_VOLT_MSB 0x0c
30 #define DS278x_REG_TEMP_MSB 0x0a
31 #define DS278x_REG_CURRENT_MSB 0x0e
34 #define DS2782_REG_RSNSP 0x69 /* Sense resistor value */
36 /* Current unit measurement in uA for a 1 milli-ohm sense resistor */
37 #define DS2782_CURRENT_UNITS 1563
39 #define DS2786_REG_RARC 0x02 /* Remaining active relative capacity */
41 #define DS2786_CURRENT_UNITS 25
45 struct ds278x_battery_ops
{
46 int (*get_battery_current
)(struct ds278x_info
*info
, int *current_uA
);
47 int (*get_battery_voltage
)(struct ds278x_info
*info
, int *voltage_uV
);
48 int (*get_battery_capacity
)(struct ds278x_info
*info
, int *capacity
);
51 #define to_ds278x_info(x) container_of(x, struct ds278x_info, battery)
54 struct i2c_client
*client
;
55 struct power_supply battery
;
56 struct ds278x_battery_ops
*ops
;
61 static DEFINE_IDR(battery_id
);
62 static DEFINE_MUTEX(battery_lock
);
64 static inline int ds278x_read_reg(struct ds278x_info
*info
, int reg
, u8
*val
)
68 ret
= i2c_smbus_read_byte_data(info
->client
, reg
);
70 dev_err(&info
->client
->dev
, "register read failed\n");
78 static inline int ds278x_read_reg16(struct ds278x_info
*info
, int reg_msb
,
83 ret
= swab16(i2c_smbus_read_word_data(info
->client
, reg_msb
));
85 dev_err(&info
->client
->dev
, "register read failed\n");
93 static int ds278x_get_temp(struct ds278x_info
*info
, int *temp
)
99 * Temperature is measured in units of 0.125 degrees celcius, the
100 * power_supply class measures temperature in tenths of degrees
101 * celsius. The temperature value is stored as a 10 bit number, plus
102 * sign in the upper bits of a 16 bit register.
104 err
= ds278x_read_reg16(info
, DS278x_REG_TEMP_MSB
, &raw
);
107 *temp
= ((raw
/ 32) * 125) / 100;
111 static int ds2782_get_current(struct ds278x_info
*info
, int *current_uA
)
119 * The units of measurement for current are dependent on the value of
120 * the sense resistor.
122 err
= ds278x_read_reg(info
, DS2782_REG_RSNSP
, &sense_res_raw
);
125 if (sense_res_raw
== 0) {
126 dev_err(&info
->client
->dev
, "sense resistor value is 0\n");
129 sense_res
= 1000 / sense_res_raw
;
131 dev_dbg(&info
->client
->dev
, "sense resistor = %d milli-ohms\n",
133 err
= ds278x_read_reg16(info
, DS278x_REG_CURRENT_MSB
, &raw
);
136 *current_uA
= raw
* (DS2782_CURRENT_UNITS
/ sense_res
);
140 static int ds2782_get_voltage(struct ds278x_info
*info
, int *voltage_uV
)
146 * Voltage is measured in units of 4.88mV. The voltage is stored as
147 * a 10-bit number plus sign, in the upper bits of a 16-bit register
149 err
= ds278x_read_reg16(info
, DS278x_REG_VOLT_MSB
, &raw
);
152 *voltage_uV
= (raw
/ 32) * 4800;
156 static int ds2782_get_capacity(struct ds278x_info
*info
, int *capacity
)
161 err
= ds278x_read_reg(info
, DS2782_REG_RARC
, &raw
);
168 static int ds2786_get_current(struct ds278x_info
*info
, int *current_uA
)
173 err
= ds278x_read_reg16(info
, DS278x_REG_CURRENT_MSB
, &raw
);
176 *current_uA
= (raw
/ 16) * (DS2786_CURRENT_UNITS
/ info
->rsns
);
180 static int ds2786_get_voltage(struct ds278x_info
*info
, int *voltage_uV
)
186 * Voltage is measured in units of 1.22mV. The voltage is stored as
187 * a 10-bit number plus sign, in the upper bits of a 16-bit register
189 err
= ds278x_read_reg16(info
, DS278x_REG_VOLT_MSB
, &raw
);
192 *voltage_uV
= (raw
/ 8) * 1220;
196 static int ds2786_get_capacity(struct ds278x_info
*info
, int *capacity
)
201 err
= ds278x_read_reg(info
, DS2786_REG_RARC
, &raw
);
204 /* Relative capacity is displayed with resolution 0.5 % */
209 static int ds278x_get_status(struct ds278x_info
*info
, int *status
)
215 err
= info
->ops
->get_battery_current(info
, ¤t_uA
);
219 err
= info
->ops
->get_battery_capacity(info
, &capacity
);
224 *status
= POWER_SUPPLY_STATUS_FULL
;
225 else if (current_uA
== 0)
226 *status
= POWER_SUPPLY_STATUS_NOT_CHARGING
;
227 else if (current_uA
< 0)
228 *status
= POWER_SUPPLY_STATUS_DISCHARGING
;
230 *status
= POWER_SUPPLY_STATUS_CHARGING
;
235 static int ds278x_battery_get_property(struct power_supply
*psy
,
236 enum power_supply_property prop
,
237 union power_supply_propval
*val
)
239 struct ds278x_info
*info
= to_ds278x_info(psy
);
243 case POWER_SUPPLY_PROP_STATUS
:
244 ret
= ds278x_get_status(info
, &val
->intval
);
247 case POWER_SUPPLY_PROP_CAPACITY
:
248 ret
= info
->ops
->get_battery_capacity(info
, &val
->intval
);
251 case POWER_SUPPLY_PROP_VOLTAGE_NOW
:
252 ret
= info
->ops
->get_battery_voltage(info
, &val
->intval
);
255 case POWER_SUPPLY_PROP_CURRENT_NOW
:
256 ret
= info
->ops
->get_battery_current(info
, &val
->intval
);
259 case POWER_SUPPLY_PROP_TEMP
:
260 ret
= ds278x_get_temp(info
, &val
->intval
);
270 static enum power_supply_property ds278x_battery_props
[] = {
271 POWER_SUPPLY_PROP_STATUS
,
272 POWER_SUPPLY_PROP_CAPACITY
,
273 POWER_SUPPLY_PROP_VOLTAGE_NOW
,
274 POWER_SUPPLY_PROP_CURRENT_NOW
,
275 POWER_SUPPLY_PROP_TEMP
,
278 static void ds278x_power_supply_init(struct power_supply
*battery
)
280 battery
->type
= POWER_SUPPLY_TYPE_BATTERY
;
281 battery
->properties
= ds278x_battery_props
;
282 battery
->num_properties
= ARRAY_SIZE(ds278x_battery_props
);
283 battery
->get_property
= ds278x_battery_get_property
;
284 battery
->external_power_changed
= NULL
;
287 static int ds278x_battery_remove(struct i2c_client
*client
)
289 struct ds278x_info
*info
= i2c_get_clientdata(client
);
291 power_supply_unregister(&info
->battery
);
292 kfree(info
->battery
.name
);
294 mutex_lock(&battery_lock
);
295 idr_remove(&battery_id
, info
->id
);
296 mutex_unlock(&battery_lock
);
307 static struct ds278x_battery_ops ds278x_ops
[] = {
309 .get_battery_current
= ds2782_get_current
,
310 .get_battery_voltage
= ds2782_get_voltage
,
311 .get_battery_capacity
= ds2782_get_capacity
,
314 .get_battery_current
= ds2786_get_current
,
315 .get_battery_voltage
= ds2786_get_voltage
,
316 .get_battery_capacity
= ds2786_get_capacity
,
320 static int ds278x_battery_probe(struct i2c_client
*client
,
321 const struct i2c_device_id
*id
)
323 struct ds278x_platform_data
*pdata
= client
->dev
.platform_data
;
324 struct ds278x_info
*info
;
329 * ds2786 should have the sense resistor value set
330 * in the platform data
332 if (id
->driver_data
== DS2786
&& !pdata
) {
333 dev_err(&client
->dev
, "missing platform data for ds2786\n");
337 /* Get an ID for this battery */
338 ret
= idr_pre_get(&battery_id
, GFP_KERNEL
);
344 mutex_lock(&battery_lock
);
345 ret
= idr_get_new(&battery_id
, client
, &num
);
346 mutex_unlock(&battery_lock
);
350 info
= kzalloc(sizeof(*info
), GFP_KERNEL
);
356 info
->battery
.name
= kasprintf(GFP_KERNEL
, "%s-%d", client
->name
, num
);
357 if (!info
->battery
.name
) {
362 if (id
->driver_data
== DS2786
)
363 info
->rsns
= pdata
->rsns
;
365 i2c_set_clientdata(client
, info
);
366 info
->client
= client
;
368 info
->ops
= &ds278x_ops
[id
->driver_data
];
369 ds278x_power_supply_init(&info
->battery
);
371 ret
= power_supply_register(&client
->dev
, &info
->battery
);
373 dev_err(&client
->dev
, "failed to register battery\n");
380 kfree(info
->battery
.name
);
384 mutex_lock(&battery_lock
);
385 idr_remove(&battery_id
, num
);
386 mutex_unlock(&battery_lock
);
391 static const struct i2c_device_id ds278x_id
[] = {
396 MODULE_DEVICE_TABLE(i2c
, ds278x_id
);
398 static struct i2c_driver ds278x_battery_driver
= {
400 .name
= "ds2782-battery",
402 .probe
= ds278x_battery_probe
,
403 .remove
= ds278x_battery_remove
,
404 .id_table
= ds278x_id
,
407 static int __init
ds278x_init(void)
409 return i2c_add_driver(&ds278x_battery_driver
);
411 module_init(ds278x_init
);
413 static void __exit
ds278x_exit(void)
415 i2c_del_driver(&ds278x_battery_driver
);
417 module_exit(ds278x_exit
);
419 MODULE_AUTHOR("Ryan Mallon <ryan@bluewatersys.com>");
420 MODULE_DESCRIPTION("Maxim/Dallas DS2782 Stand-Alone Fuel Gauage IC driver");
421 MODULE_LICENSE("GPL");