04f079d396
Change-Id: I39cf2d28749536cb7d9462fa4af412850677f2e3 Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/48354 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
12 lines
357 B
C
12 lines
357 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()
|
|
{
|
|
/* 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;
|
|
}
|