diff options
author | Will Deacon <will@kernel.org> | 2024-09-12 13:43:22 +0100 |
---|---|---|
committer | Will Deacon <will@kernel.org> | 2024-09-12 13:43:22 +0100 |
commit | 3175e051c3766047f645020d4a80a86321f7dcff (patch) | |
tree | 154403f22d507049027ccd6b0778a815bf018045 /arch/arm | |
parent | 119e3eef3262108c74d3f832372d8b74b7169c45 (diff) | |
parent | 21be9f7110d4c044c2b49bafbd7246335f236221 (diff) |
Merge branch 'for-next/pkvm-guest' into for-next/core
* for-next/pkvm-guest:
arm64: smccc: Reserve block of KVM "vendor" services for pKVM hypercalls
drivers/virt: pkvm: Intercept ioremap using pKVM MMIO_GUARD hypercall
arm64: mm: Add confidential computing hook to ioremap_prot()
drivers/virt: pkvm: Hook up mem_encrypt API using pKVM hypercalls
arm64: mm: Add top-level dispatcher for internal mem_encrypt API
drivers/virt: pkvm: Add initial support for running as a protected guest
firmware/smccc: Call arch-specific hook on discovering KVM services
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/include/asm/hypervisor.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/include/asm/hypervisor.h b/arch/arm/include/asm/hypervisor.h index bd61502b9715..8a648e506540 100644 --- a/arch/arm/include/asm/hypervisor.h +++ b/arch/arm/include/asm/hypervisor.h @@ -7,4 +7,6 @@ void kvm_init_hyp_services(void); bool kvm_arm_hyp_service_available(u32 func_id); +static inline void kvm_arch_init_hyp_services(void) { }; + #endif |