hc
2024-03-22 a0752693d998599af469473b8dc239ef973a012f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/** @file
  Intel CPU policy protocol should be installed after CPU related setting
  are set by platform driver. CPU driver only could get CPU policy data after this
  protocol installed.
 
  @copyright
  Copyright 2017 - 2021 Intel Corporation. <BR>
 
  SPDX-License-Identifier: BSD-2-Clause-Patent
**/
 
#ifndef _CPU_POLICY_PROTOCOL_H_
#define _CPU_POLICY_PROTOCOL_H_
 
#include <CpuPolicyPeiDxeCommon.h>
 
#define CPU_POLICY_PROTOCOL_GUID \
  { \
    0xec7c60b4, 0xa82c, 0x42a5, { 0xbe, 0x76, 0x87, 0xfc, 0xb5, 0x81, 0xa9, 0x1b } \
  }
 
typedef struct {
  UINT64                PlatformCpuSocketNames;
  UINT64                PlatformCpuAssetTags;
  UINT8                 SbspSelection;
  CPU_POLICY_COMMON     Policy;
} CPU_POLICY_CONFIGURATION;
 
extern EFI_GUID gEfiCpuPolicyProtocolGuid;
 
#endif