26 lines
556 B
C
26 lines
556 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Automatically generated TDX global metadata structures. */
|
|
#ifndef _X86_VIRT_TDX_AUTO_GENERATED_TDX_GLOBAL_METADATA_H
|
|
#define _X86_VIRT_TDX_AUTO_GENERATED_TDX_GLOBAL_METADATA_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct tdx_sys_info_features {
|
|
u64 tdx_features0;
|
|
};
|
|
|
|
struct tdx_sys_info_tdmr {
|
|
u16 max_tdmrs;
|
|
u16 max_reserved_per_tdmr;
|
|
u16 pamt_4k_entry_size;
|
|
u16 pamt_2m_entry_size;
|
|
u16 pamt_1g_entry_size;
|
|
};
|
|
|
|
struct tdx_sys_info {
|
|
struct tdx_sys_info_features features;
|
|
struct tdx_sys_info_tdmr tdmr;
|
|
};
|
|
|
|
#endif
|