Merge remote branch 'origin/mesa_7_6_branch'
[mesa.git] / src / mesa / drivers / dri / r600 / r700_render.c
1 /*
2 * Copyright (C) 2008-2009 Advanced Micro Devices, Inc.
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
12 * in all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
18 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20 */
21
22 /*
23 * Authors:
24 * Richard Li <RichardZ.Li@amd.com>, <richardradeon@gmail.com>
25 * CooperYuan <cooper.yuan@amd.com>, <cooperyuan@gmail.com>
26 */
27
28 #include "main/glheader.h"
29 #include "main/state.h"
30 #include "main/imports.h"
31 #include "main/enums.h"
32 #include "main/macros.h"
33 #include "main/context.h"
34 #include "main/dd.h"
35 #include "main/simple_list.h"
36 #include "main/api_arrayelt.h"
37 #include "swrast/swrast.h"
38 #include "swrast_setup/swrast_setup.h"
39 #include "vbo/vbo.h"
40
41 #include "tnl/tnl.h"
42 #include "tnl/t_vp_build.h"
43 #include "tnl/t_context.h"
44 #include "tnl/t_vertex.h"
45 #include "tnl/t_pipeline.h"
46 #include "vbo/vbo_context.h"
47
48 #include "r600_context.h"
49 #include "r600_cmdbuf.h"
50
51 #include "r600_tex.h"
52
53 #include "r700_vertprog.h"
54 #include "r700_fragprog.h"
55 #include "r700_state.h"
56
57 #include "radeon_buffer_objects.h"
58 #include "radeon_common_context.h"
59
60 void r700WaitForIdle(context_t *context);
61 void r700WaitForIdleClean(context_t *context);
62 static unsigned int r700PrimitiveType(int prim);
63 GLboolean r700SyncSurf(context_t *context,
64 struct radeon_bo *pbo,
65 uint32_t read_domain,
66 uint32_t write_domain,
67 uint32_t sync_type);
68
69 void r700WaitForIdle(context_t *context)
70 {
71 BATCH_LOCALS(&context->radeon);
72 radeon_print(RADEON_RENDER | RADEON_STATE, RADEON_TRACE, "%s\n", __func__);
73 BEGIN_BATCH_NO_AUTOSTATE(3);
74
75 R600_OUT_BATCH(CP_PACKET3(R600_IT_SET_CONFIG_REG, 1));
76 R600_OUT_BATCH(mmWAIT_UNTIL - ASIC_CONFIG_BASE_INDEX);
77 R600_OUT_BATCH(WAIT_3D_IDLE_bit);
78
79 END_BATCH();
80 COMMIT_BATCH();
81 }
82
83 void r700WaitForIdleClean(context_t *context)
84 {
85 BATCH_LOCALS(&context->radeon);
86 radeon_print(RADEON_RENDER | RADEON_STATE, RADEON_TRACE, "%s\n", __func__);
87 BEGIN_BATCH_NO_AUTOSTATE(5);
88
89 R600_OUT_BATCH(CP_PACKET3(R600_IT_EVENT_WRITE, 0));
90 R600_OUT_BATCH(CACHE_FLUSH_AND_INV_EVENT);
91
92 R600_OUT_BATCH(CP_PACKET3(R600_IT_SET_CONFIG_REG, 1));
93 R600_OUT_BATCH(mmWAIT_UNTIL - ASIC_CONFIG_BASE_INDEX);
94 R600_OUT_BATCH(WAIT_3D_IDLE_bit | WAIT_3D_IDLECLEAN_bit);
95
96 END_BATCH();
97 COMMIT_BATCH();
98 }
99
100 void r700Start3D(context_t *context)
101 {
102 BATCH_LOCALS(&context->radeon);
103 radeon_print(RADEON_RENDER | RADEON_STATE, RADEON_TRACE, "%s\n", __func__);
104 if (context->radeon.radeonScreen->chip_family < CHIP_FAMILY_RV770)
105 {
106 BEGIN_BATCH_NO_AUTOSTATE(2);
107 R600_OUT_BATCH(CP_PACKET3(R600_IT_START_3D_CMDBUF, 0));
108 R600_OUT_BATCH(0);
109 END_BATCH();
110 }
111
112 BEGIN_BATCH_NO_AUTOSTATE(3);
113 R600_OUT_BATCH(CP_PACKET3(R600_IT_CONTEXT_CONTROL, 1));
114 R600_OUT_BATCH(0x80000000);
115 R600_OUT_BATCH(0x80000000);
116 END_BATCH();
117
118 COMMIT_BATCH();
119
120 r700WaitForIdleClean(context);
121 }
122
123 GLboolean r700SyncSurf(context_t *context,
124 struct radeon_bo *pbo,
125 uint32_t read_domain,
126 uint32_t write_domain,
127 uint32_t sync_type)
128 {
129 BATCH_LOCALS(&context->radeon);
130 radeon_print(RADEON_RENDER | RADEON_STATE, RADEON_TRACE, "%s\n", __func__);
131 uint32_t cp_coher_size;
132
133 if (!pbo)
134 return GL_FALSE;
135
136 if (pbo->size == 0xffffffff)
137 cp_coher_size = 0xffffffff;
138 else
139 cp_coher_size = ((pbo->size + 255) >> 8);
140
141 BEGIN_BATCH_NO_AUTOSTATE(5 + 2);
142 R600_OUT_BATCH(CP_PACKET3(R600_IT_SURFACE_SYNC, 3));
143 R600_OUT_BATCH(sync_type);
144 R600_OUT_BATCH(cp_coher_size);
145 R600_OUT_BATCH(0);
146 R600_OUT_BATCH(10);
147 R600_OUT_BATCH_RELOC(0,
148 pbo,
149 0,
150 read_domain, write_domain, 0);
151 END_BATCH();
152 COMMIT_BATCH();
153
154 return GL_TRUE;
155 }
156
157 static unsigned int r700PrimitiveType(int prim)
158 {
159 switch (prim & PRIM_MODE_MASK)
160 {
161 case GL_POINTS:
162 return DI_PT_POINTLIST;
163 break;
164 case GL_LINES:
165 return DI_PT_LINELIST;
166 break;
167 case GL_LINE_STRIP:
168 return DI_PT_LINESTRIP;
169 break;
170 case GL_LINE_LOOP:
171 return DI_PT_LINELOOP;
172 break;
173 case GL_TRIANGLES:
174 return DI_PT_TRILIST;
175 break;
176 case GL_TRIANGLE_STRIP:
177 return DI_PT_TRISTRIP;
178 break;
179 case GL_TRIANGLE_FAN:
180 return DI_PT_TRIFAN;
181 break;
182 case GL_QUADS:
183 return DI_PT_QUADLIST;
184 break;
185 case GL_QUAD_STRIP:
186 return DI_PT_QUADSTRIP;
187 break;
188 case GL_POLYGON:
189 return DI_PT_POLYGON;
190 break;
191 default:
192 assert(0);
193 return -1;
194 break;
195 }
196 }
197
198 static int r700NumVerts(int num_verts, int prim)
199 {
200 int verts_off = 0;
201
202 switch (prim & PRIM_MODE_MASK) {
203 case GL_POINTS:
204 verts_off = 0;
205 break;
206 case GL_LINES:
207 verts_off = num_verts % 2;
208 break;
209 case GL_LINE_STRIP:
210 if (num_verts < 2)
211 verts_off = num_verts;
212 break;
213 case GL_LINE_LOOP:
214 if (num_verts < 2)
215 verts_off = num_verts;
216 break;
217 case GL_TRIANGLES:
218 verts_off = num_verts % 3;
219 break;
220 case GL_TRIANGLE_STRIP:
221 if (num_verts < 3)
222 verts_off = num_verts;
223 break;
224 case GL_TRIANGLE_FAN:
225 if (num_verts < 3)
226 verts_off = num_verts;
227 break;
228 case GL_QUADS:
229 verts_off = num_verts % 4;
230 break;
231 case GL_QUAD_STRIP:
232 if (num_verts < 4)
233 verts_off = num_verts;
234 else
235 verts_off = num_verts % 2;
236 break;
237 case GL_POLYGON:
238 if (num_verts < 3)
239 verts_off = num_verts;
240 break;
241 default:
242 assert(0);
243 return -1;
244 break;
245 }
246
247 return num_verts - verts_off;
248 }
249
250 static void r700RunRenderPrimitive(GLcontext * ctx, int start, int end, int prim)
251 {
252 context_t *context = R700_CONTEXT(ctx);
253 BATCH_LOCALS(&context->radeon);
254 int type, total_emit;
255 int num_indices;
256 uint32_t vgt_draw_initiator = 0;
257 uint32_t vgt_index_type = 0;
258 uint32_t vgt_primitive_type = 0;
259 uint32_t vgt_num_indices = 0;
260
261 type = r700PrimitiveType(prim);
262 num_indices = r700NumVerts(end - start, prim);
263
264 radeon_print(RADEON_RENDER, RADEON_TRACE,
265 "%s type %x num_indices %d\n",
266 __func__, type, num_indices);
267
268 if (type < 0 || num_indices <= 0)
269 return;
270
271 SETfield(vgt_primitive_type, type,
272 VGT_PRIMITIVE_TYPE__PRIM_TYPE_shift, VGT_PRIMITIVE_TYPE__PRIM_TYPE_mask);
273
274 SETfield(vgt_index_type, DI_INDEX_SIZE_32_BIT, INDEX_TYPE_shift, INDEX_TYPE_mask);
275
276 if(GL_TRUE != context->ind_buf.is_32bit)
277 {
278 SETfield(vgt_index_type, DI_INDEX_SIZE_16_BIT, INDEX_TYPE_shift, INDEX_TYPE_mask);
279 }
280
281 vgt_num_indices = num_indices;
282 SETfield(vgt_draw_initiator, DI_SRC_SEL_DMA, SOURCE_SELECT_shift, SOURCE_SELECT_mask);
283 SETfield(vgt_draw_initiator, DI_MAJOR_MODE_0, MAJOR_MODE_shift, MAJOR_MODE_mask);
284
285 total_emit = 3 /* VGT_PRIMITIVE_TYPE */
286 + 2 /* VGT_INDEX_TYPE */
287 + 2 /* NUM_INSTANCES */
288 + 5 + 2; /* DRAW_INDEX */
289
290 BEGIN_BATCH_NO_AUTOSTATE(total_emit);
291 // prim
292 R600_OUT_BATCH_REGSEQ(VGT_PRIMITIVE_TYPE, 1);
293 R600_OUT_BATCH(vgt_primitive_type);
294 // index type
295 R600_OUT_BATCH(CP_PACKET3(R600_IT_INDEX_TYPE, 0));
296 R600_OUT_BATCH(vgt_index_type);
297 // num instances
298 R600_OUT_BATCH(CP_PACKET3(R600_IT_NUM_INSTANCES, 0));
299 R600_OUT_BATCH(1);
300 // draw packet
301 R600_OUT_BATCH(CP_PACKET3(R600_IT_DRAW_INDEX, 3));
302 R600_OUT_BATCH(context->ind_buf.bo_offset);
303 R600_OUT_BATCH(0);
304 R600_OUT_BATCH(vgt_num_indices);
305 R600_OUT_BATCH(vgt_draw_initiator);
306 R600_OUT_BATCH_RELOC(context->ind_buf.bo_offset,
307 context->ind_buf.bo,
308 context->ind_buf.bo_offset,
309 RADEON_GEM_DOMAIN_GTT, 0, 0);
310 END_BATCH();
311 COMMIT_BATCH();
312 }
313
314 static void r700RunRenderPrimitiveImmediate(GLcontext * ctx, int start, int end, int prim)
315 {
316 context_t *context = R700_CONTEXT(ctx);
317 BATCH_LOCALS(&context->radeon);
318 int type, i;
319 uint32_t num_indices, total_emit = 0;
320 uint32_t vgt_draw_initiator = 0;
321 uint32_t vgt_index_type = 0;
322 uint32_t vgt_primitive_type = 0;
323 uint32_t vgt_num_indices = 0;
324
325 type = r700PrimitiveType(prim);
326 num_indices = r700NumVerts(end - start, prim);
327
328 radeon_print(RADEON_RENDER, RADEON_TRACE,
329 "%s type %x num_indices %d\n",
330 __func__, type, num_indices);
331
332 if (type < 0 || num_indices <= 0)
333 return;
334
335 SETfield(vgt_primitive_type, type,
336 VGT_PRIMITIVE_TYPE__PRIM_TYPE_shift, VGT_PRIMITIVE_TYPE__PRIM_TYPE_mask);
337
338 if (num_indices > 0xffff)
339 {
340 SETfield(vgt_index_type, DI_INDEX_SIZE_32_BIT, INDEX_TYPE_shift, INDEX_TYPE_mask);
341 }
342 else
343 {
344 SETfield(vgt_index_type, DI_INDEX_SIZE_16_BIT, INDEX_TYPE_shift, INDEX_TYPE_mask);
345 }
346
347 vgt_num_indices = num_indices;
348 SETfield(vgt_draw_initiator, DI_MAJOR_MODE_0, MAJOR_MODE_shift, MAJOR_MODE_mask);
349
350 if (start == 0)
351 {
352 SETfield(vgt_draw_initiator, DI_SRC_SEL_AUTO_INDEX, SOURCE_SELECT_shift, SOURCE_SELECT_mask);
353 }
354 else
355 {
356 if (num_indices > 0xffff)
357 {
358 total_emit += num_indices;
359 }
360 else
361 {
362 total_emit += (num_indices + 1) / 2;
363 }
364 SETfield(vgt_draw_initiator, DI_SRC_SEL_IMMEDIATE, SOURCE_SELECT_shift, SOURCE_SELECT_mask);
365 }
366
367 total_emit += 3 /* VGT_PRIMITIVE_TYPE */
368 + 2 /* VGT_INDEX_TYPE */
369 + 2 /* NUM_INSTANCES */
370 + 3; /* DRAW */
371
372 BEGIN_BATCH_NO_AUTOSTATE(total_emit);
373 // prim
374 R600_OUT_BATCH_REGSEQ(VGT_PRIMITIVE_TYPE, 1);
375 R600_OUT_BATCH(vgt_primitive_type);
376 // index type
377 R600_OUT_BATCH(CP_PACKET3(R600_IT_INDEX_TYPE, 0));
378 R600_OUT_BATCH(vgt_index_type);
379 // num instances
380 R600_OUT_BATCH(CP_PACKET3(R600_IT_NUM_INSTANCES, 0));
381 R600_OUT_BATCH(1);
382 // draw packet
383 if(start == 0)
384 {
385 R600_OUT_BATCH(CP_PACKET3(R600_IT_DRAW_INDEX_AUTO, 1));
386 R600_OUT_BATCH(vgt_num_indices);
387 R600_OUT_BATCH(vgt_draw_initiator);
388 }
389 else
390 {
391 if (num_indices > 0xffff)
392 {
393 R600_OUT_BATCH(CP_PACKET3(R600_IT_DRAW_INDEX_IMMD, (num_indices + 1)));
394 R600_OUT_BATCH(vgt_num_indices);
395 R600_OUT_BATCH(vgt_draw_initiator);
396 for (i = start; i < (start + num_indices); i++)
397 {
398 R600_OUT_BATCH(i);
399 }
400 }
401 else
402 {
403 R600_OUT_BATCH(CP_PACKET3(R600_IT_DRAW_INDEX_IMMD, (((num_indices + 1) / 2) + 1)));
404 R600_OUT_BATCH(vgt_num_indices);
405 R600_OUT_BATCH(vgt_draw_initiator);
406 for (i = start; i < (start + num_indices); i += 2)
407 {
408 if ((i + 1) == (start + num_indices))
409 {
410 R600_OUT_BATCH(i);
411 }
412 else
413 {
414 R600_OUT_BATCH(((i + 1) << 16) | (i));
415 }
416 }
417 }
418 }
419
420 END_BATCH();
421 COMMIT_BATCH();
422 }
423
424 /* start 3d, idle, cb/db flush */
425 #define PRE_EMIT_STATE_BUFSZ 10 + 5 + 14
426
427 static GLuint r700PredictRenderSize(GLcontext* ctx,
428 const struct _mesa_prim *prim,
429 const struct _mesa_index_buffer *ib,
430 GLuint nr_prims)
431 {
432 context_t *context = R700_CONTEXT(ctx);
433 GLboolean flushed;
434 GLuint dwords, i;
435 GLuint state_size;
436
437 dwords = PRE_EMIT_STATE_BUFSZ;
438 if (ib)
439 dwords += nr_prims * 14;
440 else {
441 for (i = 0; i < nr_prims; ++i)
442 {
443 if (prim[i].start == 0)
444 dwords += 10;
445 else if (prim[i].count > 0xffff)
446 dwords += prim[i].count + 10;
447 else
448 dwords += ((prim[i].count + 1) / 2) + 10;
449 }
450 }
451
452 state_size = radeonCountStateEmitSize(&context->radeon);
453 flushed = rcommonEnsureCmdBufSpace(&context->radeon,
454 dwords + state_size,
455 __FUNCTION__);
456 if (flushed)
457 dwords += radeonCountStateEmitSize(&context->radeon);
458 else
459 dwords += state_size;
460
461 radeon_print(RADEON_RENDER, RADEON_VERBOSE, "%s: total prediction size is %d.\n", __FUNCTION__, dwords);
462 return dwords;
463
464 }
465
466 #define CONVERT( TYPE, MACRO ) do { \
467 GLuint i, j, sz; \
468 sz = input->Size; \
469 if (input->Normalized) { \
470 for (i = 0; i < count; i++) { \
471 const TYPE *in = (TYPE *)src_ptr; \
472 for (j = 0; j < sz; j++) { \
473 *dst_ptr++ = MACRO(*in); \
474 in++; \
475 } \
476 src_ptr += stride; \
477 } \
478 } else { \
479 for (i = 0; i < count; i++) { \
480 const TYPE *in = (TYPE *)src_ptr; \
481 for (j = 0; j < sz; j++) { \
482 *dst_ptr++ = (GLfloat)(*in); \
483 in++; \
484 } \
485 src_ptr += stride; \
486 } \
487 } \
488 } while (0)
489
490 /**
491 * Convert attribute data type to float
492 * If the attribute uses named buffer object replace the bo with newly allocated bo
493 */
494 static void r700ConvertAttrib(GLcontext *ctx, int count,
495 const struct gl_client_array *input,
496 struct StreamDesc *attr)
497 {
498 context_t *context = R700_CONTEXT(ctx);
499 const GLvoid *src_ptr;
500 GLboolean mapped_named_bo = GL_FALSE;
501 GLfloat *dst_ptr;
502 GLuint stride;
503
504 stride = (input->StrideB == 0) ? getTypeSize(input->Type) * input->Size : input->StrideB;
505
506 /* Convert value for first element only */
507 if (input->StrideB == 0)
508 {
509 count = 1;
510 }
511
512 if (input->BufferObj->Name)
513 {
514 if (!input->BufferObj->Pointer)
515 {
516 ctx->Driver.MapBuffer(ctx, GL_ARRAY_BUFFER, GL_READ_ONLY_ARB, input->BufferObj);
517 mapped_named_bo = GL_TRUE;
518 }
519
520 src_ptr = ADD_POINTERS(input->BufferObj->Pointer, input->Ptr);
521 }
522 else
523 {
524 src_ptr = input->Ptr;
525 }
526
527 radeonAllocDmaRegion(&context->radeon, &attr->bo, &attr->bo_offset,
528 sizeof(GLfloat) * input->Size * count, 32);
529 dst_ptr = (GLfloat *)ADD_POINTERS(attr->bo->ptr, attr->bo_offset);
530
531 assert(src_ptr != NULL);
532
533 switch (input->Type)
534 {
535 case GL_DOUBLE:
536 CONVERT(GLdouble, (GLfloat));
537 break;
538 case GL_UNSIGNED_INT:
539 CONVERT(GLuint, UINT_TO_FLOAT);
540 break;
541 case GL_INT:
542 CONVERT(GLint, INT_TO_FLOAT);
543 break;
544 case GL_UNSIGNED_SHORT:
545 CONVERT(GLushort, USHORT_TO_FLOAT);
546 break;
547 case GL_SHORT:
548 CONVERT(GLshort, SHORT_TO_FLOAT);
549 break;
550 case GL_UNSIGNED_BYTE:
551 assert(input->Format != GL_BGRA);
552 CONVERT(GLubyte, UBYTE_TO_FLOAT);
553 break;
554 case GL_BYTE:
555 CONVERT(GLbyte, BYTE_TO_FLOAT);
556 break;
557 default:
558 assert(0);
559 break;
560 }
561
562 if (mapped_named_bo)
563 {
564 ctx->Driver.UnmapBuffer(ctx, GL_ARRAY_BUFFER, input->BufferObj);
565 }
566 }
567
568 static void r700AlignDataToDword(GLcontext *ctx,
569 const struct gl_client_array *input,
570 int count,
571 struct StreamDesc *attr)
572 {
573 context_t *context = R700_CONTEXT(ctx);
574 const int dst_stride = (input->StrideB + 3) & ~3;
575 const int size = getTypeSize(input->Type) * input->Size * count;
576 GLboolean mapped_named_bo = GL_FALSE;
577
578 radeonAllocDmaRegion(&context->radeon, &attr->bo, &attr->bo_offset, size, 32);
579
580 if (!input->BufferObj->Pointer)
581 {
582 ctx->Driver.MapBuffer(ctx, GL_ARRAY_BUFFER, GL_READ_ONLY_ARB, input->BufferObj);
583 mapped_named_bo = GL_TRUE;
584 }
585
586 {
587 GLvoid *src_ptr = ADD_POINTERS(input->BufferObj->Pointer, input->Ptr);
588 GLvoid *dst_ptr = ADD_POINTERS(attr->bo->ptr, attr->bo_offset);
589 int i;
590
591 for (i = 0; i < count; ++i)
592 {
593 _mesa_memcpy(dst_ptr, src_ptr, input->StrideB);
594 src_ptr += input->StrideB;
595 dst_ptr += dst_stride;
596 }
597 }
598
599 if (mapped_named_bo)
600 {
601 ctx->Driver.UnmapBuffer(ctx, GL_ARRAY_BUFFER, input->BufferObj);
602 }
603
604 attr->stride = dst_stride;
605 }
606
607 static void r700SetupStreams(GLcontext *ctx, const struct gl_client_array *input[], int count)
608 {
609 context_t *context = R700_CONTEXT(ctx);
610 GLuint stride;
611 int ret;
612 int i, index;
613
614 R600_STATECHANGE(context, vtx);
615
616 for(index = 0; index < context->nNumActiveAos; index++)
617 {
618 struct radeon_aos *aos = &context->radeon.tcl.aos[index];
619 i = context->stream_desc[index].element;
620
621 stride = (input[i]->StrideB == 0) ? getTypeSize(input[i]->Type) * input[i]->Size : input[i]->StrideB;
622
623 if (input[i]->Type == GL_DOUBLE || input[i]->Type == GL_UNSIGNED_INT || input[i]->Type == GL_INT ||
624 #if MESA_BIG_ENDIAN
625 getTypeSize(input[i]->Type) != 4 ||
626 #endif
627 stride < 4)
628 {
629 r700ConvertAttrib(ctx, count, input[i], &context->stream_desc[index]);
630 }
631 else
632 {
633 if (input[i]->BufferObj->Name)
634 {
635 if (stride % 4 != 0)
636 {
637 assert(((intptr_t) input[i]->Ptr) % input[i]->StrideB == 0);
638 r700AlignDataToDword(ctx, input[i], count, &context->stream_desc[index]);
639 context->stream_desc[index].is_named_bo = GL_FALSE;
640 }
641 else
642 {
643 context->stream_desc[index].stride = input[i]->StrideB;
644 context->stream_desc[index].bo_offset = (intptr_t) input[i]->Ptr;
645 context->stream_desc[index].bo = get_radeon_buffer_object(input[i]->BufferObj)->bo;
646 context->stream_desc[index].is_named_bo = GL_TRUE;
647 }
648 }
649 else
650 {
651 int size;
652 int local_count = count;
653 uint32_t *dst;
654
655 if (input[i]->StrideB == 0)
656 {
657 size = getTypeSize(input[i]->Type) * input[i]->Size;
658 local_count = 1;
659 }
660 else
661 {
662 size = getTypeSize(input[i]->Type) * input[i]->Size * local_count;
663 }
664
665 radeonAllocDmaRegion(&context->radeon, &context->stream_desc[index].bo,
666 &context->stream_desc[index].bo_offset, size, 32);
667 assert(context->stream_desc[index].bo->ptr != NULL);
668 dst = (uint32_t *)ADD_POINTERS(context->stream_desc[index].bo->ptr,
669 context->stream_desc[index].bo_offset);
670
671 switch (context->stream_desc[index].dwords)
672 {
673 case 1:
674 radeonEmitVec4(dst, input[i]->Ptr, input[i]->StrideB, local_count);
675 break;
676 case 2:
677 radeonEmitVec8(dst, input[i]->Ptr, input[i]->StrideB, local_count);
678 break;
679 case 3:
680 radeonEmitVec12(dst, input[i]->Ptr, input[i]->StrideB, local_count);
681 break;
682 case 4:
683 radeonEmitVec16(dst, input[i]->Ptr, input[i]->StrideB, local_count);
684 break;
685 default:
686 assert(0);
687 break;
688 }
689 }
690 }
691
692 aos->count = context->stream_desc[index].stride == 0 ? 1 : count;
693 aos->stride = context->stream_desc[index].stride / sizeof(float);
694 aos->components = context->stream_desc[index].dwords;
695 aos->bo = context->stream_desc[index].bo;
696 aos->offset = context->stream_desc[index].bo_offset;
697
698 if(context->stream_desc[index].is_named_bo)
699 {
700 radeon_cs_space_add_persistent_bo(context->radeon.cmdbuf.cs,
701 context->stream_desc[index].bo,
702 RADEON_GEM_DOMAIN_GTT, 0);
703 }
704 }
705
706 ret = radeon_cs_space_check_with_bo(context->radeon.cmdbuf.cs,
707 first_elem(&context->radeon.dma.reserved)->bo,
708 RADEON_GEM_DOMAIN_GTT, 0);
709 }
710
711 static void r700FreeData(GLcontext *ctx)
712 {
713 /* Need to zero tcl.aos[n].bo and tcl.elt_dma_bo
714 * to prevent double unref in radeonReleaseArrays
715 * called during context destroy
716 */
717 context_t *context = R700_CONTEXT(ctx);
718
719 int i;
720
721 for (i = 0; i < context->nNumActiveAos; i++)
722 {
723 if (!context->stream_desc[i].is_named_bo)
724 {
725 radeon_bo_unref(context->stream_desc[i].bo);
726 }
727 context->radeon.tcl.aos[i].bo = NULL;
728 }
729
730 if (context->ind_buf.bo != NULL)
731 {
732 radeon_bo_unref(context->ind_buf.bo);
733 }
734 }
735
736 static void r700FixupIndexBuffer(GLcontext *ctx, const struct _mesa_index_buffer *mesa_ind_buf)
737 {
738 context_t *context = R700_CONTEXT(ctx);
739 GLvoid *src_ptr;
740 GLuint *out;
741 int i;
742 GLboolean mapped_named_bo = GL_FALSE;
743
744 if (mesa_ind_buf->obj->Name && !mesa_ind_buf->obj->Pointer)
745 {
746 ctx->Driver.MapBuffer(ctx, GL_ELEMENT_ARRAY_BUFFER, GL_READ_ONLY_ARB, mesa_ind_buf->obj);
747 mapped_named_bo = GL_TRUE;
748 assert(mesa_ind_buf->obj->Pointer != NULL);
749 }
750 src_ptr = ADD_POINTERS(mesa_ind_buf->obj->Pointer, mesa_ind_buf->ptr);
751
752 if (mesa_ind_buf->type == GL_UNSIGNED_BYTE)
753 {
754 GLuint size = sizeof(GLushort) * ((mesa_ind_buf->count + 1) & ~1);
755 GLubyte *in = (GLubyte *)src_ptr;
756
757 radeonAllocDmaRegion(&context->radeon, &context->ind_buf.bo,
758 &context->ind_buf.bo_offset, size, 4);
759
760 assert(context->ind_buf.bo->ptr != NULL);
761 out = (GLuint *)ADD_POINTERS(context->ind_buf.bo->ptr, context->ind_buf.bo_offset);
762
763 for (i = 0; i + 1 < mesa_ind_buf->count; i += 2)
764 {
765 *out++ = in[i] | in[i + 1] << 16;
766 }
767
768 if (i < mesa_ind_buf->count)
769 {
770 *out++ = in[i];
771 }
772
773 #if MESA_BIG_ENDIAN
774 }
775 else
776 { /* if (mesa_ind_buf->type == GL_UNSIGNED_SHORT) */
777 GLushort *in = (GLushort *)src_ptr;
778 GLuint size = sizeof(GLushort) * ((mesa_ind_buf->count + 1) & ~1);
779
780 radeonAllocDmaRegion(&context->radeon, &context->ind_buf.bo,
781 &context->ind_buf.bo_offset, size, 4);
782
783 assert(context->ind_buf.bo->ptr != NULL);
784 out = (GLuint *)ADD_POINTERS(context->ind_buf.bo->ptr, context->ind_buf.bo_offset);
785
786 for (i = 0; i + 1 < mesa_ind_buf->count; i += 2)
787 {
788 *out++ = in[i] | in[i + 1] << 16;
789 }
790
791 if (i < mesa_ind_buf->count)
792 {
793 *out++ = in[i];
794 }
795 #endif
796 }
797
798 context->ind_buf.is_32bit = GL_FALSE;
799 context->ind_buf.count = mesa_ind_buf->count;
800
801 if (mapped_named_bo)
802 {
803 ctx->Driver.UnmapBuffer(ctx, GL_ELEMENT_ARRAY_BUFFER, mesa_ind_buf->obj);
804 }
805 }
806
807 static void r700SetupIndexBuffer(GLcontext *ctx, const struct _mesa_index_buffer *mesa_ind_buf)
808 {
809 context_t *context = R700_CONTEXT(ctx);
810
811 if (!mesa_ind_buf) {
812 context->ind_buf.bo = NULL;
813 return;
814 }
815
816 #if MESA_BIG_ENDIAN
817 if (mesa_ind_buf->type == GL_UNSIGNED_INT)
818 {
819 #else
820 if (mesa_ind_buf->type != GL_UNSIGNED_BYTE)
821 {
822 #endif
823 const GLvoid *src_ptr;
824 GLvoid *dst_ptr;
825 GLboolean mapped_named_bo = GL_FALSE;
826
827 if (mesa_ind_buf->obj->Name && !mesa_ind_buf->obj->Pointer)
828 {
829 ctx->Driver.MapBuffer(ctx, GL_ELEMENT_ARRAY_BUFFER, GL_READ_ONLY_ARB, mesa_ind_buf->obj);
830 assert(mesa_ind_buf->obj->Pointer != NULL);
831 mapped_named_bo = GL_TRUE;
832 }
833
834 src_ptr = ADD_POINTERS(mesa_ind_buf->obj->Pointer, mesa_ind_buf->ptr);
835
836 const GLuint size = mesa_ind_buf->count * getTypeSize(mesa_ind_buf->type);
837
838 radeonAllocDmaRegion(&context->radeon, &context->ind_buf.bo,
839 &context->ind_buf.bo_offset, size, 4);
840 assert(context->ind_buf.bo->ptr != NULL);
841 dst_ptr = ADD_POINTERS(context->ind_buf.bo->ptr, context->ind_buf.bo_offset);
842
843 _mesa_memcpy(dst_ptr, src_ptr, size);
844
845 context->ind_buf.is_32bit = (mesa_ind_buf->type == GL_UNSIGNED_INT);
846 context->ind_buf.count = mesa_ind_buf->count;
847
848 if (mapped_named_bo)
849 {
850 ctx->Driver.UnmapBuffer(ctx, GL_ELEMENT_ARRAY_BUFFER, mesa_ind_buf->obj);
851 }
852 }
853 else
854 {
855 r700FixupIndexBuffer(ctx, mesa_ind_buf);
856 }
857 }
858
859 static GLboolean r700TryDrawPrims(GLcontext *ctx,
860 const struct gl_client_array *arrays[],
861 const struct _mesa_prim *prim,
862 GLuint nr_prims,
863 const struct _mesa_index_buffer *ib,
864 GLuint min_index,
865 GLuint max_index )
866 {
867 context_t *context = R700_CONTEXT(ctx);
868 radeonContextPtr radeon = &context->radeon;
869 GLuint i, id = 0;
870 struct radeon_renderbuffer *rrb;
871
872 if (ctx->NewState)
873 _mesa_update_state( ctx );
874
875 _tnl_UpdateFixedFunctionProgram(ctx);
876 r700SetVertexFormat(ctx, arrays, max_index + 1);
877 /* shaders need to be updated before buffers are validated */
878 r700UpdateShaders(ctx);
879 if (!r600ValidateBuffers(ctx))
880 return GL_FALSE;
881
882 /* always emit CB base to prevent
883 * lock ups on some chips.
884 */
885 R600_STATECHANGE(context, cb_target);
886 /* mark vtx as dirty since it changes per-draw */
887 R600_STATECHANGE(context, vtx);
888
889 r700SetScissor(context);
890 r700SetupVertexProgram(ctx);
891 r700SetupFragmentProgram(ctx);
892 r700UpdateShaderStates(ctx);
893
894 GLuint emit_end = r700PredictRenderSize(ctx, prim, ib, nr_prims)
895 + context->radeon.cmdbuf.cs->cdw;
896
897 r700SetupIndexBuffer(ctx, ib);
898 r700SetupStreams(ctx, arrays, max_index + 1);
899
900 radeonEmitState(radeon);
901
902 radeon_debug_add_indent();
903 for (i = 0; i < nr_prims; ++i)
904 {
905 if (context->ind_buf.bo)
906 r700RunRenderPrimitive(ctx,
907 prim[i].start,
908 prim[i].start + prim[i].count,
909 prim[i].mode);
910 else
911 r700RunRenderPrimitiveImmediate(ctx,
912 prim[i].start,
913 prim[i].start + prim[i].count,
914 prim[i].mode);
915 }
916 radeon_debug_remove_indent();
917
918 /* Flush render op cached for last several quads. */
919 r700WaitForIdleClean(context);
920
921 rrb = radeon_get_colorbuffer(&context->radeon);
922 if (rrb && rrb->bo)
923 r700SyncSurf(context, rrb->bo, 0, RADEON_GEM_DOMAIN_VRAM,
924 CB_ACTION_ENA_bit | (1 << (id + 6)));
925
926 rrb = radeon_get_depthbuffer(&context->radeon);
927 if (rrb && rrb->bo)
928 r700SyncSurf(context, rrb->bo, 0, RADEON_GEM_DOMAIN_VRAM,
929 DB_ACTION_ENA_bit | DB_DEST_BASE_ENA_bit);
930
931 r700FreeData(ctx);
932
933 if (emit_end < context->radeon.cmdbuf.cs->cdw)
934 {
935 WARN_ONCE("Rendering was %d commands larger than predicted size."
936 " We might overflow command buffer.\n", context->radeon.cmdbuf.cs->cdw - emit_end);
937 }
938
939 return GL_TRUE;
940 }
941
942 static void r700DrawPrims(GLcontext *ctx,
943 const struct gl_client_array *arrays[],
944 const struct _mesa_prim *prim,
945 GLuint nr_prims,
946 const struct _mesa_index_buffer *ib,
947 GLboolean index_bounds_valid,
948 GLuint min_index,
949 GLuint max_index)
950 {
951 GLboolean retval = GL_FALSE;
952
953 /* This check should get folded into just the places that
954 * min/max index are really needed.
955 */
956 if (!index_bounds_valid) {
957 vbo_get_minmax_index(ctx, prim, ib, &min_index, &max_index);
958 }
959
960 if (min_index) {
961 vbo_rebase_prims( ctx, arrays, prim, nr_prims, ib, min_index, max_index, r700DrawPrims );
962 return;
963 }
964
965 /* Make an attempt at drawing */
966 retval = r700TryDrawPrims(ctx, arrays, prim, nr_prims, ib, min_index, max_index);
967
968 /* If failed run tnl pipeline - it should take care of fallbacks */
969 if (!retval)
970 _tnl_draw_prims(ctx, arrays, prim, nr_prims, ib, min_index, max_index);
971 }
972
973 void r700InitDraw(GLcontext *ctx)
974 {
975 struct vbo_context *vbo = vbo_context(ctx);
976
977 /* to be enabled */
978 vbo->draw_prims = r700DrawPrims;
979 }
980
981