radeonsi: set VGT_LS_HS_CONFIG for tessellation

Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
This commit is contained in:
Marek Olšák 2015-02-22 18:07:51 +01:00
parent 09d02fa463
commit 3344699243
3 changed files with 28 additions and 4 deletions

View File

@ -174,6 +174,7 @@ void si_begin_new_cs(struct si_context *ctx)
ctx->last_gs_out_prim = -1; ctx->last_gs_out_prim = -1;
ctx->last_prim = -1; ctx->last_prim = -1;
ctx->last_multi_vgt_param = -1; ctx->last_multi_vgt_param = -1;
ctx->last_ls_hs_config = -1;
ctx->last_rast_prim = -1; ctx->last_rast_prim = -1;
ctx->last_sc_line_stipple = ~0; ctx->last_sc_line_stipple = ~0;
ctx->emit_scratch_reloc = true; ctx->emit_scratch_reloc = true;

View File

@ -48,7 +48,7 @@
#define SI_MAX_DRAW_CS_DWORDS \ #define SI_MAX_DRAW_CS_DWORDS \
(/*scratch:*/ 3 + /*derived prim state:*/ 3 + \ (/*scratch:*/ 3 + /*derived prim state:*/ 3 + \
/*draw regs:*/ 16 + /*draw packets:*/ 31 +\ /*draw regs:*/ 18 + /*draw packets:*/ 31 +\
/*derived tess state:*/ 19) /*derived tess state:*/ 19)
/* Instruction cache. */ /* Instruction cache. */
@ -234,6 +234,7 @@ struct si_context {
int last_gs_out_prim; int last_gs_out_prim;
int last_prim; int last_prim;
int last_multi_vgt_param; int last_multi_vgt_param;
int last_ls_hs_config;
int last_rast_prim; int last_rast_prim;
unsigned last_sc_line_stipple; unsigned last_sc_line_stipple;
int current_rast_prim; /* primitive type after TES, GS */ int current_rast_prim; /* primitive type after TES, GS */

View File

@ -321,6 +321,24 @@ static unsigned si_get_ia_multi_vgt_param(struct si_context *sctx,
S_028AA8_WD_SWITCH_ON_EOP(sctx->b.chip_class >= CIK ? wd_switch_on_eop : 0); S_028AA8_WD_SWITCH_ON_EOP(sctx->b.chip_class >= CIK ? wd_switch_on_eop : 0);
} }
static unsigned si_get_ls_hs_config(struct si_context *sctx,
const struct pipe_draw_info *info,
unsigned num_patches)
{
unsigned num_output_cp;
if (!sctx->tes_shader)
return 0;
num_output_cp = sctx->tcs_shader ?
sctx->tcs_shader->info.properties[TGSI_PROPERTY_TCS_VERTICES_OUT] :
info->vertices_per_patch;
return S_028B58_NUM_PATCHES(num_patches) |
S_028B58_HS_NUM_INPUT_CP(info->vertices_per_patch) |
S_028B58_HS_NUM_OUTPUT_CP(num_output_cp);
}
static void si_emit_scratch_reloc(struct si_context *sctx) static void si_emit_scratch_reloc(struct si_context *sctx)
{ {
struct radeon_winsys_cs *cs = sctx->b.rings.gfx.cs; struct radeon_winsys_cs *cs = sctx->b.rings.gfx.cs;
@ -374,27 +392,31 @@ static void si_emit_draw_registers(struct si_context *sctx,
struct radeon_winsys_cs *cs = sctx->b.rings.gfx.cs; struct radeon_winsys_cs *cs = sctx->b.rings.gfx.cs;
unsigned prim = si_conv_pipe_prim(info->mode); unsigned prim = si_conv_pipe_prim(info->mode);
unsigned gs_out_prim = si_conv_prim_to_gs_out(sctx->current_rast_prim); unsigned gs_out_prim = si_conv_prim_to_gs_out(sctx->current_rast_prim);
unsigned ia_multi_vgt_param, num_patches = 0; unsigned ia_multi_vgt_param, ls_hs_config, num_patches = 0;
if (sctx->tes_shader) if (sctx->tes_shader)
si_emit_derived_tess_state(sctx, info, &num_patches); si_emit_derived_tess_state(sctx, info, &num_patches);
ia_multi_vgt_param = si_get_ia_multi_vgt_param(sctx, info, num_patches); ia_multi_vgt_param = si_get_ia_multi_vgt_param(sctx, info, num_patches);
ls_hs_config = si_get_ls_hs_config(sctx, info, num_patches);
/* Draw state. */ /* Draw state. */
if (prim != sctx->last_prim || if (prim != sctx->last_prim ||
ia_multi_vgt_param != sctx->last_multi_vgt_param) { ia_multi_vgt_param != sctx->last_multi_vgt_param ||
ls_hs_config != sctx->last_ls_hs_config) {
if (sctx->b.chip_class >= CIK) { if (sctx->b.chip_class >= CIK) {
radeon_emit(cs, PKT3(PKT3_DRAW_PREAMBLE, 2, 0)); radeon_emit(cs, PKT3(PKT3_DRAW_PREAMBLE, 2, 0));
radeon_emit(cs, prim); /* VGT_PRIMITIVE_TYPE */ radeon_emit(cs, prim); /* VGT_PRIMITIVE_TYPE */
radeon_emit(cs, ia_multi_vgt_param); /* IA_MULTI_VGT_PARAM */ radeon_emit(cs, ia_multi_vgt_param); /* IA_MULTI_VGT_PARAM */
radeon_emit(cs, 0); /* VGT_LS_HS_CONFIG */ radeon_emit(cs, ls_hs_config); /* VGT_LS_HS_CONFIG */
} else { } else {
r600_write_config_reg(cs, R_008958_VGT_PRIMITIVE_TYPE, prim); r600_write_config_reg(cs, R_008958_VGT_PRIMITIVE_TYPE, prim);
r600_write_context_reg(cs, R_028AA8_IA_MULTI_VGT_PARAM, ia_multi_vgt_param); r600_write_context_reg(cs, R_028AA8_IA_MULTI_VGT_PARAM, ia_multi_vgt_param);
r600_write_context_reg(cs, R_028B58_VGT_LS_HS_CONFIG, ls_hs_config);
} }
sctx->last_prim = prim; sctx->last_prim = prim;
sctx->last_multi_vgt_param = ia_multi_vgt_param; sctx->last_multi_vgt_param = ia_multi_vgt_param;
sctx->last_ls_hs_config = ls_hs_config;
} }
if (gs_out_prim != sctx->last_gs_out_prim) { if (gs_out_prim != sctx->last_gs_out_prim) {