[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 20/20] target/mips: Enable hardware page table walker and CMGCR fe
From: |
Aleksandar Markovic |
Subject: |
[PULL 20/20] target/mips: Enable hardware page table walker and CMGCR features for P5600 |
Date: |
Tue, 9 Jun 2020 18:28:38 +0200 |
From: Andrea Oliveri <oliveriandrea@gmail.com>
Enable hardware page table walker and CMGCR features for P5600 that
supports both.
Signed-off-by: Andrea Oliveri <oliveriandrea@gmail.com>
Reviewed-by: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
Signed-off-by: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
Message-Id: <de5adcb9fd0dd607b98026f4bfb34205432b6002.camel@gmail.com>
---
target/mips/translate_init.inc.c | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/target/mips/translate_init.inc.c b/target/mips/translate_init.inc.c
index ffae10d..637cacc 100644
--- a/target/mips/translate_init.inc.c
+++ b/target/mips/translate_init.inc.c
@@ -366,7 +366,7 @@ const mips_def_t mips_defs[] =
},
{
/* FIXME:
- * Config3: CMGCR, PW, VZ, CTXTC, CDMM, TL
+ * Config3: VZ, CTXTC, CDMM, TL
* Config4: MMUExtDef
* Config5: MRP
* FIR(FCR0): Has2008
@@ -380,10 +380,11 @@ const mips_def_t mips_defs[] =
(2 << CP0C1_DS) | (4 << CP0C1_DL) | (3 << CP0C1_DA) |
(1 << CP0C1_PC) | (1 << CP0C1_FP),
.CP0_Config2 = MIPS_CONFIG2,
- .CP0_Config3 = MIPS_CONFIG3 | (1U << CP0C3_M) | (1 << CP0C3_MSAP) |
+ .CP0_Config3 = MIPS_CONFIG3 | (1U << CP0C3_M) |
+ (1 << CP0C3_CMGCR) | (1 << CP0C3_MSAP) |
(1 << CP0C3_BP) | (1 << CP0C3_BI) | (1 << CP0C3_SC) |
- (1 << CP0C3_ULRI) | (1 << CP0C3_RXI) | (1 << CP0C3_LPA)
|
- (1 << CP0C3_VInt),
+ (1 << CP0C3_PW) | (1 << CP0C3_ULRI) | (1 << CP0C3_RXI) |
+ (1 << CP0C3_LPA) | (1 << CP0C3_VInt),
.CP0_Config4 = MIPS_CONFIG4 | (1U << CP0C4_M) | (2 << CP0C4_IE) |
(0x1c << CP0C4_KScrExist),
.CP0_Config4_rw_bitmask = 0,
--
2.7.4
- [PULL 07/20] target/mips: fpu: Remove now unused macro FLOAT_BINOP, (continued)
- [PULL 07/20] target/mips: fpu: Remove now unused macro FLOAT_BINOP, Aleksandar Markovic, 2020/06/09
- [PULL 05/20] target/mips: fpu: Demacro MUL.<D|S|PS>, Aleksandar Markovic, 2020/06/09
- [PULL 12/20] target/mips: fpu: Remove now unused UNFUSED_FMA and FLOAT_FMA macros, Aleksandar Markovic, 2020/06/09
- [PULL 13/20] target/mips: fpu: Demacro CLASS.<D|S>, Aleksandar Markovic, 2020/06/09
- [PULL 18/20] target/mips: fpu: Refactor conversion from ieee to mips exception flags, Aleksandar Markovic, 2020/06/09
- [PULL 17/20] target/mips: fpu: Name better paired-single variables, Aleksandar Markovic, 2020/06/09
- [PULL 15/20] target/mips: fpu: Demacro RINT.<D|S>, Aleksandar Markovic, 2020/06/09
- [PULL 16/20] target/mips: fpu: Remove now unused FLOAT_RINT macro, Aleksandar Markovic, 2020/06/09
- [PULL 14/20] target/mips: fpu: Remove now unused FLOAT_CLASS macro, Aleksandar Markovic, 2020/06/09
- [PULL 19/20] target/mips: Add Loongson-3 CPU definition, Aleksandar Markovic, 2020/06/09
- [PULL 20/20] target/mips: Enable hardware page table walker and CMGCR features for P5600,
Aleksandar Markovic <=
- Re: [PULL 00/20] MIPS queue for June 9th, 2020, Peter Maydell, 2020/06/11