mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 20:38:06 +02:00
ac/spm: fix GRBM broadcasting for global blocks
They should broadcast SE and SA. Cc: mesa-stable Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/39080>
This commit is contained in:
parent
cafec8a0c4
commit
c8cb0f5941
1 changed files with 2 additions and 1 deletions
|
|
@ -9,6 +9,7 @@
|
|||
#include "ac_spm.h"
|
||||
|
||||
#include "util/bitscan.h"
|
||||
#include "util/compiler.h"
|
||||
#include "util/u_memory.h"
|
||||
#include "ac_perfcounter.h"
|
||||
|
||||
|
|
@ -345,7 +346,7 @@ ac_spm_init_grbm_gfx_index(const struct ac_pc_block *block,
|
|||
case GL2C:
|
||||
/* Global blocks. */
|
||||
grbm_gfx_index |= S_030800_SE_BROADCAST_WRITES(1);
|
||||
break;
|
||||
FALLTHROUGH;
|
||||
case SQ:
|
||||
/* Per-SE blocks. */
|
||||
grbm_gfx_index |= S_030800_SH_BROADCAST_WRITES(1);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue