Home
last modified time | relevance | path

Searched refs:tdx_cpu_enable (Results 1 – 4 of 4) sorted by relevance

/linux/arch/x86/include/asm/
H A Dtdx.h148 int tdx_cpu_enable(void);
226 static inline int tdx_cpu_enable(void) { return -ENODEV; } in tdx_cpu_enable() function
/linux/Documentation/arch/x86/
H A Dtdx.rst63 The kernel provides two functions, tdx_enable() and tdx_cpu_enable() to
68 KVM implements VMXON. For now both tdx_enable() and tdx_cpu_enable()
84 And the caller of TDX must guarantee the tdx_cpu_enable() has been
86 A typical usage is do both VMXON and tdx_cpu_enable() in CPU hotplug
87 online callback, and refuse to online if tdx_cpu_enable() fails.
133 provides tdx_cpu_enable() to let the user of TDX to do it when the user
/linux/arch/x86/virt/vmx/tdx/
H A Dtdx.c155 int tdx_cpu_enable(void) in tdx_cpu_enable() function
185 EXPORT_SYMBOL_FOR_KVM(tdx_cpu_enable);
/linux/arch/x86/kvm/vmx/
H A Dtdx.c3302 r = tdx_cpu_enable(); in tdx_online_cpu()