summaryrefslogtreecommitdiff
path: root/common/battery.c
diff options
context:
space:
mode:
authorWai-Hong Tam <waihong@google.com>2020-08-01 08:08:51 -0700
committerCommit Bot <commit-bot@chromium.org>2020-08-05 06:39:09 +0000
commit0e1b12e42b852314b472998649ed3308640fec3f (patch)
treedde1556bb1caa3cc7e1e65490bda8843c9a89810 /common/battery.c
parent3d07d8f54721123693624ce35235f1afc8b75b54 (diff)
downloadchrome-ec-0e1b12e42b852314b472998649ed3308640fec3f.tar.gz
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 <waihong@google.com> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2335886 Reviewed-by: Jett Rink <jettrink@chromium.org>
Diffstat (limited to 'common/battery.c')
-rw-r--r--common/battery.c22
1 files changed, 13 insertions, 9 deletions
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)