radeonsi: Don't modify PA_SC_RASTER_CONFIG register value if rb_mask == 0
[mesa.git] / src / gallium / drivers / radeonsi / si_pipe.h
index 227b8fad3d860eaba5f777354beb0d80dbfc3709..9ba4970b3ff0534c4f9e297e11b2b2d308df42ff 100644 (file)
 #define SI_BIG_ENDIAN 0
 #endif
 
+/* The base vertex and primitive restart can be any number, but we must pick
+ * one which will mean "unknown" for the purpose of state tracking and
+ * the number shouldn't be a commonly-used one. */
+#define SI_BASE_VERTEX_UNKNOWN INT_MIN
+#define SI_RESTART_INDEX_UNKNOWN INT_MIN
+
 #define SI_TRACE_CS 0
 #define SI_TRACE_CS_DWORDS             6
 
-#define SI_MAX_DRAW_CS_DWORDS 18
+#define SI_MAX_DRAW_CS_DWORDS \
+       (/*derived prim state:*/ 6 + /*draw regs:*/ 16 + /*draw packets:*/ 31)
 
-struct si_pipe_compute;
+struct si_compute;
 
 struct si_screen {
        struct r600_common_screen       b;
 };
 
-struct si_pipe_sampler_view {
+struct si_sampler_view {
        struct pipe_sampler_view        base;
+       struct list_head                list;
        struct r600_resource            *resource;
        uint32_t                        state[8];
        uint32_t                        fmask_state[8];
 };
 
-struct si_pipe_sampler_state {
+struct si_sampler_state {
        uint32_t                        val[4];
        uint32_t                        border_color[4];
 };
 
 struct si_cs_shader_state {
-       struct si_pipe_compute          *program;
+       struct si_compute               *program;
 };
 
 struct si_textures_info {
@@ -85,10 +93,7 @@ struct si_framebuffer {
 struct si_context {
        struct r600_common_context      b;
        struct blitter_context          *blitter;
-       void                            *custom_dsa_flush_depth_stencil[8];
-       void                            *custom_dsa_flush_depth[8];
-       void                            *custom_dsa_flush_stencil[8];
-       void                            *custom_dsa_flush_inplace;
+       void                            *custom_dsa_flush;
        void                            *custom_blend_resolve;
        void                            *custom_blend_decompress;
        void                            *custom_blend_fastclear;
@@ -108,7 +113,9 @@ struct si_context {
                        struct r600_atom *streamout_begin;
                        struct r600_atom *streamout_enable; /* must be after streamout_begin */
                        struct r600_atom *framebuffer;
+                       struct r600_atom *db_render_state;
                        struct r600_atom *msaa_config;
+                       struct r600_atom *clip_regs;
                } s;
                struct r600_atom *array[0];
        } atoms;
@@ -119,9 +126,10 @@ struct si_context {
        unsigned                        pa_su_sc_mode_cntl;
        /* for saving when using blitter */
        struct pipe_stencil_ref         stencil_ref;
-       struct si_pipe_shader_selector  *ps_shader;
-       struct si_pipe_shader_selector  *gs_shader;
-       struct si_pipe_shader_selector  *vs_shader;
+       /* shaders */
+       struct si_shader_selector       *ps_shader;
+       struct si_shader_selector       *gs_shader;
+       struct si_shader_selector       *vs_shader;
        struct si_cs_shader_state       cs_shader_state;
        /* shader information */
        unsigned                        sprite_coord_enable;
@@ -132,20 +140,16 @@ struct si_context {
        struct r600_resource            *border_color_table;
        unsigned                        border_color_offset;
 
+       struct r600_atom                clip_regs;
        struct r600_atom                msaa_config;
        int                             ps_iter_samples;
 
        unsigned default_ps_gprs, default_vs_gprs;
 
-       /* Below are variables from the old r600_context.
-        */
-       unsigned                pm4_dirty_cdwords;
-
        /* Vertex and index buffers. */
        bool                    vertex_buffers_dirty;
        struct pipe_index_buffer index_buffer;
-       struct pipe_vertex_buffer vertex_buffer[PIPE_MAX_ATTRIBS];
-       unsigned                nr_vertex_buffers;
+       struct pipe_vertex_buffer vertex_buffer[SI_NUM_VERTEX_BUFFERS];
 
        /* With rasterizer discard, there doesn't have to be a pixel shader.
         * In that case, we bind this one: */
@@ -155,12 +159,33 @@ struct si_context {
        struct si_pm4_state     *gs_rings;
        struct r600_atom        cache_flush;
        struct pipe_constant_buffer null_const_buf; /* used for set_constant_buffer(NULL) on CIK */
-       struct pipe_constant_buffer esgs_ring;
-       struct pipe_constant_buffer gsvs_ring;
+       struct pipe_resource    *esgs_ring;
+       struct pipe_resource    *gsvs_ring;
 
        /* SI state handling */
        union si_state  queued;
        union si_state  emitted;
+
+       /* DB render state. */
+       struct r600_atom        db_render_state;
+       bool                    dbcb_depth_copy_enabled;
+       bool                    dbcb_stencil_copy_enabled;
+       unsigned                dbcb_copy_sample;
+       bool                    db_inplace_flush_enabled;
+       bool                    db_depth_clear;
+       bool                    db_depth_disable_expclear;
+       unsigned                ps_db_shader_control;
+
+       /* Draw state. */
+       int                     last_base_vertex;
+       int                     last_start_instance;
+       int                     last_sh_base_reg;
+       int                     last_primitive_restart_en;
+       int                     last_restart_index;
+       int                     last_gs_out_prim;
+       int                     last_prim;
+       int                     last_multi_vgt_param;
+       int                     last_rast_prim;
 };
 
 /* si_blit.c */
@@ -169,6 +194,13 @@ void si_flush_depth_textures(struct si_context *sctx,
                             struct si_textures_info *textures);
 void si_decompress_color_textures(struct si_context *sctx,
                                  struct si_textures_info *textures);
+void si_resource_copy_region(struct pipe_context *ctx,
+                            struct pipe_resource *dst,
+                            unsigned dst_level,
+                            unsigned dstx, unsigned dsty, unsigned dstz,
+                            struct pipe_resource *src,
+                            unsigned src_level,
+                            const struct pipe_box *src_box);
 
 /* si_dma.c */
 void si_dma_copy(struct pipe_context *ctx,
@@ -212,4 +244,12 @@ si_resource_create_custom(struct pipe_screen *screen,
                PIPE_BIND_CUSTOM, usage, size));
 }
 
+static INLINE void
+si_invalidate_draw_sh_constants(struct si_context *sctx)
+{
+       sctx->last_base_vertex = SI_BASE_VERTEX_UNKNOWN;
+       sctx->last_start_instance = -1; /* reset to an unknown value */
+       sctx->last_sh_base_reg = -1; /* reset to an unknown value */
+}
+
 #endif