diff options
author | Samuel Pitoiset <[email protected]> | 2020-04-13 11:38:33 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2020-04-14 11:31:33 +0200 |
commit | cb6ab17d1fffe2f387ce4ec7691f926260091118 (patch) | |
tree | afe1ca4eca4f1a587069ead3191f65373fd2b73f | |
parent | f0b94262c18284dc61755634f01eb78051b4423e (diff) |
radv: add radeon_set_context_reg_rmw() helper
For emitting RMW packets in the command stream. This new helper
will be useful for implementing extended dynamic states to only
overwrite the fields that need to be updated instead of storing
more values in the pipeline.
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4531>
-rw-r--r-- | src/amd/vulkan/radv_cs.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/amd/vulkan/radv_cs.h b/src/amd/vulkan/radv_cs.h index 1c89f1f8395..2bef75c80ad 100644 --- a/src/amd/vulkan/radv_cs.h +++ b/src/amd/vulkan/radv_cs.h @@ -82,6 +82,18 @@ static inline void radeon_set_context_reg_idx(struct radeon_cmdbuf *cs, radeon_emit(cs, value); } +static inline void radeon_set_context_reg_rmw(struct radeon_cmdbuf *cs, + unsigned reg, unsigned value, + unsigned mask) +{ + assert(reg >= SI_CONTEXT_REG_OFFSET && reg < SI_CONTEXT_REG_END); + assert(cs->cdw + 4 <= cs->max_dw); + radeon_emit(cs, PKT3(PKT3_CONTEXT_REG_RMW, 2, 0)); + radeon_emit(cs, (reg - SI_CONTEXT_REG_OFFSET) >> 2); + radeon_emit(cs, mask); + radeon_emit(cs, value); +} + static inline void radeon_set_sh_reg_seq(struct radeon_cmdbuf *cs, unsigned reg, unsigned num) { assert(reg >= SI_SH_REG_OFFSET && reg < SI_SH_REG_END); |