blob: 22b004ef245e2854679d1f91683c18bd6d2e92b4 [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,
David Keitel4a8afa72013-06-10 11:09:11 -070054 POWER_SUPPLY_HEALTH_WARM,
Anton Vorontsov4a11b592007-05-04 00:27:45 +040055 POWER_SUPPLY_HEALTH_DEAD,
56 POWER_SUPPLY_HEALTH_OVERVOLTAGE,
57 POWER_SUPPLY_HEALTH_UNSPEC_FAILURE,
Mark Brown7e386e62008-11-30 22:43:21 +010058 POWER_SUPPLY_HEALTH_COLD,
David Keitel4a8afa72013-06-10 11:09:11 -070059 POWER_SUPPLY_HEALTH_COOL,
Anton Vorontsov4a11b592007-05-04 00:27:45 +040060};
61
62enum {
63 POWER_SUPPLY_TECHNOLOGY_UNKNOWN = 0,
64 POWER_SUPPLY_TECHNOLOGY_NiMH,
65 POWER_SUPPLY_TECHNOLOGY_LION,
66 POWER_SUPPLY_TECHNOLOGY_LIPO,
67 POWER_SUPPLY_TECHNOLOGY_LiFe,
68 POWER_SUPPLY_TECHNOLOGY_NiCd,
Dmitry Baryshkovc7cc9302008-01-07 04:12:41 +030069 POWER_SUPPLY_TECHNOLOGY_LiMn,
Anton Vorontsov4a11b592007-05-04 00:27:45 +040070};
71
Andres Salomonb294a292009-06-30 02:13:01 -040072enum {
73 POWER_SUPPLY_CAPACITY_LEVEL_UNKNOWN = 0,
74 POWER_SUPPLY_CAPACITY_LEVEL_CRITICAL,
75 POWER_SUPPLY_CAPACITY_LEVEL_LOW,
76 POWER_SUPPLY_CAPACITY_LEVEL_NORMAL,
77 POWER_SUPPLY_CAPACITY_LEVEL_HIGH,
78 POWER_SUPPLY_CAPACITY_LEVEL_FULL,
79};
80
Jeremy Fitzhardinge25a0bc22011-12-07 11:24:20 -080081enum {
82 POWER_SUPPLY_SCOPE_UNKNOWN = 0,
83 POWER_SUPPLY_SCOPE_SYSTEM,
84 POWER_SUPPLY_SCOPE_DEVICE,
85};
86
Anton Vorontsov4a11b592007-05-04 00:27:45 +040087enum power_supply_property {
88 /* Properties of type `int' */
89 POWER_SUPPLY_PROP_STATUS = 0,
Andres Salomonee8076e2009-07-02 09:45:18 -040090 POWER_SUPPLY_PROP_CHARGE_TYPE,
Anton Vorontsov4a11b592007-05-04 00:27:45 +040091 POWER_SUPPLY_PROP_HEALTH,
92 POWER_SUPPLY_PROP_PRESENT,
93 POWER_SUPPLY_PROP_ONLINE,
David Keitel50187782012-10-15 10:41:16 -070094 POWER_SUPPLY_PROP_CHARGING_ENABLED,
Anton Vorontsov4a11b592007-05-04 00:27:45 +040095 POWER_SUPPLY_PROP_TECHNOLOGY,
Alexey Starikovskiyc955fe82009-10-15 14:31:30 +040096 POWER_SUPPLY_PROP_CYCLE_COUNT,
Dmitry Baryshkovc7cc9302008-01-07 04:12:41 +030097 POWER_SUPPLY_PROP_VOLTAGE_MAX,
98 POWER_SUPPLY_PROP_VOLTAGE_MIN,
Anton Vorontsov4a11b592007-05-04 00:27:45 +040099 POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN,
100 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
101 POWER_SUPPLY_PROP_VOLTAGE_NOW,
102 POWER_SUPPLY_PROP_VOLTAGE_AVG,
David Keitel337bd862013-07-15 21:42:58 -0700103 POWER_SUPPLY_PROP_INPUT_VOLTAGE_REGULATION,
Ramakrishna Pallaladc7ef2b2012-04-10 16:21:20 +0530104 POWER_SUPPLY_PROP_VOLTAGE_OCV,
Heikki Krogerusfe3f6d02010-10-04 10:51:38 +0300105 POWER_SUPPLY_PROP_CURRENT_MAX,
David Keitel337bd862013-07-15 21:42:58 -0700106 POWER_SUPPLY_PROP_INPUT_CURRENT_MAX,
David Keitel2586f0a2013-08-20 10:02:26 -0700107 POWER_SUPPLY_PROP_INPUT_CURRENT_TRIM,
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400108 POWER_SUPPLY_PROP_CURRENT_NOW,
109 POWER_SUPPLY_PROP_CURRENT_AVG,
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400110 POWER_SUPPLY_PROP_POWER_NOW,
111 POWER_SUPPLY_PROP_POWER_AVG,
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400112 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
113 POWER_SUPPLY_PROP_CHARGE_EMPTY_DESIGN,
114 POWER_SUPPLY_PROP_CHARGE_FULL,
115 POWER_SUPPLY_PROP_CHARGE_EMPTY,
116 POWER_SUPPLY_PROP_CHARGE_NOW,
117 POWER_SUPPLY_PROP_CHARGE_AVG,
Andres Salomon8e552c32008-05-12 21:46:29 -0400118 POWER_SUPPLY_PROP_CHARGE_COUNTER,
Xiaozhe Shif6cdb1a2013-05-02 15:54:27 -0700119 POWER_SUPPLY_PROP_CHARGE_COUNTER_SHADOW,
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400120 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
121 POWER_SUPPLY_PROP_ENERGY_EMPTY_DESIGN,
122 POWER_SUPPLY_PROP_ENERGY_FULL,
123 POWER_SUPPLY_PROP_ENERGY_EMPTY,
124 POWER_SUPPLY_PROP_ENERGY_NOW,
125 POWER_SUPPLY_PROP_ENERGY_AVG,
126 POWER_SUPPLY_PROP_CAPACITY, /* in percents! */
Andres Salomonb294a292009-06-30 02:13:01 -0400127 POWER_SUPPLY_PROP_CAPACITY_LEVEL,
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400128 POWER_SUPPLY_PROP_TEMP,
David Keitelec3c09802013-06-13 13:05:30 -0700129 POWER_SUPPLY_PROP_COOL_TEMP,
130 POWER_SUPPLY_PROP_WARM_TEMP,
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400131 POWER_SUPPLY_PROP_TEMP_AMBIENT,
132 POWER_SUPPLY_PROP_TIME_TO_EMPTY_NOW,
133 POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG,
134 POWER_SUPPLY_PROP_TIME_TO_FULL_NOW,
135 POWER_SUPPLY_PROP_TIME_TO_FULL_AVG,
Anton Vorontsov5f487cd2010-05-18 21:49:51 +0200136 POWER_SUPPLY_PROP_TYPE, /* use power_supply.type instead */
Jeremy Fitzhardinge25a0bc22011-12-07 11:24:20 -0800137 POWER_SUPPLY_PROP_SCOPE,
David Keitelbe208252013-01-31 14:49:25 -0800138 POWER_SUPPLY_PROP_SYSTEM_TEMP_LEVEL,
Xiaozhe Shi2b086f42013-05-02 15:54:27 -0700139 POWER_SUPPLY_PROP_RESISTANCE,
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400140 /* Properties of type `const char *' */
141 POWER_SUPPLY_PROP_MODEL_NAME,
142 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100143 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400144};
145
146enum power_supply_type {
Kim, Milo9b887222011-11-30 23:08:33 -0800147 POWER_SUPPLY_TYPE_UNKNOWN = 0,
148 POWER_SUPPLY_TYPE_BATTERY,
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400149 POWER_SUPPLY_TYPE_UPS,
150 POWER_SUPPLY_TYPE_MAINS,
Heikki Krogerus85efc8a2010-10-04 10:51:37 +0300151 POWER_SUPPLY_TYPE_USB, /* Standard Downstream Port */
152 POWER_SUPPLY_TYPE_USB_DCP, /* Dedicated Charging Port */
153 POWER_SUPPLY_TYPE_USB_CDP, /* Charging Downstream Port */
154 POWER_SUPPLY_TYPE_USB_ACA, /* Accessory Charger Adapters */
Xiaozhe Shife73e792012-09-05 11:19:37 -0700155 POWER_SUPPLY_TYPE_BMS, /* Battery Monitor System */
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400156};
157
158union power_supply_propval {
159 int intval;
160 const char *strval;
161};
162
163struct power_supply {
164 const char *name;
165 enum power_supply_type type;
166 enum power_supply_property *properties;
167 size_t num_properties;
168
169 char **supplied_to;
170 size_t num_supplicants;
171
172 int (*get_property)(struct power_supply *psy,
173 enum power_supply_property psp,
174 union power_supply_propval *val);
Daniel Mack0011d2d2010-05-18 21:49:52 +0200175 int (*set_property)(struct power_supply *psy,
176 enum power_supply_property psp,
177 const union power_supply_propval *val);
178 int (*property_is_writeable)(struct power_supply *psy,
179 enum power_supply_property psp);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400180 void (*external_power_changed)(struct power_supply *psy);
Daniel Macke5f5ccb2009-07-23 20:35:53 +0200181 void (*set_charged)(struct power_supply *psy);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400182
183 /* For APM emulation, think legacy userspace. */
184 int use_for_apm;
185
186 /* private */
187 struct device *dev;
188 struct work_struct changed_work;
Arve Hjønnevåg836ad482009-09-21 17:26:47 -0700189 spinlock_t changed_lock;
190 bool changed;
191 struct wake_lock work_wake_lock;
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400192
193#ifdef CONFIG_LEDS_TRIGGERS
194 struct led_trigger *charging_full_trig;
195 char *charging_full_trig_name;
196 struct led_trigger *charging_trig;
197 char *charging_trig_name;
198 struct led_trigger *full_trig;
199 char *full_trig_name;
200 struct led_trigger *online_trig;
201 char *online_trig_name;
Vasily Khoruzhick6501f722011-01-07 18:28:17 +0200202 struct led_trigger *charging_blink_full_solid_trig;
203 char *charging_blink_full_solid_trig_name;
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400204#endif
205};
206
207/*
208 * This is recommended structure to specify static power supply parameters.
209 * Generic one, parametrizable for different power supplies. Power supply
210 * class itself does not use it, but that's what implementing most platform
211 * drivers, should try reuse for consistency.
212 */
213
214struct power_supply_info {
215 const char *name;
216 int technology;
217 int voltage_max_design;
218 int voltage_min_design;
219 int charge_full_design;
220 int charge_empty_design;
221 int energy_full_design;
222 int energy_empty_design;
223 int use_for_apm;
224};
225
David Keitel01a5ff02012-06-01 18:14:50 -0700226#if defined(CONFIG_POWER_SUPPLY) || defined(CONFIG_POWER_SUPPLY_MODULE)
Daniel Macke5f5ccb2009-07-23 20:35:53 +0200227extern struct power_supply *power_supply_get_by_name(char *name);
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400228extern void power_supply_changed(struct power_supply *psy);
229extern int power_supply_am_i_supplied(struct power_supply *psy);
Daniel Macke5f5ccb2009-07-23 20:35:53 +0200230extern int power_supply_set_battery_charged(struct power_supply *psy);
Willie Ruane6bee112011-11-06 15:52:52 -0800231extern int power_supply_set_current_limit(struct power_supply *psy, int limit);
David Keitel65ddd842012-01-11 11:59:41 -0800232extern int power_supply_set_online(struct power_supply *psy, bool enable);
Wu Fenglin04ae6de2013-09-09 19:15:06 +0800233extern int power_supply_set_health_state(struct power_supply *psy, int health);
David Keitel272ce522012-08-17 16:25:24 -0700234extern int power_supply_set_present(struct power_supply *psy, bool enable);
Abhijeet Dharmapurikar59d890f2012-06-26 11:19:17 -0700235extern int power_supply_set_scope(struct power_supply *psy, int scope);
David Keitel65ddd842012-01-11 11:59:41 -0800236extern int power_supply_set_charge_type(struct power_supply *psy, int type);
David Keitel01a5ff02012-06-01 18:14:50 -0700237extern int power_supply_set_supply_type(struct power_supply *psy,
238 enum power_supply_type supply_type);
Matthew Garrett942ed162008-08-26 21:09:59 +0100239extern int power_supply_is_system_supplied(void);
Jack Phamec08f172012-09-25 21:37:03 -0700240extern int power_supply_register(struct device *parent,
241 struct power_supply *psy);
242extern void power_supply_unregister(struct power_supply *psy);
243extern int power_supply_powers(struct power_supply *psy, struct device *dev);
Matthew Garrett942ed162008-08-26 21:09:59 +0100244#else
David Keitel01a5ff02012-06-01 18:14:50 -0700245static inline struct power_supply *power_supply_get_by_name(char *name)
Jack Phamec08f172012-09-25 21:37:03 -0700246 { return NULL; }
247static inline void power_supply_changed(struct power_supply *psy) { }
David Keitel01a5ff02012-06-01 18:14:50 -0700248static inline int power_supply_am_i_supplied(struct power_supply *psy)
249 { return -ENOSYS; }
250static inline int power_supply_set_battery_charged(struct power_supply *psy)
251 { return -ENOSYS; }
252static inline int power_supply_set_current_limit(struct power_supply *psy,
253 int limit)
254 { return -ENOSYS; }
255static inline int power_supply_set_online(struct power_supply *psy,
256 bool enable)
257 { return -ENOSYS; }
Wu Fenglin04ae6de2013-09-09 19:15:06 +0800258static inline int power_supply_set_health_state(struct power_supply *psy,
259 int health)
260 { return -ENOSYS; }
David Keitel272ce522012-08-17 16:25:24 -0700261static inline int power_supply_set_present(struct power_supply *psy,
262 bool enable)
263 { return -ENOSYS; }
David Keitel01a5ff02012-06-01 18:14:50 -0700264static inline int power_supply_set_scope(struct power_supply *psy,
265 int scope)
266 { return -ENOSYS; }
267static inline int power_supply_set_charge_type(struct power_supply *psy,
268 int type)
269 { return -ENOSYS; }
270static inline int power_supply_set_supply_type(struct power_supply *psy,
Jack Phamec08f172012-09-25 21:37:03 -0700271 enum power_supply_type supply_type)
David Keitel01a5ff02012-06-01 18:14:50 -0700272 { return -ENOSYS; }
Matthew Garrett942ed162008-08-26 21:09:59 +0100273static inline int power_supply_is_system_supplied(void) { return -ENOSYS; }
Jack Phamec08f172012-09-25 21:37:03 -0700274static inline int power_supply_register(struct device *parent,
275 struct power_supply *psy)
276 { return -ENOSYS; }
277static inline void power_supply_unregister(struct power_supply *psy) { }
278static inline int power_supply_powers(struct power_supply *psy,
279 struct device *dev)
280 { return -ENOSYS; }
Matthew Garrett942ed162008-08-26 21:09:59 +0100281#endif
282
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400283/* For APM emulation, think legacy userspace. */
284extern struct class *power_supply_class;
285
Rhyland Klein51d07562011-01-25 11:10:06 -0800286static inline bool power_supply_is_amp_property(enum power_supply_property psp)
287{
288 switch (psp) {
289 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
290 case POWER_SUPPLY_PROP_CHARGE_EMPTY_DESIGN:
291 case POWER_SUPPLY_PROP_CHARGE_FULL:
292 case POWER_SUPPLY_PROP_CHARGE_EMPTY:
293 case POWER_SUPPLY_PROP_CHARGE_NOW:
294 case POWER_SUPPLY_PROP_CHARGE_AVG:
295 case POWER_SUPPLY_PROP_CHARGE_COUNTER:
Xiaozhe Shif6cdb1a2013-05-02 15:54:27 -0700296 case POWER_SUPPLY_PROP_CHARGE_COUNTER_SHADOW:
Rhyland Klein51d07562011-01-25 11:10:06 -0800297 case POWER_SUPPLY_PROP_CURRENT_MAX:
David Keitel337bd862013-07-15 21:42:58 -0700298 case POWER_SUPPLY_PROP_INPUT_CURRENT_MAX:
Rhyland Klein51d07562011-01-25 11:10:06 -0800299 case POWER_SUPPLY_PROP_CURRENT_NOW:
300 case POWER_SUPPLY_PROP_CURRENT_AVG:
301 return 1;
302 default:
303 break;
304 }
305
306 return 0;
307}
308
309static inline bool power_supply_is_watt_property(enum power_supply_property psp)
310{
311 switch (psp) {
312 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
313 case POWER_SUPPLY_PROP_ENERGY_EMPTY_DESIGN:
314 case POWER_SUPPLY_PROP_ENERGY_FULL:
315 case POWER_SUPPLY_PROP_ENERGY_EMPTY:
316 case POWER_SUPPLY_PROP_ENERGY_NOW:
317 case POWER_SUPPLY_PROP_ENERGY_AVG:
318 case POWER_SUPPLY_PROP_VOLTAGE_MAX:
319 case POWER_SUPPLY_PROP_VOLTAGE_MIN:
320 case POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN:
321 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
322 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
323 case POWER_SUPPLY_PROP_VOLTAGE_AVG:
Ramakrishna Pallaladc7ef2b2012-04-10 16:21:20 +0530324 case POWER_SUPPLY_PROP_VOLTAGE_OCV:
Rhyland Klein35c9d262011-02-28 16:55:31 -0800325 case POWER_SUPPLY_PROP_POWER_NOW:
Rhyland Klein51d07562011-01-25 11:10:06 -0800326 return 1;
327 default:
328 break;
329 }
330
331 return 0;
332}
333
Anton Vorontsov4a11b592007-05-04 00:27:45 +0400334#endif /* __LINUX_POWER_SUPPLY_H__ */