summaryrefslogtreecommitdiffstats
path: root/src/vendorcode/intel/fsp/fsp2_0/sapphirerapids_sp/FspmUpd.h
blob: bfd8d7dce48bf3584a92b8d5838fe1aaca6cc4f4 (plain)
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
/** @file

Copyright (c) 2022, Intel Corporation. All rights reserved.<BR>

Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice, this
  list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this
  list of conditions and the following disclaimer in the documentation and/or
  other materials provided with the distribution.
* Neither the name of Intel Corporation nor the names of its contributors may
  be used to endorse or promote products derived from this software without
  specific prior written permission.

  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  THE POSSIBILITY OF SUCH DAMAGE.

  This file is automatically generated. Please do NOT modify !!!

**/

#ifndef __FSPMUPD_H__
#define __FSPMUPD_H__

#include <FspUpd.h>
#include <IioPcieConfigUpd.h>

#pragma pack(1)


/** FSP-M Configuration
**/
typedef struct {

/** Offset 0x0040 - Customer Revision
  The Customer can set this revision string for their own purpose.
**/
  UINT8                       CustomerRevision[32];

/** Offset 0x0060 - Bus Ratio
  Indicates the ratio of Bus/MMIOL/IO resource to be allocated for each CPU's IIO
**/
  UINT8                       BusRatio[8];

/** Offset 0x0068 - D2K Credit Config
  Set the D2K Credit Config - 1: Min, <b>2: Med(Default)</b>, 3: Max.
  1:Min, 2:Med, 3:Max
**/
  UINT8                       D2KCreditConfig;

/** Offset 0x0069 - Snoop Throttle Config
  Set the Snoop Throttle Config - <b>0: DIS(Default)</b>, 1: Min, 2: Med, 3: Max.
  0:DIS, 1:Min, 2:Med, 3:Max
**/
  UINT8                       SnoopThrottleConfig;

/** Offset 0x006A - Legacy VGA Soc
  Socket that claims the legacy VGA range
**/
  UINT8                       LegacyVgaSoc;

/** Offset 0x006B - Legacy VGA Stack
  Stack that claims the legacy VGA range
**/
  UINT8                       LegacyVgaStack;

/** Offset 0x006C - Pcie P2P Performance Mode
  Determine if to enable PCIe P2P Performance Mode - <b>0: Disable(Default)</b>, 1: Enable.
  0:Disable, 1:Enable
**/
  UINT8                       P2pRelaxedOrdering;

/** Offset 0x006D - UPI Debug Print Level
  UPI Debug Print Level Bitmask - 0: Disable, 1: Fatal, 2: Warning, 4: Summary, 8:
  Detail, <b>0x0F: All(Default)</b>.
  1:Fatal, 2:Warning, 4:Summary, 8:Detail, 0x0F:All
**/
  UINT8                       DebugPrintLevel;

/** Offset 0x006E - NumaEn
  NumaEn - <b>1: Enable Numa(Default)</b>, 0: Disable Numa.
  0:Disable, 1:Enable
**/
  UINT8                       NumaEn;

/** Offset 0x006F - SNC
  Enable or Disable SNC - 0: Disable, 2: Snc2, 4: Snc4, <b>0x0F: Auto(Default)</b>.
  0: Disable, 2: Snc2, 4: Snc4, 0x0F: Auto
**/
  UINT8                       SncEn;

/** Offset 0x0070 - UMA Clustering
  Set UMA Clusters - 0: Disable, 2: Two Clusters, <b>4: Four Clusters(Default)</b>.
  0:Disable, 2:Two Clusters, 4:Four Clusters
**/
  UINT8                       UmaClustering;

/** Offset 0x0071 - IODC Mode
  IODC Mode - 0: Disable, <b>1: Auto(Default)</b>, 2: Push, 3: AllocFlow, 4: NonAlloc,
  5: WCILF.
  0:Disable, 1:Auto, 2:Push, 3:AllocFlow, 4:NonAlloc, 5:WCILF
**/
  UINT8                       IoDcMode;

/** Offset 0x0072 - Degrade Precedence
  Setup Degrade Precedence - <b>0: Topology(Default)</b>, 1: Feature.
  0:Topology, 1:Feature
**/
  UINT8                       DegradePrecedence;

/** Offset 0x0073 - Degrade 4 Socket Preference
  Setup Degrade 4 Socket Preference - <b>0: Fully Connect(Default)</b>, 1: Dual Link Ring.
  0:Fully Connect, 1:Dual Link Ring
**/
  UINT8                       Degrade4SPreference;

/** Offset 0x0074 - Directory Mode
  Enable or Disable Directory Mode - 0: Disable, 1: Enable, <b>2: Auto(Default)</b>.
  0:Disable, 1:Enable, 2:Auto
**/
  UINT8                       DirectoryModeEn;

/** Offset 0x0075 - XPT Prefetch Enable
  Enable or Disable XPT Prefetch - 0: Disable, 1: Enable, <b>2: Auto(Default)</b>.
  0:Disable, 1:Enable, 2:Auto
**/
  UINT8                       XptPrefetchEn;

/** Offset 0x0076 - KTI Prefetch Enable
  Enable or Disable KTI Prefetch - 0: Disable, 1: Enable, <b>2: Auto(Default)</b>.
  0:Disable, 1:Enable, 2:Auto
**/
  UINT8                       KtiPrefetchEn;

/** Offset 0x0077 - XPT Remote Prefetch Enable
  Enable or Disable XPT Remote Prefetch Enable - 0: Disable, 1: Enable, <b>2: Auto(Default)</b>.
  0:Disable, 1:Enable, 2:Auto
**/
  UINT8                       XptRemotePrefetchEn;

/** Offset 0x0078 - KTI FPGA
  Enable or Disable KTI FPGA
**/
  UINT8                       KtiFpgaEnable[8];

/** Offset 0x0080 - DDRT QoS Mode
  DDRT QoS - <b>0: Mode 0(Default)</b>, 1: Mode 1, 2: Mode 2.
  0:Mode 0, 1:Mode 1, 2:Mode 2
**/
  UINT8                       DdrtQosMode;

/** Offset 0x0081 - KTI Link Speed Mode
  Choose KTI Link Speed Mode - 0: Slow, <b>1: Full(Default)</b>.
  0:Slow, 1:Full
**/
  UINT8                       KtiLinkSpeedMode;

/** Offset 0x0082 - KTI Link Speed
  Setup KTI Link Speed - 0: 128GT, 1: 144GT, 2: 160GT, 3: 200GT, <b>0x7F: Max KTI
  Link Speed (Default)</b>, 0x8F: Frequency Per Link.
  0:128GT, 1:144GT, 2:160GT, 3:200GT, 0x7F:Max KTI Link Speed, 0x8F:Frequency Per Link
**/
  UINT8                       KtiLinkSpeed;

/** Offset 0x0083 - KTI Link L0p
  Enable or Disable KTI Link L0p - 0: Disable, 1: Enable, <b>2: Auto(Default)</b>.
  0:Disable, 1:Enable, 2: Auto
**/
  UINT8                       KtiLinkL0pEn;

/** Offset 0x0084 - KTI Link L1
  Enable or Disable KTI Link L1 - 0: Disable, 1: Enable, <b>2: Auto(Default)</b>.
  0:Disable, 1:Enable, 2: Auto
**/
  UINT8                       KtiLinkL1En;

/** Offset 0x0085 - Kti Link Speed Per Port
  Setup KTI Link Speed to be allocated for each port - 0: 128GT, 1: 144GT, 2: 160GT,
  3: 200GT, <b>0x7f: Max KTI Link Speed(Default)</b>.
  0:128GT, 1:144GT, 2:160GT, 3:200GT, 0x7f:Max KTI Link Speed
**/
  UINT8                       KtiLinkSpeedPerPort[48];

/** Offset 0x00B5 - DfxL0p Enable
  Indicates the DfxL0p Enable to be allocated for each port - 0: Disable, <b>1: Enable(Default)</b>.
  0:Disable, 1:Enable
**/
  UINT8                       DfxL0pEnable[48];

/** Offset 0x00E5 - DfxL1 Enable
  Indicates the DfxL1 Enable to be allocated for each port - 0: Disable, <b>1: Enable(Default)</b>.
  0:Disable, 1:Enable
**/
  UINT8                       DfxL1Enable[48];

/** Offset 0x0115 - KTI Failover
  Enable or Disable KTI Failover - 0: Disable, 1: Enable, <b>2: Auto(Default)</b>.
  0:Disable, 1:Enable, 2: Auto
**/
  UINT8                       KtiFailoverEn;

/** Offset 0x0116 - KTI LB Enable
  Enable or Disable KTI LB - <b>0:Disable(Default)</b>, 1:Enable.
  0:Disable, 1:Enable
**/
  UINT8                       KtiLbEn;

/** Offset 0x0117 - KTI CRC Mode
  Select KTI CRC Mode - <b>0: 16bit(Default)</b>, 1: 32bit, 2: Auto.
  0:16bit, 1:32bit, 2:Auto
**/
  UINT8                       KtiCrcMode;

/** Offset 0x0118 - KTI CPU Socket Hotplug
  Enable or Disable KTI CPU Socket Hotplug - <b>0: Disable(Default)</b>, 1: Enable.
  0:Disable, 1:Enable
**/
  UINT8                       KtiCpuSktHotPlugEn;

/** Offset 0x0119 - KTI CPU Socket HotPlug Topology
  Select KTI CPU Socket HotPlug Topology - <b>0: 4Socket(Default)</b>, 1: 8Socket.
  0:4Socket, 1:8Socket
**/
  UINT8                       KtiCpuSktHotPlugTopology;

/** Offset 0x011A - KTI SKU Mismatch Check
  Enable or Disable KTI SKU Mismatch Check - 0: Disable, <b>1 :Enable(Default)</b>.
  0:Disable, 1:Enable
**/
  UINT8                       KtiSkuMismatchCheck;

/** Offset 0x011B - TOR Threshold - Loctorem threshold Normal
  Select TOR Threshold - Loctorem threshold Normal - 0: Disable, <b>1: Auto(Default)</b>,
  2: Low, 3: Medium, 4: High.
  0:Disable, 1:Auto, 2:Low, 3:Medium, 4:High
**/
  UINT8                       TorThresLoctoremNorm;

/** Offset 0x011C - TOR threshold - Loctorem threshold empty
  Select TOR threshold - Loctorem threshold empty - 0: Disable, <b>1: Auto(Default)</b>,
  2: Low, 3: Medium, 4:High.
  0:Disable, 1:Auto, 2:Low, 3:Medium, 4:High
**/
  UINT8                       TorThresLoctoremEmpty;

/** Offset 0x011D - TSC Sync in Sockets
  Enable or Disable TSC Sync in Sockets - 0: Disable, <b>1: Enable(Default)</b>, 2: Auto.
  0:Disable, 1:Enable, 2:Auto
**/
  UINT8                       TscSyncEn;

/** Offset 0x011E - HA A to S directory optimization
  Enable or Disable HA A to S directory optimization - 0: Disable, 1: Enable, <b>2:
  Auto(Default)</b>.
  0:Disable, 1:Enable, 2:Auto
**/
  UINT8                       StaleAtoSOptEn;

/** Offset 0x011F - LLC Deadline Allocation
  Enable or Disable LLC Deadline Allocation - 0: Disable, <b>1: Enable(Default)</b>, 2: Auto.
  0:Disable, 1:Enable, 2:Auto
**/
  UINT8                       LLCDeadLineAlloc;

/** Offset 0x0120 - MBA BW Calibration Profiles
  Choice of MBA BW throttling curve - 0: Linear BW shaping, 1: Biased BW shaping,
  2: Legacy BW shaping, <b>3: Auto(Default)</b>.
  0:Linear BW shaping, 1:Biased BW shaping, 2:Legacy BW shaping, 3:Auto
**/
  UINT8                       MbeBWCalChoice;

/** Offset 0x0121 - Split Lock
  Enable or Disable Split Lock - <b>0: Disable(Default)</b>, 1: Enable, 2: Auto.
  0:Disable, 1:Enable, 2:Auto
**/
  UINT8                       SplitLock;

/** Offset 0x0122 - Affinitize M2Iosf to Upi for 2-Socket
  Affinitize M2IOSF traffic to proper UPI links to improve 2-Socket P2P perf - 0:
  Disable, 1: Enable, <b>2: Auto(Default)</b>.
  0:Disable, 1:Enable, 2:Auto
**/
  UINT8                       M2iosfToUpiAffinity;

/** Offset 0x0123 - MMCFG Base Address
  Setup MMCFG Base Address - 0: 1G, 1: 1.5G, 2: 1.75G, 3: 2G, 4: 2.25G, 5: 3G, <b>6:
  Auto(Default)</b>.
  0:1G, 1:1.5G, 2:1.75G, 3:2G, 4:2.25G, 5:3G, 6:Auto
**/
  UINT8                       mmCfgBase;

/** Offset 0x0124 - MMCFG Size
  Select MMCFG Size - 0: 64M, 1: 128M, 2: 256M, 3: 512M, 4: 1G, 5: 2G, <b>6: Auto(Default)</b>.
  0:64M, 1:128M, 2:256M, 3:512M, 4:1G, 5:2G, 6:Auto
**/
  UINT8                       mmCfgSize;

/** Offset 0x0125
**/
  UINT8                       UnusedUpdSpace0[3];

/** Offset 0x0128 - MMIO High Base Address
  MMIO High Base Address, a hex number for Bit[51:32]
**/
  UINT32                      mmiohBase;

/** Offset 0x012C - CPU Physical Address Limit
  CPU Physical Address Limit - <b>0: Disable(Default)</b>, 1: Enable.
  0:Disable, 1:Enable
**/
  UINT8                       CpuPaLimit;

/** Offset 0x012D
**/
  UINT8                       UnusedUpdSpace1;

/** Offset 0x012E - MMIO High Size
  MMIO High Size, Number of 1GB contiguous regions to be assigned for MMIOH space
  per CPU.  Range 1-1024
**/
  UINT16                      mmiohSize;

/** Offset 0x0130 - isocEn
  Enable or Disable isocEn - <b>0: Disable(Default)</b>, 1: Enable, 2: Auto.
  0:Disable, 1:Enable, 2:Auto
**/
  UINT8                       isocEn;

/** Offset 0x0131 - DCA
  Enable or Disable DCA - <b>0: Disable(Default)</b>, 1: Enable.
  0:Disable, 1:Enable
**/
  UINT8                       dcaEn;

/** Offset 0x0132
**/
  UINT8                       UnusedUpdSpace2[2];

/** Offset 0x0134 - BoardTypeBitmask
  BoardTypeBitmask
**/
  UINT32                      BoardTypeBitmask;

/** Offset 0x0138 - AllLanesPtr
  Pointer to array of ALL_LANES_EPARAM_LINK_INFO
**/
  UINT32                      AllLanesPtr;

/** Offset 0x013C - PerLanePtr
  Pointer to array of PER_LANE_EPARAM_LINK_INFO
**/
  UINT32                      PerLanePtr;

/** Offset 0x0140 - AllLanesSizeOfTable
  Number of elements in AllLanesPtr array.
**/
  UINT32                      AllLanesSizeOfTable;

/** Offset 0x0144 - PerLaneSizeOfTable
  Number of elements in PerLanePtr array.
**/
  UINT32                      PerLaneSizeOfTable;

/** Offset 0x0148 - WaitTimeForPSBP
  Enable or Disable WaitTimeForPSBP
**/
  UINT32                      WaitTimeForPSBP;

/** Offset 0x014C - WaSerializationEn
  Enable or Disable WaSerializationEn - <b>0: Disable(Default)</b>, 1: Enable.
  0:Disable, 1:Enable
**/
  UINT8                       WaSerializationEn;

/** Offset 0x014D - KtiInEnableMktme
  Enable or Disable KtiInEnableMktme - <b>0: Disable(Default)</b>, 1: Enable.
  0:Disable, 1:Enable
**/
  UINT8                       KtiInEnableMktme;

/** Offset 0x014E - HIOP STACK DISABLE
  Enables/Disables given HIOP STACK. Default is AUTO no stack is disabled. 1 - The
  stacks indicated by the bit locations are disabled. 0 - The stacks indicated by
  the bit locations are not modified. The stack order is abstracted each bit 0 =
  stack 0 ... bit n = stack n. The bit setting for each stack can be overriden by
  BIOS based on part-knob compatibility. The array size must be MAX_SOCKET x UINT32.
**/
  UINT8                       StackDisableBitMap[32];

/** Offset 0x016E - CFRS3mProvision
  Enable or Disable Provision S3M CFR - <b>0: Disable(Default)</b>, 1: Enable.
  0:Disable, 1:Enable
**/
  UINT8                       CFRS3mProvision;

/** Offset 0x016F - CFRS3mManualCommit
  Enable or Disable Manual Commit S3M FW CFR - <b>0:Disable(Default)</b>, 1:Enable.
  0:Disable, 1:Enable
**/
  UINT8                       CFRS3mManualCommit;

/** Offset 0x0170 - CFRPucodeProvision
  Enable or Disable Provision PUcode CFR - <b>0:Disable(Default)</b>, 1:Enable.
  0:Disable, 1:Enable
**/
  UINT8                       CFRPucodeProvision;

/** Offset 0x0171 - CFRPucodeManualCommit
  Enable or Disable Manual Commit PUcode CFR - <b>0:Disable(Default)</b>, 1:Enable.
  0:Disable, 1:Enable
**/
  UINT8                       CFRPucodeManualCommit;

/** Offset 0x0172
**/
  UINT8                       UnusedUpdSpace3[2];

/** Offset 0x0174 - CFRImagePtr
  Pointer to array of CFR Image
**/
  UINT32                      CFRImagePtr;

/** Offset 0x0178 - Processor VmxEnable Function
  Enable(Default) or Disable Processor VmxEnable Function - 0: Disable, <b>1: Enable(Default)</b>.
  0:Disable, 1:Enable
**/
  UINT8                       VmxEnable;

/** Offset 0x0179 - Processor X2apic Function
  Enable(Default) or Disable Processor X2apic Function - 0: Disable, <b>1: Enable(Default)</b>.
  0:Disable, 1:Enable
**/
  UINT8                       X2apic;

/** Offset 0x017A - Processor HyperThreading Function
  Enable(Default) or Disable Processor HyperThreading Function - 1: Disable, <b>0:
  Enable(Default)</b>.
  1:Disable, 0:Enable
**/
  UINT8                       ProcessorHyperThreadingDisable;

/** Offset 0x017B - Processor Dynamic Intel Speed Select (ISS) Function
  Enable or Disable(Default) Processor Dynamic Intel Speed Select (ISS) Function -
  <b>0: Disable(Default)</b>, 1: Enable.
  0:Disable, 1:Enable
**/
  UINT8                       ProcessorDynamicIssEnable;

/** Offset 0x017C - Enables Intel(R) TXT
  Enable or Disable(Default) Enables Intel(R) TXT - <b>0: Disable(Default)</b>, 1: Enable.
  0:Disable, 1:Enable
**/
  UINT8                       ProcessorLtsxEnable;

/** Offset 0x017D - DDR frequency limit
  Select DDR frequency limit, <b>0x00: Auto(Default)</b>, 0x13:DDR_3200, 0x16:DDR_3600,
  0x19:DDR_4000, 0x1C:DDR_4400, 0x1D:DDR_4800, 0x1E:DDR_5200, 0x1F:DDR_5600
**/
  UINT8                       DdrFreqLimit;

/** Offset 0x017E - Memory Serial Debug Message Level
  Select Memory Serial Debug Message Level - 0: Disable, 1: Minimum, 2: Normal, <b>3:
  Maximum(Default)</b>, 4: Auto.
  0:Disable, 1:Minimum, 2:Normal, 3:Maximum, 4:Auto
**/
  UINT8                       serialDebugMsgLvl;

/** Offset 0x017F - IIO ConfigIOU0
  ConfigIOU[MAX_SOCKET][0]: MAX_SOCKET=8, 0x00:x4x4x4x4, 0x01:x4x4xxx8, 0x02:xxx8x4x4,
  0x03:xxx8xxx8, 0x04:xxxxxx16, <b>0xFF:AUTO(Default)</b>
**/
  UINT8                       IioConfigIOU0[8];

/** Offset 0x0187 - IIO ConfigIOU1
  ConfigIOU[MAX_SOCKET][1]: MAX_SOCKET=8, 0x00:x4x4x4x4, 0x01:x4x4xxx8, 0x02:xxx8x4x4,
  0x03:xxx8xxx8, 0x04:xxxxxx16, <b>0xFF:AUTO(Default)</b>
**/
  UINT8                       IioConfigIOU1[8];

/** Offset 0x018F - IIO ConfigIOU2
  ConfigIOU[MAX_SOCKET][2]: MAX_SOCKET=8, 0x00:x4x4x4x4, 0x01:x4x4xxx8, 0x02:xxx8x4x4,
  0x03:xxx8xxx8, 0x04:xxxxxx16, <b>0xFF:AUTO(Default)</b>
**/
  UINT8                       IioConfigIOU2[8];

/** Offset 0x0197 - IIO ConfigIOU3
  ConfigIOU[MAX_SOCKET][3]: MAX_SOCKET=8, 0x00:x4x4x4x4, 0x01:x4x4xxx8, 0x02:xxx8x4x4,
  0x03:xxx8xxx8, 0x04:xxxxxx16, <b>0xFF:AUTO(Default)</b>
**/
  UINT8                       IioConfigIOU3[8];

/** Offset 0x019F - IIO ConfigIOU4
  ConfigIOU[MAX_SOCKET][4]: MAX_SOCKET=8, 0x00:x4x4x4x4, 0x01:x4x4xxx8, 0x02:xxx8x4x4,
  0x03:xxx8xxx8, 0x04:xxxxxx16, <b>0xFF:AUTO(Default)</b>
**/
  UINT8                       IioConfigIOU4[8];

/** Offset 0x01A7 - IIO ConfigIOU5
  ConfigIOU[MAX_SOCKET][5]: MAX_SOCKET=8, 0x00:x4x4x4x4, 0x01:x4x4xxx8, 0x02:xxx8x4x4,
  0x03:xxx8xxx8, 0x04:xxxxxx16, <b>0xFF:AUTO(Default)</b>
**/
  UINT8                       IioConfigIOU5[8];

/** Offset 0x01AF - IIO ConfigIOU6
  ConfigIOU[MAX_SOCKET][6]: MAX_SOCKET=8, 0x00:x4x4x4x4, 0x01:x4x4xxx8, 0x02:xxx8x4x4,
  0x03:xxx8xxx8, 0x04:xxxxxx16, <b>0xFF:AUTO(Default)</b>
**/
  UINT8                       IioConfigIOU6[8];

/** Offset 0x01B7
**/
  UINT8                       UnusedUpdSpace4;

/** Offset 0x01B8 - IIO PCIE Config Table Ptr
  Pointer to array of UPD_IIO_PCIE_PORT_CONFIG
**/
  UINT32                      IioPcieConfigTablePtr;

/** Offset 0x01BC - IIO PCIE Config Table Number
  Number of elements in IioPcieConfigTablePtr array, socket number as unit.
**/
  UINT32                      IioPcieConfigTableNumber;

/** Offset 0x01C0 - IIO DeEmphasis Array Ptr
  Pointer to array of DeEmphasis
**/
  UINT32                      DeEmphasisPtr;

/** Offset 0x01C4 - IIO DeEmphasis Array Number
  Number of elements in DeEmphasis array.
**/
  UINT32                      DeEmphasisNumber;

/** Offset 0x01C8 - IIO PCIe Common Clock Array Ptr
  Pointer to array of PCIe Common Clock
**/
  UINT32                      PcieCommonClockPtr;

/** Offset 0x01CC - IIO PCIe Common Clock Array Number
  Number of elements in PCIe Common Clock array.
**/
  UINT32                      PcieCommonClockNumber;

/** Offset 0x01D0 - VT-d Support
  Enable or Disable VT-d Support - 0: Disable, <b>1: Enable(Default)</b>.
  0:Disable, 1:Enable
**/
  UINT8                       VtdSupport;

/** Offset 0x01D1 - PCIe ACSCTL
  Enable/Disable overwrite of PCI Access Control Services Control register in PCI
  root ports - 0: Disable, <b>1: Enable(Default)</b>.
  0:Disable, 1:Enable
**/
  UINT8                       VtdPciAcsCtlWaEn;

/** Offset 0x01D2
**/
  UINT8                       UnusedUpdSpace5[2];

/** Offset 0x01D4 - IIO PCIe Port Hide Array Ptr
  Pointer to array of Hide or visible for IIO Pcie Port.
**/
  UINT32                      PEXPHIDEPtr;

/** Offset 0x01D8 - IIO PCIe Port Hide Array Number
  Number of elements in IIO PCIe Port Hide Array.
**/
  UINT32                      PEXPHIDENumber;

/** Offset 0x01DC - PcieHotPlugEnable
  Enable or disable Pcie hot plug enable feature - <b>0: Disable(Default)</b>, 1: Enable.
  0:Disable, 1:Enable
**/
  UINT8                       PcieHotPlugEnable;

/** Offset 0x01DD
**/
  UINT8                       UnusedUpdSpace6;

/** Offset 0x01DE - DelayAfterPCIeLinkTraining
  Custom delay after PCI-E link training on IIO ports
**/
  UINT16                      DelayAfterPCIeLinkTraining;

/** Offset 0x01E0 - IIO PCI bus resource Ptr
  Pointer to array of socket PCI bus resource.
**/
  UINT32                      PciBusResConfigPtr;

/** Offset 0x01E4 - IIO PCI IO/MMIO base and limits resource Ptr
  Pointer to array of socket PCI IO/MMIO resource.
**/
  UINT32                      PciBaseLimitsResConfigPtr;

/** Offset 0x01E8 - PCH PCIE PLL Ssc
  Pointer to array of socket PCI IO/MMIO resource.
**/
  UINT8                       PchPciePllSsc;

/** Offset 0x01E9 - MeUmaEnable
  Enable or disable ME UMA feature - <b>0: Disable(Default)</b>, 1: Enable.
  0:Disable, 1:Enable
**/
  UINT8                       MeUmaEnable;

/** Offset 0x01EA - SerialIoUartDebugEnable
  Enable or Disable SerialIo Uart debug library in FSP - 0: Disable, <b>1: Enable(Default)</b>.
  0:Disable, 1:Enable
**/
  UINT8                       SerialIoUartDebugEnable;

/** Offset 0x01EB
**/
  UINT8                       UnusedUpdSpace7;

/** Offset 0x01EC - ISA Serial Base selection
  Select ISA Serial Base address could be initialized by boot loader - 0x2F8: 0x2F8,
  <b>0x3F8: 0x3F8(Default)</b>.
  0x2F8:0x2F8, 0x3F8:0x3F8
**/
  UINT16                      SerialIoUartDebugIoBase;

/** Offset 0x01EE - MemRefreshWaterMark
  Enable or Disable MemRefreshWaterMark in FSP - <b>0: Auto(Default)</b>, 1: Enable,
  2: Disable.
  0:Auto, 1:Enable, 2:Disable
**/
  UINT8                       PanicWm;

/** Offset 0x01EF - promoteMrcWarnings
  Enable or Disable MRC promote warning in FSP - 0: Disable, <b>1: Enable(Default)</b>.
  0:Disable, 1:Enable
**/
  UINT8                       promoteMrcWarnings;

/** Offset 0x01F0 - promoteWarnings
  <b>Enable(Default)</b> or Disable Promote warning in FSP - 0: Disable, <b>1: Enable(Default)</b>.
  0:Disable, 1:Enable
**/
  UINT8                       promoteWarnings;

/** Offset 0x01F1 - serialDebugMsgLvlTrainResults
  Enable or Disable Promote warning in FSP - <b>0:Disable(Default)</b>, 8:Enable.
  0:Disable, 8:Enable
**/
  UINT8                       serialDebugMsgLvlTrainResults;

/** Offset 0x01F2 - MemTest
  <b>Enable(Default)</b> or Disable memory test during normal boot in FSP - 0: Disable,
  <b>1: Enable(Default)</b>.
  0:Disable, 1:Enable
**/
  UINT8                       HwMemTest;

/** Offset 0x01F3
**/
  UINT8                       UnusedUpdSpace8;

/** Offset 0x01F4 - MemTest Loops
  Number of memory test loops during normal boot, set to 0 to run memtest infinitely
  in FSP - <b> 1 (Default)</b>.
  minimum = 0, maximum = 65535
**/
  UINT16                      MemTestLoops;

/** Offset 0x01F6
**/
  UINT8                       UnusedUpdSpace9[2];

/** Offset 0x01F8 - Adv MemTest Options
  This option is a bit mask[19:0]: All 0 = disabled: bit-0=XMATS8, bit-1=XMATS16,
  bit-2=Reserved, bit-3=Reserved, bit-4=WCMATS8, bit-5=WCMCH8, bit-6=Reserved, bit-7=MARCHCM64,
  bit-8=Reserved, bit-9=Reserved, bit-10=Reserved, bit-11=TWR, bit-12=DATARET, bit-13=MATS8TC1,
  bit-14=MATS8TC2, bit-15=MATS8TC3, bit-16=SK-HYNIX, bit-17=SAMSUNG, bit-18=MICRON-RMW,
  bit-19=SCRAM_X2 in FSP.
**/
  UINT32                      AdvMemTestOptions;

/** Offset 0x01FC - SmartTestKey
  Number of SmartTest Key
**/
  UINT32                      SmartTestKey;

/** Offset 0x0200 - Adv MemTest Pause
  Specify a pause delay between 0 to 256000 in units of usec. This is a time period
  where refresh is disabled between write and read sequences in FSP.
**/
  UINT32                      AdvMemTestCondPause;

/** Offset 0x0204 - Adv MemTest tREFI
  Specify tREFI (refresh rate) timing between 1850 to 7800 in nsec.
**/
  UINT16                      AdvMemTestCondTrefi;

/** Offset 0x0206 - Adv MemTest tWR
  Specify tWR timing between 48 to 96 in units of tCK in FSP.
**/
  UINT8                       AdvMemTestCondTwr;

/** Offset 0x0207
**/
  UINT8                       UnusedUpdSpace10;

/** Offset 0x0208 - Adv MemTest PMIC VDD Level
  Specify PMIC VDD level in units of mV in FSP.
**/
  UINT16                      AdvMemTestCondPmicVdd;

/** Offset 0x020A - Adv MemTest Conditions
  Auto = set test conditions based on test type; Manual = specify global test conditions;
  Disable = Do not apply test conditions in FSP - 0: Disable, <b>1: Auto(Default)</b>,
  2: Manual.
  0:Disable, 1:Auto, 2:Manual
**/
  UINT8                       AdvMemTestCondition;

/** Offset 0x020B - Adv MemTest Reset Failure Tracking List
  Enable/disable Reset of the Row Failure Tracking List after each Adv MemTest option.
  Useful for testing performance of multiple options in FSP - <b>0: Disable(Default)</b>,
  1: Enable.
  0:Disable, 1:Enable
**/
  UINT8                       AdvMemTestResetList;

/** Offset 0x020C - MemTest On Cold Fast Boot
  Enable - Enables memory test during cold fast boot. Disable - Disables this feature.
  Auto - Sets it to the MRC default setting; current default is Disable in FSP -
  <b>0:Disable(Default)</b>, 1:Enable.
  0:Disable, 1:Enable
**/
  UINT8                       MemTestOnColdFastBoot;

/** Offset 0x020D - Attempt Fast Boot
  Enable - Portions of memory reference code will be skipped when possible to increase
  boot speed on warm boots. Disable - Disables this feature. Auto - Sets it to the
  MRC default setting - 0:Disable, <b>1:Enable(Default)</b>.
  0:Disable, 1:Enable
**/
  UINT8                       AttemptFastBoot;

/** Offset 0x020E - MemTest On Cold Fast Boot
  Enable - Enables memory test during cold fast boot. Disable - Disables this feature.
  Auto - Sets it to the MRC default setting - 0:Disable, <b>1:Enable(Default)</b>.
  0:Disable, 1:Enable
**/
  UINT8                       AttemptFastBootCold;

/** Offset 0x020F - Multithreaded Memory Training
  Selects the number of processor sockets to train in parallel. - <b>0: All sockets
  operate in parallel(Default)</b>. 1: At any time only one socket is executing.
  2: At any time only two socket are executing. 4: At any time only four socket are
  executing in FSP.
  0:All Processor Sockets, 1:One Socket at a Time (No Multithreading), 2:Two Sockets
  at a Time, 4:Four Sockets at a Time
**/
  UINT8                       AllowedSocketsInParallel;

/** Offset 0x0210 - Auto-Reset on mem Training Error
  Enable/Disable Auto-Reset on mem Training Error in FSP - <b>0:Disable(Default)</b>,
  1:Enable.
  0:Disable, 1:Enable
**/
  UINT8                       AutoResetOnMemErr;

/** Offset 0x0211 - Rank Margin Tool
  Enable/Disable the Rank Margin Tool in FSP - <b>0:Disable(Default)</b>, 1:Enable.
  0:Disable, 1:Enable
**/
  UINT8                       EnableRMT;

/** Offset 0x0212 - RMT on Fast Cold Boot
  Enable/Disable the Rank Margin Tool on a Fast Cold Boot in FSP - <b>0:Disable(Default)</b>,
  1:Enable.
  0:Disable, 1:Enable
**/
  UINT8                       EnableRMTonFCB;

/** Offset 0x0213 - Execute Jedecinit before RMT
  Execute Jedecinit before Rank Margin Tool in FSP - <b>0:Disable(Default)</b>, 1:Enable.
  0:Disable, 1:Enable
**/
  UINT8                       JedecInitBeforeRMT;

/** Offset 0x0214 - Backside Margining
  Enable/Disable margin test on the register or buffer backside in FSP - <b>0:Disable(Default)</b>,
  1:Enable.
  0:Disable, 1:Enable
**/
  UINT8                       RMTBacksideMargining;

/** Offset 0x0215 - CmdAll
  Step size of CmdAll. Auto: 1. Supported values: 1,2,4,8 in FSP - <b>1:Auto(Default)</b>,
  2:2, 4:4, 8:8.
  1:Auto, 2:2, 4:4, 8:8
**/
  UINT8                       RMTCmdAll;

/** Offset 0x0216 - RMT Debug Messages
  Enable/Disable the RMT debug messages in FSP - <b>2:Disable(Default)</b>, 5:Enable.
  2:Disable, 5:Enable
**/
  UINT8                       RMTDebugMessages;

/** Offset 0x0217 - RMT Display Tables
  Enable/Disable displaying results as tables in FSP - 0:Disable, <b>1:Enable(Default)</b>.
  0:Disable, 1:Enable
**/
  UINT8                       RMTDisplayTables;

/** Offset 0x0218 - RMT Loop Count
  Exponential loop count for single rank test in FSP.
**/
  UINT8                       RMTLoopCount;

/** Offset 0x0219
**/
  UINT8                       UnusedUpdSpace11[3];

/** Offset 0x021C - Test Signal Bit Mask For RMT
  Test signal bit mask for RMT in FSP.
**/
  UINT32                      TestSignalBitMaskRMT;

/** Offset 0x0220 - RMT Per Bit Margining
  Enable/Disable Per Bit Margining in FSP - 0:Disable, <b>1:Enable(Default)</b>.
  0:Disable, 1:Enable
**/
  UINT8                       RMTPerBitMargining;

/** Offset 0x0221 - RMT Per CA Lane Margining
  Enable/Disable Per CA Lane Margining in FSP - 0:Disable, <b>1:Enable(Default)</b>.
  0:Disable, 1:Enable
**/
  UINT8                       RMTPerCaLaneMargining;

/** Offset 0x0222 - RMT Display Plots
  Enable/Disable the display of per-bit results as plots in FSP - 0:Disable, <b>1:Enable(Default)</b>.
  0:Disable, 1:Enable
**/
  UINT8                       RMTPerDisplayPlots;

/** Offset 0x0223 - RMT RxDqs
  Step size of RxDqs. Auto: 1. Supported values: 1,2,4,8 in FSP - <b>1:Auto,(Default)</b>
  2:2, 4:4, 8:8.
  1:Auto, 2:2, 4:4, 8:8
**/
  UINT8                       RMTRxDqs;

/** Offset 0x0224 - RMT RxVref
  Step size of RxVref. Auto: 1. Supported values: 1,2,4,8 in FSP - <b>1:Auto,(Default)</b>
  2:2, 4:4, 8:8.
  1:Auto, 2:2, 4:4, 8:8
**/
  UINT8                       RMTRxVref;

/** Offset 0x0225 - RMT Scrambler
  Enable or Disable scrambler during RMT test in FSP - 0:Disable, <b>1:Enable(Default)</b>.
  0:Disable, 1:Enable
**/
  UINT8                       RMTScrambler;

/** Offset 0x0226 - RMT Step Size Override
  Enable or Disable overriding the default step sizes in FSP - <b>0:Disable(Default)</b>,
  1:Enable.
  0:Disable, 1:Enable
**/
  UINT8                       RMTStepSizeOverride;

/** Offset 0x0227 - RMT TxDq
  Step size of TxDq. Auto: 1. Supported values: 1,2,4,8 in FSP - <b>1:Auto(Default)</b>,
  2:2, 4:4, 8:8.
  1:Auto, 2:2, 4:4, 8:8
**/
  UINT8                       RMTTxDq;

/** Offset 0x0228 - RMT TxVref
  Step size of TxVref. Auto: 1. Supported values: 1,2,4,8 in FSP - <b>1:Auto(Default)</b>,
  2:2, 4:4, 8:8.
  1:Auto, 2:2, 4:4, 8:8
**/
  UINT8                       RMTTxVref;

/** Offset 0x0229 - DDR5 ECS
  Enable/Disable DDR5 Error Check and Scrub (ECS) in FSP - 0:Disable, <b>1:Enable(Default)</b>.
  0:Disable, 1:Enable
**/
  UINT8                       ErrorCheckScrub;

/** Offset 0x022A - Enforce Memory POR
  0:Enforce POR - Enforces Plan Of Record restrictions for DDR5 frequency and voltage
  programming. <b>2:Disable  - Disables this feature and user is able to run at higher
  frequencies, specified in the DDR Frequency Limit field (limited by processor support)(Default)</b>.
  0:Enforce POR, 2:Disabled
**/
  UINT8                       EnforceDdrMemoryFreqPor;

/** Offset 0x022B - Enforce Population POR
  Enable Memory Population POR Enforcement.  Selecting Enforce Validated Populations
  will only allow populations that have been validated in FSP - <b>0:Disable(Default)</b>,
  1:Enable.
  0:Disable, 1:Enable
**/
  UINT8                       EnforcePopulationPor;

/** Offset 0x022C - DDR PPR Type
  Selects DDR Post Package Repair Type - 2: Hard PPR, <b>1: Soft PPR (Default)</b>,
  0: Disabled.
  0:Disabled, 2:Hard PPR, 1:Soft PPR
**/
  UINT8                       pprType;

/** Offset 0x022D - Force PPR On All Dram for UCE
  Force PPR on all dram for UCE in FSP - <b>0:Disable(Default)</b>, 1:Enable.
  0:Disabled, 1:Enabled
**/
  UINT8                       ForcePprOnAllDramUce;

/** Offset 0x022E
**/
  UINT8                       UnusedUpdSpace12[2];

/** Offset 0x0230 - pprAddrVariablePtr
  Pointer to array of PPR_ADDR_VARIABLE
**/
  UINT32                      PprAddrVariablePtr;

/** Offset 0x0234 - Allow Memory Test Correctable Error
  Enable - Logs error and allows correctable errors during memory test(DIMM Rank not
  removed). Disable - Logs error and removes DIMM Rank. Auto - Sets it to the MRC
  default setting; current default is Enable in FSP - 0:Disable, <b>1:Enable(Default)</b>.
  0:Disable, 1:Enable
**/
  UINT8                       allowCorrectableMemTestError;

/** Offset 0x0235 - Memory I/O Health Check
  Memory I/O Health Check - 0: Auto, 1: Manual, <b>2: Disable (Default)</b>. Select
  option Auto for default values. Manual for new values. Disable for disabling feature
  in FSP - 0:Auto, 1:Manual, <b>2:Disable(Default)</b>.
  0:Auto, 1:Manual, 2:Disable
**/
  UINT8                       MemIOHealthCheck;

/** Offset 0x0236 - RxDqsDelay Left Edge
  Offset for RxDqsDelay Left Edge in FSP.
**/
  UINT8                       CriticalRxDqsDelayLeftEdge;

/** Offset 0x0237 - RxDqsDelay Right Edge
  Offset for RxDqsDelay Right in FSP.
**/
  UINT8                       CriticalRxDqsDelayRightEdge;

/** Offset 0x0238 - RxVref Left Edge
  Offset for RxVref Left Edge in FSP.
**/
  UINT8                       CriticalRxVrefLeftEdge;

/** Offset 0x0239 - RxVref Right Edge
  Offset for RxVref Right Edge in FSP.
**/
  UINT8                       CriticalRxVrefRightEdge;

/** Offset 0x023A - TxDqDelay Left Edge
  Offset for TxDqDelay Left Edge in FSP.
**/
  UINT8                       CriticalTxDqDelayLeftEdge;

/** Offset 0x023B - TxDqDelay Right Edge
  Offset for TxDqDelay Right Edge in FSP.
**/
  UINT8                       CriticalTxDqDelayRightEdge;

/** Offset 0x023C - TxVref Left Edge
  Offset for TxDqDelay Left Edge in FSP.
**/
  UINT8                       CriticalTxVrefLeftEdge;

/** Offset 0x023D - TxVref Right Edge
  Offset for TxDqDelay Right Edge in FSP.
**/
  UINT8                       CriticalTxVrefRightEdge;

/** Offset 0x023E - Reboot On Critical Failure
  Reboot System on Critical failure to do Memory Training in FSP - 0:Disable, <b>1:Enable(Default)</b>.
  0:Disable, 1:Enable
**/
  UINT8                       ResetOnCriticalError;

/** Offset 0x023F - Number of Times to Reboot and Retrain
  Number of times to Reboot System on Critical failure to do Memory Training in FSP.
**/
  UINT8                       CriticalRetries;

/** Offset 0x0240 - Memory I/O Health Check Loop Count
  CPGC Test Loop Count for Memory IO Health Test
**/
  UINT8                       MemIOHealthLoopCount;

/** Offset 0x0241 - Telemetry RxDqsDelay Left Edge
  Offset for Telemetry RxDqsDelay Left Edge in FSP.
**/
  UINT8                       TelemetryRxDqsDelayLeftEdge;

/** Offset 0x0242 - Telemetry RxDqsDelay Right Edge
  Offset for Telemetry RxDqsDelay Right Edge in FSP.
**/
  UINT8                       TelemetryRxDqsDelayRightEdge;

/** Offset 0x0243 - Telemetry RxVref Left Edge
  Offset for Telemetry RxDqsDelay Left Edge in FSP.
**/
  UINT8                       TelemetryRxVrefLeftEdge;

/** Offset 0x0244 - Telemetry RxVref Right Edge
  Offset for Telemetry RxDqsDelay Right Edge in FSP.
**/
  UINT8                       TelemetryRxVrefRightEdge;

/** Offset 0x0245 - Telemetry TxDqDelay Left Edge
  Offset for Telemetry TxDqDelay Left Edge in FSP.
**/
  UINT8                       TelemetryTxDqDelayLeftEdge;

/** Offset 0x0246 - Telemetry TxDqDelay Right Edge
  Offset for Telemetry TxDqDelay Right Edge in FSP.
**/
  UINT8                       TelemetryTxDqDelayRightEdge;

/** Offset 0x0247 - Volatile Memory Mode
  Selects 1LM or 2LM mode for volatile memory. For 2LM memory mode, system will try
  to configure 2LM but if system is unable to configure 2LM, volatile memory mode
  will fall back to 1LM in FSP - <b>0: 1LM(Default)</b>, 1: 2LM, 2: MIX 1LM2LM.
  0: 1LM, 1: 2LM, 2: MIX 1LM2LM
**/
  UINT8                       volMemMode;

/** Offset 0x0248 - Dynamic ECC Mode Selection
  Enable/Disable Dynamic ECC Mode Selection in FSP - 0:Disable, <b>1:Enable(Default)</b>,
  2:Enable + Allow 128b ECC.
  0:Disable, 1:Enable, 2:Enable + Allow 128b ECC
**/
  UINT8                       DynamicEccModeSel;

/** Offset 0x0249 - Memory Patrol Scrub
  Memory Patrol Scrub - 0:Disable, 1:Enable during FspMemoryInit(), <b>2:Enable during
  NotifyPhase(EnumInitPhaseReadyToBoot) (Default)</b>.
  0:Disable, 1:Enable during FspMemoryInit(), 2:Enable during EnumInitPhaseReadyToBoot
**/
  UINT8                       PatrolScrub;

/** Offset 0x024A - Memory Patrol Scrub
  Memory Patrol Scrub - <b>0:Disable  (Default)</b>, 1:Enable at ReadyToBootFsp().
  0:Disable, 1:Enable Enable at ReadyToBootFsp()
**/
  UINT8                       PatrolScrubNotify;

/** Offset 0x024B - Patrol Scrub Interval
  Patrol Scrub Interval in FSP.
**/
  UINT8                       PatrolScrubDuration;

/** Offset 0x024C - Patrol Scrub Address Mode
  Selects the address mode between <b>1: System Physical Address (Default)</b>, 0:Reverse
  Address in FSP.
  0:Reverse Address, 1:System Physical Address
**/
  UINT8                       PatrolScrubAddrMode;

/** Offset 0x024D - Memory Thermal Throttling Mode
  Memory Configure Memory Thermal Throttling Mode in FSP - 0:Disable, <b>2:CLTT_ENABLE(Default)</b>,
  3:CLTT_PECI_ENABLE.
  0:Disable, 2:CLTT_ENABLE, 3:CLTT_PECI_ENABLE
**/
  UINT8                       thermalthrottlingsupport;

/** Offset 0x024E - Memory Correctable Error Threshold
  Memory Correctable Error Threshold (1 - 32767) used for sparing and leaky bucket in FSP.
**/
  UINT16                      spareErrTh;

/** Offset 0x0250 - WR CRC feature Control
  Enable/Disable Write CRC in FSP - <b>0:Disable(Default)</b>, 1:Enable.
  0:Disable, 1:Enable
**/
  UINT8                       WrCRC;

/** Offset 0x0251 - Adaptive Refresh Management Level
  Selects Adaptive Refresh Management(ARFM) Level when refresh management(RFM) is
  required. <b>0:Default - RAAIMT, RAAMMT, RAADEC(Default)</b>; 1:Level A - RAAIMT-A,
  RAAMMT-A, RAADEC-A; 2:Level B - RAAIMT-B, RAAMMT-B, RAADEC-B; 3:Level C - RAAIMT-C,
  RAAMMT-C, RAADEC-C
  0:Default - RAAIMT; RAAMMT; RAADEC, 1:Level A - RAAIMT-A; RAAMMT-A; RAADEC-A, 2:Level
  B - RAAIMT-B; RAAMMT-B; RAADEC-B, 3:Level C - RAAIMT-C; RAAMMT-C; RAADEC-C
**/
  UINT8                       AdaptiveRefreshMgmtLevel;

/** Offset 0x0252 - MEMHOT INPUT Control
  Enable/Disable MEMHOT INPUT in FSP - <b>0:Disable(Default)</b>, 1:Enable.
  0:Disable, 1:Enable
**/
  UINT8                       MemHotIn;

/** Offset 0x0253 - MEMHOT OUTPUT Mode
  MEMHOT OUTPUT Mode in FSP - 0:Disable, <b>1:Enable only temphi(Default)</b>, 2:Enable
  temphi & mid, 3:Enable temphi & mid & low.
  0:Disable, 1:Enable only temphi, 2:Enable temphi & mid, 3:Enable temphi & mid & low
**/
  UINT8                       MemhotOutputOnlyOpt;

/** Offset 0x0254 - CxlType3LegacyEn
  Enable or disable CXL type 3 device using CXL type 2 flow - <b>0:Disable(Default)</b>, 1:Enable.
  0:Disable, 1:Enable
**/
  UINT8                       DfxCxlType3LegacyEn;

/** Offset 0x0255 - DfxPmicSecureMode
  0:Disable Pmic Secure Mode, 1:Enable Pmic Secure Mode, <b>2:Auto Pmic Secure Mode(Default)</b>.
  0:Disable Pmic Secure Mode, 1:Enable Pmic Secure Mode, 2:Auto Pmic Secure Mode
**/
  UINT8                       DfxPmicSecureMode;

/** Offset 0x0256 - IIO PcieSubSystemMode0
  PcieSubSystemMode[MAX_SOCKET][0]: MAX_SOCKET=8, 0x00:IIO_MODE_GEN4_ONLY, 0x01:IIO_MODE_GEN5,
  0x02:IIO_MODE_CXL, 0x03:IIO_MODE_FORCE_CXL, <b>0x01:IIO_MODE_GEN5(Default)</b>
**/
  UINT8                       IioPcieSubSystemMode0[8];

/** Offset 0x025E - IIO PcieSubSystemMode1
  PcieSubSystemMode[MAX_SOCKET][0]: MAX_SOCKET=8, 0x00:IIO_MODE_GEN4_ONLY, 0x01:IIO_MODE_GEN5,
  0x02:IIO_MODE_CXL, 0x03:IIO_MODE_FORCE_CXL, <b>0x01:IIO_MODE_GEN5(Default)</b>
**/
  UINT8                       IioPcieSubSystemMode1[8];

/** Offset 0x0266 - IIO PcieSubSystemMode2
  PcieSubSystemMode[MAX_SOCKET][0]: MAX_SOCKET=8, 0x00:IIO_MODE_GEN4_ONLY, 0x01:IIO_MODE_GEN5,
  0x02:IIO_MODE_CXL, 0x03:IIO_MODE_FORCE_CXL, <b>0x01:IIO_MODE_GEN5(Default)</b>
**/
  UINT8                       IioPcieSubSystemMode2[8];

/** Offset 0x026E - IIO PcieSubSystemMode3
  PcieSubSystemMode[MAX_SOCKET][0]: MAX_SOCKET=8, 0x00:IIO_MODE_GEN4_ONLY, 0x01:IIO_MODE_GEN5,
  0x02:IIO_MODE_CXL, 0x03:IIO_MODE_FORCE_CXL, <b>0x01:IIO_MODE_GEN5(Default)</b>
**/
  UINT8                       IioPcieSubSystemMode3[8];

/** Offset 0x0276 - IIO PcieSubSystemMode4
  PcieSubSystemMode[MAX_SOCKET][0]: MAX_SOCKET=8, 0x00:IIO_MODE_GEN4_ONLY, 0x01:IIO_MODE_GEN5,
  0x02:IIO_MODE_CXL, 0x03:IIO_MODE_FORCE_CXL, <b>0x01:IIO_MODE_GEN5(Default)</b>
**/
  UINT8                       IioPcieSubSystemMode4[8];

/** Offset 0x027E - IIO PcieSubSystemMode5
  PcieSubSystemMode[MAX_SOCKET][0]: MAX_SOCKET=8, 0x00:IIO_MODE_GEN4_ONLY, 0x01:IIO_MODE_GEN5,
  0x02:IIO_MODE_CXL, 0x03:IIO_MODE_FORCE_CXL, <b>0x01:IIO_MODE_GEN5(Default)</b>
**/
  UINT8                       IioPcieSubSystemMode5[8];

/** Offset 0x0286 - IIO PcieSubSystemMode6
  PcieSubSystemMode[MAX_SOCKET][0]: MAX_SOCKET=8, 0x00:IIO_MODE_GEN4_ONLY, 0x01:IIO_MODE_GEN5,
  0x02:IIO_MODE_CXL, 0x03:IIO_MODE_FORCE_CXL, <b>0x01:IIO_MODE_GEN5(Default)</b>
**/
  UINT8                       IioPcieSubSystemMode6[8];

/** Offset 0x028E - CXL Header Bypass
  Enable/Disable the CXL header bypass in FSP - <b>0:Disabled(Default)</b>, 1:Enabled.
  0:Disable, 1:Enable
**/
  UINT8                       DfxCxlHeaderBypass;

/** Offset 0x028F - CXL Security Level
  CXL Security Level<br>\n
  0: Fully Trusted - CXL Device can get access on CXL.$ for host-attached and device
  attached memory ranges in the WB address space.<br>\n
  1: Partially Trusted - CXL Device can get access on CXL.$ for device attached memory
  ranges only;<br>\n
  2: Untrusted - All requests on CXL.$ will be aborted by the Host.<br>\n
  <b>3: Auto - Currently identical to Fully Trusted. (Default)</b>
  0:Fully Trusted, 1:Partially Trusted, 2:Untrusted, 3:Auto
**/
  UINT8                       DfxCxlSecLvl;

/** Offset 0x0290
**/
  UINT32                      DfxCxlDebugModePtr;

/** Offset 0x0294
**/
  UINT32                      DfxCxlDebugModeNumber;

/** Offset 0x0298 - Lock Chipset
  Lock or Unlock chipset in FSP - <b>0:Disabled(Default)</b>, 1:Enabled.
  0:Disable, 1:Enable
**/
  UINT8                       LockChipset;

/** Offset 0x0299 - MSR Lock Control
  Enable - MSR 3Ah and CSR 80h will be locked in FSP. Power Good reset is needed to
  remove lock bits - <b>0:Disabled(Default)</b>, 1:Enabled.
  0:Disable, 1:Enable
**/
  UINT8                       ProcessorMsrLockControl;

/** Offset 0x029A - DFX Enable
  When Enabled, Expose IIO DFX devices and other CPU devices like PMON in FSP - <b>0:Disabled(Default)</b>,
  1:Enabled.
  0:Disable, 1:Enable
**/
  UINT8                       DFXEnable;

/** Offset 0x029B - DFX Disable Bios Done
  When Enabled, suppresses notifying processor via MSR 151h that boot initialization
  is finished in FSP - <b>0:Disabled(Default)</b>, 1:Enabled.
  0:Disable, 1:Enable
**/
  UINT8                       DfxDisableBiosDone;

/** Offset 0x029C - Processor Package C State
  Package C State - 0: C0/C1 state, 1: C2 state, 2: C6(non Retention) state, 3: C6(Retention)
  state, 7: No Limit, <b>0xFF: Auto (Default)</b>
  0: C0/C1 state, 1: C2 state, 2: C6(non Retention) state, 3: C6(Retention) state,
  7: No Limit, 0xFF: Auto
**/
  UINT8                       CpuPmPackageCState;

/** Offset 0x029D - Enhanced Intel SpeedStep(R) Tech
  Enhanced Intel SpeedStep(R) Tech - <b>1: Enable(Default)</b>, 0: Disable.
  0:Disabled, 1:Enabled
**/
  UINT8                       CpuPmEistEnable;

/** Offset 0x029E - C1E
  C1E - <b>1: Enable(Default)</b>, 0: Disable.
**/
  UINT8                       CpuPmC1eEnable;

/** Offset 0x029F - Intel SST-PP
  Intel SST-PP Select allows user to choose level - <b>0xFF: Choose lowest level hardware
  supported(Default)</b>, 0: Level 0, 3: Level 3, 4: Level 4.
**/
  UINT8                       CpuPmIssTdpLevel;

/** Offset 0x02A0 - Activate SST-BF
  SST-BF - <b>0: Disable (Default)</b>, 1: Enabled.
  0:Disabled, 1:Enabled
**/
  UINT8                       CpuPmProcessorActivePbf;

/** Offset 0x02A1
**/
  UINT8                       UnusedUpdSpace13[7];

/** Offset 0x02A8 - Socket 0 Core Disable Bitmask
  Set bit(s) to Disable or clear bit(s) to Enable core(s) on Socket 0. NOTE: Any core
  disabled by user will force static SST-PP.
**/
  UINT64                      CpuPmCoreDisableBitmask0;

/** Offset 0x02B0 - Socket 1 Core Disable Bitmask
  Set bit(s) to Disable or clear bit(s) to Enable core(s) on Socket 1. NOTE: Any core
  disabled by user will force static SST-PP.
**/
  UINT64                      CpuPmCoreDisableBitmask1;

/** Offset 0x02B8
**/
  UINT8                       ReservedMemoryInitUpd[16];
} FSPM_CONFIG;

/** Fsp M UPD Configuration
**/
typedef struct {

/** Offset 0x0000
**/
  FSP_UPD_HEADER              FspUpdHeader;

/** Offset 0x0020
**/
  FSPM_ARCH_UPD               FspmArchUpd;

/** Offset 0x0040
**/
  FSPM_CONFIG                 FspmConfig;

/** Offset 0x02C8
**/
  UINT8                       UnusedUpdSpace14[6];

/** Offset 0x02CE
**/
  UINT16                      UpdTerminator;
} FSPM_UPD;

#pragma pack()

#endif