summaryrefslogtreecommitdiffstats
path: root/src/soc/amd/cezanne/chip.h
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2020-12-05 01:39:28 +0100
committerFelix Held <felix-coreboot@felixheld.de>2020-12-06 19:05:47 +0000
commitc8272783db8b8a8fe66e1bd1fe60a37532b6b071 (patch)
tree9f815ae3200215cd4a13503ea8ce11e5c4d01961 /src/soc/amd/cezanne/chip.h
parent04f079d396631ff7154b3a750ba0a92adbf5c562 (diff)
downloadcoreboot-c8272783db8b8a8fe66e1bd1fe60a37532b6b071.tar.gz
coreboot-c8272783db8b8a8fe66e1bd1fe60a37532b6b071.tar.bz2
coreboot-c8272783db8b8a8fe66e1bd1fe60a37532b6b071.zip
soc/amd/cezanne: add config.c and minimal chip.h
Change-Id: I89f08c201bd7d9a11b186ef960abe9714a76fb97 Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/48317 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Diffstat (limited to 'src/soc/amd/cezanne/chip.h')
-rw-r--r--src/soc/amd/cezanne/chip.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/soc/amd/cezanne/chip.h b/src/soc/amd/cezanne/chip.h
new file mode 100644
index 000000000000..b4e94a447812
--- /dev/null
+++ b/src/soc/amd/cezanne/chip.h
@@ -0,0 +1,12 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+
+#ifndef CEZANNE_CHIP_H
+#define CEZANNE_CHIP_H
+
+#include <amdblocks/chip.h>
+
+struct soc_amd_cezanne_config {
+ struct soc_amd_common_config common_config;
+};
+
+#endif /* CEZANNE_CHIP_H */