target/loongarch: Fix tlb huge page loading issue
authorXianglai Li <lixianglai@loongson.cn>
Mon, 18 Mar 2024 07:03:32 +0000 (15:03 +0800)
committerSong Gao <gaosong@loongson.cn>
Wed, 20 Mar 2024 02:20:03 +0000 (10:20 +0800)
commit9c70db9a433886c4647bfe01bf256e426c698561
treef82772018de274a5e093f4ce1a47f65837acad41
parent0a57a96ec6532dafa961c6196a7b0c00fd28e662
target/loongarch: Fix tlb huge page loading issue

When we use qemu tcg simulation, the page size of bios is 4KB.
When using the level 2 super huge page (page size is 1G) to create the page table,
it is found that the content of the corresponding address space is abnormal,
resulting in the bios can not start the operating system and graphical interface normally.

The lddir and ldpte instruction emulation has
a problem with the use of super huge page processing above level 2.
The page size is not correctly calculated,
resulting in the wrong page size of the table entry found by tlb.

Signed-off-by: Xianglai Li <lixianglai@loongson.cn>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Song Gao <gaosong@loongson.cn>
Message-Id: <20240318070332.1273939-1-lixianglai@loongson.cn>
target/loongarch/cpu-csr.h
target/loongarch/internals.h
target/loongarch/tcg/tlb_helper.c