diff options
author | Dave Airlie <[email protected]> | 2017-06-07 08:09:03 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2017-06-07 08:09:03 +1000 |
commit | f0b82bc5450b0f12290875f7ab01b22eb0115e83 (patch) | |
tree | cc930133d28480188866b85ca691e5fcaf8b67c0 | |
parent | 59c2e2a061736a981819c3cb217e92e1509d9852 (diff) |
radv/gfx9: use correct register setting for uconfig regs
Thanks to Marek for pointing this out.
Signed-off-by: Dave Airlie <[email protected]>
-rw-r--r-- | src/amd/vulkan/si_cmd_buffer.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/amd/vulkan/si_cmd_buffer.c b/src/amd/vulkan/si_cmd_buffer.c index 1011c2d3393..a251a1aa7f5 100644 --- a/src/amd/vulkan/si_cmd_buffer.c +++ b/src/amd/vulkan/si_cmd_buffer.c @@ -378,9 +378,9 @@ si_emit_config(struct radv_physical_device *physical_device, S_02800C_FORCE_HIS_ENABLE1(V_02800C_FORCE_DISABLE)); if (physical_device->rad_info.chip_class >= GFX9) { - radeon_set_context_reg(cs, R_030920_VGT_MAX_VTX_INDX, ~0); - radeon_set_context_reg(cs, R_030924_VGT_MIN_VTX_INDX, 0); - radeon_set_context_reg(cs, R_030928_VGT_INDX_OFFSET, 0); + radeon_set_uconfig_reg(cs, R_030920_VGT_MAX_VTX_INDX, ~0); + radeon_set_uconfig_reg(cs, R_030924_VGT_MIN_VTX_INDX, 0); + radeon_set_uconfig_reg(cs, R_030928_VGT_INDX_OFFSET, 0); } else { radeon_set_context_reg(cs, R_028400_VGT_MAX_VTX_INDX, ~0); radeon_set_context_reg(cs, R_028404_VGT_MIN_VTX_INDX, 0); @@ -485,7 +485,7 @@ si_emit_config(struct radv_physical_device *physical_device, S_028C48_MAX_PRIM_PER_BATCH(1023)); radeon_set_context_reg(cs, R_028C4C_PA_SC_CONSERVATIVE_RASTERIZATION_CNTL, S_028C4C_NULL_SQUAD_AA_MASK_ENABLE(1)); - radeon_set_context_reg(cs, R_030968_VGT_INSTANCE_BASE_ID, 0); + radeon_set_uconfig_reg(cs, R_030968_VGT_INSTANCE_BASE_ID, 0); } si_emit_compute(physical_device, cs); } |