power_supply.h 15.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 *  Universal power supply monitor class
 *
 *  Copyright © 2007  Anton Vorontsov <cbou@mail.ru>
 *  Copyright © 2004  Szabolcs Gyurko
 *  Copyright © 2003  Ian Molton <spyro@f2s.com>
 *
 *  Modified: 2004, Oct     Szabolcs Gyurko
 *
 *  You may use this code as per GPL version 2
 */

#ifndef __LINUX_POWER_SUPPLY_H__
#define __LINUX_POWER_SUPPLY_H__

16
#include <linux/device.h>
17 18
#include <linux/workqueue.h>
#include <linux/leds.h>
19
#include <linux/spinlock.h>
20
#include <linux/notifier.h>
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42

/*
 * All voltages, currents, charges, energies, time and temperatures in uV,
 * µA, µAh, µWh, seconds and tenths of degree Celsius unless otherwise
 * stated. It's driver's job to convert its raw values to units in which
 * this class operates.
 */

/*
 * For systems where the charger determines the maximum battery capacity
 * the min and max fields should be used to present these values to user
 * space. Unused/unknown fields will not appear in sysfs.
 */

enum {
	POWER_SUPPLY_STATUS_UNKNOWN = 0,
	POWER_SUPPLY_STATUS_CHARGING,
	POWER_SUPPLY_STATUS_DISCHARGING,
	POWER_SUPPLY_STATUS_NOT_CHARGING,
	POWER_SUPPLY_STATUS_FULL,
};

43
/* What algorithm is the charger using? */
44 45 46
enum {
	POWER_SUPPLY_CHARGE_TYPE_UNKNOWN = 0,
	POWER_SUPPLY_CHARGE_TYPE_NONE,
47 48 49 50 51
	POWER_SUPPLY_CHARGE_TYPE_TRICKLE,	/* slow speed */
	POWER_SUPPLY_CHARGE_TYPE_FAST,		/* fast speed */
	POWER_SUPPLY_CHARGE_TYPE_STANDARD,	/* normal speed */
	POWER_SUPPLY_CHARGE_TYPE_ADAPTIVE,	/* dynamically adjusted speed */
	POWER_SUPPLY_CHARGE_TYPE_CUSTOM,	/* use CHARGE_CONTROL_* props */
52 53
};

54 55 56 57 58 59 60
enum {
	POWER_SUPPLY_HEALTH_UNKNOWN = 0,
	POWER_SUPPLY_HEALTH_GOOD,
	POWER_SUPPLY_HEALTH_OVERHEAT,
	POWER_SUPPLY_HEALTH_DEAD,
	POWER_SUPPLY_HEALTH_OVERVOLTAGE,
	POWER_SUPPLY_HEALTH_UNSPEC_FAILURE,
61
	POWER_SUPPLY_HEALTH_COLD,
62 63
	POWER_SUPPLY_HEALTH_WATCHDOG_TIMER_EXPIRE,
	POWER_SUPPLY_HEALTH_SAFETY_TIMER_EXPIRE,
64 65 66 67 68 69 70 71 72
};

enum {
	POWER_SUPPLY_TECHNOLOGY_UNKNOWN = 0,
	POWER_SUPPLY_TECHNOLOGY_NiMH,
	POWER_SUPPLY_TECHNOLOGY_LION,
	POWER_SUPPLY_TECHNOLOGY_LIPO,
	POWER_SUPPLY_TECHNOLOGY_LiFe,
	POWER_SUPPLY_TECHNOLOGY_NiCd,
73
	POWER_SUPPLY_TECHNOLOGY_LiMn,
74 75
};

76 77 78 79 80 81 82 83 84
enum {
	POWER_SUPPLY_CAPACITY_LEVEL_UNKNOWN = 0,
	POWER_SUPPLY_CAPACITY_LEVEL_CRITICAL,
	POWER_SUPPLY_CAPACITY_LEVEL_LOW,
	POWER_SUPPLY_CAPACITY_LEVEL_NORMAL,
	POWER_SUPPLY_CAPACITY_LEVEL_HIGH,
	POWER_SUPPLY_CAPACITY_LEVEL_FULL,
};

