s/desc->type/desc->channel[0].type/
[mesa.git] / src / gallium / drivers / nv50 / nv50_vbo.c
1 /*
2 * Copyright 2008 Ben Skeggs
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 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
18 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
19 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20 * SOFTWARE.
21 */
22
23 #include "pipe/p_context.h"
24 #include "pipe/p_state.h"
25 #include "pipe/p_inlines.h"
26
27 #include "util/u_format.h"
28
29 #include "nv50_context.h"
30
31 static boolean
32 nv50_push_elements_u08(struct nv50_context *, uint8_t *, unsigned);
33
34 static boolean
35 nv50_push_elements_u16(struct nv50_context *, uint16_t *, unsigned);
36
37 static boolean
38 nv50_push_elements_u32(struct nv50_context *, uint32_t *, unsigned);
39
40 static boolean
41 nv50_push_arrays(struct nv50_context *, unsigned, unsigned);
42
43 static INLINE unsigned
44 nv50_prim(unsigned mode)
45 {
46 switch (mode) {
47 case PIPE_PRIM_POINTS: return NV50TCL_VERTEX_BEGIN_POINTS;
48 case PIPE_PRIM_LINES: return NV50TCL_VERTEX_BEGIN_LINES;
49 case PIPE_PRIM_LINE_LOOP: return NV50TCL_VERTEX_BEGIN_LINE_LOOP;
50 case PIPE_PRIM_LINE_STRIP: return NV50TCL_VERTEX_BEGIN_LINE_STRIP;
51 case PIPE_PRIM_TRIANGLES: return NV50TCL_VERTEX_BEGIN_TRIANGLES;
52 case PIPE_PRIM_TRIANGLE_STRIP:
53 return NV50TCL_VERTEX_BEGIN_TRIANGLE_STRIP;
54 case PIPE_PRIM_TRIANGLE_FAN: return NV50TCL_VERTEX_BEGIN_TRIANGLE_FAN;
55 case PIPE_PRIM_QUADS: return NV50TCL_VERTEX_BEGIN_QUADS;
56 case PIPE_PRIM_QUAD_STRIP: return NV50TCL_VERTEX_BEGIN_QUAD_STRIP;
57 case PIPE_PRIM_POLYGON: return NV50TCL_VERTEX_BEGIN_POLYGON;
58 default:
59 break;
60 }
61
62 NOUVEAU_ERR("invalid primitive type %d\n", mode);
63 return NV50TCL_VERTEX_BEGIN_POINTS;
64 }
65
66 static INLINE uint32_t
67 nv50_vbo_type_to_hw(enum pipe_format format)
68 {
69 const struct util_format_description *desc;
70
71 desc = util_format_description(format);
72 assert(desc);
73
74 switch (desc->channel[0].type) {
75 case UTIL_FORMAT_TYPE_FLOAT:
76 return NV50TCL_VERTEX_ARRAY_ATTRIB_TYPE_FLOAT;
77 case UTIL_FORMAT_TYPE_UNSIGNED:
78 if (desc->channel[0].normalized) {
79 return NV50TCL_VERTEX_ARRAY_ATTRIB_TYPE_UNORM;
80 }
81 return NV50TCL_VERTEX_ARRAY_ATTRIB_TYPE_USCALED;
82 case UTIL_FORMAT_TYPE_SIGNED:
83 if (desc->channel[0].normalized) {
84 return NV50TCL_VERTEX_ARRAY_ATTRIB_TYPE_SNORM;
85 }
86 return NV50TCL_VERTEX_ARRAY_ATTRIB_TYPE_SSCALED;
87 /*
88 case PIPE_FORMAT_TYPE_UINT:
89 return NV50TCL_VERTEX_ARRAY_ATTRIB_TYPE_UINT;
90 case PIPE_FORMAT_TYPE_SINT:
91 return NV50TCL_VERTEX_ARRAY_ATTRIB_TYPE_SINT; */
92 default:
93 return 0;
94 }
95 }
96
97 static INLINE uint32_t
98 nv50_vbo_size_to_hw(unsigned size, unsigned nr_c)
99 {
100 static const uint32_t hw_values[] = {
101 0, 0, 0, 0,
102 NV50TCL_VERTEX_ARRAY_ATTRIB_SIZE_8,
103 NV50TCL_VERTEX_ARRAY_ATTRIB_SIZE_8_8,
104 NV50TCL_VERTEX_ARRAY_ATTRIB_SIZE_8_8_8,
105 NV50TCL_VERTEX_ARRAY_ATTRIB_SIZE_8_8_8_8,
106 NV50TCL_VERTEX_ARRAY_ATTRIB_SIZE_16,
107 NV50TCL_VERTEX_ARRAY_ATTRIB_SIZE_16_16,
108 NV50TCL_VERTEX_ARRAY_ATTRIB_SIZE_16_16_16,
109 NV50TCL_VERTEX_ARRAY_ATTRIB_SIZE_16_16_16_16,
110 0, 0, 0, 0,
111 NV50TCL_VERTEX_ARRAY_ATTRIB_SIZE_32,
112 NV50TCL_VERTEX_ARRAY_ATTRIB_SIZE_32_32,
113 NV50TCL_VERTEX_ARRAY_ATTRIB_SIZE_32_32_32,
114 NV50TCL_VERTEX_ARRAY_ATTRIB_SIZE_32_32_32_32 };
115
116 /* we'd also have R11G11B10 and R10G10B10A2 */
117
118 assert(nr_c > 0 && nr_c <= 4);
119
120 if (size > 32)
121 return 0;
122 size >>= (3 - 2);
123
124 return hw_values[size + (nr_c - 1)];
125 }
126
127 static INLINE uint32_t
128 nv50_vbo_vtxelt_to_hw(struct pipe_vertex_element *ve)
129 {
130 uint32_t hw_type, hw_size;
131 enum pipe_format pf = ve->src_format;
132 const struct util_format_description *desc;
133 unsigned size;
134
135 desc = util_format_description(pf);
136 assert(desc);
137
138 size = util_format_get_component_bits(pf, UTIL_FORMAT_COLORSPACE_RGB, 0);
139
140 hw_type = nv50_vbo_type_to_hw(pf);
141 hw_size = nv50_vbo_size_to_hw(size, ve->nr_components);
142
143 if (!hw_type || !hw_size) {
144 NOUVEAU_ERR("unsupported vbo format: %s\n", pf_name(pf));
145 abort();
146 return 0x24e80000;
147 }
148
149 if (desc->swizzle[0] == UTIL_FORMAT_SWIZZLE_Z) /* BGRA */
150 hw_size |= (1 << 31); /* no real swizzle bits :-( */
151
152 return (hw_type | hw_size);
153 }
154
155 boolean
156 nv50_draw_arrays(struct pipe_context *pipe, unsigned mode, unsigned start,
157 unsigned count)
158 {
159 struct nv50_context *nv50 = nv50_context(pipe);
160 struct nouveau_channel *chan = nv50->screen->tesla->channel;
161 struct nouveau_grobj *tesla = nv50->screen->tesla;
162 boolean ret;
163
164 nv50_state_validate(nv50);
165
166 BEGIN_RING(chan, tesla, 0x142c, 1);
167 OUT_RING (chan, 0);
168 BEGIN_RING(chan, tesla, 0x142c, 1);
169 OUT_RING (chan, 0);
170
171 BEGIN_RING(chan, tesla, NV50TCL_VERTEX_BEGIN, 1);
172 OUT_RING (chan, nv50_prim(mode));
173
174 if (nv50->vbo_fifo)
175 ret = nv50_push_arrays(nv50, start, count);
176 else {
177 BEGIN_RING(chan, tesla, NV50TCL_VERTEX_BUFFER_FIRST, 2);
178 OUT_RING (chan, start);
179 OUT_RING (chan, count);
180 ret = TRUE;
181 }
182 BEGIN_RING(chan, tesla, NV50TCL_VERTEX_END, 1);
183 OUT_RING (chan, 0);
184
185 return ret;
186 }
187
188 static INLINE boolean
189 nv50_draw_elements_inline_u08(struct nv50_context *nv50, uint8_t *map,
190 unsigned start, unsigned count)
191 {
192 struct nouveau_channel *chan = nv50->screen->tesla->channel;
193 struct nouveau_grobj *tesla = nv50->screen->tesla;
194
195 map += start;
196
197 if (nv50->vbo_fifo)
198 return nv50_push_elements_u08(nv50, map, count);
199
200 if (count & 1) {
201 BEGIN_RING(chan, tesla, 0x15e8, 1);
202 OUT_RING (chan, map[0]);
203 map++;
204 count--;
205 }
206
207 while (count) {
208 unsigned nr = count > 2046 ? 2046 : count;
209 int i;
210
211 BEGIN_RING(chan, tesla, 0x400015f0, nr >> 1);
212 for (i = 0; i < nr; i += 2)
213 OUT_RING (chan, (map[i + 1] << 16) | map[i]);
214
215 count -= nr;
216 map += nr;
217 }
218 return TRUE;
219 }
220
221 static INLINE boolean
222 nv50_draw_elements_inline_u16(struct nv50_context *nv50, uint16_t *map,
223 unsigned start, unsigned count)
224 {
225 struct nouveau_channel *chan = nv50->screen->tesla->channel;
226 struct nouveau_grobj *tesla = nv50->screen->tesla;
227
228 map += start;
229
230 if (nv50->vbo_fifo)
231 return nv50_push_elements_u16(nv50, map, count);
232
233 if (count & 1) {
234 BEGIN_RING(chan, tesla, 0x15e8, 1);
235 OUT_RING (chan, map[0]);
236 map++;
237 count--;
238 }
239
240 while (count) {
241 unsigned nr = count > 2046 ? 2046 : count;
242 int i;
243
244 BEGIN_RING(chan, tesla, 0x400015f0, nr >> 1);
245 for (i = 0; i < nr; i += 2)
246 OUT_RING (chan, (map[i + 1] << 16) | map[i]);
247
248 count -= nr;
249 map += nr;
250 }
251 return TRUE;
252 }
253
254 static INLINE boolean
255 nv50_draw_elements_inline_u32(struct nv50_context *nv50, uint32_t *map,
256 unsigned start, unsigned count)
257 {
258 struct nouveau_channel *chan = nv50->screen->tesla->channel;
259 struct nouveau_grobj *tesla = nv50->screen->tesla;
260
261 map += start;
262
263 if (nv50->vbo_fifo)
264 return nv50_push_elements_u32(nv50, map, count);
265
266 while (count) {
267 unsigned nr = count > 2047 ? 2047 : count;
268
269 BEGIN_RING(chan, tesla, 0x400015e8, nr);
270 OUT_RINGp (chan, map, nr);
271
272 count -= nr;
273 map += nr;
274 }
275 return TRUE;
276 }
277
278 boolean
279 nv50_draw_elements(struct pipe_context *pipe,
280 struct pipe_buffer *indexBuffer, unsigned indexSize,
281 unsigned mode, unsigned start, unsigned count)
282 {
283 struct nv50_context *nv50 = nv50_context(pipe);
284 struct nouveau_channel *chan = nv50->screen->tesla->channel;
285 struct nouveau_grobj *tesla = nv50->screen->tesla;
286 struct pipe_screen *pscreen = pipe->screen;
287 void *map;
288 boolean ret;
289
290 map = pipe_buffer_map(pscreen, indexBuffer, PIPE_BUFFER_USAGE_CPU_READ);
291
292 nv50_state_validate(nv50);
293
294 BEGIN_RING(chan, tesla, 0x142c, 1);
295 OUT_RING (chan, 0);
296 BEGIN_RING(chan, tesla, 0x142c, 1);
297 OUT_RING (chan, 0);
298
299 BEGIN_RING(chan, tesla, NV50TCL_VERTEX_BEGIN, 1);
300 OUT_RING (chan, nv50_prim(mode));
301 switch (indexSize) {
302 case 1:
303 ret = nv50_draw_elements_inline_u08(nv50, map, start, count);
304 break;
305 case 2:
306 ret = nv50_draw_elements_inline_u16(nv50, map, start, count);
307 break;
308 case 4:
309 ret = nv50_draw_elements_inline_u32(nv50, map, start, count);
310 break;
311 default:
312 assert(0);
313 ret = FALSE;
314 break;
315 }
316 BEGIN_RING(chan, tesla, NV50TCL_VERTEX_END, 1);
317 OUT_RING (chan, 0);
318
319 pipe_buffer_unmap(pscreen, indexBuffer);
320
321 return ret;
322 }
323
324 static INLINE boolean
325 nv50_vbo_static_attrib(struct nv50_context *nv50, unsigned attrib,
326 struct nouveau_stateobj **pso,
327 struct pipe_vertex_element *ve,
328 struct pipe_vertex_buffer *vb)
329
330 {
331 struct nouveau_stateobj *so;
332 struct nouveau_grobj *tesla = nv50->screen->tesla;
333 struct nouveau_bo *bo = nouveau_bo(vb->buffer);
334 float *v;
335 int ret;
336 enum pipe_format pf = ve->src_format;
337 const struct util_format_description *desc;
338
339 desc = util_format_description(pf);
340 assert(desc);
341
342 if ((desc->channel[0].type != UTIL_FORMAT_TYPE_FLOAT) ||
343 util_format_get_component_bits(pf, UTIL_FORMAT_COLORSPACE_RGB, 0) != 32)
344 return FALSE;
345
346 ret = nouveau_bo_map(bo, NOUVEAU_BO_RD);
347 if (ret)
348 return FALSE;
349 v = (float *)(bo->map + (vb->buffer_offset + ve->src_offset));
350
351 so = *pso;
352 if (!so)
353 *pso = so = so_new(nv50->vtxelt_nr * 5, 0);
354
355 switch (ve->nr_components) {
356 case 4:
357 so_method(so, tesla, NV50TCL_VTX_ATTR_4F_X(attrib), 4);
358 so_data (so, fui(v[0]));
359 so_data (so, fui(v[1]));
360 so_data (so, fui(v[2]));
361 so_data (so, fui(v[3]));
362 break;
363 case 3:
364 so_method(so, tesla, NV50TCL_VTX_ATTR_3F_X(attrib), 3);
365 so_data (so, fui(v[0]));
366 so_data (so, fui(v[1]));
367 so_data (so, fui(v[2]));
368 break;
369 case 2:
370 so_method(so, tesla, NV50TCL_VTX_ATTR_2F_X(attrib), 2);
371 so_data (so, fui(v[0]));
372 so_data (so, fui(v[1]));
373 break;
374 case 1:
375 so_method(so, tesla, NV50TCL_VTX_ATTR_1F(attrib), 1);
376 so_data (so, fui(v[0]));
377 break;
378 default:
379 nouveau_bo_unmap(bo);
380 return FALSE;
381 }
382
383 nouveau_bo_unmap(bo);
384 return TRUE;
385 }
386
387 void
388 nv50_vbo_validate(struct nv50_context *nv50)
389 {
390 struct nouveau_grobj *tesla = nv50->screen->tesla;
391 struct nouveau_stateobj *vtxbuf, *vtxfmt, *vtxattr;
392 unsigned i, n_ve;
393
394 /* don't validate if Gallium took away our buffers */
395 if (nv50->vtxbuf_nr == 0)
396 return;
397 nv50->vbo_fifo = 0;
398
399 for (i = 0; i < nv50->vtxbuf_nr; ++i)
400 if (nv50->vtxbuf[i].stride &&
401 !(nv50->vtxbuf[i].buffer->usage & PIPE_BUFFER_USAGE_VERTEX))
402 nv50->vbo_fifo = 0xffff;
403
404 n_ve = MAX2(nv50->vtxelt_nr, nv50->state.vtxelt_nr);
405
406 vtxattr = NULL;
407 vtxbuf = so_new(n_ve * 7, nv50->vtxelt_nr * 4);
408 vtxfmt = so_new(n_ve + 1, 0);
409 so_method(vtxfmt, tesla, NV50TCL_VERTEX_ARRAY_ATTRIB(0), n_ve);
410
411 for (i = 0; i < nv50->vtxelt_nr; i++) {
412 struct pipe_vertex_element *ve = &nv50->vtxelt[i];
413 struct pipe_vertex_buffer *vb =
414 &nv50->vtxbuf[ve->vertex_buffer_index];
415 struct nouveau_bo *bo = nouveau_bo(vb->buffer);
416 uint32_t hw = nv50_vbo_vtxelt_to_hw(ve);
417
418 if (!vb->stride &&
419 nv50_vbo_static_attrib(nv50, i, &vtxattr, ve, vb)) {
420 so_data(vtxfmt, hw | (1 << 4));
421
422 so_method(vtxbuf, tesla,
423 NV50TCL_VERTEX_ARRAY_FORMAT(i), 1);
424 so_data (vtxbuf, 0);
425
426 nv50->vbo_fifo &= ~(1 << i);
427 continue;
428 }
429 so_data(vtxfmt, hw | i);
430
431 if (nv50->vbo_fifo) {
432 so_method(vtxbuf, tesla,
433 NV50TCL_VERTEX_ARRAY_FORMAT(i), 1);
434 so_data (vtxbuf, 0);
435 continue;
436 }
437
438 so_method(vtxbuf, tesla, NV50TCL_VERTEX_ARRAY_FORMAT(i), 3);
439 so_data (vtxbuf, 0x20000000 | vb->stride);
440 so_reloc (vtxbuf, bo, vb->buffer_offset +
441 ve->src_offset, NOUVEAU_BO_VRAM | NOUVEAU_BO_GART |
442 NOUVEAU_BO_RD | NOUVEAU_BO_HIGH, 0, 0);
443 so_reloc (vtxbuf, bo, vb->buffer_offset +
444 ve->src_offset, NOUVEAU_BO_VRAM | NOUVEAU_BO_GART |
445 NOUVEAU_BO_RD | NOUVEAU_BO_LOW, 0, 0);
446
447 /* vertex array limits */
448 so_method(vtxbuf, tesla, 0x1080 + (i * 8), 2);
449 so_reloc (vtxbuf, bo, vb->buffer->size - 1,
450 NOUVEAU_BO_VRAM | NOUVEAU_BO_GART | NOUVEAU_BO_RD |
451 NOUVEAU_BO_HIGH, 0, 0);
452 so_reloc (vtxbuf, bo, vb->buffer->size - 1,
453 NOUVEAU_BO_VRAM | NOUVEAU_BO_GART | NOUVEAU_BO_RD |
454 NOUVEAU_BO_LOW, 0, 0);
455 }
456 for (; i < n_ve; ++i) {
457 so_data (vtxfmt, 0x7e080010);
458
459 so_method(vtxbuf, tesla, NV50TCL_VERTEX_ARRAY_FORMAT(i), 1);
460 so_data (vtxbuf, 0);
461 }
462 nv50->state.vtxelt_nr = nv50->vtxelt_nr;
463
464 so_ref (vtxfmt, &nv50->state.vtxfmt);
465 so_ref (vtxbuf, &nv50->state.vtxbuf);
466 so_ref (vtxattr, &nv50->state.vtxattr);
467 so_ref (NULL, &vtxbuf);
468 so_ref (NULL, &vtxfmt);
469 so_ref (NULL, &vtxattr);
470 }
471
472 typedef void (*pfn_push)(struct nouveau_channel *, void *);
473
474 struct nv50_vbo_emitctx
475 {
476 pfn_push push[16];
477 void *map[16];
478 unsigned stride[16];
479 unsigned nr_ve;
480 unsigned vtx_dwords;
481 unsigned vtx_max;
482 };
483
484 static INLINE void
485 emit_vtx_next(struct nouveau_channel *chan, struct nv50_vbo_emitctx *emit)
486 {
487 unsigned i;
488
489 for (i = 0; i < emit->nr_ve; ++i) {
490 emit->push[i](chan, emit->map[i]);
491 emit->map[i] += emit->stride[i];
492 }
493 }
494
495 static INLINE void
496 emit_vtx(struct nouveau_channel *chan, struct nv50_vbo_emitctx *emit,
497 uint32_t vi)
498 {
499 unsigned i;
500
501 for (i = 0; i < emit->nr_ve; ++i)
502 emit->push[i](chan, emit->map[i] + emit->stride[i] * vi);
503 }
504
505 static INLINE boolean
506 nv50_map_vbufs(struct nv50_context *nv50)
507 {
508 int i;
509
510 for (i = 0; i < nv50->vtxbuf_nr; ++i) {
511 struct pipe_vertex_buffer *vb = &nv50->vtxbuf[i];
512 unsigned size, delta;
513
514 if (nouveau_bo(vb->buffer)->map)
515 continue;
516
517 size = vb->stride * (vb->max_index + 1);
518 delta = vb->buffer_offset;
519
520 if (!size)
521 size = vb->buffer->size - vb->buffer_offset;
522
523 if (nouveau_bo_map_range(nouveau_bo(vb->buffer),
524 delta, size, NOUVEAU_BO_RD))
525 break;
526 }
527
528 if (i == nv50->vtxbuf_nr)
529 return TRUE;
530 for (; i >= 0; --i)
531 nouveau_bo_unmap(nouveau_bo(nv50->vtxbuf[i].buffer));
532 return FALSE;
533 }
534
535 static INLINE void
536 nv50_unmap_vbufs(struct nv50_context *nv50)
537 {
538 unsigned i;
539
540 for (i = 0; i < nv50->vtxbuf_nr; ++i)
541 if (nouveau_bo(nv50->vtxbuf[i].buffer)->map)
542 nouveau_bo_unmap(nouveau_bo(nv50->vtxbuf[i].buffer));
543 }
544
545 static void
546 emit_b32_1(struct nouveau_channel *chan, void *data)
547 {
548 uint32_t *v = data;
549
550 OUT_RING(chan, v[0]);
551 }
552
553 static void
554 emit_b32_2(struct nouveau_channel *chan, void *data)
555 {
556 uint32_t *v = data;
557
558 OUT_RING(chan, v[0]);
559 OUT_RING(chan, v[1]);
560 }
561
562 static void
563 emit_b32_3(struct nouveau_channel *chan, void *data)
564 {
565 uint32_t *v = data;
566
567 OUT_RING(chan, v[0]);
568 OUT_RING(chan, v[1]);
569 OUT_RING(chan, v[2]);
570 }
571
572 static void
573 emit_b32_4(struct nouveau_channel *chan, void *data)
574 {
575 uint32_t *v = data;
576
577 OUT_RING(chan, v[0]);
578 OUT_RING(chan, v[1]);
579 OUT_RING(chan, v[2]);
580 OUT_RING(chan, v[3]);
581 }
582
583 static void
584 emit_b16_1(struct nouveau_channel *chan, void *data)
585 {
586 uint16_t *v = data;
587
588 OUT_RING(chan, v[0]);
589 }
590
591 static void
592 emit_b16_3(struct nouveau_channel *chan, void *data)
593 {
594 uint16_t *v = data;
595
596 OUT_RING(chan, (v[1] << 16) | v[0]);
597 OUT_RING(chan, v[2]);
598 }
599
600 static void
601 emit_b08_1(struct nouveau_channel *chan, void *data)
602 {
603 uint8_t *v = data;
604
605 OUT_RING(chan, v[0]);
606 }
607
608 static void
609 emit_b08_3(struct nouveau_channel *chan, void *data)
610 {
611 uint8_t *v = data;
612
613 OUT_RING(chan, (v[2] << 16) | (v[1] << 8) | v[0]);
614 }
615
616 static boolean
617 emit_prepare(struct nv50_context *nv50, struct nv50_vbo_emitctx *emit,
618 unsigned start)
619 {
620 unsigned i;
621
622 if (nv50_map_vbufs(nv50) == FALSE)
623 return FALSE;
624
625 emit->nr_ve = 0;
626 emit->vtx_dwords = 0;
627
628 for (i = 0; i < nv50->vtxelt_nr; ++i) {
629 struct pipe_vertex_element *ve;
630 struct pipe_vertex_buffer *vb;
631 unsigned n, size;
632 const struct util_format_description *desc;
633
634 ve = &nv50->vtxelt[i];
635 vb = &nv50->vtxbuf[ve->vertex_buffer_index];
636 if (!(nv50->vbo_fifo & (1 << i)))
637 continue;
638 n = emit->nr_ve++;
639
640 emit->stride[n] = vb->stride;
641 emit->map[n] = nouveau_bo(vb->buffer)->map +
642 (start * vb->stride + ve->src_offset);
643
644 desc = util_format_description(ve->src_format);
645 assert(desc);
646
647 size = util_format_get_component_bits(ve->src_format, UTIL_FORMAT_COLORSPACE_RGB, 0);
648
649 assert(ve->nr_components > 0 && ve->nr_components <= 4);
650
651 /* It shouldn't be necessary to push the implicit 1s
652 * for case 3 and size 8 cases 1, 2, 3.
653 */
654 switch (size) {
655 default:
656 NOUVEAU_ERR("unsupported vtxelt size: %u\n", size);
657 return FALSE;
658 case 32:
659 switch (ve->nr_components) {
660 case 1: emit->push[n] = emit_b32_1; break;
661 case 2: emit->push[n] = emit_b32_2; break;
662 case 3: emit->push[n] = emit_b32_3; break;
663 case 4: emit->push[n] = emit_b32_4; break;
664 }
665 emit->vtx_dwords += ve->nr_components;
666 break;
667 case 16:
668 switch (ve->nr_components) {
669 case 1: emit->push[n] = emit_b16_1; break;
670 case 2: emit->push[n] = emit_b32_1; break;
671 case 3: emit->push[n] = emit_b16_3; break;
672 case 4: emit->push[n] = emit_b32_2; break;
673 }
674 emit->vtx_dwords += (ve->nr_components + 1) >> 1;
675 break;
676 case 8:
677 switch (ve->nr_components) {
678 case 1: emit->push[n] = emit_b08_1; break;
679 case 2: emit->push[n] = emit_b16_1; break;
680 case 3: emit->push[n] = emit_b08_3; break;
681 case 4: emit->push[n] = emit_b32_1; break;
682 }
683 emit->vtx_dwords += 1;
684 break;
685 }
686 }
687
688 emit->vtx_max = 512 / emit->vtx_dwords;
689
690 return TRUE;
691 }
692
693 static boolean
694 nv50_push_arrays(struct nv50_context *nv50, unsigned start, unsigned count)
695 {
696 struct nouveau_channel *chan = nv50->screen->base.channel;
697 struct nouveau_grobj *tesla = nv50->screen->tesla;
698 struct nv50_vbo_emitctx emit;
699
700 if (emit_prepare(nv50, &emit, start) == FALSE)
701 return FALSE;
702
703 while (count) {
704 unsigned i, dw, nr = MIN2(count, emit.vtx_max);
705 dw = nr * emit.vtx_dwords;
706
707 BEGIN_RING(chan, tesla, NV50TCL_VERTEX_DATA | 0x40000000, dw);
708 for (i = 0; i < nr; ++i)
709 emit_vtx_next(chan, &emit);
710
711 count -= nr;
712 }
713 nv50_unmap_vbufs(nv50);
714
715 return TRUE;
716 }
717
718 static boolean
719 nv50_push_elements_u32(struct nv50_context *nv50, uint32_t *map, unsigned count)
720 {
721 struct nouveau_channel *chan = nv50->screen->base.channel;
722 struct nouveau_grobj *tesla = nv50->screen->tesla;
723 struct nv50_vbo_emitctx emit;
724
725 if (emit_prepare(nv50, &emit, 0) == FALSE)
726 return FALSE;
727
728 while (count) {
729 unsigned i, dw, nr = MIN2(count, emit.vtx_max);
730 dw = nr * emit.vtx_dwords;
731
732 BEGIN_RING(chan, tesla, NV50TCL_VERTEX_DATA | 0x40000000, dw);
733 for (i = 0; i < nr; ++i)
734 emit_vtx(chan, &emit, *map++);
735
736 count -= nr;
737 }
738 nv50_unmap_vbufs(nv50);
739
740 return TRUE;
741 }
742
743 static boolean
744 nv50_push_elements_u16(struct nv50_context *nv50, uint16_t *map, unsigned count)
745 {
746 struct nouveau_channel *chan = nv50->screen->base.channel;
747 struct nouveau_grobj *tesla = nv50->screen->tesla;
748 struct nv50_vbo_emitctx emit;
749
750 if (emit_prepare(nv50, &emit, 0) == FALSE)
751 return FALSE;
752
753 while (count) {
754 unsigned i, dw, nr = MIN2(count, emit.vtx_max);
755 dw = nr * emit.vtx_dwords;
756
757 BEGIN_RING(chan, tesla, NV50TCL_VERTEX_DATA | 0x40000000, dw);
758 for (i = 0; i < nr; ++i)
759 emit_vtx(chan, &emit, *map++);
760
761 count -= nr;
762 }
763 nv50_unmap_vbufs(nv50);
764
765 return TRUE;
766 }
767
768 static boolean
769 nv50_push_elements_u08(struct nv50_context *nv50, uint8_t *map, unsigned count)
770 {
771 struct nouveau_channel *chan = nv50->screen->base.channel;
772 struct nouveau_grobj *tesla = nv50->screen->tesla;
773 struct nv50_vbo_emitctx emit;
774
775 if (emit_prepare(nv50, &emit, 0) == FALSE)
776 return FALSE;
777
778 while (count) {
779 unsigned i, dw, nr = MIN2(count, emit.vtx_max);
780 dw = nr * emit.vtx_dwords;
781
782 BEGIN_RING(chan, tesla, NV50TCL_VERTEX_DATA | 0x40000000, dw);
783 for (i = 0; i < nr; ++i)
784 emit_vtx(chan, &emit, *map++);
785
786 count -= nr;
787 }
788 nv50_unmap_vbufs(nv50);
789
790 return TRUE;
791 }