hc
2024-05-08 f309769f8af08599af39b6de4f675784ce76530d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#ifndef __FSPSUPD_H__
#define __FSPSUPD_H__
 
#include <FspUpd.h>
 
#pragma pack(1)
 
 
/** Fsp S Configuration
**/
typedef struct {
 
/** Offset 0x0118 - BMP Logo Data Size
  BMP logo data buffer size. 0x00000000(Default).
**/
  UINT32                      LogoSize;
 
/** Offset 0x011C - BMP Logo Data Pointer
  BMP logo data pointer to a BMP format buffer. 0x00000000(Default).
**/
  UINT32                      LogoPtr;
 
/** Offset 0x0120 - Graphics Configuration Data Pointer
  Graphics configuration data used for initialization. 0x00000000(Default).
**/
  UINT32                      GraphicsConfigPtr;
 
/** Offset 0x0124 - PCI GFX Temporary MMIO Base
  PCI Temporary PCI GFX Base used before full PCI enumeration. 0x80000000(Default).
**/
  UINT32                      PciTempResourceBase;
 
/** Offset 0x0128
**/
  UINT8                       UnusedUpdSpace1[3];
 
/** Offset 0x012B
**/
  UINT8                       ReservedFspsUpd;
} FSP_S_CONFIG;
 
/** Fsp S UPD Configuration
**/
typedef struct {
 
/** Offset 0x0000
**/
  FSP_UPD_HEADER              FspUpdHeader;
 
/** Offset 0x00F8
**/
  FSPS_ARCH_UPD               FspsArchUpd;
 
/** Offset 0x0118
**/
  FSP_S_CONFIG                FspsConfig;
 
/** Offset 0x012C
**/
  UINT8                       UnusedUpdSpace2[2];
 
/** Offset 0x012E
**/
  UINT16                      UpdTerminator;
} FSPS_UPD;
 
#pragma pack()
 
#endif