r600g: remove initialization of unused loop register tables

Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
Marek Olšák 2012-09-18 20:10:15 +02:00
parent b71701d43e
commit 669bfaaa1e
2 changed files with 0 additions and 38 deletions

View file

@ -236,20 +236,6 @@ static const struct r600_reg cayman_context_reg_list[] = {
{CM_R_028BE4_PA_SU_VTX_CNTL, 0, 0},
};
static int evergreen_loop_const_init(struct r600_context *ctx, uint32_t offset)
{
unsigned nreg = 32;
struct r600_reg r600_loop_consts[32];
int i;
for (i = 0; i < nreg; i++) {
r600_loop_consts[i].offset = EVERGREEN_LOOP_CONST_OFFSET + ((offset + i) * 4);
r600_loop_consts[i].flags = REG_FLAG_DIRTY_ALWAYS;
r600_loop_consts[i].reserved = 0;
}
return r600_context_add_block(ctx, r600_loop_consts, nreg, PKT3_SET_LOOP_CONST, EVERGREEN_LOOP_CONST_OFFSET);
}
int evergreen_context_init(struct r600_context *ctx)
{
int r = 0;
@ -269,11 +255,6 @@ int evergreen_context_init(struct r600_context *ctx)
if (r)
goto out_err;
/* PS loop const */
evergreen_loop_const_init(ctx, 0);
/* VS loop const */
evergreen_loop_const_init(ctx, 32);
r = r600_setup_block_table(ctx);
if (r)
goto out_err;

View file

@ -350,20 +350,6 @@ static const struct r600_reg r600_context_reg_list[] = {
{R_028854_SQ_PGM_EXPORTS_PS, 0, 0},
};
static int r600_loop_const_init(struct r600_context *ctx, uint32_t offset)
{
unsigned nreg = 32;
struct r600_reg r600_loop_consts[32];
int i;
for (i = 0; i < nreg; i++) {
r600_loop_consts[i].offset = R600_LOOP_CONST_OFFSET + ((offset + i) * 4);
r600_loop_consts[i].flags = REG_FLAG_DIRTY_ALWAYS;
r600_loop_consts[i].reserved = 0;
}
return r600_context_add_block(ctx, r600_loop_consts, nreg, PKT3_SET_LOOP_CONST, R600_LOOP_CONST_OFFSET);
}
/* initialize */
void r600_context_fini(struct r600_context *ctx)
{
@ -438,11 +424,6 @@ int r600_context_init(struct r600_context *ctx)
if (r)
goto out_err;
/* PS loop const */
r600_loop_const_init(ctx, 0);
/* VS loop const */
r600_loop_const_init(ctx, 32);
r = r600_setup_block_table(ctx);
if (r)
goto out_err;