]> git.proxmox.com Git - mirror_edk2.git/blob - Vlv2DeviceRefCodePkg/ValleyView2Soc/SouthCluster/Include/Ppi/SmbusPolicy.h
Vlv2DeviceRefCodePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / Vlv2DeviceRefCodePkg / ValleyView2Soc / SouthCluster / Include / Ppi / SmbusPolicy.h
1 //
2 //
3
4 /*++
5
6 Copyright (c) 1999 - 2014, Intel Corporation. All rights reserved
7
8 SPDX-License-Identifier: BSD-2-Clause-Patent
9
10
11
12 Module Name:
13
14 SmbusPolicy.h
15
16 Abstract:
17
18 Smbus Policy PPI as defined in EFI 2.0
19
20 --*/
21 #ifndef _PEI_SMBUS_POLICY_PPI_H
22 #define _PEI_SMBUS_POLICY_PPI_H
23
24 #define PEI_SMBUS_POLICY_PPI_GUID \
25 { \
26 0x63b6e435, 0x32bc, 0x49c6, 0x81, 0xbd, 0xb7, 0xa1, 0xa0, 0xfe, 0x1a, 0x6c \
27 }
28
29 typedef struct _PEI_SMBUS_POLICY_PPI PEI_SMBUS_POLICY_PPI;
30
31 struct _PEI_SMBUS_POLICY_PPI {
32 UINTN BaseAddress;
33 UINT32 PciAddress;
34 UINT8 NumRsvdAddress;
35 UINT8 *RsvdAddress;
36 };
37
38 extern EFI_GUID gPeiSmbusPolicyPpiGuid;
39
40 #endif