2012-12-10 11:16:40 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012,2013 - ARM Ltd
|
|
|
|
* Author: Marc Zyngier <marc.zyngier@arm.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ARM_KVM_ASM_H__
|
|
|
|
#define __ARM_KVM_ASM_H__
|
|
|
|
|
2013-06-26 14:16:40 +00:00
|
|
|
#include <asm/virt.h>
|
|
|
|
|
2012-12-10 11:16:40 +00:00
|
|
|
#define ARM_EXCEPTION_IRQ 0
|
|
|
|
#define ARM_EXCEPTION_TRAP 1
|
2016-04-27 16:47:04 +00:00
|
|
|
/* The hyp-stub will return this for any kvm_call_hyp() call */
|
|
|
|
#define ARM_EXCEPTION_HYP_GONE 2
|
2012-12-10 11:16:40 +00:00
|
|
|
|
2014-04-24 09:24:46 +00:00
|
|
|
#define KVM_ARM64_DEBUG_DIRTY_SHIFT 0
|
|
|
|
#define KVM_ARM64_DEBUG_DIRTY (1 << KVM_ARM64_DEBUG_DIRTY_SHIFT)
|
|
|
|
|
2016-03-18 17:25:59 +00:00
|
|
|
#define kvm_ksym_ref(sym) \
|
|
|
|
({ \
|
|
|
|
void *val = &sym; \
|
|
|
|
if (!is_kernel_in_hyp_mode()) \
|
|
|
|
val = phys_to_virt((u64)&sym - kimage_voffset); \
|
|
|
|
val; \
|
|
|
|
})
|
2016-02-16 12:52:39 +00:00
|
|
|
|
2012-12-10 11:16:40 +00:00
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
struct kvm;
|
|
|
|
struct kvm_vcpu;
|
|
|
|
|
|
|
|
extern char __kvm_hyp_init[];
|
|
|
|
extern char __kvm_hyp_init_end[];
|
arm64: kvm: allows kvm cpu hotplug
The current kvm implementation on arm64 does cpu-specific initialization
at system boot, and has no way to gracefully shutdown a core in terms of
kvm. This prevents kexec from rebooting the system at EL2.
This patch adds a cpu tear-down function and also puts an existing cpu-init
code into a separate function, kvm_arch_hardware_disable() and
kvm_arch_hardware_enable() respectively.
We don't need the arm64 specific cpu hotplug hook any more.
Since this patch modifies common code between arm and arm64, one stub
definition, __cpu_reset_hyp_mode(), is added on arm side to avoid
compilation errors.
Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org>
[Rebase, added separate VHE init/exit path, changed resets use of
kvm_call_hyp() to the __version, en/disabled hardware in init_subsystems(),
added icache maintenance to __kvm_hyp_reset() and removed lr restore, removed
guest-enter after teardown handling]
Signed-off-by: James Morse <james.morse@arm.com>
Acked-by: Marc Zyngier <marc.zyngier@arm.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
2016-04-27 16:47:05 +00:00
|
|
|
extern char __kvm_hyp_reset[];
|
2012-12-10 11:16:40 +00:00
|
|
|
|
|
|
|
extern char __kvm_hyp_vector[];
|
|
|
|
|
|
|
|
extern void __kvm_flush_vm_context(void);
|
|
|
|
extern void __kvm_tlb_flush_vmid_ipa(struct kvm *kvm, phys_addr_t ipa);
|
2015-01-15 23:58:59 +00:00
|
|
|
extern void __kvm_tlb_flush_vmid(struct kvm *kvm);
|
2012-12-10 11:16:40 +00:00
|
|
|
|
|
|
|
extern int __kvm_vcpu_run(struct kvm_vcpu *vcpu);
|
2013-06-21 10:57:56 +00:00
|
|
|
|
2013-07-12 14:15:23 +00:00
|
|
|
extern u64 __vgic_v3_get_ich_vtr_el2(void);
|
2016-03-03 15:43:58 +00:00
|
|
|
extern void __vgic_v3_init_lrs(void);
|
2013-07-12 14:15:23 +00:00
|
|
|
|
2015-07-07 16:29:56 +00:00
|
|
|
extern u32 __kvm_get_mdcr_el2(void);
|
|
|
|
|
2016-04-05 15:11:47 +00:00
|
|
|
extern u32 __init_stage2_translation(void);
|
2015-01-29 13:19:45 +00:00
|
|
|
|
2012-12-10 11:16:40 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __ARM_KVM_ASM_H__ */
|