aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2021-02-08 20:07:51 +0100
committerFelix Held <felix-coreboot@felixheld.de>2021-02-09 19:13:29 +0000
commitfa265fdc3b02a322d39a12105616d4fac43a1023 (patch)
treeebd8bc1fb4db355264fb7b2991847e87f4700a49
parent6302f8de83fd036c8162db9e9ef6e3e0cfba04b3 (diff)
vc/amd/fsp/cezanne: add FspGuids.h
Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: I54579a7998d1a4a232cb5286d3f481e2e63a4476 Reviewed-on: https://review.coreboot.org/c/coreboot/+/50402 Reviewed-by: Martin Roth <martinroth@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r--src/vendorcode/amd/fsp/cezanne/FspGuids.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/vendorcode/amd/fsp/cezanne/FspGuids.h b/src/vendorcode/amd/fsp/cezanne/FspGuids.h
new file mode 100644
index 0000000000..7f7a91d278
--- /dev/null
+++ b/src/vendorcode/amd/fsp/cezanne/FspGuids.h
@@ -0,0 +1,16 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+
+#ifndef __FSP_GUIDS__
+#define __FSP_GUIDS__
+
+#include <uuid.h>
+
+#define AMD_FSP_TSEG_HOB_GUID \
+ GUID_INIT(0x5fc7897a, 0x5aff, 0x4c61, \
+ 0xaa, 0x7a, 0xdd, 0xcf, 0xa9, 0x18, 0x43, 0x0c)
+
+#define AMD_FSP_BERT_HOB_GUID \
+ GUID_INIT(0xa21f7ab5, 0x6a89, 0x4df2, \
+ 0xb9, 0x19, 0x51, 0xad, 0x95, 0x50, 0x5b, 0xd8)
+
+#endif /* __FSP_GUIDS__ */