]> asedeno.scripts.mit.edu Git - linux.git/blob - include/linux/power/bq27xxx_battery.h
power: supply: bq27xxx: adds specific support for bq27510-g1 revision.
[linux.git] / include / linux / power / bq27xxx_battery.h
1 #ifndef __LINUX_BQ27X00_BATTERY_H__
2 #define __LINUX_BQ27X00_BATTERY_H__
3
4 enum bq27xxx_chip {
5         BQ27000 = 1, /* bq27000, bq27200 */
6         BQ27010, /* bq27010, bq27210 */
7         BQ2750X, /* bq27500 deprecated alias */
8         BQ2751X, /* bq27510, bq27520 deprecated alias */
9         BQ27500, /* bq27500/1 */
10         BQ27510G1, /* bq27510G1 */
11         BQ27530, /* bq27530, bq27531 */
12         BQ27541, /* bq27541, bq27542, bq27546, bq27742 */
13         BQ27545, /* bq27545 */
14         BQ27421, /* bq27421, bq27425, bq27441, bq27621 */
15 };
16
17 /**
18  * struct bq27xxx_plaform_data - Platform data for bq27xxx devices
19  * @name: Name of the battery.
20  * @chip: Chip class number of this device.
21  * @read: HDQ read callback.
22  *      This function should provide access to the HDQ bus the battery is
23  *      connected to.
24  *      The first parameter is a pointer to the battery device, the second the
25  *      register to be read. The return value should either be the content of
26  *      the passed register or an error value.
27  */
28 struct bq27xxx_platform_data {
29         const char *name;
30         enum bq27xxx_chip chip;
31         int (*read)(struct device *dev, unsigned int);
32 };
33
34 struct bq27xxx_device_info;
35 struct bq27xxx_access_methods {
36         int (*read)(struct bq27xxx_device_info *di, u8 reg, bool single);
37 };
38
39 struct bq27xxx_reg_cache {
40         int temperature;
41         int time_to_empty;
42         int time_to_empty_avg;
43         int time_to_full;
44         int charge_full;
45         int cycle_count;
46         int capacity;
47         int energy;
48         int flags;
49         int power_avg;
50         int health;
51 };
52
53 struct bq27xxx_device_info {
54         struct device *dev;
55         int id;
56         enum bq27xxx_chip chip;
57         const char *name;
58         struct bq27xxx_access_methods bus;
59         struct bq27xxx_reg_cache cache;
60         int charge_design_full;
61         unsigned long last_update;
62         struct delayed_work work;
63         struct power_supply *bat;
64         struct list_head list;
65         struct mutex lock;
66         u8 *regs;
67 };
68
69 void bq27xxx_battery_update(struct bq27xxx_device_info *di);
70 int bq27xxx_battery_setup(struct bq27xxx_device_info *di);
71 void bq27xxx_battery_teardown(struct bq27xxx_device_info *di);
72
73 #endif