eb9e63f21f
Change-Id: I7fa1f9402b177a036f08bf99c98a6191c35fa0b5 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/61371 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Jason Glenesk <jason.glenesk@gmail.com> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
12 lines
361 B
C
12 lines
361 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#include <amdblocks/chip.h>
|
|
#include <device/device.h>
|
|
#include "chip.h"
|
|
|
|
const struct soc_amd_common_config *soc_get_common_config(void)
|
|
{
|
|
/* config_of_soc calls die() internally if cfg was NULL, so no need to re-check */
|
|
const struct soc_amd_picasso_config *cfg = config_of_soc();
|
|
return &cfg->common_config;
|
|
}
|