[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v1 3/9] target/loongarch: Supplement vcpu env initial when vcpu r
|
From: |
xianglai li |
|
Subject: |
[PATCH v1 3/9] target/loongarch: Supplement vcpu env initial when vcpu reset |
|
Date: |
Wed, 8 Nov 2023 09:41:35 +0800 |
From: Tianrui Zhao <zhaotianrui@loongson.cn>
Supplement vcpu env initial when vcpu reset, including
init vcpu CSR_CPUID,CSR_TID to cpu->cpu_index. The two
regs will be used in kvm_get/set_csr_ioctl.
Signed-off-by: Tianrui Zhao <zhaotianrui@loongson.cn>
Signed-off-by: xianglai li <lixianglai@loongson.cn>
---
target/loongarch/cpu.c | 2 ++
target/loongarch/cpu.h | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/target/loongarch/cpu.c b/target/loongarch/cpu.c
index ef1bf89dac..1eed1b3eb0 100644
--- a/target/loongarch/cpu.c
+++ b/target/loongarch/cpu.c
@@ -524,10 +524,12 @@ static void loongarch_cpu_reset_hold(Object *obj)
env->CSR_ESTAT = env->CSR_ESTAT & (~MAKE_64BIT_MASK(0, 2));
env->CSR_RVACFG = FIELD_DP64(env->CSR_RVACFG, CSR_RVACFG, RBITS, 0);
+ env->CSR_CPUID = cs->cpu_index;
env->CSR_TCFG = FIELD_DP64(env->CSR_TCFG, CSR_TCFG, EN, 0);
env->CSR_LLBCTL = FIELD_DP64(env->CSR_LLBCTL, CSR_LLBCTL, KLO, 0);
env->CSR_TLBRERA = FIELD_DP64(env->CSR_TLBRERA, CSR_TLBRERA, ISTLBR, 0);
env->CSR_MERRCTL = FIELD_DP64(env->CSR_MERRCTL, CSR_MERRCTL, ISMERR, 0);
+ env->CSR_TID = cs->cpu_index;
env->CSR_PRCFG3 = FIELD_DP64(env->CSR_PRCFG3, CSR_PRCFG3, TLB_TYPE, 2);
env->CSR_PRCFG3 = FIELD_DP64(env->CSR_PRCFG3, CSR_PRCFG3, MTLB_ENTRY, 63);
diff --git a/target/loongarch/cpu.h b/target/loongarch/cpu.h
index 40e70a8119..e6a99c83ab 100644
--- a/target/loongarch/cpu.h
+++ b/target/loongarch/cpu.h
@@ -318,6 +318,7 @@ typedef struct CPUArchState {
uint64_t CSR_PWCH;
uint64_t CSR_STLBPS;
uint64_t CSR_RVACFG;
+ uint64_t CSR_CPUID;
uint64_t CSR_PRCFG1;
uint64_t CSR_PRCFG2;
uint64_t CSR_PRCFG3;
@@ -349,7 +350,6 @@ typedef struct CPUArchState {
uint64_t CSR_DBG;
uint64_t CSR_DERA;
uint64_t CSR_DSAVE;
- uint64_t CSR_CPUID;
#ifndef CONFIG_USER_ONLY
LoongArchTLB tlb[LOONGARCH_TLB_MAX];
--
2.39.1
- [PATCH v1 0/9] Add loongarch kvm accel support, xianglai li, 2023/11/07
- [PATCH v1 1/9] linux-headers: Add KVM headers for loongarch, xianglai li, 2023/11/07
- [PATCH v1 3/9] target/loongarch: Supplement vcpu env initial when vcpu reset,
xianglai li <=
- [PATCH v1 8/9] target/loongarch: Implement set vcpu intr for kvm, xianglai li, 2023/11/07
- [PATCH v1 2/9] target/loongarch: Define some kvm_arch interfaces, xianglai li, 2023/11/07
- [PATCH v1 5/9] target/loongarch: Implement kvm_arch_init function, xianglai li, 2023/11/07
- [PATCH v1 9/9] target/loongarch: Add loongarch kvm into meson build, xianglai li, 2023/11/07
- [PATCH v1 6/9] target/loongarch: Implement kvm_arch_init_vcpu, xianglai li, 2023/11/07
- [PATCH v1 7/9] target/loongarch: Implement kvm_arch_handle_exit, xianglai li, 2023/11/07
- [PATCH v1 4/9] target/loongarch: Implement kvm get/set registers, xianglai li, 2023/11/07