1 2 /*++ 3 4 Copyright (c) 1999 - 2014, Intel Corporation. All rights reserved 5 6 This program and the accompanying materials are licensed and made available under 7 the terms and conditions of the BSD License that accompanies this distribution. 8 The full text of the license may be found at 9 http://opensource.org/licenses/bsd-license.php. 10 11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 13 14 15 Module Name: 16 17 VlvPeiInit.h 18 19 Abstract: 20 21 Interface definition between ValleyView MRC and VlvInitPeim driver.. 22 23 --*/ 24 25 #ifndef _VLV_PEI_INIT_H_ 26 #define _VLV_PEI_INIT_H_ 27 28 // 29 // Define the VLV PEI Init PPI GUID 30 // 31 #define VLV_PEI_INIT_PPI_GUID \ 32 { \ 33 0x9ea8911, 0xbe0d, 0x4230, 0xa0, 0x3, 0xed, 0xc6, 0x93, 0xb4, 0x8e, 0x11 \ 34 } 35 36 // 37 // Extern the GUID for PPI users. 38 // 39 extern EFI_GUID gVlvPeiInitPpiGuid; 40 41 #endif 42