r300g: Remove is_r3xx
[mesa.git] / src / gallium / drivers / nv50 / nv50_context.h
1 #ifndef __NV50_CONTEXT_H__
2 #define __NV50_CONTEXT_H__
3
4 #include "pipe/p_context.h"
5 #include "pipe/p_defines.h"
6 #include "pipe/p_state.h"
7
8 #include "util/u_memory.h"
9 #include "util/u_math.h"
10 #include "util/u_inlines.h"
11 #include "util/u_dynarray.h"
12
13 #include "draw/draw_vertex.h"
14
15 #include "nv50_debug.h"
16 #include "nv50_winsys.h"
17 #include "nv50_stateobj.h"
18 #include "nv50_screen.h"
19 #include "nv50_program.h"
20 #include "nv50_resource.h"
21
22 #include "nouveau/nouveau_context.h"
23 #include "nouveau/nv_object.xml.h"
24 #include "nouveau/nv_m2mf.xml.h"
25 #include "nv50_3ddefs.xml.h"
26 #include "nv50_3d.xml.h"
27 #include "nv50_2d.xml.h"
28
29 #define NV50_NEW_BLEND (1 << 0)
30 #define NV50_NEW_RASTERIZER (1 << 1)
31 #define NV50_NEW_ZSA (1 << 2)
32 #define NV50_NEW_VERTPROG (1 << 3)
33 #define NV50_NEW_GMTYPROG (1 << 6)
34 #define NV50_NEW_FRAGPROG (1 << 7)
35 #define NV50_NEW_BLEND_COLOUR (1 << 8)
36 #define NV50_NEW_STENCIL_REF (1 << 9)
37 #define NV50_NEW_CLIP (1 << 10)
38 #define NV50_NEW_SAMPLE_MASK (1 << 11)
39 #define NV50_NEW_FRAMEBUFFER (1 << 12)
40 #define NV50_NEW_STIPPLE (1 << 13)
41 #define NV50_NEW_SCISSOR (1 << 14)
42 #define NV50_NEW_VIEWPORT (1 << 15)
43 #define NV50_NEW_ARRAYS (1 << 16)
44 #define NV50_NEW_VERTEX (1 << 17)
45 #define NV50_NEW_CONSTBUF (1 << 18)
46 #define NV50_NEW_TEXTURES (1 << 19)
47 #define NV50_NEW_SAMPLERS (1 << 20)
48
49 #define NV50_BUFCTX_CONSTANT 0
50 #define NV50_BUFCTX_FRAME 1
51 #define NV50_BUFCTX_VERTEX 2
52 #define NV50_BUFCTX_TEXTURES 3
53 #define NV50_BUFCTX_COUNT 4
54
55 /* fixed constant buffer binding points - low indices for user's constbufs */
56 #define NV50_CB_PVP 124
57 #define NV50_CB_PGP 126
58 #define NV50_CB_PFP 125
59 #define NV50_CB_AUX 127
60
61 struct nv50_context {
62 struct nouveau_context base;
63
64 struct nv50_screen *screen;
65
66 struct util_dynarray residents[NV50_BUFCTX_COUNT];
67
68 uint32_t dirty;
69
70 struct {
71 uint32_t instance_elts; /* bitmask of per-instance elements */
72 uint32_t instance_base;
73 uint32_t interpolant_ctrl;
74 uint32_t semantic_color;
75 uint32_t semantic_psize;
76 int32_t index_bias;
77 boolean prim_restart;
78 boolean point_sprite;
79 uint8_t num_vtxbufs;
80 uint8_t num_vtxelts;
81 uint8_t num_textures[3];
82 uint8_t num_samplers[3];
83 uint16_t scissor;
84 } state;
85
86 struct nv50_blend_stateobj *blend;
87 struct nv50_rasterizer_stateobj *rast;
88 struct nv50_zsa_stateobj *zsa;
89 struct nv50_vertex_stateobj *vertex;
90
91 struct nv50_program *vertprog;
92 struct nv50_program *gmtyprog;
93 struct nv50_program *fragprog;
94
95 struct pipe_resource *constbuf[3][16];
96 uint16_t constbuf_dirty[3];
97
98 struct pipe_vertex_buffer vtxbuf[PIPE_MAX_ATTRIBS];
99 unsigned num_vtxbufs;
100 struct pipe_index_buffer idxbuf;
101 uint32_t vbo_fifo; /* bitmask of vertex elements to be pushed to FIFO */
102 uint32_t vbo_user; /* bitmask of vertex buffers pointing to user memory */
103 unsigned vbo_min_index; /* from pipe_draw_info, for vertex upload */
104 unsigned vbo_max_index;
105
106 struct pipe_sampler_view *textures[3][PIPE_MAX_SAMPLERS];
107 unsigned num_textures[3];
108 struct nv50_tsc_entry *samplers[3][PIPE_MAX_SAMPLERS];
109 unsigned num_samplers[3];
110
111 struct pipe_framebuffer_state framebuffer;
112 struct pipe_blend_color blend_colour;
113 struct pipe_stencil_ref stencil_ref;
114 struct pipe_poly_stipple stipple;
115 struct pipe_scissor_state scissor;
116 struct pipe_viewport_state viewport;
117 struct pipe_clip_state clip;
118
119 unsigned sample_mask;
120
121 boolean vbo_push_hint;
122
123 struct draw_context *draw;
124 };
125
126 static INLINE struct nv50_context *
127 nv50_context(struct pipe_context *pipe)
128 {
129 return (struct nv50_context *)pipe;
130 }
131
132 struct nv50_surface {
133 struct pipe_surface base;
134 uint32_t offset;
135 uint32_t width;
136 uint16_t height;
137 uint16_t depth;
138 };
139
140 static INLINE struct nv50_surface *
141 nv50_surface(struct pipe_surface *ps)
142 {
143 return (struct nv50_surface *)ps;
144 }
145
146 /* nv50_context.c */
147 struct pipe_context *nv50_create(struct pipe_screen *, void *);
148
149 void nv50_default_flush_notify(struct nouveau_channel *);
150
151 void nv50_bufctx_emit_relocs(struct nv50_context *);
152 void nv50_bufctx_add_resident(struct nv50_context *, int ctx,
153 struct nv04_resource *, uint32_t flags);
154 void nv50_bufctx_del_resident(struct nv50_context *, int ctx,
155 struct nv04_resource *);
156 static INLINE void
157 nv50_bufctx_reset(struct nv50_context *nv50, int ctx)
158 {
159 util_dynarray_resize(&nv50->residents[ctx], 0);
160 }
161
162 /* nv50_draw.c */
163 extern struct draw_stage *nv50_draw_render_stage(struct nv50_context *);
164
165 /* nv50_program.c */
166 boolean nv50_program_translate(struct nv50_program *);
167 void nv50_program_destroy(struct nv50_context *, struct nv50_program *);
168
169 /* nv50_query.c */
170 void nv50_init_query_functions(struct nv50_context *);
171
172 /* nv50_shader_state.c */
173 void nv50_vertprog_validate(struct nv50_context *);
174 void nv50_gmtyprog_validate(struct nv50_context *);
175 void nv50_fragprog_validate(struct nv50_context *);
176 void nv50_fp_linkage_validate(struct nv50_context *);
177 void nv50_gp_linkage_validate(struct nv50_context *);
178 void nv50_constbufs_validate(struct nv50_context *);
179 void nv50_validate_derived_rs(struct nv50_context *);
180
181 /* nv50_state.c */
182 extern void nv50_init_state_functions(struct nv50_context *);
183
184 /* nv50_state_validate.c */
185 extern boolean nv50_state_validate(struct nv50_context *);
186
187 /* nv50_surface.c */
188 extern void nv50_clear(struct pipe_context *, unsigned buffers,
189 const float *rgba, double depth, unsigned stencil);
190 extern void nv50_init_surface_functions(struct nv50_context *);
191
192 /* nv50_tex.c */
193 void nv50_validate_textures(struct nv50_context *);
194 void nv50_validate_samplers(struct nv50_context *);
195
196 struct pipe_sampler_view *
197 nv50_create_sampler_view(struct pipe_context *,
198 struct pipe_resource *,
199 const struct pipe_sampler_view *);
200
201 /* nv50_transfer.c */
202 void
203 nv50_sifc_linear_u8(struct nouveau_context *pipe,
204 struct nouveau_bo *dst, unsigned offset, unsigned domain,
205 unsigned size, void *data);
206 void
207 nv50_m2mf_copy_linear(struct nouveau_context *pipe,
208 struct nouveau_bo *dst, unsigned dstoff, unsigned dstdom,
209 struct nouveau_bo *src, unsigned srcoff, unsigned srcdom,
210 unsigned size);
211
212 /* nv50_vbo.c */
213 void nv50_draw_vbo(struct pipe_context *, const struct pipe_draw_info *);
214
215 void *
216 nv50_vertex_state_create(struct pipe_context *pipe,
217 unsigned num_elements,
218 const struct pipe_vertex_element *elements);
219 void
220 nv50_vertex_state_delete(struct pipe_context *pipe, void *hwcso);
221
222 void nv50_vertex_arrays_validate(struct nv50_context *nv50);
223
224 /* nv50_push.c */
225 void nv50_push_vbo(struct nv50_context *, const struct pipe_draw_info *);
226
227 #endif