10f4b8257SVincent Chen /* SPDX-License-Identifier: GPL-2.0-only */
20f4b8257SVincent Chen /*
30f4b8257SVincent Chen * Copyright (C) 2022 SiFive
40f4b8257SVincent Chen *
50f4b8257SVincent Chen * Authors:
60f4b8257SVincent Chen * Vincent Chen <vincent.chen@sifive.com>
70f4b8257SVincent Chen * Greentime Hu <greentime.hu@sifive.com>
80f4b8257SVincent Chen */
90f4b8257SVincent Chen
100f4b8257SVincent Chen #ifndef __KVM_VCPU_RISCV_VECTOR_H
110f4b8257SVincent Chen #define __KVM_VCPU_RISCV_VECTOR_H
120f4b8257SVincent Chen
130f4b8257SVincent Chen #include <linux/types.h>
140f4b8257SVincent Chen
150f4b8257SVincent Chen #ifdef CONFIG_RISCV_ISA_V
160f4b8257SVincent Chen #include <asm/vector.h>
170f4b8257SVincent Chen #include <asm/kvm_host.h>
180f4b8257SVincent Chen
__kvm_riscv_vector_save(struct kvm_cpu_context * context)190f4b8257SVincent Chen static __always_inline void __kvm_riscv_vector_save(struct kvm_cpu_context *context)
200f4b8257SVincent Chen {
210f4b8257SVincent Chen __riscv_v_vstate_save(&context->vector, context->vector.datap);
220f4b8257SVincent Chen }
230f4b8257SVincent Chen
__kvm_riscv_vector_restore(struct kvm_cpu_context * context)240f4b8257SVincent Chen static __always_inline void __kvm_riscv_vector_restore(struct kvm_cpu_context *context)
250f4b8257SVincent Chen {
260f4b8257SVincent Chen __riscv_v_vstate_restore(&context->vector, context->vector.datap);
270f4b8257SVincent Chen }
280f4b8257SVincent Chen
290f4b8257SVincent Chen void kvm_riscv_vcpu_vector_reset(struct kvm_vcpu *vcpu);
300f4b8257SVincent Chen void kvm_riscv_vcpu_guest_vector_save(struct kvm_cpu_context *cntx,
310f4b8257SVincent Chen unsigned long *isa);
320f4b8257SVincent Chen void kvm_riscv_vcpu_guest_vector_restore(struct kvm_cpu_context *cntx,
330f4b8257SVincent Chen unsigned long *isa);
340f4b8257SVincent Chen void kvm_riscv_vcpu_host_vector_save(struct kvm_cpu_context *cntx);
350f4b8257SVincent Chen void kvm_riscv_vcpu_host_vector_restore(struct kvm_cpu_context *cntx);
360f4b8257SVincent Chen int kvm_riscv_vcpu_alloc_vector_context(struct kvm_vcpu *vcpu,
370f4b8257SVincent Chen struct kvm_cpu_context *cntx);
380f4b8257SVincent Chen void kvm_riscv_vcpu_free_vector_context(struct kvm_vcpu *vcpu);
390f4b8257SVincent Chen #else
400f4b8257SVincent Chen
410f4b8257SVincent Chen struct kvm_cpu_context;
420f4b8257SVincent Chen
kvm_riscv_vcpu_vector_reset(struct kvm_vcpu * vcpu)430f4b8257SVincent Chen static inline void kvm_riscv_vcpu_vector_reset(struct kvm_vcpu *vcpu)
440f4b8257SVincent Chen {
450f4b8257SVincent Chen }
460f4b8257SVincent Chen
kvm_riscv_vcpu_guest_vector_save(struct kvm_cpu_context * cntx,unsigned long * isa)470f4b8257SVincent Chen static inline void kvm_riscv_vcpu_guest_vector_save(struct kvm_cpu_context *cntx,
480f4b8257SVincent Chen unsigned long *isa)
490f4b8257SVincent Chen {
500f4b8257SVincent Chen }
510f4b8257SVincent Chen
kvm_riscv_vcpu_guest_vector_restore(struct kvm_cpu_context * cntx,unsigned long * isa)520f4b8257SVincent Chen static inline void kvm_riscv_vcpu_guest_vector_restore(struct kvm_cpu_context *cntx,
530f4b8257SVincent Chen unsigned long *isa)
540f4b8257SVincent Chen {
550f4b8257SVincent Chen }
560f4b8257SVincent Chen
kvm_riscv_vcpu_host_vector_save(struct kvm_cpu_context * cntx)570f4b8257SVincent Chen static inline void kvm_riscv_vcpu_host_vector_save(struct kvm_cpu_context *cntx)
580f4b8257SVincent Chen {
590f4b8257SVincent Chen }
600f4b8257SVincent Chen
kvm_riscv_vcpu_host_vector_restore(struct kvm_cpu_context * cntx)610f4b8257SVincent Chen static inline void kvm_riscv_vcpu_host_vector_restore(struct kvm_cpu_context *cntx)
620f4b8257SVincent Chen {
630f4b8257SVincent Chen }
640f4b8257SVincent Chen
kvm_riscv_vcpu_alloc_vector_context(struct kvm_vcpu * vcpu,struct kvm_cpu_context * cntx)650f4b8257SVincent Chen static inline int kvm_riscv_vcpu_alloc_vector_context(struct kvm_vcpu *vcpu,
660f4b8257SVincent Chen struct kvm_cpu_context *cntx)
670f4b8257SVincent Chen {
680f4b8257SVincent Chen return 0;
690f4b8257SVincent Chen }
700f4b8257SVincent Chen
kvm_riscv_vcpu_free_vector_context(struct kvm_vcpu * vcpu)710f4b8257SVincent Chen static inline void kvm_riscv_vcpu_free_vector_context(struct kvm_vcpu *vcpu)
720f4b8257SVincent Chen {
730f4b8257SVincent Chen }
740f4b8257SVincent Chen #endif
750f4b8257SVincent Chen
760f4b8257SVincent Chen int kvm_riscv_vcpu_get_reg_vector(struct kvm_vcpu *vcpu,
77*630b4ceeSAndrew Jones const struct kvm_one_reg *reg);
780f4b8257SVincent Chen int kvm_riscv_vcpu_set_reg_vector(struct kvm_vcpu *vcpu,
79*630b4ceeSAndrew Jones const struct kvm_one_reg *reg);
800f4b8257SVincent Chen #endif
81