Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 1 | /* |
| 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åg | 836ad48 | 2009-09-21 17:26:47 -0700 | [diff] [blame] | 16 | #include <linux/wakelock.h> |
Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 17 | #include <linux/workqueue.h> |
| 18 | #include <linux/leds.h> |
| 19 | |
Paul Gortmaker | 313162d | 2012-01-30 11:46:54 -0500 | [diff] [blame] | 20 | struct device; |
| 21 | |
Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 22 | /* |
| 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 | |
| 35 | enum { |
| 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 | |
| 43 | enum { |
Andres Salomon | ee8076e | 2009-07-02 09:45:18 -0400 | [diff] [blame] | 44 | 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 | |
| 50 | enum { |
Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 51 | POWER_SUPPLY_HEALTH_UNKNOWN = 0, |
| 52 | POWER_SUPPLY_HEALTH_GOOD, |
| 53 | POWER_SUPPLY_HEALTH_OVERHEAT, |
David Keitel | 4a8afa7 | 2013-06-10 11:09:11 -0700 | [diff] [blame] | 54 | POWER_SUPPLY_HEALTH_WARM, |
Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 55 | POWER_SUPPLY_HEALTH_DEAD, |
| 56 | POWER_SUPPLY_HEALTH_OVERVOLTAGE, |
| 57 | POWER_SUPPLY_HEALTH_UNSPEC_FAILURE, |
Mark Brown | 7e386e6 | 2008-11-30 22:43:21 +0100 | [diff] [blame] | 58 | POWER_SUPPLY_HEALTH_COLD, |
David Keitel | 4a8afa7 | 2013-06-10 11:09:11 -0700 | [diff] [blame] | 59 | POWER_SUPPLY_HEALTH_COOL, |
Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 60 | }; |
| 61 | |
| 62 | enum { |
| 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 Baryshkov | c7cc930 | 2008-01-07 04:12:41 +0300 | [diff] [blame] | 69 | POWER_SUPPLY_TECHNOLOGY_LiMn, |
Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 70 | }; |
| 71 | |
Andres Salomon | b294a29 | 2009-06-30 02:13:01 -0400 | [diff] [blame] | 72 | enum { |
| 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 Fitzhardinge | 25a0bc2 | 2011-12-07 11:24:20 -0800 | [diff] [blame] | 81 | enum { |
| 82 | POWER_SUPPLY_SCOPE_UNKNOWN = 0, |
| 83 | POWER_SUPPLY_SCOPE_SYSTEM, |
| 84 | POWER_SUPPLY_SCOPE_DEVICE, |
| 85 | }; |
| 86 | |
Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 87 | enum power_supply_property { |
| 88 | /* Properties of type `int' */ |
| 89 | POWER_SUPPLY_PROP_STATUS = 0, |
Andres Salomon | ee8076e | 2009-07-02 09:45:18 -0400 | [diff] [blame] | 90 | POWER_SUPPLY_PROP_CHARGE_TYPE, |
Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 91 | POWER_SUPPLY_PROP_HEALTH, |
| 92 | POWER_SUPPLY_PROP_PRESENT, |
| 93 | POWER_SUPPLY_PROP_ONLINE, |
David Keitel | 5018778 | 2012-10-15 10:41:16 -0700 | [diff] [blame] | 94 | POWER_SUPPLY_PROP_CHARGING_ENABLED, |
Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 95 | POWER_SUPPLY_PROP_TECHNOLOGY, |
Alexey Starikovskiy | c955fe8 | 2009-10-15 14:31:30 +0400 | [diff] [blame] | 96 | POWER_SUPPLY_PROP_CYCLE_COUNT, |
Dmitry Baryshkov | c7cc930 | 2008-01-07 04:12:41 +0300 | [diff] [blame] | 97 | POWER_SUPPLY_PROP_VOLTAGE_MAX, |
| 98 | POWER_SUPPLY_PROP_VOLTAGE_MIN, |
Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 99 | 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 Keitel | 337bd86 | 2013-07-15 21:42:58 -0700 | [diff] [blame] | 103 | POWER_SUPPLY_PROP_INPUT_VOLTAGE_REGULATION, |
Heikki Krogerus | fe3f6d0 | 2010-10-04 10:51:38 +0300 | [diff] [blame] | 104 | POWER_SUPPLY_PROP_CURRENT_MAX, |
David Keitel | 337bd86 | 2013-07-15 21:42:58 -0700 | [diff] [blame] | 105 | POWER_SUPPLY_PROP_INPUT_CURRENT_MAX, |
David Keitel | 2586f0a | 2013-08-20 10:02:26 -0700 | [diff] [blame] | 106 | POWER_SUPPLY_PROP_INPUT_CURRENT_TRIM, |
Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 107 | POWER_SUPPLY_PROP_CURRENT_NOW, |
| 108 | POWER_SUPPLY_PROP_CURRENT_AVG, |
Alexey Starikovskiy | 7faa144 | 2009-03-27 22:23:52 -0400 | [diff] [blame] | 109 | POWER_SUPPLY_PROP_POWER_NOW, |
| 110 | POWER_SUPPLY_PROP_POWER_AVG, |
Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 111 | POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN, |
| 112 | POWER_SUPPLY_PROP_CHARGE_EMPTY_DESIGN, |
| 113 | POWER_SUPPLY_PROP_CHARGE_FULL, |
| 114 | POWER_SUPPLY_PROP_CHARGE_EMPTY, |
| 115 | POWER_SUPPLY_PROP_CHARGE_NOW, |
| 116 | POWER_SUPPLY_PROP_CHARGE_AVG, |
Andres Salomon | 8e552c3 | 2008-05-12 21:46:29 -0400 | [diff] [blame] | 117 | POWER_SUPPLY_PROP_CHARGE_COUNTER, |
Xiaozhe Shi | f6cdb1a | 2013-05-02 15:54:27 -0700 | [diff] [blame] | 118 | POWER_SUPPLY_PROP_CHARGE_COUNTER_SHADOW, |
Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 119 | POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN, |
| 120 | POWER_SUPPLY_PROP_ENERGY_EMPTY_DESIGN, |
| 121 | POWER_SUPPLY_PROP_ENERGY_FULL, |
| 122 | POWER_SUPPLY_PROP_ENERGY_EMPTY, |
| 123 | POWER_SUPPLY_PROP_ENERGY_NOW, |
| 124 | POWER_SUPPLY_PROP_ENERGY_AVG, |
| 125 | POWER_SUPPLY_PROP_CAPACITY, /* in percents! */ |
Andres Salomon | b294a29 | 2009-06-30 02:13:01 -0400 | [diff] [blame] | 126 | POWER_SUPPLY_PROP_CAPACITY_LEVEL, |
Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 127 | POWER_SUPPLY_PROP_TEMP, |
David Keitel | ec3c0980 | 2013-06-13 13:05:30 -0700 | [diff] [blame] | 128 | POWER_SUPPLY_PROP_COOL_TEMP, |
| 129 | POWER_SUPPLY_PROP_WARM_TEMP, |
Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 130 | POWER_SUPPLY_PROP_TEMP_AMBIENT, |
| 131 | POWER_SUPPLY_PROP_TIME_TO_EMPTY_NOW, |
| 132 | POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG, |
| 133 | POWER_SUPPLY_PROP_TIME_TO_FULL_NOW, |
| 134 | POWER_SUPPLY_PROP_TIME_TO_FULL_AVG, |
Anton Vorontsov | 5f487cd | 2010-05-18 21:49:51 +0200 | [diff] [blame] | 135 | POWER_SUPPLY_PROP_TYPE, /* use power_supply.type instead */ |
Jeremy Fitzhardinge | 25a0bc2 | 2011-12-07 11:24:20 -0800 | [diff] [blame] | 136 | POWER_SUPPLY_PROP_SCOPE, |
David Keitel | be20825 | 2013-01-31 14:49:25 -0800 | [diff] [blame] | 137 | POWER_SUPPLY_PROP_SYSTEM_TEMP_LEVEL, |
Xiaozhe Shi | 2b086f4 | 2013-05-02 15:54:27 -0700 | [diff] [blame] | 138 | POWER_SUPPLY_PROP_RESISTANCE, |
Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 139 | /* Properties of type `const char *' */ |
| 140 | POWER_SUPPLY_PROP_MODEL_NAME, |
| 141 | POWER_SUPPLY_PROP_MANUFACTURER, |
maximilian attems | 7c2670b | 2008-01-22 18:46:50 +0100 | [diff] [blame] | 142 | POWER_SUPPLY_PROP_SERIAL_NUMBER, |
Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 143 | }; |
| 144 | |
| 145 | enum power_supply_type { |
Kim, Milo | 9b88722 | 2011-11-30 23:08:33 -0800 | [diff] [blame] | 146 | POWER_SUPPLY_TYPE_UNKNOWN = 0, |
| 147 | POWER_SUPPLY_TYPE_BATTERY, |
Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 148 | POWER_SUPPLY_TYPE_UPS, |
| 149 | POWER_SUPPLY_TYPE_MAINS, |
Heikki Krogerus | 85efc8a | 2010-10-04 10:51:37 +0300 | [diff] [blame] | 150 | POWER_SUPPLY_TYPE_USB, /* Standard Downstream Port */ |
| 151 | POWER_SUPPLY_TYPE_USB_DCP, /* Dedicated Charging Port */ |
| 152 | POWER_SUPPLY_TYPE_USB_CDP, /* Charging Downstream Port */ |
| 153 | POWER_SUPPLY_TYPE_USB_ACA, /* Accessory Charger Adapters */ |
Xiaozhe Shi | fe73e79 | 2012-09-05 11:19:37 -0700 | [diff] [blame] | 154 | POWER_SUPPLY_TYPE_BMS, /* Battery Monitor System */ |
Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 155 | }; |
| 156 | |
| 157 | union power_supply_propval { |
| 158 | int intval; |
| 159 | const char *strval; |
| 160 | }; |
| 161 | |
| 162 | struct power_supply { |
| 163 | const char *name; |
| 164 | enum power_supply_type type; |
| 165 | enum power_supply_property *properties; |
| 166 | size_t num_properties; |
| 167 | |
| 168 | char **supplied_to; |
| 169 | size_t num_supplicants; |
| 170 | |
| 171 | int (*get_property)(struct power_supply *psy, |
| 172 | enum power_supply_property psp, |
| 173 | union power_supply_propval *val); |
Daniel Mack | 0011d2d | 2010-05-18 21:49:52 +0200 | [diff] [blame] | 174 | int (*set_property)(struct power_supply *psy, |
| 175 | enum power_supply_property psp, |
| 176 | const union power_supply_propval *val); |
| 177 | int (*property_is_writeable)(struct power_supply *psy, |
| 178 | enum power_supply_property psp); |
Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 179 | void (*external_power_changed)(struct power_supply *psy); |
Daniel Mack | e5f5ccb | 2009-07-23 20:35:53 +0200 | [diff] [blame] | 180 | void (*set_charged)(struct power_supply *psy); |
Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 181 | |
| 182 | /* For APM emulation, think legacy userspace. */ |
| 183 | int use_for_apm; |
| 184 | |
| 185 | /* private */ |
| 186 | struct device *dev; |
| 187 | struct work_struct changed_work; |
Arve Hjønnevåg | 836ad48 | 2009-09-21 17:26:47 -0700 | [diff] [blame] | 188 | spinlock_t changed_lock; |
| 189 | bool changed; |
| 190 | struct wake_lock work_wake_lock; |
Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 191 | |
| 192 | #ifdef CONFIG_LEDS_TRIGGERS |
| 193 | struct led_trigger *charging_full_trig; |
| 194 | char *charging_full_trig_name; |
| 195 | struct led_trigger *charging_trig; |
| 196 | char *charging_trig_name; |
| 197 | struct led_trigger *full_trig; |
| 198 | char *full_trig_name; |
| 199 | struct led_trigger *online_trig; |
| 200 | char *online_trig_name; |
Vasily Khoruzhick | 6501f72 | 2011-01-07 18:28:17 +0200 | [diff] [blame] | 201 | struct led_trigger *charging_blink_full_solid_trig; |
| 202 | char *charging_blink_full_solid_trig_name; |
Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 203 | #endif |
| 204 | }; |
| 205 | |
| 206 | /* |
| 207 | * This is recommended structure to specify static power supply parameters. |
| 208 | * Generic one, parametrizable for different power supplies. Power supply |
| 209 | * class itself does not use it, but that's what implementing most platform |
| 210 | * drivers, should try reuse for consistency. |
| 211 | */ |
| 212 | |
| 213 | struct power_supply_info { |
| 214 | const char *name; |
| 215 | int technology; |
| 216 | int voltage_max_design; |
| 217 | int voltage_min_design; |
| 218 | int charge_full_design; |
| 219 | int charge_empty_design; |
| 220 | int energy_full_design; |
| 221 | int energy_empty_design; |
| 222 | int use_for_apm; |
| 223 | }; |
| 224 | |
David Keitel | 01a5ff0 | 2012-06-01 18:14:50 -0700 | [diff] [blame] | 225 | #if defined(CONFIG_POWER_SUPPLY) || defined(CONFIG_POWER_SUPPLY_MODULE) |
Daniel Mack | e5f5ccb | 2009-07-23 20:35:53 +0200 | [diff] [blame] | 226 | extern struct power_supply *power_supply_get_by_name(char *name); |
Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 227 | extern void power_supply_changed(struct power_supply *psy); |
| 228 | extern int power_supply_am_i_supplied(struct power_supply *psy); |
Daniel Mack | e5f5ccb | 2009-07-23 20:35:53 +0200 | [diff] [blame] | 229 | extern int power_supply_set_battery_charged(struct power_supply *psy); |
Willie Ruan | e6bee11 | 2011-11-06 15:52:52 -0800 | [diff] [blame] | 230 | extern int power_supply_set_current_limit(struct power_supply *psy, int limit); |
David Keitel | 65ddd84 | 2012-01-11 11:59:41 -0800 | [diff] [blame] | 231 | extern int power_supply_set_online(struct power_supply *psy, bool enable); |
Wu Fenglin | 04ae6de | 2013-09-09 19:15:06 +0800 | [diff] [blame] | 232 | extern int power_supply_set_health_state(struct power_supply *psy, int health); |
David Keitel | 272ce52 | 2012-08-17 16:25:24 -0700 | [diff] [blame] | 233 | extern int power_supply_set_present(struct power_supply *psy, bool enable); |
Abhijeet Dharmapurikar | 59d890f | 2012-06-26 11:19:17 -0700 | [diff] [blame] | 234 | extern int power_supply_set_scope(struct power_supply *psy, int scope); |
David Keitel | 65ddd84 | 2012-01-11 11:59:41 -0800 | [diff] [blame] | 235 | extern int power_supply_set_charge_type(struct power_supply *psy, int type); |
David Keitel | 01a5ff0 | 2012-06-01 18:14:50 -0700 | [diff] [blame] | 236 | extern int power_supply_set_supply_type(struct power_supply *psy, |
| 237 | enum power_supply_type supply_type); |
Matthew Garrett | 942ed16 | 2008-08-26 21:09:59 +0100 | [diff] [blame] | 238 | extern int power_supply_is_system_supplied(void); |
Jack Pham | ec08f17 | 2012-09-25 21:37:03 -0700 | [diff] [blame] | 239 | extern int power_supply_register(struct device *parent, |
| 240 | struct power_supply *psy); |
| 241 | extern void power_supply_unregister(struct power_supply *psy); |
| 242 | extern int power_supply_powers(struct power_supply *psy, struct device *dev); |
Matthew Garrett | 942ed16 | 2008-08-26 21:09:59 +0100 | [diff] [blame] | 243 | #else |
David Keitel | 01a5ff0 | 2012-06-01 18:14:50 -0700 | [diff] [blame] | 244 | static inline struct power_supply *power_supply_get_by_name(char *name) |
Jack Pham | ec08f17 | 2012-09-25 21:37:03 -0700 | [diff] [blame] | 245 | { return NULL; } |
| 246 | static inline void power_supply_changed(struct power_supply *psy) { } |
David Keitel | 01a5ff0 | 2012-06-01 18:14:50 -0700 | [diff] [blame] | 247 | static inline int power_supply_am_i_supplied(struct power_supply *psy) |
| 248 | { return -ENOSYS; } |
| 249 | static inline int power_supply_set_battery_charged(struct power_supply *psy) |
| 250 | { return -ENOSYS; } |
| 251 | static inline int power_supply_set_current_limit(struct power_supply *psy, |
| 252 | int limit) |
| 253 | { return -ENOSYS; } |
| 254 | static inline int power_supply_set_online(struct power_supply *psy, |
| 255 | bool enable) |
| 256 | { return -ENOSYS; } |
Wu Fenglin | 04ae6de | 2013-09-09 19:15:06 +0800 | [diff] [blame] | 257 | static inline int power_supply_set_health_state(struct power_supply *psy, |
| 258 | int health) |
| 259 | { return -ENOSYS; } |
David Keitel | 272ce52 | 2012-08-17 16:25:24 -0700 | [diff] [blame] | 260 | static inline int power_supply_set_present(struct power_supply *psy, |
| 261 | bool enable) |
| 262 | { return -ENOSYS; } |
David Keitel | 01a5ff0 | 2012-06-01 18:14:50 -0700 | [diff] [blame] | 263 | static inline int power_supply_set_scope(struct power_supply *psy, |
| 264 | int scope) |
| 265 | { return -ENOSYS; } |
| 266 | static inline int power_supply_set_charge_type(struct power_supply *psy, |
| 267 | int type) |
| 268 | { return -ENOSYS; } |
| 269 | static inline int power_supply_set_supply_type(struct power_supply *psy, |
Jack Pham | ec08f17 | 2012-09-25 21:37:03 -0700 | [diff] [blame] | 270 | enum power_supply_type supply_type) |
David Keitel | 01a5ff0 | 2012-06-01 18:14:50 -0700 | [diff] [blame] | 271 | { return -ENOSYS; } |
Matthew Garrett | 942ed16 | 2008-08-26 21:09:59 +0100 | [diff] [blame] | 272 | static inline int power_supply_is_system_supplied(void) { return -ENOSYS; } |
Jack Pham | ec08f17 | 2012-09-25 21:37:03 -0700 | [diff] [blame] | 273 | static inline int power_supply_register(struct device *parent, |
| 274 | struct power_supply *psy) |
| 275 | { return -ENOSYS; } |
| 276 | static inline void power_supply_unregister(struct power_supply *psy) { } |
| 277 | static inline int power_supply_powers(struct power_supply *psy, |
| 278 | struct device *dev) |
| 279 | { return -ENOSYS; } |
Matthew Garrett | 942ed16 | 2008-08-26 21:09:59 +0100 | [diff] [blame] | 280 | #endif |
| 281 | |
Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 282 | /* For APM emulation, think legacy userspace. */ |
| 283 | extern struct class *power_supply_class; |
| 284 | |
Rhyland Klein | 51d0756 | 2011-01-25 11:10:06 -0800 | [diff] [blame] | 285 | static inline bool power_supply_is_amp_property(enum power_supply_property psp) |
| 286 | { |
| 287 | switch (psp) { |
| 288 | case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN: |
| 289 | case POWER_SUPPLY_PROP_CHARGE_EMPTY_DESIGN: |
| 290 | case POWER_SUPPLY_PROP_CHARGE_FULL: |
| 291 | case POWER_SUPPLY_PROP_CHARGE_EMPTY: |
| 292 | case POWER_SUPPLY_PROP_CHARGE_NOW: |
| 293 | case POWER_SUPPLY_PROP_CHARGE_AVG: |
| 294 | case POWER_SUPPLY_PROP_CHARGE_COUNTER: |
Xiaozhe Shi | f6cdb1a | 2013-05-02 15:54:27 -0700 | [diff] [blame] | 295 | case POWER_SUPPLY_PROP_CHARGE_COUNTER_SHADOW: |
Rhyland Klein | 51d0756 | 2011-01-25 11:10:06 -0800 | [diff] [blame] | 296 | case POWER_SUPPLY_PROP_CURRENT_MAX: |
David Keitel | 337bd86 | 2013-07-15 21:42:58 -0700 | [diff] [blame] | 297 | case POWER_SUPPLY_PROP_INPUT_CURRENT_MAX: |
Rhyland Klein | 51d0756 | 2011-01-25 11:10:06 -0800 | [diff] [blame] | 298 | case POWER_SUPPLY_PROP_CURRENT_NOW: |
| 299 | case POWER_SUPPLY_PROP_CURRENT_AVG: |
| 300 | return 1; |
| 301 | default: |
| 302 | break; |
| 303 | } |
| 304 | |
| 305 | return 0; |
| 306 | } |
| 307 | |
| 308 | static inline bool power_supply_is_watt_property(enum power_supply_property psp) |
| 309 | { |
| 310 | switch (psp) { |
| 311 | case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN: |
| 312 | case POWER_SUPPLY_PROP_ENERGY_EMPTY_DESIGN: |
| 313 | case POWER_SUPPLY_PROP_ENERGY_FULL: |
| 314 | case POWER_SUPPLY_PROP_ENERGY_EMPTY: |
| 315 | case POWER_SUPPLY_PROP_ENERGY_NOW: |
| 316 | case POWER_SUPPLY_PROP_ENERGY_AVG: |
| 317 | case POWER_SUPPLY_PROP_VOLTAGE_MAX: |
| 318 | case POWER_SUPPLY_PROP_VOLTAGE_MIN: |
| 319 | case POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN: |
| 320 | case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN: |
| 321 | case POWER_SUPPLY_PROP_VOLTAGE_NOW: |
| 322 | case POWER_SUPPLY_PROP_VOLTAGE_AVG: |
Rhyland Klein | 35c9d26 | 2011-02-28 16:55:31 -0800 | [diff] [blame] | 323 | case POWER_SUPPLY_PROP_POWER_NOW: |
Rhyland Klein | 51d0756 | 2011-01-25 11:10:06 -0800 | [diff] [blame] | 324 | return 1; |
| 325 | default: |
| 326 | break; |
| 327 | } |
| 328 | |
| 329 | return 0; |
| 330 | } |
| 331 | |
Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 332 | #endif /* __LINUX_POWER_SUPPLY_H__ */ |