summaryrefslogtreecommitdiff
path: root/src/mainboard/google
diff options
context:
space:
mode:
authorSowmya Aralguppe <sowmya.aralguppe@intel.com>2024-11-05 16:55:11 +0530
committerKarthik Ramasubramanian <kramasub@google.com>2024-11-06 18:20:22 +0000
commit34cbfae8b6d01c7dcbaba6891ec2f4ffb234efc3 (patch)
tree5fba59928287358efc89703b3c8da84a8953cf7f /src/mainboard/google
parent4597fc331b0bdc2d95ffd7d128c17fbbbc581369 (diff)
mb/google/brox: Reduce PL4 only for battery disconnected scenario
This patch reduces PL4 only for no battery condition i.e. when battery is disconnected or not physically present. BUG=b:377305625 TEST=Build Brox and boot when the battery is disconnected Change-Id: I59a1028ce9cd3a6cf98f865d9c085a64f391f201 Signed-off-by: Sowmya Aralguppe <sowmya.aralguppe@intel.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/85002 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Karthik Ramasubramanian <kramasub@google.com>
Diffstat (limited to 'src/mainboard/google')
-rw-r--r--src/mainboard/google/brox/romstage.c3
-rw-r--r--src/mainboard/google/brox/variants/baseboard/brox/ramstage.c5
2 files changed, 3 insertions, 5 deletions
diff --git a/src/mainboard/google/brox/romstage.c b/src/mainboard/google/brox/romstage.c
index ced918457d..19b99bbeb7 100644
--- a/src/mainboard/google/brox/romstage.c
+++ b/src/mainboard/google/brox/romstage.c
@@ -21,8 +21,7 @@ void mainboard_memory_init_params(FSPM_UPD *memupd)
size_t pads_num;
/* If battery is not present - Boot with maximum non-turbo frequency */
- if (CONFIG(EC_GOOGLE_CHROMEEC) &&
- !google_chromeec_is_battery_present_and_above_critical_threshold()) {
+ if (CONFIG(EC_GOOGLE_CHROMEEC) && !google_chromeec_is_battery_present()) {
FSP_M_CONFIG *mem_cfg = &memupd->FspmConfig;
mem_cfg->BootFrequency = MAX_NONTURBO_PERFORMANCE;
printk(BIOS_DEBUG, "Boot Frequency is set to %u\n", mem_cfg->BootFrequency);
diff --git a/src/mainboard/google/brox/variants/baseboard/brox/ramstage.c b/src/mainboard/google/brox/variants/baseboard/brox/ramstage.c
index 80c8499e4e..f079d7a58f 100644
--- a/src/mainboard/google/brox/variants/baseboard/brox/ramstage.c
+++ b/src/mainboard/google/brox/variants/baseboard/brox/ramstage.c
@@ -53,9 +53,8 @@ static void variant_pl4_override(struct soc_power_limits_config *config,
if (!config->tdp_pl4)
return;
- /* limiting PL4 value for battery disconnected or below critical threshold */
- if (CONFIG_PL4_LIMIT_FOR_CRITICAL_BAT_BOOT &&
- (!google_chromeec_is_battery_present_and_above_critical_threshold()))
+ /* Limit PL4 when battery is disconnected */
+ if (CONFIG_PL4_LIMIT_FOR_CRITICAL_BAT_BOOT && !google_chromeec_is_battery_present())
config->tdp_pl4 = CONFIG_PL4_LIMIT_FOR_CRITICAL_BAT_BOOT;
else
config->tdp_pl4 = DIV_ROUND_UP(limits[brox_idx].pl4_power, MILLIWATTS_TO_WATTS);