Rtwo/kernel/motorola/sm8550/drivers/power/supply/qcom/step-chg-jeita.c
2025-09-30 19:22:48 -05:00

1170 lines
32 KiB
C

// SPDX-License-Identifier: GPL-2.0-only
/*
* Copyright (c) 2017-2021 The Linux Foundation. All rights reserved.
* Copyright (c) 2022, Qualcomm Innovation Center, Inc. All rights reserved.
*/
#define pr_fmt(fmt) "QCOM-STEPCHG: %s: " fmt, __func__
#include <linux/delay.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/power_supply.h>
#include <linux/slab.h>
#include <linux/pmic-voter.h>
#include <linux/iio/consumer.h>
#include <dt-bindings/iio/qti_power_supply_iio.h>
#include "step-chg-jeita.h"
#include "battery-profile-loader.h"
#ifdef CONFIG_QPNP_SMBLITE
#include "smblite-remote-bms.h"
#endif
#define STEP_CHG_VOTER "STEP_CHG_VOTER"
#define JEITA_VOTER "JEITA_VOTER"
#define JEITA_FCC_SCALE_VOTER "JEITA_FCC_SCALE_VOTER"
#define is_between(left, right, value) \
(((left) >= (right) && (left) >= (value) \
&& (value) >= (right)) \
|| ((left) <= (right) && (left) <= (value) \
&& (value) <= (right)))
struct step_chg_cfg {
struct step_chg_jeita_param param;
struct range_data fcc_cfg[MAX_STEP_CHG_ENTRIES];
};
struct jeita_fcc_cfg {
struct step_chg_jeita_param param;
struct range_data fcc_cfg[MAX_STEP_CHG_ENTRIES];
};
struct jeita_fv_cfg {
struct step_chg_jeita_param param;
struct range_data fv_cfg[MAX_STEP_CHG_ENTRIES];
};
struct step_chg_info {
struct device *dev;
ktime_t step_last_update_time;
ktime_t jeita_last_update_time;
bool step_chg_enable;
bool sw_jeita_enable;
bool jeita_arb_en;
bool config_is_read;
bool step_chg_cfg_valid;
bool sw_jeita_cfg_valid;
bool soc_based_step_chg;
bool ocv_based_step_chg;
bool vbat_avg_based_step_chg;
bool batt_missing;
bool taper_fcc;
bool jeita_fcc_scaling;
bool fg_remote;
int jeita_fcc_index;
int jeita_fv_index;
int step_index;
int get_config_retry_count;
int jeita_last_update_temp;
int jeita_fcc_scaling_temp_threshold[2];
long jeita_max_fcc_ua;
long jeita_fcc_step_size;
struct step_chg_cfg *step_chg_config;
struct jeita_fcc_cfg *jeita_fcc_config;
struct jeita_fv_cfg *jeita_fv_config;
struct votable *fcc_votable;
struct votable *fv_votable;
struct votable *usb_icl_votable;
struct wakeup_source *step_chg_ws;
struct power_supply *batt_psy;
struct power_supply *usb_psy;
struct power_supply *dc_psy;
struct delayed_work status_change_work;
struct delayed_work get_config_work;
struct notifier_block nb;
struct iio_channel *iio_chans;
struct iio_channel **iio_chan_list_qg;
};
static struct step_chg_info *the_chip;
#define STEP_CHG_HYSTERISIS_DELAY_US 5000000 /* 5 secs */
#define BATT_HOT_DECIDEGREE_MAX 600
#define GET_CONFIG_DELAY_MS 2000
#define GET_CONFIG_RETRY_COUNT 50
#define WAIT_BATT_ID_READY_MS 200
static bool is_batt_available(struct step_chg_info *chip)
{
if (!chip->batt_psy)
chip->batt_psy = power_supply_get_by_name("battery");
if (!chip->batt_psy)
return false;
return true;
}
static const char * const step_chg_ext_iio_chan[] = {
[STEP_QG_RESISTANCE_ID] = "resistance_id",
[STEP_QG_VOLTAGE_NOW] = "voltage_now",
[STEP_QG_TEMP] = "temp",
[STEP_QG_CAPACITY] = "capacity",
[STEP_QG_VOLTAGE_OCV] = "voltage_ocv",
[STEP_QG_VOLTAGE_AVG] = "voltage_avg",
};
static bool is_bms_available(struct step_chg_info *chip)
{
int rc = 0;
struct iio_channel **iio_list;
if (chip->fg_remote)
return true;
if (IS_ERR(chip->iio_chan_list_qg))
return false;
if (!chip->iio_chan_list_qg) {
iio_list = get_ext_channels(chip->dev, step_chg_ext_iio_chan,
ARRAY_SIZE(step_chg_ext_iio_chan));
if (IS_ERR(iio_list)) {
rc = PTR_ERR(iio_list);
if (rc != -EPROBE_DEFER) {
dev_err(chip->dev, "Failed to get channels, %d\n",
rc);
chip->iio_chan_list_qg = ERR_PTR(-EINVAL);
}
return false;
}
chip->iio_chan_list_qg = iio_list;
}
return true;
}
static bool is_usb_available(struct step_chg_info *chip)
{
if (!chip->usb_psy)
chip->usb_psy = power_supply_get_by_name("usb");
if (!chip->usb_psy)
return false;
return true;
}
static bool is_input_present(struct step_chg_info *chip)
{
int rc = 0, input_present = 0;
union power_supply_propval pval = {0, };
if (!chip->usb_psy)
chip->usb_psy = power_supply_get_by_name("usb");
if (chip->usb_psy) {
rc = power_supply_get_property(chip->usb_psy,
POWER_SUPPLY_PROP_PRESENT, &pval);
if (rc < 0)
pr_err("Couldn't read USB Present status, rc=%d\n", rc);
else
input_present |= pval.intval;
}
if (!chip->dc_psy)
chip->dc_psy = power_supply_get_by_name("dc");
if (chip->dc_psy) {
rc = power_supply_get_property(chip->dc_psy,
POWER_SUPPLY_PROP_PRESENT, &pval);
if (rc < 0)
pr_err("Couldn't read DC Present status, rc=%d\n", rc);
else
input_present |= pval.intval;
}
if (input_present)
return true;
return false;
}
static int read_range_data_from_node(struct device_node *node,
const char *prop_str, struct range_data *ranges,
int max_threshold, u32 max_value)
{
int rc = 0, i, length, per_tuple_length, tuples;
if (!node || !prop_str || !ranges) {
pr_err("Invalid parameters passed\n");
return -EINVAL;
}
rc = of_property_count_elems_of_size(node, prop_str, sizeof(u32));
if (rc < 0) {
pr_err("Count %s failed, rc=%d\n", prop_str, rc);
return rc;
}
length = rc;
per_tuple_length = sizeof(struct range_data) / sizeof(u32);
if (length % per_tuple_length) {
pr_err("%s length (%d) should be multiple of %d\n",
prop_str, length, per_tuple_length);
return -EINVAL;
}
tuples = length / per_tuple_length;
if (tuples > MAX_STEP_CHG_ENTRIES) {
pr_err("too many entries(%d), only %d allowed\n",
tuples, MAX_STEP_CHG_ENTRIES);
return -EINVAL;
}
rc = of_property_read_u32_array(node, prop_str,
(u32 *)ranges, length);
if (rc) {
pr_err("Read %s failed, rc=%d\n", prop_str, rc);
return rc;
}
for (i = 0; i < tuples; i++) {
if (ranges[i].low_threshold >
ranges[i].high_threshold) {
pr_err("%s thresholds should be in ascendant ranges\n",
prop_str);
rc = -EINVAL;
goto clean;
}
if (i != 0) {
if (ranges[i - 1].high_threshold >
ranges[i].low_threshold) {
pr_err("%s thresholds should be in ascendant ranges\n",
prop_str);
rc = -EINVAL;
goto clean;
}
}
if (ranges[i].low_threshold > max_threshold)
ranges[i].low_threshold = max_threshold;
if (ranges[i].high_threshold > max_threshold)
ranges[i].high_threshold = max_threshold;
if (ranges[i].value > max_value)
ranges[i].value = max_value;
}
return rc;
clean:
memset(ranges, 0, tuples * sizeof(struct range_data));
return rc;
}
#ifdef CONFIG_QPNP_SMBLITE
static int step_chg_read_remote_fg_prop(struct step_chg_info *chip, int iio_chan, int *val)
{
int rc = 0;
switch (iio_chan) {
case STEP_QG_RESISTANCE_ID:
iio_chan = SMB5_QG_RESISTANCE_ID;
break;
case STEP_QG_VOLTAGE_NOW:
iio_chan = SMB5_QG_VOLTAGE_NOW;
break;
case STEP_QG_TEMP:
iio_chan = SMB5_QG_TEMP;
break;
default:
pr_err("iio_chan %d is not support\n", iio_chan);
return -EOPNOTSUPP;
}
rc = remote_bms_get_prop(iio_chan, val, BMS_GLINK);
if ((rc < 0) && (rc != -EAGAIN))
pr_err("Couldn't get prop from remote bms, rc = %d channel = %d\n",
rc, iio_chan);
return (rc < 0) ? rc : 0;
}
#else
static int step_chg_read_remote_fg_prop(struct step_chg_info *chip, int iio_chan, int *val)
{
return 0;
}
#endif
static int step_chg_read_iio_prop(struct step_chg_info *chip,
enum iio_type type, int iio_chan, int *val)
{
struct iio_channel *iio_chan_list;
int rc;
switch (type) {
case MAIN:
if (!chip->iio_chans)
return -ENODEV;
iio_chan_list = &chip->iio_chans[iio_chan];
break;
case QG:
if (chip->fg_remote)
return step_chg_read_remote_fg_prop(chip, iio_chan, val);
if (IS_ERR_OR_NULL(chip->iio_chan_list_qg))
return -ENODEV;
iio_chan_list = chip->iio_chan_list_qg[iio_chan];
break;
default:
pr_err_ratelimited("iio_type %d is not supported\n", type);
return -EINVAL;
}
rc = iio_read_channel_processed(iio_chan_list, val);
return (rc < 0) ? rc : 0;
}
static int get_step_chg_jeita_setting_from_profile(struct step_chg_info *chip)
{
struct device_node *batt_node, *profile_node;
u32 max_fv_uv, max_fcc_ma;
const char *batt_type_str;
const __be32 *handle;
int batt_id_ohms, rc, hysteresis[2] = {0};
u32 jeita_scaling_min_fcc_ua = 0;
handle = of_get_property(chip->dev->of_node,
"qcom,battery-data", NULL);
if (!handle) {
pr_debug("ignore getting sw-jeita/step charging settings from profile\n");
return 0;
}
batt_node = of_find_node_by_phandle(be32_to_cpup(handle));
if (!batt_node) {
pr_err("Get battery data node failed\n");
return -EINVAL;
}
chip->fg_remote = of_property_read_bool(chip->dev->of_node, "qcom,remote-fg");
if (!is_bms_available(chip))
return -ENODEV;
rc = step_chg_read_iio_prop(chip, QG, STEP_QG_RESISTANCE_ID,
&batt_id_ohms);
if (rc < 0)
pr_err("Failed to read batt_id rc=%d\n", rc);
/* bms_psy has not yet read the batt_id */
if (batt_id_ohms < 0)
return -EBUSY;
profile_node = of_batterydata_get_best_profile(batt_node,
batt_id_ohms / 1000, NULL);
if (IS_ERR(profile_node))
return PTR_ERR(profile_node);
if (!profile_node) {
pr_err("Couldn't find profile\n");
return -ENODATA;
}
rc = of_property_read_string(profile_node, "qcom,battery-type",
&batt_type_str);
if (rc < 0) {
pr_err("battery type unavailable, rc:%d\n", rc);
return rc;
}
pr_debug("battery: %s detected, getting sw-jeita/step charging settings\n",
batt_type_str);
rc = of_property_read_u32(profile_node, "qcom,max-voltage-uv",
&max_fv_uv);
if (rc < 0) {
pr_err("max-voltage_uv reading failed, rc=%d\n", rc);
return rc;
}
rc = of_property_read_u32(profile_node, "qcom,fastchg-current-ma",
&max_fcc_ma);
if (rc < 0) {
pr_err("max-fastchg-current-ma reading failed, rc=%d\n", rc);
return rc;
}
chip->jeita_max_fcc_ua = max_fcc_ma * 1000;
chip->taper_fcc = of_property_read_bool(profile_node, "qcom,taper-fcc");
chip->soc_based_step_chg =
of_property_read_bool(profile_node, "qcom,soc-based-step-chg");
if (chip->soc_based_step_chg) {
chip->step_chg_config->param.psy_prop =
POWER_SUPPLY_PROP_CAPACITY;
chip->step_chg_config->param.iio_prop = STEP_QG_CAPACITY;
chip->step_chg_config->param.prop_name = "SOC";
chip->step_chg_config->param.rise_hys = 0;
chip->step_chg_config->param.fall_hys = 0;
}
chip->ocv_based_step_chg =
of_property_read_bool(profile_node, "qcom,ocv-based-step-chg");
if (chip->ocv_based_step_chg) {
chip->step_chg_config->param.psy_prop =
POWER_SUPPLY_PROP_VOLTAGE_OCV;
chip->step_chg_config->param.iio_prop = STEP_QG_VOLTAGE_OCV;
chip->step_chg_config->param.prop_name = "OCV";
chip->step_chg_config->param.rise_hys = 0;
chip->step_chg_config->param.fall_hys = 0;
chip->step_chg_config->param.use_bms = true;
}
chip->vbat_avg_based_step_chg =
of_property_read_bool(profile_node,
"qcom,vbat-avg-based-step-chg");
if (chip->vbat_avg_based_step_chg) {
chip->step_chg_config->param.psy_prop =
POWER_SUPPLY_PROP_VOLTAGE_AVG;
chip->step_chg_config->param.iio_prop = STEP_QG_VOLTAGE_AVG;
chip->step_chg_config->param.prop_name = "VBAT_AVG";
chip->step_chg_config->param.rise_hys = 0;
chip->step_chg_config->param.fall_hys = 0;
chip->step_chg_config->param.use_bms = true;
}
chip->step_chg_cfg_valid = true;
rc = read_range_data_from_node(profile_node,
"qcom,step-chg-ranges",
chip->step_chg_config->fcc_cfg,
chip->soc_based_step_chg ? 100 : max_fv_uv,
max_fcc_ma * 1000);
if (rc < 0) {
pr_debug("Read qcom,step-chg-ranges failed from battery profile, rc=%d\n",
rc);
chip->step_chg_cfg_valid = false;
}
chip->sw_jeita_cfg_valid = true;
rc = read_range_data_from_node(profile_node,
"qcom,jeita-fcc-ranges",
chip->jeita_fcc_config->fcc_cfg,
BATT_HOT_DECIDEGREE_MAX, max_fcc_ma * 1000);
if (rc < 0) {
pr_debug("Read qcom,jeita-fcc-ranges failed from battery profile, rc=%d\n",
rc);
chip->sw_jeita_cfg_valid = false;
}
rc = of_property_read_u32_array(profile_node,
"qcom,step-jeita-hysteresis", hysteresis, 2);
if (!rc) {
chip->jeita_fcc_config->param.rise_hys = hysteresis[0];
chip->jeita_fcc_config->param.fall_hys = hysteresis[1];
pr_debug("jeita-fcc-hys: rise_hys=%u, fall_hys=%u\n",
hysteresis[0], hysteresis[1]);
}
rc = read_range_data_from_node(profile_node,
"qcom,jeita-fv-ranges",
chip->jeita_fv_config->fv_cfg,
BATT_HOT_DECIDEGREE_MAX, max_fv_uv);
if (rc < 0) {
pr_debug("Read qcom,jeita-fv-ranges failed from battery profile, rc=%d\n",
rc);
chip->sw_jeita_cfg_valid = false;
}
if (of_property_read_bool(profile_node, "qcom,jeita-fcc-scaling")) {
rc = of_property_read_u32_array(profile_node,
"qcom,jeita-fcc-scaling-temp-threshold",
chip->jeita_fcc_scaling_temp_threshold, 2);
if (rc < 0)
pr_debug("Read jeita-fcc-scaling-temp-threshold from battery profile, rc=%d\n",
rc);
rc = of_property_read_u32(profile_node,
"qcom,jeita-scaling-min-fcc-ua",
&jeita_scaling_min_fcc_ua);
if (rc < 0)
pr_debug("Read jeita-scaling-min-fcc-ua from battery profile, rc=%d\n",
rc);
if ((jeita_scaling_min_fcc_ua &&
(jeita_scaling_min_fcc_ua < chip->jeita_max_fcc_ua)) &&
(chip->jeita_fcc_scaling_temp_threshold[0] <
chip->jeita_fcc_scaling_temp_threshold[1])) {
/*
* Calculate jeita-fcc-step-size =
* (difference-in-fcc) / ( difference-in-temp)
*/
chip->jeita_fcc_step_size = div_s64(
(chip->jeita_max_fcc_ua - jeita_scaling_min_fcc_ua),
(chip->jeita_fcc_scaling_temp_threshold[1] -
chip->jeita_fcc_scaling_temp_threshold[0]));
if (chip->jeita_fcc_step_size > 0)
chip->jeita_fcc_scaling = true;
}
pr_debug("jeita-fcc-scaling: enabled = %d, jeita-fcc-scaling-temp-threshold = [%d, %d], jeita-scaling-min-fcc-ua = %ld, jeita-scaling-max_fcc_ua = %ld,jeita-fcc-step-size = %ld\n",
chip->jeita_fcc_scaling,
chip->jeita_fcc_scaling_temp_threshold[0],
chip->jeita_fcc_scaling_temp_threshold[1],
jeita_scaling_min_fcc_ua, chip->jeita_max_fcc_ua,
chip->jeita_fcc_step_size
);
}
return rc;
}
static void get_config_work(struct work_struct *work)
{
struct step_chg_info *chip = container_of(work,
struct step_chg_info, get_config_work.work);
int i, rc;
chip->config_is_read = false;
rc = get_step_chg_jeita_setting_from_profile(chip);
if (rc < 0) {
if (rc == -ENODEV || rc == -EBUSY) {
if (chip->get_config_retry_count++
< GET_CONFIG_RETRY_COUNT) {
pr_debug("bms is not ready, retry: %d\n",
chip->get_config_retry_count);
goto reschedule;
}
}
}
chip->config_is_read = true;
for (i = 0; i < MAX_STEP_CHG_ENTRIES; i++)
pr_debug("step-chg-cfg: %duV(SoC) ~ %duV(SoC), %duA\n",
chip->step_chg_config->fcc_cfg[i].low_threshold,
chip->step_chg_config->fcc_cfg[i].high_threshold,
chip->step_chg_config->fcc_cfg[i].value);
for (i = 0; i < MAX_STEP_CHG_ENTRIES; i++)
pr_debug("jeita-fcc-cfg: %ddecidegree ~ %ddecidegre, %duA\n",
chip->jeita_fcc_config->fcc_cfg[i].low_threshold,
chip->jeita_fcc_config->fcc_cfg[i].high_threshold,
chip->jeita_fcc_config->fcc_cfg[i].value);
for (i = 0; i < MAX_STEP_CHG_ENTRIES; i++)
pr_debug("jeita-fv-cfg: %ddecidegree ~ %ddecidegre, %duV\n",
chip->jeita_fv_config->fv_cfg[i].low_threshold,
chip->jeita_fv_config->fv_cfg[i].high_threshold,
chip->jeita_fv_config->fv_cfg[i].value);
return;
reschedule:
schedule_delayed_work(&chip->get_config_work,
msecs_to_jiffies(GET_CONFIG_DELAY_MS));
}
static int get_val(struct range_data *range, int rise_hys, int fall_hys,
int current_index, int threshold, int *new_index, int *val)
{
int i;
*new_index = -EINVAL;
/*
* If the threshold is lesser than the minimum allowed range,
* return -ENODATA.
*/
if (threshold < range[0].low_threshold)
return -ENODATA;
/* First try to find the matching index without hysteresis */
for (i = 0; i < MAX_STEP_CHG_ENTRIES; i++) {
if (!range[i].high_threshold && !range[i].low_threshold) {
/* First invalid table entry; exit loop */
break;
}
if (is_between(range[i].low_threshold,
range[i].high_threshold, threshold)) {
*new_index = i;
*val = range[i].value;
break;
}
}
/*
* If nothing was found, the threshold exceeds the max range for sure
* as the other case where it is lesser than the min range is handled
* at the very beginning of this function. Therefore, clip it to the
* max allowed range value, which is the one corresponding to the last
* valid entry in the battery profile data array.
*/
if (*new_index == -EINVAL) {
if (i == 0) {
/* Battery profile data array is completely invalid */
return -ENODATA;
}
*new_index = (i - 1);
*val = range[*new_index].value;
}
/*
* If we don't have a current_index return this
* newfound value. There is no hysterisis from out of range
* to in range transition
*/
if (current_index == -EINVAL)
return 0;
/*
* Check for hysteresis if it in the neighbourhood
* of our current index.
*/
if (*new_index == current_index + 1) {
if (threshold <
(range[*new_index].low_threshold + rise_hys)) {
/*
* Stay in the current index, threshold is not higher
* by hysteresis amount
*/
*new_index = current_index;
*val = range[current_index].value;
}
} else if (*new_index == current_index - 1) {
if (threshold >
range[*new_index].high_threshold - fall_hys) {
/*
* stay in the current index, threshold is not lower
* by hysteresis amount
*/
*new_index = current_index;
*val = range[current_index].value;
}
}
return 0;
}
#define TAPERED_STEP_CHG_FCC_REDUCTION_STEP_MA 50000 /* 50 mA */
static void taper_fcc_step_chg(struct step_chg_info *chip, int index,
int current_voltage)
{
u32 current_fcc, target_fcc;
if (index < 0) {
pr_err("Invalid STEP CHG index\n");
return;
}
current_fcc = get_effective_result(chip->fcc_votable);
target_fcc = chip->step_chg_config->fcc_cfg[index].value;
if (index == 0) {
vote(chip->fcc_votable, STEP_CHG_VOTER, true, target_fcc);
} else if (current_voltage >
(chip->step_chg_config->fcc_cfg[index - 1].high_threshold +
chip->step_chg_config->param.rise_hys)) {
/*
* Ramp down FCC in pre-configured steps till the current index
* FCC configuration is reached, whenever the step charging
* control parameter exceeds the high threshold of previous
* step charging index configuration.
*/
vote(chip->fcc_votable, STEP_CHG_VOTER, true, max(target_fcc,
current_fcc - TAPERED_STEP_CHG_FCC_REDUCTION_STEP_MA));
} else if ((current_fcc >
chip->step_chg_config->fcc_cfg[index - 1].value) &&
(current_voltage >
chip->step_chg_config->fcc_cfg[index - 1].low_threshold +
chip->step_chg_config->param.fall_hys)) {
/*
* In case the step charging index switch to the next higher
* index without FCCs saturation for the previous index, ramp
* down FCC till previous index FCC configuration is reached.
*/
vote(chip->fcc_votable, STEP_CHG_VOTER, true,
max(chip->step_chg_config->fcc_cfg[index - 1].value,
current_fcc - TAPERED_STEP_CHG_FCC_REDUCTION_STEP_MA));
}
}
static int handle_step_chg_config(struct step_chg_info *chip)
{
union power_supply_propval pval = {0, };
int rc = 0, fcc_ua = 0, current_index;
u64 elapsed_us;
elapsed_us = ktime_us_delta(ktime_get(), chip->step_last_update_time);
/* skip processing, event too early */
if (elapsed_us < STEP_CHG_HYSTERISIS_DELAY_US)
return 0;
if (!chip->step_chg_enable || !chip->step_chg_cfg_valid) {
if (chip->fcc_votable)
vote(chip->fcc_votable, STEP_CHG_VOTER, false, 0);
goto update_time;
}
if (chip->step_chg_config->param.use_bms) {
rc = step_chg_read_iio_prop(chip, QG,
chip->step_chg_config->param.iio_prop, &pval.intval);
if (rc < 0)
pr_err("Failed to read IIO prop %d rc=%d\n",
chip->step_chg_config->param.iio_prop, rc);
} else {
rc = power_supply_get_property(chip->batt_psy,
chip->step_chg_config->param.psy_prop, &pval);
}
if (rc < 0) {
pr_err("Couldn't read %s property rc=%d\n",
chip->step_chg_config->param.prop_name, rc);
return rc;
}
current_index = chip->step_index;
rc = get_val(chip->step_chg_config->fcc_cfg,
chip->step_chg_config->param.rise_hys,
chip->step_chg_config->param.fall_hys,
chip->step_index,
pval.intval,
&chip->step_index,
&fcc_ua);
if (rc < 0) {
/* remove the vote if no step-based fcc is found */
if (chip->fcc_votable)
vote(chip->fcc_votable, STEP_CHG_VOTER, false, 0);
goto update_time;
}
/* Do not drop step-chg index, if input supply is present */
if (is_input_present(chip)) {
if (chip->step_index < current_index)
chip->step_index = current_index;
} else {
chip->step_index = 0;
}
if (!chip->fcc_votable)
chip->fcc_votable = find_votable("FCC");
if (!chip->fcc_votable)
return -EINVAL;
if (chip->taper_fcc) {
taper_fcc_step_chg(chip, chip->step_index, pval.intval);
} else {
fcc_ua = chip->step_chg_config->fcc_cfg[chip->step_index].value;
vote(chip->fcc_votable, STEP_CHG_VOTER, true, fcc_ua);
}
pr_debug("%s = %d Step-FCC = %duA taper-fcc: %d\n",
chip->step_chg_config->param.prop_name, pval.intval,
get_client_vote(chip->fcc_votable, STEP_CHG_VOTER),
chip->taper_fcc);
update_time:
chip->step_last_update_time = ktime_get();
return 0;
}
static void handle_jeita_fcc_scaling(struct step_chg_info *chip)
{
union power_supply_propval pval = {0, };
int fcc_ua = 0, temp_diff = 0, rc;
bool first_time_entry;
if (chip->jeita_fcc_config->param.use_bms) {
rc = step_chg_read_iio_prop(chip, QG,
chip->jeita_fcc_config->param.iio_prop, &pval.intval);
if (rc < 0)
pr_err("Failed to read IIO prop %d rc=%d\n",
chip->jeita_fcc_config->param.iio_prop, rc);
} else {
rc = power_supply_get_property(chip->batt_psy,
chip->jeita_fcc_config->param.psy_prop, &pval);
}
if (rc < 0) {
pr_err("Couldn't read %s property rc=%d\n",
chip->jeita_fcc_config->param.prop_name, rc);
return;
}
/* Skip mitigation if temp is not within min-max thresholds */
if (!is_between(chip->jeita_fcc_scaling_temp_threshold[0],
chip->jeita_fcc_scaling_temp_threshold[1], pval.intval)) {
pr_debug("jeita-fcc-scaling : Skip jeita scaling, temp out of range temp = %d\n",
pval.intval);
chip->jeita_last_update_temp = pval.intval;
vote(chip->fcc_votable, JEITA_FCC_SCALE_VOTER, false, 0);
return;
}
/*
* We determine this is the first time entry to jeita-fcc-scaling if
* jeita_last_update_temp is not within entry/exist thresholds.
*/
first_time_entry = !is_between(chip->jeita_fcc_scaling_temp_threshold[0]
, chip->jeita_fcc_scaling_temp_threshold[1],
chip->jeita_last_update_temp);
/*
* VOTE on FCC only when temp is within hys or if this the very first
* time we crossed the entry threshold.
*/
if (first_time_entry ||
((pval.intval > (chip->jeita_last_update_temp +
chip->jeita_fcc_config->param.rise_hys)) ||
(pval.intval < (chip->jeita_last_update_temp -
chip->jeita_fcc_config->param.fall_hys)))) {
/*
* New FCC step is calculated as :
* fcc_ua = (max-fcc - ((current_temp - min-temp) *
* jeita-step-size))
*/
temp_diff = pval.intval -
chip->jeita_fcc_scaling_temp_threshold[0];
fcc_ua = div_s64((chip->jeita_max_fcc_ua -
(chip->jeita_fcc_step_size * temp_diff)), 100) * 100;
vote(chip->fcc_votable, JEITA_FCC_SCALE_VOTER, true, fcc_ua);
pr_debug("jeita-fcc-scaling: first_time_entry = %d, max_fcc_ua = %ld, voted_fcc_ua = %d, temp_diff = %d, prev_temp = %d, current_temp = %d\n",
first_time_entry, chip->jeita_max_fcc_ua, fcc_ua,
temp_diff, chip->jeita_last_update_temp, pval.intval);
chip->jeita_last_update_temp = pval.intval;
} else {
pr_debug("jeita-fcc-scaling: Skip jeita mitigation temp within first_time_entry = %d, hys temp = %d, last_updated_temp = %d\n",
first_time_entry, pval.intval,
chip->jeita_last_update_temp);
}
}
#define JEITA_SUSPEND_HYST_UV 50000
static int handle_jeita(struct step_chg_info *chip)
{
union power_supply_propval pval = {0, };
int rc = 0, fcc_ua = 0, fv_uv = 0, data;
u64 elapsed_us;
rc = step_chg_read_iio_prop(chip, MAIN, PSY_IIO_SW_JEITA_ENABLED,
&data);
if (rc < 0) {
chip->sw_jeita_enable = false;
pr_err("Failed to read jeita_enabled rc=%d\n", rc);
} else {
chip->sw_jeita_enable = data;
}
/* Handle jeita-fcc-scaling if enabled */
if (chip->jeita_fcc_scaling)
handle_jeita_fcc_scaling(chip);
if (!chip->sw_jeita_enable || !chip->sw_jeita_cfg_valid) {
if (chip->fcc_votable)
vote(chip->fcc_votable, JEITA_VOTER, false, 0);
if (chip->fv_votable)
vote(chip->fv_votable, JEITA_VOTER, false, 0);
if (chip->usb_icl_votable)
vote(chip->usb_icl_votable, JEITA_VOTER, false, 0);
return 0;
}
elapsed_us = ktime_us_delta(ktime_get(), chip->jeita_last_update_time);
/* skip processing, event too early */
if (elapsed_us < STEP_CHG_HYSTERISIS_DELAY_US)
return 0;
if (chip->jeita_fcc_config->param.use_bms) {
rc = step_chg_read_iio_prop(chip, QG,
chip->jeita_fcc_config->param.iio_prop, &pval.intval);
if (rc < 0)
pr_err("Failed to read IIO prop %d rc=%d\n",
chip->jeita_fcc_config->param.iio_prop, rc);
} else {
rc = power_supply_get_property(chip->batt_psy,
chip->jeita_fcc_config->param.psy_prop, &pval);
}
if (rc < 0) {
pr_err("Couldn't read %s property rc=%d\n",
chip->jeita_fcc_config->param.prop_name, rc);
return rc;
}
rc = get_val(chip->jeita_fcc_config->fcc_cfg,
chip->jeita_fcc_config->param.rise_hys,
chip->jeita_fcc_config->param.fall_hys,
chip->jeita_fcc_index,
pval.intval,
&chip->jeita_fcc_index,
&fcc_ua);
if (rc < 0)
fcc_ua = 0;
if (!chip->fcc_votable)
chip->fcc_votable = find_votable("FCC");
if (!chip->fcc_votable)
/* changing FCC is a must */
return -EINVAL;
vote(chip->fcc_votable, JEITA_VOTER, fcc_ua ? true : false, fcc_ua);
rc = get_val(chip->jeita_fv_config->fv_cfg,
chip->jeita_fv_config->param.rise_hys,
chip->jeita_fv_config->param.fall_hys,
chip->jeita_fv_index,
pval.intval,
&chip->jeita_fv_index,
&fv_uv);
if (rc < 0)
fv_uv = 0;
chip->fv_votable = find_votable("FV");
if (!chip->fv_votable)
goto update_time;
if (!chip->usb_icl_votable)
chip->usb_icl_votable = find_votable("USB_ICL");
if (!chip->usb_icl_votable)
goto set_jeita_fv;
/*
* If JEITA float voltage is same as max-vfloat of battery then
* skip any further VBAT specific checks.
*/
rc = power_supply_get_property(chip->batt_psy,
POWER_SUPPLY_PROP_VOLTAGE_MAX, &pval);
if (rc || (pval.intval == fv_uv)) {
vote(chip->usb_icl_votable, JEITA_VOTER, false, 0);
goto set_jeita_fv;
}
/*
* Suspend USB input path if battery voltage is above
* JEITA VFLOAT threshold.
*/
if (chip->jeita_arb_en && fv_uv > 0) {
rc = power_supply_get_property(chip->batt_psy,
POWER_SUPPLY_PROP_VOLTAGE_NOW, &pval);
if (!rc && (pval.intval > fv_uv))
vote(chip->usb_icl_votable, JEITA_VOTER, true, 0);
else if (pval.intval < (fv_uv - JEITA_SUSPEND_HYST_UV))
vote(chip->usb_icl_votable, JEITA_VOTER, false, 0);
}
set_jeita_fv:
vote(chip->fv_votable, JEITA_VOTER, fv_uv ? true : false, fv_uv);
update_time:
chip->jeita_last_update_time = ktime_get();
return 0;
}
static int handle_battery_insertion(struct step_chg_info *chip)
{
int rc;
union power_supply_propval pval = {0, };
rc = power_supply_get_property(chip->batt_psy,
POWER_SUPPLY_PROP_PRESENT, &pval);
if (rc < 0) {
pr_err("Get battery present status failed, rc=%d\n", rc);
return rc;
}
if (chip->batt_missing != (!pval.intval)) {
chip->batt_missing = !pval.intval;
pr_debug("battery %s detected\n",
chip->batt_missing ? "removal" : "insertion");
if (chip->batt_missing) {
chip->step_chg_cfg_valid = false;
chip->sw_jeita_cfg_valid = false;
chip->get_config_retry_count = 0;
} else {
/*
* Get config for the new inserted battery, delay
* to make sure BMS has read out the batt_id.
*/
schedule_delayed_work(&chip->get_config_work,
msecs_to_jiffies(WAIT_BATT_ID_READY_MS));
}
}
return rc;
}
static void status_change_work(struct work_struct *work)
{
struct step_chg_info *chip = container_of(work,
struct step_chg_info, status_change_work.work);
int rc = 0;
union power_supply_propval prop = {0, };
if (!is_batt_available(chip) || !is_bms_available(chip))
goto exit_work;
handle_battery_insertion(chip);
/* skip elapsed_us debounce for handling battery temperature */
rc = handle_jeita(chip);
if (rc < 0)
pr_err("Couldn't handle sw jeita rc = %d\n", rc);
rc = handle_step_chg_config(chip);
if (rc < 0)
pr_err("Couldn't handle step rc = %d\n", rc);
/* Remove stale votes on USB removal */
if (is_usb_available(chip)) {
prop.intval = 0;
power_supply_get_property(chip->usb_psy,
POWER_SUPPLY_PROP_PRESENT, &prop);
if (!prop.intval) {
if (chip->usb_icl_votable)
vote(chip->usb_icl_votable, JEITA_VOTER,
false, 0);
}
}
exit_work:
__pm_relax(chip->step_chg_ws);
}
static int step_chg_notifier_call(struct notifier_block *nb,
unsigned long ev, void *v)
{
struct power_supply *psy = v;
struct step_chg_info *chip = container_of(nb, struct step_chg_info, nb);
if (ev != PSY_EVENT_PROP_CHANGED)
return NOTIFY_OK;
if ((strcmp(psy->desc->name, "battery") == 0)
|| (strcmp(psy->desc->name, "usb") == 0)) {
__pm_stay_awake(chip->step_chg_ws);
schedule_delayed_work(&chip->status_change_work, 0);
}
if ((strcmp(psy->desc->name, "bms") == 0)) {
if (!chip->config_is_read)
schedule_delayed_work(&chip->get_config_work, 0);
}
return NOTIFY_OK;
}
static int step_chg_register_notifier(struct step_chg_info *chip)
{
int rc;
chip->nb.notifier_call = step_chg_notifier_call;
rc = power_supply_reg_notifier(&chip->nb);
if (rc < 0) {
pr_err("Couldn't register psy notifier rc = %d\n", rc);
return rc;
}
return 0;
}
int qcom_step_chg_init(struct device *dev, bool step_chg_enable,
bool sw_jeita_enable, bool jeita_arb_en, struct iio_channel *iio_chans)
{
int rc;
struct step_chg_info *chip;
if (the_chip) {
pr_err("Already initialized\n");
return -EINVAL;
}
chip = devm_kzalloc(dev, sizeof(*chip), GFP_KERNEL);
if (!chip)
return -ENOMEM;
chip->step_chg_ws = wakeup_source_register(dev, "qcom-step-chg");
if (!chip->step_chg_ws)
return -EINVAL;
chip->dev = dev;
chip->step_chg_enable = step_chg_enable;
chip->sw_jeita_enable = sw_jeita_enable;
chip->jeita_arb_en = jeita_arb_en;
chip->step_index = -EINVAL;
chip->jeita_fcc_index = -EINVAL;
chip->jeita_fv_index = -EINVAL;
chip->iio_chans = iio_chans;
chip->iio_chan_list_qg = NULL;
chip->step_chg_config = devm_kzalloc(dev,
sizeof(struct step_chg_cfg), GFP_KERNEL);
if (!chip->step_chg_config)
return -ENOMEM;
chip->step_chg_config->param.psy_prop = POWER_SUPPLY_PROP_VOLTAGE_NOW;
chip->step_chg_config->param.iio_prop = STEP_QG_VOLTAGE_NOW;
chip->step_chg_config->param.prop_name = "VBATT";
chip->step_chg_config->param.rise_hys = 100000;
chip->step_chg_config->param.fall_hys = 100000;
chip->jeita_fcc_config = devm_kzalloc(dev,
sizeof(struct jeita_fcc_cfg), GFP_KERNEL);
chip->jeita_fv_config = devm_kzalloc(dev,
sizeof(struct jeita_fv_cfg), GFP_KERNEL);
if (!chip->jeita_fcc_config || !chip->jeita_fv_config)
return -ENOMEM;
chip->jeita_fcc_config->param.psy_prop = POWER_SUPPLY_PROP_TEMP;
chip->jeita_fcc_config->param.iio_prop = STEP_QG_TEMP;
chip->jeita_fcc_config->param.prop_name = "BATT_TEMP";
chip->jeita_fcc_config->param.rise_hys = 10;
chip->jeita_fcc_config->param.fall_hys = 10;
chip->jeita_fv_config->param.psy_prop = POWER_SUPPLY_PROP_TEMP;
chip->jeita_fv_config->param.iio_prop = STEP_QG_TEMP;
chip->jeita_fv_config->param.prop_name = "BATT_TEMP";
chip->jeita_fv_config->param.rise_hys = 10;
chip->jeita_fv_config->param.fall_hys = 10;
INIT_DELAYED_WORK(&chip->status_change_work, status_change_work);
INIT_DELAYED_WORK(&chip->get_config_work, get_config_work);
rc = step_chg_register_notifier(chip);
if (rc < 0) {
pr_err("Couldn't register psy notifier rc = %d\n", rc);
goto release_wakeup_source;
}
schedule_delayed_work(&chip->get_config_work,
msecs_to_jiffies(GET_CONFIG_DELAY_MS));
the_chip = chip;
return 0;
release_wakeup_source:
wakeup_source_unregister(chip->step_chg_ws);
return rc;
}
void qcom_step_chg_deinit(void)
{
struct step_chg_info *chip = the_chip;
if (!chip)
return;
cancel_delayed_work_sync(&chip->status_change_work);
cancel_delayed_work_sync(&chip->get_config_work);
power_supply_unreg_notifier(&chip->nb);
wakeup_source_unregister(chip->step_chg_ws);
the_chip = NULL;
}