85 86 87 88 89 90
enum {
	POWER_SUPPLY_SCOPE_UNKNOWN = 0,
	POWER_SUPPLY_SCOPE_SYSTEM,
	POWER_SUPPLY_SCOPE_DEVICE,
};

91 92 93
enum power_supply_property {
	/* Properties of type `int' */
	POWER_SUPPLY_PROP_STATUS = 0,
94
	POWER_SUPPLY_PROP_CHARGE_TYPE,
95 96 97
	POWER_SUPPLY_PROP_HEALTH,
	POWER_SUPPLY_PROP_PRESENT,
	POWER_SUPPLY_PROP_ONLINE,
98
	POWER_SUPPLY_PROP_AUTHENTIC,
99
	POWER_SUPPLY_PROP_TECHNOLOGY,
100
	POWER_SUPPLY_PROP_CYCLE_COUNT,
101 102
	POWER_SUPPLY_PROP_VOLTAGE_MAX,
	POWER_SUPPLY_PROP_VOLTAGE_MIN,
103 104 105 106
	POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN,
	POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
	POWER_SUPPLY_PROP_VOLTAGE_NOW,
	POWER_SUPPLY_PROP_VOLTAGE_AVG,
107
	POWER_SUPPLY_PROP_VOLTAGE_OCV,
108
	POWER_SUPPLY_PROP_VOLTAGE_BOOT,
109
	POWER_SUPPLY_PROP_CURRENT_MAX,
110 111
	POWER_SUPPLY_PROP_CURRENT_NOW,
	POWER_SUPPLY_PROP_CURRENT_AVG,
112
	POWER_SUPPLY_PROP_CURRENT_BOOT,
113 114
	POWER_SUPPLY_PROP_POWER_NOW,
	POWER_SUPPLY_PROP_POWER_AVG,
115 116 117 118 119 120
	POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
	POWER_SUPPLY_PROP_CHARGE_EMPTY_DESIGN,
	POWER_SUPPLY_PROP_CHARGE_FULL,
	POWER_SUPPLY_PROP_CHARGE_EMPTY,
	POWER_SUPPLY_PROP_CHARGE_NOW,
	POWER_SUPPLY_PROP_CHARGE_AVG,
121
	POWER_SUPPLY_PROP_CHARGE_COUNTER,
122
	POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT,
123
	POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT_MAX,
124
	POWER_SUPPLY_PROP_CONSTANT_CHARGE_VOLTAGE,
125
	POWER_SUPPLY_PROP_CONSTANT_CHARGE_VOLTAGE_MAX,
126 127
	POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT,
	POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT_MAX,
128 129
	POWER_SUPPLY_PROP_CHARGE_CONTROL_START_THRESHOLD, /* in percents! */
	POWER_SUPPLY_PROP_CHARGE_CONTROL_END_THRESHOLD, /* in percents! */
130
	POWER_SUPPLY_PROP_INPUT_CURRENT_LIMIT,
131 132 133 134 135 136 137
	POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
	POWER_SUPPLY_PROP_ENERGY_EMPTY_DESIGN,
	POWER_SUPPLY_PROP_ENERGY_FULL,
	POWER_SUPPLY_PROP_ENERGY_EMPTY,
	POWER_SUPPLY_PROP_ENERGY_NOW,
	POWER_SUPPLY_PROP_ENERGY_AVG,
	POWER_SUPPLY_PROP_CAPACITY, /* in percents! */
138 139
	POWER_SUPPLY_PROP_CAPACITY_ALERT_MIN, /* in percents! */
	POWER_SUPPLY_PROP_CAPACITY_ALERT_MAX, /* in percents! */
140
	POWER_SUPPLY_PROP_CAPACITY_LEVEL,
141
	POWER_SUPPLY_PROP_TEMP,
142 143
	POWER_SUPPLY_PROP_TEMP_MAX,
	POWER_SUPPLY_PROP_TEMP_MIN,
144 145
	POWER_SUPPLY_PROP_TEMP_ALERT_MIN,
	POWER_SUPPLY_PROP_TEMP_ALERT_MAX,
146
	POWER_SUPPLY_PROP_TEMP_AMBIENT,
147 148
	POWER_SUPPLY_PROP_TEMP_AMBIENT_ALERT_MIN,
	POWER_SUPPLY_PROP_TEMP_AMBIENT_ALERT_MAX,
149 150 151 152
	POWER_SUPPLY_PROP_TIME_TO_EMPTY_NOW,
	POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG,
	POWER_SUPPLY_PROP_TIME_TO_FULL_NOW,
	POWER_SUPPLY_PROP_TIME_TO_FULL_AVG,
153
	POWER_SUPPLY_PROP_TYPE, /* use power_supply.type instead */
154
	POWER_SUPPLY_PROP_USB_TYPE,
155
	POWER_SUPPLY_PROP_SCOPE,
156
	POWER_SUPPLY_PROP_PRECHARGE_CURRENT,
157
	POWER_SUPPLY_PROP_CHARGE_TERM_CURRENT,
158
	POWER_SUPPLY_PROP_CALIBRATE,
159 160 161
	/* Properties of type `const char *' */
	POWER_SUPPLY_PROP_MODEL_NAME,
	POWER_SUPPLY_PROP_MANUFACTURER,
162
	POWER_SUPPLY_PROP_SERIAL_NUMBER,
163 164 165
};

