xref: /openbmc/linux/arch/arm64/include/asm/stacktrace/nvhe.h (revision 4f2c0a4acffbec01079c28f839422e64ddeff004)
1573e1e82SKalesh Singh /* SPDX-License-Identifier: GPL-2.0-only */
2573e1e82SKalesh Singh /*
3573e1e82SKalesh Singh  * KVM nVHE hypervisor stack tracing support.
4573e1e82SKalesh Singh  *
5573e1e82SKalesh Singh  * The unwinder implementation depends on the nVHE mode:
6573e1e82SKalesh Singh  *
7573e1e82SKalesh Singh  *   1) Non-protected nVHE mode - the host can directly access the
8573e1e82SKalesh Singh  *      HYP stack pages and unwind the HYP stack in EL1. This saves having
9573e1e82SKalesh Singh  *      to allocate shared buffers for the host to read the unwinded
10573e1e82SKalesh Singh  *      stacktrace.
11573e1e82SKalesh Singh  *
1225aa73b6SKalesh Singh  *   2) pKVM (protected nVHE) mode - the host cannot directly access
1325aa73b6SKalesh Singh  *      the HYP memory. The stack is unwinded in EL2 and dumped to a shared
1425aa73b6SKalesh Singh  *      buffer where the host can read and print the stacktrace.
1525aa73b6SKalesh Singh  *
16573e1e82SKalesh Singh  * Copyright (C) 2022 Google LLC
17573e1e82SKalesh Singh  */
18573e1e82SKalesh Singh #ifndef __ASM_STACKTRACE_NVHE_H
19573e1e82SKalesh Singh #define __ASM_STACKTRACE_NVHE_H
20573e1e82SKalesh Singh 
21573e1e82SKalesh Singh #include <asm/stacktrace/common.h>
22573e1e82SKalesh Singh 
23*16283c54SMark Rutland /**
24*16283c54SMark Rutland  * kvm_nvhe_unwind_init() - Start an unwind from the given nVHE HYP fp and pc
25314a61dcSKalesh Singh  *
26314a61dcSKalesh Singh  * @state : unwind_state to initialize
27314a61dcSKalesh Singh  * @fp    : frame pointer at which to start the unwinding.
28314a61dcSKalesh Singh  * @pc    : program counter at which to start the unwinding.
29314a61dcSKalesh Singh  */
kvm_nvhe_unwind_init(struct unwind_state * state,unsigned long fp,unsigned long pc)30314a61dcSKalesh Singh static inline void kvm_nvhe_unwind_init(struct unwind_state *state,
31314a61dcSKalesh Singh 					unsigned long fp,
32314a61dcSKalesh Singh 					unsigned long pc)
33314a61dcSKalesh Singh {
34314a61dcSKalesh Singh 	unwind_init_common(state, NULL);
35314a61dcSKalesh Singh 
36314a61dcSKalesh Singh 	state->fp = fp;
37314a61dcSKalesh Singh 	state->pc = pc;
38314a61dcSKalesh Singh }
39314a61dcSKalesh Singh 
404e00532fSMarc Zyngier #ifndef __KVM_NVHE_HYPERVISOR__
41573e1e82SKalesh Singh /*
42573e1e82SKalesh Singh  * Conventional (non-protected) nVHE HYP stack unwinder
43573e1e82SKalesh Singh  *
44573e1e82SKalesh Singh  * In non-protected mode, the unwinding is done from kernel proper context
45573e1e82SKalesh Singh  * (by the host in EL1).
46573e1e82SKalesh Singh  */
47573e1e82SKalesh Singh 
48db129d48SKalesh Singh DECLARE_KVM_NVHE_PER_CPU(unsigned long [OVERFLOW_STACK_SIZE/sizeof(long)], overflow_stack);
49db129d48SKalesh Singh DECLARE_KVM_NVHE_PER_CPU(struct kvm_nvhe_stacktrace_info, kvm_stacktrace_info);
50db129d48SKalesh Singh DECLARE_PER_CPU(unsigned long, kvm_arm_hyp_stack_page);
51db129d48SKalesh Singh 
529f5fee05SMarc Zyngier void kvm_nvhe_dump_backtrace(unsigned long hyp_offset);
539f5fee05SMarc Zyngier 
5425aa73b6SKalesh Singh #endif	/* __KVM_NVHE_HYPERVISOR__ */
55573e1e82SKalesh Singh #endif	/* __ASM_STACKTRACE_NVHE_H */
56