| 256 | #[repr(C)] |
| 257 | #[derive(Debug, Default)] |
| 258 | pub struct TdxCapabilities { |
| 259 | pub attrs_fixed0: u64, |
| 260 | pub attrs_fixed1: u64, |
| 261 | pub xfam_fixed0: u64, |
| 262 | pub xfam_fixed1: u64, |
| 263 | pub nr_cpuid_configs: u32, |
| 264 | pub padding: u32, |
| 265 | pub cpuid_configs: [TdxCpuidConfig; TDX_MAX_NR_CPUID_CONFIGS], |
| 266 | } |
| 267 | |
| 268 | #[cfg(feature = "tdx")] |
| 269 | #[derive(Copy, Clone)] |