You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Check if the following CPUID leaves are required for TDX and modify the list accordingly.
pub const TDX_REQUIRED_LEAVES: &[(CpuidFunction, Option)] = &[
// The following aren't required from AMD. Need to double-check if they're required for TDX
(CpuidFunction::CacheAndTlbInformation, None),
(CpuidFunction::ExtendedFeatures, Some(1)),
(CpuidFunction::CacheParameters, Some(0)),
(CpuidFunction::CacheParameters, Some(1)),
(CpuidFunction::CacheParameters, Some(2)),
(CpuidFunction::CacheParameters, Some(3)),
];
The text was updated successfully, but these errors were encountered:
Check if the following CPUID leaves are required for TDX and modify the list accordingly.
pub const TDX_REQUIRED_LEAVES: &[(CpuidFunction, Option)] = &[
// The following aren't required from AMD. Need to double-check if they're required for TDX
(CpuidFunction::CacheAndTlbInformation, None),
(CpuidFunction::ExtendedFeatures, Some(1)),
(CpuidFunction::CacheParameters, Some(0)),
(CpuidFunction::CacheParameters, Some(1)),
(CpuidFunction::CacheParameters, Some(2)),
(CpuidFunction::CacheParameters, Some(3)),
];
The text was updated successfully, but these errors were encountered: