blob: 895ba05e928022160309acffe7fc4b579f1b62c4 [file] [log] [blame]
Arthur Heymansc5c35ce2023-07-13 14:05:08 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2
3#include <device/device.h>
4#include <amdblocks/chip.h>
5#include <device/device.h>
6#include "chip.h"
7
8const struct soc_amd_common_config *soc_get_common_config(void)
9{
Felix Heldd123f8d2023-12-15 10:57:30 +010010 const struct soc_amd_genoa_poc_config *cfg = config_of_soc();
Arthur Heymansc5c35ce2023-07-13 14:05:08 +020011 return &cfg->common_config;
12}