blob: 26ad26a6b16e41f4afa33e9aa7c5b261a635e22b [file] [log] [blame]
Furquan Shaikh2f5183c2020-05-09 12:57:02 -07001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
3
4#ifndef __AMDBLOCKS_CHIP_H__
5#define __AMDBLOCKS_CHIP_H__
6
7struct soc_amd_common_config {
8};
9
10/*
11 * SoC callback that returns pointer to soc_amd_common_config structure embedded within the chip
12 * soc config.
13 */
14const struct soc_amd_common_config *soc_get_common_config(void);
15
16#endif