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,
405c49a625SJonghwa Lee 	CM_EVENT_BATT_OVERHEAT,
415c49a625SJonghwa Lee 	CM_EVENT_BATT_COLD,
42dfeccb12SChanwoo Choi 	CM_EVENT_EXT_PWR_IN_OUT,
43dfeccb12SChanwoo Choi 	CM_EVENT_CHG_START_STOP,
44dfeccb12SChanwoo Choi 	CM_EVENT_OTHERS,
45dfeccb12SChanwoo Choi };
46dfeccb12SChanwoo Choi 
473bb3dbbdSDonggeun Kim /**
483bb3dbbdSDonggeun Kim  * struct charger_global_desc
493bb3dbbdSDonggeun Kim  * @rtc_name: the name of RTC used to wake up the system from suspend.
503bb3dbbdSDonggeun Kim  * @rtc_only_wakeup:
513bb3dbbdSDonggeun Kim  *	If the system is woken up by waekup-sources other than the RTC or
523bb3dbbdSDonggeun Kim  *	callbacks, Charger Manager should recognize with
533bb3dbbdSDonggeun Kim  *	rtc_only_wakeup() returning false.
543bb3dbbdSDonggeun Kim  *	If the RTC given to CM is the only wakeup reason,
553bb3dbbdSDonggeun Kim  *	rtc_only_wakeup should return true.
56d829dc75SChanwoo Choi  * @assume_timer_stops_in_suspend:
57d829dc75SChanwoo Choi  *	Assume that the jiffy timer stops in suspend-to-RAM.
58d829dc75SChanwoo Choi  *	When enabled, CM does not rely on jiffies value in
59d829dc75SChanwoo Choi  *	suspend_again and assumes that jiffies value does not
60d829dc75SChanwoo Choi  *	change during suspend.
613bb3dbbdSDonggeun Kim  */
623bb3dbbdSDonggeun Kim struct charger_global_desc {
633bb3dbbdSDonggeun Kim 	char *rtc_name;
643bb3dbbdSDonggeun Kim 
653bb3dbbdSDonggeun Kim 	bool (*rtc_only_wakeup)(void);
66d829dc75SChanwoo Choi 
67d829dc75SChanwoo Choi 	bool assume_timer_stops_in_suspend;
683bb3dbbdSDonggeun Kim };
693bb3dbbdSDonggeun Kim 
703bb3dbbdSDonggeun Kim /**
71bee737bcSChanwoo Choi  * struct charger_cable
72bee737bcSChanwoo Choi  * @extcon_name: the name of extcon device.
73bee737bcSChanwoo Choi  * @name: the name of charger cable(external connector).
74bee737bcSChanwoo Choi  * @extcon_dev: the extcon device.
75bee737bcSChanwoo Choi  * @wq: the workqueue to control charger according to the state of
76bee737bcSChanwoo Choi  *	charger cable. If charger cable is attached, enable charger.
77bee737bcSChanwoo Choi  *	But if charger cable is detached, disable charger.
78bee737bcSChanwoo Choi  * @nb: the notifier block to receive changed state from EXTCON
79bee737bcSChanwoo Choi  *	(External Connector) when charger cable is attached/detached.
80bee737bcSChanwoo Choi  * @attached: the state of charger cable.
81bee737bcSChanwoo Choi  *	true: the charger cable is attached
82bee737bcSChanwoo Choi  *	false: the charger cable is detached
83bee737bcSChanwoo Choi  * @charger: the instance of struct charger_regulator.
84bee737bcSChanwoo Choi  * @cm: the Charger Manager representing the battery.
85bee737bcSChanwoo Choi  */
86bee737bcSChanwoo Choi struct charger_cable {
87bee737bcSChanwoo Choi 	const char *extcon_name;
88bee737bcSChanwoo Choi 	const char *name;
89bee737bcSChanwoo Choi 
90bee737bcSChanwoo Choi 	/* The charger-manager use Exton framework*/
91bee737bcSChanwoo Choi 	struct extcon_specific_cable_nb extcon_dev;
92bee737bcSChanwoo Choi 	struct work_struct wq;
93bee737bcSChanwoo Choi 	struct notifier_block nb;
94bee737bcSChanwoo Choi 
95bee737bcSChanwoo Choi 	/* The state of charger cable */
96bee737bcSChanwoo Choi 	bool attached;
97bee737bcSChanwoo Choi 
98bee737bcSChanwoo Choi 	struct charger_regulator *charger;
9945cd4fb2SChanwoo Choi 
10045cd4fb2SChanwoo Choi 	/*
10145cd4fb2SChanwoo Choi 	 * Set min/max current of regulator to protect over-current issue
10245cd4fb2SChanwoo Choi 	 * according to a kind of charger cable when cable is attached.
10345cd4fb2SChanwoo Choi 	 */
10445cd4fb2SChanwoo Choi 	int min_uA;
10545cd4fb2SChanwoo Choi 	int max_uA;
10645cd4fb2SChanwoo Choi 
107bee737bcSChanwoo Choi 	struct charger_manager *cm;
108bee737bcSChanwoo Choi };
109bee737bcSChanwoo Choi 
110bee737bcSChanwoo Choi /**
111bee737bcSChanwoo Choi  * struct charger_regulator
112bee737bcSChanwoo Choi  * @regulator_name: the name of regulator for using charger.
113bee737bcSChanwoo Choi  * @consumer: the regulator consumer for the charger.
1143950c786SChanwoo Choi  * @externally_control:
1153950c786SChanwoo Choi  *	Set if the charger-manager cannot control charger,
1163950c786SChanwoo Choi  *	the charger will be maintained with disabled state.
117bee737bcSChanwoo Choi  * @cables:
118bee737bcSChanwoo Choi  *	the array of charger cables to enable/disable charger
119bee737bcSChanwoo Choi  *	and set current limit according to constratint data of
120bee737bcSChanwoo Choi  *	struct charger_cable if only charger cable included
121bee737bcSChanwoo Choi  *	in the array of charger cables is attached/detached.
122bee737bcSChanwoo Choi  * @num_cables: the number of charger cables.
1233950c786SChanwoo Choi  * @attr_g: Attribute group for the charger(regulator)
1243950c786SChanwoo Choi  * @attr_name: "name" sysfs entry
1253950c786SChanwoo Choi  * @attr_state: "state" sysfs entry
1263950c786SChanwoo Choi  * @attr_externally_control: "externally_control" sysfs entry
1273950c786SChanwoo Choi  * @attrs: Arrays pointing to attr_name/state/externally_control for attr_g
128bee737bcSChanwoo Choi  */
129bee737bcSChanwoo Choi struct charger_regulator {
130bee737bcSChanwoo Choi 	/* The name of regulator for charging */
131bee737bcSChanwoo Choi 	const char *regulator_name;
132bee737bcSChanwoo Choi 	struct regulator *consumer;
133bee737bcSChanwoo Choi 
1343950c786SChanwoo Choi 	/* charger never on when system is on */
1353950c786SChanwoo Choi 	int externally_control;
1363950c786SChanwoo Choi 
137bee737bcSChanwoo Choi 	/*
138bee737bcSChanwoo Choi 	 * Store constraint information related to current limit,
139bee737bcSChanwoo Choi 	 * each cable have different condition for charging.
140bee737bcSChanwoo Choi 	 */
141bee737bcSChanwoo Choi 	struct charger_cable *cables;
142bee737bcSChanwoo Choi 	int num_cables;
1433950c786SChanwoo Choi 
1443950c786SChanwoo Choi 	struct attribute_group attr_g;
1453950c786SChanwoo Choi 	struct device_attribute attr_name;
1463950c786SChanwoo Choi 	struct device_attribute attr_state;
1473950c786SChanwoo Choi 	struct device_attribute attr_externally_control;
1483950c786SChanwoo Choi 	struct attribute *attrs[4];
1493950c786SChanwoo Choi 
1503950c786SChanwoo Choi 	struct charger_manager *cm;
151bee737bcSChanwoo Choi };
152bee737bcSChanwoo Choi 
153bee737bcSChanwoo Choi /**
1543bb3dbbdSDonggeun Kim  * struct charger_desc
155ad3d13eeSDonggeun Kim  * @psy_name: the name of power-supply-class for charger manager
1563bb3dbbdSDonggeun Kim  * @polling_mode:
1573bb3dbbdSDonggeun Kim  *	Determine which polling mode will be used
158d829dc75SChanwoo Choi  * @fullbatt_vchkdrop_ms:
159d829dc75SChanwoo Choi  * @fullbatt_vchkdrop_uV:
160d829dc75SChanwoo Choi  *	Check voltage drop after the battery is fully charged.
161d829dc75SChanwoo Choi  *	If it has dropped more than fullbatt_vchkdrop_uV after
162d829dc75SChanwoo Choi  *	fullbatt_vchkdrop_ms, CM will restart charging.
163ad3d13eeSDonggeun Kim  * @fullbatt_uV: voltage in microvolt
1642ed9e9b6SChanwoo Choi  *	If VBATT >= fullbatt_uV, it is assumed to be full.
1652ed9e9b6SChanwoo Choi  * @fullbatt_soc: state of Charge in %
1662ed9e9b6SChanwoo Choi  *	If state of Charge >= fullbatt_soc, it is assumed to be full.
1672ed9e9b6SChanwoo Choi  * @fullbatt_full_capacity: full capacity measure
1682ed9e9b6SChanwoo Choi  *	If full capacity of battery >= fullbatt_full_capacity,
169ad3d13eeSDonggeun Kim  *	it is assumed to be full.
1703bb3dbbdSDonggeun Kim  * @polling_interval_ms: interval in millisecond at which
1713bb3dbbdSDonggeun Kim  *	charger manager will monitor battery health
1723bb3dbbdSDonggeun Kim  * @battery_present:
1733bb3dbbdSDonggeun Kim  *	Specify where information for existance of battery can be obtained
1743bb3dbbdSDonggeun Kim  * @psy_charger_stat: the names of power-supply for chargers
1753bb3dbbdSDonggeun Kim  * @num_charger_regulator: the number of entries in charger_regulators
176c6b2744cSAnton Vorontsov  * @charger_regulators: array of charger regulators
1773bb3dbbdSDonggeun Kim  * @psy_fuel_gauge: the name of power-supply for fuel gauge
1785c49a625SJonghwa Lee  * @thermal_zone : the name of thermal zone for battery
1795c49a625SJonghwa Lee  * @temp_min : Minimum battery temperature for charging.
1805c49a625SJonghwa Lee  * @temp_max : Maximum battery temperature for charging.
1815c49a625SJonghwa Lee  * @temp_diff : Temperature diffential to restart charging.
182ad3d13eeSDonggeun Kim  * @measure_battery_temp:
183ad3d13eeSDonggeun Kim  *	true: measure battery temperature
184ad3d13eeSDonggeun Kim  *	false: measure ambient temperature
1858fcfe088SChanwoo Choi  * @charging_max_duration_ms: Maximum possible duration for charging
1868fcfe088SChanwoo Choi  *	If whole charging duration exceed 'charging_max_duration_ms',
1878fcfe088SChanwoo Choi  *	cm stop charging.
1888fcfe088SChanwoo Choi  * @discharging_max_duration_ms:
1898fcfe088SChanwoo Choi  *	Maximum possible duration for discharging with charger cable
1908fcfe088SChanwoo Choi  *	after full-batt. If discharging duration exceed 'discharging
1918fcfe088SChanwoo Choi  *	max_duration_ms', cm start charging.
1923bb3dbbdSDonggeun Kim  */
1933bb3dbbdSDonggeun Kim struct charger_desc {
194*856ee611SJonghwa Lee 	const char *psy_name;
195ad3d13eeSDonggeun Kim 
1963bb3dbbdSDonggeun Kim 	enum polling_modes polling_mode;
1973bb3dbbdSDonggeun Kim 	unsigned int polling_interval_ms;
1983bb3dbbdSDonggeun Kim 
199d829dc75SChanwoo Choi 	unsigned int fullbatt_vchkdrop_ms;
200d829dc75SChanwoo Choi 	unsigned int fullbatt_vchkdrop_uV;
201ad3d13eeSDonggeun Kim 	unsigned int fullbatt_uV;
2022ed9e9b6SChanwoo Choi 	unsigned int fullbatt_soc;
2032ed9e9b6SChanwoo Choi 	unsigned int fullbatt_full_capacity;
204ad3d13eeSDonggeun Kim 
2053bb3dbbdSDonggeun Kim 	enum data_source battery_present;
2063bb3dbbdSDonggeun Kim 
207*856ee611SJonghwa Lee 	const char **psy_charger_stat;
2083bb3dbbdSDonggeun Kim 
2093bb3dbbdSDonggeun Kim 	int num_charger_regulators;
210bee737bcSChanwoo Choi 	struct charger_regulator *charger_regulators;
2113bb3dbbdSDonggeun Kim 
212*856ee611SJonghwa Lee 	const char *psy_fuel_gauge;
2133bb3dbbdSDonggeun Kim 
214*856ee611SJonghwa Lee 	const char *thermal_zone;
2155c49a625SJonghwa Lee 
2165c49a625SJonghwa Lee 	int temp_min;
2175c49a625SJonghwa Lee 	int temp_max;
2185c49a625SJonghwa Lee 	int temp_diff;
2195c49a625SJonghwa Lee 
220ad3d13eeSDonggeun Kim 	bool measure_battery_temp;
2218fcfe088SChanwoo Choi 
222*856ee611SJonghwa Lee 	u32 charging_max_duration_ms;
223*856ee611SJonghwa Lee 	u32 discharging_max_duration_ms;
2243bb3dbbdSDonggeun Kim };
2253bb3dbbdSDonggeun Kim 
2263bb3dbbdSDonggeun Kim #define PSY_NAME_MAX	30
2273bb3dbbdSDonggeun Kim 
2283bb3dbbdSDonggeun Kim /**
2293bb3dbbdSDonggeun Kim  * struct charger_manager
2303bb3dbbdSDonggeun Kim  * @entry: entry for list
2313bb3dbbdSDonggeun Kim  * @dev: device pointer
2323bb3dbbdSDonggeun Kim  * @desc: instance of charger_desc
2333bb3dbbdSDonggeun Kim  * @fuel_gauge: power_supply for fuel gauge
2343bb3dbbdSDonggeun Kim  * @charger_stat: array of power_supply for chargers
2355c49a625SJonghwa Lee  * @tzd_batt : thermal zone device for battery
2363bb3dbbdSDonggeun Kim  * @charger_enabled: the state of charger
237d829dc75SChanwoo Choi  * @fullbatt_vchk_jiffies_at:
238d829dc75SChanwoo Choi  *	jiffies at the time full battery check will occur.
239d829dc75SChanwoo Choi  * @fullbatt_vchk_work: work queue for full battery check
2403bb3dbbdSDonggeun Kim  * @emergency_stop:
2413bb3dbbdSDonggeun Kim  *	When setting true, stop charging
242ad3d13eeSDonggeun Kim  * @psy_name_buf: the name of power-supply-class for charger manager
243ad3d13eeSDonggeun Kim  * @charger_psy: power_supply for charger manager
2443bb3dbbdSDonggeun Kim  * @status_save_ext_pwr_inserted:
2453bb3dbbdSDonggeun Kim  *	saved status of external power before entering suspend-to-RAM
2463bb3dbbdSDonggeun Kim  * @status_save_batt:
2473bb3dbbdSDonggeun Kim  *	saved status of battery before entering suspend-to-RAM
2488fcfe088SChanwoo Choi  * @charging_start_time: saved start time of enabling charging
2498fcfe088SChanwoo Choi  * @charging_end_time: saved end time of disabling charging
2503bb3dbbdSDonggeun Kim  */
2513bb3dbbdSDonggeun Kim struct charger_manager {
2523bb3dbbdSDonggeun Kim 	struct list_head entry;
2533bb3dbbdSDonggeun Kim 	struct device *dev;
2543bb3dbbdSDonggeun Kim 	struct charger_desc *desc;
2553bb3dbbdSDonggeun Kim 
2563bb3dbbdSDonggeun Kim 	struct power_supply *fuel_gauge;
2573bb3dbbdSDonggeun Kim 	struct power_supply **charger_stat;
2583bb3dbbdSDonggeun Kim 
2595c49a625SJonghwa Lee #ifdef CONFIG_THERMAL
2605c49a625SJonghwa Lee 	struct thermal_zone_device *tzd_batt;
2615c49a625SJonghwa Lee #endif
2623bb3dbbdSDonggeun Kim 	bool charger_enabled;
2633bb3dbbdSDonggeun Kim 
264d829dc75SChanwoo Choi 	unsigned long fullbatt_vchk_jiffies_at;
265d829dc75SChanwoo Choi 	struct delayed_work fullbatt_vchk_work;
266d829dc75SChanwoo Choi 
2673bb3dbbdSDonggeun Kim 	int emergency_stop;
2683bb3dbbdSDonggeun Kim 
269ad3d13eeSDonggeun Kim 	char psy_name_buf[PSY_NAME_MAX + 1];
270ad3d13eeSDonggeun Kim 	struct power_supply charger_psy;
271ad3d13eeSDonggeun Kim 
2723bb3dbbdSDonggeun Kim 	bool status_save_ext_pwr_inserted;
2733bb3dbbdSDonggeun Kim 	bool status_save_batt;
2748fcfe088SChanwoo Choi 
2758fcfe088SChanwoo Choi 	u64 charging_start_time;
2768fcfe088SChanwoo Choi 	u64 charging_end_time;
2773bb3dbbdSDonggeun Kim };
2783bb3dbbdSDonggeun Kim 
2793bb3dbbdSDonggeun Kim #ifdef CONFIG_CHARGER_MANAGER
2803bb3dbbdSDonggeun Kim extern int setup_charger_manager(struct charger_global_desc *gd);
2813bb3dbbdSDonggeun Kim extern bool cm_suspend_again(void);
282dfeccb12SChanwoo Choi extern void cm_notify_event(struct power_supply *psy,
283dfeccb12SChanwoo Choi 				enum cm_event_types type, char *msg);
2843bb3dbbdSDonggeun Kim #else
285dfeccb12SChanwoo Choi static inline int setup_charger_manager(struct charger_global_desc *gd)
286dfeccb12SChanwoo Choi { return 0; }
287dfeccb12SChanwoo Choi static inline bool cm_suspend_again(void) { return false; }
288dfeccb12SChanwoo Choi static inline void cm_notify_event(struct power_supply *psy,
289dfeccb12SChanwoo Choi 				enum cm_event_types type, char *msg) { }
2903bb3dbbdSDonggeun Kim #endif
2913bb3dbbdSDonggeun Kim #endif /* _CHARGER_MANAGER_H */
292