Squash-merge branch 'gallium-clip-state'
[mesa.git] / src / gallium / drivers / nvfx / nvfx_state_emit.c
1 #include "nvfx_context.h"
2 #include "nvfx_state.h"
3 #include "nvfx_resource.h"
4 #include "draw/draw_context.h"
5
6 void
7 nvfx_state_viewport_validate(struct nvfx_context *nvfx)
8 {
9 struct nouveau_channel *chan = nvfx->screen->base.channel;
10 struct nouveau_grobj *eng3d = nvfx->screen->eng3d;
11 struct pipe_viewport_state *vpt = &nvfx->viewport;
12
13 if(nvfx->render_mode == HW) {
14 BEGIN_RING(chan, eng3d, NV30_3D_VIEWPORT_TRANSLATE_X, 8);
15 OUT_RINGf(chan, vpt->translate[0]);
16 OUT_RINGf(chan, vpt->translate[1]);
17 OUT_RINGf(chan, vpt->translate[2]);
18 OUT_RINGf(chan, vpt->translate[3]);
19 OUT_RINGf(chan, vpt->scale[0]);
20 OUT_RINGf(chan, vpt->scale[1]);
21 OUT_RINGf(chan, vpt->scale[2]);
22 OUT_RINGf(chan, vpt->scale[3]);
23 BEGIN_RING(chan, eng3d, 0x1d78, 1);
24 OUT_RING(chan, 1);
25 } else {
26 BEGIN_RING(chan, eng3d, NV30_3D_VIEWPORT_TRANSLATE_X, 8);
27 OUT_RINGf(chan, 0.0f);
28 OUT_RINGf(chan, 0.0f);
29 OUT_RINGf(chan, 0.0f);
30 OUT_RINGf(chan, 0.0f);
31 OUT_RINGf(chan, 1.0f);
32 OUT_RINGf(chan, 1.0f);
33 OUT_RINGf(chan, 1.0f);
34 OUT_RINGf(chan, 1.0f);
35 BEGIN_RING(chan, eng3d, 0x1d78, 1);
36 OUT_RING(chan, nvfx->is_nv4x ? 0x110 : 1);
37 }
38 }
39
40 void
41 nvfx_state_scissor_validate(struct nvfx_context *nvfx)
42 {
43 struct nouveau_channel *chan = nvfx->screen->base.channel;
44 struct nouveau_grobj *eng3d = nvfx->screen->eng3d;
45 struct pipe_rasterizer_state *rast = &nvfx->rasterizer->pipe;
46 struct pipe_scissor_state *s = &nvfx->scissor;
47
48 if ((rast->scissor == 0 && nvfx->state.scissor_enabled == 0))
49 return;
50 nvfx->state.scissor_enabled = rast->scissor;
51
52 BEGIN_RING(chan, eng3d, NV30_3D_SCISSOR_HORIZ, 2);
53 if (nvfx->state.scissor_enabled) {
54 OUT_RING(chan, ((s->maxx - s->minx) << 16) | s->minx);
55 OUT_RING(chan, ((s->maxy - s->miny) << 16) | s->miny);
56 } else {
57 OUT_RING(chan, 4096 << 16);
58 OUT_RING(chan, 4096 << 16);
59 }
60 }
61
62 void
63 nvfx_state_sr_validate(struct nvfx_context *nvfx)
64 {
65 struct nouveau_channel* chan = nvfx->screen->base.channel;
66 struct nouveau_grobj *eng3d = nvfx->screen->eng3d;
67 struct pipe_stencil_ref *sr = &nvfx->stencil_ref;
68
69 BEGIN_RING(chan, eng3d, NV30_3D_STENCIL_FUNC_REF(0), 1);
70 OUT_RING(chan, sr->ref_value[0]);
71 BEGIN_RING(chan, eng3d, NV30_3D_STENCIL_FUNC_REF(1), 1);
72 OUT_RING(chan, sr->ref_value[1]);
73 }
74
75 void
76 nvfx_state_blend_colour_validate(struct nvfx_context *nvfx)
77 {
78 struct nouveau_channel* chan = nvfx->screen->base.channel;
79 struct nouveau_grobj *eng3d = nvfx->screen->eng3d;
80 struct pipe_blend_color *bcol = &nvfx->blend_colour;
81
82 BEGIN_RING(chan, eng3d, NV30_3D_BLEND_COLOR, 1);
83 OUT_RING(chan, ((float_to_ubyte(bcol->color[3]) << 24) |
84 (float_to_ubyte(bcol->color[0]) << 16) |
85 (float_to_ubyte(bcol->color[1]) << 8) |
86 (float_to_ubyte(bcol->color[2]) << 0)));
87 }
88
89 void
90 nvfx_state_stipple_validate(struct nvfx_context *nvfx)
91 {
92 struct nouveau_channel *chan = nvfx->screen->base.channel;
93 struct nouveau_grobj *eng3d = nvfx->screen->eng3d;
94
95 BEGIN_RING(chan, eng3d, NV30_3D_POLYGON_STIPPLE_PATTERN(0), 32);
96 OUT_RINGp(chan, nvfx->stipple, 32);
97 }
98
99 static void
100 nvfx_coord_conventions_validate(struct nvfx_context* nvfx)
101 {
102 struct nouveau_channel* chan = nvfx->screen->base.channel;
103 struct nouveau_grobj *eng3d = nvfx->screen->eng3d;
104 unsigned value = nvfx->hw_fragprog->coord_conventions;
105 if(value & NV30_3D_COORD_CONVENTIONS_ORIGIN_INVERTED)
106 value |= nvfx->framebuffer.height << NV30_3D_COORD_CONVENTIONS_HEIGHT__SHIFT;
107
108 BEGIN_RING(chan, eng3d, NV30_3D_COORD_CONVENTIONS, 1);
109 OUT_RING(chan, value);
110 }
111
112 static void
113 nvfx_ucp_validate(struct nvfx_context* nvfx)
114 {
115 struct nouveau_channel* chan = nvfx->screen->base.channel;
116 struct nouveau_grobj *eng3d = nvfx->screen->eng3d;
117 unsigned enables[] =
118 {
119 NV30_3D_VP_CLIP_PLANES_ENABLE_PLANE0,
120 NV30_3D_VP_CLIP_PLANES_ENABLE_PLANE1,
121 NV30_3D_VP_CLIP_PLANES_ENABLE_PLANE2,
122 NV30_3D_VP_CLIP_PLANES_ENABLE_PLANE3,
123 NV30_3D_VP_CLIP_PLANES_ENABLE_PLANE4,
124 NV30_3D_VP_CLIP_PLANES_ENABLE_PLANE5
125 };
126 unsigned i, enable = 0, nr = 0;
127
128 for (i = 0; i < 6; i++) {
129 if (nvfx->rasterizer->pipe.clip_plane_enable & (1 << i)) {
130 enable |= enables[i];
131 nr = i+1;
132 }
133 }
134
135 if(!nvfx->use_vp_clipping)
136 {
137 BEGIN_RING(chan, eng3d, NV30_3D_VP_CLIP_PLANES_ENABLE, 1);
138 OUT_RING(chan, 0);
139
140 BEGIN_RING(chan, eng3d, NV30_3D_VP_CLIP_PLANE(0, 0),
141 nr * 4);
142 OUT_RINGp(chan, &nvfx->clip.ucp[0][0], nr * 4);
143 }
144
145 BEGIN_RING(chan, eng3d, NV30_3D_VP_CLIP_PLANES_ENABLE, 1);
146 OUT_RING(chan, enable);
147 }
148
149 static void
150 nvfx_vertprog_ucp_validate(struct nvfx_context* nvfx)
151 {
152 struct nouveau_channel* chan = nvfx->screen->base.channel;
153 struct nouveau_grobj *eng3d = nvfx->screen->eng3d;
154 unsigned i;
155 struct nvfx_vertex_program* vp = nvfx->hw_vertprog;
156 unsigned enable = nvfx->rasterizer->pipe.clip_plane_enable;
157 unsigned nr = util_bitcount(enable);
158
159 if(nr != vp->clip_nr)
160 {
161 unsigned idx;
162
163 /* remove last instruction bit */
164 if(vp->clip_nr >= 0)
165 {
166 idx = vp->nr_insns - 7 + vp->clip_nr;
167 BEGIN_RING(chan, eng3d, NV30_3D_VP_UPLOAD_FROM_ID, 1);
168 OUT_RING(chan, vp->exec->start + idx);
169 BEGIN_RING(chan, eng3d, NV30_3D_VP_UPLOAD_INST(0), 4);
170 OUT_RINGp (chan, vp->insns[idx].data, 4);
171 }
172
173 /* set last instruction bit */
174 idx = vp->nr_insns - 7 + nr;
175 BEGIN_RING(chan, eng3d, NV30_3D_VP_UPLOAD_FROM_ID, 1);
176 OUT_RING(chan, vp->exec->start + idx);
177 BEGIN_RING(chan, eng3d, NV30_3D_VP_UPLOAD_INST(0), 4);
178 OUT_RINGp(chan, vp->insns[idx].data, 3);
179 OUT_RING(chan, vp->insns[idx].data[3] | 1);
180 vp->clip_nr = nr;
181 }
182
183 // TODO: only do this for the ones changed
184 for(i = 0; enable; ++i)
185 {
186 unsigned index = ffs(enable) - 1;
187 enable &= ~(1 << index);
188
189 BEGIN_RING(chan, eng3d, NV30_3D_VP_UPLOAD_CONST_ID, 5);
190 OUT_RING(chan, vp->data->start + i);
191 OUT_RINGp (chan, nvfx->clip.ucp[index], 4);
192 }
193 }
194
195 static boolean
196 nvfx_state_validate_common(struct nvfx_context *nvfx)
197 {
198 struct nouveau_channel* chan = nvfx->screen->base.channel;
199 struct nouveau_grobj *eng3d = nvfx->screen->eng3d;
200 unsigned dirty;
201 unsigned still_dirty = 0;
202 int new_fb_mode = -1; /* 1 = all swizzled, 0 = make all linear */
203 boolean flush_tex_cache = FALSE;
204 unsigned render_temps;
205
206 if(nvfx != nvfx->screen->cur_ctx)
207 {
208 nvfx->dirty = ~0;
209 nvfx->hw_vtxelt_nr = 16;
210 nvfx->hw_pointsprite_control = -1;
211 nvfx->hw_vp_output = -1;
212 nvfx->screen->cur_ctx = nvfx;
213 nvfx->relocs_needed = NVFX_RELOCATE_ALL;
214 }
215
216 /* These can trigger use the of 3D engine to copy temporaries.
217 * That will recurse here and thus dirty all 3D state, so we need to this before anything else, and in a loop..
218 * This converges to having clean temps, then binding both fragtexes and framebuffers.
219 */
220 while(nvfx->dirty & (NVFX_NEW_FB | NVFX_NEW_SAMPLER))
221 {
222 if(nvfx->dirty & NVFX_NEW_SAMPLER)
223 {
224 nvfx->dirty &=~ NVFX_NEW_SAMPLER;
225 nvfx_fragtex_validate(nvfx);
226
227 // TODO: only set this if really necessary
228 flush_tex_cache = TRUE;
229 }
230
231 if(nvfx->dirty & NVFX_NEW_FB)
232 {
233 nvfx->dirty &=~ NVFX_NEW_FB;
234 new_fb_mode = nvfx_framebuffer_prepare(nvfx);
235
236 // TODO: make sure this doesn't happen, i.e. fbs have matching formats
237 assert(new_fb_mode >= 0);
238 }
239 }
240
241 dirty = nvfx->dirty;
242
243 if(nvfx->render_mode == HW)
244 {
245 if(dirty & (NVFX_NEW_VERTPROG | NVFX_NEW_VERTCONST))
246 {
247 if(!nvfx_vertprog_validate(nvfx))
248 return FALSE;
249 }
250
251 if(dirty & NVFX_NEW_ARRAYS)
252 {
253 if(!nvfx_vbo_validate(nvfx))
254 return FALSE;
255 }
256
257 if(dirty & NVFX_NEW_INDEX)
258 {
259 if(nvfx->use_index_buffer)
260 nvfx_idxbuf_validate(nvfx);
261 else
262 still_dirty = NVFX_NEW_INDEX;
263 }
264 }
265 else
266 {
267 if(dirty & NVFX_NEW_VERTPROG) {
268 assert(nvfx_vertprog_validate(nvfx));
269 nvfx_vbo_swtnl_validate(nvfx);
270 }
271 }
272
273 if(dirty & NVFX_NEW_RAST)
274 sb_emit(chan, nvfx->rasterizer->sb, nvfx->rasterizer->sb_len);
275
276 if(dirty & NVFX_NEW_SCISSOR)
277 nvfx_state_scissor_validate(nvfx);
278
279 if(dirty & NVFX_NEW_STIPPLE)
280 nvfx_state_stipple_validate(nvfx);
281
282 if(nvfx->dirty & (NVFX_NEW_UCP | NVFX_NEW_RAST))
283 nvfx_ucp_validate(nvfx);
284
285 if(nvfx->use_vp_clipping && (nvfx->dirty & (NVFX_NEW_UCP | NVFX_NEW_VERTPROG | NVFX_NEW_RAST)))
286 nvfx_vertprog_ucp_validate(nvfx);
287
288 if(dirty & (NVFX_NEW_FRAGPROG | NVFX_NEW_FRAGCONST | NVFX_NEW_VERTPROG | NVFX_NEW_SPRITE))
289 {
290 nvfx_fragprog_validate(nvfx);
291 if(dirty & NVFX_NEW_FRAGPROG)
292 flush_tex_cache = TRUE; // TODO: do we need this?
293 }
294
295 if(nvfx->is_nv4x)
296 {
297 unsigned vp_output = nvfx->hw_vertprog->or | nvfx->hw_fragprog->or;
298 vp_output |= ((1 << (nvfx->rasterizer->pipe.clip_plane_enable & 63)) - 1) << 6;
299
300 if(vp_output != nvfx->hw_vp_output)
301 {
302 BEGIN_RING(chan, eng3d, NV40_3D_VP_RESULT_EN, 1);
303 OUT_RING(chan, vp_output);
304 nvfx->hw_vp_output = vp_output;
305 }
306 }
307
308 if(new_fb_mode >= 0)
309 nvfx_framebuffer_validate(nvfx, new_fb_mode);
310
311 if(dirty & NVFX_NEW_BLEND)
312 sb_emit(chan, nvfx->blend->sb, nvfx->blend->sb_len);
313
314 if(dirty & NVFX_NEW_BCOL)
315 nvfx_state_blend_colour_validate(nvfx);
316
317 if(dirty & NVFX_NEW_ZSA)
318 sb_emit(chan, nvfx->zsa->sb, nvfx->zsa->sb_len);
319
320 if(dirty & NVFX_NEW_SR)
321 nvfx_state_sr_validate(nvfx);
322
323 /* All these dependencies are wrong, but otherwise
324 etracer, neverball, foobillard, glest totally misrender
325 TODO: find the right fix
326 */
327 if(dirty & (NVFX_NEW_VIEWPORT | NVFX_NEW_RAST | NVFX_NEW_ZSA) || (new_fb_mode >= 0))
328 {
329 nvfx_state_viewport_validate(nvfx);
330 }
331
332 if(dirty & NVFX_NEW_ZSA || (new_fb_mode >= 0))
333 {
334 BEGIN_RING(chan, eng3d, NV30_3D_DEPTH_WRITE_ENABLE, 2);
335 OUT_RING(chan, nvfx->framebuffer.zsbuf && nvfx->zsa->pipe.depth.writemask);
336 OUT_RING(chan, nvfx->framebuffer.zsbuf && nvfx->zsa->pipe.depth.enabled);
337 }
338
339 if((new_fb_mode >= 0) || (dirty & NVFX_NEW_FRAGPROG))
340 nvfx_coord_conventions_validate(nvfx);
341
342 if(flush_tex_cache)
343 {
344 // TODO: what about nv30?
345 if(nvfx->is_nv4x)
346 {
347 BEGIN_RING(chan, eng3d, NV40_3D_TEX_CACHE_CTL, 1);
348 OUT_RING(chan, 2);
349 BEGIN_RING(chan, eng3d, NV40_3D_TEX_CACHE_CTL, 1);
350 OUT_RING(chan, 1);
351 }
352 }
353
354 nvfx->dirty = dirty & still_dirty;
355
356 render_temps = nvfx->state.render_temps;
357 if(render_temps)
358 {
359 for(int i = 0; i < nvfx->framebuffer.nr_cbufs; ++i)
360 {
361 if(render_temps & (1 << i)) {
362 assert(((struct nvfx_surface*)nvfx->framebuffer.cbufs[i])->temp);
363 util_dirty_surface_set_dirty(nvfx_surface_get_dirty_surfaces(nvfx->framebuffer.cbufs[i]),
364 (struct util_dirty_surface*)nvfx->framebuffer.cbufs[i]);
365 }
366 }
367
368 if(render_temps & 0x80) {
369 assert(((struct nvfx_surface*)nvfx->framebuffer.zsbuf)->temp);
370 util_dirty_surface_set_dirty(nvfx_surface_get_dirty_surfaces(nvfx->framebuffer.zsbuf),
371 (struct util_dirty_surface*)nvfx->framebuffer.zsbuf);
372 }
373 }
374
375 return TRUE;
376 }
377
378 inline void
379 nvfx_state_relocate(struct nvfx_context *nvfx, unsigned relocs)
380 {
381 struct nouveau_channel* chan = nvfx->screen->base.channel;
382 /* we need to ensure there is enough space to output relocations in one go */
383 const unsigned max_relocs = 0
384 + 16 /* vertex buffers, incl. dma flag */
385 + 2 /* index buffer plus format+dma flag */
386 + 2 * 5 /* 4 cbufs + zsbuf, plus dma objects */
387 + 2 * 16 /* fragment textures plus format+dma flag */
388 + 2 * 4 /* vertex textures plus format+dma flag */
389 + 1 /* fragprog incl dma flag */
390 ;
391
392 MARK_RING(chan, max_relocs * 2, max_relocs * 2);
393
394 if(relocs & NVFX_RELOCATE_FRAMEBUFFER)
395 nvfx_framebuffer_relocate(nvfx);
396 if(relocs & NVFX_RELOCATE_FRAGTEX)
397 nvfx_fragtex_relocate(nvfx);
398 if(relocs & NVFX_RELOCATE_FRAGPROG)
399 nvfx_fragprog_relocate(nvfx);
400 if(relocs & NVFX_RELOCATE_VTXBUF)
401 nvfx_vbo_relocate(nvfx);
402 if(relocs & NVFX_RELOCATE_IDXBUF)
403 nvfx_idxbuf_relocate(nvfx);
404 }
405
406 boolean
407 nvfx_state_validate(struct nvfx_context *nvfx)
408 {
409 if (nvfx->render_mode != HW) {
410 /* Don't even bother trying to go back to hw if none
411 * of the states that caused swtnl previously have changed.
412 */
413 if ((nvfx->fallback_swtnl & nvfx->dirty)
414 != nvfx->fallback_swtnl)
415 return FALSE;
416
417 /* Attempt to go to hwtnl again */
418 nvfx->dirty |= (NVFX_NEW_VIEWPORT |
419 NVFX_NEW_VERTPROG |
420 NVFX_NEW_ARRAYS);
421 nvfx->render_mode = HW;
422 }
423
424 if(!nvfx_state_validate_common(nvfx))
425 return FALSE;
426
427 return TRUE;
428 }
429
430 boolean
431 nvfx_state_validate_swtnl(struct nvfx_context *nvfx)
432 {
433 struct draw_context *draw = nvfx->draw;
434
435 /* Setup for swtnl */
436 if (nvfx->render_mode == HW) {
437 static boolean warned = FALSE;
438 if(!warned) {
439 NOUVEAU_ERR("hw->swtnl 0x%08x\n", nvfx->fallback_swtnl);
440 warned = TRUE;
441 }
442 nvfx->pipe.flush(&nvfx->pipe, NULL);
443 nvfx->dirty |= (NVFX_NEW_VIEWPORT |
444 NVFX_NEW_VERTPROG |
445 NVFX_NEW_ARRAYS);
446 nvfx->render_mode = SWTNL;
447 }
448
449 if (nvfx->draw_dirty & NVFX_NEW_VERTPROG) {
450 if(!nvfx->vertprog->draw_vs)
451 nvfx->vertprog->draw_vs = draw_create_vertex_shader(draw, &nvfx->vertprog->pipe);
452 draw_bind_vertex_shader(draw, nvfx->vertprog->draw_vs);
453 }
454
455 if (nvfx->draw_dirty & NVFX_NEW_RAST)
456 draw_set_rasterizer_state(draw, &nvfx->rasterizer->pipe,
457 nvfx->rasterizer);
458
459 if (nvfx->draw_dirty & NVFX_NEW_UCP)
460 draw_set_clip_state(draw, &nvfx->clip);
461
462 if (nvfx->draw_dirty & NVFX_NEW_VIEWPORT)
463 draw_set_viewport_state(draw, &nvfx->viewport);
464
465 if (nvfx->draw_dirty & NVFX_NEW_ARRAYS) {
466 draw_set_vertex_buffers(draw, nvfx->vtxbuf_nr, nvfx->vtxbuf);
467 draw_set_vertex_elements(draw, nvfx->vtxelt->num_elements, nvfx->vtxelt->pipe);
468 }
469
470 if (nvfx->draw_dirty & NVFX_NEW_INDEX)
471 draw_set_index_buffer(draw, &nvfx->idxbuf);
472
473 nvfx_state_validate_common(nvfx);
474
475 nvfx->draw_dirty = 0;
476 return TRUE;
477 }