diff options
Diffstat (limited to 'ReferenceCode/Haswell/Guid/PoweronHob')
-rw-r--r-- | ReferenceCode/Haswell/Guid/PoweronHob/PoweronHob.c | 24 | ||||
-rw-r--r-- | ReferenceCode/Haswell/Guid/PoweronHob/PoweronHob.h | 29 |
2 files changed, 53 insertions, 0 deletions
diff --git a/ReferenceCode/Haswell/Guid/PoweronHob/PoweronHob.c b/ReferenceCode/Haswell/Guid/PoweronHob/PoweronHob.c new file mode 100644 index 0000000..660d5d1 --- /dev/null +++ b/ReferenceCode/Haswell/Guid/PoweronHob/PoweronHob.c @@ -0,0 +1,24 @@ +/** @file + GUIDs used for PowerOn boot mode (not reset). + +@copyright + Copyright (c) 1999 - 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 'Framework Code' and is licensed as such + under the terms of your license agreement with Intel or your + vendor. This file may not be modified, except as allowed by + additional terms of your license agreement. +**/ +#include "Tiano.h" +#include EFI_GUID_DEFINITION (PowerOnHob) + +EFI_GUID gEfiPowerOnHobGuid = EFI_POWER_ON_HOB_GUID; + +EFI_GUID_STRING(&gEfiPowerOnHobGuid, "Power On HOB", "Hob GUID for Power On boot mode"); diff --git a/ReferenceCode/Haswell/Guid/PoweronHob/PoweronHob.h b/ReferenceCode/Haswell/Guid/PoweronHob/PoweronHob.h new file mode 100644 index 0000000..9d0487b --- /dev/null +++ b/ReferenceCode/Haswell/Guid/PoweronHob/PoweronHob.h @@ -0,0 +1,29 @@ +/** @file + GUID for Power On boot mode. + +@copyright + Copyright (c) 1999 - 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 'Framework Code' and is licensed as such + under the terms of your license agreement with Intel or your + vendor. This file may not be modified, except as allowed by + additional terms of your license agreement. +**/ +#ifndef _POWER_ON_HOB_GUID_H_ +#define _POWER_ON_HOB_GUID_H_ + +#define EFI_POWER_ON_HOB_GUID \ + { \ + 0x468a601, 0xc535, 0x46fd, 0xa9, 0x5d, 0xbb, 0xab, 0x99, 0x1b, 0x17, 0x8c \ + } + +extern EFI_GUID gEfiPowerOnHobGuid; + +#endif |