Home | History | Annotate | Download | only in Guid
      1 /** @file
      2 GUIDs used for System Non Volatile HOB entries in the in the HOB list and FV Guids carrying
      3 the System specific information.
      4 
      5 Copyright (c) 2013-2015 Intel Corporation.
      6 
      7 This program and the accompanying materials
      8 are licensed and made available under the terms and conditions of the BSD License
      9 which accompanies this distribution.  The full text of the license may be found at
     10 http://opensource.org/licenses/bsd-license.php
     11 
     12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
     13 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
     14 
     15 **/
     16 
     17 #ifndef _SYSTEM_NV_DATA_HOB_GUID_H_
     18 #define _SYSTEM_NV_DATA_HOB_GUID_H_
     19 
     20 #define EFI_SYSTEM_NV_DATA_HOB_GUID \
     21   {0xd6e5092d, 0xc7b2, 0x4872, {0xaf, 0x66, 0xfd, 0xc0, 0xe6, 0xf9, 0x5e, 0x78}}
     22 
     23 typedef struct {
     24   EFI_GUID                  SystemNvDataHobGuid;
     25   EFI_GUID                  SystemNvDataFvGuid;
     26   EFI_LBA                   StartLba;
     27   UINTN                     StartLbaOffset;
     28   EFI_LBA                   EndLba;
     29   UINTN                     EndLbaOffset;
     30   UINT32                    DataTypeSignature;
     31 } NV_SYSTEM_DATA_GUID_TYPE;
     32 
     33 extern EFI_GUID gEfiSystemNvDataHobGuid;
     34 
     35 #endif
     36