]> git.proxmox.com Git - mirror_edk2.git/blob - QuarkSocPkg/QuarkNorthCluster/Include/Protocol/PlatformPolicy.h
QuarkSocPkg: Add new package for Quark SoC X1000
[mirror_edk2.git] / QuarkSocPkg / QuarkNorthCluster / Include / Protocol / PlatformPolicy.h
1 /** @file
2 Protocol used for Platform Policy definition.
3
4 Copyright (c) 2013-2015 Intel Corporation.
5
6 This program and the accompanying materials
7 are licensed and made available under the terms and conditions of the BSD License
8 which accompanies this distribution. 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 **/
16
17 #ifndef _PLATFORM_POLICY_H_
18 #define _PLATFORM_POLICY_H_
19
20 typedef struct _EFI_PLATFORM_POLICY_PROTOCOL EFI_PLATFORM_POLICY_PROTOCOL;
21
22 #define EFI_PLATFORM_POLICY_PROTOCOL_GUID \
23 { \
24 0x2977064f, 0xab96, 0x4fa9, { 0x85, 0x45, 0xf9, 0xc4, 0x02, 0x51, 0xe0, 0x7f } \
25 }
26
27 //
28 // Protocol to describe various platform information. Add to this as needed.
29 //
30 struct _EFI_PLATFORM_POLICY_PROTOCOL {
31 UINT8 NumRsvdSmbusAddresses;
32 UINT8 *RsvdSmbusAddresses;
33 };
34
35 extern EFI_GUID gEfiPlatformPolicyProtocolGuid;
36
37 #endif