enum power_supply_type {
166 167
	POWER_SUPPLY_TYPE_UNKNOWN = 0,
	POWER_SUPPLY_TYPE_BATTERY,
168 169
	POWER_SUPPLY_TYPE_UPS,
	POWER_SUPPLY_TYPE_MAINS,
170 171 172 173 174 175 176 177
	POWER_SUPPLY_TYPE_USB,			/* Standard Downstream Port */
	POWER_SUPPLY_TYPE_USB_DCP,		/* Dedicated Charging Port */
	POWER_SUPPLY_TYPE_USB_CDP,		/* Charging Downstream Port */
	POWER_SUPPLY_TYPE_USB_ACA,		/* Accessory Charger Adapters */
	POWER_SUPPLY_TYPE_USB_TYPE_C,		/* Type C Port */
	POWER_SUPPLY_TYPE_USB_PD,		/* Power Delivery Port */
	POWER_SUPPLY_TYPE_USB_PD_DRP,		/* PD Dual Role Port */
	POWER_SUPPLY_TYPE_APPLE_BRICK_ID,	/* Apple Charging Method */
178 179
};

180 181 182 183 184 185 186 187 188 189 190 191 192
enum power_supply_usb_type {
	POWER_SUPPLY_USB_TYPE_UNKNOWN = 0,
	POWER_SUPPLY_USB_TYPE_SDP,		/* Standard Downstream Port */
	POWER_SUPPLY_USB_TYPE_DCP,		/* Dedicated Charging Port */
	POWER_SUPPLY_USB_TYPE_CDP,		/* Charging Downstream Port */
	POWER_SUPPLY_USB_TYPE_ACA,		/* Accessory Charger Adapters */
	POWER_SUPPLY_USB_TYPE_C,		/* Type C Port */
	POWER_SUPPLY_USB_TYPE_PD,		/* Power Delivery Port */
	POWER_SUPPLY_USB_TYPE_PD_DRP,		/* PD Dual Role Port */
	POWER_SUPPLY_USB_TYPE_PD_PPS,		/* PD Programmable Power Supply */
	POWER_SUPPLY_USB_TYPE_APPLE_BRICK_ID,	/* Apple Charging Method */
};

193 194 195 196
enum power_supply_notifier_events {
	PSY_EVENT_PROP_CHANGED,
};

