radeonsi: don't emit PKT3_CONTEXT_CONTROL on amdgpu

Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
This commit is contained in:
Marek Olšák 2019-08-06 19:52:24 -04:00
parent 8d0d753bd0
commit 5a2e65be89

View file

@ -5403,10 +5403,13 @@ static void si_init_config(struct si_context *sctx)
if (!pm4)
return;
si_pm4_cmd_begin(pm4, PKT3_CONTEXT_CONTROL);
si_pm4_cmd_add(pm4, CONTEXT_CONTROL_LOAD_ENABLE(1));
si_pm4_cmd_add(pm4, CONTEXT_CONTROL_SHADOW_ENABLE(1));
si_pm4_cmd_end(pm4, false);
/* Since amdgpu version 3.6.0, CONTEXT_CONTROL is emitted by the kernel */
if (!sscreen->info.is_amdgpu || sscreen->info.drm_minor < 6) {
si_pm4_cmd_begin(pm4, PKT3_CONTEXT_CONTROL);
si_pm4_cmd_add(pm4, CONTEXT_CONTROL_LOAD_ENABLE(1));
si_pm4_cmd_add(pm4, CONTEXT_CONTROL_SHADOW_ENABLE(1));
si_pm4_cmd_end(pm4, false);
}
if (has_clear_state) {
si_pm4_cmd_begin(pm4, PKT3_CLEAR_STATE);