__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright (C) 2020-2023 Loongson Technology Corporation Limited
*/
#ifndef __ASM_LOONGARCH_KVM_HOST_H__
#define __ASM_LOONGARCH_KVM_HOST_H__
#include <linux/cpumask.h>
#include <linux/hrtimer.h>
#include <linux/interrupt.h>
#include <linux/kvm.h>
#include <linux/kvm_types.h>
#include <linux/mutex.h>
#include <linux/spinlock.h>
#include <linux/threads.h>
#include <linux/types.h>
#include <asm/inst.h>
#include <asm/kvm_mmu.h>
#include <asm/kvm_ipi.h>
#include <asm/kvm_eiointc.h>
#include <asm/kvm_pch_pic.h>
#include <asm/loongarch.h>
#define __KVM_HAVE_ARCH_INTC_INITIALIZED
/* Loongarch KVM register ids */
#define KVM_GET_IOC_CSR_IDX(id) ((id & KVM_CSR_IDX_MASK) >> LOONGARCH_REG_SHIFT)
#define KVM_GET_IOC_CPUCFG_IDX(id) ((id & KVM_CPUCFG_IDX_MASK) >> LOONGARCH_REG_SHIFT)
#define KVM_MAX_VCPUS 256
#define KVM_MAX_CPUCFG_REGS 21
#define KVM_HALT_POLL_NS_DEFAULT 500000
#define KVM_REQ_TLB_FLUSH_GPA KVM_ARCH_REQ(0)
#define KVM_REQ_STEAL_UPDATE KVM_ARCH_REQ(1)
#define KVM_REQ_PMU KVM_ARCH_REQ(2)
#define KVM_GUESTDBG_SW_BP_MASK \
(KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP)
#define KVM_GUESTDBG_VALID_MASK \
(KVM_GUESTDBG_ENABLE | KVM_GUESTDBG_USE_SW_BP | KVM_GUESTDBG_SINGLESTEP)
#define KVM_DIRTY_LOG_MANUAL_CAPS \
(KVM_DIRTY_LOG_MANUAL_PROTECT_ENABLE | KVM_DIRTY_LOG_INITIALLY_SET)
struct kvm_vm_stat {
struct kvm_vm_stat_generic generic;
u64 pages;
u64 hugepages;
u64 ipi_read_exits;
u64 ipi_write_exits;
u64 eiointc_read_exits;
u64 eiointc_write_exits;
u64 pch_pic_read_exits;
u64 pch_pic_write_exits;
};
struct kvm_vcpu_stat {
struct kvm_vcpu_stat_generic generic;
u64 int_exits;
u64 idle_exits;
u64 cpucfg_exits;
u64 signal_exits;
u64 hypercall_exits;
};
#define KVM_MEM_HUGEPAGE_CAPABLE (1UL << 0)
#define KVM_MEM_HUGEPAGE_INCAPABLE (1UL << 1)
struct kvm_arch_memory_slot {
unsigned long flags;
};
#define HOST_MAX_PMNUM 16
struct kvm_context {
unsigned long vpid_cache;
struct kvm_vcpu *last_vcpu;
/* Host PMU CSR */
u64 perf_ctrl[HOST_MAX_PMNUM];
u64 perf_cntr[HOST_MAX_PMNUM];
};
struct kvm_world_switch {
int (*exc_entry)(void);
int (*enter_guest)(struct kvm_run *run, struct kvm_vcpu *vcpu);
unsigned long page_order;
};
#define MAX_PGTABLE_LEVELS 4
/*
* Physical CPUID is used for interrupt routing, there are different
* definitions about physical cpuid on different hardwares.
*
* For LOONGARCH_CSR_CPUID register, max CPUID size if 512
* For IPI hardware, max destination CPUID size 1024
* For eiointc interrupt controller, max destination CPUID size is 256
* For msgint interrupt controller, max supported CPUID size is 65536
*
* Currently max CPUID is defined as 256 for KVM hypervisor, in future
* it will be expanded to 4096, including 16 packages at most. And every
* package supports at most 256 vcpus
*/
#define KVM_MAX_PHYID 256
struct kvm_phyid_info {
struct kvm_vcpu *vcpu;
bool enabled;
};
struct kvm_phyid_map {
int max_phyid;
struct kvm_phyid_info phys_map[KVM_MAX_PHYID];
};
struct kvm_arch {
/* Guest physical mm */
kvm_pte_t *pgd;
unsigned long gpa_size;
unsigned long invalid_ptes[MAX_PGTABLE_LEVELS];
unsigned int pte_shifts[MAX_PGTABLE_LEVELS];
unsigned int root_level;
spinlock_t phyid_map_lock;
struct kvm_phyid_map *phyid_map;
/* Enabled PV features */
unsigned long pv_features;
s64 time_offset;
struct kvm_context __percpu *vmcs;
struct loongarch_ipi *ipi;
struct loongarch_eiointc *eiointc;
struct loongarch_pch_pic *pch_pic;
};
#define CSR_MAX_NUMS 0x800
struct loongarch_csrs {
unsigned long csrs[CSR_MAX_NUMS];
};
/* Resume Flags */
#define RESUME_HOST 0
#define RESUME_GUEST 1
enum emulation_result {
EMULATE_DONE, /* no further processing */
EMULATE_DO_MMIO, /* kvm_run filled with MMIO request */
EMULATE_DO_IOCSR, /* handle IOCSR request */
EMULATE_FAIL, /* can't emulate this instruction */
EMULATE_EXCEPT, /* A guest exception has been generated */
};
#define KVM_LARCH_FPU (0x1 << 0)
#define KVM_LARCH_LSX (0x1 << 1)
#define KVM_LARCH_LASX (0x1 << 2)
#define KVM_LARCH_LBT (0x1 << 3)
#define KVM_LARCH_PMU (0x1 << 4)
#define KVM_LARCH_SWCSR_LATEST (0x1 << 5)
#define KVM_LARCH_HWCSR_USABLE (0x1 << 6)
#define LOONGARCH_PV_FEAT_UPDATED BIT_ULL(63)
#define LOONGARCH_PV_FEAT_MASK (BIT(KVM_FEATURE_IPI) | \
BIT(KVM_FEATURE_STEAL_TIME) | \
BIT(KVM_FEATURE_USER_HCALL) | \
BIT(KVM_FEATURE_VIRT_EXTIOI))
struct kvm_vcpu_arch {
/*
* Switch pointer-to-function type to unsigned long
* for loading the value into register directly.
*/
unsigned long host_eentry;
unsigned long guest_eentry;
/* Pointers stored here for easy accessing from assembly code */
int (*handle_exit)(struct kvm_run *run, struct kvm_vcpu *vcpu);
/* Host registers preserved across guest mode execution */
unsigned long host_sp;
unsigned long host_tp;
unsigned long host_pgd;
/* Host CSRs are used when handling exits from guest */
unsigned long badi;
unsigned long badv;
unsigned long host_ecfg;
unsigned long host_estat;
unsigned long host_percpu;
/* GPRs */
unsigned long gprs[32];
unsigned long pc;
/* Which auxiliary state is loaded (KVM_LARCH_*) */
unsigned int aux_inuse;
/* FPU state */
struct loongarch_fpu fpu FPU_ALIGN;
struct loongarch_lbt lbt;
/* CSR state */
struct loongarch_csrs *csr;
/* Guest max PMU CSR id */
int max_pmu_csrid;
/* GPR used as IO source/target */
u32 io_gpr;
/* KVM register to control count timer */
u32 count_ctl;
struct hrtimer swtimer;
/* Bitmask of intr that are pending */
unsigned long irq_pending;
/* Bitmask of pending intr to be cleared */
unsigned long irq_clear;
/* Bitmask of exceptions that are pending */
unsigned long exception_pending;
unsigned int esubcode;
/* Cache for pages needed inside spinlock regions */
struct kvm_mmu_memory_cache mmu_page_cache;
/* vcpu's vpid */
u64 vpid;
gpa_t flush_gpa;
/* Frequency of stable timer in Hz */
u64 timer_mhz;
ktime_t expire;
/* Last CPU the vCPU state was loaded on */
int last_sched_cpu;
/* mp state */
struct kvm_mp_state mp_state;
/* ipi state */
struct ipi_state ipi_state;
/* cpucfg */
u32 cpucfg[KVM_MAX_CPUCFG_REGS];
/* paravirt steal time */
struct {
u64 guest_addr;
u64 last_steal;
struct gfn_to_hva_cache cache;
} st;
};
static inline unsigned long readl_sw_gcsr(struct loongarch_csrs *csr, int reg)
{
return csr->csrs[reg];
}
static inline void writel_sw_gcsr(struct loongarch_csrs *csr, int reg, unsigned long val)
{
csr->csrs[reg] = val;
}
static inline bool kvm_guest_has_fpu(struct kvm_vcpu_arch *arch)
{
return arch->cpucfg[2] & CPUCFG2_FP;
}
static inline bool kvm_guest_has_lsx(struct kvm_vcpu_arch *arch)
{
return arch->cpucfg[2] & CPUCFG2_LSX;
}
static inline bool kvm_guest_has_lasx(struct kvm_vcpu_arch *arch)
{
return arch->cpucfg[2] & CPUCFG2_LASX;
}
static inline bool kvm_guest_has_lbt(struct kvm_vcpu_arch *arch)
{
return arch->cpucfg[2] & (CPUCFG2_X86BT | CPUCFG2_ARMBT | CPUCFG2_MIPSBT);
}
static inline bool kvm_guest_has_pmu(struct kvm_vcpu_arch *arch)
{
return arch->cpucfg[6] & CPUCFG6_PMP;
}
static inline int kvm_get_pmu_num(struct kvm_vcpu_arch *arch)
{
return (arch->cpucfg[6] & CPUCFG6_PMNUM) >> CPUCFG6_PMNUM_SHIFT;
}
/* Debug: dump vcpu state */
int kvm_arch_vcpu_dump_regs(struct kvm_vcpu *vcpu);
/* MMU handling */
void kvm_flush_tlb_all(void);
void kvm_flush_tlb_gpa(struct kvm_vcpu *vcpu, unsigned long gpa);
int kvm_handle_mm_fault(struct kvm_vcpu *vcpu, unsigned long badv, bool write);
int kvm_unmap_hva_range(struct kvm *kvm, unsigned long start, unsigned long end, bool blockable);
int kvm_age_hva(struct kvm *kvm, unsigned long start, unsigned long end);
int kvm_test_age_hva(struct kvm *kvm, unsigned long hva);
static inline void update_pc(struct kvm_vcpu_arch *arch)
{
arch->pc += 4;
}
/*
* kvm_is_ifetch_fault() - Find whether a TLBL exception is due to ifetch fault.
* @vcpu: Virtual CPU.
*
* Returns: Whether the TLBL exception was likely due to an instruction
* fetch fault rather than a data load fault.
*/
static inline bool kvm_is_ifetch_fault(struct kvm_vcpu_arch *arch)
{
return arch->pc == arch->badv;
}
/* Misc */
static inline void kvm_arch_hardware_unsetup(void) {}
static inline void kvm_arch_sync_events(struct kvm *kvm) {}
static inline void kvm_arch_memslots_updated(struct kvm *kvm, u64 gen) {}
static inline void kvm_arch_vcpu_blocking(struct kvm_vcpu *vcpu) {}
static inline void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu) {}
static inline void kvm_arch_vcpu_block_finish(struct kvm_vcpu *vcpu) {}
static inline void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *slot) {}
void kvm_check_vpid(struct kvm_vcpu *vcpu);
enum hrtimer_restart kvm_swtimer_wakeup(struct hrtimer *timer);
void kvm_arch_flush_remote_tlbs_memslot(struct kvm *kvm, const struct kvm_memory_slot *memslot);
void kvm_init_vmcs(struct kvm *kvm);
void kvm_exc_entry(void);
int kvm_enter_guest(struct kvm_run *run, struct kvm_vcpu *vcpu);
extern unsigned long vpid_mask;
extern const unsigned long kvm_exception_size;
extern const unsigned long kvm_enter_guest_size;
extern struct kvm_world_switch *kvm_loongarch_ops;
#define SW_GCSR (1 << 0)
#define HW_GCSR (1 << 1)
#define INVALID_GCSR (1 << 2)
int get_gcsr_flag(int csr);
void set_hw_gcsr(int csr_id, unsigned long val);
#endif /* __ASM_LOONGARCH_KVM_HOST_H__ */
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| vdso | Folder | 0755 |
|
|
| Kbuild | File | 332 B | 0644 |
|
| acenv.h | File | 500 B | 0644 |
|
| acpi.h | File | 1.38 KB | 0644 |
|
| addrspace.h | File | 2.94 KB | 0644 |
|
| alternative-asm.h | File | 2.04 KB | 0644 |
|
| alternative.h | File | 3.77 KB | 0644 |
|
| asm-extable.h | File | 1.67 KB | 0644 |
|
| asm-offsets.h | File | 148 B | 0644 |
|
| asm-prototypes.h | File | 395 B | 0644 |
|
| asm.h | File | 3.86 KB | 0644 |
|
| asmmacro.h | File | 22.33 KB | 0644 |
|
| atomic.h | File | 10.5 KB | 0644 |
|
| barrier.h | File | 3.27 KB | 0644 |
|
| bitops.h | File | 860 B | 0644 |
|
| bitrev.h | File | 703 B | 0644 |
|
| bootinfo.h | File | 1.28 KB | 0644 |
|
| branch.h | File | 388 B | 0644 |
|
| bug.h | File | 1.4 KB | 0644 |
|
| cache.h | File | 362 B | 0644 |
|
| cacheflush.h | File | 2.24 KB | 0644 |
|
| cacheops.h | File | 1.54 KB | 0644 |
|
| checksum.h | File | 1.61 KB | 0644 |
|
| clocksource.h | File | 287 B | 0644 |
|
| cmpxchg.h | File | 4.94 KB | 0644 |
|
| cpu-features.h | File | 2.79 KB | 0644 |
|
| cpu-info.h | File | 2.89 KB | 0644 |
|
| cpu.h | File | 5.37 KB | 0644 |
|
| cpufeature.h | File | 576 B | 0644 |
|
| crash_reserve.h | File | 286 B | 0644 |
|
| delay.h | File | 582 B | 0644 |
|
| dma.h | File | 247 B | 0644 |
|
| dmi.h | File | 523 B | 0644 |
|
| efi.h | File | 867 B | 0644 |
|
| elf.h | File | 9.06 KB | 0644 |
|
| entry-common.h | File | 315 B | 0644 |
|
| exception.h | File | 1.73 KB | 0644 |
|
| exec.h | File | 237 B | 0644 |
|
| extable.h | File | 1.34 KB | 0644 |
|
| fixmap.h | File | 612 B | 0644 |
|
| fpregdef.h | File | 1.19 KB | 0644 |
|
| fprobe.h | File | 422 B | 0644 |
|
| fpu.h | File | 7.21 KB | 0644 |
|
| ftrace.h | File | 2.23 KB | 0644 |
|
| futex.h | File | 2.09 KB | 0644 |
|
| gpr-num.h | File | 1.39 KB | 0644 |
|
| hardirq.h | File | 706 B | 0644 |
|
| hugetlb.h | File | 2.12 KB | 0644 |
|
| hw_breakpoint.h | File | 3.82 KB | 0644 |
|
| hw_irq.h | File | 396 B | 0644 |
|
| idle.h | File | 184 B | 0644 |
|
| inst.h | File | 19.67 KB | 0644 |
|
| io.h | File | 2.5 KB | 0644 |
|
| irq.h | File | 3.71 KB | 0644 |
|
| irq_regs.h | File | 538 B | 0644 |
|
| irq_work.h | File | 237 B | 0644 |
|
| irqflags.h | File | 1.82 KB | 0644 |
|
| jump_label.h | File | 1.19 KB | 0644 |
|
| kasan.h | File | 3.33 KB | 0644 |
|
| kdebug.h | File | 318 B | 0644 |
|
| kexec.h | File | 1.46 KB | 0644 |
|
| kfence.h | File | 1.63 KB | 0644 |
|
| kgdb.h | File | 2.24 KB | 0644 |
|
| kprobes.h | File | 1.45 KB | 0644 |
|
| kvm_csr.h | File | 9.3 KB | 0644 |
|
| kvm_eiointc.h | File | 3.61 KB | 0644 |
|
| kvm_host.h | File | 9.2 KB | 0644 |
|
| kvm_ipi.h | File | 876 B | 0644 |
|
| kvm_mmu.h | File | 3.34 KB | 0644 |
|
| kvm_para.h | File | 4.29 KB | 0644 |
|
| kvm_pch_pic.h | File | 2.04 KB | 0644 |
|
| kvm_types.h | File | 271 B | 0644 |
|
| kvm_vcpu.h | File | 4.37 KB | 0644 |
|
| lbt.h | File | 2.39 KB | 0644 |
|
| linkage.h | File | 1.02 KB | 0644 |
|
| local.h | File | 3.67 KB | 0644 |
|
| loongarch.h | File | 59.34 KB | 0644 |
|
| loongson.h | File | 5.86 KB | 0644 |
|
| mmu.h | File | 301 B | 0644 |
|
| mmu_context.h | File | 4.03 KB | 0644 |
|
| module.h | File | 2.68 KB | 0644 |
|
| module.lds.h | File | 243 B | 0644 |
|
| numa.h | File | 1.54 KB | 0644 |
|
| orc_header.h | File | 426 B | 0644 |
|
| orc_lookup.h | File | 999 B | 0644 |
|
| orc_types.h | File | 1.73 KB | 0644 |
|
| page.h | File | 3.03 KB | 0644 |
|
| paravirt.h | File | 773 B | 0644 |
|
| paravirt_api_clock.h | File | 26 B | 0644 |
|
| pci.h | File | 543 B | 0644 |
|
| percpu.h | File | 5.16 KB | 0644 |
|
| perf_event.h | File | 517 B | 0644 |
|
| pgalloc.h | File | 2.3 KB | 0644 |
|
| pgtable-bits.h | File | 4.38 KB | 0644 |
|
| pgtable.h | File | 15.83 KB | 0644 |
|
| prefetch.h | File | 473 B | 0644 |
|
| processor.h | File | 5.35 KB | 0644 |
|
| ptrace.h | File | 5.38 KB | 0644 |
|
| qspinlock.h | File | 834 B | 0644 |
|
| regdef.h | File | 871 B | 0644 |
|
| seccomp.h | File | 500 B | 0644 |
|
| serial.h | File | 274 B | 0644 |
|
| set_memory.h | File | 723 B | 0644 |
|
| setup.h | File | 1.13 KB | 0644 |
|
| smp.h | File | 3.09 KB | 0644 |
|
| sparsemem.h | File | 866 B | 0644 |
|
| spinlock.h | File | 271 B | 0644 |
|
| spinlock_types.h | File | 262 B | 0644 |
|
| stackframe.h | File | 5.39 KB | 0644 |
|
| stackprotector.h | File | 1 KB | 0644 |
|
| stacktrace.h | File | 2.53 KB | 0644 |
|
| string.h | File | 1.09 KB | 0644 |
|
| suspend.h | File | 240 B | 0644 |
|
| switch_to.h | File | 1.42 KB | 0644 |
|
| syscall.h | File | 1.66 KB | 0644 |
|
| thread_info.h | File | 4.06 KB | 0644 |
|
| time.h | File | 1.09 KB | 0644 |
|
| timex.h | File | 436 B | 0644 |
|
| tlb.h | File | 3.93 KB | 0644 |
|
| tlbflush.h | File | 1.82 KB | 0644 |
|
| topology.h | File | 1.03 KB | 0644 |
|
| types.h | File | 371 B | 0644 |
|
| uaccess.h | File | 7.53 KB | 0644 |
|
| unistd.h | File | 334 B | 0644 |
|
| unwind.h | File | 2.61 KB | 0644 |
|
| unwind_hints.h | File | 788 B | 0644 |
|
| uprobes.h | File | 927 B | 0644 |
|
| vdso.h | File | 1.14 KB | 0644 |
|
| vermagic.h | File | 430 B | 0644 |
|
| video.h | File | 769 B | 0644 |
|
| vmalloc.h | File | 105 B | 0644 |
|
| xor.h | File | 1.64 KB | 0644 |
|
| xor_simd.h | File | 1.68 KB | 0644 |
|