diff options
author | raywu <raywu0301@gmail.com> | 2018-06-15 00:00:50 +0800 |
---|---|---|
committer | raywu <raywu0301@gmail.com> | 2018-06-15 00:00:50 +0800 |
commit | b7c51c9cf4864df6aabb99a1ae843becd577237c (patch) | |
tree | eebe9b0d0ca03062955223097e57da84dd618b9a /ReferenceCode/Haswell/Ppi | |
download | zprj-master.tar.xz |
Diffstat (limited to 'ReferenceCode/Haswell/Ppi')
-rw-r--r-- | ReferenceCode/Haswell/Ppi/Cache/Cache.c | 25 | ||||
-rw-r--r-- | ReferenceCode/Haswell/Ppi/Cache/Cache.h | 86 | ||||
-rw-r--r-- | ReferenceCode/Haswell/Ppi/CpuPlatformPolicy/CpuPlatformPolicy.c | 43 | ||||
-rw-r--r-- | ReferenceCode/Haswell/Ppi/CpuPlatformPolicy/CpuPlatformPolicy.h | 358 | ||||
-rw-r--r-- | ReferenceCode/Haswell/Ppi/CpuPpiLib.cif | 18 | ||||
-rw-r--r-- | ReferenceCode/Haswell/Ppi/CpuPpiLib.inf | 65 | ||||
-rw-r--r-- | ReferenceCode/Haswell/Ppi/CpuPpiLib.mak | 21 | ||||
-rw-r--r-- | ReferenceCode/Haswell/Ppi/CpuPpiLib.sdl | 31 | ||||
-rw-r--r-- | ReferenceCode/Haswell/Ppi/TpmInitialized/TpmInitialized.c | 24 | ||||
-rw-r--r-- | ReferenceCode/Haswell/Ppi/TpmInitialized/TpmInitialized.h | 29 | ||||
-rw-r--r-- | ReferenceCode/Haswell/Ppi/TxtMemoryUnlocked/TxtMemoryUnlocked.c | 33 | ||||
-rw-r--r-- | ReferenceCode/Haswell/Ppi/TxtMemoryUnlocked/TxtMemoryUnlocked.h | 32 |
12 files changed, 765 insertions, 0 deletions
diff --git a/ReferenceCode/Haswell/Ppi/Cache/Cache.c b/ReferenceCode/Haswell/Ppi/Cache/Cache.c new file mode 100644 index 0000000..75e8535 --- /dev/null +++ b/ReferenceCode/Haswell/Ppi/Cache/Cache.c @@ -0,0 +1,25 @@ +/** @file + CPU IO PPI GUID as defined in EFI 2.0 + +@copyright + Copyright (c) 1999 - 2012 Intel Corporation. All rights reserved + This software and associated documentation (if any) is furnished + under a license and may only be used or copied in accordance + with the terms of the license. Except as permitted by such + license, no part of this software or documentation may be + reproduced, stored in a retrieval system, or transmitted in any + form or by any means without the express written consent of + Intel Corporation. + + This file contains 'Framework Code' and is licensed as such + under the terms of your license agreement with Intel or your + vendor. This file may not be modified, except as allowed by + additional terms of your license agreement. +**/ +#include "Tiano.h" +#include "Pei.h" +#include EFI_PPI_DEFINITION (Cache) + +EFI_GUID gPeiCachePpiGuid = PEI_CACHE_PPI_GUID; + +EFI_GUID_STRING(&gPeiCachePpiGuid, "Cache", "Cache PPI"); diff --git a/ReferenceCode/Haswell/Ppi/Cache/Cache.h b/ReferenceCode/Haswell/Ppi/Cache/Cache.h new file mode 100644 index 0000000..cbd846b --- /dev/null +++ b/ReferenceCode/Haswell/Ppi/Cache/Cache.h @@ -0,0 +1,86 @@ +/** @file + Cache PPI defined in EFI 2.0 + This code abstracts Cache Settings + +@copyright + Copyright (c) 1999 - 2012 Intel Corporation. All rights reserved + This software and associated documentation (if any) is furnished + under a license and may only be used or copied in accordance + with the terms of the license. Except as permitted by such + license, no part of this software or documentation may be + reproduced, stored in a retrieval system, or transmitted in any + form or by any means without the express written consent of + Intel Corporation. + + This file contains 'Framework Code' and is licensed as such + under the terms of your license agreement with Intel or your + vendor. This file may not be modified, except as allowed by + additional terms of your license agreement. +**/ +#ifndef _PEI_CACHE_PPI_H_ +#define _PEI_CACHE_PPI_H_ + +#define PEI_CACHE_PPI_GUID \ + { \ + 0x9be4bc2, 0x790e, 0x4dea, 0x8b, 0xdc, 0x38, 0x5, 0x16, 0x98, 0x39, 0x44 \ + } + +EFI_FORWARD_DECLARATION (PEI_CACHE_PPI); + +typedef enum _EFI_MEMORY_CACHE_TYPE +{ + EfiCacheTypeUncacheable = 0, + EfiCacheTypeWriteCombining= 1, + EfiCacheTypeReserved2 = 2, + EfiCacheTypeReserved3 = 3, + EfiCacheTypeWriteThrough = 4, + EfiCacheTypeWriteProtected= 5, + EfiCacheTypeWriteBack = 6, + EfiCacheTypeMaximumType = 7 +} EFI_MEMORY_CACHE_TYPE; + +typedef +EFI_STATUS +(EFIAPI *PEI_SET_CACHE_PPI)( + IN EFI_PEI_SERVICES **PeiServices, + IN PEI_CACHE_PPI *This, + IN EFI_PHYSICAL_ADDRESS MemoryAddress, + IN UINT64 MemoryLength, + IN EFI_MEMORY_CACHE_TYPE MemoryCacheType + ); + +typedef +EFI_STATUS +(EFIAPI *PEI_RESET_CACHE_PPI)( + IN EFI_PEI_SERVICES **PeiServices, + IN PEI_CACHE_PPI *This + ); + +typedef +EFI_STATUS +(EFIAPI *PEI_ACTIVATE_CACHE_PPI)( + IN EFI_PEI_SERVICES **PeiServices, + IN PEI_CACHE_PPI *This + ); + +/// +/// Platform code can use this interface to arrange MTRR configuration in PEI phase. +/// +struct _PEI_CACHE_PPI { + /// + /// Set MTRR configuration for a memory region. + /// + PEI_SET_CACHE_PPI SetCache; + /// + /// Clean up MTRR in MTRR buffer. + /// + PEI_RESET_CACHE_PPI ResetCache; + /// + /// Disable NEM if in NEM mode, and sync MTRR configuration from buffer to MSR. + /// + PEI_ACTIVATE_CACHE_PPI ActivateCache; +}; + +extern EFI_GUID gPeiCachePpiGuid; + +#endif diff --git a/ReferenceCode/Haswell/Ppi/CpuPlatformPolicy/CpuPlatformPolicy.c b/ReferenceCode/Haswell/Ppi/CpuPlatformPolicy/CpuPlatformPolicy.c new file mode 100644 index 0000000..61cf0be --- /dev/null +++ b/ReferenceCode/Haswell/Ppi/CpuPlatformPolicy/CpuPlatformPolicy.c @@ -0,0 +1,43 @@ +/** @file + CPU policy PPI produced by a platform driver specifying various + expected CPU settings. This protocol is consumed by the CPU PEI modules. + +@copyright + Copyright (c) 2009 - 2012 Intel Corporation. All rights reserved + This software and associated documentation (if any) is furnished + under a license and may only be used or copied in accordance + with the terms of the license. Except as permitted by such + license, no part of this software or documentation may be + reproduced, stored in a retrieval system, or transmitted in any + form or by any means without the express written consent of + Intel Corporation. + + This file contains a 'Sample Driver' and is licensed as such + under the terms of your license agreement with Intel or your + vendor. This file may be modified by the user, subject to + the additional terms of the license agreement +**/ + +/// +/// Statements that include other files +/// +/// +/// External include files do NOT need to be explicitly specified in real EDKII +/// environment +/// +#if !defined(EDK_RELEASE_VERSION) || (EDK_RELEASE_VERSION < 0x00020000) + +#include "EdkIIGluePeim.h" +#endif + +#include "CpuPlatformPolicy.h" + +/// +/// Protocol GUID definition +/// +EFI_GUID gPeiCpuPlatformPolicyPpiGuid = PEI_CPU_PLATFORM_POLICY_PPI_GUID; + +/// +/// Protocol description +/// +EFI_GUID_STRING(&gPeiCpuPlatformPolicyPpiGuid, "CpuPlatformPolicy PPI", "Intel(R) PEI Phase CPU Platform Policy PPI"); diff --git a/ReferenceCode/Haswell/Ppi/CpuPlatformPolicy/CpuPlatformPolicy.h b/ReferenceCode/Haswell/Ppi/CpuPlatformPolicy/CpuPlatformPolicy.h new file mode 100644 index 0000000..55c8890 --- /dev/null +++ b/ReferenceCode/Haswell/Ppi/CpuPlatformPolicy/CpuPlatformPolicy.h @@ -0,0 +1,358 @@ +/** @file + CPU policy PPI produced by a platform driver specifying various + expected CPU settings. This PPI is consumed by CPU PEI modules. + +@copyright + Copyright (c) 2009 - 2013 Intel Corporation. All rights reserved + This software and associated documentation (if any) is furnished + under a license and may only be used or copied in accordance + with the terms of the license. Except as permitted by such + license, no part of this software or documentation may be + reproduced, stored in a retrieval system, or transmitted in any + form or by any means without the express written consent of + Intel Corporation. + + This file contains a 'Sample Driver' and is licensed as such + under the terms of your license agreement with Intel or your + vendor. This file may be modified by the user, subject to + the additional terms of the license agreement +**/ +#ifndef CPU_PLATFORM_POLICY_H_ +#define CPU_PLATFORM_POLICY_H_ + +#include "PfatDefinitions.h" + +// +// CPU policy provided by platform for PEI phase +// +// +// EDK and EDKII have different GUID formats +// +#if !defined(EDK_RELEASE_VERSION) || (EDK_RELEASE_VERSION < 0x00020000) +#define PEI_CPU_PLATFORM_POLICY_PPI_GUID \ + { \ + 0xf8d5438e, 0x26e1, 0x481d, 0xb6, 0x3c, 0x30, 0xd6, 0xef, 0xf4, 0xa4, 0x20 \ + } +#else +#define PEI_CPU_PLATFORM_POLICY_PPI_GUID \ + { \ + 0xf8d5438e, 0x26e1, 0x481d, \ + { \ + 0xb6, 0x3c, 0x30, 0xd6, 0xef, 0xf4, 0xa4, 0x20 \ + } \ + } +#endif + +extern EFI_GUID gPeiCpuPlatformPolicyPpiGuid; + +// +// Forward reference for ANSI C compatibility +// +typedef struct _PEI_CPU_PLATFORM_POLICY_PPI PEI_CPU_PLATFORM_POLICY_PPI; + +#define CPU_FEATURE_ENABLE 1 +#define CPU_FEATURE_DISABLE 0 + +/// +/// PPI revision number +/// Any backwards compatible changes to this PPI will result in an update in the revision number +/// Major changes will require publication of a new PPI +/// + +/// +///Revision 1: Original version +/// +#define PEI_CPU_PLATFORM_POLICY_PPI_REVISION_1 1 +/// +///Revision 2: Added policies for PFAT-BIOS-EC Interface to PFAT_CONFIG +/// Added PfatLog to PFAT_CONFIG +#define PEI_CPU_PLATFORM_POLICY_PPI_REVISION_2 2 +/// +///Revision 3: Added VR_MISC MSR configuration policies +/// POWER_MGMT_CONFIG.VrMiscMinVid; +/// POWER_MGMT_CONFIG.VrMiscIdleExitRampRate; +/// POWER_MGMT_CONFIG.VrMiscIdleEntryRampRate; +/// POWER_MGMT_CONFIG.VrMiscIdleEntryDecayEnable; +/// POWER_MGMT_CONFIG.VrMiscSlowSlewRateConfig; +/// Added VR_MISC2 MSR configuration policies +/// POWER_MGMT_CONFIG.VrMisc2FastRampVoltage; +/// POWER_MGMT_CONFIG.VrMisc2MinC8Voltage; +/// Extended POWER_MGMT_CONFIG.BootInLfm settings from 0(HFM)/ 1(LFM) to 0(HFM)/ 1(LFM)/ 2(TURBO) +/// +#define PEI_CPU_PLATFORM_POLICY_PPI_REVISION_3 3 +/// +///Revision 4: Added VR_MISC MSR configuration policies +/// POWER_MGMT_CONFIG.VrMiscIoutSlope; +/// POWER_MGMT_CONFIG.VrMiscIoutOffsetSign; +/// POWER_MGMT_CONFIG.VrMiscIoutOffset; +/// +#define PEI_CPU_PLATFORM_POLICY_PPI_REVISION_4 4 +/// +///Revision 5: Added POWER_MGMT_CONFIG_PPI policies +/// POWER_MGMT_CONFIG_PPI.VrPSI4enable; +/// POWER_MGMT_CONFIG_PPI.Psi1Threshold; +/// POWER_MGMT_CONFIG_PPI.Psi2Threshold; +/// POWER_MGMT_CONFIG_PPI.Psi3Threshold; +/// +#define PEI_CPU_PLATFORM_POLICY_PPI_REVISION_5 5 +/// +///Revision 6: Added POWER_MGMT_CONFIG_PPI Fivr polcies +/// POWER_MGMT_CONFIG_PPI.FivrSscEnable +/// POWER_MGMT_CONFIG_PPI.FivrSscPercent +/// +#define PEI_CPU_PLATFORM_POLICY_PPI_REVISION_6 6 +/// +///Revision 7: Added CpuPlatformPpiPtr +/// BOOT_GUARD_CONFIG.BootGuardSupport +/// BOOT_GUARD_CONFIG.DisconnectAllTpms +/// +#define PEI_CPU_PLATFORM_POLICY_PPI_REVISION_7 7 +/// +///Revision 8: Added BOOT_GUARD_CONFIG configuration policies +/// BOOT_GUARD_CONFIG.ByPassTpmEventLog +/// +#define PEI_CPU_PLATFORM_POLICY_PPI_REVISION_8 8 + +/// +/// General CPU features configration for all processor features enabling / configuration bit definitions are in +/// this field. Platform code can enable/disable/configure features thru this field. +/// +typedef struct { + // + // Byte 0, bit definition for functionality enable/disable + // + UINT8 BistOnReset : 1; ///< Enable or Disable BIST on Reset. + UINT8 HyperThreading : 1; ///< Enable or Disable Hyper Threading. + UINT8 CpuRatioOverride : 1; ///< Enable or Disable CPU Radio Override. + UINT8 VmxEnable : 1; ///< Enable or Disable VMX. + UINT8 Pfat : 1; ///< Enable or Disable PFAT. + UINT8 MlcStreamerPrefetcher : 1; ///< Enable or Disable MLC Streamer Prefetcher. + UINT8 MlcSpatialPrefetcher : 1; ///< Enable or Disable MLC Spatial Prefetcher. + UINT8 Txt : 1; ///< Enable or Disable TXT. + + // + // Byte 1, bit definition for functionality enable/disable + // + UINT8 Rsvdbyte : 8; ///< A place holder for additonal functionalites expected in futture platforms. + // + // Generic CPU feature configuration + // + UINT8 ActiveCoreCount; ///< Number of active cores. + UINT8 CpuRatio; ///< CPU ratio value + UINT8 CpuMaxNonTurboRatio; ///< CPU Maximum Non-Turbo ratio value +} CPU_CONFIG_PPI; + +/// +/// Power management Configuration for all Processor Power Management Features +/// Configs are in this field. Platform code can enable/disable features thru this field. +/// +typedef struct { + UINT8 BootInLfm; ///< Boot in Low-Frequency-Mode. + /// + /// TCC Activation Offset. Offset from factory set TCC activation temperature at which the Thermal Control Circuit + /// must be activated. TCC will be activated at TCC Activation Temp V TCC Activation Offset. + /// + UINT8 TccActivationOffset; + /// + /// MSR 0x601[12:0], Primary (IA) Current Limit, in 1/8 A units, 0=Auto. Maximum instantaneous current allowed at + /// any given time. Setting a value too far below the Iccmax specification for this platform/CPU might result + /// in System hang / CATERR / BSOD depending on the platform configuration. + /// + UINT16 VrCurrentLimit; + UINT8 VrCurrentLimitLock; ///< MSR 0x601[31]: when set, locks bits 31:0 of this MSR. + UINT8 Xe; ///< Enable or Disable Intel Extreme Edition support. + /// + /// 1-Core Ratio Limit: For XE part: LFM to 255, For overclocking part: LFM to Fused 1-Core Ratio Limit + OC Bins. + /// This 1-Core Ratio Limit Must be greater than or equal to 2-Core Ratio Limit, 3-Core Ratio Limit, 4-Core + /// Ratio Limit. + /// 2-Core Ratio Limit: For XE part: LFM to 255, For overclocking part: LFM to Fused 2-Core Ratio Limit + OC Bins. + /// This 2-Core Ratio Limit Must be Less than or equal to 1-Core Ratio Limit. + /// 3-Core Ratio Limit: For XE part: LFM to 255, For overclocking part: LFM to Fused 3-Core Ratio Limit + OC Bins. + /// This 3-Core Ratio Limit Must be Less than or equal to 1-Core Ratio Limit. + /// 4-Core Ratio Limit: For XE part: LFM to 255, For overclocking part: LFM to Fused 4-Core Ratio Limit + OC Bins. + /// This 4-Core Ratio Limit Must be Less than or equal to 1-Core Ratio Limit. + /// + UINT8 RatioLimit[4]; + UINT8 VrMiscMinVid; ///< MSR 0x603[31:24]: Used to constrain the CPU's minimum voltage during package C-states. + UINT8 VrMiscIdleExitRampRate; ///< MSR 0x603[50]: Controls the VR ramp rate on package C-state wake events. + UINT8 VrMiscIdleEntryRampRate; ///< MSR 0x603[51]: Controls the VR ramp rate on package C-state entry events. + UINT8 VrMiscIdleEntryDecayEnable; ///< MSR 0x603[52]: Enables decay mode on package C-state entry. + UINT8 VrMiscSlowSlewRateConfig; ///< MSR 0x53[54:53]: Slow Slew rate configuration. + UINT8 VrMisc2FastRampVoltage; ///< MSR 0x636[7:0]: Update FAST_RAMP_VOLTAGE; must be 0 to 0xFF, resolution 10mV. + UINT8 VrMisc2MinC8Voltage; ///< MSR 0x636[15:8]: Update MIN_C8_VOLTAGE; must be 0 to 0xFF, resolution 10mV. + UINT16 VrMiscIoutSlope; ///< MSR 0x603[49-40]: IOUT SLOPE. Default is 200. + UINT8 VrMiscIoutOffsetSign; ///< IOUT OFFSET Sign. 0 = positive offset. 1= negative offset. + UINT16 VrMiscIoutOffset; ///< MSR 0x603[39-32]: IOUT_OFFSET. 0 = 0%, 625 = 6.25% (Range is +6.25% ~ -6.25%) + UINT8 VrPSI4enable; ///< MSR 0x601[62]: PSI4 Enabled/Disabled bit in VR_CURRENT_CONFIG, it's only applied to HSW ULT. + UINT8 Psi1Threshold; ///< MSR 0x601[41:32]: Current Threshold for PSI1_CODE specified in Amps. + UINT8 Psi2Threshold; ///< MSR 0x601[51:42]: Current Threshold for PSI2_CODE specified in Amps. + UINT8 Psi3Threshold; ///< MSR 0x601[61:52]: Current Threshold for PSI3_CODE specified in Amps. + UINT8 FivrSscEnable; ///< Enable/Disable FIVR Spread Spectrum support + UINT8 FivrSscPercent; ///< PCODE MMIO Mailbox: FIVR spread spectrum percentage value. +} POWER_MGMT_CONFIG_PPI; + +/// +/// PFAT Configuration for all processor security features configuration structures +/// are in this field. Platform code can pass relevant configuration data thru this field. +/// +typedef struct { + /// + /// PFAT update package header that will be packaged along with PFAT script and update data. + /// + PUP_HEADER PupHeader; + /// + /// PFAT Platform Data Table contains all the platform data that will be parsed by PFAT module. + /// + PPDT Ppdt; + UINT64 PpdtHash[4]; ///< Hash of the PPDT that will be programmed to PLAT_FRMW_PROT_HASH_0/1/2/3 MSR. + UINT8 NumSpiComponents; ///< Number of SPI flash components on platform. + UINT8 ComponentSize[MAX_SPI_COMPONENTS]; ///< Size of each flash component on platform. + UINT8 PfatMemSize; ///< PFAT memory size. + UINT8 EcCmdDiscovery; ///< EC Command discovery. + UINT8 EcCmdProvisionEav; ///< EC Command Provision Eav. + UINT8 EcCmdLock; ///< EC Command Lock. + PFAT_LOG PfatLog; ///< PFAT log. +} PFAT_CONFIG; + +// +// TxT Configuraion Policy +// +#define TXT_SINIT_MEMORY_SIZE 0x20000 +#define TXT_HEAP_MEMORY_SIZE 0xE0000 +#define TXT_DPR_MEMORY_SIZE 0x400000 +#define TXT_DEVICE_MEMORY_SIZE (TXT_SINIT_MEMORY_SIZE + TXT_HEAP_MEMORY_SIZE) + +#define TXT_LCP_PD_BASE 0x0 ///< Platform default LCP +#define TXT_LCP_PD_SIZE 0x0 ///< Platform default LCP +#define TXT_TGA_MEMORY_SIZE 0x0 ///< Maximum 512K of TGA memory (aperture) +#define TXT_TGTT_MEMORY_SIZE 0x80000 ///< 512K of TGTT memory +#define TXT_TGR_MEMORY_SIZE 0x80000 ///< 512K of TGR memory (Registers) +#define TXT_TOTAL_STOLEN_MEMORY_SIZE (TXT_DPR_MEMORY_SIZE) + +typedef struct { + UINT64 SinitMemorySize; ///< Size of SINIT module if installed in flash part. Zero otherwise. + UINT64 TxtHeapMemorySize; ///< Size of memory reserved for TXT Heap. This memory is used by MLE. + EFI_PHYSICAL_ADDRESS TxtDprMemoryBase; ///< Base address of DPR protected memory reserved for Intel TXT component. + UINT64 TxtDprMemorySize; ///< Size of DPR protected memory reserved for Intel TXT component. + /// + /// Base address of BIOS ACM in flash part. It can be passed through platform code for customization; Intel TXT + /// reference code would skip searching the BIOS ACM in PEI firmware volume if the field is not zero. + /// + EFI_PHYSICAL_ADDRESS BiosAcmBase; + UINT64 BiosAcmSize; ///< Size of ACM Binary. + /// + /// Base address of CPU micro code patch loaded into BSP. It can be passed through platform code for customization; + /// Intel TXT reference code would skip searching the micro code path in PEI firmware volume if the field is not zero. + /// + EFI_PHYSICAL_ADDRESS McuUpdateDataAddr; + /// + /// Size of Trusted Graphics Aperture if supported by chipset. For Cantiga must be 0. + /// + UINT64 TgaSize; + /// + /// Base address of Platform Default Launch Control Policy data if installed in flash part. Zero otherwise. + /// + EFI_PHYSICAL_ADDRESS TxtLcpPdBase; + /// + /// Size of Platform Default Launch Control Policy data if installed in flash part. Zero otherwise. + /// + UINT64 TxtLcpPdSize; +} TXT_CONFIG; + +// +// Boot Guard Configuration +// +typedef enum { + TpmNone = 0, + dTpm12, + dTpm20, + Ptt, + TpmTypeMax +} TPM_TYPE; + +typedef struct { + BOOLEAN MeasuredBoot; + BOOLEAN BypassTpmInit; + TPM_TYPE TpmType; + BOOLEAN BootGuardSupport; + BOOLEAN DisconnectAllTpms; + BOOLEAN ByPassTpmEventLog; +} BOOT_GUARD_CONFIG; + +/// +/// Security Configuration +/// +typedef struct { + PFAT_CONFIG *PfatConfig; ///< PFAT Configuration settings. + TXT_CONFIG *TxtConfig; ///< TxT Configuration settings. + BOOT_GUARD_CONFIG *BootGuardConfig; ///< Boot Guard Configuration settings. +} SECURITY_CONFIG_PPI; + +/// +/// Overclocking Configuration controls which use the CPU overclocking mailbox interface are defined in this structure. +/// Platform code can pass in data to the mailbox through this structure. +/// +typedef struct { + INT16 CoreVoltageOffset; ///< The voltage offset applied to the core while operating in turbo mode. + /// + /// The core voltage override which is applied to the entire range of cpu core frequencies. + /// + UINT16 CoreVoltageOverride; + /// + /// Extra Turbo voltage applied to the cpu core when the cpu is operating in turbo mode. + /// + UINT16 CoreExtraTurboVoltage; + /// + /// Maximum core turbo ratio override allows to increase CPU core frequency beyond the fused max turbo ratio limit. + /// + UINT16 CoreMaxOcTurboRatio; + INT16 ClrVoltageOffset; ///< The voltage offset applied to CLR while operating in turbo mode. + UINT16 ClrVoltageOverride; ///< The clr voltage override which is applied to the entire range of cpu frequencies. + UINT16 ClrExtraTurboVoltage; ///< Extra Turbo voltage applied to clr. + /// + /// Maximum clr turbo ratio override allows to increase CPU clr frequency beyond the fused max turbo ratio limit. + /// + UINT16 ClrMaxOcTurboRatio; + UINT16 SvidVoltageOverride; ///< Overrides the VR voltage through SVID bus to apply a new input voltage to the cpu. + UINT8 SvidEnable : 1; ///< Enable or Disable SVID communication from FIVR to the external VR. + UINT8 FivrFaultsEnable : 1; ///< Enable or Disable FIVR Fault management. + UINT8 FivrEfficiencyEnable : 1; ///< Enable or Disable FIVR efficiency. + UINT8 CoreVoltageMode : 1; ///< 0: Adaptive, 1: Override + UINT8 ClrVoltageMode : 1; ///< 0: Adaptive, 1:Override + UINT8 OcSupport : 1; ///< 0: Disable, 1: Enable + UINT8 BitReserved : 2; ///< Bits reserved for future use +} OVERCLOCKING_CONFIG_PPI; + +/// +/// CPU Platform Policy PPI definition, this PPI provides interface to configure +/// the processor. Platform code needs to configure the policies for processor +/// ref code to finish the initialization. +/// +struct _PEI_CPU_PLATFORM_POLICY_PPI { + /// + /// Revision for the PPI structure. + /// + UINT8 Revision; + /// + /// Processor Features Configuration. + /// + CPU_CONFIG_PPI *CpuConfig; + /// + /// Processor Power ManagementFeatures Configuration. + /// + POWER_MGMT_CONFIG_PPI *PowerMgmtConfig; + /// + /// Processor Security features Configuration. + /// + SECURITY_CONFIG_PPI *SecurityConfig; + /// + /// Processor OverClocking features Configuration. + /// + OVERCLOCKING_CONFIG_PPI *OverclockingConfig; + /// + /// PEI_CPU_PLATFORM_POLICY_PPI Ptr. + /// + UINTN CpuPlatformPpiPtr; +}; + +#endif diff --git a/ReferenceCode/Haswell/Ppi/CpuPpiLib.cif b/ReferenceCode/Haswell/Ppi/CpuPpiLib.cif new file mode 100644 index 0000000..fe862f1 --- /dev/null +++ b/ReferenceCode/Haswell/Ppi/CpuPpiLib.cif @@ -0,0 +1,18 @@ +<component> + name = "CpuPpiLib" + category = ModulePart + LocalRoot = "ReferenceCode\Haswell\Ppi\" + RefName = "CpuPpiLib" +[files] +"CpuPpiLib.sdl" +"CpuPpiLib.mak" +"CpuPpiLib.inf" +"Cache\Cache.c" +"Cache\Cache.h" +"CpuPlatformPolicy\CpuPlatformPolicy.c" +"CpuPlatformPolicy\CpuPlatformPolicy.h" +"TxtMemoryUnlocked\TxtMemoryUnlocked.c" +"TxtMemoryUnlocked\TxtMemoryUnlocked.h" +"TpmInitialized\TpmInitialized.c" +"TpmInitialized\TpmInitialized.h" +<endComponent> diff --git a/ReferenceCode/Haswell/Ppi/CpuPpiLib.inf b/ReferenceCode/Haswell/Ppi/CpuPpiLib.inf new file mode 100644 index 0000000..7d348d0 --- /dev/null +++ b/ReferenceCode/Haswell/Ppi/CpuPpiLib.inf @@ -0,0 +1,65 @@ +## @file +# Component description file for CPU PPI library. +# +#@copyright +# Copyright (c) 2005 - 2012 Intel Corporation. All rights reserved +# This software and associated documentation (if any) is furnished +# under a license and may only be used or copied in accordance +# with the terms of the license. Except as permitted by such +# license, no part of this software or documentation may be +# reproduced, stored in a retrieval system, or transmitted in any +# form or by any means without the express written consent of +# Intel Corporation. +# +# This file contains an 'Intel Peripheral Driver' and uniquely +# identified as "Intel Reference Module" and is +# licensed for Intel CPUs and chipsets under the terms of your +# license agreement with Intel or your vendor. This file may +# be modified by the user, subject to additional terms of the +# license agreement +# + +[defines] +BASE_NAME = CpuPpiLib +COMPONENT_TYPE = LIBRARY + +[includes.common] + $(EDK_SOURCE)/Foundation/Efi + $(EDK_SOURCE)/Foundation/Include + $(EDK_SOURCE)/Foundation/Efi/Include + $(EDK_SOURCE)/Foundation/Framework/Include + $(EDK_SOURCE)/Foundation/Include/IndustryStandard + $(EDK_SOURCE)/Foundation/Include/Pei + $(EDK_SOURCE)/Foundation/Library/Pei/Include + $(EDK_SOURCE)/Foundation/Core/Dxe + $(EDK_SOURCE)/Foundation/Library/Dxe/Include + $(EDK_SOURCE)/Foundation/Framework + $(EFI_SOURCE)/$(PROJECT_CPU_ROOT) + $(EFI_SOURCE)/$(PROJECT_CPU_ROOT)/Include + +# +# Edk II Glue Library, some hearder are included by R9 header so have to include +# + $(EFI_SOURCE) + $(EFI_SOURCE)/Framework + $(EDK_SOURCE)/Foundation + $(EDK_SOURCE)/Foundation/Framework + $(EDK_SOURCE)/Foundation/Include/IndustryStandard + $(EDK_SOURCE)/Foundation/Core/Dxe + $(EDK_SOURCE)/Foundation/Include/Pei + $(EDK_SOURCE)/Foundation/Library/Dxe/Include + $(EDK_SOURCE)/Foundation/Library/EdkIIGlueLib/Include + +[sources.common] + Cache/Cache.c + Cache/Cache.h + CpuPlatformPolicy/CpuPlatformPolicy.c + CpuPlatformPolicy/CpuPlatformPolicy.h + TxtMemoryUnlocked/TxtMemoryUnlocked.c + TxtMemoryUnlocked/TxtMemoryUnlocked.h + TpmInitialized/TpmInitialized.c + TpmInitialized/TpmInitialized.h + +[nmake.common] +C_STD_INCLUDE= + diff --git a/ReferenceCode/Haswell/Ppi/CpuPpiLib.mak b/ReferenceCode/Haswell/Ppi/CpuPpiLib.mak new file mode 100644 index 0000000..e5dc158 --- /dev/null +++ b/ReferenceCode/Haswell/Ppi/CpuPpiLib.mak @@ -0,0 +1,21 @@ +# MAK file for the ModulePart:IntelSaPpiLib +EDK : CpuPpiLib + +$(BUILD_DIR)\CpuPpiLib.lib : CpuPpiLib + +CpuPpiLib : $(BUILD_DIR)\CpuPpiLib.mak CpuPpiLibBin + +$(BUILD_DIR)\CpuPpiLib.mak : $(CPU_PPI_LIB_DIR)\$(@B).cif $(CPU_PPI_LIB_DIR)\$(@B).mak $(BUILD_RULES) + $(CIF2MAK) $(CPU_PPI_LIB_DIR)\$(@B).cif $(CIF2MAK_DEFAULTS) + +CpuPpiLib_INCLUDES =\ + $(PROJECT_CPU_INCLUDES)\ + $(EDK_INCLUDES) \ + $(INTEL_MCH_INCLUDES) + +CpuPpiLibBin : + $(MAKE) /$(MAKEFLAGS) $(EDKIIGLUE_DEFAULTS)\ + /f $(BUILD_DIR)\CpuPpiLib.mak all\ + "MY_INCLUDES=$(CpuPpiLib_INCLUDES)" \ + TYPE=PEI_LIBRARY \ + LIBRARY_NAME=$(CPU_PPI_LIB)
\ No newline at end of file diff --git a/ReferenceCode/Haswell/Ppi/CpuPpiLib.sdl b/ReferenceCode/Haswell/Ppi/CpuPpiLib.sdl new file mode 100644 index 0000000..096d206 --- /dev/null +++ b/ReferenceCode/Haswell/Ppi/CpuPpiLib.sdl @@ -0,0 +1,31 @@ +TOKEN + Name = CpuPpiLib_SUPPORT + Value = "1" + TokenType = Boolean + TargetEQU = Yes + TargetMAK = Yes + Master = Yes + Help = "Main switch to enable SaPpiLib support in Project" +End + +MODULE + Help = "Includes SaPpiLib.mak to Project" + File = "CpuPpiLib.mak" +End + +ELINK + Name = "CPU_PPI_LIB" + InvokeOrder = ReplaceParent +End + +ELINK + Name = "$(BUILD_DIR)\CpuPpiLib.lib" + Parent = "CPU_PPI_LIB" + InvokeOrder = AfterParent +End + +PATH + Name = "CPU_PPI_LIB_DIR" +End + + diff --git a/ReferenceCode/Haswell/Ppi/TpmInitialized/TpmInitialized.c b/ReferenceCode/Haswell/Ppi/TpmInitialized/TpmInitialized.c new file mode 100644 index 0000000..958301b --- /dev/null +++ b/ReferenceCode/Haswell/Ppi/TpmInitialized/TpmInitialized.c @@ -0,0 +1,24 @@ +/** @file + Tpm Initialized PPI + +@copyright + Copyright (c) 1999 - 2012 Intel Corporation. All rights reserved + This software and associated documentation (if any) is furnished + under a license and may only be used or copied in accordance + with the terms of the license. Except as permitted by such + license, no part of this software or documentation may be + reproduced, stored in a retrieval system, or transmitted in any + form or by any means without the express written consent of + Intel Corporation. + + This file contains a 'Sample Driver' and is licensed as such + under the terms of your license agreement with Intel or your + vendor. This file may be modified by the user, subject to + the additional terms of the license agreement +**/ +#include "Tiano.h" +#include EFI_PPI_DEFINITION (TpmInitialized) + +EFI_GUID gPeiTpmInitializedPpiGuid = PEI_TPM_INITIALIZED_PPI_GUID; + +EFI_GUID_STRING(&gPeiTpmInitializedPpiGuid, "TpmInitialized PPI", "TpmInitialized PPI"); diff --git a/ReferenceCode/Haswell/Ppi/TpmInitialized/TpmInitialized.h b/ReferenceCode/Haswell/Ppi/TpmInitialized/TpmInitialized.h new file mode 100644 index 0000000..27c09c9 --- /dev/null +++ b/ReferenceCode/Haswell/Ppi/TpmInitialized/TpmInitialized.h @@ -0,0 +1,29 @@ +/** @file + Tpm Initialized PPI definition, used to notify any code after TPM initialized. + +@copyright + Copyright (c) 1999 - 2012 Intel Corporation. All rights reserved + This software and associated documentation (if any) is furnished + under a license and may only be used or copied in accordance + with the terms of the license. Except as permitted by such + license, no part of this software or documentation may be + reproduced, stored in a retrieval system, or transmitted in any + form or by any means without the express written consent of + Intel Corporation. + + This file contains a 'Sample Driver' and is licensed as such + under the terms of your license agreement with Intel or your + vendor. This file may be modified by the user, subject to + the additional terms of the license agreement +**/ +#ifndef _PEI_TPM_INITIALIZED_PPI_H_ +#define _PEI_TPM_INITIALIZED_PPI_H_ + +#define PEI_TPM_INITIALIZED_PPI_GUID \ + { \ + 0xe9db0d58, 0xd48d, 0x47f6, 0x9c, 0x6e, 0x6f, 0x40, 0xe8, 0x6c, 0x7b, 0x41 \ + } + +extern EFI_GUID gPeiTpmInitializedPpiGuid; + +#endif diff --git a/ReferenceCode/Haswell/Ppi/TxtMemoryUnlocked/TxtMemoryUnlocked.c b/ReferenceCode/Haswell/Ppi/TxtMemoryUnlocked/TxtMemoryUnlocked.c new file mode 100644 index 0000000..d905414 --- /dev/null +++ b/ReferenceCode/Haswell/Ppi/TxtMemoryUnlocked/TxtMemoryUnlocked.c @@ -0,0 +1,33 @@ +/** @file + This file contains GUID to use for defining of TXT Memory Unlocked PPI. + +@copyright + Copyright (c) 1999 - 2012 Intel Corporation. All rights reserved + This software and associated documentation (if any) is furnished + under a license and may only be used or copied in accordance + with the terms of the license. Except as permitted by such + license, no part of this software or documentation may be + reproduced, stored in a retrieval system, or transmitted in any + form or by any means without the express written consent of + Intel Corporation. + + This file contains an 'Intel Peripheral Driver' and uniquely + identified as "Intel Reference Module" and is + licensed for Intel CPUs and chipsets under the terms of your + license agreement with Intel or your vendor. This file may + be modified by the user, subject to additional terms of the + license agreement +**/ + +/// +/// External include files do NOT need to be explicitly specified in real EDKII +/// environment +/// +#if !defined(EDK_RELEASE_VERSION) || (EDK_RELEASE_VERSION < 0x00020000) +#include "EdkIIGluePeim.h" +#include EFI_PPI_DEFINITION (TxtMemoryUnlocked) +#endif + +EFI_GUID gPeiTxtMemoryUnlockedPpiGuid = PEI_TXT_MEMORY_UNLOCKED_PPI_GUID; + +EFI_GUID_STRING(&gPeiTxtMemoryUnlockedPpiGuid, "TXT PPI", "TXT PPI"); diff --git a/ReferenceCode/Haswell/Ppi/TxtMemoryUnlocked/TxtMemoryUnlocked.h b/ReferenceCode/Haswell/Ppi/TxtMemoryUnlocked/TxtMemoryUnlocked.h new file mode 100644 index 0000000..8b1be06 --- /dev/null +++ b/ReferenceCode/Haswell/Ppi/TxtMemoryUnlocked/TxtMemoryUnlocked.h @@ -0,0 +1,32 @@ +/** @file + This file contains PPI definition that is installed + by TXT PEIM + +@copyright + Copyright (c) 1999 - 2012 Intel Corporation. All rights reserved + This software and associated documentation (if any) is furnished + under a license and may only be used or copied in accordance + with the terms of the license. Except as permitted by such + license, no part of this software or documentation may be + reproduced, stored in a retrieval system, or transmitted in any + form or by any means without the express written consent of + Intel Corporation. + + This file contains an 'Intel Peripheral Driver' and uniquely + identified as "Intel Reference Module" and is + licensed for Intel CPUs and chipsets under the terms of your + license agreement with Intel or your vendor. This file may + be modified by the user, subject to additional terms of the + license agreement +**/ +#ifndef _PEI_TXT_MEMORY_UNLOCKED_PPI_H_ +#define _PEI_TXT_MEMORY_UNLOCKED_PPI_H_ + +#define PEI_TXT_MEMORY_UNLOCKED_PPI_GUID \ + { \ + 0x38cdd10b, 0x767d, 0x4f6e, 0xa7, 0x44, 0x67, 0xee, 0x1d, 0xfe, 0x2f, 0xa5 \ + } + +extern EFI_GUID gPeiTxtMemoryUnlockedPpiGuid; + +#endif |