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