197 198 199 200 201
union power_supply_propval {
	int intval;
	const char *strval;
};

202
struct device_node;
203
struct power_supply;
204

205
/* Run-time specific power supply configuration */
206 207
struct power_supply_config {
	struct device_node *of_node;
208 209
	struct fwnode_handle *fwnode;

210 211 212
	/* Driver private data */
	void *drv_data;

213 214 215
	/* Device specific sysfs attributes */
	const struct attribute_group **attr_grp;

216 217 218 219
	char **supplied_to;
	size_t num_supplicants;
};

220 221
/* Description of power supply */
struct power_supply_desc {
222 223
	const char *name;
	enum power_supply_type type;
224 225
	enum power_supply_usb_type *usb_types;
	size_t num_usb_types;
226 227 228
	enum power_supply_property *properties;
	size_t num_properties;

229 230 231 232 233 234
	/*
	 * Functions for drivers implementing power supply class.
	 * These shouldn't be called directly by other drivers for accessing
	 * this power supply. Instead use power_supply_*() functions (for
	 * example power_supply_get_property()).
	 */
235 236 237
	int (*get_property)(struct power_supply *psy,
			    enum power_supply_property psp,
			    union power_supply_propval *val);
238 239 240
	int (*set_property)(struct power_supply *psy,
			    enum power_supply_property psp,
			    const union power_supply_propval *val);
241 242 243 244 245
	/*
	 * property_is_writeable() will be called during registration
	 * of power supply. If this happens during device probe then it must
	 * not access internal data of device (because probe did not end).
	 */
246 247
	int (*property_is_writeable)(struct power_supply *psy,
				     enum power_supply_property psp);
248
	void (*external_power_changed)(struct power_supply *psy);
249
	void (*set_charged)(struct power_supply *psy);
250

251 252 253 254 255 256
	/*
	 * Set if thermal zone should not be created for this power supply.
	 * For example for virtual supplies forwarding calls to actual
	 * sensors or other supplies.
	 */
	bool no_thermal;
257 258
	/* For APM emulation, think legacy userspace. */
	int use_for_apm;
259 260 261 262 263 264 265 266 267 268 269
};

struct power_supply {
	const struct power_supply_desc *desc;

	char **supplied_to;
	size_t num_supplicants;

	char **supplied_from;
	size_t num_supplies;
	struct device_node *of_node;
270

271 272 273
	/* Driver private data */
	void *drv_data;

274
	/* private */
275
	struct device dev;
276
	struct work_struct changed_work;
277
	struct delayed_work deferred_register_work;
278 279
	spinlock_t changed_lock;
	bool changed;
280
	bool initialized;
281
	bool removing;
282
	atomic_t use_cnt;
283 284
#ifdef CONFIG_THERMAL
	struct thermal_zone_device *tzd;
285
	struct thermal_cooling_device *tcd;
286
#endif
287 288 289 290 291 292 293 294 295 296

#ifdef CONFIG_LEDS_TRIGGERS
	struct led_trigger *charging_full_trig;
	char *charging_full_trig_name;
	struct led_trigger *charging_trig;
	char *charging_trig_name;
	struct led_trigger *full_trig;
	char *full_trig_name;
	struct led_trigger *online_trig;
	char *online_trig_name;
297 298
	struct led_trigger *charging_blink_full_solid_trig;
	char *charging_blink_full_solid_trig_name;
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320
#endif
};

/*
 * This is recommended structure to specify static power supply parameters.
 * Generic one, parametrizable for different power supplies. Power supply
 * class itself does not use it, but that's what implementing most platform
 * drivers, should try reuse for consistency.
 */

struct power_supply_info {
	const char *name;
	int technology;
	int voltage_max_design;
	int voltage_min_design;
	int charge_full_design;
	int charge_empty_design;
	int energy_full_design;
	int energy_empty_design;
	int use_for_apm;
};

321 322 323 324 325 326 327
struct power_supply_battery_ocv_table {
	int ocv;	/* microVolts */
	int capacity;	/* percent */
};

