]> git.proxmox.com Git - mirror_edk2.git/blob - QuarkSocPkg/QuarkNorthCluster/Include/Protocol/PlatformPolicy.h
QuarkSocPkg: Replace BSD License with BSD+Patent License
[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 SPDX-License-Identifier: BSD-2-Clause-Patent
7
8
9 **/
10
11 #ifndef _PLATFORM_POLICY_H_
12 #define _PLATFORM_POLICY_H_
13
14 typedef struct _EFI_PLATFORM_POLICY_PROTOCOL EFI_PLATFORM_POLICY_PROTOCOL;
15
16 #define EFI_PLATFORM_POLICY_PROTOCOL_GUID \
17 { \
18 0x2977064f, 0xab96, 0x4fa9, { 0x85, 0x45, 0xf9, 0xc4, 0x02, 0x51, 0xe0, 0x7f } \
19 }
20
21 //
22 // Protocol to describe various platform information. Add to this as needed.
23 //
24 struct _EFI_PLATFORM_POLICY_PROTOCOL {
25 UINT8 NumRsvdSmbusAddresses;
26 UINT8 *RsvdSmbusAddresses;
27 };
28
29 extern EFI_GUID gEfiPlatformPolicyProtocolGuid;
30
31 #endif