hc
2024-03-25 edb30157bad0c0001c32b854271ace01d3b9a16a
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
32
33
34
35
36
37
38
39
40
41
42
/** @file
  Silicon Policy PPI is used for specifying platform
  related Intel silicon information and policy setting.
  This PPI is consumed by the silicon PEI modules and carried
  over to silicon DXE modules.
 
  @copyright
  Copyright 2017 - 2021 Intel Corporation. <BR>
 
  SPDX-License-Identifier: BSD-2-Clause-Patent
**/
 
#ifndef _UPI_POLICY_PPI_H_
#define _UPI_POLICY_PPI_H_
 
#include <Upi/KtiHost.h>
 
///
/// PPI revision information
/// This PPI will be extended in a backwards compatible manner over time
/// Added interfaces should be documented here with the revisions added
/// Revision 1:  Initial revision
#define UPI_POLICY_PPI_REVISION  0x1
 
typedef struct _UPI_POLICY_PPI UPI_POLICY_PPI;
 
/**
  UPI Policy Structure
**/
struct _UPI_POLICY_PPI {
  /**
    This member specifies the revision of the UPI_POLICY_PPI. This field is used to
    indicate backwards compatible changes to the INTERFACE. Platform code that produces
    this INTERFACE must fill with the correct revision value for UPI code
    to correctly interpret the content of the INTERFACE fields.
  **/
  UINT32        Revision;
  KTI_HOST_IN   Upi;        ///< KTIRC input structure
};
 
#endif  // _UPI_POLICY_PPI_H_