summaryrefslogtreecommitdiff
path: root/board/volmar
diff options
context:
space:
mode:
authorYu-An Chen <yu-an.chen@quanta.corp-partner.google.com>2022-09-05 11:13:05 +0800
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-09-07 08:58:39 +0000
commitba953218804d5a0f14fe2720a206c30090575e85 (patch)
tree687c7cb6c1bd14008f9f9a8492f1146f374a93a0 /board/volmar
parent83976c7f59edf1cd8b485ca0b1bbecdc4a534a29 (diff)
downloadchrome-ec-ba953218804d5a0f14fe2720a206c30090575e85.tar.gz
volmar: Discharge on AC when high MLCC noise
Charger will work on the hybrid mode if battery full and system current over 3A. The voltage gap between the Vsys and Vbat will cause the Vsys has high ripple, Although it is normal design behaviors, But it will cause MLCC noise a bit larger than other conditions. This CL force battery discharge when battery full, So the battery MOS of NVDC charger will turn on always, it make the Vsys same as Vbat and the noise has been improved. BUG=b:245042158 TEST=check battery discharging when battery full BRANCH=none Signed-off-by: Yu-An Chen <yu-an.chen@quanta.corp-partner.google.com> Change-Id: Ie48d5781dc8078f7973ec24232af56e410a21378 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3872410 Reviewed-by: caveh jalali <caveh@chromium.org>
Diffstat (limited to 'board/volmar')
-rw-r--r--board/volmar/battery.c69
-rw-r--r--board/volmar/board.h3
2 files changed, 72 insertions, 0 deletions
diff --git a/board/volmar/battery.c b/board/volmar/battery.c
index 3832fd8edf..639ec0dc57 100644
--- a/board/volmar/battery.c
+++ b/board/volmar/battery.c
@@ -7,6 +7,9 @@
#include "battery_fuel_gauge.h"
#include "cbi.h"
+#include "charge_ramp.h"
+#include "charge_state.h"
+#include "charger_profile_override.h"
#include "common.h"
#include "compile_time_macros.h"
#include "gpio.h"
@@ -131,3 +134,69 @@ enum battery_present battery_hw_present(void)
/* The GPIO is low when the battery is physically present */
return gpio_get_level(GPIO_EC_BATT_PRES_ODL) ? BP_NO : BP_YES;
}
+
+static int charger_should_discharge_on_ac(struct charge_state_data *curr)
+{
+ /* can not discharge on AC without battery */
+ if (curr->batt.is_present != BP_YES)
+ return 0;
+
+ /* Do not discharge on AC if the battery is still waking up */
+ if ((curr->batt.flags & BATT_FLAG_BAD_STATUS) ||
+ (!(curr->batt.flags & BATT_FLAG_WANT_CHARGE) &&
+ !(curr->batt.status & STATUS_FULLY_CHARGED)))
+ return 0;
+
+ /*
+ * In heavy load (>3A being withdrawn from VSYS) the DCDC of the
+ * charger operates on hybrid mode. This causes a slight voltage
+ * ripple on VSYS that falls in the audible noise frequency (single
+ * digit kHz range). This small ripple generates audible noise in
+ * the output ceramic capacitors (caps on VSYS and any input of
+ * DCDC under VSYS).
+ *
+ * To overcome this issue, force battery discharging when battery
+ * full, So the battery MOS of NVDC charger will turn on always,
+ * it make the Vsys same as Vbat and the noise has been improved.
+ */
+ if (!battery_is_cut_off() &&
+ !(curr->batt.flags & BATT_FLAG_WANT_CHARGE) &&
+ (curr->batt.status & STATUS_FULLY_CHARGED))
+ return 1;
+
+ return 0;
+}
+
+/*
+ * This can override the smart battery's charging profile. To make a change,
+ * modify one or more of requested_voltage, requested_current, or state.
+ * Leave everything else unchanged.
+ *
+ * Return the next poll period in usec, or zero to use the default (which is
+ * state dependent).
+ */
+int charger_profile_override(struct charge_state_data *curr)
+{
+ int disch_on_ac = charger_should_discharge_on_ac(curr);
+
+ charger_discharge_on_ac(disch_on_ac);
+
+ if (disch_on_ac) {
+ curr->state = ST_DISCHARGE;
+ return 0;
+ }
+
+ return 0;
+}
+
+enum ec_status charger_profile_override_get_param(uint32_t param,
+ uint32_t *value)
+{
+ return EC_RES_INVALID_PARAM;
+}
+
+enum ec_status charger_profile_override_set_param(uint32_t param,
+ uint32_t value)
+{
+ return EC_RES_INVALID_PARAM;
+}
diff --git a/board/volmar/board.h b/board/volmar/board.h
index 35dfa86713..424ba7b25d 100644
--- a/board/volmar/board.h
+++ b/board/volmar/board.h
@@ -63,6 +63,9 @@
#define PD_MAX_CURRENT_MA 3000
#define PD_MAX_VOLTAGE_MV 20000
+#define CONFIG_CHARGER_PROFILE_OVERRIDE
+#define CONFIG_PWR_STATE_DISCHARGE_FULL
+
/*
* Macros for GPIO signals used in common code that don't match the
* schematic names. Signal names in gpio.inc match the schematic and are