radeonsi: move init state to new state handling

Signed-off-by: Christian König <deathsimple@vodafone.de>
This commit is contained in:
Christian König 2012-08-02 14:43:23 +02:00
parent 862df0885a
commit 708337e62e
5 changed files with 6 additions and 22 deletions

View File

@ -38,7 +38,6 @@ int si_context_init(struct r600_context *ctx)
ctx->cs = ctx->ws->cs_create(ctx->ws);
r600_init_cs(ctx);
ctx->max_db = 8;
return 0;
}

View File

@ -128,18 +128,6 @@ static inline void r600_context_ps_partial_flush(struct r600_context *ctx)
ctx->flags &= ~R600_CONTEXT_DRAW_PENDING;
}
void r600_init_cs(struct r600_context *ctx)
{
struct radeon_winsys_cs *cs = ctx->cs;
/* All asics require this one */
cs->buf[cs->cdw++] = PKT3(PKT3_CONTEXT_CONTROL, 1, 0);
cs->buf[cs->cdw++] = 0x80000000;
cs->buf[cs->cdw++] = 0x80000000;
ctx->init_dwords = cs->cdw;
}
/* initialize */
void r600_need_cs_space(struct r600_context *ctx, unsigned num_dw,
boolean count_draw_in)
@ -209,7 +197,7 @@ void r600_context_flush(struct r600_context *ctx, unsigned flags)
bool queries_suspended = false;
bool streamout_suspended = false;
if (cs->cdw == ctx->init_dwords)
if (!cs->cdw)
return;
/* suspend queries */
@ -238,8 +226,6 @@ void r600_context_flush(struct r600_context *ctx, unsigned flags)
ctx->pm4_dirty_cdwords = 0;
ctx->flags = 0;
r600_init_cs(ctx);
if (streamout_suspended) {
ctx->streamout_start = TRUE;
ctx->streamout_append_bitmask = ~0;

View File

@ -35,11 +35,6 @@
#define PKT_COUNT_C 0xC000FFFF
#define PKT_COUNT_S(x) (((x) & 0x3FFF) << 16)
/*
* r600_hw_context.c
*/
void r600_init_cs(struct r600_context *ctx);
/*
* evergreen_hw_context.c
*/

View File

@ -181,7 +181,6 @@ struct r600_context {
struct radeon_winsys_cs *cs;
unsigned pm4_dirty_cdwords;
unsigned init_dwords;
/* The list of active queries. Only one query of each type can be active. */
struct list_head active_query_list;

View File

@ -2354,6 +2354,11 @@ void si_init_config(struct r600_context *rctx)
{
struct si_pm4_state *pm4 = CALLOC_STRUCT(si_pm4_state);
si_pm4_cmd_begin(pm4, PKT3_CONTEXT_CONTROL);
si_pm4_cmd_add(pm4, 0x80000000);
si_pm4_cmd_add(pm4, 0x80000000);
si_pm4_cmd_end(pm4, false);
si_pm4_set_reg(pm4, R_028A4C_PA_SC_MODE_CNTL_1, 0x0);
si_pm4_set_reg(pm4, R_028A10_VGT_OUTPUT_PATH_CNTL, 0x0);