summaryrefslogtreecommitdiff
path: root/src/mainboard/google/brya
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/google/brya')
-rw-r--r--src/mainboard/google/brya/variants/baseboard/brya/ramstage.c4
-rw-r--r--src/mainboard/google/brya/variants/baseboard/include/baseboard/variants.h4
2 files changed, 6 insertions, 2 deletions
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 <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);