VlvMmioPolicy.h 714 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*++
  2. Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved
  3. SPDX-License-Identifier: BSD-2-Clause-Patent
  4. Module Name:
  5. VlvMmioPolicy.h
  6. Abstract:
  7. Interface definition details between ValleyView platform drivers during PEI phase.
  8. --*/
  9. #ifndef _VLV_MMIO_POLICY_PPI_H_
  10. #define _VLV_MMIO_POLICY_PPI_H_
  11. #define VLV_MMIO_POLICY_PPI_GUID \
  12. { \
  13. 0xE767BF7F, 0x4DB6, 0x5B34, 0x10, 0x11, 0x4F, 0xBE, 0x4C, 0xA7, 0xAF, 0xD2 \
  14. }
  15. extern EFI_GUID gVlvMmioPolicyPpiGuid;
  16. //
  17. // MRC Platform Policiy PPI
  18. //
  19. typedef struct _VLV_MMIO_POLICY_PPI {
  20. UINT16 MmioSize;
  21. } VLV_MMIO_POLICY_PPI;
  22. #pragma pack()
  23. #endif // _VLV_MMIO_POLICY_PPI_H_