power_supply.h 11.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 *  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__

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

/*
 * 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,
};

42 43 44 45 46 47 48
enum {
	POWER_SUPPLY_CHARGE_TYPE_UNKNOWN = 0,
	POWER_SUPPLY_CHARGE_TYPE_NONE,
	POWER_SUPPLY_CHARGE_TYPE_TRICKLE,
	POWER_SUPPLY_CHARGE_TYPE_FAST,
};

49 50 51 52 53 54 55
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,
56
	POWER_SUPPLY_HEALTH_COLD,
57 58
	POWER_SUPPLY_HEALTH_WATCHDOG_TIMER_EXPIRE,
	POWER_SUPPLY_HEALTH_SAFETY_TIMER_EXPIRE,
59 60 61 62 63 64 65 66 67
};

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,
68
	POWER_SUPPLY_TECHNOLOGY_LiMn,
69 70
};

71 72 73 74 75 76 77 78 79
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,
};

80 81 82 83 84 85
enum {
	POWER_SUPPLY_SCOPE_UNKNOWN = 0,
	POWER_SUPPLY_SCOPE_SYSTEM,
	POWER_SUPPLY_SCOPE_DEVICE,
};

86 87 88
enum power_supply_property {
	/* Properties of type `int' */
	POWER_SUPPLY_PROP_STATUS = 0,
89
	POWER_SUPPLY_PROP_CHARGE_TYPE,
90 91 92
	POWER_SUPPLY_PROP_HEALTH,
	POWER_SUPPLY_PROP_PRESENT,
	POWER_SUPPLY_PROP_ONLINE,
93
	POWER_SUPPLY_PROP_AUTHENTIC,
94
	POWER_SUPPLY_PROP_TECHNOLOGY,
95
	POWER_SUPPLY_PROP_CYCLE_COUNT,
96 97
	POWER_SUPPLY_PROP_VOLTAGE_MAX,
	POWER_SUPPLY_PROP_VOLTAGE_MIN,
98 99 100 101
	POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN,
	POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
	POWER_SUPPLY_PROP_VOLTAGE_NOW,
	POWER_SUPPLY_PROP_VOLTAGE_AVG,
102
	POWER_SUPPLY_PROP_VOLTAGE_OCV,
103
	POWER_SUPPLY_PROP_VOLTAGE_BOOT,
104
	POWER_SUPPLY_PROP_CURRENT_MAX,
105 106
	POWER_SUPPLY_PROP_CURRENT_NOW,
	POWER_SUPPLY_PROP_CURRENT_AVG,
107
	POWER_SUPPLY_PROP_CURRENT_BOOT,
108 109
	POWER_SUPPLY_PROP_POWER_NOW,
	POWER_SUPPLY_PROP_POWER_AVG,
110 111 112 113 114 115
	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,
116
	POWER_SUPPLY_PROP_CHARGE_COUNTER,
117
	POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT,
118
	POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT_MAX,
119
	POWER_SUPPLY_PROP_CONSTANT_CHARGE_VOLTAGE,
120
	POWER_SUPPLY_PROP_CONSTANT_CHARGE_VOLTAGE_MAX,
121 122
	POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT,
	POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT_MAX,
123
	POWER_SUPPLY_PROP_INPUT_CURRENT_LIMIT,
124 125 126 127 128 129 130
	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! */
131 132
	POWER_SUPPLY_PROP_CAPACITY_ALERT_MIN, /* in percents! */
	POWER_SUPPLY_PROP_CAPACITY_ALERT_MAX, /* in percents! */
133
	POWER_SUPPLY_PROP_CAPACITY_LEVEL,
134
	POWER_SUPPLY_PROP_TEMP,
135 136
	POWER_SUPPLY_PROP_TEMP_MAX,
	POWER_SUPPLY_PROP_TEMP_MIN,
137 138
	POWER_SUPPLY_PROP_TEMP_ALERT_MIN,
	POWER_SUPPLY_PROP_TEMP_ALERT_MAX,
139
	POWER_SUPPLY_PROP_TEMP_AMBIENT,
140 141
	POWER_SUPPLY_PROP_TEMP_AMBIENT_ALERT_MIN,
	POWER_SUPPLY_PROP_TEMP_AMBIENT_ALERT_MAX,
142 143 144 145
	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,
146
	POWER_SUPPLY_PROP_TYPE, /* use power_supply.type instead */
147
	POWER_SUPPLY_PROP_SCOPE,
148
	POWER_SUPPLY_PROP_CHARGE_TERM_CURRENT,
149
	POWER_SUPPLY_PROP_CALIBRATE,
150 151 152
	/* Properties of type `const char *' */
	POWER_SUPPLY_PROP_MODEL_NAME,
	POWER_SUPPLY_PROP_MANUFACTURER,
153
	POWER_SUPPLY_PROP_SERIAL_NUMBER,
154 155 156
};

enum power_supply_type {
157 158
	POWER_SUPPLY_TYPE_UNKNOWN = 0,
	POWER_SUPPLY_TYPE_BATTERY,
159 160
	POWER_SUPPLY_TYPE_UPS,
	POWER_SUPPLY_TYPE_MAINS,
161 162 163 164
	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 */
165 166
};

