aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/rex/Kconfig
diff options
context:
space:
mode:
authorSubrata Banik <subratabanik@google.com>2023-11-29 01:05:58 +0530
committerMatt DeVillier <matt.devillier@amd.corp-partner.google.com>2023-12-04 15:50:55 +0000
commit70770ebd36621715234ca6c427caa039ea4cd4f7 (patch)
tree1b3fad5ce3b6245217d2a0bfd15273a2a10f44e2 /src/mainboard/google/rex/Kconfig
parent72d616c22c59c6f979afef7fa613f2d2c0f86731 (diff)
mb/google/rex: Simplify power limit configuration usage
This patch removes the deprecated PL_PERFORMANCE and PL_BASELINE configurations, relying instead on the refactored power limit flow. This flow allows for seamless overrides by the baseboard and/or by the variant board, if necessary. Specifically, this patch: - Removes PL_PERFORMANCE and PL_BASELINE configuration options from mainboard.c in the google/rex directory. - Relies on the baseboard_devtree_update() function, which is implemented by the respective baseboard, to handle power limit configuration. - Leverages the variant_devtree_update() function, which is a __weak implementation, to allow overrides by the variant directory. This simplification improves code readability and maintainability while maintaining the flexibility to handle power limit configurations as needed. Change-Id: I872e5cb59d7b2789ef517d4a090189785db46b85 Signed-off-by: Subrata Banik <subratabanik@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/79331 Reviewed-by: Kapil Porwal <kapilporwal@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/rex/Kconfig')
-rw-r--r--src/mainboard/google/rex/Kconfig13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/mainboard/google/rex/Kconfig b/src/mainboard/google/rex/Kconfig
index 011c7a9e4a..a7f7b06264 100644
--- a/src/mainboard/google/rex/Kconfig
+++ b/src/mainboard/google/rex/Kconfig
@@ -239,17 +239,4 @@ config USE_PM_ACPI_TIMER
config HAVE_SLP_S0_GATE
def_bool n
-choice
- prompt "Choose desired processor power limits (PLs)"
- default PL_BASELINE if BOARD_GOOGLE_MODEL_SCREEBO
- default PL_PERFORMANCE
-
-config PL_PERFORMANCE
- bool "Performance: Maximum PLs for maximum performance"
-
-config PL_BASELINE
- bool "Baseline: Baseline PLs for balanced performance at lower power"
-
-endchoice
-
endif # BOARD_GOOGLE_REX_COMMON