diff options
author | Marek Olšák <[email protected]> | 2014-09-20 11:33:06 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2014-09-24 14:48:02 +0200 |
commit | 628f8ee1d9dac7d88f6826242b8fb1f271b98efa (patch) | |
tree | 521db04f8c0e40e81b6866a306005b6755c9d99c /src/gallium | |
parent | dc05a9e4e089d66a2ffe8919857ad9660e108c28 (diff) |
radeonsi/compute: directly emit CONTEXT_CONTROL
Reviewed-by: Alex Deucher <[email protected]>
Reviewed-by: Tom Stellard <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_compute.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeonsi/si_compute.c b/src/gallium/drivers/radeonsi/si_compute.c index 4b2662d27a2..3ad9182d5fe 100644 --- a/src/gallium/drivers/radeonsi/si_compute.c +++ b/src/gallium/drivers/radeonsi/si_compute.c @@ -168,6 +168,7 @@ static void si_launch_grid( uint32_t pc, const void *input) { struct si_context *sctx = (struct si_context*)ctx; + struct radeon_winsys_cs *cs = sctx->b.rings.gfx.cs; struct si_compute *program = sctx->cs_shader_state.program; struct si_pm4_state *pm4 = CALLOC_STRUCT(si_pm4_state); struct r600_resource *input_buffer = program->input_buffer; @@ -184,8 +185,11 @@ static void si_launch_grid( unsigned lds_blocks; unsigned num_waves_for_scratch; + radeon_emit(cs, PKT3(PKT3_CONTEXT_CONTROL, 1, 0) | PKT3_SHADER_TYPE_S(1)); + radeon_emit(cs, 0x80000000); + radeon_emit(cs, 0x80000000); + pm4->compute_pkt = true; - si_cmd_context_control(pm4); si_pm4_cmd_begin(pm4, PKT3_EVENT_WRITE); si_pm4_cmd_add(pm4, EVENT_TYPE(EVENT_TYPE_CACHE_FLUSH) | |