From 0e1b12e42b852314b472998649ed3308640fec3f Mon Sep 17 00:00:00 2001 From: Wai-Hong Tam Date: Sat, 1 Aug 2020 08:08:51 -0700 Subject: battery: Calculate the display charge percentage It doesn't require the powerd's full factory to be 100%. Also refine the comment on the powerd's equation to make it more understandable. BRANCH=None BUG=b:162604872 TEST=With the follower CL which updates the powerd's full factor value, checked EC showing the same Display percentage as the UI. Change-Id: I50ae7c38c423722188d892f91f4fc93d4d5f84e1 Signed-off-by: Wai-Hong Tam Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2335886 Reviewed-by: Jett Rink --- common/battery.c | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) (limited to 'common/battery.c') diff --git a/common/battery.c b/common/battery.c index ff0d28f545..9e03bb83a2 100644 --- a/common/battery.c +++ b/common/battery.c @@ -589,11 +589,6 @@ void battery_compensate_params(struct batt_params *batt) if (*remain <= 0 || *full <= 0) return; - /* full_factor != 100 isn't supported. EC and host are not able to - * act on soc changes synchronously. */ - if (batt_host_full_factor != 100) - return; - /* full_factor is effectively disabled in powerd. */ *full = *full * batt_full_factor / 100; if (*remain > *full) @@ -601,15 +596,24 @@ void battery_compensate_params(struct batt_params *batt) /* * Powerd uses the following equation to calculate display percentage: - * charge = 100 * remain/full; - * 100 * (charge - shutdown_pct) / (full_factor - shutdown_pct); + * charge = 100 * remain / full + * display = 100 * (charge - shutdown_pct) / + * (full_factor - shutdown_pct) + * = 100 * ((100 * remain / full) - shutdown_pct) / + * (full_factor - shutdown_pct) + * = 100 * ((100 * remain) - (full * shutdown_pct)) / + * (full * (full_factor - shutdown_pct)) + * + * The unit of the following batt->display_charge is 0.1%. */ - numer = (100 * *remain - *full * batt_host_shutdown_pct) * 1000; - denom = *full * (100 - batt_host_shutdown_pct); + numer = 1000 * ((100 * *remain) - (*full * batt_host_shutdown_pct)); + denom = *full * (batt_host_full_factor - batt_host_shutdown_pct); /* Rounding (instead of truncating) */ batt->display_charge = (numer + denom / 2) / denom; if (batt->display_charge < 0) batt->display_charge = 0; + if (batt->display_charge > 1000) + batt->display_charge = 1000; } __overridable void board_battery_compensate_params(struct batt_params *batt) -- cgit v1.2.1