2019-06-04 08:11:33 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2011-12-27 09:47:48 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011 Samsung Electronics Co., Ltd.
|
|
|
|
* MyungJoo.Ham <myungjoo.ham@samsung.com>
|
|
|
|
*
|
|
|
|
* Charger Manager.
|
|
|
|
* This framework enables to control and multiple chargers and to
|
|
|
|
* monitor charging even in the context of suspend-to-RAM with
|
|
|
|
* an interface combining the chargers.
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef _CHARGER_MANAGER_H
|
|
|
|
#define _CHARGER_MANAGER_H
|
|
|
|
|
|
|
|
#include <linux/power_supply.h>
|
2012-07-12 06:03:25 +00:00
|
|
|
#include <linux/extcon.h>
|
2014-12-19 08:55:13 +00:00
|
|
|
#include <linux/alarmtimer.h>
|
2011-12-27 09:47:48 +00:00
|
|
|
|
|
|
|
enum data_source {
|
2012-05-05 13:24:10 +00:00
|
|
|
CM_BATTERY_PRESENT,
|
|
|
|
CM_NO_BATTERY,
|
2011-12-27 09:47:48 +00:00
|
|
|
CM_FUEL_GAUGE,
|
|
|
|
CM_CHARGER_STAT,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum polling_modes {
|
|
|
|
CM_POLL_DISABLE = 0,
|
|
|
|
CM_POLL_ALWAYS,
|
|
|
|
CM_POLL_EXTERNAL_POWER_ONLY,
|
|
|
|
CM_POLL_CHARGING_ONLY,
|
|
|
|
};
|
|
|
|
|
2020-05-14 23:04:27 +00:00
|
|
|
enum cm_batt_temp {
|
|
|
|
CM_BATT_OK = 0,
|
|
|
|
CM_BATT_OVERHEAT,
|
|
|
|
CM_BATT_COLD,
|
2012-05-05 13:26:47 +00:00
|
|
|
};
|
|
|
|
|
2012-07-12 06:03:25 +00:00
|
|
|
/**
|
|
|
|
* struct charger_cable
|
|
|
|
* @extcon_name: the name of extcon device.
|
2020-05-14 23:04:33 +00:00
|
|
|
* @name: the name of the cable connector
|
2012-07-12 06:03:25 +00:00
|
|
|
* @extcon_dev: the extcon device.
|
|
|
|
* @wq: the workqueue to control charger according to the state of
|
|
|
|
* charger cable. If charger cable is attached, enable charger.
|
|
|
|
* But if charger cable is detached, disable charger.
|
|
|
|
* @nb: the notifier block to receive changed state from EXTCON
|
|
|
|
* (External Connector) when charger cable is attached/detached.
|
|
|
|
* @attached: the state of charger cable.
|
|
|
|
* true: the charger cable is attached
|
|
|
|
* false: the charger cable is detached
|
|
|
|
* @charger: the instance of struct charger_regulator.
|
|
|
|
* @cm: the Charger Manager representing the battery.
|
|
|
|
*/
|
|
|
|
struct charger_cable {
|
|
|
|
const char *extcon_name;
|
|
|
|
const char *name;
|
2020-05-14 23:04:33 +00:00
|
|
|
struct extcon_dev *extcon_dev;
|
|
|
|
u64 extcon_type;
|
2012-07-12 06:03:25 +00:00
|
|
|
|
2015-09-19 22:13:37 +00:00
|
|
|
/* The charger-manager use Extcon framework */
|
2012-07-12 06:03:25 +00:00
|
|
|
struct work_struct wq;
|
|
|
|
struct notifier_block nb;
|
|
|
|
|
|
|
|
/* The state of charger cable */
|
|
|
|
bool attached;
|
|
|
|
|
|
|
|
struct charger_regulator *charger;
|
2012-07-12 06:03:29 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Set min/max current of regulator to protect over-current issue
|
|
|
|
* according to a kind of charger cable when cable is attached.
|
|
|
|
*/
|
|
|
|
int min_uA;
|
|
|
|
int max_uA;
|
|
|
|
|
2012-07-12 06:03:25 +00:00
|
|
|
struct charger_manager *cm;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* struct charger_regulator
|
|
|
|
* @regulator_name: the name of regulator for using charger.
|
|
|
|
* @consumer: the regulator consumer for the charger.
|
2012-09-21 09:49:37 +00:00
|
|
|
* @externally_control:
|
|
|
|
* Set if the charger-manager cannot control charger,
|
|
|
|
* the charger will be maintained with disabled state.
|
2012-07-12 06:03:25 +00:00
|
|
|
* @cables:
|
|
|
|
* the array of charger cables to enable/disable charger
|
2015-09-19 22:13:37 +00:00
|
|
|
* and set current limit according to constraint data of
|
2012-07-12 06:03:25 +00:00
|
|
|
* struct charger_cable if only charger cable included
|
|
|
|
* in the array of charger cables is attached/detached.
|
|
|
|
* @num_cables: the number of charger cables.
|
2012-09-21 09:49:37 +00:00
|
|
|
* @attr_g: Attribute group for the charger(regulator)
|
|
|
|
* @attr_name: "name" sysfs entry
|
|
|
|
* @attr_state: "state" sysfs entry
|
|
|
|
* @attr_externally_control: "externally_control" sysfs entry
|
|
|
|
* @attrs: Arrays pointing to attr_name/state/externally_control for attr_g
|
2012-07-12 06:03:25 +00:00
|
|
|
*/
|
|
|
|
struct charger_regulator {
|
|
|
|
/* The name of regulator for charging */
|
|
|
|
const char *regulator_name;
|
|
|
|
struct regulator *consumer;
|
|
|
|
|
2012-09-21 09:49:37 +00:00
|
|
|
/* charger never on when system is on */
|
|
|
|
int externally_control;
|
|
|
|
|
2012-07-12 06:03:25 +00:00
|
|
|
/*
|
|
|
|
* Store constraint information related to current limit,
|
|
|
|
* each cable have different condition for charging.
|
|
|
|
*/
|
|
|
|
struct charger_cable *cables;
|
|
|
|
int num_cables;
|
2012-09-21 09:49:37 +00:00
|
|
|
|
2018-09-28 15:35:37 +00:00
|
|
|
struct attribute_group attr_grp;
|
2012-09-21 09:49:37 +00:00
|
|
|
struct device_attribute attr_name;
|
|
|
|
struct device_attribute attr_state;
|
|
|
|
struct device_attribute attr_externally_control;
|
|
|
|
struct attribute *attrs[4];
|
|
|
|
|
|
|
|
struct charger_manager *cm;
|
2012-07-12 06:03:25 +00:00
|
|
|
};
|
|
|
|
|
2011-12-27 09:47:48 +00:00
|
|
|
/**
|
|
|
|
* struct charger_desc
|
2011-12-27 09:47:49 +00:00
|
|
|
* @psy_name: the name of power-supply-class for charger manager
|
2011-12-27 09:47:48 +00:00
|
|
|
* @polling_mode:
|
|
|
|
* Determine which polling mode will be used
|
2012-05-05 13:24:10 +00:00
|
|
|
* @fullbatt_vchkdrop_uV:
|
|
|
|
* Check voltage drop after the battery is fully charged.
|
2020-05-14 23:04:27 +00:00
|
|
|
* If it has dropped more than fullbatt_vchkdrop_uV
|
|
|
|
* CM will restart charging.
|
2011-12-27 09:47:49 +00:00
|
|
|
* @fullbatt_uV: voltage in microvolt
|
2012-08-21 08:06:52 +00:00
|
|
|
* If VBATT >= fullbatt_uV, it is assumed to be full.
|
|
|
|
* @fullbatt_soc: state of Charge in %
|
|
|
|
* If state of Charge >= fullbatt_soc, it is assumed to be full.
|
|
|
|
* @fullbatt_full_capacity: full capacity measure
|
|
|
|
* If full capacity of battery >= fullbatt_full_capacity,
|
2011-12-27 09:47:49 +00:00
|
|
|
* it is assumed to be full.
|
2011-12-27 09:47:48 +00:00
|
|
|
* @polling_interval_ms: interval in millisecond at which
|
|
|
|
* charger manager will monitor battery health
|
|
|
|
* @battery_present:
|
2015-09-19 22:13:37 +00:00
|
|
|
* Specify where information for existence of battery can be obtained
|
2011-12-27 09:47:48 +00:00
|
|
|
* @psy_charger_stat: the names of power-supply for chargers
|
|
|
|
* @num_charger_regulator: the number of entries in charger_regulators
|
2012-08-23 04:36:05 +00:00
|
|
|
* @charger_regulators: array of charger regulators
|
2011-12-27 09:47:48 +00:00
|
|
|
* @psy_fuel_gauge: the name of power-supply for fuel gauge
|
2013-12-18 06:42:34 +00:00
|
|
|
* @thermal_zone : the name of thermal zone for battery
|
|
|
|
* @temp_min : Minimum battery temperature for charging.
|
|
|
|
* @temp_max : Maximum battery temperature for charging.
|
2015-09-19 22:13:37 +00:00
|
|
|
* @temp_diff : Temperature difference to restart charging.
|
2011-12-27 09:47:49 +00:00
|
|
|
* @measure_battery_temp:
|
|
|
|
* true: measure battery temperature
|
|
|
|
* false: measure ambient temperature
|
2012-09-21 04:20:05 +00:00
|
|
|
* @charging_max_duration_ms: Maximum possible duration for charging
|
|
|
|
* If whole charging duration exceed 'charging_max_duration_ms',
|
|
|
|
* cm stop charging.
|
|
|
|
* @discharging_max_duration_ms:
|
|
|
|
* Maximum possible duration for discharging with charger cable
|
|
|
|
* after full-batt. If discharging duration exceed 'discharging
|
|
|
|
* max_duration_ms', cm start charging.
|
2011-12-27 09:47:48 +00:00
|
|
|
*/
|
|
|
|
struct charger_desc {
|
2013-12-18 06:42:35 +00:00
|
|
|
const char *psy_name;
|
2011-12-27 09:47:49 +00:00
|
|
|
|
2011-12-27 09:47:48 +00:00
|
|
|
enum polling_modes polling_mode;
|
|
|
|
unsigned int polling_interval_ms;
|
|
|
|
|
2012-05-05 13:24:10 +00:00
|
|
|
unsigned int fullbatt_vchkdrop_uV;
|
2011-12-27 09:47:49 +00:00
|
|
|
unsigned int fullbatt_uV;
|
2012-08-21 08:06:52 +00:00
|
|
|
unsigned int fullbatt_soc;
|
|
|
|
unsigned int fullbatt_full_capacity;
|
2011-12-27 09:47:49 +00:00
|
|
|
|
2011-12-27 09:47:48 +00:00
|
|
|
enum data_source battery_present;
|
|
|
|
|
2013-12-18 06:42:35 +00:00
|
|
|
const char **psy_charger_stat;
|
2011-12-27 09:47:48 +00:00
|
|
|
|
|
|
|
int num_charger_regulators;
|
2012-07-12 06:03:25 +00:00
|
|
|
struct charger_regulator *charger_regulators;
|
2018-09-28 15:35:37 +00:00
|
|
|
const struct attribute_group **sysfs_groups;
|
2011-12-27 09:47:48 +00:00
|
|
|
|
2013-12-18 06:42:35 +00:00
|
|
|
const char *psy_fuel_gauge;
|
2011-12-27 09:47:48 +00:00
|
|
|
|
2013-12-18 06:42:35 +00:00
|
|
|
const char *thermal_zone;
|
2013-12-18 06:42:34 +00:00
|
|
|
|
|
|
|
int temp_min;
|
|
|
|
int temp_max;
|
|
|
|
int temp_diff;
|
|
|
|
|
2011-12-27 09:47:49 +00:00
|
|
|
bool measure_battery_temp;
|
2012-09-21 04:20:05 +00:00
|
|
|
|
2013-12-18 06:42:35 +00:00
|
|
|
u32 charging_max_duration_ms;
|
|
|
|
u32 discharging_max_duration_ms;
|
2011-12-27 09:47:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define PSY_NAME_MAX 30
|
|
|
|
|
|
|
|
/**
|
|
|
|
* struct charger_manager
|
|
|
|
* @entry: entry for list
|
|
|
|
* @dev: device pointer
|
|
|
|
* @desc: instance of charger_desc
|
|
|
|
* @fuel_gauge: power_supply for fuel gauge
|
|
|
|
* @charger_stat: array of power_supply for chargers
|
2013-12-18 06:42:34 +00:00
|
|
|
* @tzd_batt : thermal zone device for battery
|
2011-12-27 09:47:48 +00:00
|
|
|
* @charger_enabled: the state of charger
|
|
|
|
* @emergency_stop:
|
|
|
|
* When setting true, stop charging
|
2011-12-27 09:47:49 +00:00
|
|
|
* @psy_name_buf: the name of power-supply-class for charger manager
|
|
|
|
* @charger_psy: power_supply for charger manager
|
2011-12-27 09:47:48 +00:00
|
|
|
* @status_save_ext_pwr_inserted:
|
|
|
|
* saved status of external power before entering suspend-to-RAM
|
|
|
|
* @status_save_batt:
|
|
|
|
* saved status of battery before entering suspend-to-RAM
|
2012-09-21 04:20:05 +00:00
|
|
|
* @charging_start_time: saved start time of enabling charging
|
|
|
|
* @charging_end_time: saved end time of disabling charging
|
2020-05-14 23:04:31 +00:00
|
|
|
* @battery_status: Current battery status
|
2011-12-27 09:47:48 +00:00
|
|
|
*/
|
|
|
|
struct charger_manager {
|
|
|
|
struct list_head entry;
|
|
|
|
struct device *dev;
|
|
|
|
struct charger_desc *desc;
|
|
|
|
|
2013-12-18 06:42:34 +00:00
|
|
|
#ifdef CONFIG_THERMAL
|
|
|
|
struct thermal_zone_device *tzd_batt;
|
|
|
|
#endif
|
2011-12-27 09:47:48 +00:00
|
|
|
bool charger_enabled;
|
|
|
|
|
|
|
|
int emergency_stop;
|
|
|
|
|
2011-12-27 09:47:49 +00:00
|
|
|
char psy_name_buf[PSY_NAME_MAX + 1];
|
2015-03-12 07:44:11 +00:00
|
|
|
struct power_supply_desc charger_psy_desc;
|
|
|
|
struct power_supply *charger_psy;
|
2011-12-27 09:47:49 +00:00
|
|
|
|
2012-09-21 04:20:05 +00:00
|
|
|
u64 charging_start_time;
|
|
|
|
u64 charging_end_time;
|
2020-05-14 23:04:31 +00:00
|
|
|
|
|
|
|
int battery_status;
|
2011-12-27 09:47:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* _CHARGER_MANAGER_H */
|