From 10eaf06e47d64e6ff44266185347433f1ada0cda Mon Sep 17 00:00:00 2001 From: Rob Clark Date: Mon, 22 Jul 2024 10:18:45 -0700 Subject: [PATCH] freedreno/a7xx: Fix GRAS_UNKNOWN_80F4 writes If this is a 64b reg, we should write both halves. Signed-off-by: Rob Clark Part-of: --- src/freedreno/common/freedreno_devices.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/freedreno/common/freedreno_devices.py b/src/freedreno/common/freedreno_devices.py index b3ad9fbc4b9..1dcfc7a43e5 100644 --- a/src/freedreno/common/freedreno_devices.py +++ b/src/freedreno/common/freedreno_devices.py @@ -1055,6 +1055,7 @@ add_gpus([ [A6XXRegs.REG_A7XX_HLSQ_UNKNOWN_A9AD, 0x00000000], [A6XXRegs.REG_A7XX_GRAS_UNKNOWN_8008, 0x00000000], [A6XXRegs.REG_A7XX_GRAS_UNKNOWN_80F4, 0x00000000], + [A6XXRegs.REG_A7XX_GRAS_UNKNOWN_80F5, 0x00000000], ], )) @@ -1139,6 +1140,7 @@ add_gpus([ [A6XXRegs.REG_A6XX_RB_UNKNOWN_88F4, 0x00000000], [A6XXRegs.REG_A7XX_HLSQ_UNKNOWN_A9AD, 0x00000000], [A6XXRegs.REG_A7XX_GRAS_UNKNOWN_80F4, 0x00000000], + [A6XXRegs.REG_A7XX_GRAS_UNKNOWN_80F5, 0x00000000], ], ))