draw: corrections to allow for different cliptest cases
[mesa.git] / src / gallium / drivers / r600 / r600_context.h
index afe544819c8d51848475017399a0c604ed3de86b..d104531d365688d2f8e31515a855d2f24d0489ba 100644 (file)
 #ifndef R600_CONTEXT_H
 #define R600_CONTEXT_H
 
+#include <stdio.h>
 #include <pipe/p_state.h>
 #include <pipe/p_context.h>
 #include <tgsi/tgsi_scan.h>
 #include <tgsi/tgsi_parse.h>
 #include <tgsi/tgsi_util.h>
 #include <util/u_blitter.h>
+#include <util/u_double_list.h>
 #include "radeon.h"
 #include "r600_shader.h"
 
-struct r600_state;
-typedef void (*r600_state_destroy_t)(struct r600_state *rstate);
-
-struct r600_state {
-       unsigned                type;
-       struct r600_atom        *atom;
-       void                    *state;
-       unsigned                nbuffers;
-       struct pipe_buffer      *buffer[256];
-       unsigned                nsurfaces;
-       struct pipe_surface     *surface[256];
-       r600_state_destroy_t    destroy;
-};
+struct u_upload_mgr;
+
+#define R600_QUERY_STATE_STARTED       (1 << 0)
+#define R600_QUERY_STATE_ENDED         (1 << 1)
+#define R600_QUERY_STATE_SUSPENDED     (1 << 2)
 
