Revert the following customer changes in order to clean up this branch. This reverts commit 33ddf5a9eaa031c00b00846458f2ba534e6807b8. This reverts commit f17df2402b795faf2c03de6d8a5b12378674f3be. This reverts commit 0a488464c03806e1f775c35d7b2c83650eaab4ef. This reverts commit 23d2a7cd02b081e1cf2578c02b7ecd3a65319d4e. This reverts commit 90e32fa7cb701d922825e40b82b566e4af843ea2. This reverts commit 7346d0fbd3c338d55330766e0f1867f19b364fed. This reverts commit eb59bf66db9f2ca6e79552f4f72aa56f8c6abd27. This reverts commit 9c56de000bb2390191fa2ddaea738e6d3e8f5d4f. This reverts commit 7a72ca62c3f64c7b914edd8d9dbb75933b3c845e. This reverts commit 76048dac5085eca4459ee5ea5dd4876a1f518cfa. This reverts commit bfafe7ec7cdeef5b44b32f9aa6ee03beba2020e0. This reverts commit e346f7a7b8ead1bbb106f4eb1e766c49407bffde. This reverts commit 1265899c012a463cb0521ed73f2abe057692a9db This reverts commit 1ff608a341b87defa586ca4a24d0bd89abfdfbb3 This reverts commit 5f030effc8c1af159ad13e77d4c169f037d6c9e4. This reverts commit 19c87ddde66fd6aad61a60e466a75af235fca7f9. This reverts commit 905eac978c30c96c5d12a81c1f6968d8c57a645f. This reverts commit 1bd7c8643cdd8fdc7cf649ec465cc454315a6753. This reverts commit 69f1730e0d249bad3b4f0fc0f94d917c16c3df19. This reverts commit 2073afb7ee8b3f80f1f3184bd7ac99ead581adee This reverts commit 8126554cf049d13f4dd2d815d86ea289efdc6f3a. This reverts commit 45ccbb53cfc227fd3811e71b0bd813432c96ee9e This reverts commit 325995993eb806285a35381e803ed5432fe5a93a. This reverts commit 84cf5a3959bcf412c4b48f8a29b8255c18602d1b. This reverts commit 839d5a50c761787ded6b8558fa37696be81196fe. This reverts commit d4b1fb57463d04aeca5ae9bfd2181faa016f97c2. This reverts commit 2ab04b0deb912a5a52899a50ced73e36974a6a00. This reverts commit 3a3de0ee621625c8767e0d3c7106c52fcf834499. This reverts commit f278add027723a90b11c9a97f6d1b09c1aaec795. This reverts commit 1a749b700752efcc8d832f7b83554df2771dce53. Change-Id: I21863586360b6bc57dd6d631c34725bea963cffa Signed-off-by: Xiaozhe Shi <xiaozhes@codeaurora.org>
304 lines
9.0 KiB
C
304 lines
9.0 KiB
C
/*
|
|
* 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/wakelock.h>
|
|
#include <linux/workqueue.h>
|
|
#include <linux/leds.h>
|
|
|
|
struct device;
|
|
|
|
/*
|
|
* 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,
|
|
};
|
|
|
|
enum {
|
|
POWER_SUPPLY_CHARGE_TYPE_UNKNOWN = 0,
|
|
POWER_SUPPLY_CHARGE_TYPE_NONE,
|
|
POWER_SUPPLY_CHARGE_TYPE_TRICKLE,
|
|
POWER_SUPPLY_CHARGE_TYPE_FAST,
|
|
};
|
|
|
|
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,
|
|
POWER_SUPPLY_HEALTH_COLD,
|
|
};
|
|
|
|
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,
|
|
POWER_SUPPLY_TECHNOLOGY_LiMn,
|
|
};
|
|
|
|
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,
|
|
};
|
|
|
|
enum {
|
|
POWER_SUPPLY_SCOPE_UNKNOWN = 0,
|
|
POWER_SUPPLY_SCOPE_SYSTEM,
|
|
POWER_SUPPLY_SCOPE_DEVICE,
|
|
};
|
|
|
|
enum power_supply_property {
|
|
/* Properties of type `int' */
|
|
POWER_SUPPLY_PROP_STATUS = 0,
|
|
POWER_SUPPLY_PROP_CHARGE_TYPE,
|
|
POWER_SUPPLY_PROP_HEALTH,
|
|
POWER_SUPPLY_PROP_PRESENT,
|
|
POWER_SUPPLY_PROP_ONLINE,
|
|
POWER_SUPPLY_PROP_TECHNOLOGY,
|
|
POWER_SUPPLY_PROP_CYCLE_COUNT,
|
|
POWER_SUPPLY_PROP_VOLTAGE_MAX,
|
|
POWER_SUPPLY_PROP_VOLTAGE_MIN,
|
|
POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN,
|
|
POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
|
|
POWER_SUPPLY_PROP_VOLTAGE_NOW,
|
|
POWER_SUPPLY_PROP_VOLTAGE_AVG,
|
|
POWER_SUPPLY_PROP_CURRENT_MAX,
|
|
POWER_SUPPLY_PROP_CURRENT_NOW,
|
|
POWER_SUPPLY_PROP_CURRENT_AVG,
|
|
POWER_SUPPLY_PROP_POWER_NOW,
|
|
POWER_SUPPLY_PROP_POWER_AVG,
|
|
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,
|
|
POWER_SUPPLY_PROP_CHARGE_COUNTER,
|
|
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! */
|
|
POWER_SUPPLY_PROP_CAPACITY_LEVEL,
|
|
POWER_SUPPLY_PROP_TEMP,
|
|
POWER_SUPPLY_PROP_TEMP_AMBIENT,
|
|
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,
|
|
POWER_SUPPLY_PROP_TYPE, /* use power_supply.type instead */
|
|
POWER_SUPPLY_PROP_SCOPE,
|
|
/* Properties of type `const char *' */
|
|
POWER_SUPPLY_PROP_MODEL_NAME,
|
|
POWER_SUPPLY_PROP_MANUFACTURER,
|
|
POWER_SUPPLY_PROP_SERIAL_NUMBER,
|
|
};
|
|
|
|
enum power_supply_type {
|
|
POWER_SUPPLY_TYPE_UNKNOWN = 0,
|
|
POWER_SUPPLY_TYPE_BATTERY,
|
|
POWER_SUPPLY_TYPE_UPS,
|
|
POWER_SUPPLY_TYPE_MAINS,
|
|
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 */
|
|
};
|
|
|
|
union power_supply_propval {
|
|
int intval;
|
|
const char *strval;
|
|
};
|
|
|
|
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;
|
|
|
|
int (*get_property)(struct power_supply *psy,
|
|
enum power_supply_property psp,
|
|
union power_supply_propval *val);
|
|
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);
|
|
void (*external_power_changed)(struct power_supply *psy);
|
|
void (*set_charged)(struct power_supply *psy);
|
|
|
|
/* For APM emulation, think legacy userspace. */
|
|
int use_for_apm;
|
|
|
|
/* private */
|
|
struct device *dev;
|
|
struct work_struct changed_work;
|
|
spinlock_t changed_lock;
|
|
bool changed;
|
|
struct wake_lock work_wake_lock;
|
|
|
|
#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;
|
|
struct led_trigger *charging_blink_full_solid_trig;
|
|
char *charging_blink_full_solid_trig_name;
|
|
#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;
|
|
};
|
|
|
|
#if defined(CONFIG_POWER_SUPPLY) || defined(CONFIG_POWER_SUPPLY_MODULE)
|
|
extern struct power_supply *power_supply_get_by_name(char *name);
|
|
extern void power_supply_changed(struct power_supply *psy);
|
|
extern int power_supply_am_i_supplied(struct power_supply *psy);
|
|
extern int power_supply_set_battery_charged(struct power_supply *psy);
|
|
extern int power_supply_set_current_limit(struct power_supply *psy, int limit);
|
|
extern int power_supply_set_online(struct power_supply *psy, bool enable);
|
|
extern int power_supply_set_scope(struct power_supply *psy, int scope);
|
|
extern int power_supply_set_charge_type(struct power_supply *psy, int type);
|
|
extern int power_supply_set_supply_type(struct power_supply *psy,
|
|
enum power_supply_type supply_type);
|
|
extern int power_supply_is_system_supplied(void);
|
|
#else
|
|
static inline struct power_supply *power_supply_get_by_name(char *name)
|
|
{ return -ENOSYS; }
|
|
static inline int power_supply_am_i_supplied(struct power_supply *psy)
|
|
{ return -ENOSYS; }
|
|
static inline int power_supply_set_battery_charged(struct power_supply *psy)
|
|
{ return -ENOSYS; }
|
|
static inline int power_supply_set_current_limit(struct power_supply *psy,
|
|
int limit)
|
|
{ return -ENOSYS; }
|
|
static inline int power_supply_set_online(struct power_supply *psy,
|
|
bool enable)
|
|
{ return -ENOSYS; }
|
|
static inline int power_supply_set_scope(struct power_supply *psy,
|
|
int scope)
|
|
{ return -ENOSYS; }
|
|
static inline int power_supply_set_charge_type(struct power_supply *psy,
|
|
int type)
|
|
{ return -ENOSYS; }
|
|
static inline int power_supply_set_supply_type(struct power_supply *psy,
|
|
enum power_supply_type supply_type);
|
|
{ return -ENOSYS; }
|
|
static inline int power_supply_is_system_supplied(void) { return -ENOSYS; }
|
|
#endif
|
|
|
|
extern int power_supply_register(struct device *parent,
|
|
struct power_supply *psy);
|
|
extern void power_supply_unregister(struct power_supply *psy);
|
|
extern int power_supply_powers(struct power_supply *psy, struct device *dev);
|
|
|
|
/* For APM emulation, think legacy userspace. */
|
|
extern struct class *power_supply_class;
|
|
|
|
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:
|
|
case POWER_SUPPLY_PROP_CURRENT_MAX:
|
|
case POWER_SUPPLY_PROP_CURRENT_NOW:
|
|
case POWER_SUPPLY_PROP_CURRENT_AVG:
|
|
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:
|
|
case POWER_SUPPLY_PROP_POWER_NOW:
|
|
return 1;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
#endif /* __LINUX_POWER_SUPPLY_H__ */
|