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
|
/*++
Copyright (c) 2004 - 2016, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
Module Name:
PlatformEarlyInit.h
Abstract:
Platform Early Stage header file
--*/
/*++
This file contains an 'Intel Peripheral Driver' and is
licensed for Intel CPUs and chipsets under the terms of your
license agreement with Intel or your vendor. This file may
be modified by the user, subject to additional terms of the
license agreement
--*/
#ifndef _EFI_PLATFORM_EARLY_INIT_H_
#define _EFI_PLATFORM_EARLY_INIT_H_
#define EFI_FORWARD_DECLARATION(x) typedef struct _##x x
#include <FrameworkPei.h>
#include "PlatformBaseAddresses.h"
#include "PchAccess.h"
#include "VlvAccess.h"
#include "SetupMode.h"
#include "PlatformBootMode.h"
#include "Platform.h"
#include "LegacySpeaker.h"
#include <Ppi/Stall.h>
#include <Guid/PlatformInfo.h>
#include <Guid/SetupVariable.h>
#include <Ppi/AtaController.h>
#include <Ppi/FindFv.h>
#include <Ppi/BootInRecoveryMode.h>
#include <Ppi/ReadOnlyVariable2.h>
#include <Ppi/Capsule.h>
#include <Guid/EfiVpdData.h>
#include <Library/DebugLib.h>
#include <Library/BaseMemoryLib.h>
#include <Library/PcdLib.h>
#include <Library/IoLib.h>
#include <Library/HobLib.h>
#include <Library/BaseLib.h>
#include <Library/PeiServicesLib.h>
#include <Library/MtrrLib.h>
#include <Library/CpuIA32.h>
#include <IndustryStandard/Pci22.h>
#include <Ppi/Speaker.h>
#include <Guid/FirmwareFileSystem.h>
#include <Guid/MemoryTypeInformation.h>
#include <Ppi/Cache.h>
#include <Ppi/Smbus.h>
#include <Library/PchPlatformLib.h>
#include <Ppi/SmbusPolicy.h>
#include <Ppi/Reset.h>
#include <Ppi/EndOfPeiPhase.h>
#include <Ppi/MemoryDiscovered.h>
#include <Ppi/VlvPolicy.h>
#include <Guid/GlobalVariable.h>
#include <Ppi/RecoveryModule.h>
#include <Ppi/DeviceRecoveryModule.h>
#include <Guid/Capsule.h>
#include <Guid/RecoveryDevice.h>
#include <Ppi/MasterBootMode.h>
#include <Guid/PlatformCpuInfo.h>
#include <Guid/OsSelection.h>
#include <Guid/SmramMemoryReserve.h>
#include <Register/Msr.h>
#define SMC_LAN_ON 0x46
#define SMC_LAN_OFF 0x47
#define SMC_DEEP_S3_STS 0xB2
//
// Wake Event Types
//
#define SMBIOS_WAKEUP_TYPE_RESERVED 0x00
#define SMBIOS_WAKEUP_TYPE_OTHERS 0x01
#define SMBIOS_WAKEUP_TYPE_UNKNOWN 0x02
#define SMBIOS_WAKEUP_TYPE_APM_TIMER 0x03
#define SMBIOS_WAKEUP_TYPE_MODEM_RING 0x04
#define SMBIOS_WAKEUP_TYPE_LAN_REMOTE 0x05
#define SMBIOS_WAKEUP_TYPE_POWER_SWITCH 0x06
#define SMBIOS_WAKEUP_TYPE_PCI_PME 0x07
#define SMBIOS_WAKEUP_TYPE_AC_POWER_RESTORED 0x08
#define EFI_CPUID_VIRT_PHYS_ADDRESS_SIZE 0x80000008
//
// Defines for stall ppi
//
#define PEI_STALL_RESOLUTION 1
//
// Used in PEI memory test routines
//
#define MEMORY_TEST_COVER_SPAN 0x40000
#define MEMORY_TEST_PATTERN 0x5A5A5A5A
#define EFI_LOW_BEEP_FREQUENCY 0x31B
#define EFI_HIGH_BEEP_FREQUENCY 0x254
//
// General Purpose Constants
//
#define ICH_ACPI_TIMER_MAX_VALUE 0x1000000 //The timer is 24 bit overflow
//
//
// GPIO Register Settings for ValleyFalls (Tablet)
//
//
// IO Space configyuration registers
// Field Descriptions:
// USE: Defines the pin's usage model: GPIO (G) or Native (N) mode.
// I/O: Defines whether GPIOs are inputs (I) or outputs (O).
// (Note: Only meaningful for pins used as GPIOs.)
// LVL: This field gives you the initial value for "output" GPIO's.
// (Note: The output level is dependent upon whether the pin is inverted.)
// TPE: Defines whether Trigger Positive Edge Enable.
// TNE: Defines whether Trigger Negative Edge Enable.
// WAKE_EN: only support in SUS community
// (Note: Only affects the level sent to the GPE logic and does not
// affect the level read through the GPIO registers.)
//
//
// Memory spcae configuration registers
//
// Field Descriptions:
// PAD releated:
// PAD_CONF0
// PAD_CONF1
// PAD_VAL
// PAD_DFT
//
// Notes:
// 1. N = Native , G = GPIO , I = Input, O = Output, - = BOTH/NOT SURE
//
// Signal UsedAs USE I/O LVL TPE TNE PCONF0 PCONF1 PVAL PDFT
// -------------------------------------------------------------------------------------------------------------------------
// GPIO0 UART1_RXD-L N I - - - cd29h - - -
// GPIO1 UART1_TXD-0 N O - - - cd29h - - -
// *GPIO2 UART1_RTS_B-1 N I - - - cca9h - - -
// *GPIO3 UART1_CTS_B-H N O - - - cca9h - - -
// GPIO4 I2C1_SDA-OD-O N - - - - cca9h - - -
// GPIO5 I2C1_SCL-OD-O N - - - - cca9h - - -
// GPIO6 I2S_SYSCLK-0 N O - - - 8d51h - - -
// GPIO7 I2S_L_R-0 (SP) N O - - - 8cd1h - - -
// GPIO8 I2S_DATA_OUT-0 N O - - - 8cd1h - - -
// GPIO9 I2S_SDATA_IN-L N I - - - 8cd1h - - -
// GPIO10 PCM_CLK-0 N O - - - 8d51h - - -
// GPIO11 PCM_FSYNC-0 (SP) N O - - - 8cd1h - - -
// GPIO12 PCM_DATA_OUT-0 (SP) N O - - - 8cd1h - - -
// GPIO13 PCM_DATA_IN-L N I - - - 8d51h - - -
// GPIO14 SATA_GP0 N - - - - - - - -
// GPIO15 I2C2_SDA-OD-O/I N - - - - ccaah - - -
// GPIO16 SATA_LEDN N O - - - - - - -
// GPIO17 UART2_RTS_B-1 N I - - - cd2ah - - -
// GPIO18 UART2_CTS_B-H N O - - - ccaah - - -
// GPIO19 UART2_RXD-H N I - - - ccaah - - -
// GPIO20 I2C2_SCL-OD-O/I N - - - - ccaah - - -
// GPIO21 **PCIE_CLKREQ4B N - - - - - - - -
// GPIO22 UART2_TXD-0 N O - - - ccaah - - -
// GPIO23 FLEX_CLK_SE1 N - - - - - - - -
// GPIO24 SPI0_SCK-0 N O - - - 8d02h - - -
// GPIO25 SPI0_CS-1 N O - - - 8d02h - - -
// GPIO26 SPI0_MOSI-0 N O - - - 8d02h - - -
// GPIO27 SPI0_MISO-L N I - - - 8d02h - - -
// GPIO28 UART3_RXD-L N I - - - - - - -
// GPIO29 UART3_TXD-0 N O - - - - - - -
// GPIO30 UART4_RXD-L N I - - - - - - -
// GPIO31 UART4_TXD-0 N O - - - - - - -
// GPIO32 SDMMC1_CLK N - - - - 208d51h - - -
// GPIO33 SDMMC1_D0 N - - - - 8cd1h - - -
// GPIO34 SDMMC1_D1 N - - - - 8cd1h - - -
// GPIO35 SDMMC1_D2 N - - - - 8cd1h - - -
// GPIO36 SDMMC1_D3_CD_B N - - - - 8cd1h - - -
// GPIO37 MMC1_D4_SD_WE N - - - - 8cd1h - - -
// GPIO38 MMC1_D5 N - - - - 8cd1h - - -
// GPIO39 MMC1_D6 N - - - - 8cd1h - - -
// GPIO40 MMC1_D7 N - - - - 8cd1h - - -
// GPIO41 SDMMC1_CMD N - - - - 8cd1h - - -
// GPIO42 MMC1_RESET_B N - - - - 208d51h - - -
// GPIO43 SDMMC2_CLK N - - - - 208d51h - - -
// GPIO44 SDMMC2_D0 N - - - - 8cd1h - - -
// GPIO45 SDMMC2_D1 N - - - - 8cd1h - - -
// GPIO46 SDMMC2_D2 N - - - - 8cd1h - - -
// GPIO47 SDMMC2_D3_CD_B N - - - - 8cd1h - - -
// GPIO48 SDMMC2_CMD N - - - - 8cd1h - - -
// GPIO49 SDMMC3_CLK N - - - - 8d51h - - -
// GPIO50 SDMMC3_D0 N - - - - 8cd1h - - -
// GPIO51 SDMMC3_D1 N - - - - 8cd1h - - -
// GPIO52 SDMMC3_D2 N - - - - 8cd1h - - -
// GPIO53 SDMMC3_D3 N - - - - 8cd1h - - -
// GPIO54 SDMMC3_CD_B N - - - - cca9h - - -
// GPIO55 SDMMC3_CMD N - - - - 8cd1h - - -
// GPIO56 SDMMC3_1P8_EN N - - - - cd29h - - -
// GPIO57 LPC_AD0 N - - - - - - - -
// GPIO58 LPC_AD1 N - - - - - - - -
// GPIO59 LPC_AD2 N - - - - - - - -
// GPIO60 LPC_AD3 N - - - - - - - -
// GPIO61 LPC_FRAMEB N O - - - - - - -
// GPIO62 LPC_CLKOUT0 N O - - - - - - -
// GPIO63 LPC_CLKOUT1 N O - - - - - - -
// GPIO64 LPC_CLKRUNB N - - - - - - - -
// GPIO65 SMB_DATA N - - - - - - - -
// GPIO66 SMB_CLK N - - - - - - - -
// GPIO67 SMB_ALERTB N - - - - - - - -
// GPIO68 ILB_SEIRQ N - - - - - - - -
// GPIO69 SPKR N O - - - - - - -
//SUS WELL
//GPIO_SUS0 BT_WAKEUP_VLV N O - - - CCA8h - - -
//GPIO_SUS1 BT_CLOCK_REQ N O - - - CCA8h - - -
//GPIO_SUS2 WIFI_PWR_EN N O - - - CCA8h - - -
//GPIO_SUS3 SD_CARD_PWR_EN N O - - - CD28h - - -
//GPIO_SUS4 GPIO_SUS4 N O - - - CD28h - - -
//GPIO_SUS5 GPIO_SUS5 N O - - - CD28h - - -
//GPIO_SUS6 SUSPWRDNACK N O - - - 8850h - - -
//GPIO_SUS7 PMU_SLP_DDRVTT_B N O - - - 8850h - - -
//GPIO_SUS8 PMU_WAKE_B N O - - - CCA8h - - -
//GPIO_SUS9 PMU_PWRBTN_B N O - - - CCA8h - - -
//GPIO_SUS10 PMU_WAKE_LAN_B N O - - - CCA8h - - -
//GPIO_SUS11 SUS_STAT_B N O - - - C828h - - -
//GPIO_SUS12 GPIO_SUS12 N O - - - C828h - - -
//GPIO_SUS13 USB_OC0_B-20K,H N O - - - CCA8h - - -
//GPIO_SUS14 GPIO_SUS14 N O - - - CCA8h - - -
//GPIO_SUS15 SPI_CS1_B-20K,H N O - - - 8C80h - - -
//GPIO_SUS16 PMU_SUSCLK N O - - - C828h - - -
//
#define VF_TAB_GPIO_USE_SEL_VAL_0_31 0x00000000
#define VF_TAB_GPIO_USE_SEL_VAL_32_63 0x00000000
#define VF_TAB_GPIO_USE_SEL_VAL_64_70 0x00000000
#define VF_TAB_GPIO_USE_SEL_VAL_SUS 0x00000000
//
//1010 --00 0100 01-- 0101 --0- 0001 1010
//
#define VF_TAB_GPIO_IO_SEL_VAL_0_31 0x00000000 // BIT30 | BIT28 | BIT27 | BIT19 | BIT17 | BIT13 | BIT9 | BIT2 | BIT0
#define VF_TAB_GPIO_IO_SEL_VAL_32_63 0x00000000
#define VF_TAB_GPIO_IO_SEL_VAL_64_70 0x00000000
#define VF_TAB_GPIO_IO_SEL_VAL_SUS 0x00000000
#define VF_TAB_GPIO_LVL_VAL_0_31 0x00000000
#define VF_TAB_GPIO_LVL_VAL_32_63 0x00000000
#define VF_TAB_GPIO_LVL_VAL_64_70 0x00000000
#define VF_TAB_GPIO_LVL_VAL_SUS 0x00000000
#define VF_TAB_GPIO_TPE_VAL_0_31 0x00000000
#define VF_TAB_GPIO_TPE_VAL_SUS 0x00000000
#define VF_TAB_GPIO_TNE_VAL_0_31 0x00000000
#define VF_TAB_GPIO_TNE_VAL_SUS 0x00000000
#define VF_TAB_GPIO_TS_VAL_0_31 0x00000000
#define VF_TAB_GPIO_TS_VAL_SUS 0x00000000
//
// Memory space registers
//
//
// CONF0
//
#define VF_TAB_PAD_CONF0_GPIO0 0xcd29
#define VF_TAB_PAD_CONF0_GPIO1 0xcd29
#define VF_TAB_PAD_CONF0_GPIO2 0xcca9
#define VF_TAB_PAD_CONF0_GPIO3 0xcca9
#define VF_TAB_PAD_CONF0_GPIO4 0xcca9
#define VF_TAB_PAD_CONF0_GPIO5 0xcca9
#define VF_TAB_PAD_CONF0_GPIO6 0x8d51
#define VF_TAB_PAD_CONF0_GPIO7 0x8cd1
#define VF_TAB_PAD_CONF0_GPIO8 0x8cd1
#define VF_TAB_PAD_CONF0_GPIO9 0x8cd1
#define VF_TAB_PAD_CONF0_GPIO10 0x8d51
#define VF_TAB_PAD_CONF0_GPIO11 0x8cd1
#define VF_TAB_PAD_CONF0_GPIO12 0x8cd1
#define VF_TAB_PAD_CONF0_GPIO13 0x8d51
#define VF_TAB_PAD_CONF0_GPIO14 0xCCA8
#define VF_TAB_PAD_CONF0_GPIO15 0xccaa
#define VF_TAB_PAD_CONF0_GPIO16 0xC828
#define VF_TAB_PAD_CONF0_GPIO17 0xcd2a
#define VF_TAB_PAD_CONF0_GPIO18 0xccaa
#define VF_TAB_PAD_CONF0_GPIO19 0xccaa
#define VF_TAB_PAD_CONF0_GPIO20 0xccaa
#define VF_TAB_PAD_CONF0_GPIO21 0xCCA9
#define VF_TAB_PAD_CONF0_GPIO22 0xccaa
#define VF_TAB_PAD_CONF0_GPIO23 0xCD2A
#define VF_TAB_PAD_CONF0_GPIO24 0x8d02
#define VF_TAB_PAD_CONF0_GPIO25 0x8d02
#define VF_TAB_PAD_CONF0_GPIO26 0x8d02
#define VF_TAB_PAD_CONF0_GPIO27 0x8d02
#define VF_TAB_PAD_CONF0_GPIO28 0x8D02
#define VF_TAB_PAD_CONF0_GPIO29 0x8D02
#define VF_TAB_PAD_CONF0_GPIO30 0x8D00
#define VF_TAB_PAD_CONF0_GPIO31 0xCD2A
#define VF_TAB_PAD_CONF0_GPIO32 0x208d51
#define VF_TAB_PAD_CONF0_GPIO33 0x8cd1
#define VF_TAB_PAD_CONF0_GPIO34 0x8cd1
#define VF_TAB_PAD_CONF0_GPIO35 0x8cd1
#define VF_TAB_PAD_CONF0_GPIO36 0x8cd1
#define VF_TAB_PAD_CONF0_GPIO37 0x8cd1
#define VF_TAB_PAD_CONF0_GPIO38 0x8cd1
#define VF_TAB_PAD_CONF0_GPIO39 0x8cd1
#define VF_TAB_PAD_CONF0_GPIO40 0x8cd1
#define VF_TAB_PAD_CONF0_GPIO41 0x8cd1
#define VF_TAB_PAD_CONF0_GPIO42 0x208d51
#define VF_TAB_PAD_CONF0_GPIO43 0x208d51
#define VF_TAB_PAD_CONF0_GPIO44 0x8cd1
#define VF_TAB_PAD_CONF0_GPIO45 0x8cd1
#define VF_TAB_PAD_CONF0_GPIO46 0x8cd1
#define VF_TAB_PAD_CONF0_GPIO47 0x8cd1
#define VF_TAB_PAD_CONF0_GPIO48 0x8cd1
#define VF_TAB_PAD_CONF0_GPIO49 0x8d51
#define VF_TAB_PAD_CONF0_GPIO50 0x8cd1
#define VF_TAB_PAD_CONF0_GPIO51 0x8cd1
#define VF_TAB_PAD_CONF0_GPIO52 0x8cd1
#define VF_TAB_PAD_CONF0_GPIO53 0x8cd1
#define VF_TAB_PAD_CONF0_GPIO54 0xcca9
#define VF_TAB_PAD_CONF0_GPIO55 0x8cd1
#define VF_TAB_PAD_CONF0_GPIO56 0xcd29
#define VF_TAB_PAD_CONF0_GPIO57 0x8C80
#define VF_TAB_PAD_CONF0_GPIO58 0x8C80
#define VF_TAB_PAD_CONF0_GPIO59 0x8C80
#define VF_TAB_PAD_CONF0_GPIO60 0x8C80
#define VF_TAB_PAD_CONF0_GPIO61 0x8800
#define VF_TAB_PAD_CONF0_GPIO62 0x8D00
#define VF_TAB_PAD_CONF0_GPIO63 0x8800
#define VF_TAB_PAD_CONF0_GPIO64 0x8800
#define VF_TAB_PAD_CONF0_GPIO65 0xC828
#define VF_TAB_PAD_CONF0_GPIO66 0xC828
#define VF_TAB_PAD_CONF0_GPIO67 0xC828
#define VF_TAB_PAD_CONF0_GPIO68 0xCCA8
#define VF_TAB_PAD_CONF0_GPIO69 0xC828
#define VF_TAB_PAD_CONF0_GPIO70 0xCCA8
//
// PAD_CONF1
//
#define VF_TAB_PAD_CONF1_GPIO0 0x20002
#define VF_TAB_PAD_CONF1_GPIO1 0x20002
#define VF_TAB_PAD_CONF1_GPIO2 0x20002
#define VF_TAB_PAD_CONF1_GPIO3 0x20002
#define VF_TAB_PAD_CONF1_GPIO4 0x20002
#define VF_TAB_PAD_CONF1_GPIO5 0x20002
#define VF_TAB_PAD_CONF1_GPIO6 0x1F000F
#define VF_TAB_PAD_CONF1_GPIO7 0x1F000F
#define VF_TAB_PAD_CONF1_GPIO8 0x1F000F
#define VF_TAB_PAD_CONF1_GPIO9 0x1F000F
#define VF_TAB_PAD_CONF1_GPIO10 0x1F000F
#define VF_TAB_PAD_CONF1_GPIO11 0x1F000F
#define VF_TAB_PAD_CONF1_GPIO12 0x1F000F
#define VF_TAB_PAD_CONF1_GPIO13 0x1F000F
#define VF_TAB_PAD_CONF1_GPIO14 0x20002
#define VF_TAB_PAD_CONF1_GPIO15 0x20002
#define VF_TAB_PAD_CONF1_GPIO16 0x20002
#define VF_TAB_PAD_CONF1_GPIO17 0x20002
#define VF_TAB_PAD_CONF1_GPIO18 0x20002
#define VF_TAB_PAD_CONF1_GPIO19 0x20002
#define VF_TAB_PAD_CONF1_GPIO20 0x20002
#define VF_TAB_PAD_CONF1_GPIO21 0x20002
#define VF_TAB_PAD_CONF1_GPIO22 0x20002
#define VF_TAB_PAD_CONF1_GPIO23 0x20002
#define VF_TAB_PAD_CONF1_GPIO24 0x00000
#define VF_TAB_PAD_CONF1_GPIO25 0x00000
#define VF_TAB_PAD_CONF1_GPIO26 0x00000
#define VF_TAB_PAD_CONF1_GPIO27 0x00000
#define VF_TAB_PAD_CONF1_GPIO28 0x00000
#define VF_TAB_PAD_CONF1_GPIO29 0x00000
#define VF_TAB_PAD_CONF1_GPIO30 0x00000
#define VF_TAB_PAD_CONF1_GPIO31 0x20002
#define VF_TAB_PAD_CONF1_GPIO32 0x00000
#define VF_TAB_PAD_CONF1_GPIO33 0x00000
#define VF_TAB_PAD_CONF1_GPIO34 0x00000
#define VF_TAB_PAD_CONF1_GPIO35 0x00000
#define VF_TAB_PAD_CONF1_GPIO36 0x00000
#define VF_TAB_PAD_CONF1_GPIO37 0x00000
#define VF_TAB_PAD_CONF1_GPIO38 0x00000
#define VF_TAB_PAD_CONF1_GPIO39 0x00000
#define VF_TAB_PAD_CONF1_GPIO40 0x00000
#define VF_TAB_PAD_CONF1_GPIO41 0x00000
#define VF_TAB_PAD_CONF1_GPIO42 0x00000
#define VF_TAB_PAD_CONF1_GPIO43 0x00000
#define VF_TAB_PAD_CONF1_GPIO44 0x00000
#define VF_TAB_PAD_CONF1_GPIO45 0x00000
#define VF_TAB_PAD_CONF1_GPIO46 0x00000
#define VF_TAB_PAD_CONF1_GPIO47 0x00000
#define VF_TAB_PAD_CONF1_GPIO48 0x00000
#define VF_TAB_PAD_CONF1_GPIO49 0x00000
#define VF_TAB_PAD_CONF1_GPIO50 0x00000
#define VF_TAB_PAD_CONF1_GPIO51 0x00000
#define VF_TAB_PAD_CONF1_GPIO52 0x00000
#define VF_TAB_PAD_CONF1_GPIO53 0x00000
#define VF_TAB_PAD_CONF1_GPIO54 0x20002
#define VF_TAB_PAD_CONF1_GPIO55 0x00000
#define VF_TAB_PAD_CONF1_GPIO56 0x20002
#define VF_TAB_PAD_CONF1_GPIO57 0x00000
#define VF_TAB_PAD_CONF1_GPIO58 0x00000
#define VF_TAB_PAD_CONF1_GPIO59 0x00000
#define VF_TAB_PAD_CONF1_GPIO60 0x00000
#define VF_TAB_PAD_CONF1_GPIO61 0x00000
#define VF_TAB_PAD_CONF1_GPIO62 0x00000
#define VF_TAB_PAD_CONF1_GPIO63 0x00000
#define VF_TAB_PAD_CONF1_GPIO64 0x00000
#define VF_TAB_PAD_CONF1_GPIO65 0x20002
#define VF_TAB_PAD_CONF1_GPIO66 0x20002
#define VF_TAB_PAD_CONF1_GPIO67 0x20002
#define VF_TAB_PAD_CONF1_GPIO68 0x20002
#define VF_TAB_PAD_CONF1_GPIO69 0x20002
#define VF_TAB_PAD_CONF1_GPIO70 0x20002
//
// PAD_VAL
//
#define VF_TAB_PAD_VAL_GPIO0 0x2
#define VF_TAB_PAD_VAL_GPIO1 0x2
#define VF_TAB_PAD_VAL_GPIO2 0x2
#define VF_TAB_PAD_VAL_GPIO3 0x2
#define VF_TAB_PAD_VAL_GPIO4 0x2
#define VF_TAB_PAD_VAL_GPIO5 0x2
#define VF_TAB_PAD_VAL_GPIO6 0x2
#define VF_TAB_PAD_VAL_GPIO7 0x2
#define VF_TAB_PAD_VAL_GPIO8 0x2
#define VF_TAB_PAD_VAL_GPIO9 0x2
#define VF_TAB_PAD_VAL_GPIO10 0x2
#define VF_TAB_PAD_VAL_GPIO11 0x2
#define VF_TAB_PAD_VAL_GPIO12 0x2
#define VF_TAB_PAD_VAL_GPIO13 0x2
#define VF_TAB_PAD_VAL_GPIO14 0x2
#define VF_TAB_PAD_VAL_GPIO15 0x2
#define VF_TAB_PAD_VAL_GPIO16 0x4
#define VF_TAB_PAD_VAL_GPIO17 0x2
#define VF_TAB_PAD_VAL_GPIO18 0x2
#define VF_TAB_PAD_VAL_GPIO19 0x2
#define VF_TAB_PAD_VAL_GPIO20 0x2
#define VF_TAB_PAD_VAL_GPIO21 0x2
#define VF_TAB_PAD_VAL_GPIO22 0x2
#define VF_TAB_PAD_VAL_GPIO23 0x2
#define VF_TAB_PAD_VAL_GPIO24 0x2
#define VF_TAB_PAD_VAL_GPIO25 0x2
#define VF_TAB_PAD_VAL_GPIO26 0x2
#define VF_TAB_PAD_VAL_GPIO27 0x2
#define VF_TAB_PAD_VAL_GPIO28 0x2
#define VF_TAB_PAD_VAL_GPIO29 0x2
#define VF_TAB_PAD_VAL_GPIO30 0x2
#define VF_TAB_PAD_VAL_GPIO31 0x2
#define VF_TAB_PAD_VAL_GPIO32 0x2
#define VF_TAB_PAD_VAL_GPIO33 0x2
#define VF_TAB_PAD_VAL_GPIO34 0x2
#define VF_TAB_PAD_VAL_GPIO35 0x2
#define VF_TAB_PAD_VAL_GPIO36 0x2
#define VF_TAB_PAD_VAL_GPIO37 0x2
#define VF_TAB_PAD_VAL_GPIO38 0x2
#define VF_TAB_PAD_VAL_GPIO39 0x2
#define VF_TAB_PAD_VAL_GPIO40 0x2
#define VF_TAB_PAD_VAL_GPIO41 0x2
#define VF_TAB_PAD_VAL_GPIO42 0x2
#define VF_TAB_PAD_VAL_GPIO43 0x2
#define VF_TAB_PAD_VAL_GPIO44 0x2
#define VF_TAB_PAD_VAL_GPIO45 0x2
#define VF_TAB_PAD_VAL_GPIO46 0x2
#define VF_TAB_PAD_VAL_GPIO47 0x2
#define VF_TAB_PAD_VAL_GPIO48 0x2
#define VF_TAB_PAD_VAL_GPIO49 0x2
#define VF_TAB_PAD_VAL_GPIO50 0x2
#define VF_TAB_PAD_VAL_GPIO51 0x2
#define VF_TAB_PAD_VAL_GPIO52 0x2
#define VF_TAB_PAD_VAL_GPIO53 0x2
#define VF_TAB_PAD_VAL_GPIO54 0x2
#define VF_TAB_PAD_VAL_GPIO55 0x2
#define VF_TAB_PAD_VAL_GPIO56 0x2
#define VF_TAB_PAD_VAL_GPIO57 0x2
#define VF_TAB_PAD_VAL_GPIO58 0x2
#define VF_TAB_PAD_VAL_GPIO59 0x2
#define VF_TAB_PAD_VAL_GPIO60 0x2
#define VF_TAB_PAD_VAL_GPIO61 0x4
#define VF_TAB_PAD_VAL_GPIO62 0x2
#define VF_TAB_PAD_VAL_GPIO63 0x2
#define VF_TAB_PAD_VAL_GPIO64 0x2
#define VF_TAB_PAD_VAL_GPIO65 0x2
#define VF_TAB_PAD_VAL_GPIO66 0x2
#define VF_TAB_PAD_VAL_GPIO67 0x0
#define VF_TAB_PAD_VAL_GPIO68 0x2
#define VF_TAB_PAD_VAL_GPIO69 0x4
#define VF_TAB_PAD_VAL_GPIO70 0x2
//
// PAD_DFT
//
#define VF_TAB_PAD_DFT_GPIO0 0xC
#define VF_TAB_PAD_DFT_GPIO1 0xC
#define VF_TAB_PAD_DFT_GPIO2 0xC
#define VF_TAB_PAD_DFT_GPIO3 0xC
#define VF_TAB_PAD_DFT_GPIO4 0xC
#define VF_TAB_PAD_DFT_GPIO5 0xC
#define VF_TAB_PAD_DFT_GPIO6 0xC
#define VF_TAB_PAD_DFT_GPIO7 0xC
#define VF_TAB_PAD_DFT_GPIO8 0xC
#define VF_TAB_PAD_DFT_GPIO9 0xC
#define VF_TAB_PAD_DFT_GPIO10 0xC
#define VF_TAB_PAD_DFT_GPIO11 0xC
#define VF_TAB_PAD_DFT_GPIO12 0xC
#define VF_TAB_PAD_DFT_GPIO13 0xC
#define VF_TAB_PAD_DFT_GPIO14 0xC
#define VF_TAB_PAD_DFT_GPIO15 0xC
#define VF_TAB_PAD_DFT_GPIO16 0xC
#define VF_TAB_PAD_DFT_GPIO17 0xC
#define VF_TAB_PAD_DFT_GPIO18 0xC
#define VF_TAB_PAD_DFT_GPIO19 0xC
#define VF_TAB_PAD_DFT_GPIO20 0xC
#define VF_TAB_PAD_DFT_GPIO21 0xC
#define VF_TAB_PAD_DFT_GPIO22 0xC
#define VF_TAB_PAD_DFT_GPIO23 0xC
#define VF_TAB_PAD_DFT_GPIO24 0xC
#define VF_TAB_PAD_DFT_GPIO25 0xC
#define VF_TAB_PAD_DFT_GPIO26 0xC
#define VF_TAB_PAD_DFT_GPIO27 0xC
#define VF_TAB_PAD_DFT_GPIO28 0xC
#define VF_TAB_PAD_DFT_GPIO29 0xC
#define VF_TAB_PAD_DFT_GPIO30 0xC
#define VF_TAB_PAD_DFT_GPIO31 0xC
#define VF_TAB_PAD_DFT_GPIO32 0xC
#define VF_TAB_PAD_DFT_GPIO33 0xC
#define VF_TAB_PAD_DFT_GPIO34 0xC
#define VF_TAB_PAD_DFT_GPIO35 0xC
#define VF_TAB_PAD_DFT_GPIO36 0xC
#define VF_TAB_PAD_DFT_GPIO37 0xC
#define VF_TAB_PAD_DFT_GPIO38 0xC
#define VF_TAB_PAD_DFT_GPIO39 0xC
#define VF_TAB_PAD_DFT_GPIO40 0xC
#define VF_TAB_PAD_DFT_GPIO41 0xC
#define VF_TAB_PAD_DFT_GPIO42 0xC
#define VF_TAB_PAD_DFT_GPIO43 0xC
#define VF_TAB_PAD_DFT_GPIO44 0xC
#define VF_TAB_PAD_DFT_GPIO45 0xC
#define VF_TAB_PAD_DFT_GPIO46 0xC
#define VF_TAB_PAD_DFT_GPIO47 0xC
#define VF_TAB_PAD_DFT_GPIO48 0xC
#define VF_TAB_PAD_DFT_GPIO49 0xC
#define VF_TAB_PAD_DFT_GPIO50 0xC
#define VF_TAB_PAD_DFT_GPIO51 0xC
#define VF_TAB_PAD_DFT_GPIO52 0xC
#define VF_TAB_PAD_DFT_GPIO53 0xC
#define VF_TAB_PAD_DFT_GPIO54 0xC
#define VF_TAB_PAD_DFT_GPIO55 0xC
#define VF_TAB_PAD_DFT_GPIO56 0xC
#define VF_TAB_PAD_DFT_GPIO57 0xC
#define VF_TAB_PAD_DFT_GPIO58 0xC
#define VF_TAB_PAD_DFT_GPIO59 0xC
#define VF_TAB_PAD_DFT_GPIO60 0xC
#define VF_TAB_PAD_DFT_GPIO61 0xC
#define VF_TAB_PAD_DFT_GPIO62 0xC
#define VF_TAB_PAD_DFT_GPIO63 0xC
#define VF_TAB_PAD_DFT_GPIO64 0xC
#define VF_TAB_PAD_DFT_GPIO65 0xC
#define VF_TAB_PAD_DFT_GPIO66 0xC
#define VF_TAB_PAD_DFT_GPIO67 0xC
#define VF_TAB_PAD_DFT_GPIO68 0xC
#define VF_TAB_PAD_DFT_GPIO69 0xC
#define VF_TAB_PAD_DFT_GPIO70 0xC
//
//SUS WELL
//
//
// CONF0
//
#define VF_TAB_PAD_CONF0_GPIO_SUS0 0xCCA8
#define VF_TAB_PAD_CONF0_GPIO_SUS1 0xCCA8
#define VF_TAB_PAD_CONF0_GPIO_SUS2 0xCCA8
#define VF_TAB_PAD_CONF0_GPIO_SUS3 0xCD28
#define VF_TAB_PAD_CONF0_GPIO_SUS4 0xCD28
#define VF_TAB_PAD_CONF0_GPIO_SUS5 0xCD28
#define VF_TAB_PAD_CONF0_GPIO_SUS6 0x8850
#define VF_TAB_PAD_CONF0_GPIO_SUS7 0x8850
#define VF_TAB_PAD_CONF0_GPIO_SUS8 0xCCA8
#define VF_TAB_PAD_CONF0_GPIO_SUS9 0xCCA8
#define VF_TAB_PAD_CONF0_GPIO_SUS10 0xCCA8
#define VF_TAB_PAD_CONF0_GPIO_SUS11 0xC828
#define VF_TAB_PAD_CONF0_GPIO_SUS12 0xC828
#define VF_TAB_PAD_CONF0_GPIO_SUS13 0xCCA8
#define VF_TAB_PAD_CONF0_GPIO_SUS14 0xCCA8
#define VF_TAB_PAD_CONF0_GPIO_SUS15 0x8C80
#define VF_TAB_PAD_CONF0_GPIO_SUS16 0xC828
//
// CONF1
//
#define VF_TAB_PAD_CONF1_GPIO_SUS0 0
#define VF_TAB_PAD_CONF1_GPIO_SUS1 0
#define VF_TAB_PAD_CONF1_GPIO_SUS2 0
#define VF_TAB_PAD_CONF1_GPIO_SUS3 0
#define VF_TAB_PAD_CONF1_GPIO_SUS4 0
#define VF_TAB_PAD_CONF1_GPIO_SUS5 0
#define VF_TAB_PAD_CONF1_GPIO_SUS6 0
#define VF_TAB_PAD_CONF1_GPIO_SUS7 0
#define VF_TAB_PAD_CONF1_GPIO_SUS8 0
#define VF_TAB_PAD_CONF1_GPIO_SUS9 0
#define VF_TAB_PAD_CONF1_GPIO_SUS10 0
#define VF_TAB_PAD_CONF1_GPIO_SUS11 0
#define VF_TAB_PAD_CONF1_GPIO_SUS12 0
#define VF_TAB_PAD_CONF1_GPIO_SUS13 0
#define VF_TAB_PAD_CONF1_GPIO_SUS14 0
#define VF_TAB_PAD_CONF1_GPIO_SUS15 0
#define VF_TAB_PAD_CONF1_GPIO_SUS16 0
//
// PAD_VAL
//
#define VF_TAB_PAD_VAL_GPIO_SUS0 0
#define VF_TAB_PAD_VAL_GPIO_SUS1 0
#define VF_TAB_PAD_VAL_GPIO_SUS2 0
#define VF_TAB_PAD_VAL_GPIO_SUS3 0
#define VF_TAB_PAD_VAL_GPIO_SUS4 0
#define VF_TAB_PAD_VAL_GPIO_SUS5 0
#define VF_TAB_PAD_VAL_GPIO_SUS6 0
#define VF_TAB_PAD_VAL_GPIO_SUS7 0
#define VF_TAB_PAD_VAL_GPIO_SUS8 0
#define VF_TAB_PAD_VAL_GPIO_SUS9 0
#define VF_TAB_PAD_VAL_GPIO_SUS10 0
#define VF_TAB_PAD_VAL_GPIO_SUS11 0
#define VF_TAB_PAD_VAL_GPIO_SUS12 0
#define VF_TAB_PAD_VAL_GPIO_SUS13 0
#define VF_TAB_PAD_VAL_GPIO_SUS14 0
#define VF_TAB_PAD_VAL_GPIO_SUS15 0
#define VF_TAB_PAD_VAL_GPIO_SUS16 0
//
// PAD_DFT
//
#define VF_TAB_PAD_DFT_GPIO_SUS0 0
#define VF_TAB_PAD_DFT_GPIO_SUS1 0
#define VF_TAB_PAD_DFT_GPIO_SUS2 0
#define VF_TAB_PAD_DFT_GPIO_SUS3 0
#define VF_TAB_PAD_DFT_GPIO_SUS4 0
#define VF_TAB_PAD_DFT_GPIO_SUS5 0
#define VF_TAB_PAD_DFT_GPIO_SUS6 0
#define VF_TAB_PAD_DFT_GPIO_SUS7 0
#define VF_TAB_PAD_DFT_GPIO_SUS8 0
#define VF_TAB_PAD_DFT_GPIO_SUS9 0
#define VF_TAB_PAD_DFT_GPIO_SUS10 0
#define VF_TAB_PAD_DFT_GPIO_SUS11 0
#define VF_TAB_PAD_DFT_GPIO_SUS12 0
#define VF_TAB_PAD_DFT_GPIO_SUS13 0
#define VF_TAB_PAD_DFT_GPIO_SUS14 0
#define VF_TAB_PAD_DFT_GPIO_SUS15 0
#define VF_TAB_PAD_DFT_GPIO_SUS16 0
//
//
// GPIO Register Settings for ValleyFalls (Netbook)
//
//
// IO Space configyuration registers
// Field Descriptions:
// USE: Defines the pin's usage model: GPIO (G) or Native (N) mode.
// I/O: Defines whether GPIOs are inputs (I) or outputs (O).
// (Note: Only meaningful for pins used as GPIOs.)
// LVL: This field gives you the initial value for "output" GPIO's.
// (Note: The output level is dependent upon whether the pin is inverted.)
// TPE: Defines whether Trigger Positive Edge Enable.
// TNE: Defines whether Trigger Negative Edge Enable.
// WAKE_EN: only support in SUS community
// (Note: Only affects the level sent to the GPE logic and does not
// affect the level read through the GPIO registers.)
//
//
// Memory spcae configuration registers
//
// Field Descriptions:
// PAD releated:
// PAD_CONF0
// PAD_CONF1
// PAD_VAL
// PAD_DFT
//
// Notes:
// 1. N = Native , G = GPIO , I = Input, O = Output, - = BOTH/NOT SURE
//
// Signal UsedAs USE I/O LVL TPE TNE PCONF0 PCONF1 PVAL PDFT
// -------------------------------------------------------------------------------------------------------------------------
// GPIO0 UART1_RXD-L N I - - - cd29h - - -
// GPIO1 UART1_TXD-0 N O - - - cd29h - - -
// *GPIO2 UART1_RTS_B-1 N I - - - cca9h - - -
// *GPIO3 UART1_CTS_B-H N O - - - cca9h - - -
// GPIO4 NMI_B-H G - - - - cca9h - - -
// GPIO5 GPIO_D5 G - - - - cca9h - - -
// GPIO6 GPIO_D6 G O - - - 8d51h - - -
// GPIO7 GPIO_D7 G O - - - 8cd1h - - -
// GPIO8 GPIO_D8 G O - - - 8cd1h - - -
// GPIO9 GPIO_D9 G I - - - 8cd1h - - -
// GPIO10 GPIO_D10 G O - - - 8d51h - - -
// GPIO11 GPIO_D11 G O - - - 8cd1h - - -
// GPIO12 GPIO_D12 G O - - - 8cd1h - - -
// GPIO13 GPIO_D13 G I - - - 8d51h - - -
// GPIO14 SATA_GP0 N - - - - - - - -
// GPIO15 SATA_GP1-L N - - - - ccaah - - -
// GPIO16 SATA_LEDN-OD-O N O - - - - - - -
// GPIO17 PCIE_CLKREQ0B-20K,H N I - - - cd2ah - - -
// GPIO18 PCIE_CLKREQ1B-20K,H N O - - - ccaah - - -
// GPIO19 PCIE_CLKREQ2B-20K,H N I - - - ccaah - - -
// GPIO20 PCIE_CLKREQ3B-20K,H N - - - - ccaah - - -
// GPIO21 PCIE_CLKREQ4B-20K,H N - - - - - - - -
// GPIO22 FLEX_CLK_SE0-20K,L N O - - - ccaah - - -
// GPIO23 FLEX_CLK_SE1-20K,L N - - - - - - - -
// GPIO24 HDA_RSTB N O - - - 8d02h - - -
// GPIO25 HDA_SYNC N O - - - 8d02h - - -
// GPIO26 HDA_CLK N O - - - 8d02h - - -
// GPIO27 HDA_SDO N I - - - 8d02h - - -
// GPIO28 HDA_SDI0 N I - - - - - - -
// GPIO29 HDA_SDI1 N O - - - - - - -
// GPIO30 HDA_DOCKRSTB N I - - - - - - -
// GPIO31 HDA_DOCKENB N O - - - - - - -
// GPIO32 SDMMC1_CLK N - - - - 208d51h - - -
// GPIO33 SDMMC1_D0 N - - - - 8cd1h - - -
// GPIO34 SDMMC1_D1 N - - - - 8cd1h - - -
// GPIO35 SDMMC1_D2 N - - - - 8cd1h - - -
// GPIO36 SDMMC1_D3_CD_B N - - - - 8cd1h - - -
// GPIO37 MMC1_D4_SD_WE N - - - - 8cd1h - - -
// GPIO38 MMC1_D5 N - - - - 8cd1h - - -
// GPIO39 MMC1_D6 N - - - - 8cd1h - - -
// GPIO40 MMC1_D7 N - - - - 8cd1h - - -
// GPIO41 SDMMC1_CMD N - - - - 8cd1h - - -
// GPIO42 MMC1_RESET_B N - - - - 208d51h - - -
// GPIO43 SDMMC2_CLK N - - - - 208d51h - - -
// GPIO44 SDMMC2_D0 N - - - - 8cd1h - - -
// GPIO45 SDMMC2_D1 N - - - - 8cd1h - - -
// GPIO46 SDMMC2_D2 N - - - - 8cd1h - - -
// GPIO47 SDMMC2_D3_CD_B N - - - - 8cd1h - - -
// GPIO48 SDMMC2_CMD N - - - - 8cd1h - - -
// GPIO49 SDMMC3_CLK N - - - - 8d51h - - -
// GPIO50 SDMMC3_D0 N - - - - 8cd1h - - -
// GPIO51 SDMMC3_D1 N - - - - 8cd1h - - -
// GPIO52 SDMMC3_D2 N - - - - 8cd1h - - -
// GPIO53 SDMMC3_D3 N - - - - 8cd1h - - -
// GPIO54 SDMMC3_CD_B N - - - - cca9h - - -
// GPIO55 SDMMC3_CMD N - - - - 8cd1h - - -
// GPIO56 SDMMC3_1P8_EN N - - - - cd29h - - -
// GPIO57 LPC_AD0 N - - - - - - - -
// GPIO58 LPC_AD1 N - - - - - - - -
// GPIO59 LPC_AD2 N - - - - - - - -
// GPIO60 LPC_AD3 N - - - - - - - -
// GPIO61 LPC_FRAMEB N O - - - - - - -
// GPIO62 LPC_CLKOUT0 N O - - - - - - -
// GPIO63 LPC_CLKOUT1 N O - - - - - - -
// GPIO64 LPC_CLKRUNB N - - - - - - - -
// GPIO65 SMB_DATA N - - - - - - - -
// GPIO66 SMB_CLK N - - - - - - - -
// GPIO67 SMB_ALERTB N - - - - - - - -
// GPIO68 ILB_SEIRQ N - - - - - - - -
// GPIO69 SPKR N O - - - - - - -
//SUS WELL
//GPIO_SUS0 GPIO_SUS0 N O - - - CCA8h - - -
//GPIO_SUS1 GPIO_SUS1 N O - - - CCA8h - - -
//GPIO_SUS2 GPIO_SUS2 N O - - - CCA8h - - -
//GPIO_SUS3 GPIO_SUS3 N O - - - CD28h - - -
//GPIO_SUS4 GPIO_SUS4 N O - - - CD28h - - -
//GPIO_SUS5 GPIO_SUS5 N O - - - CD28h - - -
//GPIO_SUS6 SUSPWRDNACK-0 N O - - - 8850h - - -
//GPIO_SUS7 PMU_SLP_DDRVTT_B-0 N O - - - 8850h - - -
//GPIO_SUS8 PMU_WAKE_B-20K,H N O - - - CCA8h - - -
//GPIO_SUS9 PMU_PWRBTN_B-20K,H N O - - - CCA8h - - -
//GPIO_SUS10 PMU_WAKE_LAN_B-20K,H N O - - - CCA8h - - -
//GPIO_SUS11 SUS_STAT_B-1 N O - - - C828h - - -
//GPIO_SUS12 PMU_SUSCLK-0 N O - - - C828h - - -
//GPIO_SUS13 USB_OC0_B-20K,H N O - - - CCA8h - - -
//GPIO_SUS14 USB_OC1_B-20K,H N O - - - CCA8h - - -
//GPIO_SUS15 SPI_CS1_B-20K,H N O - - - 8C80h - - -
//GPIO_SUS16 SPI_CS1_B-20K,H N O - - - C828h - - -
//
#define VF_NET_GPIO_USE_SEL_VAL_0_31 0x00000000
#define VF_NET_GPIO_USE_SEL_VAL_32_63 0x00000000
#define VF_NET_GPIO_USE_SEL_VAL_64_70 0x00000000
#define VF_NET_GPIO_USE_SEL_VAL_SUS 0x00000000
//
//1010 --00 0100 01-- 0101 --0- 0001 1010
//
#define VF_NET_GPIO_IO_SEL_VAL_0_31 0x00000000 // BIT30 | BIT28 | BIT27 | BIT19 | BIT17 | BIT13 | BIT9 | BIT2 | BIT0
#define VF_NET_GPIO_IO_SEL_VAL_32_63 0x00000000
#define VF_NET_GPIO_IO_SEL_VAL_64_70 0x00000000
#define VF_NET_GPIO_IO_SEL_VAL_SUS 0x00000000
#define VF_NET_GPIO_LVL_VAL_0_31 0x00000000
#define VF_NET_GPIO_LVL_VAL_32_63 0x00000000
#define VF_NET_GPIO_LVL_VAL_64_70 0x00000000
#define VF_NET_GPIO_LVL_VAL_SUS 0x00000000
#define VF_NET_GPIO_TPE_VAL_0_31 0x00000000
#define VF_NET_GPIO_TPE_VAL_SUS 0x00000000
#define VF_NET_GPIO_TNE_VAL_0_31 0x00000000
#define VF_NET_GPIO_TNE_VAL_SUS 0x00000000
#define VF_NET_GPIO_TS_VAL_0_31 0x00000000
#define VF_NET_GPIO_TS_VAL_SUS 0x00000000
//
// Memory space registers
//
//
// CONF0
//
#define VF_NET_PAD_CONF0_GPIO0 0xcd29
#define VF_NET_PAD_CONF0_GPIO1 0xcd29
#define VF_NET_PAD_CONF0_GPIO2 0xcca9
#define VF_NET_PAD_CONF0_GPIO3 0xcca9
#define VF_NET_PAD_CONF0_GPIO4 0xcca8
#define VF_NET_PAD_CONF0_GPIO5 0xcca8
#define VF_NET_PAD_CONF0_GPIO6 0x8d50
#define VF_NET_PAD_CONF0_GPIO7 0x8cd0
#define VF_NET_PAD_CONF0_GPIO8 0x8cd0
#define VF_NET_PAD_CONF0_GPIO9 0x8cd0
#define VF_NET_PAD_CONF0_GPIO10 0x8d50
#define VF_NET_PAD_CONF0_GPIO11 0x8cd0
#define VF_NET_PAD_CONF0_GPIO12 0x8cd0
#define VF_NET_PAD_CONF0_GPIO13 0x8d50
#define VF_NET_PAD_CONF0_GPIO14 0xCCA8
#define VF_NET_PAD_CONF0_GPIO15 0xccaa
#define VF_NET_PAD_CONF0_GPIO16 0xC828
#define VF_NET_PAD_CONF0_GPIO17 0xcd2a
#define VF_NET_PAD_CONF0_GPIO18 0xccaa
#define VF_NET_PAD_CONF0_GPIO19 0xccaa
#define VF_NET_PAD_CONF0_GPIO20 0xccaa
#define VF_NET_PAD_CONF0_GPIO21 0xCCA9
#define VF_NET_PAD_CONF0_GPIO22 0xccaa
#define VF_NET_PAD_CONF0_GPIO23 0xCD2A
#define VF_NET_PAD_CONF0_GPIO24 0x8d02
#define VF_NET_PAD_CONF0_GPIO25 0x8d02
#define VF_NET_PAD_CONF0_GPIO26 0x8d02
#define VF_NET_PAD_CONF0_GPIO27 0x8d02
#define VF_NET_PAD_CONF0_GPIO28 0x8D02
#define VF_NET_PAD_CONF0_GPIO29 0x8D02
#define VF_NET_PAD_CONF0_GPIO30 0x8D00
#define VF_NET_PAD_CONF0_GPIO31 0xCD2A
#define VF_NET_PAD_CONF0_GPIO32 0x208d51
#define VF_NET_PAD_CONF0_GPIO33 0x8cd1
#define VF_NET_PAD_CONF0_GPIO34 0x8cd1
#define VF_NET_PAD_CONF0_GPIO35 0x8cd1
#define VF_NET_PAD_CONF0_GPIO36 0x8cd1
#define VF_NET_PAD_CONF0_GPIO37 0x8cd1
#define VF_NET_PAD_CONF0_GPIO38 0x8cd1
#define VF_NET_PAD_CONF0_GPIO39 0x8cd1
#define VF_NET_PAD_CONF0_GPIO40 0x8cd1
#define VF_NET_PAD_CONF0_GPIO41 0x8cd1
#define VF_NET_PAD_CONF0_GPIO42 0x208d51
#define VF_NET_PAD_CONF0_GPIO43 0x208d51
#define VF_NET_PAD_CONF0_GPIO44 0x8cd1
#define VF_NET_PAD_CONF0_GPIO45 0x8cd1
#define VF_NET_PAD_CONF0_GPIO46 0x8cd1
#define VF_NET_PAD_CONF0_GPIO47 0x8cd1
#define VF_NET_PAD_CONF0_GPIO48 0x8cd1
#define VF_NET_PAD_CONF0_GPIO49 0x8d51
#define VF_NET_PAD_CONF0_GPIO50 0x8cd1
#define VF_NET_PAD_CONF0_GPIO51 0x8cd1
#define VF_NET_PAD_CONF0_GPIO52 0x8cd1
#define VF_NET_PAD_CONF0_GPIO53 0x8cd1
#define VF_NET_PAD_CONF0_GPIO54 0xcca9
#define VF_NET_PAD_CONF0_GPIO55 0x8cd1
#define VF_NET_PAD_CONF0_GPIO56 0xcd29
#define VF_NET_PAD_CONF0_GPIO57 0x8C80
#define VF_NET_PAD_CONF0_GPIO58 0x8C80
#define VF_NET_PAD_CONF0_GPIO59 0x8C80
#define VF_NET_PAD_CONF0_GPIO60 0x8C80
#define VF_NET_PAD_CONF0_GPIO61 0x8800
#define VF_NET_PAD_CONF0_GPIO62 0x8D00
#define VF_NET_PAD_CONF0_GPIO63 0x8800
#define VF_NET_PAD_CONF0_GPIO64 0x8800
#define VF_NET_PAD_CONF0_GPIO65 0xC828
#define VF_NET_PAD_CONF0_GPIO66 0xC828
#define VF_NET_PAD_CONF0_GPIO67 0xC828
#define VF_NET_PAD_CONF0_GPIO68 0xCCA8
#define VF_NET_PAD_CONF0_GPIO69 0xC828
#define VF_NET_PAD_CONF0_GPIO70 0xCCA8
//
// PAD_CONF1
//
#define VF_NET_PAD_CONF1_GPIO0 0x20002
#define VF_NET_PAD_CONF1_GPIO1 0x20002
#define VF_NET_PAD_CONF1_GPIO2 0x20002
#define VF_NET_PAD_CONF1_GPIO3 0x20002
#define VF_NET_PAD_CONF1_GPIO4 0x20002
#define VF_NET_PAD_CONF1_GPIO5 0x20002
#define VF_NET_PAD_CONF1_GPIO6 0x1F000F
#define VF_NET_PAD_CONF1_GPIO7 0x1F000F
#define VF_NET_PAD_CONF1_GPIO8 0x1F000F
#define VF_NET_PAD_CONF1_GPIO9 0x1F000F
#define VF_NET_PAD_CONF1_GPIO10 0x1F000F
#define VF_NET_PAD_CONF1_GPIO11 0x1F000F
#define VF_NET_PAD_CONF1_GPIO12 0x1F000F
#define VF_NET_PAD_CONF1_GPIO13 0x1F000F
#define VF_NET_PAD_CONF1_GPIO14 0x20002
#define VF_NET_PAD_CONF1_GPIO15 0x20002
#define VF_NET_PAD_CONF1_GPIO16 0x20002
#define VF_NET_PAD_CONF1_GPIO17 0x20002
#define VF_NET_PAD_CONF1_GPIO18 0x20002
#define VF_NET_PAD_CONF1_GPIO19 0x20002
#define VF_NET_PAD_CONF1_GPIO20 0x20002
#define VF_NET_PAD_CONF1_GPIO21 0x20002
#define VF_NET_PAD_CONF1_GPIO22 0x20002
#define VF_NET_PAD_CONF1_GPIO23 0x20002
#define VF_NET_PAD_CONF1_GPIO24 0x00000
#define VF_NET_PAD_CONF1_GPIO25 0x00000
#define VF_NET_PAD_CONF1_GPIO26 0x00000
#define VF_NET_PAD_CONF1_GPIO27 0x00000
#define VF_NET_PAD_CONF1_GPIO28 0x00000
#define VF_NET_PAD_CONF1_GPIO29 0x00000
#define VF_NET_PAD_CONF1_GPIO30 0x00000
#define VF_NET_PAD_CONF1_GPIO31 0x20002
#define VF_NET_PAD_CONF1_GPIO32 0x00000
#define VF_NET_PAD_CONF1_GPIO33 0x00000
#define VF_NET_PAD_CONF1_GPIO34 0x00000
#define VF_NET_PAD_CONF1_GPIO35 0x00000
#define VF_NET_PAD_CONF1_GPIO36 0x00000
#define VF_NET_PAD_CONF1_GPIO37 0x00000
#define VF_NET_PAD_CONF1_GPIO38 0x00000
#define VF_NET_PAD_CONF1_GPIO39 0x00000
#define VF_NET_PAD_CONF1_GPIO40 0x00000
#define VF_NET_PAD_CONF1_GPIO41 0x00000
#define VF_NET_PAD_CONF1_GPIO42 0x00000
#define VF_NET_PAD_CONF1_GPIO43 0x00000
#define VF_NET_PAD_CONF1_GPIO44 0x00000
#define VF_NET_PAD_CONF1_GPIO45 0x00000
#define VF_NET_PAD_CONF1_GPIO46 0x00000
#define VF_NET_PAD_CONF1_GPIO47 0x00000
#define VF_NET_PAD_CONF1_GPIO48 0x00000
#define VF_NET_PAD_CONF1_GPIO49 0x00000
#define VF_NET_PAD_CONF1_GPIO50 0x00000
#define VF_NET_PAD_CONF1_GPIO51 0x00000
#define VF_NET_PAD_CONF1_GPIO52 0x00000
#define VF_NET_PAD_CONF1_GPIO53 0x00000
#define VF_NET_PAD_CONF1_GPIO54 0x20002
#define VF_NET_PAD_CONF1_GPIO55 0x00000
#define VF_NET_PAD_CONF1_GPIO56 0x20002
#define VF_NET_PAD_CONF1_GPIO57 0x00000
#define VF_NET_PAD_CONF1_GPIO58 0x00000
#define VF_NET_PAD_CONF1_GPIO59 0x00000
#define VF_NET_PAD_CONF1_GPIO60 0x00000
#define VF_NET_PAD_CONF1_GPIO61 0x00000
#define VF_NET_PAD_CONF1_GPIO62 0x00000
#define VF_NET_PAD_CONF1_GPIO63 0x00000
#define VF_NET_PAD_CONF1_GPIO64 0x00000
#define VF_NET_PAD_CONF1_GPIO65 0x20002
#define VF_NET_PAD_CONF1_GPIO66 0x20002
#define VF_NET_PAD_CONF1_GPIO67 0x20002
#define VF_NET_PAD_CONF1_GPIO68 0x20002
#define VF_NET_PAD_CONF1_GPIO69 0x20002
#define VF_NET_PAD_CONF1_GPIO70 0x20002
//
// PAD_VAL
//
#define VF_NET_PAD_VAL_GPIO0 0x2
#define VF_NET_PAD_VAL_GPIO1 0x2
#define VF_NET_PAD_VAL_GPIO2 0x2
#define VF_NET_PAD_VAL_GPIO3 0x2
#define VF_NET_PAD_VAL_GPIO4 0x2
#define VF_NET_PAD_VAL_GPIO5 0x2
#define VF_NET_PAD_VAL_GPIO6 0x2
#define VF_NET_PAD_VAL_GPIO7 0x2
#define VF_NET_PAD_VAL_GPIO8 0x2
#define VF_NET_PAD_VAL_GPIO9 0x2
#define VF_NET_PAD_VAL_GPIO10 0x2
#define VF_NET_PAD_VAL_GPIO11 0x2
#define VF_NET_PAD_VAL_GPIO12 0x2
#define VF_NET_PAD_VAL_GPIO13 0x2
#define VF_NET_PAD_VAL_GPIO14 0x2
#define VF_NET_PAD_VAL_GPIO15 0x2
#define VF_NET_PAD_VAL_GPIO16 0x4
#define VF_NET_PAD_VAL_GPIO17 0x2
#define VF_NET_PAD_VAL_GPIO18 0x2
#define VF_NET_PAD_VAL_GPIO19 0x2
#define VF_NET_PAD_VAL_GPIO20 0x2
#define VF_NET_PAD_VAL_GPIO21 0x2
#define VF_NET_PAD_VAL_GPIO22 0x2
#define VF_NET_PAD_VAL_GPIO23 0x2
#define VF_NET_PAD_VAL_GPIO24 0x2
#define VF_NET_PAD_VAL_GPIO25 0x2
#define VF_NET_PAD_VAL_GPIO26 0x2
#define VF_NET_PAD_VAL_GPIO27 0x2
#define VF_NET_PAD_VAL_GPIO28 0x2
#define VF_NET_PAD_VAL_GPIO29 0x2
#define VF_NET_PAD_VAL_GPIO30 0x2
#define VF_NET_PAD_VAL_GPIO31 0x2
#define VF_NET_PAD_VAL_GPIO32 0x2
#define VF_NET_PAD_VAL_GPIO33 0x2
#define VF_NET_PAD_VAL_GPIO34 0x2
#define VF_NET_PAD_VAL_GPIO35 0x2
#define VF_NET_PAD_VAL_GPIO36 0x2
#define VF_NET_PAD_VAL_GPIO37 0x2
#define VF_NET_PAD_VAL_GPIO38 0x2
#define VF_NET_PAD_VAL_GPIO39 0x2
#define VF_NET_PAD_VAL_GPIO40 0x2
#define VF_NET_PAD_VAL_GPIO41 0x2
#define VF_NET_PAD_VAL_GPIO42 0x2
#define VF_NET_PAD_VAL_GPIO43 0x2
#define VF_NET_PAD_VAL_GPIO44 0x2
#define VF_NET_PAD_VAL_GPIO45 0x2
#define VF_NET_PAD_VAL_GPIO46 0x2
#define VF_NET_PAD_VAL_GPIO47 0x2
#define VF_NET_PAD_VAL_GPIO48 0x2
#define VF_NET_PAD_VAL_GPIO49 0x2
#define VF_NET_PAD_VAL_GPIO50 0x2
#define VF_NET_PAD_VAL_GPIO51 0x2
#define VF_NET_PAD_VAL_GPIO52 0x2
#define VF_NET_PAD_VAL_GPIO53 0x2
#define VF_NET_PAD_VAL_GPIO54 0x2
#define VF_NET_PAD_VAL_GPIO55 0x2
#define VF_NET_PAD_VAL_GPIO56 0x2
#define VF_NET_PAD_VAL_GPIO57 0x2
#define VF_NET_PAD_VAL_GPIO58 0x2
#define VF_NET_PAD_VAL_GPIO59 0x2
#define VF_NET_PAD_VAL_GPIO60 0x2
#define VF_NET_PAD_VAL_GPIO61 0x4
#define VF_NET_PAD_VAL_GPIO62 0x2
#define VF_NET_PAD_VAL_GPIO63 0x2
#define VF_NET_PAD_VAL_GPIO64 0x2
#define VF_NET_PAD_VAL_GPIO65 0x2
#define VF_NET_PAD_VAL_GPIO66 0x2
#define VF_NET_PAD_VAL_GPIO67 0x0
#define VF_NET_PAD_VAL_GPIO68 0x2
#define VF_NET_PAD_VAL_GPIO69 0x4
#define VF_NET_PAD_VAL_GPIO70 0x2
//
// PAD_DFT
//
#define VF_NET_PAD_DFT_GPIO0 0xC
#define VF_NET_PAD_DFT_GPIO1 0xC
#define VF_NET_PAD_DFT_GPIO2 0xC
#define VF_NET_PAD_DFT_GPIO3 0xC
#define VF_NET_PAD_DFT_GPIO4 0xC
#define VF_NET_PAD_DFT_GPIO5 0xC
#define VF_NET_PAD_DFT_GPIO6 0xC
#define VF_NET_PAD_DFT_GPIO7 0xC
#define VF_NET_PAD_DFT_GPIO8 0xC
#define VF_NET_PAD_DFT_GPIO9 0xC
#define VF_NET_PAD_DFT_GPIO10 0xC
#define VF_NET_PAD_DFT_GPIO11 0xC
#define VF_NET_PAD_DFT_GPIO12 0xC
#define VF_NET_PAD_DFT_GPIO13 0xC
#define VF_NET_PAD_DFT_GPIO14 0xC
#define VF_NET_PAD_DFT_GPIO15 0xC
#define VF_NET_PAD_DFT_GPIO16 0xC
#define VF_NET_PAD_DFT_GPIO17 0xC
#define VF_NET_PAD_DFT_GPIO18 0xC
#define VF_NET_PAD_DFT_GPIO19 0xC
#define VF_NET_PAD_DFT_GPIO20 0xC
#define VF_NET_PAD_DFT_GPIO21 0xC
#define VF_NET_PAD_DFT_GPIO22 0xC
#define VF_NET_PAD_DFT_GPIO23 0xC
#define VF_NET_PAD_DFT_GPIO24 0xC
#define VF_NET_PAD_DFT_GPIO25 0xC
#define VF_NET_PAD_DFT_GPIO26 0xC
#define VF_NET_PAD_DFT_GPIO27 0xC
#define VF_NET_PAD_DFT_GPIO28 0xC
#define VF_NET_PAD_DFT_GPIO29 0xC
#define VF_NET_PAD_DFT_GPIO30 0xC
#define VF_NET_PAD_DFT_GPIO31 0xC
#define VF_NET_PAD_DFT_GPIO32 0xC
#define VF_NET_PAD_DFT_GPIO33 0xC
#define VF_NET_PAD_DFT_GPIO34 0xC
#define VF_NET_PAD_DFT_GPIO35 0xC
#define VF_NET_PAD_DFT_GPIO36 0xC
#define VF_NET_PAD_DFT_GPIO37 0xC
#define VF_NET_PAD_DFT_GPIO38 0xC
#define VF_NET_PAD_DFT_GPIO39 0xC
#define VF_NET_PAD_DFT_GPIO40 0xC
#define VF_NET_PAD_DFT_GPIO41 0xC
#define VF_NET_PAD_DFT_GPIO42 0xC
#define VF_NET_PAD_DFT_GPIO43 0xC
#define VF_NET_PAD_DFT_GPIO44 0xC
#define VF_NET_PAD_DFT_GPIO45 0xC
#define VF_NET_PAD_DFT_GPIO46 0xC
#define VF_NET_PAD_DFT_GPIO47 0xC
#define VF_NET_PAD_DFT_GPIO48 0xC
#define VF_NET_PAD_DFT_GPIO49 0xC
#define VF_NET_PAD_DFT_GPIO50 0xC
#define VF_NET_PAD_DFT_GPIO51 0xC
#define VF_NET_PAD_DFT_GPIO52 0xC
#define VF_NET_PAD_DFT_GPIO53 0xC
#define VF_NET_PAD_DFT_GPIO54 0xC
#define VF_NET_PAD_DFT_GPIO55 0xC
#define VF_NET_PAD_DFT_GPIO56 0xC
#define VF_NET_PAD_DFT_GPIO57 0xC
#define VF_NET_PAD_DFT_GPIO58 0xC
#define VF_NET_PAD_DFT_GPIO59 0xC
#define VF_NET_PAD_DFT_GPIO60 0xC
#define VF_NET_PAD_DFT_GPIO61 0xC
#define VF_NET_PAD_DFT_GPIO62 0xC
#define VF_NET_PAD_DFT_GPIO63 0xC
#define VF_NET_PAD_DFT_GPIO64 0xC
#define VF_NET_PAD_DFT_GPIO65 0xC
#define VF_NET_PAD_DFT_GPIO66 0xC
#define VF_NET_PAD_DFT_GPIO67 0xC
#define VF_NET_PAD_DFT_GPIO68 0xC
#define VF_NET_PAD_DFT_GPIO69 0xC
#define VF_NET_PAD_DFT_GPIO70 0xC
//
// PCONF0
//
#define VF_NET_PAD_CONF0_GPIO_SUS0 0xCCA8
#define VF_NET_PAD_CONF0_GPIO_SUS1 0xCCA8
#define VF_NET_PAD_CONF0_GPIO_SUS2 0xCCA8
#define VF_NET_PAD_CONF0_GPIO_SUS3 0xCD28
#define VF_NET_PAD_CONF0_GPIO_SUS4 0xCD28
#define VF_NET_PAD_CONF0_GPIO_SUS5 0xCD28
#define VF_NET_PAD_CONF0_GPIO_SUS6 0x8850
#define VF_NET_PAD_CONF0_GPIO_SUS7 0x8850
#define VF_NET_PAD_CONF0_GPIO_SUS8 0xCCA8
#define VF_NET_PAD_CONF0_GPIO_SUS9 0xCCA8
#define VF_NET_PAD_CONF0_GPIO_SUS10 0xCCA8
#define VF_NET_PAD_CONF0_GPIO_SUS11 0xC828
#define VF_NET_PAD_CONF0_GPIO_SUS12 0xC828
#define VF_NET_PAD_CONF0_GPIO_SUS13 0xCCA8
#define VF_NET_PAD_CONF0_GPIO_SUS14 0xCCA8
#define VF_NET_PAD_CONF0_GPIO_SUS15 0x8C80
#define VF_NET_PAD_CONF0_GPIO_SUS16 0xC828
//
// PCONF1
//
#define VF_NET_PAD_CONF1_GPIO_SUS0 0
#define VF_NET_PAD_CONF1_GPIO_SUS1 0
#define VF_NET_PAD_CONF1_GPIO_SUS2 0
#define VF_NET_PAD_CONF1_GPIO_SUS3 0
#define VF_NET_PAD_CONF1_GPIO_SUS4 0
#define VF_NET_PAD_CONF1_GPIO_SUS5 0
#define VF_NET_PAD_CONF1_GPIO_SUS6 0
#define VF_NET_PAD_CONF1_GPIO_SUS7 0
#define VF_NET_PAD_CONF1_GPIO_SUS8 0
#define VF_NET_PAD_CONF1_GPIO_SUS9 0
#define VF_NET_PAD_CONF1_GPIO_SUS10 0
#define VF_NET_PAD_CONF1_GPIO_SUS11 0
#define VF_NET_PAD_CONF1_GPIO_SUS12 0
#define VF_NET_PAD_CONF1_GPIO_SUS13 0
#define VF_NET_PAD_CONF1_GPIO_SUS14 0
#define VF_NET_PAD_CONF1_GPIO_SUS15 0
#define VF_NET_PAD_CONF1_GPIO_SUS16 0
#define VF_NET_PAD_VAL_GPIO_SUS0 0
#define VF_NET_PAD_VAL_GPIO_SUS1 0
#define VF_NET_PAD_VAL_GPIO_SUS2 0
#define VF_NET_PAD_VAL_GPIO_SUS3 0
#define VF_NET_PAD_VAL_GPIO_SUS4 0
#define VF_NET_PAD_VAL_GPIO_SUS5 0
#define VF_NET_PAD_VAL_GPIO_SUS6 0
#define VF_NET_PAD_VAL_GPIO_SUS7 0
#define VF_NET_PAD_VAL_GPIO_SUS8 0
#define VF_NET_PAD_VAL_GPIO_SUS9 0
#define VF_NET_PAD_VAL_GPIO_SUS10 0
#define VF_NET_PAD_VAL_GPIO_SUS11 0
#define VF_NET_PAD_VAL_GPIO_SUS12 0
#define VF_NET_PAD_VAL_GPIO_SUS13 0
#define VF_NET_PAD_VAL_GPIO_SUS14 0
#define VF_NET_PAD_VAL_GPIO_SUS15 0
#define VF_NET_PAD_VAL_GPIO_SUS16 0
#define VF_NET_PAD_DFT_GPIO_SUS0 0
#define VF_NET_PAD_DFT_GPIO_SUS1 0
#define VF_NET_PAD_DFT_GPIO_SUS2 0
#define VF_NET_PAD_DFT_GPIO_SUS3 0
#define VF_NET_PAD_DFT_GPIO_SUS4 0
#define VF_NET_PAD_DFT_GPIO_SUS5 0
#define VF_NET_PAD_DFT_GPIO_SUS6 0
#define VF_NET_PAD_DFT_GPIO_SUS7 0
#define VF_NET_PAD_DFT_GPIO_SUS8 0
#define VF_NET_PAD_DFT_GPIO_SUS9 0
#define VF_NET_PAD_DFT_GPIO_SUS10 0
#define VF_NET_PAD_DFT_GPIO_SUS11 0
#define VF_NET_PAD_DFT_GPIO_SUS12 0
#define VF_NET_PAD_DFT_GPIO_SUS13 0
#define VF_NET_PAD_DFT_GPIO_SUS14 0
#define VF_NET_PAD_DFT_GPIO_SUS15 0
#define VF_NET_PAD_DFT_GPIO_SUS16 0
//
// Function Prototypes
//
EFI_STATUS
PlatformPchInit (
IN SYSTEM_CONFIGURATION *SystemConfiguration,
IN CONST EFI_PEI_SERVICES **PeiServices,
IN UINT16 PlatformType
);
EFI_STATUS
PlatformCpuInit (
IN CONST EFI_PEI_SERVICES **PeiServices,
IN SYSTEM_CONFIGURATION *SystemConfiguration,
IN EFI_PLATFORM_CPU_INFO *PlatformCpuInfo
);
EFI_STATUS
PeimInitializeFlashMap (
IN EFI_FFS_FILE_HEADER *FfsHeader,
IN CONST EFI_PEI_SERVICES **PeiServices
);
EFI_STATUS
PeimInstallFlashMapPpi (
IN EFI_FFS_FILE_HEADER *FfsHeader,
IN CONST EFI_PEI_SERVICES **PeiServices
);
EFI_STATUS
EFIAPI
IchReset (
IN CONST EFI_PEI_SERVICES **PeiServices
)
;
BOOLEAN
GetSleepTypeAfterWakeup (
IN CONST EFI_PEI_SERVICES **PeiServices,
OUT UINT16 *SleepType
);
EFI_STATUS
EFIAPI
GetWakeupEventAndSaveToHob (
IN CONST EFI_PEI_SERVICES **PeiServices
)
;
EFI_STATUS
EFIAPI
MemoryDiscoveredPpiNotifyCallback (
IN CONST EFI_PEI_SERVICES **PeiServices,
IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDescriptor,
IN VOID *Ppi
)
;
EFI_STATUS
EFIAPI
PeiGetVariable (
IN CONST EFI_PEI_SERVICES **PeiServices,
IN CHAR16 *VariableName,
IN EFI_GUID * VendorGuid,
OUT UINT32 *Attributes OPTIONAL,
IN OUT UINTN *DataSize,
OUT VOID *Data
)
;
EFI_STATUS
EFIAPI
PeiGetNextVariableName (
IN CONST EFI_PEI_SERVICES **PeiServices,
IN OUT UINTN *VariableNameSize,
IN OUT CHAR16 *VariableName,
IN OUT EFI_GUID *VendorGuid
)
;
EFI_STATUS
UpdateBootMode (
IN CONST EFI_PEI_SERVICES **PeiServices,
IN OUT EFI_PLATFORM_INFO_HOB *PlatformInfoHob
);
EFI_STATUS
EFIAPI
EndOfPeiPpiNotifyCallback (
IN CONST EFI_PEI_SERVICES **PeiServices,
IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDescriptor,
IN VOID *Ppi
);
EFI_STATUS
EFIAPI
PeimInitializeRecovery (
IN CONST EFI_PEI_SERVICES **PeiServices
)
;
VOID
CheckPowerOffNow (
VOID
);
VOID
IchGpioInit (
IN UINT16 PlatformType,
IN SYSTEM_CONFIGURATION *SystemConfiguration
);
EFI_STATUS
PcieSecondaryBusReset (
IN CONST EFI_PEI_SERVICES **PeiServices,
IN UINT8 Bus,
IN UINT8 Dev,
IN UINT8 Fun
);
VOID
SetPlatformBootMode (
IN CONST EFI_PEI_SERVICES **PeiServices,
IN OUT EFI_PLATFORM_INFO_HOB *PlatformInfoHob
);
BOOLEAN
CheckIfJumperSetForRecovery(
VOID
);
EFI_STATUS
EFIAPI
FindFv (
IN EFI_PEI_FIND_FV_PPI *This,
IN CONST EFI_PEI_SERVICES **PeiServices,
IN OUT UINT8 *FvNumber,
OUT EFI_FIRMWARE_VOLUME_HEADER **FVAddress
);
BOOLEAN
IsA16Inverted (
);
EFI_STATUS
EFIAPI
CpuOnlyReset (
IN CONST EFI_PEI_SERVICES **PeiServices
);
EFI_STATUS
EFIAPI
InitLan (
IN CONST EFI_PEI_SERVICES **PeiServices,
IN SYSTEM_CONFIGURATION *Buffer
);
EFI_STATUS
EFIAPI
Stall (
IN CONST EFI_PEI_SERVICES **PeiServices,
IN CONST EFI_PEI_STALL_PPI *This,
IN UINTN Microseconds
);
EFI_STATUS
MultiPlatformInfoInit (
IN CONST EFI_PEI_SERVICES **PeiServices,
IN OUT EFI_PLATFORM_INFO_HOB *PlatformInfoHob
);
BOOLEAN
IsRecoveryJumper (
IN CONST EFI_PEI_SERVICES **PeiServices,
IN OUT EFI_PLATFORM_INFO_HOB *PlatformInfoHob
);
EFI_STATUS
CheckOsSelection (
IN CONST EFI_PEI_SERVICES **PeiServices,
IN SYSTEM_CONFIGURATION *SystemConfiguration
);
EFI_STATUS
PlatformInfoUpdate (
IN CONST EFI_PEI_SERVICES **PeiServices,
IN OUT EFI_PLATFORM_INFO_HOB *PlatformInfoHob,
IN SYSTEM_CONFIGURATION *SystemConfiguration
);
VOID
PlatformSsaInit (
IN SYSTEM_CONFIGURATION *SystemConfiguration,
IN CONST EFI_PEI_SERVICES **PeiServices
);
EFI_STATUS
InitializePlatform (
IN CONST EFI_PEI_SERVICES **PeiServices,
IN EFI_PLATFORM_INFO_HOB *PlatformInfoHob,
IN SYSTEM_CONFIGURATION *SystemConfiguration
);
VOID
MchInit (
IN CONST EFI_PEI_SERVICES **PeiServices
);
EFI_STATUS
EFIAPI
SetPeiCacheMode (
IN CONST EFI_PEI_SERVICES **PeiServices
);
EFI_STATUS
EFIAPI
SetDxeCacheMode (
IN CONST EFI_PEI_SERVICES **PeiServices
);
EFI_STATUS
GPIO_initialization (
IN EFI_PEI_SERVICES **PeiServices,
IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDescriptor,
IN VOID *SmbusPpi
);
BOOLEAN
IsRtcUipAlwaysSet (
IN CONST EFI_PEI_SERVICES **PeiServices
);
EFI_STATUS
InitPchUsb (
IN CONST EFI_PEI_SERVICES **PeiServices
);
EFI_STATUS
EFIAPI
PublishMemoryTypeInfo (
void
);
#endif
|