-struct r600_pipe_shader {
+struct r600_query {
+       u64                                     result;
+       /* The kind of query. Currently only OQ is supported. */
        unsigned                                type;
-       struct r600_shader                      shader;
-       struct radeon_bo                        *bo;
-       struct radeon_state                     *state;
+       /* How many results have been written, in dwords. It's incremented
+        * after end_query and flush. */
+       unsigned                                num_results;
+       /* if we've flushed the query */
+       boolean                                 flushed;
+       unsigned                                state;
+       /* The buffer where query results are stored. */
+       struct radeon_ws_bo                     *buffer;
+       unsigned                                buffer_size;
+       /* linked list of queries */
+       struct list_head                        list;
+       struct radeon_state                     rstate;
+};
+
+/* XXX move this to a more appropriate place */
+union pipe_states {
+       struct pipe_rasterizer_state            rasterizer;
+       struct pipe_poly_stipple                poly_stipple;
+       struct pipe_scissor_state               scissor;
+       struct pipe_clip_state                  clip;
+       struct pipe_shader_state                shader;
+       struct pipe_depth_state                 depth;
+       struct pipe_stencil_state               stencil;
+       struct pipe_alpha_state                 alpha;
+       struct pipe_depth_stencil_alpha_state   dsa;
+       struct pipe_blend_state                 blend;
+       struct pipe_blend_color                 blend_color;
+       struct pipe_stencil_ref                 stencil_ref;
+       struct pipe_framebuffer_state           framebuffer;
+       struct pipe_sampler_state               sampler;
+       struct pipe_sampler_view                sampler_view;
+       struct pipe_viewport_state              viewport;
+};
+
+enum pipe_state_type {
+       pipe_rasterizer_type = 1,
+       pipe_poly_stipple_type,
+       pipe_scissor_type,
+       pipe_clip_type,
+       pipe_shader_type,
+       pipe_depth_type,
+       pipe_stencil_type,
+       pipe_alpha_type,
+       pipe_dsa_type,
+       pipe_blend_type,
+       pipe_stencil_ref_type,
+       pipe_framebuffer_type,
+       pipe_sampler_type,
+       pipe_sampler_view_type,
+       pipe_viewport_type,
+       pipe_type_count
+};
+
+#define R600_MAX_RSTATE                16
+#define R600_STATE_FLAG_DSA_FLUSH 1
+
+struct r600_context_state {
+       union pipe_states               state;
+       unsigned                        refcount;
+       unsigned                        type;
+       struct radeon_state             rstate[R600_MAX_RSTATE];
+       struct r600_shader              shader;
+       struct radeon_ws_bo             *bo;
+       unsigned                        nrstate;
+       unsigned                        flags;
+};
+
+struct r600_vertex_element
+{
+       unsigned                        refcount;
+       unsigned                        count;
+       struct pipe_vertex_element      elements[32];
+};
+
+struct r600_draw {
+       struct pipe_context     *ctx;
+       struct radeon_state     draw;
+       struct radeon_state     vgt;
+       unsigned                mode;
+       unsigned                start;
+       unsigned                count;
+       unsigned                index_size;
+       struct pipe_resource    *index_buffer;
+       unsigned                index_buffer_offset;
+       unsigned                min_index, max_index;
+       unsigned                index_bias;
+};
+
+struct r600_context_hw_states {
+       struct radeon_state     rasterizer;
+       struct radeon_state     scissor;
+       struct radeon_state     dsa;
+       struct radeon_state     cb_cntl;
+
+       struct radeon_state     db_flush;
+       struct radeon_state     cb_flush;
+};
+
+#define R600_MAX_CONSTANT 256 /* magic */
+#define R600_MAX_RESOURCE 160 /* magic */
+
+struct r600_shader_sampler_states {
+       unsigned                        nsampler;
+       unsigned                        nview;
+       unsigned                        nborder;
+       struct radeon_state             *sampler[PIPE_MAX_ATTRIBS];
+       struct radeon_state             *view[PIPE_MAX_ATTRIBS];
+       struct radeon_state             *border[PIPE_MAX_ATTRIBS];
 };
 
+struct r600_context;
+struct r600_screen;
+struct r600_resource;
+struct r600_resource_texture;
+
+struct r600_context_hw_state_vtbl {
+       void (*blend)(struct r600_context *rctx,
+                     struct radeon_state *rstate,
+                     const struct pipe_blend_state *state);
+       void (*ucp)(struct r600_context *rctx, struct radeon_state *rstate,
+                   const struct pipe_clip_state *state);
+       void (*cb)(struct r600_context *rctx, struct radeon_state *rstate,
+                  const struct pipe_framebuffer_state *state, int cb);
+       void (*db)(struct r600_context *rctx, struct radeon_state *rstate,
+                  const struct pipe_framebuffer_state *state);
+       void (*rasterizer)(struct r600_context *rctx, struct radeon_state *rstate);
+       void (*scissor)(struct r600_context *rctx, struct radeon_state *rstate);
+       void (*viewport)(struct r600_context *rctx, struct radeon_state *rstate, const struct pipe_viewport_state *state);
+       void (*dsa)(struct r600_context *rctx, struct radeon_state *rstate);
+       void (*sampler_border)(struct r600_context *rctx, struct radeon_state *rstate,
+                              const struct pipe_sampler_state *state, unsigned id);
+       void (*sampler)(struct r600_context *rctx, struct radeon_state *rstate,
+                       const struct pipe_sampler_state *state, unsigned id);
+       void (*resource)(struct pipe_context *ctx, struct radeon_state *rstate,
+                        const struct pipe_sampler_view *view, unsigned id);
+       void (*cb_cntl)(struct r600_context *rctx, struct radeon_state *rstate);
+       int (*vs_resource)(struct r600_context *rctx, int id, struct r600_resource *rbuffer, uint32_t offset,
+                          uint32_t stride, uint32_t format);
+       int (*vgt_init)(struct r600_draw *draw,
+                       int vgt_draw_initiator);
+       int (*vgt_prim)(struct r600_draw *draw,
+                       uint32_t prim, uint32_t vgt_dma_index_type);
+
+       int (*ps_shader)(struct r600_context *rctx, struct r600_context_state *rshader,
+                        struct radeon_state *state);
+       int (*vs_shader)(struct r600_context *rctx, struct r600_context_state *rpshader,
+                        struct radeon_state *state);
+       void (*init_config)(struct r600_context *rctx);
+};
+extern struct r600_context_hw_state_vtbl r600_hw_state_vtbl;
+extern struct r600_context_hw_state_vtbl eg_hw_state_vtbl;
+
 struct r600_context {
        struct pipe_context             context;
+       struct blitter_context          *blitter;
+       struct pipe_framebuffer_state   *pframebuffer;
+       unsigned                        family;
+       void                            *custom_dsa_flush;
+       struct list_head                query_list;
+       struct r600_screen              *screen;
+       struct radeon                   *rw;
        struct radeon_ctx               *ctx;
-       struct radeon_state             *cb_cntl;
-       struct radeon_state             *db;
-       struct radeon_state             *config;
-       struct r600_pipe_shader         *ps_shader;
-       struct r600_pipe_shader         *vs_shader;
+       struct radeon_draw              draw;
+       struct r600_context_hw_state_vtbl *vtbl;
+       struct radeon_state             config;
+       boolean use_mem_constant;
+       /* FIXME get rid of those vs_resource,vs/ps_constant */
+       struct radeon_state             *vs_resource;
+       unsigned                        vs_nresource;
+       struct radeon_state             *vs_constant;
+       struct radeon_state             *ps_constant;
+       /* hw states */
+       struct r600_context_hw_states   hw_states;
+       /* pipe states */
        unsigned                        flat_shade;
+
        unsigned                        nvertex_buffer;
-       unsigned                        nvertex_element;
+       struct r600_context_state       *rasterizer;
+       struct r600_context_state       *poly_stipple;
+       struct r600_context_state       *scissor;
+       struct r600_context_state       *clip;
+       struct r600_context_state       *ps_shader;
+       struct r600_context_state       *vs_shader;
+       struct r600_context_state       *depth;
+       struct r600_context_state       *stencil;
+       struct r600_context_state       *alpha;
+       struct r600_context_state       *dsa;
+       struct r600_context_state       *blend;
+       struct r600_context_state       *stencil_ref;
+       struct r600_context_state       *viewport;
+       struct r600_context_state       *framebuffer;
+       struct r600_shader_sampler_states vs_sampler;
+       struct r600_shader_sampler_states ps_sampler;
+       /* can add gs later */
+       struct r600_vertex_element      *vertex_elements;
        struct pipe_vertex_buffer       vertex_buffer[PIPE_MAX_ATTRIBS];
-       struct pipe_vertex_element      vertex_element[PIPE_MAX_ATTRIBS];
-       struct blitter_context          *blitter;
-       struct pipe_stencil_ref         stencil_ref;
-       struct pipe_framebuffer_state   fb_state;
-       struct radeon_draw              *draw;
+       struct pipe_index_buffer        index_buffer;
+       struct pipe_blend_color         blend_color;
+
+       /* upload managers */
+       struct u_upload_mgr *upload_vb;
+       struct u_upload_mgr *upload_ib;
+       bool any_user_vbs;
 };
 
-void r600_draw_arrays(struct pipe_context *ctx, unsigned mode,
-                       unsigned start, unsigned count);
-void r600_draw_elements(struct pipe_context *ctx,
-               struct pipe_buffer *index_buffer,
-               unsigned index_size, unsigned index_bias, unsigned mode,
-               unsigned start, unsigned count);
-void r600_draw_range_elements(struct pipe_context *ctx,
-               struct pipe_buffer *index_buffer,
-               unsigned index_size, unsigned index_bias, unsigned min_index,
-               unsigned max_index, unsigned mode,
-               unsigned start, unsigned count);
-
-void r600_state_destroy_common(struct r600_state *state);
-struct r600_state *r600_state_new(r600_state_destroy_t destroy);
-struct r600_state *r600_state_destroy(struct r600_state *state);
+/* Convenience cast wrapper. */
+static INLINE struct r600_context *r600_context(struct pipe_context *pipe)
+{
+    return (struct r600_context*)pipe;
+}
+
+static INLINE struct r600_query* r600_query(struct pipe_query* q)
+{
+    return (struct r600_query*)q;
+}
 
+struct r600_context_state *r600_context_state_incref(struct r600_context_state *rstate);
+struct r600_context_state *r600_context_state_decref(struct r600_context_state *rstate);
+void r600_flush(struct pipe_context *ctx, unsigned flags,
+                       struct pipe_fence_handle **fence);
+
+int r600_context_hw_states(struct pipe_context *ctx);
+
+void r600_draw_vbo(struct pipe_context *ctx,
+                   const struct pipe_draw_info *info);
+
+void r600_init_blit_functions(struct r600_context *rctx);
 void r600_init_state_functions(struct r600_context *rctx);
 void r600_init_query_functions(struct r600_context* rctx);
 struct pipe_context *r600_create_context(struct pipe_screen *screen, void *priv);
 
-void r600_pipe_shader_destroy(struct pipe_context *ctx, struct r600_pipe_shader *rpshader);
-struct r600_pipe_shader *r600_pipe_shader_create(struct pipe_context *ctx,
-                                               unsigned type,
-                                               const struct tgsi_token *tokens);
-int r600_pipe_shader_update(struct pipe_context *ctx, struct r600_pipe_shader *rpshader);
+extern int r600_pipe_shader_create(struct pipe_context *ctx,
+                       struct r600_context_state *rstate,
+                       const struct tgsi_token *tokens);
+extern int r600_pipe_shader_update(struct pipe_context *ctx,
+                               struct r600_context_state *rstate);
+extern int r600_find_vs_semantic_index(struct r600_context *rctx, struct r600_shader *rshader, int id);
+
+#define R600_ERR(fmt, args...) \
+       fprintf(stderr, "EE %s/%s:%d - "fmt, __FILE__, __func__, __LINE__, ##args)
+
+uint32_t r600_translate_texformat(enum pipe_format format,
+                                 const unsigned char *swizzle_view, 
+                                 uint32_t *word4_p, uint32_t *yuv_format_p);
+
+/* query */
+extern void r600_queries_resume(struct pipe_context *ctx);
+extern void r600_queries_suspend(struct pipe_context *ctx);
+
+int eg_bc_cf_build(struct r600_bc *bc, struct r600_bc_cf *cf);
+
+void r600_set_constant_buffer_file(struct pipe_context *ctx,
+                                  uint shader, uint index,
+                                  struct pipe_resource *buffer);
+void r600_set_constant_buffer_mem(struct pipe_context *ctx,
+                                 uint shader, uint index,
+                                 struct pipe_resource *buffer);
+void eg_set_constant_buffer(struct pipe_context *ctx,
+                           uint shader, uint index,
+                           struct pipe_resource *buffer);
+
+int r600_upload_index_buffer(struct r600_context *rctx,
+                             struct r600_draw *draw);
+int r600_upload_user_buffers(struct r600_context *rctx);
 
 #endif