#define POWER_SUPPLY_OCV_TEMP_MAX 20

328 329 330 331 332 333 334 335 336 337 338 339 340
/*
 * This is the recommended struct to manage static battery parameters,
 * populated by power_supply_get_battery_info(). Most platform drivers should
 * use these for consistency.
 * Its field names must correspond to elements in enum power_supply_property.
 * The default field value is -EINVAL.
 * Power supply class itself doesn't use this.
 */

struct power_supply_battery_info {
	int energy_full_design_uwh;	    /* microWatt-hours */
	int charge_full_design_uah;	    /* microAmp-hours */
	int voltage_min_design_uv;	    /* microVolts */
341
	int voltage_max_design_uv;	    /* microVolts */
342 343 344 345
	int precharge_current_ua;	    /* microAmps */
	int charge_term_current_ua;	    /* microAmps */
	int constant_charge_current_max_ua; /* microAmps */
	int constant_charge_voltage_max_uv; /* microVolts */
346
	int factory_internal_resistance_uohm;   /* microOhms */
347 348 349
	int ocv_temp[POWER_SUPPLY_OCV_TEMP_MAX];/* celsius */
	struct power_supply_battery_ocv_table *ocv_table[POWER_SUPPLY_OCV_TEMP_MAX];
	int ocv_table_size[POWER_SUPPLY_OCV_TEMP_MAX];
350 351
};

352 353 354
extern struct atomic_notifier_head power_supply_notifier;
extern int power_supply_reg_notifier(struct notifier_block *nb);
extern void power_supply_unreg_notifier(struct notifier_block *nb);
355
extern struct power_supply *power_supply_get_by_name(const char *name);
356
extern void power_supply_put(struct power_supply *psy);
357 358 359
#ifdef CONFIG_OF
extern struct power_supply *power_supply_get_by_phandle(struct device_node *np,
							const char *property);
360 361
extern struct power_supply *devm_power_supply_get_by_phandle(
				    struct device *dev, const char *property);
362 363 364 365
#else /* !CONFIG_OF */
static inline struct power_supply *
power_supply_get_by_phandle(struct device_node *np, const char *property)
{ return NULL; }
366 367 368
static inline struct power_supply *
devm_power_supply_get_by_phandle(struct device *dev, const char *property)
{ return NULL; }
369
#endif /* CONFIG_OF */
370 371 372

extern int power_supply_get_battery_info(struct power_supply *psy,
					 struct power_supply_battery_info *info);
373 374 375 376 377 378 379 380 381
extern void power_supply_put_battery_info(struct power_supply *psy,
					  struct power_supply_battery_info *info);
extern int power_supply_ocv2cap_simple(struct power_supply_battery_ocv_table *table,
				       int table_len, int ocv);
extern struct power_supply_battery_ocv_table *
power_supply_find_ocv2cap_table(struct power_supply_battery_info *info,
				int temp, int *table_len);
extern int power_supply_batinfo_ocv2cap(struct power_supply_battery_info *info,
					int ocv, int temp);
382 383
extern void power_supply_changed(struct power_supply *psy);
extern int power_supply_am_i_supplied(struct power_supply *psy);
384 385
extern int power_supply_set_input_current_limit_from_supplier(
					 struct power_supply *psy);
386
extern int power_supply_set_battery_charged(struct power_supply *psy);
387

388
#ifdef CONFIG_POWER_SUPPLY
389 390 391 392 393
extern int power_supply_is_system_supplied(void);
#else
static inline int power_supply_is_system_supplied(void) { return -ENOSYS; }
#endif

394 395 396 397 398 399 400 401 402
extern int power_supply_get_property(struct power_supply *psy,
			    enum power_supply_property psp,
			    union power_supply_propval *val);
extern int power_supply_set_property(struct power_supply *psy,
			    enum power_supply_property psp,
			    const union power_supply_propval *val);
