1 //
2 //
3 
4 /*++
5 
6 Copyright (c)  1999  - 2014, Intel Corporation. All rights reserved
7 
8   This program and the accompanying materials are licensed and made available under
9   the terms and conditions of the BSD License that accompanies this distribution.
10   The full text of the license may be found at
11   http://opensource.org/licenses/bsd-license.php.
12 
13   THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
14   WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15 
16 
17 
18 Module Name:
19 
20   SmbusPolicy.h
21 
22 Abstract:
23 
24   Smbus Policy PPI as defined in EFI 2.0
25 
26 --*/
27 #ifndef _PEI_SMBUS_POLICY_PPI_H
28 #define _PEI_SMBUS_POLICY_PPI_H
29 
30 #define PEI_SMBUS_POLICY_PPI_GUID \
31   { \
32     0x63b6e435, 0x32bc, 0x49c6, 0x81, 0xbd, 0xb7, 0xa1, 0xa0, 0xfe, 0x1a, 0x6c \
33   }
34 
35 typedef struct _PEI_SMBUS_POLICY_PPI PEI_SMBUS_POLICY_PPI;
36 
37 struct _PEI_SMBUS_POLICY_PPI {
38   UINTN   BaseAddress;
39   UINT32  PciAddress;
40   UINT8   NumRsvdAddress;
41   UINT8   *RsvdAddress;
42 };
43 
44 extern EFI_GUID gPeiSmbusPolicyPpiGuid;
45 
46 #endif
47