diff options
author | Sean Christopherson <sean.j.christopherson@intel.com> | 2021-03-19 08:23:03 +0100 |
---|---|---|
committer | Borislav Petkov <bp@suse.de> | 2021-04-06 09:43:41 +0200 |
commit | 8ca52cc38dc8fdcbdbd0c23eafb19db5e5f5c8d0 (patch) | |
tree | e7cf15a948d3887436be1b74eb4c3a83bc1355fc /tools/testing/selftests/sgx | |
parent | x86/sgx: Initialize virtual EPC driver even when SGX driver is disabled (diff) | |
download | linux-8ca52cc38dc8fdcbdbd0c23eafb19db5e5f5c8d0.tar.xz linux-8ca52cc38dc8fdcbdbd0c23eafb19db5e5f5c8d0.zip |
x86/sgx: Expose SGX architectural definitions to the kernel
Expose SGX architectural structures, as KVM will use many of the
architectural constants and structs to virtualize SGX.
Name the new header file as asm/sgx.h, rather than asm/sgx_arch.h, to
have single header to provide SGX facilities to share with other kernel
componments. Also update MAINTAINERS to include asm/sgx.h.
Signed-off-by: Sean Christopherson <sean.j.christopherson@intel.com>
Co-developed-by: Kai Huang <kai.huang@intel.com>
Signed-off-by: Kai Huang <kai.huang@intel.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Acked-by: Jarkko Sakkinen <jarkko@kernel.org>
Acked-by: Dave Hansen <dave.hansen@intel.com>
Link: https://lkml.kernel.org/r/6bf47acd91ab4d709e66ad1692c7803e4c9063a0.1616136308.git.kai.huang@intel.com
Diffstat (limited to 'tools/testing/selftests/sgx')
-rw-r--r-- | tools/testing/selftests/sgx/defines.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/sgx/defines.h b/tools/testing/selftests/sgx/defines.h index 592c1ccf4576..0bd73428d2f3 100644 --- a/tools/testing/selftests/sgx/defines.h +++ b/tools/testing/selftests/sgx/defines.h @@ -14,7 +14,7 @@ #define __aligned(x) __attribute__((__aligned__(x))) #define __packed __attribute__((packed)) -#include "../../../../arch/x86/kernel/cpu/sgx/arch.h" +#include "../../../../arch/x86/include/asm/sgx.h" #include "../../../../arch/x86/include/asm/enclu.h" #include "../../../../arch/x86/include/uapi/asm/sgx.h" |