summaryrefslogtreecommitdiff
path: root/common/battery.c
diff options
context:
space:
mode:
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 16c00c063a..117bbbb111 100644
--- a/common/battery.c
+++ b/common/battery.c
@@ -582,11 +582,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)
@@ -594,15 +589,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)