aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTim Van Patten <timvp@google.com>2022-09-15 17:15:56 -0600
committerMartin L Roth <gaumless@gmail.com>2022-09-19 09:56:06 +0000
commit1cf0acdc1ce54a8aa8b19378abf3075d23fa58ea (patch)
tree2d40afee7c8bd64098a90cfefb68486b59028356 /src
parent11ca99550032b11aca8157d94fce728fec8981f2 (diff)
soc/amd/mendocino: Add low/no battery VRM limit registers
Add DPTC Low/No battery VRM limit registers to throttle the SOC. BRANCH=none BUG=b:217911928 TEST=Build skyrim Signed-off-by: Tim Van Patten <timvp@google.com> Change-Id: I9c4ed227b54efbab9f03d6acf64b1160ad73f460 Reviewed-on: https://review.coreboot.org/c/coreboot/+/67692 Reviewed-by: Raul Rangel <rrangel@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r--src/soc/amd/mendocino/chip.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/soc/amd/mendocino/chip.h b/src/soc/amd/mendocino/chip.h
index 15012fd4da..0e656f5d5a 100644
--- a/src/soc/amd/mendocino/chip.h
+++ b/src/soc/amd/mendocino/chip.h
@@ -68,6 +68,10 @@ struct soc_amd_mendocino_config {
uint32_t vrm_current_limit_mA;
uint32_t vrm_maximum_current_limit_mA;
uint32_t vrm_soc_current_limit_mA;
+ /* Throttle (e.g., Low/No Battery) */
+ uint32_t vrm_current_limit_throttle_mA;
+ uint32_t vrm_maximum_current_limit_throttle_mA;
+ uint32_t vrm_soc_current_limit_throttle_mA;
uint8_t smartshift_enable;