summaryrefslogtreecommitdiff
path: root/src/vendorcode/intel/fsp/fsp2_0/glk/FspsUpd.h
blob: 97a40b6558a7d79dd2d912f42d3f8d87069f9acc (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
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
/** @file

Copyright (c) 2019, 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 __FSPSUPD_H__
#define __FSPSUPD_H__

#include <FspUpd.h>

#pragma pack(push, 1)


/** Fsp S Configuration
**/
typedef struct {

/** Offset 0x0020 - ActiveProcessorCores
  Number of active cores. 0:Disable(Default), 1:Enable.
**/
  UINT8                       ActiveProcessorCores;

/** Offset 0x0021 - Disable Core1
  Disable/Enable Core1. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       DisableCore1;

/** Offset 0x0022 - Disable Core2
  Disable/Enable Core2. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       DisableCore2;

/** Offset 0x0023 - Disable Core3
  Disable/Enable Core3. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       DisableCore3;

/** Offset 0x0024 - VMX Enable
  Enable or Disable VMX. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       VmxEnable;

/** Offset 0x0025 - Depricated UPD
   Depricated UPD
**/
  UINT8                       Reserved;

/** Offset 0x0026 - Enable Processor Trace
  Enable or Disable Processor Trace feature.  0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       ProcessorTraceEnable;

/** Offset 0x0027 - Eist
  Enable or Disable Intel SpeedStep Technology. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       Eist;

/** Offset 0x0028 - Boot PState
  Boot PState with HFM or LFM. 0:HFM(Default), 1:LFM.
**/
  UINT8                       BootPState;

/** Offset 0x0029 - CPU power states (C-states)
  Enable or Disable CPU power states (C-states). 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       EnableCx;

/** Offset 0x002A - Enhanced C-states
  Enable or Disable Enhanced C-states. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       C1e;

/** Offset 0x002B - Bi-Directional PROCHOT#
  Enable or Disable Bi-Directional PROCHOT#. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       BiProcHot;

/** Offset 0x002C - Max Pkg Cstate
  Max Pkg Cstate. 0:PkgC0C1, 1:PkgC2, 2:PkgC3(Default), 3:PkgC6, 4:PkgC7, 5:PkgC7s,
  6:PkgC8, 7:PkgC9, 8:PkgC10, 9:PkgCMax, 254:PkgCpuDefault, 255:PkgAuto.
**/
  UINT8                       PkgCStateLimit;

/** Offset 0x002D - C-State auto-demotion
  C-State Auto Demotion. 0:Disable(Default) C1 and C3 Auto-demotion, 1:Enable C3/C6/C7
  Auto-demotion to C1, 2:Enable C6/C7 Auto-demotion to C3, 3:Enable C6/C7 Auto-demotion
  to C1 and C3.
**/
  UINT8                       CStateAutoDemotion;

/** Offset 0x002E - C-State un-demotion
  C-State un-demotion. 0:Disable(Default) C1 and C3 Un-demotion, 1:Enable C1 Un-demotion,
  2:Enable C3 Un-demotion, 3:Enable C1 and C3 Un-demotion.
**/
  UINT8                       CStateUnDemotion;

/** Offset 0x002F - Max Core C-State
  Max Core C-State. 0:Unlimited, 1:C1, 2:C3, 3:C6, 4:C7, 5:C8, 6:C9, 7:C10, 8:CCx(Default).
**/
  UINT8                       MaxCoreCState;

/** Offset 0x0030 - Package C-State Demotion
  Enable or Disable Package Cstate Demotion. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       PkgCStateDemotion;

/** Offset 0x0031 - Package C-State Un-demotion
  Enable or Disable Package Cstate UnDemotion. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       PkgCStateUnDemotion;

/** Offset 0x0032 - Turbo Mode
  Enable or Disable long duration Turbo Mode. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       TurboMode;

/** Offset 0x0033 - SC HDA Verb Table Entry Number
  Number of Entries in Verb Table. 0(Default).
**/
  UINT8                       HdaVerbTableEntryNum;

/** Offset 0x0034 - SC HDA Verb Table Pointer
  Pointer to Array of pointers to Verb Table. 0x00000000(Default).
**/
  UINT32                      HdaVerbTablePtr;

/** Offset 0x0038 - Enable/Disable P2SB device hidden.
  Enable/Disable P2SB device hidden. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       P2sbUnhide;

/** Offset 0x0039 - IPU Enable/Disable
  Enable/Disable IPU Device. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       IpuEnReserved;

/** Offset 0x003A - IMGU ACPI mode selection
  0:Auto, 1:IGFX Child device(Default), 2:ACPI device.
  0:Disable, 1:IGFX Child device, 2:ACPI device
**/
  UINT8                       IpuAcpiModeReserved;

/** Offset 0x003B - Enable ForceWake
  Enable/disable ForceWake Models. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       ForceWake;

/** Offset 0x003C - GttMmAdr
  GttMmAdr structure for initialization. 0xBF000000(Default).
**/
  UINT32                      GttMmAdr;

/** Offset 0x0040 - GmAdr
  GmAdr structure for initialization. 0xA0000000(Default).
**/
  UINT32                      GmAdr;

/** Offset 0x0044 - Enable PavpLock
  Enable/disable PavpLock. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       PavpLock;

/** Offset 0x0045 - Enable GraphicsFreqModify
  Enable/disable GraphicsFreqModify. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       GraphicsFreqModify;

/** Offset 0x0046 - Enable GraphicsFreqReq
  Enable/disable GraphicsFreqReq. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       GraphicsFreqReq;

/** Offset 0x0047 - Enable GraphicsVideoFreq
  Enable/disable GraphicsVideoFreq. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       GraphicsVideoFreq;

/** Offset 0x0048 - Enable PmLock
  Enable/disable PmLock. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       PmLock;

/** Offset 0x0049 - Enable DopClockGating
  Enable/disable DopClockGating. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       DopClockGating;

/** Offset 0x004A - Enable UnsolicitedAttackOverride
  Enable/disable UnsolicitedAttackOverride. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       UnsolicitedAttackOverride;

/** Offset 0x004B - Enable WOPCMSupport
  Enable/disable WOPCMSupport. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       WOPCMSupport;

/** Offset 0x004C - Enable WOPCMSize
  Enable/disable WOPCMSize. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       WOPCMSize;

/** Offset 0x004D - Enable PowerGating
  Enable/disable PowerGating. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       PowerGating;

/** Offset 0x004E - Enable UnitLevelClockGating
  Enable/disable UnitLevelClockGating. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       UnitLevelClockGating;

/** Offset 0x004F - Enable FastBoot
  Enable/disable FastBoot. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       FastBoot;

/** Offset 0x0050 - Enable DynSR
  Enable/disable DynSR. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       DynSR;

/** Offset 0x0051 - Enable SaIpuEnable
  Enable/disable SaIpuEnable. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       SaIpuEnableReserved;

/** Offset 0x0052 - GT PM Support
  Enable/Disable GT power management support. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       PmSupport;

/** Offset 0x0053 - RC6(Render Standby)
  Enable/Disable render standby support. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       EnableRenderStandby;

/** Offset 0x0054 - BMP Logo Data Size
  BMP logo data buffer size. 0x00000000(Default).
**/
  UINT32                      LogoSize;

/** Offset 0x0058 - BMP Logo Data Pointer
  BMP logo data pointer to a BMP format buffer. 0x00000000(Default).
**/
  UINT32                      LogoPtr;

/** Offset 0x005C - Graphics Configuration Data Pointer
  Graphics configuration data used for initialization. 0x00000000(Default).
**/
  UINT32                      GraphicsConfigPtr;

/** Offset 0x0060 - PAVP Enable
  Enable/Disable Protected Audio Visual Path (PAVP). 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       PavpEnable;

/** Offset 0x0061 - PAVP PR3
  Enable/Disable PAVP PR3 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       PavpPr3;

/** Offset 0x0062 - CdClock Frequency selection
  0:144MHz, 1:288MHz, 2:384MHz, 3:576MHz, 4:624MHz(Default).
  0: 144 MHz, 1: 288 MHz, 2: 384 MHz, 3: 576 MHz, 4: 624 MHz
**/
  UINT8                       CdClock;

/** Offset 0x0063 - Enable/Disable PeiGraphicsPeimInit
  Enable/Disable PeiGraphicsPeimInit 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       PeiGraphicsPeimInit;

/** Offset 0x0064 - Write Protection Support
  Enable/disable Write Protection. 0:Disable, 1:Enable(Default).
**/
  UINT8                       WriteProtectionEnable[5];

/** Offset 0x0069 - Read Protection Support
  Enable/disable Read Protection. 0:Disable, 1:Enable(Default).
**/
  UINT8                       ReadProtectionEnable[5];

/** Offset 0x006E - Protected Range Limitation
  The address of the upper limit of protection, 0x0FFFh(Default).
**/
  UINT16                      ProtectedRangeLimit[5];

/** Offset 0x0078 - Protected Range Base
  The base address of the upper limit of protection. 0x0000(Default).
**/
  UINT16                      ProtectedRangeBase[5];

/** Offset 0x0082 - Enable SC Gaussian Mixture Models
  Enable/disable SC Gaussian Mixture Models. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       Gmm;

/** Offset 0x0083 - GMM Clock Gating - PGCB Clock Trunk
  Enable/disable PGCB Clock Trunk. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       ClkGatingPgcbClkTrunk;

/** Offset 0x0084 - GMM Clock Gating  - Sideband
  Enable/disable Sideband. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       ClkGatingSb;

/** Offset 0x0085 - GMM Clock Gating  - Sideband
  Enable/disable Sideband. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       ClkGatingSbClkTrunk;

/** Offset 0x0086 - GMM Clock Gating  - Sideband Clock Partition
  Enable/disable Sideband Clock Partition. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       ClkGatingSbClkPartition;

/** Offset 0x0087 - GMM Clock Gating  - Core
  Enable/disable Core. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       ClkGatingCore;

/** Offset 0x0088 - GMM Clock Gating  - DMA
  Enable/disable DMA. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       ClkGatingDma;

/** Offset 0x0089 - GMM Clock Gating  - Register Access
  Enable/disable Register Access. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       ClkGatingRegAccess;

/** Offset 0x008A - GMM Clock Gating  - Host
  Enable/disable Host. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       ClkGatingHost;

/** Offset 0x008B - GMM Clock Gating  - Partition
  Enable/disable Partition. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       ClkGatingPartition;

/** Offset 0x008C - Clock Gating  - Trunk
  Enable/disable Trunk. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       ClkGatingTrunk;

/** Offset 0x008D - HD Audio Support
  Enable/disable HDA Audio Feature. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       HdaEnable;

/** Offset 0x008E - HD Audio DSP Support
  Enable/disable HDA Audio DSP Feature. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       DspEnable;

/** Offset 0x008F - Azalia wake-on-ring
  Enable/disable Azalia wake-on-ring. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       Pme;

/** Offset 0x0090 - HD-Audio I/O Buffer Ownership
  Set HD-Audio I/O Buffer Ownership. 0:HD-Audio link owns all the I/O buffers(Default)
  0:HD-Audio link owns all the I/O buffers, 1:HD-Audio link owns 4 I/O buffers and
  I2S port owns 4 I/O buffers, 3:I2S port owns all the I/O buffers
**/
  UINT8                       HdAudioIoBufferOwnership;

/** Offset 0x0091 - HD-Audio I/O Buffer Voltage
  HD-Audio I/O Buffer Voltage Mode Selectiton . 0:3.3V(Default), 1:1.8V.
  0: 3.3V, 1: 1.8V
**/
  UINT8                       HdAudioIoBufferVoltage;

/** Offset 0x0092 - HD-Audio Virtual Channel Type
  HD-Audio Virtual Channel Type Selectiton. 0:VC0(Default), 1:VC1.
  0: VC0, 1: VC1
**/
  UINT8                       HdAudioVcType;

/** Offset 0x0093 - HD-Audio Link Frequency
  HD-Audio Virtual Channel Type Selectiton. 0:6MHz(Default), 1:12MHz, 2:24MHz, 3:48MHz,
  4:96MHz, 5:Invalid.
  0: 6MHz, 1: 12MHz, 2: 24MHz, 3: 48MHz, 4: 96MHz, 5: Invalid
**/
  UINT8                       HdAudioLinkFrequency;

/** Offset 0x0094 - HD-Audio iDisp-Link Frequency
  HD-Audio iDisp-Link Frequency Selectiton. 0:6MHz(Default), 1:12MHz, 2:24MHz, 3:48MHz,
  4:96MHz, 5:Invalid.
  0: 6MHz, 1: 12MHz, 2: 24MHz, 3: 48MHz, 4: 96MHz, 5: Invalid
**/
  UINT8                       HdAudioIDispLinkFrequency;

/** Offset 0x0095 - HD-Audio iDisp-Link T-Mode
  HD-Audio iDisp-Link T-Mode Selectiton. 0:2T(Default), 1:1T.
  0: 2T, 1: 1T
**/
  UINT8                       HdAudioIDispLinkTmode;

/** Offset 0x0096 - HD-Audio Disp DMIC
  HD-Audio Disp DMIC Selectiton. 0:Disable, 1:2ch array(Default), 2:4ch array.
  0: Disable, 1: 2ch array, 2: 4ch array
**/
  UINT8                       DspEndpointDmic;

/** Offset 0x0097 - HD-Audio Bluetooth
  Enable/Disable HD-Audio bluetooth. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       DspEndpointBluetooth;

/** Offset 0x0098 - HD-Audio I2S SHK
  Enable/Disable HD-Audio I2S SHK. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       DspEndpointI2sSkp;

/** Offset 0x0099 - HD-Audio I2S HP
  Enable/Disable HD-Audio I2S HP. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       DspEndpointI2sHp;

/** Offset 0x009A - HD-Audio Controller Power Gating
  Enable/Disable HD-Audio Controller Power Gating. This option is deprecated.
  $EN_DIS
**/
  UINT8                       AudioCtlPwrGate;

/** Offset 0x009B - HD-Audio ADSP Power Gating
  Enable/Disable HD-Audio ADSP Power Gating. This option is deprecated.
  $EN_DIS
**/
  UINT8                       AudioDspPwrGate;

/** Offset 0x009C - HD-Audio CSME Memory Transfers
  Enable/Disable HD-Audio CSME Memory Transfers. 0:VC0(Default), 1:VC2.
  0: VC0, 1: VC2
**/
  UINT8                       Mmt;

/** Offset 0x009D - HD-Audio Host Memory Transfers
  Enable/Disable HD-Audio Host Memory Transfers. 0:VC0(Default), 1:VC2.
  0: VC0, 1: VC2
**/
  UINT8                       Hmt;

/** Offset 0x009E - HD-Audio Power Gating
  Enable/Disable HD-Audio BIOS Configuration Lock Down. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       HDAudioPwrGate;

/** Offset 0x009F - HD-Audio Clock Gatingn
  Enable/Disable HD-Audio Clock Gating. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       HDAudioClkGate;

/** Offset 0x00A0 - Bitmask of DSP Feature
  Set Bitmask of HD-Audio DSP Feature. 0x00000000(Default).
  [BIT0] - WoV, [BIT1] - BT Sideband, [BIT2] - Codec VAD, [BIT5] - BT Intel HFP, [BIT6]
  - BT Intel A2DP, [BIT7] - DSP based speech pre-processing disabled, [BIT8] - 0:
  Intel WoV, 1: Windows Voice Activation
**/
  UINT32                      DspFeatureMask;

/** Offset 0x00A4 - Bitmask of supported DSP Post-Processing Modules
  Set HD-Audio Bitmask of supported DSP Post-Processing Modules. 0x00000000(Default).
  [BIT0] - WoV, [BIT1] - BT Sideband, [BIT2] - Codec VAD, [BIT5] - BT Intel HFP, [BIT6]
  - BT Intel A2DP, [BIT7] - DSP based speech pre-processing disabled, [BIT8] - 0:
  Intel WoV, 1: Windows Voice Activation
**/
  UINT32                      DspPpModuleMask;

/** Offset 0x00A8 - HD-Audio BIOS Configuration Lock Down
  Enable/Disable HD-Audio BIOS Configuration Lock Down. 0:Disable(Default), 1:Enable.
  This option is deprecated
  $EN_DIS
**/
  UINT8                       BiosCfgLockDown;

/** Offset 0x00A9 - Enable High Precision Timer
  Enable/Disable Hpet. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       Hpet;

/** Offset 0x00AA - Hpet Valid BDF Value
  Enable/Disable Hpet Valid BDF Value. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       HpetBdfValid;

/** Offset 0x00AB - Bus Number of Hpet
  Completer ID of Bus Number of Hpet. Default = 0xFA(Default).
**/
  UINT8                       HpetBusNumber;

/** Offset 0x00AC - Device Number of Hpet
  Completer ID of Device Number of Hpet. 0x1F(Default).
**/
  UINT8                       HpetDeviceNumber;

/** Offset 0x00AD - Function Number of Hpet
  Completer ID of Function Number of Hpet. 0x00(Default).
**/
  UINT8                       HpetFunctionNumber;

/** Offset 0x00AE - IoApic Valid BDF Value
  Enable/Disable IoApic Valid BDF Value. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       IoApicBdfValid;

/** Offset 0x00AF - Bus Number of IoApic
  Completer ID of Bus Number of IoApic. 0xFA(Default).
**/
  UINT8                       IoApicBusNumber;

/** Offset 0x00B0 - Device Number of IoApic
  Completer ID of Device Number of IoApic. 0x0F(Default).
**/
  UINT8                       IoApicDeviceNumber;

/** Offset 0x00B1 - Function Number of IoApic
  Completer ID of Function Number of IoApic. 0x00(Default).
**/
  UINT8                       IoApicFunctionNumber;

/** Offset 0x00B2 - IOAPIC Entry 24-119
  Enable/Disable IOAPIC Entry 24-119. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       IoApicEntry24_119;

/** Offset 0x00B3 - IO APIC ID
  This member determines IOAPIC ID. 0x01(Default).
**/
  UINT8                       IoApicId;

/** Offset 0x00B4 - IoApic Range
  Define address bits 19:12 for the IOxAPIC range. 0x00(Default).
**/
  UINT8                       IoApicRangeSelect;

/** Offset 0x00B5 - ISH Controller
  Enable/Disable ISH Controller. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       IshEnable;

/** Offset 0x00B6 - BIOS Interface Lock Down
  Enable/Disable BIOS Interface Lock Down bit to prevent writes to the Backup Control
  Register. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       BiosInterface;

/** Offset 0x00B7 - Bios LockDown Enable
  Enable the BIOS Lock Enable (BLE) feature and set EISS bit. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       BiosLock;

/** Offset 0x00B8 - SPI EISS Status
  Enable/Disable InSMM.STS (EISS) in SPI. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       SpiEiss;

/** Offset 0x00B9 - BiosLock SWSMI Number
  This member describes the SwSmi value for Bios Lock. 0xA9(Default).
**/
  UINT8                       BiosLockSwSmiNumber;

/** Offset 0x00BA - LPSS IOSF PMCTL S0ix Enable
  Enable/Disable LPSS IOSF Bridge PMCTL Register S0ix Bits. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       LPSS_S0ixEnable;

/** Offset 0x00BB
**/
  UINT8                       UnusedUpdSpace0[1];

/** Offset 0x00BC - LPSS I2C Clock Gating Configuration
  Enable/Disable LPSS I2C Clock Gating. 0:Disable, 1:Enable(Default).
**/
  UINT8                       I2cClkGateCfg[8];

/** Offset 0x00C4 - PSS HSUART Clock Gating Configuration
  Enable/Disable LPSS HSUART Clock Gating. 0:Disable, 1:Enable(Default).
**/
  UINT8                       HsuartClkGateCfg[4];

/** Offset 0x00C8 - LPSS SPI Clock Gating Configuration
  Enable/Disable LPSS SPI Clock Gating. 0:Disable, 1:Enable(Default).
**/
  UINT8                       SpiClkGateCfg[3];

/** Offset 0x00CB - I2C Device 0
  Enable/Disable I2C Device 0. 0:Disabled, 1:PCI Mode(Default), 2:ACPI Mode.
  0: Disabled, 1: PCI Mode, 2: ACPI Mode
**/
  UINT8                       I2c0Enable;

/** Offset 0x00CC - I2C Device 1
  Enable/Disable I2C Device 1. 0:Disabled, 1:PCI Mode(Default), 2:ACPI Mode.
  0: Disabled, 1: PCI Mode, 2: ACPI Mode
**/
  UINT8                       I2c1Enable;

/** Offset 0x00CD - I2C Device 2
  Enable/Disable I2C Device 2. 0:Disabled, 1:PCI Mode(Default), 2:ACPI Mode.
  0: Disabled, 1: PCI Mode, 2: ACPI Mode
**/
  UINT8                       I2c2Enable;

/** Offset 0x00CE - I2C Device 3
  Enable/Disable I2C Device 3. 0:Disabled, 1:PCI Mode(Default), 2:ACPI Mode.
  0: Disabled, 1: PCI Mode, 2: ACPI Mode
**/
  UINT8                       I2c3Enable;

/** Offset 0x00CF - I2C Device 4
  Enable/Disable I2C Device 4. 0:Disabled, 1:PCI Mode(Default), 2:ACPI Mode.
  0: Disabled, 1: PCI Mode, 2: ACPI Mode
**/
  UINT8                       I2c4Enable;

/** Offset 0x00D0 - I2C Device 5
  Enable/Disable I2C Device 5. 0:Disabled, 1:PCI Mode(Default), 2:ACPI Mode.
  0: Disabled, 1: PCI Mode, 2: ACPI Mode
**/
  UINT8                       I2c5Enable;

/** Offset 0x00D1 - I2C Device 6
  Enable/Disable I2C Device 6. 0:Disabled, 1:PCI Mode(Default), 2:ACPI Mode.
  0: Disabled, 1: PCI Mode, 2: ACPI Mode
**/
  UINT8                       I2c6Enable;

/** Offset 0x00D2 - I2C Device 7
  Enable/Disable I2C Device 7. 0:Disabled, 1:PCI Mode(Default), 2:ACPI Mode.
  0: Disabled, 1: PCI Mode, 2: ACPI Mode
**/
  UINT8                       I2c7Enable;

/** Offset 0x00D3 - UART Device 0
  Enable/Disable UART Device 0. 0:Disabled, 1:PCI Mode(Default), 2:ACPI Mode.
  0: Disabled, 1: PCI Mode, 2: ACPI Mode
**/
  UINT8                       Hsuart0Enable;

/** Offset 0x00D4 - UART Device 1
  Enable/Disable UART Device 1. 0:Disabled, 1:PCI Mode(Default), 2:ACPI Mode.
  0: Disabled, 1: PCI Mode, 2: ACPI Mode
**/
  UINT8                       Hsuart1Enable;

/** Offset 0x00D5 - UART Device 2
  Enable/Disable UART Device 2. 0:Disabled, 1:PCI Mode(Default), 2:ACPI Mode.
  0: Disabled, 1: PCI Mode, 2: ACPI Mode
**/
  UINT8                       Hsuart2Enable;

/** Offset 0x00D6 - UART Device 3
  Enable/Disable UART Device 3. 0:Disabled, 1:PCI Mode(Default), 2:ACPI Mode.
  0: Disabled, 1: PCI Mode, 2: ACPI Mode
**/
  UINT8                       Hsuart3Enable;

/** Offset 0x00D7 - SPI UART Device 0
  Enable/Disable SPI Device 0. 0:Disabled, 1:PCI Mode(Default), 2:ACPI Mode.
  0: Disabled, 1: PCI Mode, 2: ACPI Mode
**/
  UINT8                       Spi0Enable;

/** Offset 0x00D8 - SPI UART Device 1
  Enable/Disable SPI Device 1. 0:Disabled, 1:PCI Mode(Default), 2:ACPI Mode.
  0: Disabled, 1: PCI Mode, 2: ACPI Mode
**/
  UINT8                       Spi1Enable;

/** Offset 0x00D9 - SPI UART Device 2
  Enable/Disable SPI Device 2. 0:Disabled, 1:PCI Mode(Default), 2:ACPI Mode.
  0: Disabled, 1: PCI Mode, 2: ACPI Mode
**/
  UINT8                       Spi2Enable;

/** Offset 0x00DA - OS Debug Feature
  Enable/Disable OS Debug Feature. 0:Disable(Default), 1: Enable.
  $EN_DIS
**/
  UINT8                       OsDbgEnable;

/** Offset 0x00DB - DCI Feature
  Enable/Disable DCI Feature. 0:Disable(Default), 1: Enable.
  $EN_DIS
**/
  UINT8                       DciEn;

/** Offset 0x00DC - UART Debug Base Address
  UART Debug Base Address. 0x00000000(Default).
**/
  UINT32                      Uart2KernelDebugBaseAddress;

/** Offset 0x00E0 - Enable PCIE Clock Gating
  Enable/disable PCIE Clock Gating. 0:Enable, 1:Disable(Default).
  0:Enable, 1:Disable
**/
  UINT8                       PcieClockGatingDisabled;

/** Offset 0x00E1 - Enable PCIE Root Port 8xh Decode
  Enable/disable PCIE Root Port 8xh Decode. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       PcieRootPort8xhDecode;

/** Offset 0x00E2 - PCIE 8xh Decode Port Index
  PCIE 8xh Decode Port Index. 0x00(Default).
**/
  UINT8                       Pcie8xhDecodePortIndex;

/** Offset 0x00E3 - Enable PCIE Root Port Peer Memory Write
  Enable/disable PCIE root port peer memory write. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       PcieRootPortPeerMemoryWriteEnable;

/** Offset 0x00E4 - PCIE SWSMI Number
  This member describes the SwSmi value for override PCIe ASPM table. 0xAA(Default).
**/
  UINT8                       PcieAspmSwSmiNumber;

/** Offset 0x00E5
**/
  UINT8                       UnusedUpdSpace1[1];

/** Offset 0x00E6 - PCI Express Root Port
  Control the PCI Express Root Port . 0:Disable, 1:Enable(Default).
**/
  UINT8                       PcieRootPortEn[6];

/** Offset 0x00EC - Hide PCIE Root Port Configuration Space
  Enable/disable Hide PCIE Root Port Configuration Space. 0:Disable(Default), 1:Enable.
**/
  UINT8                       PcieRpHide[6];

/** Offset 0x00F2 - PCIE Root Port Slot Implement
  Enable/disable PCIE Root Port Slot Implement. 0:Disable, 1:Enable(Default).
**/
  UINT8                       PcieRpSlotImplemented[6];

/** Offset 0x00F8 - Hot Plug
  PCI Express Hot Plug Enable/Disable. 0:Disable, 1:Enable(Default).
**/
  UINT8                       PcieRpHotPlug[6];

/** Offset 0x00FE - PCIE PM SCI
  Enable/Disable PCI Express PME SCI. 0:Disable(Default), 1:Enable.
**/
  UINT8                       PcieRpPmSci[6];

/** Offset 0x0104 - PCIE Root Port Extended Sync
  Enable/Disable PCIE Root Port Extended Sync. 0:Disable, 1:Enable(Default).
**/
  UINT8                       PcieRpExtSync[6];

/** Offset 0x010A - Transmitter Half Swing
  Transmitter Half Swing Enable/Disable. 0:Disable, 1:Enable(Default).
**/
  UINT8                       PcieRpTransmitterHalfSwing[6];

/** Offset 0x0110 - ACS
  Enable/Disable Access Control Services Extended Capability. 0:Disable, 1:Enable(Default).
**/
  UINT8                       PcieRpAcsEnabled[6];

/** Offset 0x0116 - Clock Request Support
  Enable/Disable CLKREQ# Support. 0:Disable, 1:Enable(Default).
**/
  UINT8                       PcieRpClkReqSupported[6];

/** Offset 0x011C - Configure CLKREQ Number
  Configure Root Port CLKREQ Number if CLKREQ is supported. Default=0x04, 0x05, 0x00,
  0x01, 0x02, 0x03.
**/
  UINT8                       PcieRpClkReqNumber[6];

/** Offset 0x0122 - CLKREQ# Detection
  Enable/Disable CLKREQ# Detection Probe. 0: Disable(Default), 1: Enable.
**/
  UINT8                       PcieRpClkReqDetect[6];

/** Offset 0x0128 - Advanced Error Reporting
  Enable/Disable Advanced Error Reporting. 0: Disable(Default), 1: Enable.
**/
  UINT8                       AdvancedErrorReporting[6];

/** Offset 0x012E - PME Interrupt
  Enable/Disable PME Interrupt. 0: Disable(Default), 1: Enable.
**/
  UINT8                       PmeInterrupt[6];

/** Offset 0x0134 -   URR
  PCI Express Unsupported Request Reporting Enable/Disable. 0:Disable(Default), 1:Enable.
**/
  UINT8                       UnsupportedRequestReport[6];

/** Offset 0x013A -   FER
  PCI Express Device Fatal Error Reporting Enable/Disable. 0:Disable(Default), 1:Enable.
**/
  UINT8                       FatalErrorReport[6];

/** Offset 0x0140 -   NFER
  PCI Express Device Non-Fatal Error Reporting Enable/Disable. 0:Disable(Default), 1:Enable.
**/
  UINT8                       NoFatalErrorReport[6];

/** Offset 0x0146 -   CER
  PCI Express Device Correctable Error Reporting Enable/Disable. 0:Disable(Default), 1:Enable.
**/
  UINT8                       CorrectableErrorReport[6];

/** Offset 0x014C -   SEFE
  Root PCI Express System Error on Fatal Error Enable/Disable. 0:Disable(Default), 1:Enable.
**/
  UINT8                       SystemErrorOnFatalError[6];

/** Offset 0x0152 -   SENFE
  Root PCI Express System Error on Non-Fatal Error Enable/Disable. 0:Disable(Default), 1:Enable.
**/
  UINT8                       SystemErrorOnNonFatalError[6];

/** Offset 0x0158 -   SECE
  Root PCI Express System Error on Correctable Error Enable/Disable. 0:Disable(Default), 1:Enable.
**/
  UINT8                       SystemErrorOnCorrectableError[6];

/** Offset 0x015E - PCIe Speed
  Configure PCIe Speed. 0:Auto(Default), 1:Gen1, 2:Gen2, 3:Gen3.
**/
  UINT8                       PcieRpSpeed[6];

/** Offset 0x0164 - Physical Slot Number
  Physical Slot Number for PCIE Root Port. Default=0x00, 0x01, 0x02, 0x03, 0x04, 0x05.
**/
  UINT8                       PhysicalSlotNumber[6];

/** Offset 0x016A - CTO
  Enable/Disable PCI Express Completion Timer TO . 0:Disable(Default), 1:Enable.
**/
  UINT8                       PcieRpCompletionTimeout[6];

/** Offset 0x0170 - PTM Support
  Enable/Disable PTM Support. 0:Disable(Default), 1:Enable.
**/
  UINT8                       PtmEnable[6];

/** Offset 0x0176 - ASPM
  PCI Express Active State Power Management settings. 0:Disable, 1:L0s, 2:L1, 3:L0sL1,
  4:Auto(Default).
**/
  UINT8                       PcieRpAspm[6];

/** Offset 0x017C - L1 Substates
  PCI Express L1 Substates settings. 0:Disable, 1:L1.1, 2:L1.2, 3:L1.1 & L1.2(Default).
**/
  UINT8                       PcieRpL1Substates[6];

/** Offset 0x0182 - PCH PCIe LTR
  PCH PCIE Latency Reporting Enable/Disable. 0:Disable, 1:Enable(Default).
**/
  UINT8                       PcieRpLtrEnable[6];

/** Offset 0x0188 - PCIE LTR Lock
  PCIE LTR Configuration Lock. 0:Disable(Default), 1:Enable.
**/
  UINT8                       PcieRpLtrConfigLock[6];

/** Offset 0x018E - PME_B0_S5 Disable bit
  PME_B0_S5_DIS bit in the General PM Configuration B (GEN_PMCON_B) register. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       PmeB0S5Dis;

/** Offset 0x018F - PCI Clock Run
  This member describes whether or not the PCI ClockRun feature of SC should be enabled.
  0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       PciClockRun;

/** Offset 0x0190 - Enable/Disable Timer 8254 Clock Setting
  Enable/Disable Timer 8254 Clock. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       Timer8254ClkSetting;

/** Offset 0x0191 - Chipset SATA
  Enables or Disables the Chipset SATA Controller. The Chipset SATA controller supports
  the 2 black internal SATA ports (up to 3Gb/s supported per port). 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       EnableSata;

/** Offset 0x0192 - SATA Mode Selection
  Determines how SATA controller(s) operate. 0:AHCI(Default), 1:RAID.
  0:AHCI, 1:RAID
**/
  UINT8                       SataMode;

/** Offset 0x0193 - Aggressive LPM Support
  Enable PCH to aggressively enter link power state.  0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       SataSalpSupport;

/** Offset 0x0194 - SATA Power Optimization
  Enable SATA Power Optimizer on SC side.  0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       SataPwrOptEnable;

/** Offset 0x0195 - eSATA Speed Limit
  Enable/Disable eSATA Speed Limit.  0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       eSATASpeedLimit;

/** Offset 0x0196 - SATA Speed Limit
  SATA Speed Limit. 0h:ScSataSpeed(Default), 1h:1.5Gb/s(Gen 1), 2h:3Gb/s(Gen 2), 3h:6Gb/s(Gen 3).
  0:Default, 1: 1.5 Gb/s (Gen 1), 2: 3 Gb/s(Gen 2), 3: 6 Gb/s (Gen 1)
**/
  UINT8                       SpeedLimit;

/** Offset 0x0197
**/
  UINT8                       UnusedUpdSpace2[1];

/** Offset 0x0198 - SATA Port
  Enable or Disable SATA Port.  0:Disable, 1:Enable(Default).
**/
  UINT8                       SataPortsEnable[2];

/** Offset 0x019A - SATA Port DevSlp
  Enable/Disable SATA Port  DevSlp. Board rework for LP needed before enable.  0:Disable(Default), 1:Enable.
**/
  UINT8                       SataPortsDevSlp[2];

/** Offset 0x019C - SATA Port HotPlug
  Enable/Disable SATA Port Hotplug . 0:Disable(Default), 1:Enable.
**/
  UINT8                       SataPortsHotPlug[2];

/** Offset 0x019E - Mechanical Presence Switch
  Controls reporting if this port has an Mechanical Presence Switch.\n
  Note:Requires hardware support.  0:Disable, 1:Enable(Default).
**/
  UINT8                       SataPortsInterlockSw[2];

/** Offset 0x01A0 - External SATA Ports
  Enable/Disable External SATA Ports. 0:Disable(Default), 1:Enable.
**/
  UINT8                       SataPortsExternal[2];

/** Offset 0x01A2 - Spin Up Device
  Enable/Disable device spin up at boot on selected Sata Ports. 0:Disable(Default), 1:Enable.
**/
  UINT8                       SataPortsSpinUp[2];

/** Offset 0x01A4 - SATA Solid State
  Identify the SATA port is connected to Solid State Drive or Hard Disk Drive.  0:Hard
  Disk Drive(Default), 1:Solid State Drive.
**/
  UINT8                       SataPortsSolidStateDrive[2];

/** Offset 0x01A6 -   DITO Configuration
  Enable/Disable DITO Configuration.  0:Disable(Default), 1:Enable.
**/
  UINT8                       SataPortsEnableDitoConfig[2];

/** Offset 0x01A8 - DM Value
  DM Value.  0:Minimum, 0x0F:Maximum(Default).
**/
  UINT8                       SataPortsDmVal[2];

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

/** Offset 0x01AC - DITO Value
  DEVSLP Idle Timeout Value. 0:Minimum, 0x03FF:Maximum, 0x0271(Default).
**/
  UINT16                      SataPortsDitoVal[2];

/** Offset 0x01B0 - Subsystem Vendor ID
  Subsystem Vendor ID. 0x8086(Default).
**/
  UINT16                      SubSystemVendorId;

/** Offset 0x01B2 - Subsystem ID
  Subsystem ID. 0x7270(Default).
**/
  UINT16                      SubSystemId;

/** Offset 0x01B4 - CRIDSettings
  PMC CRID setting. 0:Disable(Default), 1:CRID_1, 2:CRID_2, 3:CRID_3.
**/
  UINT8                       CRIDSettings;

/** Offset 0x01B5 - ResetSelect
  ResetSelect. 0x6:warm reset(Default), 0xE:cold reset.
**/
  UINT8                       ResetSelect;

/** Offset 0x01B6 - SD Card Support (D27:F0)
  Enable/Disable SD Card Support. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       SdcardEnabled;

/** Offset 0x01B7 - SeMMC Support (D28:F0)
  Enable/Disable eMMC Support. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       eMMCEnabled;

/** Offset 0x01B8 - eMMC Max Speed
  Select the eMMC max Speed allowed. 0:HS400(Default), 1:HS200, 2:DDR50.
  0:HS400, 1: HS200, 2:DDR50
**/
  UINT8                       eMMCHostMaxSpeed;

/** Offset 0x01B9 - UFS Support (D29:F0)
  Enable/Disable SDIO Support. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       UfsEnabled;

/** Offset 0x01BA - SDIO Support (D30:F0)
  Enable/Disable SDIO Support. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       SdioEnabled;

/** Offset 0x01BB - GPP Lock Feature
  Enable/Disable GPP lock. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       GppLock;

/** Offset 0x01BC - Serial IRQ
  Enable/Disable Serial IRQ. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       SirqEnable;

/** Offset 0x01BD - Serial IRQ Mode
  Serial IRQ Mode Selection. 0:Quiet mode(Default), 1:Continuous mode.
  $EN_DIS
**/
  UINT8                       SirqMode;

/** Offset 0x01BE - Start Frame Pulse Width
  Start Frame Pulse Width Value. 0:ScSfpw4Clk(Default), 1: ScSfpw6Clk, 2:ScSfpw8Clk.
  0:ScSfpw4Clk, 1:ScSfpw6Clk, 2:ScSfpw8Clk
**/
  UINT8                       StartFramePulse;

/** Offset 0x01BF - Enable SMBus
  Enable/disable SMBus controller. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       SmbusEnable;

/** Offset 0x01C0 - SMBus ARP Support
  Enable/disable SMBus ARP Support. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       ArpEnable;

/** Offset 0x01C1
**/
  UINT8                       UnusedUpdSpace4;

/** Offset 0x01C2 - SMBus Table Elements
  The number of elements in the Reserved SMBus Address Table. 0x0080(Default).
**/
  UINT16                      NumRsvdSmbusAddresses;

/** Offset 0x01C4 - Reserved SMBus Address Table
  Array of addresses reserved for non-ARP-capable SMBus devices. 0x00(Default).
**/
  UINT8                       RsvdSmbusAddressTable[128];

/** Offset 0x0244 - XHCI Disable Compliance Mode
  Options to disable XHCI Link Compliance Mode. Default is FALSE to not disable Compliance
  Mode. Set TRUE to disable Compliance Mode. 0:FALSE(Default), 1:True.
  $EN_DIS
**/
  UINT8                       DisableComplianceMode;

/** Offset 0x0245 - USB Per-Port Control
  Control each of the USB ports enable/disable. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       UsbPerPortCtl;

/** Offset 0x0246 - xHCI Mode
  Mode of operation of xHCI controller. 0:Disable, 1:Enable, 2:Auto(Default)
  0:Disable, 1:Enable, 2:Auto
**/
  UINT8                       Usb30Mode;

/** Offset 0x0247
**/
  UINT8                       UnusedUpdSpace5[1];

/** Offset 0x0248 - Enable USB2 ports
  Enable/disable per USB2 ports. One byte for each port, byte0 for port0, byte1 for
  port1, and so on. 0x01(Default).
**/
  UINT8                       PortUsb20Enable[8];

/** Offset 0x0250 - USB20 Over Current Pin
  Over Current Pin number of USB 2.0 Port. 0x00(Default).
**/
  UINT8                       PortUs20bOverCurrentPin[8];

/** Offset 0x0258 - XDCI Support
  Enable/Disable XDCI. 0:Disable, 1:PCI_Mode(Default), 2:ACPI_mode.
  0:Disable, 1:PCI_Mode, 2:ACPI_mode
**/
  UINT8                       UsbOtg;

/** Offset 0x0259 - Enable XHCI HSIC Support
  Enable/Disable USB HSIC1. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       HsicSupportEnable;

/** Offset 0x025A - Enable USB3 ports
  Enable/disable per USB3 ports. One byte for each port, byte0 for port0, byte1 for
  port1, and so on. 0x01(Default).
**/
  UINT8                       PortUsb30Enable[6];

/** Offset 0x0260 - USB20 Over Current Pin
  Over Current Pin number of USB 3.0 Port. 0x01(Default).
**/
  UINT8                       PortUs30bOverCurrentPin[6];

/** Offset 0x0266 - Enable XHCI SSIC Support
  Enable/disable XHCI SSIC ports. One byte for each port, byte0 for port0, byte1 for
  port1. 0x00(Default).
**/
  UINT8                       SsicPortEnable[2];

/** Offset 0x0268 - SSIC Dlane PowerGating
  Enable/Disable SSIC Data lane Power Gating. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT16                      DlanePwrGating;

/** Offset 0x026A - VT-d
  Enable/Disable VT-d. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       VtdEnable;

/** Offset 0x026B - SMI Lock bit
  Enable/Disable SMI_LOCK bit to prevent writes to the Global SMI Enable bit. 0:Disable,
  1:Enable(Default).
  $EN_DIS
**/
  UINT8                       LockDownGlobalSmi;

/** Offset 0x026C - HDAudio Delay Timer
  The delay timer after Azalia reset. 0x012C(Default).
**/
  UINT16                      ResetWaitTimer;

/** Offset 0x026E - RTC Lock Bits
  Enable/Disable RTC Lock Bits. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       RtcLock;

/** Offset 0x026F - SATA Test Mode Selection
  Enable/Disable SATA Test Mode. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       SataTestMode;

/** Offset 0x0270 - XHCI SSIC RATE
  Set XHCI SSIC1 Rate to A Series or B Series. 1:A Series(Default), 2:B Series.
**/
  UINT8                       SsicRate[2];

/** Offset 0x0272 - SMBus Dynamic Power Gating
  Enable/Disable SMBus dynamic power gating. 0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT16                      DynamicPowerGating;

/** Offset 0x0274 - Max Snoop Latency
  Latency Tolerance Reporting Max Snoop Latency. 0x0000(Default).
**/
  UINT16                      PcieRpLtrMaxSnoopLatency[6];

/** Offset 0x0280 -   Snoop Latency Override
  Snoop Latency Override for PCH PCIE. \n
  Disabled:Disable override.\n
  Manual:Manually enter override values.\n
  Auto:Maintain default BIOS flow. 0:Disable, 1:Enable, 2:Auto(Default).
**/
  UINT8                       PcieRpSnoopLatencyOverrideMode[6];

/** Offset 0x0286
**/
  UINT8                       UnusedUpdSpace6[2];

/** Offset 0x0288 -   Snoop Latency Value
  LTR Snoop Latency value of PCH PCIE. 0:Minimum, 0x03FF:Maximum, 0x003C(Default).
**/
  UINT16                      PcieRpSnoopLatencyOverrideValue[6];

/** Offset 0x0294 -   Snoop Latency Multiplier
  LTR Snoop Latency Multiplier of PCH PCIE. 0:1ns, 1:32ns, 2:1024ns(Default), 3:32768ns,
  4:1048576ns, 5:33554432ns.
**/
  UINT8                       PcieRpSnoopLatencyOverrideMultiplier[6];

/** Offset 0x029A - Skip Multi-Processor Initialization
  When this is skipped, boot loader must initialize processors before SilicionInit
  API. 0: Initialize(Default), <b>1: Skip
  $EN_DIS
**/
  UINT8                       SkipMpInit;

/** Offset 0x029B - DCI Auto Detect
  Enable/disable DCI AUTO mode. Enabled(Default).
  $EN_DIS
**/
  UINT8                       DciAutoDetect;

/** Offset 0x029C - Max Non-Snoop Latency
  Latency Tolerance Reporting, Max Non-Snoop Latency. 0x0000(Default).
**/
  UINT16                      PcieRpLtrMaxNonSnoopLatency[6];

/** Offset 0x02A8 -   Non Snoop Latency Override
  Non Snoop Latency Override for PCH PCIE. \n
  Disabled:Disable override.\n
  Manual:Manually enter override values.\n
  Auto: Maintain default BIOS flow. 0:Disable, 1:Enable, 2:Auto(Default).
**/
  UINT8                       PcieRpNonSnoopLatencyOverrideMode[6];

/** Offset 0x02AE - Halt and Lock TCO Timer
  Halt and Lock the TCO Timer (Watchdog).
  0:No, 1:Yes (default)
**/
  UINT8                       TcoTimerHaltLock;

/** Offset 0x02AF - Power Button Override Period
  specifies how long will PMC wait before initiating a global reset. 000b-4s(default),
  001b-6s, 010b-8s, 011b-10s, 100b-12s, 101b-14s.)
  0x0:4s, 0x1:6s, 0x2:8s, 0x3:10s, 0x4:12s, 0x5:14s
**/
  UINT8                       PwrBtnOverridePeriod;

/** Offset 0x02B0 -   Non Snoop Latency Value
  LTR Non Snoop Latency value of PCH PCIE. 0:Minimum, 0x03FF:Maximum, 0x003C(Default).
**/
  UINT16                      PcieRpNonSnoopLatencyOverrideValue[6];

/** Offset 0x02BC -   Non Snoop Latency Multiplier
  LTR Non Snoop Latency Multiplier of PCH PCIE. 0:1ns, 1:32ns, 2:1024ns(Default),
  3:32768ns, 4:1048576ns, 5:33554432ns.
**/
  UINT8                       PcieRpNonSnoopLatencyOverrideMultiplier[6];

/** Offset 0x02C2 - PCIE Root Port Slot Power Limit Scale
  Specifies scale used for slot power limit value. 0x00(Default).
**/
  UINT8                       PcieRpSlotPowerLimitScale[6];

/** Offset 0x02C8 - PCIE Root Port Slot Power Limit Value
  Specifies upper limit on power supplie by slot. 0x00(Default).
**/
  UINT8                       PcieRpSlotPowerLimitValue[6];

/** Offset 0x02CE - Power Button Native Mode Disable
  Disable power button native mode, when 1, this will result in the PMC logic constantly
  seeing the power button as de-asserted. 0 (default))
  $EN_DIS
**/
  UINT8                       DisableNativePowerButton;

/** Offset 0x02CF - Power Button Debounce Mode
  Enable interrupt when PWRBTN# is asserted. 0:Disabled, 1:Enabled(default)
  $EN_DIS
**/
  UINT8                       PowerButterDebounceMode;

/** Offset 0x02D0 - SDIO_TX_CMD_DLL_CNTL
  SDIO_TX_CMD_DLL_CNTL. 0x505(Default).
**/
  UINT32                      SdioTxCmdCntl;

/** Offset 0x02D4 - SDIO_TX_DATA_DLL_CNTL1
  SDIO_TX_DATA_DLL_CNTL1. 0xE(Default).
**/
  UINT32                      SdioTxDataCntl1;

/** Offset 0x02D8 - SDIO_TX_DATA_DLL_CNTL2
  SDIO_TX_DATA_DLL_CNTL2. 0x22272828(Default).
**/
  UINT32                      SdioTxDataCntl2;

/** Offset 0x02DC - SDIO_RX_CMD_DATA_DLL_CNTL1
  SDIO_RX_CMD_DATA_DLL_CNTL1. 0x16161616(Default).
**/
  UINT32                      SdioRxCmdDataCntl1;

/** Offset 0x02E0 - SDIO_RX_CMD_DATA_DLL_CNTL2
  SDIO_RX_CMD_DATA_DLL_CNTL2. 0x10000(Default).
**/
  UINT32                      SdioRxCmdDataCntl2;

/** Offset 0x02E4 - SDCARD_TX_CMD_DLL_CNTL
  SDCARD_TX_CMD_DLL_CNTL. 0x505(Default).
**/
  UINT32                      SdcardTxCmdCntl;

/** Offset 0x02E8 - SDCARD_TX_DATA_DLL_CNTL1
  SDCARD_TX_DATA_DLL_CNTL1. 0xA13(Default).
**/
  UINT32                      SdcardTxDataCntl1;

/** Offset 0x02EC - SDCARD_TX_DATA_DLL_CNTL2
  SDCARD_TX_DATA_DLL_CNTL2. 0x24242828(Default).
**/
  UINT32                      SdcardTxDataCntl2;

/** Offset 0x02F0 - SDCARD_RX_CMD_DATA_DLL_CNTL1
  SDCARD_RX_CMD_DATA_DLL_CNTL1. 0x73A3637(Default).
**/
  UINT32                      SdcardRxCmdDataCntl1;

/** Offset 0x02F4 - SDCARD_RX_STROBE_DLL_CNTL
  SDCARD_RX_STROBE_DLL_CNTL. 0x0(Default).
**/
  UINT32                      SdcardRxStrobeCntl;

/** Offset 0x02F8 - SDCARD_RX_CMD_DATA_DLL_CNTL2
  SDCARD_RX_CMD_DATA_DLL_CNTL2. 0x10000(Default).
**/
  UINT32                      SdcardRxCmdDataCntl2;

/** Offset 0x02FC - EMMC_TX_CMD_DLL_CNTL
  EMMC_TX_CMD_DLL_CNTL. 0x505(Default).
**/
  UINT32                      EmmcTxCmdCntl;

/** Offset 0x0300 - EMMC_TX_DATA_DLL_CNTL1
  EMMC_TX_DATA_DLL_CNTL1. 0xC11(Default).
**/
  UINT32                      EmmcTxDataCntl1;

/** Offset 0x0304 - EMMC_TX_DATA_DLL_CNTL2
  EMMC_TX_DATA_DLL_CNTL2. 0x1C2A2927(Default).
**/
  UINT32                      EmmcTxDataCntl2;

/** Offset 0x0308 - EMMC_RX_CMD_DATA_DLL_CNTL1
  EMMC_RX_CMD_DATA_DLL_CNTL1. 0x000D162F(Default).
**/
  UINT32                      EmmcRxCmdDataCntl1;

/** Offset 0x030C - EMMC_RX_STROBE_DLL_CNTL
  EMMC_RX_STROBE_DLL_CNTL. 0x0a0a(Default).
**/
  UINT32                      EmmcRxStrobeCntl;

/** Offset 0x0310 - EMMC_RX_CMD_DATA_DLL_CNTL2
  EMMC_RX_CMD_DATA_DLL_CNTL2. 0x1003b(Default).
**/
  UINT32                      EmmcRxCmdDataCntl2;

/** Offset 0x0314 - EMMC_MASTER_DLL_CNTL
  EMMC_MASTER_DLL_CNTL. 0x001(Default).
**/
  UINT32                      EmmcMasterSwCntl;

/** Offset 0x0318 - SGX Epoch 0
  SGX Epoch 0. 0x0(Default).
**/
  UINT64                      SgxEpoch0;

/** Offset 0x0320 - SGX Epoch 1
  SGX Epoch 1. 0x0(Default).
**/
  UINT64                      SgxEpoch1;

/** Offset 0x0328 - MicrocodePatchAddress
  MicrocodePatchAddress. 0x0(Default).
**/
  UINT64                      MicrocodePatchAddress;

/** Offset 0x0330 - PCIe Selectable De-emphasis
  When the Link is operating at 5.0 GT/s speed, this bit selects the level of de-emphasis
  for an Upstream component. 1b:-3.5 dB 0b:-6 dB. 0:Disable, 1:Enable(Default).
**/
  UINT8                       PcieRpSelectableDeemphasis[6];

/** Offset 0x0336 - Monitor Mwait Enable
  Enable/Disable Monitor Mwait. For Windows* OS, this should be Enabled. For Linux
  based OS, this should be Disabled. 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       MonitorMwaitEnable;

/** Offset 0x0337 - Universal Audio Architecture compliance for DSP enabled system
  0: Not-UAA Compliant (Intel SST driver supported only), 1: UAA Compliant (HDA Inbox
  driver or SST driver supported).
  $EN_DIS
**/
  UINT8                       HdAudioDspUaaCompliance;

/** Offset 0x0338 - IRQ Interrupt Polarity Control
  Set IRQ Interrupt Polarity Control to ITSS.IPC[0]~IPC[3]. 0:Active High, 1:Active Low
**/
  UINT32                      IPC[4];

/** Offset 0x0348 - Disable ModPHY dynamic power gate
  Disable ModPHY dynamic power gate for the specific SATA port.
**/
  UINT8                       SataPortsDisableDynamicPg[2];

/** Offset 0x034A - Init CPU during S3 resume
  0: Do not initialize CPU during S3 resume. 1: Initialize CPU during S3 resume.
  $EN_DIS
**/
  UINT8                       InitS3Cpu;

/** Offset 0x034B - CNVi Mode
  Selects CNVi Mode. 0:Disable, 1:Auto(Default).
  $EN_DIS
**/
  UINT8                       CnviMode;

/** Offset 0x034C - BT Interface
  CNVi BT interface. 0:UART, 1:USB(Default).
  $EN_DIS
**/
  UINT8                       CnviBtInterface;

/** Offset 0x034D - Disable Sx Wake
  Enables/Disables wake from Sx . 0:No(Default), 1:Yes.
  $EN_DIS
**/
  UINT8                       DisableSxWake;

/** Offset 0x034E - ModifyCrfGpios
  Feature to Configure CRF Gpios Conditionally upon platform requirement, configuration
  of GNSS and BtOnUart gpios will/will not be done based on this policy
  $EN_DIS
**/
  UINT8                       ModifyCrfGpios;

/** Offset 0x034F -  dGPU Hold Reset
  dGPU Hold Reset GPIO information from GPIO community, Pin and Active
**/
  UINT8                       HgDgpuHoldRst[8];

/** Offset 0x0357 - dGPU Power Enable
  dGPU power enable GPIO information from GPIO community, Pin and Active
**/
  UINT8                       HgDgpuPwrEnable[8];

/** Offset 0x035F - HG Enable
  Enables/Disables Hybrid Graphics . 0 : Disable(Default), 1 : Enable
  0x1:Enabled, 0x0:Disabled
**/
  UINT8                       HgEnabled;

/** Offset 0x0360 - dGPU Delay after power enable
  Delay for DGPU after Hold Reset if HG is enable : 0 : Minimum , 1000 : Maximum ,
  300 : Default
  0 : Minimum , 1000 : Maximum , 300 : Default
**/
  UINT16                      HgDelayAfterPwrEn;

/** Offset 0x0362 -  dGPU Delay after hold reset
  Delay for DGPU after Hold Reset if HG is enable : 0 : Minimum , 1000 : Maximum ,
  100 : Default
  0 : Minimum , 1000 : Maximum , 100 : Default
**/
  UINT16                      HgDelayAfterHoldReset;

/** Offset 0x0364 - CpuS3ResumeMtrrDataSize
  Size of S3 resume MTRR data.
**/
  UINT16                      CpuS3ResumeMtrrDataSize;

/** Offset 0x0366 - PAVP ASMF
  Enable/Disable PAVP ASMF  0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       PavpAsmf;

/** Offset 0x0367 - PAVP Auto TearDown Grace Period Enable
  Enable/Disable PAVP Auto TearDown Grace Period 0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       AutoTearDownGracePeriod;

/** Offset 0x0368 - CpuS3ResumeMtrrData
  Pointer CPU S3 Resume MTRR Data
**/
  UINT32                      CpuS3ResumeMtrrData;

/** Offset 0x036C - SeC EndOfPost EnableDisable
  Enable/Disable SeC EOPEnable  0:Disable, 1:Enable(Default).
  $EN_DIS
**/
  UINT8                       EndOfPostEnabled;

/** Offset 0x036D - EnableDigitalThermalSensor EnableDisable
  Enable/Disable EnableDigitalThermalSensor  0:Disable(Default), 1:Enable.
  $EN_DIS
**/
  UINT8                       EnableDigitalThermalSensor;

/** Offset 0x036E - PNP Mode
  Select PNP Mode. 0:Disable,1:Power,2:Performance,3:Power&Performance
  0:Disable,1:Power,2:Performance,3:Power&Performance(default)
**/
  UINT8                       PnpSettings;

/** Offset 0x036F - OsBoot EnableDisable
  Select OsBoot. 1:EMMC boot, 0:HardDisk boot
  1:EMMC boot, 1:HardDisk boot
**/
  UINT8                       OsBoot;

/** Offset 0x0370 - System Vendor ID
  Upd for vendor ID for assigning to devices
**/
  UINT16                      SiSVID;

/** Offset 0x0372 - Sub system Vendor ID
  Upd for subsystem ID for assigning to devices
**/
  UINT16                      SiSSID;

/** Offset 0x0374 - CpuBistData
  Pointer CPU BIST Data
**/
  UINT32                      CpuBistData;

/** Offset 0x0378 - Base of memory region allocated for Processor Trace
  Base address of memory region allocated for Processor Trace. Processor Trace requires
  2^N alignment and size in bytes per thread, from 4KB to 128MB. <b>0: Disable</b>
**/
  UINT64                      ProcessorTraceMemBase;

/** Offset 0x0380 - Memory region allocation for Processor Trace
  Length in bytes of memory region allocated for Processor Trace. Processor Trace
  requires 2^N alignment and size in bytes per thread, from 4KB to 128MB. <b>0: Disable</b>
**/
  UINT32                      ProcessorTraceMemLength;

/** Offset 0x0384 - AP threads Idle Manner
  AP threads Idle Manner for waiting signal to run 1:HALT loop 2:MWAIT loop 3:RUN lOOP
  $EN_DIS
**/
  UINT8                       ApIdleManner;

/** Offset 0x0385 - Skip P-unit Initialization
  When this is skipped, boot loader must initialize P-unit before SilicionInit API.
  0: Initialize(Default), 1: Skip
  $EN_DIS
**/
  UINT8                       SkipPunitInit;

/** Offset 0x0386 - Sub system Vendor ID VGA
  Graphics PCI subsystem HgSubSystemId
**/
  UINT16                      HgSubSystemId;

/** Offset 0x0388 - USB Per Port HS Preemphasis Bias
  USB Per Port HS Preemphasis Bias. 000b-0mV, 001b-40.5mV, 010b-60.5mV, 011b-102mV,
  100b-102mV, 101b-142mV, 110b-162.5mV, 111b-202.5mV. One byte for each port.
**/
  UINT8                       Usb2AfePetxiset[8];

/** Offset 0x0390 - USB Per Port HS Transmitter Bias
  USB Per Port HS Transmitter Bias. 000b-0mV, 001b-40.5mV, 010b-60.5mV, 011b-102mV,
  100b-102mV, 101b-142mV, 110b-162.5mV, 111b-202.5mV. One byte for each port.
**/
  UINT8                       Usb2AfeTxiset[8];

/** Offset 0x0398 - USB Per Port HS Transmitter Emphasis
  USB Per Port HS Transmitter Emphasis. 00b - Emphasis OFF, 01b - De-emphasis ON,
  10b - Pre-emphasis ON, 11b - Pre-emphasis & De-emphasis ON. One byte for each port.
**/
  UINT8                       Usb2AfePredeemp[8];

/** Offset 0x03A0 - USB Per Port Half Bit Pre-emphasis
  USB Per Port Half Bit Pre-emphasis. 1b - half-bit pre-emphasis, 0b - full-bit pre-emphasis.
  One byte for each port.
**/
  UINT8                       Usb2AfePehalfbit[8];

/** Offset 0x03A8 - Intel Processor Trace output Scheme method
  Intel Processor Trace output Scheme method 0:Single Range Output (Default) 1. ToPA Output
**/
  UINT8                       ProcessorTraceOutputScheme;

/** Offset 0x03A9 - USB PDO Programming
  Enable/disable PDO programming for USB in PEI phase. Disabling will allow for programming
  during later phase. 1: enable, 0: disable
  1: enable, 0: disable
**/
  UINT8                       UsbPdoProgramming;

/** Offset 0x03AA - Skip LPSS SPI Private Clock Parameter Programming
  When this is skipped, boot loader must program LPSS SPI PCP. 0: Initialize(Default),
  <b>1: Skip
  $EN_DIS
**/
  UINT8                       SkipSpiPCP;

/** Offset 0x03AB - PMIC PCH_PWROK delay configuration - IPC Configuration
  Upd for changing PCH_PWROK delay configuration : I2C_Slave_Address (31:24) + Register_Offset
  (23:16) + OR Value (15:8) + AND Value (7:0)
**/
  UINT32                      PmicPmcIpcCtrl;

/** Offset 0x03AF - ModPhyIfValue
  Upd To modify the Integrated Filter (IF) value as 0x12(Default) for WIN and 0x16
  for Chrome
**/
  UINT8                       ModPhyIfValue;

/** Offset 0x03B0 - ModPhyVoltageBump
  ModPhyVoltageBump. 1: enable, 0: disable
  $EN_DIS
**/
  UINT8                       ModPhyVoltageBump;

/** Offset 0x03B1 - Vdd2 Voltage configuration
  Upd for changing Vdd2 Voltage configuration : I2C_Slave_Address (31:23) + Register_Offset
  (23:16) + OR Value (15:8) + AND Value (7:0)
**/
  UINT32                      PmicVdd2Voltage;

/** Offset 0x03B5
**/
  UINT8                       ReservedFspsUpd[1];
} FSP_S_CONFIG;

/** Fsp S SGX Configuration
**/
typedef struct {

/** Offset 0x03C0
**/
  UINT32                      Signature;

/** Offset 0x03C4 - Selective enable SGX
  Selective enable SGX. 0xFFFF(Default).
**/
  UINT16                      SelectiveEnableSgx;

/** Offset 0x03C6 - SGX debug mode
  Select SGX mode. 0:Disable(default), 1:Enable
  0:Disable(default), 1:Enable
**/
  UINT8                       SgxDebugMode;

/** Offset 0x03C7 - SGX Launch Control Policy Mode
  Select Launch Control Policy Mode. 0:Intel - Default, 1:Per-boot Select mode(default)
  0:Intel locked , 1:Unlocked mode(default) , 2: Locked mode
**/
  UINT8                       SgxLcp;

/** Offset 0x03C8 - LE KeyHash0
  LE KeyHash0. 0x0(Default).
**/
  UINT64                      SgxLePubKeyHash0;

/** Offset 0x03D0 - LE KeyHash1
  LE KeyHash1. 0x0(Default).
**/
  UINT64                      SgxLePubKeyHash1;

/** Offset 0x03D8 - LE KeyHash2
  LE KeyHash2. 0x0(Default).
**/
  UINT64                      SgxLePubKeyHash2;

/** Offset 0x03E0
**/
  UINT8                       UnusedUpdSpace8[16];

/** Offset 0x03F0 - LE KeyHash3
  LE KeyHash3. 0x0(Default).
**/
  UINT64                      SgxLePubKeyHash3;

/** Offset 0x03F8
**/
  UINT8                       ReservedFspsSgxUpd[8];
} FSP_S_SGX_CONFIG;

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

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

/** Offset 0x0020
**/
  FSP_S_CONFIG                FspsConfig;

/** Offset 0x03B6
**/
  UINT8                       UnusedUpdSpace7[10];

/** Offset 0x03C0
**/
  FSP_S_SGX_CONFIG            FspsSgxConfig;

/** Offset 0x0400
**/
  UINT8                       UnusedUpdSpace9[6];

/** Offset 0x0406
**/
  UINT16                      UpdTerminator;
} FSPS_UPD;

#pragma pack(pop)

#endif