NvVarStoreFormatted.h 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. /** @file
  2. EDKII NvVarStore Formatted GUID
  3. A NULL protocol instance with this GUID in the DXE and/or MM protocol
  4. databases, and/or a NULL PPI with this GUID in the PPI database, implies that
  5. a DXE or MM driver, or a PEIM, has verified (or dynamically ensured) that the
  6. non-volatile variable store has valid and consistent headers
  7. (EFI_FIRMWARE_VOLUME_HEADER and VARIABLE_STORE_HEADER).
  8. Said predicate is required by the read-only variable PEIM, and the read side
  9. of the runtime variable DXE and MM drivers, immediately after they are
  10. dispatched. This GUID presents platforms with one way to coordinate between
  11. their module(s) that format the variable store FVB device and the variable
  12. service drivers.
  13. Copyright (C) 2018, Red Hat, Inc.
  14. SPDX-License-Identifier: BSD-2-Clause-Patent
  15. **/
  16. #ifndef __EDKII_NV_VAR_STORE_FORMATTED_H__
  17. #define __EDKII_NV_VAR_STORE_FORMATTED_H__
  18. #define EDKII_NV_VAR_STORE_FORMATTED_GUID \
  19. { \
  20. 0xd1a86e3f, 0x0707, 0x4c35, \
  21. { 0x83, 0xcd, 0xdc, 0x2c, 0x29, 0xc8, 0x91, 0xa3 } \
  22. }
  23. extern EFI_GUID gEdkiiNvVarStoreFormattedGuid;
  24. #endif