X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fgallium%2Fdrivers%2Fradeonsi%2Fsi_pm4.c;h=a409b6efdd60685053ff81f64f6ed6239b2f46a1;hb=c98e52f88a1b24b33b4e8b95f80cf5dbbe6d2d66;hp=4869d19e4d3ea95dda5e4aa410e7a55937076b6e;hpb=6fadfc01c6f1600de89e8cd74f2ba78f503b5e6b;p=mesa.git diff --git a/src/gallium/drivers/radeonsi/si_pm4.c b/src/gallium/drivers/radeonsi/si_pm4.c index 4869d19e4d3..a409b6efdd6 100644 --- a/src/gallium/drivers/radeonsi/si_pm4.c +++ b/src/gallium/drivers/radeonsi/si_pm4.c @@ -22,167 +22,116 @@ * USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#include "util/u_memory.h" #include "si_pipe.h" #include "sid.h" +#include "util/u_memory.h" void si_pm4_cmd_begin(struct si_pm4_state *state, unsigned opcode) { - state->last_opcode = opcode; - state->last_pm4 = state->ndw++; + state->last_opcode = opcode; + state->last_pm4 = state->ndw++; } void si_pm4_cmd_add(struct si_pm4_state *state, uint32_t dw) { - state->pm4[state->ndw++] = dw; + state->pm4[state->ndw++] = dw; } void si_pm4_cmd_end(struct si_pm4_state *state, bool predicate) { - unsigned count; - count = state->ndw - state->last_pm4 - 2; - state->pm4[state->last_pm4] = - PKT3(state->last_opcode, count, predicate); + unsigned count; + count = state->ndw - state->last_pm4 - 2; + state->pm4[state->last_pm4] = PKT3(state->last_opcode, count, predicate); - assert(state->ndw <= SI_PM4_MAX_DW); + assert(state->ndw <= SI_PM4_MAX_DW); } void si_pm4_set_reg(struct si_pm4_state *state, unsigned reg, uint32_t val) { - unsigned opcode; + unsigned opcode; - if (reg >= SI_CONFIG_REG_OFFSET && reg < SI_CONFIG_REG_END) { - opcode = PKT3_SET_CONFIG_REG; - reg -= SI_CONFIG_REG_OFFSET; + if (reg >= SI_CONFIG_REG_OFFSET && reg < SI_CONFIG_REG_END) { + opcode = PKT3_SET_CONFIG_REG; + reg -= SI_CONFIG_REG_OFFSET; - } else if (reg >= SI_SH_REG_OFFSET && reg < SI_SH_REG_END) { - opcode = PKT3_SET_SH_REG; - reg -= SI_SH_REG_OFFSET; + } else if (reg >= SI_SH_REG_OFFSET && reg < SI_SH_REG_END) { + opcode = PKT3_SET_SH_REG; + reg -= SI_SH_REG_OFFSET; - } else if (reg >= SI_CONTEXT_REG_OFFSET && reg < SI_CONTEXT_REG_END) { - opcode = PKT3_SET_CONTEXT_REG; - reg -= SI_CONTEXT_REG_OFFSET; + } else if (reg >= SI_CONTEXT_REG_OFFSET && reg < SI_CONTEXT_REG_END) { + opcode = PKT3_SET_CONTEXT_REG; + reg -= SI_CONTEXT_REG_OFFSET; - } else if (reg >= CIK_UCONFIG_REG_OFFSET && reg < CIK_UCONFIG_REG_END) { - opcode = PKT3_SET_UCONFIG_REG; - reg -= CIK_UCONFIG_REG_OFFSET; + } else if (reg >= CIK_UCONFIG_REG_OFFSET && reg < CIK_UCONFIG_REG_END) { + opcode = PKT3_SET_UCONFIG_REG; + reg -= CIK_UCONFIG_REG_OFFSET; - } else { - PRINT_ERR("Invalid register offset %08x!\n", reg); - return; - } + } else { + PRINT_ERR("Invalid register offset %08x!\n", reg); + return; + } - reg >>= 2; + reg >>= 2; - if (opcode != state->last_opcode || reg != (state->last_reg + 1)) { - si_pm4_cmd_begin(state, opcode); - si_pm4_cmd_add(state, reg); - } + if (opcode != state->last_opcode || reg != (state->last_reg + 1)) { + si_pm4_cmd_begin(state, opcode); + si_pm4_cmd_add(state, reg); + } - state->last_reg = reg; - si_pm4_cmd_add(state, val); - si_pm4_cmd_end(state, false); + state->last_reg = reg; + si_pm4_cmd_add(state, val); + si_pm4_cmd_end(state, false); } -void si_pm4_add_bo(struct si_pm4_state *state, - struct r600_resource *bo, - enum radeon_bo_usage usage, - enum radeon_bo_priority priority) +void si_pm4_add_bo(struct si_pm4_state *state, struct si_resource *bo, enum radeon_bo_usage usage, + enum radeon_bo_priority priority) { - unsigned idx = state->nbo++; - assert(idx < SI_PM4_MAX_BO); + unsigned idx = state->nbo++; + assert(idx < SI_PM4_MAX_BO); - r600_resource_reference(&state->bo[idx], bo); - state->bo_usage[idx] = usage; - state->bo_priority[idx] = priority; + si_resource_reference(&state->bo[idx], bo); + state->bo_usage[idx] = usage; + state->bo_priority[idx] = priority; } void si_pm4_clear_state(struct si_pm4_state *state) { - for (int i = 0; i < state->nbo; ++i) - r600_resource_reference(&state->bo[i], NULL); - r600_resource_reference(&state->indirect_buffer, NULL); - state->nbo = 0; - state->ndw = 0; + for (int i = 0; i < state->nbo; ++i) + si_resource_reference(&state->bo[i], NULL); + state->nbo = 0; + state->ndw = 0; } -void si_pm4_free_state(struct si_context *sctx, - struct si_pm4_state *state, - unsigned idx) +void si_pm4_free_state(struct si_context *sctx, struct si_pm4_state *state, unsigned idx) { - if (!state) - return; + if (!state) + return; - if (idx != ~0 && sctx->emitted.array[idx] == state) { - sctx->emitted.array[idx] = NULL; - } + if (idx != ~0 && sctx->emitted.array[idx] == state) { + sctx->emitted.array[idx] = NULL; + } - si_pm4_clear_state(state); - FREE(state); + si_pm4_clear_state(state); + FREE(state); } void si_pm4_emit(struct si_context *sctx, struct si_pm4_state *state) { - struct radeon_winsys_cs *cs = sctx->gfx_cs; - - for (int i = 0; i < state->nbo; ++i) { - radeon_add_to_buffer_list(sctx, sctx->gfx_cs, state->bo[i], - state->bo_usage[i], state->bo_priority[i]); - } - - if (!state->indirect_buffer) { - radeon_emit_array(cs, state->pm4, state->ndw); - } else { - struct r600_resource *ib = state->indirect_buffer; - - radeon_add_to_buffer_list(sctx, sctx->gfx_cs, ib, - RADEON_USAGE_READ, - RADEON_PRIO_IB2); - - radeon_emit(cs, PKT3(PKT3_INDIRECT_BUFFER_CIK, 2, 0)); - radeon_emit(cs, ib->gpu_address); - radeon_emit(cs, ib->gpu_address >> 32); - radeon_emit(cs, (ib->b.b.width0 >> 2) & 0xfffff); - } -} + struct radeon_cmdbuf *cs = sctx->gfx_cs; -void si_pm4_reset_emitted(struct si_context *sctx) -{ - memset(&sctx->emitted, 0, sizeof(sctx->emitted)); - sctx->dirty_states |= u_bit_consecutive(0, SI_NUM_STATES); + for (int i = 0; i < state->nbo; ++i) { + radeon_add_to_buffer_list(sctx, sctx->gfx_cs, state->bo[i], state->bo_usage[i], + state->bo_priority[i]); + } + + radeon_emit_array(cs, state->pm4, state->ndw); + + if (state->atom.emit) + state->atom.emit(sctx); } -void si_pm4_upload_indirect_buffer(struct si_context *sctx, - struct si_pm4_state *state) +void si_pm4_reset_emitted(struct si_context *sctx) { - struct pipe_screen *screen = sctx->b.screen; - unsigned aligned_ndw = align(state->ndw, 8); - - /* only supported on CIK and later */ - if (sctx->chip_class < CIK) - return; - - assert(state->ndw); - assert(aligned_ndw <= SI_PM4_MAX_DW); - - r600_resource_reference(&state->indirect_buffer, NULL); - /* TODO: this hangs with 1024 or higher alignment on GFX9. */ - state->indirect_buffer = - si_aligned_buffer_create(screen, 0, - PIPE_USAGE_DEFAULT, aligned_ndw * 4, - 256); - if (!state->indirect_buffer) - return; - - /* Pad the IB to 8 DWs to meet CP fetch alignment requirements. */ - if (sctx->screen->info.gfx_ib_pad_with_type2) { - for (int i = state->ndw; i < aligned_ndw; i++) - state->pm4[i] = 0x80000000; /* type2 nop packet */ - } else { - for (int i = state->ndw; i < aligned_ndw; i++) - state->pm4[i] = 0xffff1000; /* type3 nop packet */ - } - - pipe_buffer_write(&sctx->b, &state->indirect_buffer->b.b, - 0, aligned_ndw *4, state->pm4); + memset(&sctx->emitted, 0, sizeof(sctx->emitted)); + sctx->dirty_states |= u_bit_consecutive(0, SI_NUM_STATES); }