summaryrefslogtreecommitdiff
path: root/src/vendorcode/amd/fsp/picasso/FspmUpd.h
diff options
context:
space:
mode:
authorMarshall Dawson <marshalldawson3rd@gmail.com>2019-07-18 13:09:05 -0600
committerMartin Roth <martinroth@google.com>2019-10-20 17:48:40 +0000
commit31ef56958db004dd6c0851d8a951721819ee2431 (patch)
treeffe2ccc81834f6f4e9d2c22b31f51df1a69e114b /src/vendorcode/amd/fsp/picasso/FspmUpd.h
parentc888a7bbaa5661abc6f44c0f6e4ba859966aebb3 (diff)
downloadcoreboot-31ef56958db004dd6c0851d8a951721819ee2431.tar.xz
vc/amd/fsp: Add UPD header files for picasso
Add files for Picasso's FSP UPD definitions. These are automatically generated from the FSP build. Change-Id: I7f683a9332fa4be5f78819c7d9b9bafb2d8cbe34 Signed-off-by: Marshall Dawson <marshalldawson3rd@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/34575 Reviewed-by: Martin Roth <martinroth@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/vendorcode/amd/fsp/picasso/FspmUpd.h')
-rw-r--r--src/vendorcode/amd/fsp/picasso/FspmUpd.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/vendorcode/amd/fsp/picasso/FspmUpd.h b/src/vendorcode/amd/fsp/picasso/FspmUpd.h
new file mode 100644
index 0000000000..aa85adc766
--- /dev/null
+++ b/src/vendorcode/amd/fsp/picasso/FspmUpd.h
@@ -0,0 +1,39 @@
+/** @file
+ *
+ * This file is automatically generated.
+ *
+ */
+
+#ifndef __FSPMUPD_H__
+#define __FSPMUPD_H__
+
+#include <FspUpd.h>
+
+#pragma pack(1)
+
+
+/** Fsp M Configuration
+**/
+typedef struct {
+ /** Offset 0x0040**/ uint32_t pci_express_base_addr;
+ /** Offset 0x0044**/ uint32_t serial_port_base;
+ /** Offset 0x0048**/ uint32_t serial_port_use_mmio;
+ /** Offset 0x004C**/ uint32_t serial_port_stride;
+ /** Offset 0x0050**/ uint32_t serial_port_baudrate;
+ /** Offset 0x0054**/ uint32_t serial_port_refclk;
+ /** Offset 0x0058**/ uint8_t UnusedUpdSpace0[168];
+ /** Offset 0x0100**/ uint16_t Reserved100;
+ /** Offset 0x0102**/ uint16_t UpdTerminator;
+} FSP_M_CONFIG;
+
+/** Fsp M UPD Configuration
+**/
+typedef struct {
+ /** Offset 0x0000**/ FSP_UPD_HEADER FspUpdHeader;
+ /** Offset 0x0020**/ FSPM_ARCH_UPD FspmArchUpd;
+ /** Offset 0x0040**/ FSP_M_CONFIG FspmConfig;
+} FSPM_UPD;
+
+#pragma pack()
+
+#endif