167 168 169 170
enum power_supply_notifier_events {
	PSY_EVENT_PROP_CHANGED,
};

171 172 173 174 175
union power_supply_propval {
	int intval;
	const char *strval;
};

176
struct device;
177 178
struct device_node;

179 180 181 182 183 184 185 186 187 188
/* Power supply instance specific configuration */
struct power_supply_config {
	struct device_node *of_node;
	/* Driver private data */
	void *drv_data;

	char **supplied_to;
	size_t num_supplicants;
};

189 190 191 192 193 194 195 196 197
struct power_supply {
	const char *name;
	enum power_supply_type type;
	enum power_supply_property *properties;
	size_t num_properties;

	char **supplied_to;
	size_t num_supplicants;

198 199
	char **supplied_from;
	size_t num_supplies;
200
	struct device_node *of_node;
201

202 203 204 205 206 207
	/*
	 * 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()).
	 */
208 209 210
	int (*get_property)(struct power_supply *psy,
			    enum power_supply_property psp,
			    union power_supply_propval *val);
211 212 213 214 215
	int (*set_property)(struct power_supply *psy,
			    enum power_supply_property psp,
			    const union power_supply_propval *val);
	int (*property_is_writeable)(struct power_supply *psy,
				     enum power_supply_property psp);
216
	void (*external_power_changed)(struct power_supply *psy);
217
	void (*set_charged)(struct power_supply *psy);
218

219 220 221 222 223 224
	/*
	 * 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;
225 226 227
	/* For APM emulation, think legacy userspace. */
	int use_for_apm;

228 229 230
	/* Driver private data */
	void *drv_data;

231 232 233
	/* private */
	struct device *dev;
	struct work_struct changed_work;
234 235
	spinlock_t changed_lock;
	bool changed;
236
	atomic_t use_cnt;
237 238
#ifdef CONFIG_THERMAL
	struct thermal_zone_device *tzd;
239
	struct thermal_cooling_device *tcd;
240
#endif
241 242 243 244 245 246 247 248 249 250

#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;
251 252
	struct led_trigger *charging_blink_full_solid_trig;
	char *charging_blink_full_solid_trig_name;
253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
#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;
};

275 276 277
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);
278
extern struct power_supply *power_supply_get_by_name(const char *name);
279 280 281 282 283 284 285 286
#ifdef CONFIG_OF
extern struct power_supply *power_supply_get_by_phandle(struct device_node *np,
							const char *property);
#else /* !CONFIG_OF */
static inline struct power_supply *
power_supply_get_by_phandle(struct device_node *np, const char *property)
{ return NULL; }
#endif /* CONFIG_OF */
287 288
extern void power_supply_changed(struct power_supply *psy);
extern int power_supply_am_i_supplied(struct power_supply *psy);
289
extern int power_supply_set_battery_charged(struct power_supply *psy);
290

291
#ifdef CONFIG_POWER_SUPPLY
292 293 294 295 296
extern int power_supply_is_system_supplied(void);
#else
static inline int power_supply_is_system_supplied(void) { return -ENOSYS; }
#endif

297 298 299 300 301 302 303 304 305
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);
306
extern int power_supply_register(struct device *parent,
307 308
				 struct power_supply *psy,
				 const struct power_supply_config *cfg);
309
extern int power_supply_register_no_ws(struct device *parent,
310 311
				 struct power_supply *psy,
				 const struct power_supply_config *cfg);
312
extern int devm_power_supply_register(struct device *parent,
313 314
				 struct power_supply *psy,
				 const struct power_supply_config *cfg);
315
extern int devm_power_supply_register_no_ws(struct device *parent,
316 317
				 struct power_supply *psy,
				 const struct power_supply_config *cfg);
318
extern void power_supply_unregister(struct power_supply *psy);
319
extern int power_supply_powers(struct power_supply *psy, struct device *dev);
320

321
extern void *power_supply_get_drvdata(struct power_supply *psy);
322 323 324
/* For APM emulation, think legacy userspace. */
extern struct class *power_supply_class;

325 326 327 328 329 330 331 332 333 334
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:
335
	case POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT:
336
	case POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT_MAX:
337 338 339
	case POWER_SUPPLY_PROP_CURRENT_MAX:
	case POWER_SUPPLY_PROP_CURRENT_NOW:
	case POWER_SUPPLY_PROP_CURRENT_AVG:
340
	case POWER_SUPPLY_PROP_CURRENT_BOOT:
341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
		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:
364
	case POWER_SUPPLY_PROP_VOLTAGE_OCV:
365
	case POWER_SUPPLY_PROP_VOLTAGE_BOOT:
366
	case POWER_SUPPLY_PROP_CONSTANT_CHARGE_VOLTAGE:
367
	case POWER_SUPPLY_PROP_CONSTANT_CHARGE_VOLTAGE_MAX:
368
	case POWER_SUPPLY_PROP_POWER_NOW:
369 370 371 372 373 374 375 376
		return 1;
	default:
		break;
	}

	return 0;
}

377
#endif /* __LINUX_POWER_SUPPLY_H__ */