13bb3dbbdSDonggeun Kim /* 23bb3dbbdSDonggeun Kim * Copyright (C) 2011 Samsung Electronics Co., Ltd. 33bb3dbbdSDonggeun Kim * MyungJoo.Ham <myungjoo.ham@samsung.com> 43bb3dbbdSDonggeun Kim * 53bb3dbbdSDonggeun Kim * Charger Manager. 63bb3dbbdSDonggeun Kim * This framework enables to control and multiple chargers and to 73bb3dbbdSDonggeun Kim * monitor charging even in the context of suspend-to-RAM with 83bb3dbbdSDonggeun Kim * an interface combining the chargers. 93bb3dbbdSDonggeun Kim * 103bb3dbbdSDonggeun Kim * This program is free software; you can redistribute it and/or modify 113bb3dbbdSDonggeun Kim * it under the terms of the GNU General Public License version 2 as 123bb3dbbdSDonggeun Kim * published by the Free Software Foundation. 133bb3dbbdSDonggeun Kim **/ 143bb3dbbdSDonggeun Kim 153bb3dbbdSDonggeun Kim #ifndef _CHARGER_MANAGER_H 163bb3dbbdSDonggeun Kim #define _CHARGER_MANAGER_H 173bb3dbbdSDonggeun Kim 183bb3dbbdSDonggeun Kim #include <linux/power_supply.h> 19bee737bcSChanwoo Choi #include <linux/extcon.h> 203bb3dbbdSDonggeun Kim 213bb3dbbdSDonggeun Kim enum data_source { 22d829dc75SChanwoo Choi CM_BATTERY_PRESENT, 23d829dc75SChanwoo Choi CM_NO_BATTERY, 243bb3dbbdSDonggeun Kim CM_FUEL_GAUGE, 253bb3dbbdSDonggeun Kim CM_CHARGER_STAT, 263bb3dbbdSDonggeun Kim }; 273bb3dbbdSDonggeun Kim 283bb3dbbdSDonggeun Kim enum polling_modes { 293bb3dbbdSDonggeun Kim CM_POLL_DISABLE = 0, 303bb3dbbdSDonggeun Kim CM_POLL_ALWAYS, 313bb3dbbdSDonggeun Kim CM_POLL_EXTERNAL_POWER_ONLY, 323bb3dbbdSDonggeun Kim CM_POLL_CHARGING_ONLY, 333bb3dbbdSDonggeun Kim }; 343bb3dbbdSDonggeun Kim 35dfeccb12SChanwoo Choi enum cm_event_types { 36dfeccb12SChanwoo Choi CM_EVENT_UNKNOWN = 0, 37dfeccb12SChanwoo Choi CM_EVENT_BATT_FULL, 38dfeccb12SChanwoo Choi CM_EVENT_BATT_IN, 39dfeccb12SChanwoo Choi CM_EVENT_BATT_OUT, 40dfeccb12SChanwoo Choi CM_EVENT_EXT_PWR_IN_OUT, 41dfeccb12SChanwoo Choi CM_EVENT_CHG_START_STOP, 42dfeccb12SChanwoo Choi CM_EVENT_OTHERS, 43dfeccb12SChanwoo Choi }; 44dfeccb12SChanwoo Choi 453bb3dbbdSDonggeun Kim /** 463bb3dbbdSDonggeun Kim * struct charger_global_desc 473bb3dbbdSDonggeun Kim * @rtc_name: the name of RTC used to wake up the system from suspend. 483bb3dbbdSDonggeun Kim * @rtc_only_wakeup: 493bb3dbbdSDonggeun Kim * If the system is woken up by waekup-sources other than the RTC or 503bb3dbbdSDonggeun Kim * callbacks, Charger Manager should recognize with 513bb3dbbdSDonggeun Kim * rtc_only_wakeup() returning false. 523bb3dbbdSDonggeun Kim * If the RTC given to CM is the only wakeup reason, 533bb3dbbdSDonggeun Kim * rtc_only_wakeup should return true. 54d829dc75SChanwoo Choi * @assume_timer_stops_in_suspend: 55d829dc75SChanwoo Choi * Assume that the jiffy timer stops in suspend-to-RAM. 56d829dc75SChanwoo Choi * When enabled, CM does not rely on jiffies value in 57d829dc75SChanwoo Choi * suspend_again and assumes that jiffies value does not 58d829dc75SChanwoo Choi * change during suspend. 593bb3dbbdSDonggeun Kim */ 603bb3dbbdSDonggeun Kim struct charger_global_desc { 613bb3dbbdSDonggeun Kim char *rtc_name; 623bb3dbbdSDonggeun Kim 633bb3dbbdSDonggeun Kim bool (*rtc_only_wakeup)(void); 64d829dc75SChanwoo Choi 65d829dc75SChanwoo Choi bool assume_timer_stops_in_suspend; 663bb3dbbdSDonggeun Kim }; 673bb3dbbdSDonggeun Kim 683bb3dbbdSDonggeun Kim /** 69bee737bcSChanwoo Choi * struct charger_cable 70bee737bcSChanwoo Choi * @extcon_name: the name of extcon device. 71bee737bcSChanwoo Choi * @name: the name of charger cable(external connector). 72bee737bcSChanwoo Choi * @extcon_dev: the extcon device. 73bee737bcSChanwoo Choi * @wq: the workqueue to control charger according to the state of 74bee737bcSChanwoo Choi * charger cable. If charger cable is attached, enable charger. 75bee737bcSChanwoo Choi * But if charger cable is detached, disable charger. 76bee737bcSChanwoo Choi * @nb: the notifier block to receive changed state from EXTCON 77bee737bcSChanwoo Choi * (External Connector) when charger cable is attached/detached. 78bee737bcSChanwoo Choi * @attached: the state of charger cable. 79bee737bcSChanwoo Choi * true: the charger cable is attached 80bee737bcSChanwoo Choi * false: the charger cable is detached 81bee737bcSChanwoo Choi * @charger: the instance of struct charger_regulator. 82bee737bcSChanwoo Choi * @cm: the Charger Manager representing the battery. 83bee737bcSChanwoo Choi */ 84bee737bcSChanwoo Choi struct charger_cable { 85bee737bcSChanwoo Choi const char *extcon_name; 86bee737bcSChanwoo Choi const char *name; 87bee737bcSChanwoo Choi 88bee737bcSChanwoo Choi /* The charger-manager use Exton framework*/ 89bee737bcSChanwoo Choi struct extcon_specific_cable_nb extcon_dev; 90bee737bcSChanwoo Choi struct work_struct wq; 91bee737bcSChanwoo Choi struct notifier_block nb; 92bee737bcSChanwoo Choi 93bee737bcSChanwoo Choi /* The state of charger cable */ 94bee737bcSChanwoo Choi bool attached; 95bee737bcSChanwoo Choi 96bee737bcSChanwoo Choi struct charger_regulator *charger; 97bee737bcSChanwoo Choi struct charger_manager *cm; 98bee737bcSChanwoo Choi }; 99bee737bcSChanwoo Choi 100bee737bcSChanwoo Choi /** 101bee737bcSChanwoo Choi * struct charger_regulator 102bee737bcSChanwoo Choi * @regulator_name: the name of regulator for using charger. 103bee737bcSChanwoo Choi * @consumer: the regulator consumer for the charger. 104bee737bcSChanwoo Choi * @cables: 105bee737bcSChanwoo Choi * the array of charger cables to enable/disable charger 106bee737bcSChanwoo Choi * and set current limit according to constratint data of 107bee737bcSChanwoo Choi * struct charger_cable if only charger cable included 108bee737bcSChanwoo Choi * in the array of charger cables is attached/detached. 109bee737bcSChanwoo Choi * @num_cables: the number of charger cables. 110bee737bcSChanwoo Choi */ 111bee737bcSChanwoo Choi struct charger_regulator { 112bee737bcSChanwoo Choi /* The name of regulator for charging */ 113bee737bcSChanwoo Choi const char *regulator_name; 114bee737bcSChanwoo Choi struct regulator *consumer; 115bee737bcSChanwoo Choi 116bee737bcSChanwoo Choi /* 117bee737bcSChanwoo Choi * Store constraint information related to current limit, 118bee737bcSChanwoo Choi * each cable have different condition for charging. 119bee737bcSChanwoo Choi */ 120bee737bcSChanwoo Choi struct charger_cable *cables; 121bee737bcSChanwoo Choi int num_cables; 122bee737bcSChanwoo Choi }; 123bee737bcSChanwoo Choi 124bee737bcSChanwoo Choi /** 1253bb3dbbdSDonggeun Kim * struct charger_desc 126ad3d13eeSDonggeun Kim * @psy_name: the name of power-supply-class for charger manager 1273bb3dbbdSDonggeun Kim * @polling_mode: 1283bb3dbbdSDonggeun Kim * Determine which polling mode will be used 129d829dc75SChanwoo Choi * @fullbatt_vchkdrop_ms: 130d829dc75SChanwoo Choi * @fullbatt_vchkdrop_uV: 131d829dc75SChanwoo Choi * Check voltage drop after the battery is fully charged. 132d829dc75SChanwoo Choi * If it has dropped more than fullbatt_vchkdrop_uV after 133d829dc75SChanwoo Choi * fullbatt_vchkdrop_ms, CM will restart charging. 134ad3d13eeSDonggeun Kim * @fullbatt_uV: voltage in microvolt 135ad3d13eeSDonggeun Kim * If it is not being charged and VBATT >= fullbatt_uV, 136ad3d13eeSDonggeun Kim * it is assumed to be full. 1373bb3dbbdSDonggeun Kim * @polling_interval_ms: interval in millisecond at which 1383bb3dbbdSDonggeun Kim * charger manager will monitor battery health 1393bb3dbbdSDonggeun Kim * @battery_present: 1403bb3dbbdSDonggeun Kim * Specify where information for existance of battery can be obtained 1413bb3dbbdSDonggeun Kim * @psy_charger_stat: the names of power-supply for chargers 1423bb3dbbdSDonggeun Kim * @num_charger_regulator: the number of entries in charger_regulators 1433bb3dbbdSDonggeun Kim * @charger_regulators: array of regulator_bulk_data for chargers 1443bb3dbbdSDonggeun Kim * @psy_fuel_gauge: the name of power-supply for fuel gauge 1453bb3dbbdSDonggeun Kim * @temperature_out_of_range: 1463bb3dbbdSDonggeun Kim * Determine whether the status is overheat or cold or normal. 1473bb3dbbdSDonggeun Kim * return_value > 0: overheat 1483bb3dbbdSDonggeun Kim * return_value == 0: normal 1493bb3dbbdSDonggeun Kim * return_value < 0: cold 150ad3d13eeSDonggeun Kim * @measure_battery_temp: 151ad3d13eeSDonggeun Kim * true: measure battery temperature 152ad3d13eeSDonggeun Kim * false: measure ambient temperature 1533bb3dbbdSDonggeun Kim */ 1543bb3dbbdSDonggeun Kim struct charger_desc { 155ad3d13eeSDonggeun Kim char *psy_name; 156ad3d13eeSDonggeun Kim 1573bb3dbbdSDonggeun Kim enum polling_modes polling_mode; 1583bb3dbbdSDonggeun Kim unsigned int polling_interval_ms; 1593bb3dbbdSDonggeun Kim 160d829dc75SChanwoo Choi unsigned int fullbatt_vchkdrop_ms; 161d829dc75SChanwoo Choi unsigned int fullbatt_vchkdrop_uV; 162ad3d13eeSDonggeun Kim unsigned int fullbatt_uV; 163ad3d13eeSDonggeun Kim 1643bb3dbbdSDonggeun Kim enum data_source battery_present; 1653bb3dbbdSDonggeun Kim 1663bb3dbbdSDonggeun Kim char **psy_charger_stat; 1673bb3dbbdSDonggeun Kim 1683bb3dbbdSDonggeun Kim int num_charger_regulators; 169bee737bcSChanwoo Choi struct charger_regulator *charger_regulators; 1703bb3dbbdSDonggeun Kim 1713bb3dbbdSDonggeun Kim char *psy_fuel_gauge; 1723bb3dbbdSDonggeun Kim 1733bb3dbbdSDonggeun Kim int (*temperature_out_of_range)(int *mC); 174ad3d13eeSDonggeun Kim bool measure_battery_temp; 1753bb3dbbdSDonggeun Kim }; 1763bb3dbbdSDonggeun Kim 1773bb3dbbdSDonggeun Kim #define PSY_NAME_MAX 30 1783bb3dbbdSDonggeun Kim 1793bb3dbbdSDonggeun Kim /** 1803bb3dbbdSDonggeun Kim * struct charger_manager 1813bb3dbbdSDonggeun Kim * @entry: entry for list 1823bb3dbbdSDonggeun Kim * @dev: device pointer 1833bb3dbbdSDonggeun Kim * @desc: instance of charger_desc 1843bb3dbbdSDonggeun Kim * @fuel_gauge: power_supply for fuel gauge 1853bb3dbbdSDonggeun Kim * @charger_stat: array of power_supply for chargers 1863bb3dbbdSDonggeun Kim * @charger_enabled: the state of charger 187d829dc75SChanwoo Choi * @fullbatt_vchk_jiffies_at: 188d829dc75SChanwoo Choi * jiffies at the time full battery check will occur. 189d829dc75SChanwoo Choi * @fullbatt_vchk_uV: voltage in microvolt 190d829dc75SChanwoo Choi * criteria for full battery 191d829dc75SChanwoo Choi * @fullbatt_vchk_work: work queue for full battery check 1923bb3dbbdSDonggeun Kim * @emergency_stop: 1933bb3dbbdSDonggeun Kim * When setting true, stop charging 1943bb3dbbdSDonggeun Kim * @last_temp_mC: the measured temperature in milli-Celsius 195ad3d13eeSDonggeun Kim * @psy_name_buf: the name of power-supply-class for charger manager 196ad3d13eeSDonggeun Kim * @charger_psy: power_supply for charger manager 1973bb3dbbdSDonggeun Kim * @status_save_ext_pwr_inserted: 1983bb3dbbdSDonggeun Kim * saved status of external power before entering suspend-to-RAM 1993bb3dbbdSDonggeun Kim * @status_save_batt: 2003bb3dbbdSDonggeun Kim * saved status of battery before entering suspend-to-RAM 2013bb3dbbdSDonggeun Kim */ 2023bb3dbbdSDonggeun Kim struct charger_manager { 2033bb3dbbdSDonggeun Kim struct list_head entry; 2043bb3dbbdSDonggeun Kim struct device *dev; 2053bb3dbbdSDonggeun Kim struct charger_desc *desc; 2063bb3dbbdSDonggeun Kim 2073bb3dbbdSDonggeun Kim struct power_supply *fuel_gauge; 2083bb3dbbdSDonggeun Kim struct power_supply **charger_stat; 2093bb3dbbdSDonggeun Kim 2103bb3dbbdSDonggeun Kim bool charger_enabled; 2113bb3dbbdSDonggeun Kim 212d829dc75SChanwoo Choi unsigned long fullbatt_vchk_jiffies_at; 213d829dc75SChanwoo Choi unsigned int fullbatt_vchk_uV; 214d829dc75SChanwoo Choi struct delayed_work fullbatt_vchk_work; 215d829dc75SChanwoo Choi 2163bb3dbbdSDonggeun Kim int emergency_stop; 2173bb3dbbdSDonggeun Kim int last_temp_mC; 2183bb3dbbdSDonggeun Kim 219ad3d13eeSDonggeun Kim char psy_name_buf[PSY_NAME_MAX + 1]; 220ad3d13eeSDonggeun Kim struct power_supply charger_psy; 221ad3d13eeSDonggeun Kim 2223bb3dbbdSDonggeun Kim bool status_save_ext_pwr_inserted; 2233bb3dbbdSDonggeun Kim bool status_save_batt; 2243bb3dbbdSDonggeun Kim }; 2253bb3dbbdSDonggeun Kim 2263bb3dbbdSDonggeun Kim #ifdef CONFIG_CHARGER_MANAGER 2273bb3dbbdSDonggeun Kim extern int setup_charger_manager(struct charger_global_desc *gd); 2283bb3dbbdSDonggeun Kim extern bool cm_suspend_again(void); 229dfeccb12SChanwoo Choi extern void cm_notify_event(struct power_supply *psy, 230dfeccb12SChanwoo Choi enum cm_event_types type, char *msg); 2313bb3dbbdSDonggeun Kim #else 232dfeccb12SChanwoo Choi static inline int setup_charger_manager(struct charger_global_desc *gd) 233dfeccb12SChanwoo Choi { return 0; } 234dfeccb12SChanwoo Choi static inline bool cm_suspend_again(void) { return false; } 235dfeccb12SChanwoo Choi static inline void cm_notify_event(struct power_supply *psy, 236dfeccb12SChanwoo Choi enum cm_event_types type, char *msg) { } 2373bb3dbbdSDonggeun Kim #endif 2383bb3dbbdSDonggeun Kim #endif /* _CHARGER_MANAGER_H */ 239