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>
20c1155c64SJonghwa Lee #include <linux/alarmtimer.h>
213bb3dbbdSDonggeun Kim 
223bb3dbbdSDonggeun Kim enum data_source {
23d829dc75SChanwoo Choi 	CM_BATTERY_PRESENT,
24d829dc75SChanwoo Choi 	CM_NO_BATTERY,
253bb3dbbdSDonggeun Kim 	CM_FUEL_GAUGE,
263bb3dbbdSDonggeun Kim 	CM_CHARGER_STAT,
273bb3dbbdSDonggeun Kim };
283bb3dbbdSDonggeun Kim 
293bb3dbbdSDonggeun Kim enum polling_modes {
303bb3dbbdSDonggeun Kim 	CM_POLL_DISABLE = 0,
313bb3dbbdSDonggeun Kim 	CM_POLL_ALWAYS,
323bb3dbbdSDonggeun Kim 	CM_POLL_EXTERNAL_POWER_ONLY,
333bb3dbbdSDonggeun Kim 	CM_POLL_CHARGING_ONLY,
343bb3dbbdSDonggeun Kim };
353bb3dbbdSDonggeun Kim 
36dfeccb12SChanwoo Choi enum cm_event_types {
37dfeccb12SChanwoo Choi 	CM_EVENT_UNKNOWN = 0,
38dfeccb12SChanwoo Choi 	CM_EVENT_BATT_FULL,
39dfeccb12SChanwoo Choi 	CM_EVENT_BATT_IN,
40dfeccb12SChanwoo Choi 	CM_EVENT_BATT_OUT,
415c49a625SJonghwa Lee 	CM_EVENT_BATT_OVERHEAT,
425c49a625SJonghwa Lee 	CM_EVENT_BATT_COLD,
43dfeccb12SChanwoo Choi 	CM_EVENT_EXT_PWR_IN_OUT,
44dfeccb12SChanwoo Choi 	CM_EVENT_CHG_START_STOP,
45dfeccb12SChanwoo Choi 	CM_EVENT_OTHERS,
46dfeccb12SChanwoo Choi };
47dfeccb12SChanwoo Choi 
483bb3dbbdSDonggeun Kim /**
49bee737bcSChanwoo Choi  * struct charger_cable
50bee737bcSChanwoo Choi  * @extcon_name: the name of extcon device.
51bee737bcSChanwoo Choi  * @name: the name of charger cable(external connector).
52bee737bcSChanwoo Choi  * @extcon_dev: the extcon device.
53bee737bcSChanwoo Choi  * @wq: the workqueue to control charger according to the state of
54bee737bcSChanwoo Choi  *	charger cable. If charger cable is attached, enable charger.
55bee737bcSChanwoo Choi  *	But if charger cable is detached, disable charger.
56bee737bcSChanwoo Choi  * @nb: the notifier block to receive changed state from EXTCON
57bee737bcSChanwoo Choi  *	(External Connector) when charger cable is attached/detached.
58bee737bcSChanwoo Choi  * @attached: the state of charger cable.
59bee737bcSChanwoo Choi  *	true: the charger cable is attached
60bee737bcSChanwoo Choi  *	false: the charger cable is detached
61bee737bcSChanwoo Choi  * @charger: the instance of struct charger_regulator.
62bee737bcSChanwoo Choi  * @cm: the Charger Manager representing the battery.
63bee737bcSChanwoo Choi  */
64bee737bcSChanwoo Choi struct charger_cable {
65bee737bcSChanwoo Choi 	const char *extcon_name;
66bee737bcSChanwoo Choi 	const char *name;
67bee737bcSChanwoo Choi 
68*75ea8ca8SMarcel Ziswiler 	/* The charger-manager use Extcon framework */
69bee737bcSChanwoo Choi 	struct extcon_specific_cable_nb extcon_dev;
70bee737bcSChanwoo Choi 	struct work_struct wq;
71bee737bcSChanwoo Choi 	struct notifier_block nb;
72bee737bcSChanwoo Choi 
73bee737bcSChanwoo Choi 	/* The state of charger cable */
74bee737bcSChanwoo Choi 	bool attached;
75bee737bcSChanwoo Choi 
76bee737bcSChanwoo Choi 	struct charger_regulator *charger;
7745cd4fb2SChanwoo Choi 
7845cd4fb2SChanwoo Choi 	/*
7945cd4fb2SChanwoo Choi 	 * Set min/max current of regulator to protect over-current issue
8045cd4fb2SChanwoo Choi 	 * according to a kind of charger cable when cable is attached.
8145cd4fb2SChanwoo Choi 	 */
8245cd4fb2SChanwoo Choi 	int min_uA;
8345cd4fb2SChanwoo Choi 	int max_uA;
8445cd4fb2SChanwoo Choi 
85bee737bcSChanwoo Choi 	struct charger_manager *cm;
86bee737bcSChanwoo Choi };
87bee737bcSChanwoo Choi 
88bee737bcSChanwoo Choi /**
89bee737bcSChanwoo Choi  * struct charger_regulator
90bee737bcSChanwoo Choi  * @regulator_name: the name of regulator for using charger.
91bee737bcSChanwoo Choi  * @consumer: the regulator consumer for the charger.
923950c786SChanwoo Choi  * @externally_control:
933950c786SChanwoo Choi  *	Set if the charger-manager cannot control charger,
943950c786SChanwoo Choi  *	the charger will be maintained with disabled state.
95bee737bcSChanwoo Choi  * @cables:
96bee737bcSChanwoo Choi  *	the array of charger cables to enable/disable charger
97*75ea8ca8SMarcel Ziswiler  *	and set current limit according to constraint data of
98bee737bcSChanwoo Choi  *	struct charger_cable if only charger cable included
99bee737bcSChanwoo Choi  *	in the array of charger cables is attached/detached.
100bee737bcSChanwoo Choi  * @num_cables: the number of charger cables.
1013950c786SChanwoo Choi  * @attr_g: Attribute group for the charger(regulator)
1023950c786SChanwoo Choi  * @attr_name: "name" sysfs entry
1033950c786SChanwoo Choi  * @attr_state: "state" sysfs entry
1043950c786SChanwoo Choi  * @attr_externally_control: "externally_control" sysfs entry
1053950c786SChanwoo Choi  * @attrs: Arrays pointing to attr_name/state/externally_control for attr_g
106bee737bcSChanwoo Choi  */
107bee737bcSChanwoo Choi struct charger_regulator {
108bee737bcSChanwoo Choi 	/* The name of regulator for charging */
109bee737bcSChanwoo Choi 	const char *regulator_name;
110bee737bcSChanwoo Choi 	struct regulator *consumer;
111bee737bcSChanwoo Choi 
1123950c786SChanwoo Choi 	/* charger never on when system is on */
1133950c786SChanwoo Choi 	int externally_control;
1143950c786SChanwoo Choi 
115bee737bcSChanwoo Choi 	/*
116bee737bcSChanwoo Choi 	 * Store constraint information related to current limit,
117bee737bcSChanwoo Choi 	 * each cable have different condition for charging.
118bee737bcSChanwoo Choi 	 */
119bee737bcSChanwoo Choi 	struct charger_cable *cables;
120bee737bcSChanwoo Choi 	int num_cables;
1213950c786SChanwoo Choi 
1223950c786SChanwoo Choi 	struct attribute_group attr_g;
1233950c786SChanwoo Choi 	struct device_attribute attr_name;
1243950c786SChanwoo Choi 	struct device_attribute attr_state;
1253950c786SChanwoo Choi 	struct device_attribute attr_externally_control;
1263950c786SChanwoo Choi 	struct attribute *attrs[4];
1273950c786SChanwoo Choi 
1283950c786SChanwoo Choi 	struct charger_manager *cm;
129bee737bcSChanwoo Choi };
130bee737bcSChanwoo Choi 
131bee737bcSChanwoo Choi /**
1323bb3dbbdSDonggeun Kim  * struct charger_desc
133ad3d13eeSDonggeun Kim  * @psy_name: the name of power-supply-class for charger manager
1343bb3dbbdSDonggeun Kim  * @polling_mode:
1353bb3dbbdSDonggeun Kim  *	Determine which polling mode will be used
136d829dc75SChanwoo Choi  * @fullbatt_vchkdrop_ms:
137d829dc75SChanwoo Choi  * @fullbatt_vchkdrop_uV:
138d829dc75SChanwoo Choi  *	Check voltage drop after the battery is fully charged.
139d829dc75SChanwoo Choi  *	If it has dropped more than fullbatt_vchkdrop_uV after
140d829dc75SChanwoo Choi  *	fullbatt_vchkdrop_ms, CM will restart charging.
141ad3d13eeSDonggeun Kim  * @fullbatt_uV: voltage in microvolt
1422ed9e9b6SChanwoo Choi  *	If VBATT >= fullbatt_uV, it is assumed to be full.
1432ed9e9b6SChanwoo Choi  * @fullbatt_soc: state of Charge in %
1442ed9e9b6SChanwoo Choi  *	If state of Charge >= fullbatt_soc, it is assumed to be full.
1452ed9e9b6SChanwoo Choi  * @fullbatt_full_capacity: full capacity measure
1462ed9e9b6SChanwoo Choi  *	If full capacity of battery >= fullbatt_full_capacity,
147ad3d13eeSDonggeun Kim  *	it is assumed to be full.
1483bb3dbbdSDonggeun Kim  * @polling_interval_ms: interval in millisecond at which
1493bb3dbbdSDonggeun Kim  *	charger manager will monitor battery health
1503bb3dbbdSDonggeun Kim  * @battery_present:
151*75ea8ca8SMarcel Ziswiler  *	Specify where information for existence of battery can be obtained
1523bb3dbbdSDonggeun Kim  * @psy_charger_stat: the names of power-supply for chargers
1533bb3dbbdSDonggeun Kim  * @num_charger_regulator: the number of entries in charger_regulators
154c6b2744cSAnton Vorontsov  * @charger_regulators: array of charger regulators
1553bb3dbbdSDonggeun Kim  * @psy_fuel_gauge: the name of power-supply for fuel gauge
1565c49a625SJonghwa Lee  * @thermal_zone : the name of thermal zone for battery
1575c49a625SJonghwa Lee  * @temp_min : Minimum battery temperature for charging.
1585c49a625SJonghwa Lee  * @temp_max : Maximum battery temperature for charging.
159*75ea8ca8SMarcel Ziswiler  * @temp_diff : Temperature difference to restart charging.
160ad3d13eeSDonggeun Kim  * @measure_battery_temp:
161ad3d13eeSDonggeun Kim  *	true: measure battery temperature
162ad3d13eeSDonggeun Kim  *	false: measure ambient temperature
1638fcfe088SChanwoo Choi  * @charging_max_duration_ms: Maximum possible duration for charging
1648fcfe088SChanwoo Choi  *	If whole charging duration exceed 'charging_max_duration_ms',
1658fcfe088SChanwoo Choi  *	cm stop charging.
1668fcfe088SChanwoo Choi  * @discharging_max_duration_ms:
1678fcfe088SChanwoo Choi  *	Maximum possible duration for discharging with charger cable
1688fcfe088SChanwoo Choi  *	after full-batt. If discharging duration exceed 'discharging
1698fcfe088SChanwoo Choi  *	max_duration_ms', cm start charging.
1703bb3dbbdSDonggeun Kim  */
1713bb3dbbdSDonggeun Kim struct charger_desc {
172856ee611SJonghwa Lee 	const char *psy_name;
173ad3d13eeSDonggeun Kim 
1743bb3dbbdSDonggeun Kim 	enum polling_modes polling_mode;
1753bb3dbbdSDonggeun Kim 	unsigned int polling_interval_ms;
1763bb3dbbdSDonggeun Kim 
177d829dc75SChanwoo Choi 	unsigned int fullbatt_vchkdrop_ms;
178d829dc75SChanwoo Choi 	unsigned int fullbatt_vchkdrop_uV;
179ad3d13eeSDonggeun Kim 	unsigned int fullbatt_uV;
1802ed9e9b6SChanwoo Choi 	unsigned int fullbatt_soc;
1812ed9e9b6SChanwoo Choi 	unsigned int fullbatt_full_capacity;
182ad3d13eeSDonggeun Kim 
1833bb3dbbdSDonggeun Kim 	enum data_source battery_present;
1843bb3dbbdSDonggeun Kim 
185856ee611SJonghwa Lee 	const char **psy_charger_stat;
1863bb3dbbdSDonggeun Kim 
1873bb3dbbdSDonggeun Kim 	int num_charger_regulators;
188bee737bcSChanwoo Choi 	struct charger_regulator *charger_regulators;
1893bb3dbbdSDonggeun Kim 
190856ee611SJonghwa Lee 	const char *psy_fuel_gauge;
1913bb3dbbdSDonggeun Kim 
192856ee611SJonghwa Lee 	const char *thermal_zone;
1935c49a625SJonghwa Lee 
1945c49a625SJonghwa Lee 	int temp_min;
1955c49a625SJonghwa Lee 	int temp_max;
1965c49a625SJonghwa Lee 	int temp_diff;
1975c49a625SJonghwa Lee 
198ad3d13eeSDonggeun Kim 	bool measure_battery_temp;
1998fcfe088SChanwoo Choi 
200856ee611SJonghwa Lee 	u32 charging_max_duration_ms;
201856ee611SJonghwa Lee 	u32 discharging_max_duration_ms;
2023bb3dbbdSDonggeun Kim };
2033bb3dbbdSDonggeun Kim 
2043bb3dbbdSDonggeun Kim #define PSY_NAME_MAX	30
2053bb3dbbdSDonggeun Kim 
2063bb3dbbdSDonggeun Kim /**
2073bb3dbbdSDonggeun Kim  * struct charger_manager
2083bb3dbbdSDonggeun Kim  * @entry: entry for list
2093bb3dbbdSDonggeun Kim  * @dev: device pointer
2103bb3dbbdSDonggeun Kim  * @desc: instance of charger_desc
2113bb3dbbdSDonggeun Kim  * @fuel_gauge: power_supply for fuel gauge
2123bb3dbbdSDonggeun Kim  * @charger_stat: array of power_supply for chargers
2135c49a625SJonghwa Lee  * @tzd_batt : thermal zone device for battery
2143bb3dbbdSDonggeun Kim  * @charger_enabled: the state of charger
215d829dc75SChanwoo Choi  * @fullbatt_vchk_jiffies_at:
216d829dc75SChanwoo Choi  *	jiffies at the time full battery check will occur.
217d829dc75SChanwoo Choi  * @fullbatt_vchk_work: work queue for full battery check
2183bb3dbbdSDonggeun Kim  * @emergency_stop:
2193bb3dbbdSDonggeun Kim  *	When setting true, stop charging
220ad3d13eeSDonggeun Kim  * @psy_name_buf: the name of power-supply-class for charger manager
221ad3d13eeSDonggeun Kim  * @charger_psy: power_supply for charger manager
2223bb3dbbdSDonggeun Kim  * @status_save_ext_pwr_inserted:
2233bb3dbbdSDonggeun Kim  *	saved status of external power before entering suspend-to-RAM
2243bb3dbbdSDonggeun Kim  * @status_save_batt:
2253bb3dbbdSDonggeun Kim  *	saved status of battery before entering suspend-to-RAM
2268fcfe088SChanwoo Choi  * @charging_start_time: saved start time of enabling charging
2278fcfe088SChanwoo Choi  * @charging_end_time: saved end time of disabling charging
2283bb3dbbdSDonggeun Kim  */
2293bb3dbbdSDonggeun Kim struct charger_manager {
2303bb3dbbdSDonggeun Kim 	struct list_head entry;
2313bb3dbbdSDonggeun Kim 	struct device *dev;
2323bb3dbbdSDonggeun Kim 	struct charger_desc *desc;
2333bb3dbbdSDonggeun Kim 
2345c49a625SJonghwa Lee #ifdef CONFIG_THERMAL
2355c49a625SJonghwa Lee 	struct thermal_zone_device *tzd_batt;
2365c49a625SJonghwa Lee #endif
2373bb3dbbdSDonggeun Kim 	bool charger_enabled;
2383bb3dbbdSDonggeun Kim 
239d829dc75SChanwoo Choi 	unsigned long fullbatt_vchk_jiffies_at;
240d829dc75SChanwoo Choi 	struct delayed_work fullbatt_vchk_work;
241d829dc75SChanwoo Choi 
2423bb3dbbdSDonggeun Kim 	int emergency_stop;
2433bb3dbbdSDonggeun Kim 
244ad3d13eeSDonggeun Kim 	char psy_name_buf[PSY_NAME_MAX + 1];
245297d716fSKrzysztof Kozlowski 	struct power_supply_desc charger_psy_desc;
246297d716fSKrzysztof Kozlowski 	struct power_supply *charger_psy;
247ad3d13eeSDonggeun Kim 
2488fcfe088SChanwoo Choi 	u64 charging_start_time;
2498fcfe088SChanwoo Choi 	u64 charging_end_time;
2503bb3dbbdSDonggeun Kim };
2513bb3dbbdSDonggeun Kim 
2523bb3dbbdSDonggeun Kim #ifdef CONFIG_CHARGER_MANAGER
253dfeccb12SChanwoo Choi extern void cm_notify_event(struct power_supply *psy,
254dfeccb12SChanwoo Choi 				enum cm_event_types type, char *msg);
2553bb3dbbdSDonggeun Kim #else
256dfeccb12SChanwoo Choi static inline void cm_notify_event(struct power_supply *psy,
257dfeccb12SChanwoo Choi 				enum cm_event_types type, char *msg) { }
2583bb3dbbdSDonggeun Kim #endif
2593bb3dbbdSDonggeun Kim #endif /* _CHARGER_MANAGER_H */
260