blob: 5d52e7affa5bc38c476b82da558d4d2847b22969 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#include <amdblocks/chip.h>
#include <device/device.h>
#include "chip.h"
const struct soc_amd_common_config *soc_get_common_config()
{
const struct soc_amd_picasso_config *cfg = config_of_soc();
return &cfg->common_config;
}
|