0fae19dfd78db5076802003f815226b8acf6a622
[mesa.git] / src / gallium / drivers / r300 / r300_context.c
1 /*
2 * Copyright 2008 Corbin Simpson <MostAwesomeDude@gmail.com>
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * on the rights to use, copy, modify, merge, publish, distribute, sub
8 * license, and/or sell copies of the Software, and to permit persons to whom
9 * the Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21 * USE OR OTHER DEALINGS IN THE SOFTWARE. */
22
23 #include "draw/draw_context.h"
24
25 #include "util/u_memory.h"
26 #include "util/u_simple_list.h"
27 #include "util/u_upload_mgr.h"
28
29 #include "r300_cb.h"
30 #include "r300_context.h"
31 #include "r300_emit.h"
32 #include "r300_screen.h"
33 #include "r300_screen_buffer.h"
34 #include "r300_state_invariant.h"
35 #include "r300_winsys.h"
36
37 #include <inttypes.h>
38
39 static void r300_destroy_context(struct pipe_context* context)
40 {
41 struct r300_context* r300 = r300_context(context);
42 struct r300_query *query, *temp;
43 struct r300_atom *atom;
44
45 util_blitter_destroy(r300->blitter);
46 draw_destroy(r300->draw);
47
48 /* Print stats, if enabled. */
49 if (SCREEN_DBG_ON(r300->screen, DBG_STATS)) {
50 fprintf(stderr, "r300: Stats for context %p:\n", r300);
51 fprintf(stderr, " : Flushes: %" PRIu64 "\n", r300->flush_counter);
52 foreach(atom, &r300->atom_list) {
53 fprintf(stderr, " : %s: %" PRIu64 " emits\n",
54 atom->name, atom->counter);
55 }
56 }
57
58 /* If there are any queries pending or not destroyed, remove them now. */
59 foreach_s(query, temp, &r300->query_list) {
60 remove_from_list(query);
61 FREE(query);
62 }
63
64 u_upload_destroy(r300->upload_vb);
65 u_upload_destroy(r300->upload_ib);
66
67 translate_cache_destroy(r300->tran.translate_cache);
68
69 FREE(r300->blend_color_state.state);
70 FREE(r300->clip_state.state);
71 FREE(r300->fb_state.state);
72 FREE(r300->rs_block_state.state);
73 FREE(r300->scissor_state.state);
74 FREE(r300->textures_state.state);
75 FREE(r300->viewport_state.state);
76 FREE(r300->ztop_state.state);
77 FREE(r300->fs_constants.state);
78 FREE(r300->vs_constants.state);
79 if (!r300->screen->caps.has_tcl) {
80 FREE(r300->vertex_stream_state.state);
81 }
82 FREE(r300);
83 }
84
85 static void r300_flush_cb(void *data)
86 {
87 struct r300_context* const cs_context_copy = data;
88
89 cs_context_copy->context.flush(&cs_context_copy->context, 0, NULL);
90 }
91
92 #define R300_INIT_ATOM(atomname, atomsize) \
93 r300->atomname.name = #atomname; \
94 r300->atomname.state = NULL; \
95 r300->atomname.size = atomsize; \
96 r300->atomname.emit = r300_emit_##atomname; \
97 r300->atomname.dirty = FALSE; \
98 insert_at_tail(&r300->atom_list, &r300->atomname);
99
100 static void r300_setup_atoms(struct r300_context* r300)
101 {
102 boolean is_r500 = r300->screen->caps.is_r500;
103 boolean has_tcl = r300->screen->caps.has_tcl;
104
105 /* Create the actual atom list.
106 *
107 * Each atom is examined and emitted in the order it appears here, which
108 * can affect performance and conformance if not handled with care.
109 *
110 * Some atoms never change size, others change every emit - those have
111 * the size of 0 here. */
112 make_empty_list(&r300->atom_list);
113 R300_INIT_ATOM(invariant_state, 71);
114 R300_INIT_ATOM(ztop_state, 2);
115 R300_INIT_ATOM(query_start, 4);
116 R300_INIT_ATOM(blend_state, 8);
117 R300_INIT_ATOM(blend_color_state, is_r500 ? 3 : 2);
118 R300_INIT_ATOM(clip_state, has_tcl ? 5 + (6 * 4) : 2);
119 R300_INIT_ATOM(dsa_state, is_r500 ? 8 : 6);
120 R300_INIT_ATOM(fb_state, 0);
121 R300_INIT_ATOM(rs_state, 0);
122 R300_INIT_ATOM(scissor_state, 3);
123 R300_INIT_ATOM(viewport_state, 9);
124 R300_INIT_ATOM(rs_block_state, 0);
125 R300_INIT_ATOM(vertex_stream_state, 0);
126 R300_INIT_ATOM(pvs_flush, 2);
127 R300_INIT_ATOM(vs_state, 0);
128 R300_INIT_ATOM(vs_constants, 0);
129 R300_INIT_ATOM(texture_cache_inval, 2);
130 R300_INIT_ATOM(textures_state, 0);
131 R300_INIT_ATOM(fs, 0);
132 R300_INIT_ATOM(fs_rc_constant_state, 0);
133 R300_INIT_ATOM(fs_constants, 0);
134
135 /* Replace emission functions for r500. */
136 if (r300->screen->caps.is_r500) {
137 r300->fs.emit = r500_emit_fs;
138 r300->fs_rc_constant_state.emit = r500_emit_fs_rc_constant_state;
139 r300->fs_constants.emit = r500_emit_fs_constants;
140 }
141
142 /* Some non-CSO atoms need explicit space to store the state locally. */
143 r300->blend_color_state.state = CALLOC_STRUCT(r300_blend_color_state);
144 r300->clip_state.state = CALLOC_STRUCT(r300_clip_state);
145 r300->fb_state.state = CALLOC_STRUCT(pipe_framebuffer_state);
146 r300->rs_block_state.state = CALLOC_STRUCT(r300_rs_block);
147 r300->scissor_state.state = CALLOC_STRUCT(pipe_scissor_state);
148 r300->textures_state.state = CALLOC_STRUCT(r300_textures_state);
149 r300->viewport_state.state = CALLOC_STRUCT(r300_viewport_state);
150 r300->ztop_state.state = CALLOC_STRUCT(r300_ztop_state);
151 r300->fs_constants.state = CALLOC_STRUCT(r300_constant_buffer);
152 r300->vs_constants.state = CALLOC_STRUCT(r300_constant_buffer);
153 if (!r300->screen->caps.has_tcl) {
154 r300->vertex_stream_state.state = CALLOC_STRUCT(r300_vertex_stream_state);
155 }
156
157 /* Some non-CSO atoms don't use the state pointer. */
158 r300->invariant_state.allow_null_state = TRUE;
159 r300->fs_rc_constant_state.allow_null_state = TRUE;
160 r300->pvs_flush.allow_null_state = TRUE;
161 r300->query_start.allow_null_state = TRUE;
162 r300->texture_cache_inval.allow_null_state = TRUE;
163 }
164
165 /* Not every state tracker calls every driver function before the first draw
166 * call and we must initialize the command buffers somehow. */
167 static void r300_init_states(struct pipe_context *pipe)
168 {
169 struct pipe_blend_color bc = {{0}};
170 struct pipe_clip_state cs = {{{0}}};
171 struct pipe_scissor_state ss = {0};
172 struct r300_clip_state *clip =
173 (struct r300_clip_state*)r300_context(pipe)->clip_state.state;
174 CB_LOCALS;
175
176 pipe->set_blend_color(pipe, &bc);
177 pipe->set_scissor_state(pipe, &ss);
178
179 if (r300_context(pipe)->screen->caps.has_tcl) {
180 pipe->set_clip_state(pipe, &cs);
181 } else {
182 BEGIN_CB(clip->cb, 2);
183 OUT_CB_REG(R300_VAP_CLIP_CNTL, R300_CLIP_DISABLE);
184 END_CB;
185 }
186 }
187
188 struct pipe_context* r300_create_context(struct pipe_screen* screen,
189 void *priv)
190 {
191 struct r300_context* r300 = CALLOC_STRUCT(r300_context);
192 struct r300_screen* r300screen = r300_screen(screen);
193 struct r300_winsys_screen *rws = r300screen->rws;
194
195 if (!r300)
196 return NULL;
197
198 r300->rws = rws;
199 r300->screen = r300screen;
200
201 r300->context.winsys = (struct pipe_winsys*)rws;
202 r300->context.screen = screen;
203 r300->context.priv = priv;
204
205 r300->context.destroy = r300_destroy_context;
206
207 if (!r300screen->caps.has_tcl) {
208 /* Create a Draw. This is used for SW TCL. */
209 r300->draw = draw_create(&r300->context);
210 /* Enable our renderer. */
211 draw_set_rasterize_stage(r300->draw, r300_draw_stage(r300));
212 /* Enable Draw's clipping. */
213 draw_set_driver_clipping(r300->draw, FALSE);
214 /* Disable converting points/lines to triangles. */
215 draw_wide_line_threshold(r300->draw, 10000000.f);
216 draw_wide_point_threshold(r300->draw, 10000000.f);
217 }
218
219 r300_setup_atoms(r300);
220
221 make_empty_list(&r300->query_list);
222
223 r300_init_blit_functions(r300);
224 r300_init_flush_functions(r300);
225 r300_init_query_functions(r300);
226 r300_init_render_functions(r300);
227 r300_init_state_functions(r300);
228 r300_init_resource_functions(r300);
229
230 r300->invariant_state.dirty = TRUE;
231
232 rws->set_flush_cb(r300->rws, r300_flush_cb, r300);
233 r300->dirty_hw++;
234
235 r300->blitter = util_blitter_create(&r300->context);
236
237 r300->upload_ib = u_upload_create(&r300->context,
238 32 * 1024, 16,
239 PIPE_BIND_INDEX_BUFFER);
240
241 if (r300->upload_ib == NULL)
242 goto no_upload_ib;
243
244 r300->upload_vb = u_upload_create(&r300->context,
245 128 * 1024, 16,
246 PIPE_BIND_VERTEX_BUFFER);
247 if (r300->upload_vb == NULL)
248 goto no_upload_vb;
249
250 r300->tran.translate_cache = translate_cache_create();
251
252 r300_init_states(&r300->context);
253
254 return &r300->context;
255
256 no_upload_ib:
257 u_upload_destroy(r300->upload_ib);
258 no_upload_vb:
259 FREE(r300);
260 return NULL;
261 }
262
263 boolean r300_check_cs(struct r300_context *r300, unsigned size)
264 {
265 return size <= r300->rws->get_cs_free_dwords(r300->rws);
266 }
267
268 void r300_finish(struct r300_context *r300)
269 {
270 struct pipe_framebuffer_state *fb;
271 unsigned i;
272
273 /* This is a preliminary implementation of glFinish.
274 *
275 * The ideal implementation should use something like EmitIrqLocked and
276 * WaitIrq, or better, real fences.
277 */
278 if (r300->fb_state.state) {
279 fb = r300->fb_state.state;
280
281 for (i = 0; i < fb->nr_cbufs; i++) {
282 if (fb->cbufs[i]->texture) {
283 r300->rws->buffer_wait(r300->rws,
284 r300_texture(fb->cbufs[i]->texture)->buffer);
285 return;
286 }
287 }
288 if (fb->zsbuf && fb->zsbuf->texture) {
289 r300->rws->buffer_wait(r300->rws,
290 r300_texture(fb->zsbuf->texture)->buffer);
291 }
292 }
293 }