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 <sh_.kim@samsung.corp-partner.google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/81616
Reviewed-by: Subrata Banik <subratabanik@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <ericllai@google.com>
This commit is contained in:
Seunghwan Kim 2024-04-01 16:25:11 +09:00 committed by Felix Held
parent 82d080e850
commit e644fa5b7c
2 changed files with 6 additions and 2 deletions

View File

@ -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;

View File

@ -4,6 +4,7 @@
#define __BASEBOARD_VARIANTS_H__
#include <chip.h>
#include <intelblocks/power_limit.h>
#include <soc/gpio.h>
#include <soc/meminit.h>
#include <stdint.h>
@ -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);