Home
last modified time | relevance | path

Searched refs:si_pm4_set_reg (Results 1 – 4 of 4) sorted by relevance

/external/mesa3d/src/gallium/drivers/radeonsi/
Dsi_state.c55 si_pm4_set_reg(pm4, R_028238_CB_TARGET_MASK, mask); in si_update_fb_blend_state()
151 si_pm4_set_reg(pm4, R_028808_CB_COLOR_CONTROL, color_control); in si_create_blend_state()
153 si_pm4_set_reg(pm4, R_028C38_PA_SC_AA_MASK_X0Y0_X1Y0, ~0); in si_create_blend_state()
154 si_pm4_set_reg(pm4, R_028C3C_PA_SC_AA_MASK_X0Y1_X1Y1, ~0); in si_create_blend_state()
174 si_pm4_set_reg(pm4, R_028780_CB_BLEND0_CONTROL + i * 4, blend_cntl); in si_create_blend_state()
189 si_pm4_set_reg(pm4, R_028780_CB_BLEND0_CONTROL + i * 4, blend_cntl); in si_create_blend_state()
217 si_pm4_set_reg(pm4, R_028414_CB_BLEND_RED, fui(state->color[0])); in si_set_blend_color()
218 si_pm4_set_reg(pm4, R_028418_CB_BLEND_GREEN, fui(state->color[1])); in si_set_blend_color()
219 si_pm4_set_reg(pm4, R_02841C_CB_BLEND_BLUE, fui(state->color[2])); in si_set_blend_color()
220 si_pm4_set_reg(pm4, R_028420_CB_BLEND_ALPHA, fui(state->color[3])); in si_set_blend_color()
[all …]
Dsi_state_draw.c67 si_pm4_set_reg(pm4, R_0286C4_SPI_VS_OUT_CONFIG, in si_pipe_shader_vs()
70 si_pm4_set_reg(pm4, R_02870C_SPI_SHADER_POS_FORMAT, in si_pipe_shader_vs()
78 si_pm4_set_reg(pm4, R_00B120_SPI_SHADER_PGM_LO_VS, va >> 8); in si_pipe_shader_vs()
79 si_pm4_set_reg(pm4, R_00B124_SPI_SHADER_PGM_HI_VS, va >> 40); in si_pipe_shader_vs()
89 si_pm4_set_reg(pm4, R_00B128_SPI_SHADER_PGM_RSRC1_VS, in si_pipe_shader_vs()
92 si_pm4_set_reg(pm4, R_00B12C_SPI_SHADER_PGM_RSRC2_VS, in si_pipe_shader_vs()
170 si_pm4_set_reg(pm4, R_0286E0_SPI_BARYC_CNTL, spi_baryc_cntl); in si_pipe_shader_ps()
183 si_pm4_set_reg(pm4, R_0286CC_SPI_PS_INPUT_ENA, spi_ps_input_ena); in si_pipe_shader_ps()
184 si_pm4_set_reg(pm4, R_0286D0_SPI_PS_INPUT_ADDR, spi_ps_input_ena); in si_pipe_shader_ps()
185 si_pm4_set_reg(pm4, R_0286D8_SPI_PS_IN_CONTROL, spi_ps_in_control); in si_pipe_shader_ps()
[all …]
Dradeonsi_pm4.h67 void si_pm4_set_reg(struct si_pm4_state *state, unsigned reg, uint32_t val);
Dradeonsi_pm4.c56 void si_pm4_set_reg(struct si_pm4_state *state, unsigned reg, uint32_t val) in si_pm4_set_reg() function