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:
parent
82d080e850
commit
e644fa5b7c
@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
WEAK_DEV_PTR(dptf_policy);
|
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();
|
config_t *config = config_of_soc();
|
||||||
size_t i;
|
size_t i;
|
||||||
@ -44,7 +44,7 @@ void variant_update_power_limits(const struct cpu_power_limits *limits, size_t n
|
|||||||
if (!num_entries)
|
if (!num_entries)
|
||||||
return;
|
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)
|
if (!soc_config)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
#define __BASEBOARD_VARIANTS_H__
|
#define __BASEBOARD_VARIANTS_H__
|
||||||
|
|
||||||
#include <chip.h>
|
#include <chip.h>
|
||||||
|
#include <intelblocks/power_limit.h>
|
||||||
#include <soc/gpio.h>
|
#include <soc/gpio.h>
|
||||||
#include <soc/meminit.h>
|
#include <soc/meminit.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
@ -70,6 +71,9 @@ struct psys_config {
|
|||||||
unsigned int bj_volts_mv;
|
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 */
|
/* Modify Power Limit devictree settings during ramstage */
|
||||||
void variant_update_power_limits(const struct cpu_power_limits *limits,
|
void variant_update_power_limits(const struct cpu_power_limits *limits,
|
||||||
size_t num_entries);
|
size_t num_entries);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user