LoongArch: Override higher address bits in JUMP_VIRT_ADDR
authorJiaxun Yang <jiaxun.yang@flygoat.com>
Mon, 3 Jun 2024 07:45:53 +0000 (15:45 +0800)
committerHuacai Chen <chenhuacai@loongson.cn>
Mon, 3 Jun 2024 07:45:53 +0000 (15:45 +0800)
In JUMP_VIRT_ADDR we are performing an or calculation on address value
directly from pcaddi.

This will only work if we are currently running from direct 1:1 mapping
addresses or firmware's DMW is configured exactly same as kernel. Still,
we should not rely on such assumption.

Fix by overriding higher bits in address comes from pcaddi, so we can
get rid of or operator.

Cc: stable@vger.kernel.org
Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
Signed-off-by: Huacai Chen <chenhuacai@loongson.cn>
arch/loongarch/include/asm/stackframe.h

index 45b507a7b06fca8af6e16b36a2a1c3f538368eb2..d9eafd3ee3d1e848675f54f033163ecc66e07d72 100644 (file)
@@ -42,7 +42,7 @@
        .macro JUMP_VIRT_ADDR temp1 temp2
        li.d    \temp1, CACHE_BASE
        pcaddi  \temp2, 0
-       or      \temp1, \temp1, \temp2
+       bstrins.d  \temp1, \temp2, (DMW_PABITS - 1), 0
        jirl    zero, \temp1, 0xc
        .endm