Re: [PATCH v2 4/5] target/loongarch: Support LoongArch32 TLB entry

2023-08-07 Thread Jiajie Chen
On 2023/8/7 14:55, gaosong wrote: Hi, Jiajie 在 2023/8/7 下午1:17, Jiajie Chen 写道: On 2023/8/7 11:18, Jiajie Chen wrote: The TLB entry of LA32 lacks NR, NX and RPLV and they are hardwired to zero in LoongArch32. Signed-off-by: Jiajie Chen ---   target/loongarch/cpu-csr.h    |  9 +  

Re: [PATCH v2 4/5] target/loongarch: Support LoongArch32 TLB entry

2023-08-06 Thread gaosong
Hi, Jiajie 在 2023/8/7 下午1:17, Jiajie Chen 写道: On 2023/8/7 11:18, Jiajie Chen wrote: The TLB entry of LA32 lacks NR, NX and RPLV and they are hardwired to zero in LoongArch32. Signed-off-by: Jiajie Chen ---   target/loongarch/cpu-csr.h    |  9 +   target/loongarch/tlb_helper.c | 17 ++

Re: [PATCH v2 4/5] target/loongarch: Support LoongArch32 TLB entry

2023-08-06 Thread Jiajie Chen
On 2023/8/7 11:18, Jiajie Chen wrote: The TLB entry of LA32 lacks NR, NX and RPLV and they are hardwired to zero in LoongArch32. Signed-off-by: Jiajie Chen --- target/loongarch/cpu-csr.h| 9 + target/loongarch/tlb_helper.c | 17 - 2 files changed, 17 insertion

[PATCH v2 4/5] target/loongarch: Support LoongArch32 TLB entry

2023-08-06 Thread Jiajie Chen
The TLB entry of LA32 lacks NR, NX and RPLV and they are hardwired to zero in LoongArch32. Signed-off-by: Jiajie Chen --- target/loongarch/cpu-csr.h| 9 + target/loongarch/tlb_helper.c | 17 - 2 files changed, 17 insertions(+), 9 deletions(-) diff --git a/target/loo