summaryrefslogtreecommitdiff
path: root/Chipset/SB/SmiHandlerGeneric.c
blob: 112cc29963421661166ac3c88f185bbb38bfdfe9 (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
//*************************************************************************
//*************************************************************************
//**                                                                     **
//**        (C)Copyright 1985-2011, American Megatrends, Inc.            **
//**                                                                     **
//**                       All Rights Reserved.                          **
//**                                                                     **
//**      5555 Oakbrook Parkway, Suite 200, Norcross, GA 30093           **
//**                                                                     **
//**                       Phone: (770)-246-8600                         **
//**                                                                     **
//*************************************************************************
//*************************************************************************

//*************************************************************************
// $Header: /Alaska/BIN/Chipset/Intel/SouthBridge/LynxPoint/Intel Pch SB Chipset/SmmChildDispatcher/SmiHandlerGeneric.c 2     4/25/12 9:35a Victortu $
//
// $Revision: 2 $
//
// $Date: 4/25/12 9:35a $
//*************************************************************************
// Revision History
// ----------------
// $Log: /Alaska/BIN/Chipset/Intel/SouthBridge/LynxPoint/Intel Pch SB Chipset/SmmChildDispatcher/SmiHandlerGeneric.c $
// 
// 2     4/25/12 9:35a Victortu
// [TAG]         None
// [Category]    Improvement
// [Description] Reprogram SMM ChildDispatcher drivers.
// [Files]       SmiHandlerGeneric.c; SmiHandlerPorting.c;
// SmiHandlerGeneric2.c; SmmChildDispatch2Main.c; SmmChildDispatcher2.mak;
// SmmChildDispatcher2.sdl; SmmChildDispatch.h; SmmChildDispatchMain.c;
// SmmChildDispatchProtocol.c; SmmChildDispatcher.dxs;
// PchSmiDispatcher.sdl
// 
// 1     2/08/12 8:27a Yurenlai
// Intel Lynx Point/SB eChipset initially releases.
// 
//*************************************************************************
//<AMI_FHDR_START>
//
// Name:        SmiHandlerGeneric.c
//
// Description: This file contains implementation of generic SMI handler
//              functions 
//
//<AMI_FHDR_END>
//*************************************************************************

//---------------------------------------------------------------------------
// Include(s)
//---------------------------------------------------------------------------

#include <Token.h>
#include <AmiDxeLib.h>
#include <AmiCspLib.h>
#include "SmmChildDispatch.h"
#include <DXE.h>
//---------------------------------------------------------------------------
// Constant, Macro and Type Definition(s)
//---------------------------------------------------------------------------
// Constant Definition(s)

// Macro Definition(s)

// Type Definition(s)

// Function Prototype(s)

//---------------------------------------------------------------------------
// Variable and External Declaration(s)
//---------------------------------------------------------------------------
// Variable Declaration(s)

static UINT64 gCurrentInterval  = 0xffffffffffffffff;
static UINT16 gEnabledUsbSmi    = 0;
static UINT16 gActiveUsbSmi     = 0;
static UINT32 gEnabledGpiSmi    = 0;
static UINT32 gEnabledTcoSmi    = 0;
static UINT32 gEnabledIoTrapSmi = 0;
static UINT32 gIoTrapWriteData  = 0;

BOOLEAN     gIsLastState = FALSE;

// GUID Definition(s)
EFI_GUID gDxeGuid = DXE_SERVICES_TABLE_GUID;

// Protocol Definition(s)

// External Declaration(s)

extern EFI_SMM_SYSTEM_TABLE *pSmst;
extern SMM_CHILD_DISPATCHER SmmHandler[];
extern EFI_SMM_SMI_CONTEXT  SmiContext;

extern UINT64 gSupportedIntervals[];

// Function Definition(s)

//---------------------------------------------------------------------------

//---------------------------------------------------------------------------
//                       Software SMI Handler functions
//---------------------------------------------------------------------------

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmSwAddHandler
//
// Description: This function adds SW SMI handler
//
// Input:       *Context - Pointer to SMI context
//
// Output:      EFI_SUCCESS
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS SmmSwAddHandler (
    IN VOID             *Context )
{
//#### Use Intel RC     if (SmmHandler[EfiSmmSwSmi].RegisteredCallbacks.Size == 1) SwSmiEnable();

    return EFI_SUCCESS;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmSwRemoveHandler
//
// Description: This function removes SW SMI handler
//
// Input:       *Context - Pointer to SMI context
//
// Output:      EFI_SUCCESS
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS SmmSwRemoveHandler (
    IN VOID             *Context )
{
//#### Use Intel RC    if (SmmHandler[EfiSmmSwSmi].RegisteredCallbacks.Size == 1) SwSmiDisable();

    return EFI_SUCCESS;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmSwVerifyContext
//
// Description: This function verifies SW SMI context
//
// Input:       *Context - Pointer to SMI context
//
// Output:      EFI_STATUS
//                  EFI_INVALID_PARAMETER - Given context is invalid
//                  EFI_SUCCESS - Context verified
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS SmmSwVerifyContext (
    IN VOID             *Context )
{
//#### Use Intel RC    HANDLER_LINK *Handler = (HANDLER_LINK *)\
//#### Use Intel RC                            SmmHandler[EfiSmmSwSmi].RegisteredCallbacks.pHead;
//#### Use Intel RC    EFI_SMM_SW_DISPATCH_CONTEXT *SwContext;
//#### Use Intel RC    EFI_SMM_SW_DISPATCH_CONTEXT *RegisteredSwContext;

//#### Use Intel RC    SwContext = (EFI_SMM_SW_DISPATCH_CONTEXT *)Context;
//#### Use Intel RC    // First check if we already registered handler for this value
//#### Use Intel RC    while (Handler != NULL) {
//#### Use Intel RC        RegisteredSwContext = (EFI_SMM_SW_DISPATCH_CONTEXT *)Handler->Context;
//#### Use Intel RC        if(SwContext->SwSmiInputValue == RegisteredSwContext->SwSmiInputValue)
//#### Use Intel RC            // Handler with this value already registered 
//#### Use Intel RC            return EFI_INVALID_PARAMETER;       

//#### Use Intel RC        Handler = (HANDLER_LINK *)Handler->Link.pNext;
//#### Use Intel RC    }

//#### Use Intel RC    // Second check if given value is extended SMI value, 
//#### Use Intel RC    // check the lowest byte  
//#### Use Intel RC    if ((SwContext->SwSmiInputValue & 0xff) == EXTENDED_SMI)
//#### Use Intel RC        return EFI_SUCCESS;     // Accept value of UINTN size

//#### Use Intel RC    // Third check if given value is in default range
//#### Use Intel RC    return (SwContext->SwSmiInputValue > MAX_SW_SMI_INPUT_VALUE) ? \
//#### Use Intel RC                                          EFI_INVALID_PARAMETER : EFI_SUCCESS;

    return EFI_SUCCESS;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmSwGetContext
//
// Description: This function verifies SW SMI event and sets SW SMI context
//
// Input:       None
//
// Output:      BOOLEAN
//                  TRUE  - SW SMI occured, context saved
//                  FALSE - There was no SW SMI
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

BOOLEAN SmmSwGetContext (VOID)
{
    UINT16      SwSmiNumber;
    BOOLEAN     SwSmiDetected;

    // use intel ref code 
    return FALSE;

    SwSmiDetected = SwSmiDetect( &SwSmiNumber );

    if (SwSmiDetected) {
        if(SwSmiNumber == EXTENDED_SMI) {
            // Get the actual number from EAX register 
            SmiContext.SwContext.SwSmiInputValue = GetEAX();
        } else {
            SmiContext.SwContext.SwSmiInputValue = SwSmiNumber;
        }
    }

    return SwSmiDetected;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmSwDispatchSmi
//
// Description: This function dispatches SW SMI event based on context
//
// Input:       None
//
// Output:      None
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

VOID SmmSwDispatchSmi (VOID)
{
//#### Use Intel RC    HANDLER_LINK                *Handler;
//#### Use Intel RC    EFI_SMM_SW_DISPATCH_CONTEXT *SwContext;

//#### Use Intel RC    Handler = \
//#### Use Intel RC            (HANDLER_LINK *)SmmHandler[EfiSmmSwSmi].RegisteredCallbacks.pHead;
//#### Use Intel RC    while (Handler != NULL) {
//#### Use Intel RC        SwContext = (EFI_SMM_SW_DISPATCH_CONTEXT *)Handler->Context;
//#### Use Intel RC        if(SwContext->SwSmiInputValue == SmiContext.SwContext.SwSmiInputValue)
//#### Use Intel RC            Handler->Callback(Handler, SwContext);

//#### Use Intel RC        Handler = (HANDLER_LINK *)Handler->Link.pNext;
//#### Use Intel RC    }

//#### Use Intel RC    SwSmiClear();
}

//---------------------------------------------------------------------------
//                        Sleep SMI Handler functions
//---------------------------------------------------------------------------

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmSxAddHandler
//
// Description: This function adds Sx SMI handler
//
// Input:       *Context - Pointer to SMI context
//
// Output:      EFI_SUCCESS
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS SmmSxAddHandler (
    IN VOID             *Context )
{
//#### Use Intel RC#if SLP_SMI_ENABLE_ON_REGISTER
//#### Use Intel RC    if (SmmHandler[EfiSmmSxSmi].RegisteredCallbacks.Size == 1) SxSmiEnable();
//#### Use Intel RC#endif
    return EFI_SUCCESS;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmSxRemoveHandler
//
// Description: This function removes Sx SMI handler
//
// Input:       *Context - Pointer to SMI context
//
// Output:      EFI_SUCCESS
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS SmmSxRemoveHandler (
    IN VOID             *Context )
{
//#### Use Intel RC    if (SmmHandler[EfiSmmSxSmi].RegisteredCallbacks.Size == 1) SxSmiDisable();

    return EFI_SUCCESS;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmSxVerifyContext
//
// Description: This function verifies Sx SMI context
//
// Input:       *Context - Pointer to SMI context
//
// Output:      EFI_STATUS
//                  EFI_SUCCESS           - Context verified
//                  EFI_INVALID_PARAMETER - Given context is invalid
//                  EFI_UNSUPPORTED       - Context is not supported
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS SmmSxVerifyContext (
    IN VOID                 *Context )
{
    EFI_SMM_SX_DISPATCH_CONTEXT *SxContext;

    SxContext = (EFI_SMM_SX_DISPATCH_CONTEXT *)Context;
    if ((SxContext->Type >= EfiMaximumSleepType) || \
                                        (SxContext->Phase >= EfiMaximumPhase))
        return EFI_INVALID_PARAMETER;

    return ((SxContext->Phase) != SxExit) ? EFI_UNSUPPORTED : EFI_SUCCESS;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmSxGetContext
//
// Description: This function verifies Sx SMI event and sets SX SMI context
//
// Input:       None
//
// Output:      BOOLEAN
//                  TRUE  - Sx SMI occured, context saved
//                  FALSE - There was no SX SMI
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

BOOLEAN SmmSxGetContext (VOID)
{
    UINT16      SxSleepState;
    BOOLEAN     SxSmiDetected;
    // use intel ref code 
    return FALSE;

    SxSmiDetected = SxSmiDetect( &SxSleepState );

    SmiContext.SxContext.Type = SxSleepState;
    SmiContext.SxContext.Phase = SxEntry;

    return SxSmiDetected;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmSxDispatchSmi
//
// Description: This function dispatches Sx SMI event based on context
//
// Input:       None
//
// Output:      None
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

VOID SmmSxDispatchSmi (VOID)
{
//#### Use Intel RC    HANDLER_LINK                *Handler;
//#### Use Intel RC    EFI_SMM_SX_DISPATCH_CONTEXT *SxContext;

//#### Use Intel RC    Handler = \
//#### Use Intel RC            (HANDLER_LINK *)SmmHandler[EfiSmmSxSmi].RegisteredCallbacks.pHead;
//#### Use Intel RC    while (Handler != NULL) {
//#### Use Intel RC        SxContext = (EFI_SMM_SX_DISPATCH_CONTEXT *)Handler->Context;

//#### Use Intel RC        if ((SxContext->Type == SmiContext.SxContext.Type) && \
//#### Use Intel RC                            (SxContext->Phase == SmiContext.SxContext.Phase))
//#### Use Intel RC            Handler->Callback(Handler, SxContext);

//#### Use Intel RC        Handler = (HANDLER_LINK *)Handler->Link.pNext;
//#### Use Intel RC    }

//#### Use Intel RC    SxSmiClear();

//#### Use Intel RC    if (SmiContext.SxContext.Type == SxS0) return;

//#### Use Intel RC    PutToSleep( &(SmiContext.SxContext) );

    // Control returns here on S1.

//#### Use Intel RC    SxSmiClear();
}

//---------------------------------------------------------------------------
//                    Periodic timer SMI Handler functions
//---------------------------------------------------------------------------

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmTimerAddHandler
//
// Description: This function adds Periodic timer SMI handler
//
// Input:       *Context - Pointer to SMI context
//
// Output:      EFI_SUCCESS
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS SmmTimerAddHandler (
    IN VOID                 *Context )
{
//#### Use Intel RC    EFI_SMM_PERIODIC_TIMER_DISPATCH_CONTEXT *TimerContext;

//#### Use Intel RC    TimerContext = (EFI_SMM_PERIODIC_TIMER_DISPATCH_CONTEXT *)Context;

//#### Use Intel RC    TimerContext->TimerEnabled = TRUE;

//#### Use Intel RC    if (SmmHandler[EfiSmmPeriodicTimerSmi].RegisteredCallbacks.Size == 1) {
//#### Use Intel RC        gCurrentInterval = TimerContext->SmiTickInterval;
//#### Use Intel RC        TimerSetInterval( TimerContext->SmiTickInterval );
//#### Use Intel RC        TimerSmiClear();
//#### Use Intel RC        TimerSmiEnable();
//#### Use Intel RC        return EFI_SUCCESS;
//#### Use Intel RC    }

//#### Use Intel RC    if (gCurrentInterval > TimerContext->SmiTickInterval) {
//#### Use Intel RC        gCurrentInterval = TimerContext->SmiTickInterval;
//#### Use Intel RC        TimerSetInterval( TimerContext->SmiTickInterval );
//#### Use Intel RC    }
    return EFI_SUCCESS;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmTimerRemoveHandler
//
// Description: This function removes Periodic timer SMI handler
//
// Input:       *Context - Pointer to SMI context
//
// Output:      EFI_SUCCESS
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS SmmTimerRemoveHandler (
    IN VOID                 *Context )
{
//#### Use Intel RC    HANDLER_LINK *Handler = (HANDLER_LINK *)\
//#### Use Intel RC                 SmmHandler[EfiSmmPeriodicTimerSmi].RegisteredCallbacks.pHead;
//#### Use Intel RC    EFI_SMM_PERIODIC_TIMER_DISPATCH_CONTEXT *TimerContext;
//#### Use Intel RC    EFI_SMM_PERIODIC_TIMER_DISPATCH_CONTEXT *CurrentTimerContext;
//#### Use Intel RC    UINT64                                  Interval = 0xffffffffffffffff;

//#### Use Intel RC    UINT16      CurrentIntervalCounter = 0;
//#### Use Intel RC    UINT64      *SupportedIntervals = gSupportedIntervals;

//#### Use Intel RC    ((EFI_SMM_PERIODIC_TIMER_DISPATCH_CONTEXT *)Context)->TimerEnabled = \
//#### Use Intel RC                                                                        FALSE;

//#### Use Intel RC    if (SmmHandler[EfiSmmPeriodicTimerSmi].RegisteredCallbacks.Size == 1) {
//#### Use Intel RC        gCurrentInterval = 0xffffffffffffffff;
//#### Use Intel RC        TimerSmiDisable();
//#### Use Intel RC        return EFI_SUCCESS;
//#### Use Intel RC    }

//#### Use Intel RC    CurrentTimerContext = (EFI_SMM_PERIODIC_TIMER_DISPATCH_CONTEXT *)Context;
//#### Use Intel RC    while (Handler != NULL) {    
//#### Use Intel RC        TimerContext = \
//#### Use Intel RC                  (EFI_SMM_PERIODIC_TIMER_DISPATCH_CONTEXT *)Handler->Context;
//#### Use Intel RC        if (Interval > TimerContext->SmiTickInterval)
//#### Use Intel RC            Interval = TimerContext->SmiTickInterval;
//#### Use Intel RC        if (TimerContext->SmiTickInterval == \
//#### Use Intel RC                                         CurrentTimerContext->SmiTickInterval)
//#### Use Intel RC            CurrentIntervalCounter++;
//#### Use Intel RC        Handler = (HANDLER_LINK *)Handler->Link.pNext;
//#### Use Intel RC    }

//#### Use Intel RC    if ((Interval == CurrentTimerContext->SmiTickInterval) && \
//#### Use Intel RC                                              (CurrentIntervalCounter == 1)) {
//#### Use Intel RC        Interval = 0xffffffffffffffff;
//#### Use Intel RC        while (*SupportedIntervals != 0) {
//#### Use Intel RC            if (*SupportedIntervals != CurrentTimerContext->SmiTickInterval)
//#### Use Intel RC                if (*SupportedIntervals < Interval)
//#### Use Intel RC                    Interval = *SupportedIntervals;
//#### Use Intel RC            SupportedIntervals++;
//#### Use Intel RC        }
//#### Use Intel RC    }

//#### Use Intel RC    // This means lowest rate timer no longer active 
//#### Use Intel RC    if (gCurrentInterval < Interval) {
//#### Use Intel RC        gCurrentInterval = Interval;
//#### Use Intel RC        TimerSetInterval( Interval );
//#### Use Intel RC    }
    return EFI_SUCCESS;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmTimerVerifyContext
//
// Description: This function verifies Periodic timer SMI context
//
// Input:       *Context - Pointer to SMI context
//
// Output:      EFI_STATUS
//                  EFI_INVALID_PARAMETER - Given context is invalid
//                  EFI_SUCCESS           - Context verified
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS SmmTimerVerifyContext (
    IN VOID                 *Context )
{
    EFI_SMM_PERIODIC_TIMER_DISPATCH_CONTEXT *TimerContext;
    UINT64                                  *Interval = gSupportedIntervals;

    TimerContext = (EFI_SMM_PERIODIC_TIMER_DISPATCH_CONTEXT *)Context;
    while (*Interval != 0) {
        if (*Interval == TimerContext->SmiTickInterval) return EFI_SUCCESS;
        Interval++;
    }

    return EFI_INVALID_PARAMETER;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmTimerGetContext
//
// Description: This function verifies Periodic timer SMI event and sets
//              Periodic timer SMI context 
//
// Input:       None
//
// Output:      BOOLEAN
//                  TRUE  - Periodic timer SMI occured, context saved
//                  FALSE - There was no Periodic timer SMI
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

BOOLEAN SmmTimerGetContext (VOID)
{
    UINT16      TimerType;
    BOOLEAN     TimerSmiDetected;

    // use intel ref code 
    return FALSE;

    TimerSmiDetected = TimerSmiDetect( &TimerType );
    SmiContext.TimerContext.SmiTickInterval = gCurrentInterval;

    return TimerSmiDetected;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmTimerDispatchSmi
//
// Description: This function dispatches Periodic timer SMI event based on
//              context
//
// Input:       None
//
// Output:      None
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

VOID SmmTimerDispatchSmi (VOID)
{
//#### Use Intel RC    HANDLER_LINK *Handler = (HANDLER_LINK *)\
//#### Use Intel RC                 SmmHandler[EfiSmmPeriodicTimerSmi].RegisteredCallbacks.pHead;
//#### Use Intel RC    EFI_SMM_PERIODIC_TIMER_DISPATCH_CONTEXT *TimerContext;

//#### Use Intel RC    while (Handler != NULL) {
//#### Use Intel RC        TimerContext = \
//#### Use Intel RC                 (EFI_SMM_PERIODIC_TIMER_DISPATCH_CONTEXT *)Handler->Context;

//#### Use Intel RC        if (TimerContext->TimerEnabled) {
//#### Use Intel RC            TimerContext->ElapsedTime += \
//#### Use Intel RC                                     SmiContext.TimerContext.SmiTickInterval;
//#### Use Intel RC            if ((TimerContext->ElapsedTime) >= (TimerContext->Period)) {
//#### Use Intel RC                Handler->Callback(Handler, TimerContext);
//#### Use Intel RC                TimerContext->ElapsedTime = 0;
//#### Use Intel RC            }
//#### Use Intel RC        }
//#### Use Intel RC        Handler = (HANDLER_LINK *)Handler->Link.pNext;
//#### Use Intel RC    }

//#### Use Intel RC    TimerSmiClear();
}

//---------------------------------------------------------------------------
//                            USB SMI Handler functions
//---------------------------------------------------------------------------

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmUsbAddHandler
//
// Description: This function adds USB SMI handler
//
// Input:       *Context - Pointer to SMI context
//
// Output:      EFI_SUCCESS
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS SmmUsbAddHandler (
    IN VOID             *Context
)
{
    EFI_STATUS                   Status;
    EFI_SMM_USB_DISPATCH_CONTEXT *UsbContext;
    UINT16                       ControllerType;
    VOID                         *NewDp;
    UINTN                        Length;

    UsbContext = (EFI_SMM_USB_DISPATCH_CONTEXT *)Context;

    // Save USB device path protocol into SMM memory
    Length = DPLength( UsbContext->Device );
    Status = pSmst->SmmAllocatePool( 0, Length, &NewDp );
    if (EFI_ERROR(Status)) return Status;
    MemCpy( NewDp, UsbContext->Device, Length );
    UsbContext->Device = (EFI_DEVICE_PATH_PROTOCOL *)NewDp;

    ControllerType = GetControllerType( UsbContext->Device );
    if((ControllerType & gEnabledUsbSmi) == 0) {
        gEnabledUsbSmi |= ControllerType;
        UsbSmiSet( gEnabledUsbSmi );
    }

    return EFI_SUCCESS;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmUsbRemoveHandler
//
// Description: This function removes USB SMI handler
//
// Input:       *Context - Pointer to SMI context
//
// Output:      EFI_SUCCESS
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS SmmUsbRemoveHandler (
    IN VOID             *Context )
{
//#### Use Intel RC    HANDLER_LINK *Handler = (HANDLER_LINK *)\
//#### Use Intel RC                           SmmHandler[EfiSmmUsbSmi].RegisteredCallbacks.pHead;
//#### Use Intel RC    EFI_SMM_USB_DISPATCH_CONTEXT *UsbContext;
//#### Use Intel RC    UINT16                       ControllerType = 0;

//#### Use Intel RC    UsbContext = (EFI_SMM_USB_DISPATCH_CONTEXT *)Context;

//#### Use Intel RC    pSmst->SmmFreePool( UsbContext->Device );

//#### Use Intel RC    if (SmmHandler[EfiSmmUsbSmi].RegisteredCallbacks.Size == 1) {
//#### Use Intel RC        gEnabledUsbSmi = 0;
//#### Use Intel RC        UsbSmiSet( gEnabledUsbSmi );
//#### Use Intel RC        return EFI_SUCCESS;
//#### Use Intel RC    }

//#### Use Intel RC    while (Handler != NULL) {
//#### Use Intel RC        UsbContext = (EFI_SMM_USB_DISPATCH_CONTEXT *)Handler->Context;
//#### Use Intel RC        ControllerType |= GetControllerType( UsbContext->Device );
//#### Use Intel RC        Handler = (HANDLER_LINK *)Handler->Link.pNext;
//#### Use Intel RC    }

//#### Use Intel RC    if (ControllerType != gEnabledUsbSmi) {
//#### Use Intel RC        gEnabledUsbSmi = ControllerType;
//#### Use Intel RC        UsbSmiSet( gEnabledUsbSmi );
//#### Use Intel RC    }
    return EFI_SUCCESS;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmUsbVerifyContext
//
// Description: This function verifies USB SMI context
//
// Input:       *Context - Pointer to SMI context
//
// Output:      EFI_STATUS
//                  EFI_INVALID_PARAMETER - Given context is invalid
//                  EFI_SUCCESS           - Context verified
//                  EFI_UNSUPPORTED       - Context is not supported
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS SmmUsbVerifyContext ( 
    IN VOID                 *Context )
{
    EFI_SMM_USB_DISPATCH_CONTEXT    *UsbContext;
    UINT16                          ControllerType;

    UsbContext = (EFI_SMM_USB_DISPATCH_CONTEXT *)Context;
    ControllerType = GetControllerType( UsbContext->Device );
    if (((ControllerType & 3) == 0) || (UsbContext->Type > UsbWake))
        return EFI_INVALID_PARAMETER;

    return ((UsbContext->Type) > UsbLegacy) ? EFI_UNSUPPORTED : EFI_SUCCESS;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmUsbGetContext
//
// Description: This function verifies USB SMI event and sets USB SMI context
//
// Input:       None
//
// Output:      BOOLEAN
//                  TRUE  - USB SMI occured, context saved
//                  FALSE - There was no USB SMI
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

BOOLEAN SmmUsbGetContext (VOID)
{
    BOOLEAN     UsbSmiDetected;
    // use intel ref code 
    return FALSE;

    UsbSmiDetected = UsbSmiDetect( &gActiveUsbSmi );
    SmiContext.UsbContext.Type = UsbLegacy;

    return UsbSmiDetected;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmUsbDispatchSmi
//
// Description: This function dispatches USB SMI event based on context
//
// Input:       None
//
// Output:      None
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

VOID SmmUsbDispatchSmi (VOID)
{
//#### Use Intel RC    HANDLER_LINK *Handler = (HANDLER_LINK *)\
//#### Use Intel RC                           SmmHandler[EfiSmmUsbSmi].RegisteredCallbacks.pHead;
//#### Use Intel RC    EFI_SMM_USB_DISPATCH_CONTEXT *UsbContext;
//#### Use Intel RC    UINT16                       ControllerType;

//#### Use Intel RC    while (Handler != NULL) {
//#### Use Intel RC        UsbContext = (EFI_SMM_USB_DISPATCH_CONTEXT *)Handler->Context;
//#### Use Intel RC        ControllerType = GetControllerType( UsbContext->Device );

//#### Use Intel RC        if (((ControllerType & gActiveUsbSmi) != 0) && \
//#### Use Intel RC                            (UsbContext->Type == SmiContext.UsbContext.Type))
//#### Use Intel RC            Handler->Callback(Handler, UsbContext);

//#### Use Intel RC        Handler = (HANDLER_LINK *)Handler->Link.pNext;
//#### Use Intel RC    }

//#### Use Intel RC    UsbSmiClear( gActiveUsbSmi );

//#### Use Intel RC    gActiveUsbSmi = 0;
}

//---------------------------------------------------------------------------
//                          GPI SMI Handler functions
//---------------------------------------------------------------------------

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmGpiAddHandler
//
// Description: This function adds GPI SMI handler
//
// Input:       VOID *Context - Pointer to SMI context
//
// Output:      EFI_SUCCESS
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS SmmGpiAddHandler (
    IN VOID             *Context )
{
    EFI_SMM_GPI_DISPATCH_CONTEXT    *GpiContext;

    GpiContext = (EFI_SMM_GPI_DISPATCH_CONTEXT *)Context;
    if (((UINT32)(GpiContext->GpiNum) & gEnabledGpiSmi) == 0) {
        gEnabledGpiSmi |= (UINT32)(GpiContext->GpiNum);
        GpiSmiSet( (UINT32)(GpiContext->GpiNum) );
    }

    return EFI_SUCCESS;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmGpiRemoveHandler
//
// Description: This function removes GPI SMI handler
//
// Input:       *Context - Pointer to SMI context
//
// Output:      EFI_SUCCESS
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS SmmGpiRemoveHandler (
    IN VOID             *Context )
{
    UINTN   RemoveGpiSmi = ((EFI_SMM_GPI_DISPATCH_CONTEXT *)Context)->GpiNum;

    gEnabledGpiSmi &= ~((UINT32)RemoveGpiSmi);

    GpiSmiReset( (UINT32)RemoveGpiSmi );

    return EFI_SUCCESS;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmGpiVerifyContext
//
// Description: This function verifies GPI SMI context
//
// Input:       *Context - Pointer to SMI context
//
// Output:      EFI_STATUS
//                  EFI_INVALID_PARAMETER - Given context is invalid
//                  EFI_SUCCESS - Context verified
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS SmmGpiVerifyContext ( 
    IN VOID                 *Context )
{
    EFI_SMM_GPI_DISPATCH_CONTEXT *GpiContext;

    GpiContext = (EFI_SMM_GPI_DISPATCH_CONTEXT *)Context; 
    if ((GpiContext->GpiNum & (UINT32)SUPPORTED_GPIS) == 0)
        return EFI_INVALID_PARAMETER;

    return EFI_SUCCESS;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmGpiGetContext
//
// Description: This function verifies GPI SMI event and sets GPI SMI context
//
// Input:       None
//
// Output:      BOOLEAN
//                  TRUE  - GPI SMI occured, context saved
//                  FALSE - There was no GPI SMI
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

BOOLEAN SmmGpiGetContext (VOID)
{
//#### Use Intel RC    BOOLEAN     GpiSmiDetected;
//#### Use Intel RC    UINT32      GpiSmiNum;

    // use intel ref code 
//#### Use Intel RC    GpiSmiDetected = GpiSmiDetect( &GpiSmiNum );
//#### Use Intel RC    SmiContext.GpiContext.GpiNum = GpiSmiNum;
//#### Use Intel RC    return GpiSmiDetected;
    return FALSE;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmGpiDispatchSmi
//
// Description: This function dispatches GPI SMI event based on context
//
// Input:       None
//
// Output:      None
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

VOID SmmGpiDispatchSmi (VOID)
{
//#### Use Intel RC    HANDLER_LINK *Handler = (HANDLER_LINK *)\
//#### Use Intel RC                           SmmHandler[EfiSmmGpiSmi].RegisteredCallbacks.pHead;
//#### Use Intel RC    EFI_SMM_GPI_DISPATCH_CONTEXT *GpiContext;

//#### Use Intel RC    while (Handler != NULL) {
//#### Use Intel RC        GpiContext = (EFI_SMM_GPI_DISPATCH_CONTEXT *)Handler->Context;

//#### Use Intel RC        if ((SmiContext.GpiContext.GpiNum & GpiContext->GpiNum) != 0)
//#### Use Intel RC            Handler->Callback( Handler, GpiContext );

//#### Use Intel RC        Handler = (HANDLER_LINK *)Handler->Link.pNext;
//#### Use Intel RC    }

//#### Use Intel RC    GpiSmiClear( (UINT16)SmiContext.GpiContext.GpiNum );
}

//---------------------------------------------------------------------------
//                    Standby button SMI Handler functions
//---------------------------------------------------------------------------

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmSButtonAddHandler
//
// Description: This function adds Standby button SMI handler
//
// Input:       *Context - Pointer to SMI context
//
// Output:      EFI_SUCCESS
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS SmmSButtonAddHandler (
    IN VOID                 *Context )
{
    if (SmmHandler[EfiSmmStandbyButtonSmi].RegisteredCallbacks.Size == 1)
        SButtonSmiEnable();

    return EFI_SUCCESS;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmSButtonRemoveHandler
//
// Description: This function removes Standby button SMI handler
//
// Input:       *Context - Pointer to SMI context
//
// Output:      EFI_SUCCESS
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS SmmSButtonRemoveHandler (
    IN VOID                 *Context )
{
    if (SmmHandler[EfiSmmStandbyButtonSmi].RegisteredCallbacks.Size == 1)
        SButtonSmiDisable();

    return EFI_SUCCESS;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmSButtonVerifyContext
//
// Description: This function verifies Standby button SMI context
//
// Input:       VOID *Context - Pointer to SMI context
//
// Output:      EFI_STATUS
//                  EFI_INVALID_PARAMETER - Given context is invalid
//                  EFI_SUCCESS           - Context verified
//                  EFI_UNSUPPORTED       - Context is not supported
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS SmmSButtonVerifyContext ( 
    IN VOID                     *Context )
{
    EFI_SMM_STANDBY_BUTTON_DISPATCH_CONTEXT *SButtonContext;

    SButtonContext = (EFI_SMM_STANDBY_BUTTON_DISPATCH_CONTEXT *)Context; 
    if (SButtonContext->Phase > Exit)
        return EFI_INVALID_PARAMETER;

    return (SButtonContext->Phase > Entry) ? EFI_UNSUPPORTED : EFI_SUCCESS;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmSButtonGetContext
//
// Description: This function verifies Standby button SMI event and sets 
//              Standby button SMI context 
//
// Input:       None
//
// Output:      BOOLEAN
//                  TRUE  - Standby button SMI occured, context saved
//                  FALSE - There was no Standby button SMI
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

BOOLEAN SmmSButtonGetContext (VOID)
{
    UINT16      Dummy = 0;
    BOOLEAN     SButtonSmiDetected;

    SButtonSmiDetected = SButtonSmiDetect( &Dummy );

    SmiContext.SBtnContext.Phase = Entry;

    return SButtonSmiDetected;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmSButtonDispatchSmi
//
// Description: This function dispatches Standby button SMI event based on
//              context 
//
// Input:       None
//
// Output:      None
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

VOID SmmSButtonDispatchSmi (VOID)
{
    HANDLER_LINK *Handler = (HANDLER_LINK *)\
                SmmHandler[EfiSmmStandbyButtonSmi].RegisteredCallbacks.pHead;
    EFI_SMM_STANDBY_BUTTON_DISPATCH_CONTEXT *SButtonContext;

    while (Handler != NULL) {
        SButtonContext = \
                 (EFI_SMM_STANDBY_BUTTON_DISPATCH_CONTEXT *)Handler->Context;

        if (SButtonContext->Phase == SmiContext.SBtnContext.Phase)
            Handler->Callback( Handler, SButtonContext );

        Handler = (HANDLER_LINK *)Handler->Link.pNext;
    }

    SButtonSmiClear();
}

//---------------------------------------------------------------------------
//                      Power button SMI Handler functions
//---------------------------------------------------------------------------

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmPButtonAddHandler
//
// Description: This function adds Power button SMI handler
//
// Input:       *Context - pointer to SMI context
//
// Output:      EFI_SUCCESS
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS SmmPButtonAddHandler (
    IN VOID                 *Context )
{
#if 0
    if (SmmHandler[EfiSmmPowerButtonSmi].RegisteredCallbacks.Size == 1)
        PButtonSmiEnable();
#endif

    return EFI_SUCCESS;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmPButtonRemoveHandler
//
// Description: This function removes Power button SMI handler
//
// Input:       *Context - Pointer to SMI context
//
// Output:      EFI_SUCCESS;
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS SmmPButtonRemoveHandler (
    IN VOID                     *Context )
{
#if 0
    if (SmmHandler[EfiSmmPowerButtonSmi].RegisteredCallbacks.Size == 1)
        PButtonSmiDisable();
#endif

    return EFI_SUCCESS;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmPButtonVerifyContext
//
// Description: This function verifies Power button SMI context
//
// Input:       *Context - Pointer to SMI context
//
// Output:      EFI_STATUS
//                  EFI_INVALID_PARAMETER - Given context is invalid
//                  EFI_SUCCESS           - Context verified
//                  EFI_UNSUPPORTED       - Context is not supported
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS SmmPButtonVerifyContext ( 
    IN VOID                     *Context )
{
    EFI_SMM_POWER_BUTTON_DISPATCH_CONTEXT *PButtonContext;

    PButtonContext = (EFI_SMM_POWER_BUTTON_DISPATCH_CONTEXT *)Context; 
    if (PButtonContext->Phase > PowerButtonExit)
        return EFI_INVALID_PARAMETER;

    return (PButtonContext->Phase > PowerButtonEntry) ? \
                                                EFI_UNSUPPORTED : EFI_SUCCESS;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmPButtonGetContext
//
// Description: This function verifies Power button SMI event and sets Power
//              button SMI context 
//
// Input:       None
//
// Output:      BOOLEAN
//                  TRUE - Power button SMI occured, context saved
//                  FALSE - There was no Power button SMI
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

BOOLEAN SmmPButtonGetContext (VOID)
{
    UINT16      Dummy = 0;
    BOOLEAN     PButtonSmiDetected;

    PButtonSmiDetected = PButtonSmiDetect( &Dummy );

    SmiContext.PBtnContext.Phase = PowerButtonEntry;

    return PButtonSmiDetected;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmPButtonDispatchSmi
//
// Description: This function dispatches Power button SMI event based on
//              context 
//
// Input:       None
//
// Output:      None
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

VOID SmmPButtonDispatchSmi (VOID)
{
#if 0
    HANDLER_LINK *Handler = (HANDLER_LINK *)\
                   SmmHandler[EfiSmmPowerButtonSmi].RegisteredCallbacks.pHead;
    EFI_SMM_POWER_BUTTON_DISPATCH_CONTEXT *PButtonContext;

    while (Handler != NULL) {
        PButtonContext = \
                    (EFI_SMM_POWER_BUTTON_DISPATCH_CONTEXT *)Handler->Context;

        if (PButtonContext->Phase == SmiContext.PBtnContext.Phase)
            Handler->Callback( Handler, PButtonContext );

        Handler = (HANDLER_LINK *)Handler->Link.pNext;
    }

    PButtonSmiClear();

    SBLib_Shutdown();
#endif
}
//---------------------------------------------------------------------------
//                        TCO SMI Handler functions
//---------------------------------------------------------------------------

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmTcoAddHandler
//
// Description: This function adds TCO SMI handler
//
// Input:       *Context - Pointer to SMI context
//
// Output:      EFI_SUCCESS
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS SmmTcoAddHandler (
    IN VOID             *Context )
{
//#### Use Intel RC    EFI_SMM_TCO_DISPATCH_CONTEXT    *TcoContext;

//#### Use Intel RC    TcoContext = (EFI_SMM_TCO_DISPATCH_CONTEXT *)Context;

//#### Use Intel RC    gEnabledTcoSmi |= (1 << (UINT32)(TcoContext->TcoBitOffset));
//#### Use Intel RC    TcoSmiSet( (UINT32)(TcoContext->TcoBitOffset) );

//#### Use Intel RC    if (SmmHandler[EfiSmmTcoSmi].RegisteredCallbacks.Size == 1)
//#### Use Intel RC        TcoSmiEnable();

    return EFI_SUCCESS;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmTcoRemoveHandler
//
// Description: This function removes TCO SMI handler
//
// Input:       *Context - Pointer to SMI context
//
// Output:      EFI_SUCCESS
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS SmmTcoRemoveHandler (
    IN VOID             *Context )
{
//#### Use Intel RC    UINT32      RemoveTcoSmiOffset = (UINT32) \
//#### Use Intel RC                    (((EFI_SMM_TCO_DISPATCH_CONTEXT *)Context)->TcoBitOffset);

//#### Use Intel RC    TcoSmiReset( RemoveTcoSmiOffset );
   
//#### Use Intel RC    gEnabledTcoSmi &= ~(1 << RemoveTcoSmiOffset);

//#### Use Intel RC    if (gEnabledTcoSmi == 0) TcoSmiDisable();

    return EFI_SUCCESS;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmTcoVerifyContext
//
// Description: This function verifies TCO SMI context
//
// Input:       *Context - Pointer to SMI context
//
// Output:      EFI_STATUS
//                  EFI_SUCCESS           - Context verified
//                  EFI_INVALID_PARAMETER - Given context is invalid
//                  EFI_UNSUPPORTED       - Context is not supported
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS SmmTcoVerifyContext (
    IN VOID                 *Context )
{
//#### Use Intel RC    EFI_SMM_TCO_DISPATCH_CONTEXT *TcoContext;

//#### Use Intel RC    TcoContext = (EFI_SMM_TCO_DISPATCH_CONTEXT *)Context;

//#### Use Intel RC    if (((1 << TcoContext->TcoBitOffset) & SUPPORTED_TCOS) == 0)
//#### Use Intel RC        return EFI_UNSUPPORTED;

//#### Use Intel RC    if ( TcoContext->TcoBitOffset > 32) return EFI_INVALID_PARAMETER;

    return EFI_SUCCESS;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmTcoGetContext
//
// Description: This function verifies TCO SMI event and sets TCO SMI context
//
// Input:       None
//
// Output:      BOOLEAN
//                  TRUE  - TCO SMI occured, context saved
//                  FALSE - There was no TCO SMI
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

BOOLEAN SmmTcoGetContext (VOID)
{
//#### Use Intel RC    UINT32      TcoStatus;
//#### Use Intel RC    BOOLEAN     TcoSmiDetected;

//#### Use Intel RC    TcoSmiDetected = TcoSmiDetect( &TcoStatus );
//#### Use Intel RC    SmiContext.TcoContext.TcoBitOffset = (UINTN)(TcoStatus & gEnabledTcoSmi);
//#### Use Intel RC    if (SmiContext.TcoContext.TcoBitOffset == 0) TcoSmiDetected = FALSE;

//#### Use Intel RC    return TcoSmiDetected;
    return FALSE;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmTcoDispatchSmi
//
// Description: This function dispatches TCO SMI event based on context
//
// Input:       None
//
// Output:      None
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

VOID SmmTcoDispatchSmi (VOID)
{
//#### Use Intel RC    HANDLER_LINK                    *Handler;
//#### Use Intel RC    EFI_SMM_TCO_DISPATCH_CONTEXT    *TcoContext;

//#### Use Intel RC    Handler = \
//#### Use Intel RC           (HANDLER_LINK *)SmmHandler[EfiSmmTcoSmi].RegisteredCallbacks.pHead;
//#### Use Intel RC    while (Handler != NULL) {
//#### Use Intel RC        TcoContext = (EFI_SMM_TCO_DISPATCH_CONTEXT *)Handler->Context;

//#### Use Intel RC        if ((Shl64( 1 , (UINT8)TcoContext->TcoBitOffset)) & \
//#### Use Intel RC                                           SmiContext.TcoContext.TcoBitOffset)
//#### Use Intel RC            Handler->Callback(Handler, TcoContext);

//#### Use Intel RC        Handler = (HANDLER_LINK *)Handler->Link.pNext;
//#### Use Intel RC    }

//#### Use Intel RC    TcoSmiClear();
}

//---------------------------------------------------------------------------
//                      I/O Trap SMI Handler functions
//---------------------------------------------------------------------------

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmIoTrapAddHandler
//
// Description: This function adds I/O Trap SMI handler
//
// Input:       *Context - Pointer to SMI context
//
// Output:      EFI_SUCCESS
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS SmmIoTrapAddHandler (
    IN VOID             *Context )
{
//#### Use Intel RC    HANDLER_LINK                        *Handler;
//#### Use Intel RC    EFI_SMM_IO_TRAP_DISPATCH_CONTEXT    *RegedContext;
//#### Use Intel RC    EFI_SMM_IO_TRAP_DISPATCH_CONTEXT    *IoTrapContext;
//#### Use Intel RC    UINTN                               i = 0;
//#### Use Intel RC    UINT32                              TrapRegIndex = 0;

//#### Use Intel RC    IoTrapContext = (EFI_SMM_IO_TRAP_DISPATCH_CONTEXT *)Context;

//#### Use Intel RC    Handler = \
//#### Use Intel RC        (HANDLER_LINK *)SmmHandler[EfiSmmIoTrapSmi].RegisteredCallbacks.pHead;

//#### Use Intel RC    while (Handler != NULL) {
//#### Use Intel RC        RegedContext = (EFI_SMM_IO_TRAP_DISPATCH_CONTEXT *)Handler->Context;
//#### Use Intel RC        if (RegedContext->Address == IoTrapContext->Address) {
//#### Use Intel RC            TrapRegIndex = RegedContext->TrapRegIndex;
//#### Use Intel RC            i++;
//#### Use Intel RC        }
//#### Use Intel RC        Handler = (HANDLER_LINK *)Handler->Link.pNext;
//#### Use Intel RC    }

//#### Use Intel RC    if (i > 1) {
//#### Use Intel RC        IoTrapContext->TrapRegIndex = TrapRegIndex;
//#### Use Intel RC        return EFI_SUCCESS;
//#### Use Intel RC    }

//#### Use Intel RC    IoTrapSmiSet( IoTrapContext );

//#### Use Intel RC    gEnabledIoTrapSmi |= (1 << (UINT32)(IoTrapContext->TrapRegIndex));

//#### Use Intel RC    if (SmmHandler[EfiSmmIoTrapSmi].RegisteredCallbacks.Size == 1)
//#### Use Intel RC        IoTrapSmiEnable();
    return EFI_SUCCESS;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmIoTrapRemoveHandler
//
// Description: This function removes I/O Trap SMI handler
//
// Input:       *Context - Pointer to SMI context
//
// Output:      EFI_SUCCESS
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS SmmIoTrapRemoveHandler (
    IN VOID             *Context )
{
//#### Use Intel RC    HANDLER_LINK                        *Handler;
//#### Use Intel RC    EFI_SMM_IO_TRAP_DISPATCH_CONTEXT    *RegedContext;
//#### Use Intel RC    UINTN       i = 0;
//#### Use Intel RC    UINTN       RemoveIoTrapRegIndex = \
//#### Use Intel RC                (((EFI_SMM_IO_TRAP_DISPATCH_CONTEXT *)Context)->TrapRegIndex);

//#### Use Intel RC    Handler = \
//#### Use Intel RC        (HANDLER_LINK *)SmmHandler[EfiSmmIoTrapSmi].RegisteredCallbacks.pHead;

//#### Use Intel RC    while (Handler != NULL) {
//#### Use Intel RC        RegedContext = (EFI_SMM_IO_TRAP_DISPATCH_CONTEXT *)Handler->Context;
//#### Use Intel RC        if (RegedContext->TrapRegIndex == RemoveIoTrapRegIndex) i++;
//#### Use Intel RC        Handler = (HANDLER_LINK *)Handler->Link.pNext;
//#### Use Intel RC    }

//#### Use Intel RC    if (i > 1) return EFI_SUCCESS;

//#### Use Intel RC    IoTrapSmiReset( Context );
   
//#### Use Intel RC    gEnabledIoTrapSmi &= ~(1 << RemoveIoTrapRegIndex);

//#### Use Intel RC    if (gEnabledIoTrapSmi == 0) IoTrapSmiDisable();
    return EFI_SUCCESS;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmIoTrapVerifyContext
//
// Description: This function verifies I/O Trap SMI context
//
// Input:       *Context - Pointer to SMI context
//
// Output:      EFI_STATUS
//                  EFI_SUCCESS           - Context verified
//                  EFI_INVALID_PARAMETER - Given context is invalid
//                  EFI_UNSUPPORTED       - Context is not supported
//                  EFI_OUT_OF_RESOURCES  - There is no I/O Trap register
//                                          available
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS SmmIoTrapVerifyContext (
    IN VOID                 *Context )
{
//#### Use Intel RC    HANDLER_LINK                        *Handler;
//#### Use Intel RC    EFI_SMM_IO_TRAP_DISPATCH_CONTEXT    *RegedContext;
//#### Use Intel RC    EFI_SMM_IO_TRAP_DISPATCH_CONTEXT    *IoTrapContext;

//#### Use Intel RC    Handler = \
//#### Use Intel RC        (HANDLER_LINK *)SmmHandler[EfiSmmIoTrapSmi].RegisteredCallbacks.pHead;

//#### Use Intel RC    IoTrapContext = (EFI_SMM_IO_TRAP_DISPATCH_CONTEXT *)Context;

//#### Use Intel RC    while (Handler != NULL) {
//#### Use Intel RC        RegedContext = (EFI_SMM_IO_TRAP_DISPATCH_CONTEXT *)Handler->Context;
//#### Use Intel RC        if (RegedContext->Address == IoTrapContext->Address) {
//#### Use Intel RC            if ( IoTrapContext->Length > MAX_SUPPORTED_IOTRAP_LENGTH)
//#### Use Intel RC                return EFI_INVALID_PARAMETER;
//#### Use Intel RC            return EFI_SUCCESS;
//#### Use Intel RC        }
//#### Use Intel RC        Handler = (HANDLER_LINK *)Handler->Link.pNext;
//#### Use Intel RC    }

//#### Use Intel RC    if (gEnabledIoTrapSmi >= ((1 << MAX_SUPPORTED_IOTRAP_REGS) - 1))
//#### Use Intel RC        return EFI_OUT_OF_RESOURCES;

//#### Use Intel RC    if ( IoTrapContext->Length > MAX_SUPPORTED_IOTRAP_LENGTH)
//#### Use Intel RC        return EFI_INVALID_PARAMETER;
    return EFI_SUCCESS;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmIoTrapGetContext
//
// Description: This function verifies I/O Trap SMI event and sets 
//              I/O Trap SMI context.
//
// Input:       None
//
// Output:      BOOLEAN
//                  TRUE  - I/O Trap SMI occured, context saved
//                  FALSE - There was no I/O Trap SMI
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

BOOLEAN SmmIoTrapGetContext (VOID)
{
    return IoTrapSmiDetect( &SmiContext.IoTrapContext );
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmIoTrapDispatchSmi
//
// Description: This function dispatches I/O Trap SMI event based on context.
//
// Input:       None
//
// Output:      None
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

VOID SmmIoTrapDispatchSmi (VOID)
{
//#### Use Intel RC    HANDLER_LINK                        *Handler;
//#### Use Intel RC    EFI_SMM_IO_TRAP_DISPATCH_CONTEXT    *IoTrapContext;

//#### Use Intel RC    Handler = \
//#### Use Intel RC        (HANDLER_LINK *)SmmHandler[EfiSmmIoTrapSmi].RegisteredCallbacks.pHead;
//#### Use Intel RC    while (Handler != NULL) {
//#### Use Intel RC        IoTrapContext = (EFI_SMM_IO_TRAP_DISPATCH_CONTEXT *)Handler->Context;

//#### Use Intel RC        if ( IoTrapContext->TrapRegIndex == \
//#### Use Intel RC                                        SmiContext.IoTrapContext.TrapRegIndex)
//#### Use Intel RC            if ( gEnabledIoTrapSmi & (1 << IoTrapContext->TrapRegIndex))
//#### Use Intel RC                Handler->Callback(Handler, &SmiContext.IoTrapContext);

//#### Use Intel RC        Handler = (HANDLER_LINK *)Handler->Link.pNext;
//#### Use Intel RC    }

//#### Use Intel RC    IoTrapSmiClear();
}

//---------------------------------------------------------------------------
//                      BIOS Write SMI Handler functions
//---------------------------------------------------------------------------

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmBiosWriteAddHandler
//
// Description: This function adds BIOS Write SMI handler.
//
// Input:       *Context - pointer to SMI context
//
// Output:      EFI_SUCCESS
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS SmmBiosWriteAddHandler (
    IN VOID                 *Context )
{
//#### Use Intel RC    if (SmmHandler[EfiSmmBiosWriteSmi].RegisteredCallbacks.Size == 1)
//#### Use Intel RC        BiosWriteSmiEnable();

    return EFI_SUCCESS;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmBiosWriteRemoveHandler
//
// Description: This function removes BIOS Write SMI handler.
//
// Input:       *Context - Pointer to SMI context
//
// Output:      EFI_SUCCESS;
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS SmmBiosWriteRemoveHandler (
    IN VOID                     *Context )
{
//#### Use Intel RC    if (SmmHandler[EfiSmmBiosWriteSmi].RegisteredCallbacks.Size == 1)
//#### Use Intel RC        BiosWriteSmiDisable();

    return EFI_SUCCESS;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmBiosWriteVerifyContext
//
// Description: This function verifies BIOS Write SMI context.
//
// Input:       *Context - Pointer to SMI context
//
// Output:      EFI_STATUS
//                  EFI_SUCCESS - Context verified
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

EFI_STATUS SmmBiosWriteVerifyContext ( 
    IN VOID                     *Context )
{
    return EFI_SUCCESS;
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmBiosWriteGetContext
//
// Description: This function verifies BIOS Write SMI event.
//
// Input:       None
//
// Output:      BOOLEAN
//                  TRUE - BIOS Write SMI occured.
//                  FALSE - There was no BIOS Write SMI
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

BOOLEAN SmmBiosWriteGetContext (VOID)
{
    return BiosWriteSmiDetect();
}

//<AMI_PHDR_START>
//----------------------------------------------------------------------------
//
// Procedure:   SmmBiosWriteDispatchSmi
//
// Description: This function dispatches BIOW Write SMI event based on
//              context.
//
// Input:       None
//
// Output:      None
//
// Notes:       GENERALLY NO PORTING REQUIRED
//----------------------------------------------------------------------------
//<AMI_PHDR_END>

VOID SmmBiosWriteDispatchSmi (VOID)
{
//#### Use Intel RC    HANDLER_LINK *Handler = (HANDLER_LINK *)\
//#### Use Intel RC                   SmmHandler[EfiSmmBiosWriteSmi].RegisteredCallbacks.pHead;

//#### Use Intel RC    while (Handler != NULL) {
//#### Use Intel RC        Handler->Callback( Handler, NULL );
//#### Use Intel RC        Handler = (HANDLER_LINK *)Handler->Link.pNext;
//#### Use Intel RC    }

//#### Use Intel RC    BiosWriteSmiClear();
}

//*************************************************************************
//*************************************************************************
//**                                                                     **
//**        (C)Copyright 1985-2011, American Megatrends, Inc.            **
//**                                                                     **
//**                       All Rights Reserved.                          **
//**                                                                     **
//**      5555 Oakbrook Parkway, Suite 200, Norcross, GA 30093           **
//**                                                                     **
//**                       Phone: (770)-246-8600                         **
//**                                                                     **
//*************************************************************************
//*************************************************************************