| 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 | |
| Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 16 | #include <linux/device.h> |
| Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 17 | #include <linux/workqueue.h> |
| 18 | #include <linux/leds.h> |
| Zoran Markovic | 948dcf9 | 2013-08-02 13:38:02 -0700 | [diff] [blame] | 19 | #include <linux/spinlock.h> |
| Pali Rohár | d36240d | 2013-11-19 11:18:03 +0100 | [diff] [blame] | 20 | #include <linux/notifier.h> |
| Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 21 | |
| 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, |
| 54 | POWER_SUPPLY_HEALTH_DEAD, |
| 55 | POWER_SUPPLY_HEALTH_OVERVOLTAGE, |
| 56 | POWER_SUPPLY_HEALTH_UNSPEC_FAILURE, |
| Mark Brown | 7e386e6 | 2008-11-30 22:43:21 +0100 | [diff] [blame] | 57 | POWER_SUPPLY_HEALTH_COLD, |
| Ramakrishna Pallala | a05be99 | 2012-11-30 13:57:46 +0530 | [diff] [blame] | 58 | POWER_SUPPLY_HEALTH_WATCHDOG_TIMER_EXPIRE, |
| 59 | POWER_SUPPLY_HEALTH_SAFETY_TIMER_EXPIRE, |
| 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, |
| Ramakrishna Pallala | b1b5687 | 2012-08-23 06:50:21 +0530 | [diff] [blame] | 94 | POWER_SUPPLY_PROP_AUTHENTIC, |
| 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, |
| Ramakrishna Pallala | a2ebfe2 | 2012-04-10 16:21:20 +0530 | [diff] [blame] | 103 | POWER_SUPPLY_PROP_VOLTAGE_OCV, |
| Ramakrishna Pallala | a8adcc90 | 2014-08-27 23:44:08 +0530 | [diff] [blame] | 104 | POWER_SUPPLY_PROP_VOLTAGE_BOOT, |
| Heikki Krogerus | fe3f6d0 | 2010-10-04 10:51:38 +0300 | [diff] [blame] | 105 | POWER_SUPPLY_PROP_CURRENT_MAX, |
| Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 106 | POWER_SUPPLY_PROP_CURRENT_NOW, |
| 107 | POWER_SUPPLY_PROP_CURRENT_AVG, |
| Ramakrishna Pallala | a8adcc90 | 2014-08-27 23:44:08 +0530 | [diff] [blame] | 108 | POWER_SUPPLY_PROP_CURRENT_BOOT, |
| 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, |
| Ramakrishna Pallala | 3824c47 | 2012-05-06 18:16:44 +0530 | [diff] [blame] | 118 | POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT, |
| Ramakrishna Pallala | 2815b78 | 2012-07-30 12:49:21 +0530 | [diff] [blame] | 119 | POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT_MAX, |
| Ramakrishna Pallala | 3824c47 | 2012-05-06 18:16:44 +0530 | [diff] [blame] | 120 | POWER_SUPPLY_PROP_CONSTANT_CHARGE_VOLTAGE, |
| Ramakrishna Pallala | 2815b78 | 2012-07-30 12:49:21 +0530 | [diff] [blame] | 121 | POWER_SUPPLY_PROP_CONSTANT_CHARGE_VOLTAGE_MAX, |
| Ramakrishna Pallala | ea2ce92 | 2012-10-09 22:25:29 +0530 | [diff] [blame] | 122 | POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT, |
| 123 | POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT_MAX, |
| Jenny TC | 6bb1d27 | 2014-07-08 11:34:18 +0530 | [diff] [blame] | 124 | POWER_SUPPLY_PROP_INPUT_CURRENT_LIMIT, |
| Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 125 | POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN, |
| 126 | POWER_SUPPLY_PROP_ENERGY_EMPTY_DESIGN, |
| 127 | POWER_SUPPLY_PROP_ENERGY_FULL, |
| 128 | POWER_SUPPLY_PROP_ENERGY_EMPTY, |
| 129 | POWER_SUPPLY_PROP_ENERGY_NOW, |
| 130 | POWER_SUPPLY_PROP_ENERGY_AVG, |
| 131 | POWER_SUPPLY_PROP_CAPACITY, /* in percents! */ |
| Ramakrishna Pallala | e908c41 | 2012-07-05 16:59:12 +0530 | [diff] [blame] | 132 | POWER_SUPPLY_PROP_CAPACITY_ALERT_MIN, /* in percents! */ |
| 133 | POWER_SUPPLY_PROP_CAPACITY_ALERT_MAX, /* in percents! */ |
| Andres Salomon | b294a29 | 2009-06-30 02:13:01 -0400 | [diff] [blame] | 134 | POWER_SUPPLY_PROP_CAPACITY_LEVEL, |
| Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 135 | POWER_SUPPLY_PROP_TEMP, |
| Jenny TC | 6bb1d27 | 2014-07-08 11:34:18 +0530 | [diff] [blame] | 136 | POWER_SUPPLY_PROP_TEMP_MAX, |
| 137 | POWER_SUPPLY_PROP_TEMP_MIN, |
| Ramakrishna Pallala | e908c41 | 2012-07-05 16:59:12 +0530 | [diff] [blame] | 138 | POWER_SUPPLY_PROP_TEMP_ALERT_MIN, |
| 139 | POWER_SUPPLY_PROP_TEMP_ALERT_MAX, |
| Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 140 | POWER_SUPPLY_PROP_TEMP_AMBIENT, |
| Ramakrishna Pallala | e908c41 | 2012-07-05 16:59:12 +0530 | [diff] [blame] | 141 | POWER_SUPPLY_PROP_TEMP_AMBIENT_ALERT_MIN, |
| 142 | POWER_SUPPLY_PROP_TEMP_AMBIENT_ALERT_MAX, |
| Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 143 | POWER_SUPPLY_PROP_TIME_TO_EMPTY_NOW, |
| 144 | POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG, |
| 145 | POWER_SUPPLY_PROP_TIME_TO_FULL_NOW, |
| 146 | POWER_SUPPLY_PROP_TIME_TO_FULL_AVG, |
| Anton Vorontsov | 5f487cd | 2010-05-18 21:49:51 +0200 | [diff] [blame] | 147 | POWER_SUPPLY_PROP_TYPE, /* use power_supply.type instead */ |
| Jeremy Fitzhardinge | 25a0bc2 | 2011-12-07 11:24:20 -0800 | [diff] [blame] | 148 | POWER_SUPPLY_PROP_SCOPE, |
| Jenny TC | 6bb1d27 | 2014-07-08 11:34:18 +0530 | [diff] [blame] | 149 | POWER_SUPPLY_PROP_CHARGE_TERM_CURRENT, |
| Ramakrishna Pallala | a8adcc90 | 2014-08-27 23:44:08 +0530 | [diff] [blame] | 150 | POWER_SUPPLY_PROP_CALIBRATE, |
| Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 151 | /* Properties of type `const char *' */ |
| 152 | POWER_SUPPLY_PROP_MODEL_NAME, |
| 153 | POWER_SUPPLY_PROP_MANUFACTURER, |
| maximilian attems | 7c2670b | 2008-01-22 18:46:50 +0100 | [diff] [blame] | 154 | POWER_SUPPLY_PROP_SERIAL_NUMBER, |
| Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 155 | }; |
| 156 | |
| 157 | enum power_supply_type { |
| Kim, Milo | 9b88722 | 2011-11-30 23:08:33 -0800 | [diff] [blame] | 158 | POWER_SUPPLY_TYPE_UNKNOWN = 0, |
| 159 | POWER_SUPPLY_TYPE_BATTERY, |
| Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 160 | POWER_SUPPLY_TYPE_UPS, |
| 161 | POWER_SUPPLY_TYPE_MAINS, |
| Benson Leung | 71399aa | 2017-05-08 15:02:48 -0700 | [diff] [blame] | 162 | POWER_SUPPLY_TYPE_USB, /* Standard Downstream Port */ |
| 163 | POWER_SUPPLY_TYPE_USB_DCP, /* Dedicated Charging Port */ |
| 164 | POWER_SUPPLY_TYPE_USB_CDP, /* Charging Downstream Port */ |
| 165 | POWER_SUPPLY_TYPE_USB_ACA, /* Accessory Charger Adapters */ |
| 166 | POWER_SUPPLY_TYPE_USB_TYPE_C, /* Type C Port */ |
| 167 | POWER_SUPPLY_TYPE_USB_PD, /* Power Delivery Port */ |
| 168 | POWER_SUPPLY_TYPE_USB_PD_DRP, /* PD Dual Role Port */ |
| 169 | POWER_SUPPLY_TYPE_APPLE_BRICK_ID, /* Apple Charging Method */ |
| Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 170 | }; |
| 171 | |
| Pali Rohár | d36240d | 2013-11-19 11:18:03 +0100 | [diff] [blame] | 172 | enum power_supply_notifier_events { |
| 173 | PSY_EVENT_PROP_CHANGED, |
| 174 | }; |
| 175 | |
| Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 176 | union power_supply_propval { |
| 177 | int intval; |
| 178 | const char *strval; |
| 179 | }; |
| 180 | |
| Anton Vorontsov | b50df95 | 2013-06-28 18:17:22 -0700 | [diff] [blame] | 181 | struct device_node; |
| Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 182 | struct power_supply; |
| Anton Vorontsov | b50df95 | 2013-06-28 18:17:22 -0700 | [diff] [blame] | 183 | |
| Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 184 | /* Run-time specific power supply configuration */ |
| Krzysztof Kozlowski | 2dc9215 | 2015-03-12 08:44:02 +0100 | [diff] [blame] | 185 | struct power_supply_config { |
| 186 | struct device_node *of_node; |
| 187 | /* Driver private data */ |
| 188 | void *drv_data; |
| 189 | |
| 190 | char **supplied_to; |
| 191 | size_t num_supplicants; |
| 192 | }; |
| 193 | |
| Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 194 | /* Description of power supply */ |
| 195 | struct power_supply_desc { |
| Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 196 | const char *name; |
| 197 | enum power_supply_type type; |
| 198 | enum power_supply_property *properties; |
| 199 | size_t num_properties; |
| 200 | |
| Krzysztof Kozlowski | bc15405 | 2015-03-12 08:44:03 +0100 | [diff] [blame] | 201 | /* |
| 202 | * Functions for drivers implementing power supply class. |
| 203 | * These shouldn't be called directly by other drivers for accessing |
| 204 | * this power supply. Instead use power_supply_*() functions (for |
| 205 | * example power_supply_get_property()). |
| 206 | */ |
| Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 207 | int (*get_property)(struct power_supply *psy, |
| 208 | enum power_supply_property psp, |
| 209 | union power_supply_propval *val); |
| Daniel Mack | 0011d2d | 2010-05-18 21:49:52 +0200 | [diff] [blame] | 210 | int (*set_property)(struct power_supply *psy, |
| 211 | enum power_supply_property psp, |
| 212 | const union power_supply_propval *val); |
| Krzysztof Kozlowski | 5c6e3a9 | 2015-06-08 10:09:48 +0900 | [diff] [blame] | 213 | /* |
| 214 | * property_is_writeable() will be called during registration |
| 215 | * of power supply. If this happens during device probe then it must |
| 216 | * not access internal data of device (because probe did not end). |
| 217 | */ |
| Daniel Mack | 0011d2d | 2010-05-18 21:49:52 +0200 | [diff] [blame] | 218 | int (*property_is_writeable)(struct power_supply *psy, |
| 219 | enum power_supply_property psp); |
| Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 220 | void (*external_power_changed)(struct power_supply *psy); |
| Daniel Mack | e5f5ccb | 2009-07-23 20:35:53 +0200 | [diff] [blame] | 221 | void (*set_charged)(struct power_supply *psy); |
| Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 222 | |
| Krzysztof Kozlowski | a69d82b | 2014-10-07 17:47:36 +0200 | [diff] [blame] | 223 | /* |
| 224 | * Set if thermal zone should not be created for this power supply. |
| 225 | * For example for virtual supplies forwarding calls to actual |
| 226 | * sensors or other supplies. |
| 227 | */ |
| 228 | bool no_thermal; |
| Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 229 | /* For APM emulation, think legacy userspace. */ |
| 230 | int use_for_apm; |
| Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 231 | }; |
| 232 | |
| 233 | struct power_supply { |
| 234 | const struct power_supply_desc *desc; |
| 235 | |
| 236 | char **supplied_to; |
| 237 | size_t num_supplicants; |
| 238 | |
| 239 | char **supplied_from; |
| 240 | size_t num_supplies; |
| 241 | struct device_node *of_node; |
| Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 242 | |
| Krzysztof Kozlowski | e44ea36 | 2015-03-12 08:44:01 +0100 | [diff] [blame] | 243 | /* Driver private data */ |
| 244 | void *drv_data; |
| 245 | |
| Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 246 | /* private */ |
| Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 247 | struct device dev; |
| Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 248 | struct work_struct changed_work; |
| Krzysztof Kozlowski | 7f1a57f | 2015-05-19 16:13:02 +0900 | [diff] [blame] | 249 | struct delayed_work deferred_register_work; |
| Zoran Markovic | 948dcf9 | 2013-08-02 13:38:02 -0700 | [diff] [blame] | 250 | spinlock_t changed_lock; |
| 251 | bool changed; |
| Rhyland Klein | e380538 | 2016-06-22 11:45:52 -0400 | [diff] [blame] | 252 | bool initialized; |
| Krzysztof Kozlowski | bc15405 | 2015-03-12 08:44:03 +0100 | [diff] [blame] | 253 | atomic_t use_cnt; |
| Jenny TC | 3be330b | 2012-05-09 20:36:47 +0530 | [diff] [blame] | 254 | #ifdef CONFIG_THERMAL |
| 255 | struct thermal_zone_device *tzd; |
| Ramakrishna Pallala | 952aeeb3 | 2012-10-09 22:25:59 +0530 | [diff] [blame] | 256 | struct thermal_cooling_device *tcd; |
| Jenny TC | 3be330b | 2012-05-09 20:36:47 +0530 | [diff] [blame] | 257 | #endif |
| Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 258 | |
| 259 | #ifdef CONFIG_LEDS_TRIGGERS |
| 260 | struct led_trigger *charging_full_trig; |
| 261 | char *charging_full_trig_name; |
| 262 | struct led_trigger *charging_trig; |
| 263 | char *charging_trig_name; |
| 264 | struct led_trigger *full_trig; |
| 265 | char *full_trig_name; |
| 266 | struct led_trigger *online_trig; |
| 267 | char *online_trig_name; |
| Vasily Khoruzhick | 6501f72 | 2011-01-07 18:28:17 +0200 | [diff] [blame] | 268 | struct led_trigger *charging_blink_full_solid_trig; |
| 269 | char *charging_blink_full_solid_trig_name; |
| Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 270 | #endif |
| 271 | }; |
| 272 | |
| 273 | /* |
| 274 | * This is recommended structure to specify static power supply parameters. |
| 275 | * Generic one, parametrizable for different power supplies. Power supply |
| 276 | * class itself does not use it, but that's what implementing most platform |
| 277 | * drivers, should try reuse for consistency. |
| 278 | */ |
| 279 | |
| 280 | struct power_supply_info { |
| 281 | const char *name; |
| 282 | int technology; |
| 283 | int voltage_max_design; |
| 284 | int voltage_min_design; |
| 285 | int charge_full_design; |
| 286 | int charge_empty_design; |
| 287 | int energy_full_design; |
| 288 | int energy_empty_design; |
| 289 | int use_for_apm; |
| 290 | }; |
| 291 | |
| Liam Breck | c08b1f4 | 2017-06-07 11:37:51 -0700 | [diff] [blame^] | 292 | /* |
| 293 | * This is the recommended struct to manage static battery parameters, |
| 294 | * populated by power_supply_get_battery_info(). Most platform drivers should |
| 295 | * use these for consistency. |
| 296 | * Its field names must correspond to elements in enum power_supply_property. |
| 297 | * The default field value is -EINVAL. |
| 298 | * Power supply class itself doesn't use this. |
| 299 | */ |
| 300 | |
| 301 | struct power_supply_battery_info { |
| 302 | int energy_full_design_uwh; /* microWatt-hours */ |
| 303 | int charge_full_design_uah; /* microAmp-hours */ |
| 304 | int voltage_min_design_uv; /* microVolts */ |
| 305 | int precharge_current_ua; /* microAmps */ |
| 306 | int charge_term_current_ua; /* microAmps */ |
| 307 | int constant_charge_current_max_ua; /* microAmps */ |
| 308 | int constant_charge_voltage_max_uv; /* microVolts */ |
| 309 | }; |
| 310 | |
| Pali Rohár | d36240d | 2013-11-19 11:18:03 +0100 | [diff] [blame] | 311 | extern struct atomic_notifier_head power_supply_notifier; |
| 312 | extern int power_supply_reg_notifier(struct notifier_block *nb); |
| 313 | extern void power_supply_unreg_notifier(struct notifier_block *nb); |
| Michał Mirosław | 9f3b795 | 2013-02-01 20:40:17 +0100 | [diff] [blame] | 314 | extern struct power_supply *power_supply_get_by_name(const char *name); |
| Krzysztof Kozlowski | 1a35246 | 2015-03-12 08:44:12 +0100 | [diff] [blame] | 315 | extern void power_supply_put(struct power_supply *psy); |
| Sebastian Reichel | abce977 | 2013-11-24 17:49:29 +0100 | [diff] [blame] | 316 | #ifdef CONFIG_OF |
| 317 | extern struct power_supply *power_supply_get_by_phandle(struct device_node *np, |
| 318 | const char *property); |
| Hans de Goede | fe27e1d | 2015-06-09 23:37:56 +0200 | [diff] [blame] | 319 | extern struct power_supply *devm_power_supply_get_by_phandle( |
| 320 | struct device *dev, const char *property); |
| Sebastian Reichel | abce977 | 2013-11-24 17:49:29 +0100 | [diff] [blame] | 321 | #else /* !CONFIG_OF */ |
| 322 | static inline struct power_supply * |
| 323 | power_supply_get_by_phandle(struct device_node *np, const char *property) |
| 324 | { return NULL; } |
| Hans de Goede | fe27e1d | 2015-06-09 23:37:56 +0200 | [diff] [blame] | 325 | static inline struct power_supply * |
| 326 | devm_power_supply_get_by_phandle(struct device *dev, const char *property) |
| 327 | { return NULL; } |
| Sebastian Reichel | abce977 | 2013-11-24 17:49:29 +0100 | [diff] [blame] | 328 | #endif /* CONFIG_OF */ |
| Liam Breck | c08b1f4 | 2017-06-07 11:37:51 -0700 | [diff] [blame^] | 329 | |
| 330 | extern int power_supply_get_battery_info(struct power_supply *psy, |
| 331 | struct power_supply_battery_info *info); |
| Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 332 | extern void power_supply_changed(struct power_supply *psy); |
| 333 | extern int power_supply_am_i_supplied(struct power_supply *psy); |
| Daniel Mack | e5f5ccb | 2009-07-23 20:35:53 +0200 | [diff] [blame] | 334 | extern int power_supply_set_battery_charged(struct power_supply *psy); |
| Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 335 | |
| Anton Vorontsov | 0d4ed4e | 2012-05-04 21:06:19 -0700 | [diff] [blame] | 336 | #ifdef CONFIG_POWER_SUPPLY |
| Matthew Garrett | 942ed16 | 2008-08-26 21:09:59 +0100 | [diff] [blame] | 337 | extern int power_supply_is_system_supplied(void); |
| 338 | #else |
| 339 | static inline int power_supply_is_system_supplied(void) { return -ENOSYS; } |
| 340 | #endif |
| 341 | |
| Krzysztof Kozlowski | bc15405 | 2015-03-12 08:44:03 +0100 | [diff] [blame] | 342 | extern int power_supply_get_property(struct power_supply *psy, |
| 343 | enum power_supply_property psp, |
| 344 | union power_supply_propval *val); |
| 345 | extern int power_supply_set_property(struct power_supply *psy, |
| 346 | enum power_supply_property psp, |
| 347 | const union power_supply_propval *val); |
| 348 | extern int power_supply_property_is_writeable(struct power_supply *psy, |
| 349 | enum power_supply_property psp); |
| 350 | extern void power_supply_external_power_changed(struct power_supply *psy); |
| Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 351 | |
| 352 | extern struct power_supply *__must_check |
| 353 | power_supply_register(struct device *parent, |
| 354 | const struct power_supply_desc *desc, |
| Krzysztof Kozlowski | 2dc9215 | 2015-03-12 08:44:02 +0100 | [diff] [blame] | 355 | const struct power_supply_config *cfg); |
| Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 356 | extern struct power_supply *__must_check |
| 357 | power_supply_register_no_ws(struct device *parent, |
| 358 | const struct power_supply_desc *desc, |
| Krzysztof Kozlowski | 2dc9215 | 2015-03-12 08:44:02 +0100 | [diff] [blame] | 359 | const struct power_supply_config *cfg); |
| Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 360 | extern struct power_supply *__must_check |
| 361 | devm_power_supply_register(struct device *parent, |
| 362 | const struct power_supply_desc *desc, |
| Krzysztof Kozlowski | 2dc9215 | 2015-03-12 08:44:02 +0100 | [diff] [blame] | 363 | const struct power_supply_config *cfg); |
| Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 364 | extern struct power_supply *__must_check |
| 365 | devm_power_supply_register_no_ws(struct device *parent, |
| 366 | const struct power_supply_desc *desc, |
| Krzysztof Kozlowski | 2dc9215 | 2015-03-12 08:44:02 +0100 | [diff] [blame] | 367 | const struct power_supply_config *cfg); |
| Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 368 | extern void power_supply_unregister(struct power_supply *psy); |
| Jeremy Fitzhardinge | 8351665 | 2011-12-07 09:15:45 -0800 | [diff] [blame] | 369 | extern int power_supply_powers(struct power_supply *psy, struct device *dev); |
| Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 370 | |
| Krzysztof Kozlowski | e44ea36 | 2015-03-12 08:44:01 +0100 | [diff] [blame] | 371 | extern void *power_supply_get_drvdata(struct power_supply *psy); |
| Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 372 | /* For APM emulation, think legacy userspace. */ |
| 373 | extern struct class *power_supply_class; |
| 374 | |
| Rhyland Klein | 51d0756 | 2011-01-25 11:10:06 -0800 | [diff] [blame] | 375 | static inline bool power_supply_is_amp_property(enum power_supply_property psp) |
| 376 | { |
| 377 | switch (psp) { |
| 378 | case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN: |
| 379 | case POWER_SUPPLY_PROP_CHARGE_EMPTY_DESIGN: |
| 380 | case POWER_SUPPLY_PROP_CHARGE_FULL: |
| 381 | case POWER_SUPPLY_PROP_CHARGE_EMPTY: |
| 382 | case POWER_SUPPLY_PROP_CHARGE_NOW: |
| 383 | case POWER_SUPPLY_PROP_CHARGE_AVG: |
| 384 | case POWER_SUPPLY_PROP_CHARGE_COUNTER: |
| Ramakrishna Pallala | 3824c47 | 2012-05-06 18:16:44 +0530 | [diff] [blame] | 385 | case POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT: |
| Ramakrishna Pallala | 2815b78 | 2012-07-30 12:49:21 +0530 | [diff] [blame] | 386 | case POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT_MAX: |
| Rhyland Klein | 51d0756 | 2011-01-25 11:10:06 -0800 | [diff] [blame] | 387 | case POWER_SUPPLY_PROP_CURRENT_MAX: |
| 388 | case POWER_SUPPLY_PROP_CURRENT_NOW: |
| 389 | case POWER_SUPPLY_PROP_CURRENT_AVG: |
| Ramakrishna Pallala | a8adcc90 | 2014-08-27 23:44:08 +0530 | [diff] [blame] | 390 | case POWER_SUPPLY_PROP_CURRENT_BOOT: |
| Rhyland Klein | 51d0756 | 2011-01-25 11:10:06 -0800 | [diff] [blame] | 391 | return 1; |
| 392 | default: |
| 393 | break; |
| 394 | } |
| 395 | |
| 396 | return 0; |
| 397 | } |
| 398 | |
| 399 | static inline bool power_supply_is_watt_property(enum power_supply_property psp) |
| 400 | { |
| 401 | switch (psp) { |
| 402 | case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN: |
| 403 | case POWER_SUPPLY_PROP_ENERGY_EMPTY_DESIGN: |
| 404 | case POWER_SUPPLY_PROP_ENERGY_FULL: |
| 405 | case POWER_SUPPLY_PROP_ENERGY_EMPTY: |
| 406 | case POWER_SUPPLY_PROP_ENERGY_NOW: |
| 407 | case POWER_SUPPLY_PROP_ENERGY_AVG: |
| 408 | case POWER_SUPPLY_PROP_VOLTAGE_MAX: |
| 409 | case POWER_SUPPLY_PROP_VOLTAGE_MIN: |
| 410 | case POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN: |
| 411 | case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN: |
| 412 | case POWER_SUPPLY_PROP_VOLTAGE_NOW: |
| 413 | case POWER_SUPPLY_PROP_VOLTAGE_AVG: |
| Ramakrishna Pallala | a2ebfe2 | 2012-04-10 16:21:20 +0530 | [diff] [blame] | 414 | case POWER_SUPPLY_PROP_VOLTAGE_OCV: |
| Ramakrishna Pallala | a8adcc90 | 2014-08-27 23:44:08 +0530 | [diff] [blame] | 415 | case POWER_SUPPLY_PROP_VOLTAGE_BOOT: |
| Ramakrishna Pallala | 3824c47 | 2012-05-06 18:16:44 +0530 | [diff] [blame] | 416 | case POWER_SUPPLY_PROP_CONSTANT_CHARGE_VOLTAGE: |
| Ramakrishna Pallala | 2815b78 | 2012-07-30 12:49:21 +0530 | [diff] [blame] | 417 | case POWER_SUPPLY_PROP_CONSTANT_CHARGE_VOLTAGE_MAX: |
| Rhyland Klein | 35c9d26 | 2011-02-28 16:55:31 -0800 | [diff] [blame] | 418 | case POWER_SUPPLY_PROP_POWER_NOW: |
| Rhyland Klein | 51d0756 | 2011-01-25 11:10:06 -0800 | [diff] [blame] | 419 | return 1; |
| 420 | default: |
| 421 | break; |
| 422 | } |
| 423 | |
| 424 | return 0; |
| 425 | } |
| 426 | |
| Anton Vorontsov | 4a11b59 | 2007-05-04 00:27:45 +0400 | [diff] [blame] | 427 | #endif /* __LINUX_POWER_SUPPLY_H__ */ |