extern int power_supply_property_is_writeable(struct power_supply *psy,
					enum power_supply_property psp);
extern void power_supply_external_power_changed(struct power_supply *psy);
403 404 405 406

extern struct power_supply *__must_check
power_supply_register(struct device *parent,
				 const struct power_supply_desc *desc,
407
				 const struct power_supply_config *cfg);
408 409 410
extern struct power_supply *__must_check
power_supply_register_no_ws(struct device *parent,
				 const struct power_supply_desc *desc,
411
				 const struct power_supply_config *cfg);
412 413 414
extern struct power_supply *__must_check
devm_power_supply_register(struct device *parent,
				 const struct power_supply_desc *desc,
415
				 const struct power_supply_config *cfg);
416 417 418
extern struct power_supply *__must_check
devm_power_supply_register_no_ws(struct device *parent,
				 const struct power_supply_desc *desc,
419
				 const struct power_supply_config *cfg);
420
extern void power_supply_unregister(struct power_supply *psy);
421
extern int power_supply_powers(struct power_supply *psy, struct device *dev);
422

423 424
#define to_power_supply(device) container_of(device, struct power_supply, dev)

425
extern void *power_supply_get_drvdata(struct power_supply *psy);
426 427 428
/* For APM emulation, think legacy userspace. */
extern struct class *power_supply_class;

429 430 431 432 433 434 435 436 437 438
static inline bool power_supply_is_amp_property(enum power_supply_property psp)
{
	switch (psp) {
	case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
	case POWER_SUPPLY_PROP_CHARGE_EMPTY_DESIGN:
	case POWER_SUPPLY_PROP_CHARGE_FULL:
	case POWER_SUPPLY_PROP_CHARGE_EMPTY:
	case POWER_SUPPLY_PROP_CHARGE_NOW:
	case POWER_SUPPLY_PROP_CHARGE_AVG:
	case POWER_SUPPLY_PROP_CHARGE_COUNTER:
439 440
	case POWER_SUPPLY_PROP_PRECHARGE_CURRENT:
	case POWER_SUPPLY_PROP_CHARGE_TERM_CURRENT:
441
	case POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT:
442
	case POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT_MAX:
443 444 445
	case POWER_SUPPLY_PROP_CURRENT_MAX:
	case POWER_SUPPLY_PROP_CURRENT_NOW:
	case POWER_SUPPLY_PROP_CURRENT_AVG:
446
	case POWER_SUPPLY_PROP_CURRENT_BOOT:
447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469
		return 1;
	default:
		break;
	}

	return 0;
}

static inline bool power_supply_is_watt_property(enum power_supply_property psp)
{
	switch (psp) {
	case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
	case POWER_SUPPLY_PROP_ENERGY_EMPTY_DESIGN:
	case POWER_SUPPLY_PROP_ENERGY_FULL:
	case POWER_SUPPLY_PROP_ENERGY_EMPTY:
	case POWER_SUPPLY_PROP_ENERGY_NOW:
	case POWER_SUPPLY_PROP_ENERGY_AVG:
	case POWER_SUPPLY_PROP_VOLTAGE_MAX:
	case POWER_SUPPLY_PROP_VOLTAGE_MIN:
	case POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN:
	case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
	case POWER_SUPPLY_PROP_VOLTAGE_NOW:
	case POWER_SUPPLY_PROP_VOLTAGE_AVG:
470
	case POWER_SUPPLY_PROP_VOLTAGE_OCV:
471
	case POWER_SUPPLY_PROP_VOLTAGE_BOOT:
472
	case POWER_SUPPLY_PROP_CONSTANT_CHARGE_VOLTAGE:
473
	case POWER_SUPPLY_PROP_CONSTANT_CHARGE_VOLTAGE_MAX:
474
	case POWER_SUPPLY_PROP_POWER_NOW:
475 476 477 478 479 480 481 482
		return 1;
	default:
		break;
	}

	return 0;
}

483
#endif /* __LINUX_POWER_SUPPLY_H__ */