From e644fa5b7c46900bdaad8d6596777fee52033716 Mon Sep 17 00:00:00 2001 From: Seunghwan Kim Date: Mon, 1 Apr 2024 16:25:11 +0900 Subject: mb/google/brya: Make get_soc_power_limit_config() a public function Make get_soc_power_limit_config() a public function to use on brya variants. Add prefix 'variant_' for it. BUG=None BRANCH=brya TEST=emerge-brya coreboot Change-Id: I31f938938e7c9da49c2aa7b52dd4b5f46f793495 Signed-off-by: Seunghwan Kim Reviewed-on: https://review.coreboot.org/c/coreboot/+/81616 Reviewed-by: Subrata Banik Tested-by: build bot (Jenkins) Reviewed-by: Eric Lai --- src/mainboard/google/brya/variants/baseboard/brya/ramstage.c | 4 ++-- .../google/brya/variants/baseboard/include/baseboard/variants.h | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'src/mainboard/google') diff --git a/src/mainboard/google/brya/variants/baseboard/brya/ramstage.c b/src/mainboard/google/brya/variants/baseboard/brya/ramstage.c index a7e5e8a521..9ebe0d709d 100644 --- a/src/mainboard/google/brya/variants/baseboard/brya/ramstage.c +++ b/src/mainboard/google/brya/variants/baseboard/brya/ramstage.c @@ -11,7 +11,7 @@ WEAK_DEV_PTR(dptf_policy); -static struct soc_power_limits_config *get_soc_power_limit_config(void) +struct soc_power_limits_config *variant_get_soc_power_limit_config(void) { config_t *config = config_of_soc(); size_t i; @@ -44,7 +44,7 @@ void variant_update_power_limits(const struct cpu_power_limits *limits, size_t n if (!num_entries) return; - struct soc_power_limits_config *soc_config = get_soc_power_limit_config(); + struct soc_power_limits_config *soc_config = variant_get_soc_power_limit_config(); if (!soc_config) return; diff --git a/src/mainboard/google/brya/variants/baseboard/include/baseboard/variants.h b/src/mainboard/google/brya/variants/baseboard/include/baseboard/variants.h index ad8eb05833..583af59601 100644 --- a/src/mainboard/google/brya/variants/baseboard/include/baseboard/variants.h +++ b/src/mainboard/google/brya/variants/baseboard/include/baseboard/variants.h @@ -4,6 +4,7 @@ #define __BASEBOARD_VARIANTS_H__ #include +#include #include #include #include @@ -70,6 +71,9 @@ struct psys_config { unsigned int bj_volts_mv; }; +/* Get soc power limit config struct for current CPU sku */ +struct soc_power_limits_config *variant_get_soc_power_limit_config(void); + /* Modify Power Limit devictree settings during ramstage */ void variant_update_power_limits(const struct cpu_power_limits *limits, size_t num_entries); -- cgit v1.2.3