/** @file
|
Intel reference code configuration policies.
|
|
Copyright (c) 2019 Intel Corporation. All rights reserved. <BR>
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
**/
|
|
#ifndef _SI_POLICY_STRUCT_H_
|
#define _SI_POLICY_STRUCT_H_
|
|
#include <ConfigBlock.h>
|
#include <ConfigBlock/SiConfig.h>
|
|
/**
|
Silicon Policy revision number
|
Any change to this structure will result in an update in the revision number
|
|
This member specifies the revision of the Silicon Policy. This field is used to indicate change
|
to the policy structure.
|
|
<b>Revision 1</b>:
|
- Initial version.
|
**/
|
#define SI_POLICY_REVISION 1
|
|
/**
|
Silicon pre-memory Policy revision number
|
Any change to this structure will result in an update in the revision number
|
|
<b>Revision 1</b>:
|
- Initial version.
|
**/
|
#define SI_PREMEM_POLICY_REVISION 1
|
|
|
/**
|
SI Policy PPI in Pre-Mem\n
|
All SI config block change history will be listed here\n\n
|
|
- <b>Revision 1</b>:
|
- Initial version.\n
|
**/
|
struct _SI_PREMEM_POLICY_STRUCT {
|
CONFIG_BLOCK_TABLE_HEADER TableHeader;
|
/*
|
Individual Config Block Structures are added here in memory as part of AddConfigBlock()
|
*/
|
};
|
|
/**
|
SI Policy PPI\n
|
All SI config block change history will be listed here\n\n
|
|
- <b>Revision 1</b>:
|
- Initial version.\n
|
**/
|
struct _SI_POLICY_STRUCT {
|
CONFIG_BLOCK_TABLE_HEADER TableHeader;
|
/*
|
Individual Config Block Structures are added here in memory as part of AddConfigBlock()
|
*/
|
};
|
|
#endif
|