blob: 662a51749406a35f8a51ecfeaa5f32f7aa4b15da [file] [log] [blame]
Anton Vorontsov4a11b592007-05-04 00:27:45 +04001/*
2 * Universal power supply monitor class
3 *
4 * Copyright © 2007 Anton Vorontsov <cbou@mail.ru>
5 * Copyright © 2004 Szabolcs Gyurko
6 * Copyright © 2003 Ian Molton <spyro@f2s.com>
7 *
8 * Modified: 2004, Oct Szabolcs Gyurko
9 *
10 * You may use this code as per GPL version 2
11 */
12
13#ifndef __LINUX_POWER_SUPPLY_H__
14#define __LINUX_POWER_SUPPLY_H__
15
Arve Hjønnevåg836ad482009-09-21 17:26:47 -070016#include <linux/wakelock.h>
Anton Vorontsov4a11b592007-05-04 00:27:45 +040017#include <linux/workqueue.h>
18#include <linux/leds.h>
19
Paul Gortmaker313162d2012-01-30 11:46:54 -050020struct device;
21
Anton Vorontsov4a11b592007-05-04 00:27:45 +040022/*
23 * All voltages, currents, charges, energies, time and temperatures in uV,
24 * µA, µAh, µWh, seconds and tenths of degree Celsius unless otherwise
25 * stated. It's driver's job to convert its raw values to units in which
26 * this class operates.
27 */
28
29/*
30 * For systems where the charger determines the maximum battery capacity
31 * the min and max fields should be used to present these values to user
32 * space. Unused/unknown fields will not appear in sysfs.
33 */
34
35enum {
36 POWER_SUPPLY_STATUS_UNKNOWN = 0,
37 POWER_SUPPLY_STATUS_CHARGING,
38 POWER_SUPPLY_STATUS_DISCHARGING,
39 POWER_SUPPLY_STATUS_NOT_CHARGING,
40 POWER_SUPPLY_STATUS_FULL,
41};
42
43enum {
Andres Salomonee8076e2009-07-02 09:45:18 -040044 POWER_SUPPLY_CHARGE_TYPE_UNKNOWN = 0,
45 POWER_SUPPLY_CHARGE_TYPE_NONE,
46 POWER_SUPPLY_CHARGE_TYPE_TRICKLE,
47 POWER_SUPPLY_CHARGE_TYPE_FAST,
48};
49
50enum {
Anton Vorontsov4a11b592007-05-04 00:27:45 +040051 POWER_SUPPLY_HEALTH_UNKNOWN = 0,
52 POWER_SUPPLY_HEALTH_GOOD,
53 POWER_SUPPLY_HEALTH_OVERHEAT,
54 POWER_SUPPLY_HEALTH_DEAD,
55 POWER_SUPPLY_HEALTH_OVERVOLTAGE,
56 POWER_SUPPLY_HEALTH_UNSPEC_FAILURE,
Mark Brown7e386e62008-11-30 22:43:21 +010057 POWER_SUPPLY_HEALTH_COLD,
Anton Vorontsov4a11b592007-05-04 00:27:45 +040058};
59
60enum {
61 POWER_SUPPLY_TECHNOLOGY_UNKNOWN = 0,
62 POWER_SUPPLY_TECHNOLOGY_NiMH,
63 POWER_SUPPLY_TECHNOLOGY_LION,
64 POWER_SUPPLY_TECHNOLOGY_LIPO,
65 POWER_SUPPLY_TECHNOLOGY_LiFe,
66 POWER_SUPPLY_TECHNOLOGY_NiCd,
Dmitry Baryshkovc7cc9302008-01-07 04:12:41 +030067 POWER_SUPPLY_TECHNOLOGY_LiMn,
Anton Vorontsov4a11b592007-05-04 00:27:45 +040068};
69
Andres Salomonb294a292009-06-30 02:13:01 -040070enum {
71 POWER_SUPPLY_CAPACITY_LEVEL_UNKNOWN = 0,
72 POWER_SUPPLY_CAPACITY_LEVEL_CRITICAL,
73 POWER_SUPPLY_CAPACITY_LEVEL_LOW,
74 POWER_SUPPLY_CAPACITY_LEVEL_NORMAL,
75 POWER_SUPPLY_CAPACITY_LEVEL_HIGH,
76 POWER_SUPPLY_CAPACITY_LEVEL_FULL,
77};
78
Jeremy Fitzhardinge25a0bc22011-12-07 11:24:20 -080079enum {
80 POWER_SUPPLY_SCOPE_UNKNOWN = 0,
81 POWER_SUPPLY_SCOPE_SYSTEM,
82 POWER_SUPPLY_SCOPE_DEVICE,
83};
84
Anton Vorontsov4a11b592007-05-04 00:27:45 +040085enum power_supply_property {
86 /* Properties of type `int' */
87 POWER_SUPPLY_PROP_STATUS = 0,
Andres Salomonee8076e2009-07-02 09:45:18 -040088 POWER_SUPPLY_PROP_CHARGE_TYPE,
Anton Vorontsov4a11b592007-05-04 00:27:45 +040089 POWER_SUPPLY_PROP_HEALTH,
90 POWER_SUPPLY_PROP_PRESENT,
91 POWER_SUPPLY_PROP_ONLINE,
92 POWER_SUPPLY_PROP_TECHNOLOGY,
Alexey Starikovskiyc955fe82009-10-15 14:31:30 +040093 POWER_SUPPLY_PROP_CYCLE_COUNT,
Dmitry Baryshkovc7cc9302008-01-07 04:12:41 +030094 POWER_SUPPLY_PROP_VOLTAGE_MAX,
95 POWER_SUPPLY_PROP_VOLTAGE_MIN,
Anton Vorontsov4a11b592007-05-04 00:27:45 +040096 POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN,
97 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
98 POWER_SUPPLY_PROP_VOLTAGE_NOW,
99 POWER_SUPPLY_PROP_VOLTAGE_AVG,
Heikki Krogerusfe3f6d02010-10-04 10:51:38 +0300100 POWER_SUPPLY_PROP_CURRENT_MAX,
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400101 POWER_SUPPLY_PROP_CURRENT_NOW,
102 POWER_SUPPLY_PROP_CURRENT_AVG,
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400103 POWER_SUPPLY_PROP_POWER_NOW,
104 POWER_SUPPLY_PROP_POWER_AVG,
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400105 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
106 POWER_SUPPLY_PROP_CHARGE_EMPTY_DESIGN,
107 POWER_SUPPLY_PROP_CHARGE_FULL,
108 POWER_SUPPLY_PROP_CHARGE_EMPTY,
109 POWER_SUPPLY_PROP_CHARGE_NOW,
110 POWER_SUPPLY_PROP_CHARGE_AVG,
Andres Salomon8e552c32008-05-12 21:46:29 -0400111 POWER_SUPPLY_PROP_CHARGE_COUNTER,
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400112 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
113 POWER_SUPPLY_PROP_ENERGY_EMPTY_DESIGN,
114 POWER_SUPPLY_PROP_ENERGY_FULL,
115 POWER_SUPPLY_PROP_ENERGY_EMPTY,
116 POWER_SUPPLY_PROP_ENERGY_NOW,
117 POWER_SUPPLY_PROP_ENERGY_AVG,
118 POWER_SUPPLY_PROP_CAPACITY, /* in percents! */
Andres Salomonb294a292009-06-30 02:13:01 -0400119 POWER_SUPPLY_PROP_CAPACITY_LEVEL,
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400120 POWER_SUPPLY_PROP_TEMP,
121 POWER_SUPPLY_PROP_TEMP_AMBIENT,
122 POWER_SUPPLY_PROP_TIME_TO_EMPTY_NOW,
123 POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG,
124 POWER_SUPPLY_PROP_TIME_TO_FULL_NOW,
125 POWER_SUPPLY_PROP_TIME_TO_FULL_AVG,
Anton Vorontsov5f487cd2010-05-18 21:49:51 +0200126 POWER_SUPPLY_PROP_TYPE, /* use power_supply.type instead */
Jeremy Fitzhardinge25a0bc22011-12-07 11:24:20 -0800127 POWER_SUPPLY_PROP_SCOPE,
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400128 /* Properties of type `const char *' */
129 POWER_SUPPLY_PROP_MODEL_NAME,
130 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100131 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Flemmard34f8bd02013-04-30 00:25:58 -0700132#ifdef CONFIG_HTC_BATT_8960
133 POWER_SUPPLY_PROP_OVERLOAD,
134#endif
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400135};
136
137enum power_supply_type {
Kim, Milo9b887222011-11-30 23:08:33 -0800138 POWER_SUPPLY_TYPE_UNKNOWN = 0,
139 POWER_SUPPLY_TYPE_BATTERY,
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400140 POWER_SUPPLY_TYPE_UPS,
141 POWER_SUPPLY_TYPE_MAINS,
Heikki Krogerus85efc8a2010-10-04 10:51:37 +0300142 POWER_SUPPLY_TYPE_USB, /* Standard Downstream Port */
Flemmard34f8bd02013-04-30 00:25:58 -0700143#ifdef CONFIG_HTC_BATT_8960
144 POWER_SUPPLY_TYPE_WIRELESS, /* Wireless Charger */
145#endif
Heikki Krogerus85efc8a2010-10-04 10:51:37 +0300146 POWER_SUPPLY_TYPE_USB_DCP, /* Dedicated Charging Port */
147 POWER_SUPPLY_TYPE_USB_CDP, /* Charging Downstream Port */
148 POWER_SUPPLY_TYPE_USB_ACA, /* Accessory Charger Adapters */
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400149};
150
151union power_supply_propval {
152 int intval;
153 const char *strval;
154};
155
156struct power_supply {
157 const char *name;
158 enum power_supply_type type;
159 enum power_supply_property *properties;
160 size_t num_properties;
161
162 char **supplied_to;
163 size_t num_supplicants;
164
165 int (*get_property)(struct power_supply *psy,
166 enum power_supply_property psp,
167 union power_supply_propval *val);
Daniel Mack0011d2d2010-05-18 21:49:52 +0200168 int (*set_property)(struct power_supply *psy,
169 enum power_supply_property psp,
170 const union power_supply_propval *val);
171 int (*property_is_writeable)(struct power_supply *psy,
172 enum power_supply_property psp);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400173 void (*external_power_changed)(struct power_supply *psy);
Daniel Macke5f5ccb2009-07-23 20:35:53 +0200174 void (*set_charged)(struct power_supply *psy);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400175
176 /* For APM emulation, think legacy userspace. */
177 int use_for_apm;
178
179 /* private */
180 struct device *dev;
181 struct work_struct changed_work;
Arve Hjønnevåg836ad482009-09-21 17:26:47 -0700182 spinlock_t changed_lock;
183 bool changed;
184 struct wake_lock work_wake_lock;
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400185
186#ifdef CONFIG_LEDS_TRIGGERS
187 struct led_trigger *charging_full_trig;
188 char *charging_full_trig_name;
189 struct led_trigger *charging_trig;
190 char *charging_trig_name;
191 struct led_trigger *full_trig;
192 char *full_trig_name;
193 struct led_trigger *online_trig;
194 char *online_trig_name;
Vasily Khoruzhick6501f722011-01-07 18:28:17 +0200195 struct led_trigger *charging_blink_full_solid_trig;
196 char *charging_blink_full_solid_trig_name;
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400197#endif
198};
199
200/*
201 * This is recommended structure to specify static power supply parameters.
202 * Generic one, parametrizable for different power supplies. Power supply
203 * class itself does not use it, but that's what implementing most platform
204 * drivers, should try reuse for consistency.
205 */
206
207struct power_supply_info {
208 const char *name;
209 int technology;
210 int voltage_max_design;
211 int voltage_min_design;
212 int charge_full_design;
213 int charge_empty_design;
214 int energy_full_design;
215 int energy_empty_design;
216 int use_for_apm;
217};
218
David Keitel01a5ff02012-06-01 18:14:50 -0700219#if defined(CONFIG_POWER_SUPPLY) || defined(CONFIG_POWER_SUPPLY_MODULE)
Daniel Macke5f5ccb2009-07-23 20:35:53 +0200220extern struct power_supply *power_supply_get_by_name(char *name);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400221extern void power_supply_changed(struct power_supply *psy);
222extern int power_supply_am_i_supplied(struct power_supply *psy);
Daniel Macke5f5ccb2009-07-23 20:35:53 +0200223extern int power_supply_set_battery_charged(struct power_supply *psy);
Willie Ruane6bee112011-11-06 15:52:52 -0800224extern int power_supply_set_current_limit(struct power_supply *psy, int limit);
David Keitel65ddd842012-01-11 11:59:41 -0800225extern int power_supply_set_online(struct power_supply *psy, bool enable);
Abhijeet Dharmapurikar59d890f2012-06-26 11:19:17 -0700226extern int power_supply_set_scope(struct power_supply *psy, int scope);
David Keitel65ddd842012-01-11 11:59:41 -0800227extern int power_supply_set_charge_type(struct power_supply *psy, int type);
David Keitel01a5ff02012-06-01 18:14:50 -0700228extern int power_supply_set_supply_type(struct power_supply *psy,
229 enum power_supply_type supply_type);
Matthew Garrett942ed162008-08-26 21:09:59 +0100230extern int power_supply_is_system_supplied(void);
231#else
David Keitel01a5ff02012-06-01 18:14:50 -0700232static inline struct power_supply *power_supply_get_by_name(char *name)
233 { return -ENOSYS; }
234static inline int power_supply_am_i_supplied(struct power_supply *psy)
235 { return -ENOSYS; }
236static inline int power_supply_set_battery_charged(struct power_supply *psy)
237 { return -ENOSYS; }
238static inline int power_supply_set_current_limit(struct power_supply *psy,
239 int limit)
240 { return -ENOSYS; }
241static inline int power_supply_set_online(struct power_supply *psy,
242 bool enable)
243 { return -ENOSYS; }
244static inline int power_supply_set_scope(struct power_supply *psy,
245 int scope)
246 { return -ENOSYS; }
247static inline int power_supply_set_charge_type(struct power_supply *psy,
248 int type)
249 { return -ENOSYS; }
250static inline int power_supply_set_supply_type(struct power_supply *psy,
251 enum power_supply_type supply_type);
252 { return -ENOSYS; }
Matthew Garrett942ed162008-08-26 21:09:59 +0100253static inline int power_supply_is_system_supplied(void) { return -ENOSYS; }
254#endif
255
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400256extern int power_supply_register(struct device *parent,
257 struct power_supply *psy);
258extern void power_supply_unregister(struct power_supply *psy);
Jeremy Fitzhardinge83516652011-12-07 09:15:45 -0800259extern int power_supply_powers(struct power_supply *psy, struct device *dev);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400260
261/* For APM emulation, think legacy userspace. */
262extern struct class *power_supply_class;
263
Rhyland Klein51d07562011-01-25 11:10:06 -0800264static inline bool power_supply_is_amp_property(enum power_supply_property psp)
265{
266 switch (psp) {
267 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
268 case POWER_SUPPLY_PROP_CHARGE_EMPTY_DESIGN:
269 case POWER_SUPPLY_PROP_CHARGE_FULL:
270 case POWER_SUPPLY_PROP_CHARGE_EMPTY:
271 case POWER_SUPPLY_PROP_CHARGE_NOW:
272 case POWER_SUPPLY_PROP_CHARGE_AVG:
273 case POWER_SUPPLY_PROP_CHARGE_COUNTER:
274 case POWER_SUPPLY_PROP_CURRENT_MAX:
275 case POWER_SUPPLY_PROP_CURRENT_NOW:
276 case POWER_SUPPLY_PROP_CURRENT_AVG:
277 return 1;
278 default:
279 break;
280 }
281
282 return 0;
283}
284
285static inline bool power_supply_is_watt_property(enum power_supply_property psp)
286{
287 switch (psp) {
288 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
289 case POWER_SUPPLY_PROP_ENERGY_EMPTY_DESIGN:
290 case POWER_SUPPLY_PROP_ENERGY_FULL:
291 case POWER_SUPPLY_PROP_ENERGY_EMPTY:
292 case POWER_SUPPLY_PROP_ENERGY_NOW:
293 case POWER_SUPPLY_PROP_ENERGY_AVG:
294 case POWER_SUPPLY_PROP_VOLTAGE_MAX:
295 case POWER_SUPPLY_PROP_VOLTAGE_MIN:
296 case POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN:
297 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
298 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
299 case POWER_SUPPLY_PROP_VOLTAGE_AVG:
Rhyland Klein35c9d262011-02-28 16:55:31 -0800300 case POWER_SUPPLY_PROP_POWER_NOW:
Rhyland Klein51d07562011-01-25 11:10:06 -0800301 return 1;
302 default:
303 break;
304 }
305
306 return 0;
307}
308
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400309#endif /* __LINUX_POWER_SUPPLY_H__ */