/** @file Intel reference code configuration policies. Copyright (c) 2021, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent **/ #ifndef _SI_POLICY_STRUCT_H_ #define _SI_POLICY_STRUCT_H_ #include #include #include /** 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. Revision 1: - 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 Revision 1: - 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 - Revision 1: - Initial version.\n **/ struct _SI_PREMEM_POLICY_STRUCT { CONFIG_BLOCK_TABLE_HEADER TableHeader; ///< Config Block Table Header /* 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 - Revision 1: - Initial version.\n **/ struct _SI_POLICY_STRUCT { CONFIG_BLOCK_TABLE_HEADER TableHeader; ///< Config Block Table Header /* Individual Config Block Structures are added here in memory as part of AddConfigBlock() */ }; #endif