summaryrefslogtreecommitdiff
path: root/ReferenceCode/ME/SampleCode/AsfSupport/AsfSupport.c
blob: c5324aacfb486ca7d97b284aa1ddbb9330215bd4 (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
/** @file
  Support routines for ASF boot options in the BDS

@copyright
  Copyright (c) 2005-2012 Intel Corporation. All rights reserved
  This software and associated documentation (if any) is furnished
  under a license and may only be used or copied in accordance
  with the terms of the license. Except as permitted by such
  license, no part of this software or documentation may be
  reproduced, stored in a retrieval system, or transmitted in any
  form or by any means without the express written consent of
  Intel Corporation.

  This file contains a 'Sample Driver' and is licensed as such
  under the terms of your license agreement with Intel or your
  vendor.  This file may be modified by the user, subject to
  the additional terms of the license agreement

**/

#include "AsfSupport.h"

#pragma pack(push,1)

typedef struct {
  UINT32 Attributes;
  UINT16 FilePathListLength;
} EFI_LOAD_OPTION;

#pragma pack(pop)

//
// Global variables
//
EFI_ASF_BOOT_OPTIONS  *mAsfBootOptions;
EFI_GUID              gAsfRestoreBootSettingsGuid = RESTORE_SECURE_BOOT_GUID;

/**
  Retrieve the ASF boot options previously recorded by the ASF driver.

  @param[in] None.

  @retval EFI_SUCCESS        Initialized Boot Options global variable and AMT protocol
**/
EFI_STATUS
BdsAsfInitialization (
  IN  VOID
  )
{
  EFI_STATUS                          Status;
  EFI_ALERT_STANDARD_FORMAT_PROTOCOL  *Asf;

  mAsfBootOptions = NULL;

  //
  // Amt Library Init
  //
  Status = AmtLibInit ();
  if (EFI_ERROR (Status)) {
    DEBUG ((EFI_D_ERROR, "Info : Error init AmtLibInit -> %r\n", Status));
    return Status;
  }
  //
  // Get Protocol for ASF
  //
  Status = gBS->LocateProtocol (
                  &gEfiAlertStandardFormatProtocolGuid,
                  NULL,
                  &Asf
                  );
  if (EFI_ERROR (Status)) {
    DEBUG ((EFI_D_ERROR, "Info : Error getting ASF protocol -> %r\n", Status));
    return Status;
  }

  Status = Asf->GetBootOptions (Asf, &mAsfBootOptions);
  if (EFI_ERROR(Status)) {
    DEBUG ((EFI_D_ERROR, "Info : Error getting ASF BootOptions -> %r\n", Status));
    return Status;
  }

  Status = ManageSecureBootState();

  return Status;
}

/**
  Get current Secure Boot state (enabled/disabled)

  @param[in] None.

  @retval UINT8         Secure Boot State
**/
UINT8
GetSecureBootState(
  IN VOID
  )
{
  //
  // This function is BIOS implementation specific
  // and should be implemented in platform code
  //

  return SECURE_BOOT_DISABLED;
}

/**
  Set current Secure Boot state (enabled/disabled)

  @param[in] SecureBootState         Secure Boot State

  @retval EFI_SUCCESS        Secure Boot State successfully changed
**/
EFI_STATUS
SetSecureBootState(
  IN UINT8 SecureBootState
  )
{
  //
  // This function is BIOS implementation specific
  // and should be implemented in platform code
  //

  return EFI_SUCCESS;
}

/**
  This routine makes necessary Secure Boot & CSM state changes for IDEr boot

  @param[in] None.

  @retval EFI_SUCCESS      Changes applied succesfully
**/
EFI_STATUS
ManageSecureBootState(
  IN VOID
  )
{
  EFI_STATUS Status;
  BOOLEAN    EnforceSecureBoot;
  UINT8      SecureBootState;
  UINT8      RestoreBootSettings;
  UINT8      IderBoot;
  UINTN      VarSize;

  VarSize           = sizeof(UINT8);

  //
  // Get boot parameters (IDER boot?, EnforceSecureBoot flag set?, secure boot enabled?)
  //
  EnforceSecureBoot = ActiveManagementEnforceSecureBoot();
  IderBoot          = ActiveManagementEnableIdeR();
  SecureBootState   = GetSecureBootState();

  //
  // Check whether we need to restore SecureBootEnable value changed in previous IDER boot
  //
  Status = gRT->GetVariable(
                 L"RestoreBootSettings",
                 &gAsfRestoreBootSettingsGuid,
                 NULL,
                 &VarSize,
                 &RestoreBootSettings
                 );

  if (Status == EFI_SUCCESS && RestoreBootSettings != RESTORE_SECURE_BOOT_NONE) {
    if (RestoreBootSettings == RESTORE_SECURE_BOOT_ENABLED && SecureBootState == SECURE_BOOT_DISABLED &&
      !(IderBoot && !EnforceSecureBoot)) {
      
      SecureBootState = SECURE_BOOT_ENABLED; 

      Status = SetSecureBootState(SecureBootState);
      ASSERT_EFI_ERROR (Status);

      //
      // Delete RestoreBootSettings variable
      //
      Status = gRT->SetVariable(
                      L"RestoreBootSettings",
                      &gAsfRestoreBootSettingsGuid,
                      0,
                      0,
                      NULL
                      );
      ASSERT_EFI_ERROR (Status);

      DEBUG ((EFI_D_INFO, "Secure Boot settings restored after IDER boot - Cold Reset!\n"));
      gRT->ResetSystem(EfiResetCold, EFI_SUCCESS, 0, NULL);
      EFI_DEADLOOP();
    }     
  }

  Status = EFI_SUCCESS;

  if (IderBoot) {
    if (SecureBootState == SECURE_BOOT_ENABLED && !EnforceSecureBoot) {
      //
      // Secure boot needs to be disabled if we're doing IDER and EnforceSecureBoot not set
      //
      SecureBootState     = SECURE_BOOT_DISABLED;
      RestoreBootSettings = RESTORE_SECURE_BOOT_ENABLED;      

      Status = SetSecureBootState(SecureBootState);
      ASSERT_EFI_ERROR (Status);

      //
      // Set variable to restore previous secure boot state
      //
      Status = gRT->SetVariable(
                      L"RestoreBootSettings",
                      &gAsfRestoreBootSettingsGuid,
                      EFI_VARIABLE_NON_VOLATILE | EFI_VARIABLE_BOOTSERVICE_ACCESS,
                      sizeof(UINT8),
                      &RestoreBootSettings
                      );
      ASSERT_EFI_ERROR (Status);

      DEBUG ((EFI_D_INFO, "Secure Boot disabled for IDER boot - Cold Reset!\n"));
      gRT->ResetSystem(EfiResetCold, EFI_SUCCESS, 0, NULL);
      EFI_DEADLOOP();           
    }
  } 

  return Status;
}

/**
  This function will create a BootOption from the give device path and
  description string.

  @param[in]  DevicePath     The device path which the option represent
  @param[in]  Description     The description of the boot option

  @retval BDS_COMMON_OPTION - Pointer to created boot option
**/
BDS_COMMON_OPTION *
BdsCreateBootOption (
  IN  EFI_DEVICE_PATH_PROTOCOL       *DevicePath,
  IN  CHAR16                         *Description
  )
{
  BDS_COMMON_OPTION *Option;

  Option = AllocateZeroPool (sizeof (BDS_COMMON_OPTION));
  if (Option == NULL) {
    return NULL;
  }

  Option->Signature   = BDS_LOAD_OPTION_SIGNATURE;
  Option->DevicePath  = AllocateZeroPool (GetDevicePathSize (DevicePath));
  CopyMem (Option->DevicePath, DevicePath, GetDevicePathSize (DevicePath));

  Option->Attribute   = LOAD_OPTION_ACTIVE;
  Option->Description = AllocateZeroPool (EfiStrSize (Description));
  CopyMem (Option->Description, Description, EfiStrSize (Description));

  return Option;
}

/**
  This function will create a SHELL BootOption to boot.

  @param[in]  None.

  @retval EFI_DEVICE_PATH_PROTOCOL Shell Device path for booting.
**/
EFI_DEVICE_PATH_PROTOCOL *
BdsCreateShellDevicePath (
  VOID
  )
{
  UINTN                             FvHandleCount;
  EFI_HANDLE                        *FvHandleBuffer;
  UINTN                             Index;
  EFI_STATUS                        Status;
  EFI_FIRMWARE_VOLUME_PROTOCOL      *Fv;
  EFI_FV_FILETYPE                   Type;
  UINTN                             Size;
  EFI_FV_FILE_ATTRIBUTES            Attributes;
  UINT32                            AuthenticationStatus;
  EFI_DEVICE_PATH_PROTOCOL          *DevicePath;
  MEDIA_FW_VOL_FILEPATH_DEVICE_PATH ShellNode;

  DevicePath  = NULL;
  Status      = EFI_SUCCESS;

  gBS->LocateHandleBuffer (
        ByProtocol,
        &gEfiFirmwareVolumeProtocolGuid,
        NULL,
        &FvHandleCount,
        &FvHandleBuffer
        );

  for (Index = 0; Index < FvHandleCount; Index++) {
    gBS->HandleProtocol (
          FvHandleBuffer[Index],
          &gEfiFirmwareVolumeProtocolGuid,
          (VOID **) &Fv
          );

    Status = Fv->ReadFile (
                  Fv,
                  &gEfiShellFileGuid,
                  NULL,
                  &Size,
                  &Type,
                  &Attributes,
                  &AuthenticationStatus
                  );
    if (EFI_ERROR (Status)) {
      //
      // Skip if no shell file in the FV
      //
      continue;
    } else {
      //
      // Found the shell
      //
      break;
    }
  }

  if (EFI_ERROR (Status)) {
    //
    // No shell present
    //
    if (FvHandleCount) {
      FreePool (FvHandleBuffer);
    }
    return NULL;
  }
  //
  // Build the shell boot option
  //
  DevicePath = DevicePathFromHandle (FvHandleBuffer[Index]);

  //
  // Build the shell device path
  //
  ShellNode.Header.Type     = MEDIA_DEVICE_PATH;
  ShellNode.Header.SubType  = MEDIA_FV_FILEPATH_DP;
  SetDevicePathNodeLength (&ShellNode.Header, sizeof (MEDIA_FW_VOL_FILEPATH_DEVICE_PATH));
  CopyMem (&ShellNode.NameGuid, &gEfiShellFileGuid, sizeof (EFI_GUID));
  DevicePath = AppendDevicePathNode (DevicePath, (EFI_DEVICE_PATH_PROTOCOL *) &ShellNode);

  if (FvHandleCount) {
    FreePool (FvHandleBuffer);
  }

  return DevicePath;
}

/**
  This function will create a PXE BootOption to boot.

  @param[in] DeviceIndex      PXE handle index

  @retval EFI_DEVICE_PATH_PROTOCOL     PXE Device path for booting.
**/
EFI_DEVICE_PATH_PROTOCOL *
BdsCreatePxeDevicePath (
  IN UINT16     DeviceIndex
  )
{
  UINTN                     Index;
  EFI_STATUS                Status;
  EFI_DEVICE_PATH_PROTOCOL  *DevicePath;
  UINTN                     NumberLoadFileHandles;
  EFI_HANDLE                *LoadFileHandles;
  VOID                      *ProtocolInstance;

  DevicePath  = NULL;
  Status      = EFI_SUCCESS;

  //
  // We want everything connected up for PXE
  //
  BdsLibConnectAllDriversToAllControllers ();

  //
  // Parse Network Boot Device
  //
  gBS->LocateHandleBuffer (
        ByProtocol,
        &gEfiSimpleNetworkProtocolGuid,
        NULL,
        &NumberLoadFileHandles,
        &LoadFileHandles
        );
  for (Index = 0; Index < NumberLoadFileHandles; Index++) {
    Status = gBS->HandleProtocol (
                    LoadFileHandles[Index],
                    &gEfiLoadFileProtocolGuid,
                    (VOID **) &ProtocolInstance
                    );
    if (EFI_ERROR (Status)) {
      //
      // try next handle
      //
      continue;
    } else {
      if (Index == DeviceIndex) {
        //
        // Found a PXE handle
        //
        break;
      } else {
        Status = EFI_UNSUPPORTED;
      }
    }
  }

  if (EFI_ERROR (Status)) {
    //
    // No PXE present
    //
    if (NumberLoadFileHandles) {
      FreePool (LoadFileHandles);
    }
    return NULL;
  }
  //
  // Build the PXE device path
  //
  DevicePath = DevicePathFromHandle (LoadFileHandles[Index]);

  if (NumberLoadFileHandles) {
    FreePool (LoadFileHandles);
  }

  return DevicePath;
}

BOOLEAN 
ComparePathNode(
  IN EFI_DEVICE_PATH_PROTOCOL *PathNode1,
  IN EFI_DEVICE_PATH_PROTOCOL *PathNode2
)
{
  BOOLEAN st = FALSE;
  UINTN Size1, Size2;
  UINT8 *p1, *p2;

  if ((PathNode1 == NULL) || (PathNode2 == NULL)) {
    return FALSE;
  }

  if (PathNode1 == PathNode2) {
    st = TRUE;
  } else {
    Size1 = DevicePathNodeLength(PathNode1);
    Size2 = DevicePathNodeLength(PathNode2);
    p1 = (UINT8 *)PathNode1;
    p2 = (UINT8 *)PathNode2;
    if ((Size1 == Size2)
        && (DevicePathType(PathNode1) == DevicePathType(PathNode2))
        && (CompareMem(p1+1, p2+1, Size1-1) == 0)) {
      st = TRUE;
    }
  }

  return st;
}

/**
  Compare two device paths node by node up to MEDIA_DEVICE_PATH node

  @param[in] BootOptionDP     Device path acquired from BootXXXX EFI variable
  @param[in] FileSysDP    Device path acquired through EFI_SIMPLE_FILE_SYSTEM_PROTOCOL Handles buffer

  @retval TRUE   Both device paths point to the same device
  @retval FALSE   Device paths point to different devices
**/
BOOLEAN
CompareDevicePaths(
  IN  EFI_DEVICE_PATH_PROTOCOL *BootOptionDP,
  IN  EFI_DEVICE_PATH_PROTOCOL *FileSysDP
)
{
  EFI_DEVICE_PATH_PROTOCOL     *DevPathNodeA;
  EFI_DEVICE_PATH_PROTOCOL     *DevPathNodeB;

  if (BootOptionDP == NULL || FileSysDP == NULL) {
    return FALSE;
  }

  DevPathNodeA = BdsLibUnpackDevicePath(BootOptionDP);
  if (DevPathNodeA == NULL) {
    return FALSE;
  }

  DevPathNodeB = BdsLibUnpackDevicePath(FileSysDP);
  if (DevPathNodeB == NULL) {
    return FALSE;
  }

  while (!IsDevicePathEnd(DevPathNodeB)) {
    if (DevicePathType(DevPathNodeB) == MEDIA_DEVICE_PATH) {
      //
      // If we have reached MEDIA_DEVICE_PATH node and all previous
      // nodes matched - we can be sure path points to the same device
      //
      return TRUE;
    }

    if (!ComparePathNode(DevPathNodeA, DevPathNodeB)) {
      break;
    }

    DevPathNodeA = NextDevicePathNode(DevPathNodeA);
    DevPathNodeB = NextDevicePathNode(DevPathNodeB);
  }

  return FALSE;
}

/**
  Get EFI device path through EFI_SIMPLE_FILE_SYSTEM_PROTOCOL Handles buffer. Acquired path must
  point to the same device as argument DevicePath passed to the function.

  @param[in] DevicePath   Device path acquired from BootXXXX EFI variable

  @retval EFI_DEVICE_PATH_PROTOCOL   Device path for booting
**/
EFI_DEVICE_PATH_PROTOCOL *
GetFullBootDevicePath(
  IN EFI_DEVICE_PATH_PROTOCOL *DevicePath
)
{
  EFI_STATUS               Status;
  EFI_DEVICE_PATH_PROTOCOL *DPath;
  EFI_DEVICE_PATH_PROTOCOL *DevPath;
  UINTN                    HandleNum;
  EFI_HANDLE               *HandleBuf;
  UINTN                    Index;

  DevPath = NULL;

  Status = gBS->LocateHandleBuffer (
                  ByProtocol,
                  &gEfiSimpleFileSystemProtocolGuid,
                  NULL,
                  &HandleNum,
                  &HandleBuf
                  );
  if ((EFI_ERROR (Status)) || (HandleBuf == NULL)) {
    return NULL;
  }

  for (Index = 0; Index < HandleNum; Index++) {
    Status = gBS->HandleProtocol (
                    HandleBuf[Index],
                    &gEfiDevicePathProtocolGuid,
                    &DPath
                    );

    if (CompareDevicePaths(DevicePath, DPath)) {
      DevPath = DuplicateDevicePath(DPath);
      break;
    }
  }

  return DevPath;
}

/*++
  Translate ASF request type to BBS or EFI device path type

  @param[in] DeviceType     - ASF request type
  @param[in]  Efi           - Set to TRUE if DeviceType is to be translated
                              to EFI device path type; FALSE if BBS type
  @retval UINTN Translated device type
--*/
UINTN
GetBootDeviceType (
  IN UINTN    DeviceType, 
  IN BOOLEAN  Efi
  )
{
  UINTN Type = 0;
  
  switch (DeviceType) {
    case FORCE_PXE:
      if (Efi) { 
        Type = MEDIA_FILEPATH_DP; 
      } else { 
        Type = BBS_EMBED_NETWORK; 
      }
      break;
    case FORCE_HARDDRIVE:      
    case FORCE_SAFEMODE:
      if (Efi) { 
        Type = MEDIA_HARDDRIVE_DP; 
      } else { 
        Type = BBS_TYPE_HARDDRIVE; 
      }
      break;
    case FORCE_DIAGNOSTICS:
      if (Efi) { 
        Type = MEDIA_FILEPATH_DP; 
      }
      break;
    case FORCE_CDDVD:
      if (Efi) { 
        Type = MEDIA_CDROM_DP; 
      } else { 
        Type = BBS_TYPE_CDROM; 
      }
      break;
    default:
      break;
  }

  return Type;
}

/**
  Update the BBS table with our required boot device

  @param[in] DeviceIndex   Boot device whose device index
  @param[in] DevType     Boot device whose device type
  @param[in] BbsCount    Number of BBS_TABLE structures
  @param[in] BbsTable    BBS entry
  @param[in] IderBoot    set to TRUE if this is IDER boot

  @retval EFI_SUCCESS   BBS table successfully updated
**/
EFI_STATUS
RefreshBbsTableForBoot (
  IN     UINT16        DeviceIndex,
  IN     UINT16        DevType,
  IN     BOOLEAN       IderBoot
  )
{
  EFI_STATUS                Status;
  UINTN                     Index;
  UINT16                    TempIndex;
  BOOLEAN                   IderBootDevice;
  BOOLEAN                   RegularBootDevice;
  HDD_INFO                  *LocalHddInfo;
  EFI_LEGACY_BIOS_PROTOCOL  *LegacyBios;
  BBS_TABLE                 *BbsTable;
  UINT16                    HddCount;
  UINT16                    BbsCount;
  
  TempIndex       = (IderBoot) ? 0 : ((DeviceIndex <= 1) ? DeviceIndex : 1);

  //
  // Make sure the Legacy Boot Protocol is available
  //
  Status = gBS->LocateProtocol (&gEfiLegacyBiosProtocolGuid, NULL, &LegacyBios);
  if (LegacyBios == NULL) {
    return EFI_ABORTED;
  }

  //
  // Get BBS table instance
  //
  Status = LegacyBios->GetBbsInfo (
                        LegacyBios,
                        &HddCount,
                        &LocalHddInfo,
                        &BbsCount,
                        &BbsTable
                        );
  if (EFI_ERROR (Status)) {
    return EFI_ABORTED;
  }

  Status = EFI_NOT_FOUND;
  
  //
  // For debug
  //
  PrintBbsTable (BbsTable);

  //
  // Find the first present boot device whose device type
  // matches the DevType, we use it to boot first. This is different
  // from the other Bbs table refresh since we are looking for the device type
  // index instead of the first device to match the device type.
  //
  // And set other present boot devices' priority to BBS_UNPRIORITIZED_ENTRY
  // their priority will be set by LegacyBiosPlatform protocol by default
  //
  for (Index = 0; Index < BbsCount; Index++) {
    if (BbsTable[Index].BootPriority == BBS_IGNORE_ENTRY) {
      continue;
    }

    BbsTable[Index].BootPriority = BBS_DO_NOT_BOOT_FROM;
    IderBootDevice = IderBoot && IS_IDER(BbsTable[Index].Bus, BbsTable[Index].Device, BbsTable[Index].Function) &&
      BbsTable[Index].DeviceType == DevType;
    RegularBootDevice = !IderBoot && (BbsTable[Index].DeviceType == DevType ||
      (DevType == BBS_EMBED_NETWORK && IS_PXE(BbsTable[Index].DeviceType, BbsTable[Index].Class)) ||
      (DevType == BBS_TYPE_CDROM && IS_CDROM(BbsTable[Index].DeviceType, BbsTable[Index].Class)));

    if ((IderBootDevice || RegularBootDevice) && Status != EFI_SUCCESS) {
      if (IderBoot || (TempIndex++ == DeviceIndex)) {
        BbsTable[Index].BootPriority  = 0;
        Status                        = EFI_SUCCESS;
        continue;
      }
    }
  }

  //
  // For debug
  //
  PrintBbsTable (BbsTable);

  return Status;
}

EFI_DEVICE_PATH_PROTOCOL *
BdsCreateBootDevicePath (
  IN UINT16     DeviceType,
  IN UINT16     DeviceIndex,
  IN BOOLEAN    IdeRBoot,
  IN BOOLEAN    EfiBoot
  )
{
  EFI_DEVICE_PATH_PROTOCOL     *DevicePath;
  EFI_DEVICE_PATH_PROTOCOL     *TempDevicePath;
  EFI_DEVICE_PATH_PROTOCOL     *FullDevicePath;
  UINTN                        OptionOrderSize;
  UINT16                       *OptionOrder;
  EFI_LOAD_OPTION              *Option;
  CHAR16                       OptionName[sizeof ("Driver####")];
  UINT16                       OptionNumber;
  UINTN                        OptionIndex;
  UINTN                        OptionCount;
  UINTN                        Index;
  UINTN                        OptionSize;
  UINTN                        TempIndex;
  EFI_DEVICE_PATH_PROTOCOL     *DevPathNode;
  EFI_DEVICE_PATH_PROTOCOL     *DevPathNodeBackup;
  ATAPI_DEVICE_PATH            *AtaPath;
  BOOLEAN                      AtaDeviceMatch;
  PCI_DEVICE_PATH              *PciPath;
  BOOLEAN                      PciDeviceMatch;
  UINT8                        PrimarySecondary;
  UINT8                        SlaveMaster;
  UINTN                        EfiDeviceType;
  UINTN                        LegacyDeviceType;
  BOOLEAN                      TypeMatched;

  PrimarySecondary = ((mAsfBootOptions->SpecialCommandParam >> IDER_BOOT_DEVICE_SHIFT) & IDER_PRIMARY_SECONDARY_MASK)
                        >> IDER_PRIMARY_SECONDARY_SHIFT;
  SlaveMaster      = (mAsfBootOptions->SpecialCommandParam >> IDER_BOOT_DEVICE_SHIFT) & IDER_MASTER_SLAVE_MASK;
  DevicePath       = NULL;
  FullDevicePath   = NULL;
  TempIndex        = 1;
  AtaDeviceMatch   = FALSE;
  PciDeviceMatch   = FALSE;
  EfiDeviceType    = GetBootDeviceType(DeviceType, TRUE);
  LegacyDeviceType = GetBootDeviceType(DeviceType, FALSE);
  TypeMatched      = FALSE;

  if (IdeRBoot && !EfiBoot) {
    LegacyDeviceType = (SlaveMaster == 1) ? BBS_CDROM : BBS_HARDDISK;
  }
  
  //
  // Read the BootOrder variable.
  //
  OptionOrder = BdsLibGetVariableAndSize (L"BootOrder", &gEfiGlobalVariableGuid, &OptionOrderSize);
  if (OptionOrder == NULL) {
    return NULL;
  }

  OptionCount = OptionOrderSize/sizeof(UINT16);
  OptionIndex = 0;

  for (Index = 0; Index < OptionCount; Index++) {

    OptionNumber = OptionOrder[Index];
    UnicodeSPrint (OptionName, sizeof (OptionName), L"Boot%04x", OptionNumber);
    Option = BdsLibGetVariableAndSize (OptionName, &gEfiGlobalVariableGuid, &OptionSize);
    if (Option == NULL) {
      continue;
    }

    //
    // Extract device path from the boot order entry
    //
    TempDevicePath = (EFI_DEVICE_PATH_PROTOCOL*)
        (   //skip the header
          (UINT8*)(Option+1)
          //skip the string
          +(EfiStrLen((CHAR16*)(Option+1))+1)*sizeof(CHAR16)
            );

    if (DevicePathType(TempDevicePath) == BBS_DEVICE_PATH && DevicePathSubType(TempDevicePath) == BBS_BBS_DP) {
      FullDevicePath = DuplicateDevicePath(TempDevicePath);
    } else {
      //
      // If this is EFI boot option, we need to get full device path from EFI_SIMPLE_FILE_SYSTEM_PROTOCOL
      // to determine type of device and provide LoadImage with proper path to bootloader image later on
      //
      FullDevicePath = GetFullBootDevicePath(TempDevicePath);
      if (FullDevicePath == NULL) {
        continue;
      }
    }

    TempDevicePath = FullDevicePath;
    DevPathNode = BdsLibUnpackDevicePath(TempDevicePath);    
    if (DevPathNode == NULL) {
      continue;
    }

    DevPathNodeBackup = DevPathNode;

    //
    // Check if this is our requested boot device
    //
    while (!IsDevicePathEnd(DevPathNode)) {
      if (IdeRBoot && EfiBoot) {
        //
        // IDER EFI boot, check for PCI/ATA device match
        //
        if ((DevicePathType(DevPathNode) == HARDWARE_DEVICE_PATH) &&
          (DevicePathSubType(DevPathNode) == HW_PCI_DP)) {
           PciPath = (PCI_DEVICE_PATH*) DevPathNode;

           if ((PciPath->Device == IDER_DEVICE_NUMBER)
             && (PciPath->Function == IDER_FUNCTION_NUMBER)) {
             PciDeviceMatch = TRUE;
           }
        } else if ((DevicePathType(DevPathNode) == MESSAGING_DEVICE_PATH) &&
          (DevicePathSubType(DevPathNode) == MSG_ATAPI_DP)) {
           AtaPath = (ATAPI_DEVICE_PATH*) DevPathNode;

           if ((AtaPath->PrimarySecondary == PrimarySecondary)
            && (AtaPath->SlaveMaster == SlaveMaster)) {
             AtaDeviceMatch = TRUE;
           }
        }

        if (PciDeviceMatch && AtaDeviceMatch) {
          TypeMatched = TRUE;
        } 
      } else {
        if (DevicePathType(DevPathNode) == BBS_DEVICE_PATH && DevicePathSubType(DevPathNode) == BBS_BBS_DP) {
          //
          // Legacy boot option
          //
          if (((BBS_BBS_DEVICE_PATH *)DevPathNode)->DeviceType == LegacyDeviceType) {
            TypeMatched = TRUE;
          }
        } else {
          //
          // EFI boot option
          //
          if (DevicePathType(DevPathNode) == MEDIA_DEVICE_PATH && DevicePathSubType(DevPathNode) == EfiDeviceType) {
            TypeMatched = TRUE;
          }
        }
      }

      if (TypeMatched) {
        //
        // Type matched, check for device index
        //
        if (!IdeRBoot && TempIndex < DeviceIndex) {
          TempIndex++;
          TypeMatched = FALSE;
          break;
        }

        DevicePath = DuplicateDevicePath(TempDevicePath);
        //
        // Refresh BBS table if legacy option
        //
        if (DevicePathType(DevicePath) == BBS_DEVICE_PATH && DevicePathSubType(DevicePath) == BBS_BBS_DP) {
          RefreshBbsTableForBoot(DeviceIndex, (UINT16)LegacyDeviceType, IdeRBoot);
        }
        break;
      }

      DevPathNode = NextDevicePathNode(DevPathNode);
    }

    if (FullDevicePath != NULL) {
      FreePool(FullDevicePath);
      FullDevicePath = NULL;
    }

    FreePool(DevPathNodeBackup);
    FreePool(Option);

    if (DevicePath != NULL) {
      //
      // Set Boot Current and leave
      //
      gRT->SetVariable (
          L"BootCurrent",
          &gEfiGlobalVariableGuid,
          EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS,
          sizeof (UINT16),
          &OptionNumber
          );
      break;
    }
  }

  FreePool(OptionOrder);
  
  return DevicePath;
}

/**
  Boot the legacy system with the boot option

  @param[in] Option           The legacy boot option which have BBS device path

  @retval EFI_UNSUPPORTED  - There is no legacybios protocol, do not support legacy boot.
  @retval EFI_STATUS       - Return the status of LegacyBios->LegacyBoot ().
**/
EFI_STATUS
AsfDoLegacyBoot (
  IN  BDS_COMMON_OPTION           *Option
  )
{
  EFI_STATUS                Status;
  EFI_LEGACY_BIOS_PROTOCOL  *LegacyBios;

  Status = gBS->LocateProtocol (&gEfiLegacyBiosProtocolGuid, NULL, &LegacyBios);
  if (EFI_ERROR (Status)) {
    //
    // If no LegacyBios protocol we do not support legacy boot
    //
    return EFI_UNSUPPORTED;
  }
  //
  // Write boot to OS performance data to a file
  //
  WRITE_BOOT_TO_OS_PERFORMANCE_DATA;

  DEBUG ((EFI_D_INFO | EFI_D_LOAD, "Legacy Boot: %S\n", Option->Description));
  return LegacyBios->LegacyBoot (
                      LegacyBios,
                      (BBS_BBS_DEVICE_PATH *) Option->DevicePath,
                      Option->LoadOptionsSize,
                      Option->LoadOptions
                      );
}

/**
  Process the boot option follow the EFI 1.1 specification and
  special treat the legacy boot option with BBS_DEVICE_PATH.

  @param[in] Option         The boot option need to be processed
  @param[in] DevicePath       The device path which describe where to load
                 the boot image or the legcy BBS device path
                 to boot the legacy OS
  @param[in] ExitDataSize      Returned directly from gBS->StartImage ()
  @param[in] ExitData       Returned directly from gBS->StartImage ()

  @retval EFI_SUCCESS   - Status from gBS->StartImage (),
                  or BdsBootByDiskSignatureAndPartition ()
  @retval EFI_NOT_FOUND - If the Device Path is not found in the system
**/
EFI_STATUS
AsfBootViaBootOption (
  IN  BDS_COMMON_OPTION             * Option,
  IN  EFI_DEVICE_PATH_PROTOCOL      * DevicePath,
  OUT UINTN                         *ExitDataSize,
  OUT CHAR16                        **ExitData OPTIONAL
  )
{
  EFI_STATUS                Status;
  EFI_HANDLE                Handle;
  EFI_HANDLE                ImageHandle;
  EFI_DEVICE_PATH_PROTOCOL  *TempDevicePath;
  EFI_DEVICE_PATH_PROTOCOL  *FilePath;
  EFI_LOADED_IMAGE_PROTOCOL *ImageInfo;
  EFI_EVENT                 ReadyToBootEvent;
  EFI_ACPI_S3_SAVE_PROTOCOL *AcpiS3Save;
  UINTN                     DataSize;
  EFI_INPUT_KEY             Key;
  UINTN                     EventIndex;
#ifdef EFI_DEBUG
  UINT8                     SecureBootState;
#endif

  *ExitDataSize = 0;
  *ExitData     = NULL;
  DataSize      = sizeof(UINT16);

  //
  // Notes: put EFI64 ROM Shadow Solution
  //
  EFI64_SHADOW_ALL_LEGACY_ROM ();

  //
  // Notes: this code can be remove after the s3 script table
  // hook on the event EFI_EVENT_SIGNAL_READY_TO_BOOT or
  // EFI_EVENT_SIGNAL_LEGACY_BOOT
  //
  Status = gBS->LocateProtocol (&gEfiAcpiS3SaveGuid, NULL, &AcpiS3Save);
  if (!EFI_ERROR (Status)) {
    AcpiS3Save->S3Save (AcpiS3Save, NULL);
  }
  //
  // If it's Device Path that starts with a hard drive path,
  // this routine will do the booting.
  //
  Status = BdsBootByDiskSignatureAndPartition (
            Option,
            (HARDDRIVE_DEVICE_PATH *) DevicePath,
            Option->LoadOptionsSize,
            Option->LoadOptions,
            ExitDataSize,
            ExitData
            );
  if (!EFI_ERROR (Status)) {
    //
    // If we found a disk signature and partition device path return success
    //
    return EFI_SUCCESS;
  }

  //
  // Set Option's BootCurrent field
  //
  gRT->GetVariable (
      L"BootCurrent",
      &gEfiGlobalVariableGuid,
      0,
      &DataSize,
      &Option->BootCurrent
      );

  DEBUG ((EFI_D_INFO, "AsfBootViaBootOption: BootCurrent = %d, DevicePath = %s\n", Option->BootCurrent, DevicePathToStr(DevicePath)));

  //
  // Signal the EFI_EVENT_SIGNAL_READY_TO_BOOT event
  //
  Status = EfiCreateEventReadyToBoot (&ReadyToBootEvent);
  if (!EFI_ERROR (Status)) {
    gBS->SignalEvent (ReadyToBootEvent);
    gBS->CloseEvent (ReadyToBootEvent);
  }

  if ((DevicePathType (Option->DevicePath) == BBS_DEVICE_PATH) &&
      (DevicePathSubType (Option->DevicePath) == BBS_BBS_DP)
      ) {
    //
    // Check to see if we should legacy BOOT. If yes then do the legacy boot
    //
    return AsfDoLegacyBoot (Option);
  }

  DEBUG ((EFI_D_INFO | EFI_D_LOAD, "Booting EFI 1.1 way %S\n", Option->Description));

  //
  // If this is RCO/IDER EFI Boot, don't allow returning to regular boot
  // and booting other devices
  //
  while (1) {
    Status = gBS->LoadImage (
                    TRUE,
                    mBdsImageHandle,
                    DevicePath,
                    NULL,
                    0,
                    &ImageHandle
                    );

    //
    // If we didn't find an image, we may need to load the default
    // boot behavior for the device.
    //
    if (EFI_ERROR (Status)) {
      //
      // Find a Simple File System protocol on the device path. If the remaining
      // device path is set to end then no Files are being specified, so try
      // the removable media file name.
      //
      TempDevicePath = DevicePath;
      Status = gBS->LocateDevicePath (
                      &gEfiSimpleFileSystemProtocolGuid,
                      &TempDevicePath,
                      &Handle
                      );
      if (!EFI_ERROR (Status) && IsDevicePathEnd (TempDevicePath)) {
        FilePath = FileDevicePath (Handle, DEFAULT_REMOVABLE_FILE_NAME);
        if (FilePath) {
          Status = gBS->LoadImage (
                          TRUE,
                          mBdsImageHandle,
                          FilePath,
                          NULL,
                          0,
                          &ImageHandle
                          );
        } else {
          Status = EFI_NOT_FOUND;
        }
      } else {
        Status = EFI_NOT_FOUND;
      }
    }

    if (!EFI_ERROR (Status)) {
      //
      // Provide the image with it's load options
      //
      Status = gBS->HandleProtocol (ImageHandle, &gEfiLoadedImageProtocolGuid, &ImageInfo);
      ASSERT_EFI_ERROR (Status);

      if (Option->LoadOptionsSize != 0) {
        ImageInfo->LoadOptionsSize  = Option->LoadOptionsSize;
        ImageInfo->LoadOptions      = Option->LoadOptions;
      }

#ifdef EFI_DEBUG
      //
      // Get SecureBoot state
      //
      SecureBootState = GetSecureBootState();
      DEBUG ((EFI_D_INFO | EFI_D_LOAD, "SecureBootEnable value prior to image execution %d\n", SecureBootState));
#endif
      //
      // Before calling the image, enable the Watchdog Timer for
      // the 5 Minute period
      //
      gBS->SetWatchdogTimer (5 * 60, 0x0000, 0x00, NULL);

      Status = gBS->StartImage (ImageHandle, ExitDataSize, ExitData);
      DEBUG ((EFI_D_INFO | EFI_D_LOAD, "Image Return Status = %r\n", Status));

      //
      // Clear the Watchdog Timer after the image returns
      //
      gBS->SetWatchdogTimer (0x0000, 0x0000, 0x0000, NULL);
    }

    //
    // Display message to user before attempting another RCO/IDER boot
    //
    gST->ConOut->ClearScreen (gST->ConOut);
    gST->ConOut->OutputString (
                  gST->ConOut,
                  L"EFI RCO/IDER boot failed. Press ENTER to try again\r\n"
                  );
    Key.ScanCode    = 0;
    Key.UnicodeChar = 0;
    while (!(Key.ScanCode == 0 && Key.UnicodeChar == L'\r')) {
      gBS->WaitForEvent (1, &(gST->ConIn->WaitForKey), &EventIndex);
      gST->ConIn->ReadKeyStroke (gST->ConIn, &Key);
    }
  }

  //
  // Clear Boot Current
  //
  gRT->SetVariable (
        L"BootCurrent",
        &gEfiGlobalVariableGuid,
        EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS,
        0,
        &Option->BootCurrent
        );

  return Status;
}

/**
  Found out ASF boot options.

  @param[in] EfiBoot      Set to TRUE if this is EFI boot

  @retval EFI_DEVICE_PATH_PROTOCOL     Device path for booting.
**/
EFI_DEVICE_PATH_PROTOCOL *
BdsAsfBoot (
  IN   BOOLEAN                         EfiBoot
  )
{
  EFI_DEVICE_PATH_PROTOCOL        *DevicePath;

  DevicePath = NULL;

  //
  // First we check ASF boot options Special Command
  //
  switch (mAsfBootOptions->SpecialCommand) {
  //
  // No additional special command is included; the Special Command Parameter has no
  // meaning.
  //
  case NOP:
    break;

  //
  // The Special Command Parameter can be used to specify a PXE
  // parameter. When the parameter value is 0, the system default PXE device is booted. All
  // other values for the PXE parameter are reserved for future definition by this specification.
  //
  case FORCE_PXE:
    if (mAsfBootOptions->SpecialCommandParam != 0) {
      //
      // ASF spec says 0 currently only option
      //
      break;
    }

    if (EfiBoot == TRUE) {
      DevicePath = BdsCreatePxeDevicePath (mAsfBootOptions->SpecialCommandParam);
    } else {
      DevicePath = BdsCreateBootDevicePath (FORCE_PXE, mAsfBootOptions->SpecialCommandParam, FALSE, EfiBoot);
    }
    break;

  //
  // The Special Command Parameter identifies the boot-media index for
  // the managed client. When the parameter value is 0, the default hard-drive is booted, when the
  // parameter value is 1, the primary hard-drive is booted; when the value is 2, the secondary
  // hard-drive is booted and so on.
  //
  case FORCE_HARDDRIVE:
  //
  // The Special Command Parameter identifies the boot-media
  // index for the managed client. When the parameter value is 0, the default hard-drive is
  // booted, when the parameter value is 1, the primary hard-drive is booted; when the value is 2,
  // the secondary hard-drive is booted and so on.
  //
  case FORCE_SAFEMODE:
    DevicePath = BdsCreateBootDevicePath(FORCE_HARDDRIVE, mAsfBootOptions->SpecialCommandParam, FALSE, EfiBoot);    
    break;

  //
  // The Special Command Parameter can be used to specify a
  // diagnostic parameter. When the parameter value is 0, the default diagnostic media is booted.
  // All other values for the diagnostic parameter are reserved for future definition by this
  // specification.
  //
  case FORCE_DIAGNOSTICS:
    if (mAsfBootOptions->SpecialCommandParam != 0) {
      //
      // ASF spec says 0 currently only option
      //
      break;
    }

    DevicePath = BdsCreateShellDevicePath ();

    //
    // We want everything connected up for shell
    //
    BdsLibConnectAllDriversToAllControllers ();
    break;

  //
  // The Special Command Parameter identifies the boot-media index for
  // the managed client. When the parameter value is 0, the default CD/DVD is booted, when the
  // parameter value is 1, the primary CD/DVD is booted; when the value is 2, the secondary
  // CD/DVD is booted and so on.
  //
  case FORCE_CDDVD:
    DevicePath = BdsCreateBootDevicePath (FORCE_CDDVD, mAsfBootOptions->SpecialCommandParam, FALSE, EfiBoot);
    break;

  default:
    break;;
  }

  return DevicePath;
}

/**
  Check IdeR boot device and Asf boot device

  @param[in] EfiBoot      Set to TRUE if this is EFI boot

  @retval EFI_DEVICE_PATH_PROTOCOL     Device path for booting.
**/
EFI_DEVICE_PATH_PROTOCOL *
BdsForcedBoot (
  IN   BOOLEAN                         EfiBoot
  )
{
  EFI_DEVICE_PATH_PROTOCOL *DevicePath;

  DevicePath = NULL;

  //
  // OEM command values; the interpretation of the Special Command and associated Special
  // Command Parameters is defined by the entity associated with the Enterprise ID.
  //
  if (ActiveManagementEnableIdeR ()) {
    //
    // Check if any media exist in Ider device
    //
    if (BdsCheckIderMedia ()) {
      DevicePath = BdsCreateBootDevicePath (
                      FORCE_CDDVD,
                      0,
                      TRUE,
                      EfiBoot
                      );
    }
  } else if (mAsfBootOptions->IanaId != ASF_INDUSTRY_CONVERTED_IANA) {
    DevicePath = BdsAsfBoot (EfiBoot);
  }

  return DevicePath;
}

/**
  Process ASF boot options and if available, attempt the boot

  @param[in] None.

  @retval EFI_SUCCESS    The command completed successfully
**/
EFI_STATUS
BdsBootViaAsf (
  IN  VOID
  )
{
  EFI_STATUS                Status;
  EFI_DEVICE_PATH_PROTOCOL  *DevicePath;
  BDS_COMMON_OPTION         *BootOption;
  UINTN                     ExitDataSize;
  CHAR16                    *ExitData;
  BOOLEAN                   EfiBoot;
  EFI_LEGACY_BIOS_PROTOCOL  *LegacyBios;

  Status      = EFI_SUCCESS;
  DevicePath  = NULL;
  EfiBoot     = FALSE;

  //
  // Check if this is legacy or efi boot
  //
  Status = gBS->LocateProtocol (&gEfiLegacyBiosProtocolGuid, NULL, &LegacyBios);
  if (LegacyBios == NULL) {
    EfiBoot = TRUE;
  }

  //
  // Check if ASF Boot Options is present.
  //
  if (mAsfBootOptions->SubCommand != ASF_BOOT_OPTIONS_PRESENT) {
    return EFI_NOT_FOUND;
  }

  DevicePath = BdsForcedBoot (EfiBoot);
  //
  // If device path was set, the we have a boot option to use
  //
  if (DevicePath == NULL) {
    return EFI_UNSUPPORTED;
  }

  BootOption = BdsCreateBootOption (DevicePath, L"ASF Boot");
  if (BootOption == NULL) {
    return EFI_OUT_OF_RESOURCES;
  }

  Status = AsfBootViaBootOption (BootOption, BootOption->DevicePath, &ExitDataSize, &ExitData);

  FreePool (BootOption);
  FreePool (DevicePath);

  return Status;
}

/**
  This will return if Media in IDE-R is present.

  @param[in] None.

  @retval TRUE    Media is present.
  @retval FALSE   Media is not present.
**/
BOOLEAN
BdsCheckIderMedia (
  IN  VOID
  )
{
  UINTN                     HandleNum;
  EFI_HANDLE                *HandleBuf;
  EFI_HANDLE                Handle;
  EFI_STATUS                Status;
  EFI_DEVICE_PATH_PROTOCOL  *DPath;
  UINTN                     Index;
  UINTN                     EventIndex;
  EFI_INPUT_KEY             Key;
  EFI_BLOCK_IO_PROTOCOL     *BlkIo;
  EFI_DISK_INFO_PROTOCOL    *DiskInfo;
  EFI_BLOCK_IO_MEDIA        *BlkMedia;
  VOID                      *Buffer;
  UINT8                     IdeBootDevice;
  UINT32                    IdeChannel;
  UINT32                    IdeDevice;

  IdeBootDevice = ActiveManagementIderBootDeviceGet ();

  DEBUG ((EFI_D_INFO | EFI_D_LOAD, "Ide Channel Device Index = %d\n", IdeBootDevice));

  //
  // Make sure the Legacy Boot Protocol is available
  //
  Status = gBS->LocateHandleBuffer (
                  ByProtocol,
                  &gEfiBlockIoProtocolGuid,
                  NULL,
                  &HandleNum,
                  &HandleBuf
                  );
  if ((EFI_ERROR (Status)) || (HandleBuf == NULL)) {
    goto Exit;
  }

  for (Index = 0; Index < HandleNum; Index++) {
    Status = gBS->HandleProtocol (
                    HandleBuf[Index],
                    &gEfiDevicePathProtocolGuid,
                    &DPath
                    );
    if (EFI_ERROR (Status)) {
      continue;
    }

    Status = gBS->LocateDevicePath (
                    &gEfiIderControllerDriverProtocolGuid,
                    &DPath,
                    &Handle
                    );
    if (EFI_ERROR (Status)) {
      continue;
    }

    Status = gBS->HandleProtocol (
                    HandleBuf[Index],
                    &gEfiBlockIoProtocolGuid,
                    &BlkIo
                    );

    if (EFI_ERROR(Status)) {
      continue;
    }

    Status = gBS->HandleProtocol (
                    HandleBuf[Index],
                    &gEfiDiskInfoProtocolGuid,
                    &DiskInfo
                    );

    if (EFI_ERROR(Status)) {
      continue;
    }

    DiskInfo->WhichIde (DiskInfo, &IdeChannel, &IdeDevice);

    if (IdeBootDevice != (UINT8) (IdeChannel * 2 + IdeDevice)) {
      continue;
    }

    if (BlkIo->Media->MediaPresent) {
      if (HandleBuf != NULL) {
        FreePool (HandleBuf);
      }
      return TRUE;
    }

    while (TRUE) {
      BlkMedia  = BlkIo->Media;
      Buffer    = AllocatePool (BlkMedia->BlockSize);
      if (Buffer) {
        BlkIo->ReadBlocks (
                BlkIo,
                BlkMedia->MediaId,
                0,
                BlkMedia->BlockSize,
                Buffer
                );
        FreePool (Buffer);
      }

      if (BlkMedia->MediaPresent) {
        if (HandleBuf != NULL) {
          FreePool (HandleBuf);
        }
        return TRUE;
      }

      gST->ConOut->OutputString (
                    gST->ConOut,
                    L"Boot disk missing, please insert boot disk and press ENTER\r\n"
                    );
      Key.ScanCode    = 0;
      Key.UnicodeChar = 0;
      gBS->RestoreTPL (EFI_TPL_APPLICATION);
      while (!(Key.ScanCode == 0 && Key.UnicodeChar == L'\r')) {
        Status = gBS->WaitForEvent (1, &(gST->ConIn->WaitForKey), &EventIndex);
        gST->ConIn->ReadKeyStroke (gST->ConIn, &Key);
      }

      gBS->RaiseTPL (EFI_TPL_DRIVER);
    }

    break;
  }

Exit:
  if (HandleBuf != NULL) {
    FreePool (HandleBuf);
  }
  return FALSE;
}