aboutsummaryrefslogtreecommitdiff
path: root/src/vendorcode/amd/fsp/picasso/misc_data.h
diff options
context:
space:
mode:
authorFelix Held <felix.held@amd.corp-partner.google.com>2020-05-20 01:32:38 +0200
committerFelix Held <felix-coreboot@felixheld.de>2020-05-24 04:56:01 +0000
commite6fcfc2a48fdb96637ee50b9afed98e38ce01a0a (patch)
tree217b14db82ba32a0965418ed1abbc56666b7e907 /src/vendorcode/amd/fsp/picasso/misc_data.h
parentf309204c534d5af1e8e40d4145e82e9229c7d4ee (diff)
vc/amd/fsp/picasso: add Picasso misc data HOB GUID and struct
BUG=b:153779573 Change-Id: I417ce34f2c302d61cfe94ff478f9022cae16f046 Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41629 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Raul Rangel <rrangel@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/vendorcode/amd/fsp/picasso/misc_data.h')
-rw-r--r--src/vendorcode/amd/fsp/picasso/misc_data.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/vendorcode/amd/fsp/picasso/misc_data.h b/src/vendorcode/amd/fsp/picasso/misc_data.h
new file mode 100644
index 0000000000..c8032749f9
--- /dev/null
+++ b/src/vendorcode/amd/fsp/picasso/misc_data.h
@@ -0,0 +1,14 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+
+#ifndef __PI_PICASSO_MISC_DATA_H__
+#define __PI_PICASSO_MISC_DATA_H__
+
+#define PICASSO_MISC_DATA_VERSION 1
+
+struct picasso_misc_data {
+ uint8_t version;
+ uint8_t unused[3];
+ uint32_t silicon_id;
+} __packed;
+
+#endif /* __PI_PICASSO_MISC_DATA_H__ */