• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revision71ed30b7d4c7bc7d8069eba601d7384e378f3024 (tree)
Zeit2021-08-25 20:02:14
AutorPhilippe Mathieu-Daudé <f4bug@amsa...>
CommiterPhilippe Mathieu-Daudé

Log Message

target/mips: Allow Loongson 3A1000 to use up to 48-bit VAddr

Per the manual '龙芯 GS264 处理器核用户手册' v1.0, chapter
1.1.5 SEGBITS: the 3A1000 (based on GS464 core) implements
48 virtual address bits in each 64-bit segment, not 40.

Fixes: af868995e1b ("target/mips: Add Loongson-3 CPU definition")
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Huacai Chen <chenhuacai@loongson.cn>
Message-Id: <20210813110149.1432692-3-f4bug@amsat.org>

Ändern Zusammenfassung

Diff

--- a/target/mips/cpu-defs.c.inc
+++ b/target/mips/cpu-defs.c.inc
@@ -828,7 +828,7 @@ const mips_def_t mips_defs[] =
828828 (0x1 << FCR0_D) | (0x1 << FCR0_S),
829829 .CP1_fcr31 = 0,
830830 .CP1_fcr31_rw_bitmask = 0xFF83FFFF,
831- .SEGBITS = 42,
831+ .SEGBITS = 48,
832832 .PABITS = 48,
833833 .insn_flags = CPU_MIPS64R2 | INSN_LOONGSON3A |
834834 ASE_LMMI | ASE_LEXT,