gallium/radeon: implement set_debug_callback
[mesa.git] / src / gallium / drivers / radeon / r600_pipe_common.c
1 /*
2 * Copyright 2013 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 (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 NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 *
23 * Authors: Marek Olšák <maraeo@gmail.com>
24 *
25 */
26
27 #include "r600_pipe_common.h"
28 #include "r600_cs.h"
29 #include "tgsi/tgsi_parse.h"
30 #include "util/list.h"
31 #include "util/u_draw_quad.h"
32 #include "util/u_memory.h"
33 #include "util/u_format_s3tc.h"
34 #include "util/u_upload_mgr.h"
35 #include "os/os_time.h"
36 #include "vl/vl_decoder.h"
37 #include "vl/vl_video_buffer.h"
38 #include "radeon/radeon_video.h"
39 #include <inttypes.h>
40
41 #ifndef HAVE_LLVM
42 #define HAVE_LLVM 0
43 #endif
44
45 struct r600_multi_fence {
46 struct pipe_reference reference;
47 struct pipe_fence_handle *gfx;
48 struct pipe_fence_handle *sdma;
49 };
50
51 /*
52 * pipe_context
53 */
54
55 void r600_draw_rectangle(struct blitter_context *blitter,
56 int x1, int y1, int x2, int y2, float depth,
57 enum blitter_attrib_type type,
58 const union pipe_color_union *attrib)
59 {
60 struct r600_common_context *rctx =
61 (struct r600_common_context*)util_blitter_get_pipe(blitter);
62 struct pipe_viewport_state viewport;
63 struct pipe_resource *buf = NULL;
64 unsigned offset = 0;
65 float *vb;
66
67 if (type == UTIL_BLITTER_ATTRIB_TEXCOORD) {
68 util_blitter_draw_rectangle(blitter, x1, y1, x2, y2, depth, type, attrib);
69 return;
70 }
71
72 /* Some operations (like color resolve on r6xx) don't work
73 * with the conventional primitive types.
74 * One that works is PT_RECTLIST, which we use here. */
75
76 /* setup viewport */
77 viewport.scale[0] = 1.0f;
78 viewport.scale[1] = 1.0f;
79 viewport.scale[2] = 1.0f;
80 viewport.translate[0] = 0.0f;
81 viewport.translate[1] = 0.0f;
82 viewport.translate[2] = 0.0f;
83 rctx->b.set_viewport_states(&rctx->b, 0, 1, &viewport);
84
85 /* Upload vertices. The hw rectangle has only 3 vertices,
86 * I guess the 4th one is derived from the first 3.
87 * The vertex specification should match u_blitter's vertex element state. */
88 u_upload_alloc(rctx->uploader, 0, sizeof(float) * 24, 256, &offset, &buf, (void**)&vb);
89 if (!buf)
90 return;
91
92 vb[0] = x1;
93 vb[1] = y1;
94 vb[2] = depth;
95 vb[3] = 1;
96
97 vb[8] = x1;
98 vb[9] = y2;
99 vb[10] = depth;
100 vb[11] = 1;
101
102 vb[16] = x2;
103 vb[17] = y1;
104 vb[18] = depth;
105 vb[19] = 1;
106
107 if (attrib) {
108 memcpy(vb+4, attrib->f, sizeof(float)*4);
109 memcpy(vb+12, attrib->f, sizeof(float)*4);
110 memcpy(vb+20, attrib->f, sizeof(float)*4);
111 }
112
113 /* draw */
114 util_draw_vertex_buffer(&rctx->b, NULL, buf, blitter->vb_slot, offset,
115 R600_PRIM_RECTANGLE_LIST, 3, 2);
116 pipe_resource_reference(&buf, NULL);
117 }
118
119 void r600_need_dma_space(struct r600_common_context *ctx, unsigned num_dw)
120 {
121 /* Flush the GFX IB if it's not empty. */
122 if (ctx->gfx.cs->cdw > ctx->initial_gfx_cs_size)
123 ctx->gfx.flush(ctx, RADEON_FLUSH_ASYNC, NULL);
124
125 /* Flush if there's not enough space. */
126 if ((num_dw + ctx->dma.cs->cdw) > ctx->dma.cs->max_dw) {
127 ctx->dma.flush(ctx, RADEON_FLUSH_ASYNC, NULL);
128 assert((num_dw + ctx->dma.cs->cdw) <= ctx->dma.cs->max_dw);
129 }
130 }
131
132 static void r600_memory_barrier(struct pipe_context *ctx, unsigned flags)
133 {
134 }
135
136 void r600_preflush_suspend_features(struct r600_common_context *ctx)
137 {
138 /* suspend queries */
139 if (ctx->num_cs_dw_nontimer_queries_suspend) {
140 /* Since non-timer queries are suspended during blits,
141 * we have to guard against double-suspends. */
142 r600_suspend_nontimer_queries(ctx);
143 ctx->nontimer_queries_suspended_by_flush = true;
144 }
145 if (!LIST_IS_EMPTY(&ctx->active_timer_queries))
146 r600_suspend_timer_queries(ctx);
147
148 ctx->streamout.suspended = false;
149 if (ctx->streamout.begin_emitted) {
150 r600_emit_streamout_end(ctx);
151 ctx->streamout.suspended = true;
152 }
153 }
154
155 void r600_postflush_resume_features(struct r600_common_context *ctx)
156 {
157 if (ctx->streamout.suspended) {
158 ctx->streamout.append_bitmask = ctx->streamout.enabled_mask;
159 r600_streamout_buffers_dirty(ctx);
160 }
161
162 /* resume queries */
163 if (!LIST_IS_EMPTY(&ctx->active_timer_queries))
164 r600_resume_timer_queries(ctx);
165 if (ctx->nontimer_queries_suspended_by_flush) {
166 ctx->nontimer_queries_suspended_by_flush = false;
167 r600_resume_nontimer_queries(ctx);
168 }
169 }
170
171 static void r600_flush_from_st(struct pipe_context *ctx,
172 struct pipe_fence_handle **fence,
173 unsigned flags)
174 {
175 struct pipe_screen *screen = ctx->screen;
176 struct r600_common_context *rctx = (struct r600_common_context *)ctx;
177 unsigned rflags = 0;
178 struct pipe_fence_handle *gfx_fence = NULL;
179 struct pipe_fence_handle *sdma_fence = NULL;
180
181 if (flags & PIPE_FLUSH_END_OF_FRAME)
182 rflags |= RADEON_FLUSH_END_OF_FRAME;
183
184 if (rctx->dma.cs) {
185 rctx->dma.flush(rctx, rflags, fence ? &sdma_fence : NULL);
186 }
187 rctx->gfx.flush(rctx, rflags, fence ? &gfx_fence : NULL);
188
189 /* Both engines can signal out of order, so we need to keep both fences. */
190 if (gfx_fence || sdma_fence) {
191 struct r600_multi_fence *multi_fence =
192 CALLOC_STRUCT(r600_multi_fence);
193 if (!multi_fence)
194 return;
195
196 multi_fence->reference.count = 1;
197 multi_fence->gfx = gfx_fence;
198 multi_fence->sdma = sdma_fence;
199
200 screen->fence_reference(screen, fence, NULL);
201 *fence = (struct pipe_fence_handle*)multi_fence;
202 }
203 }
204
205 static void r600_flush_dma_ring(void *ctx, unsigned flags,
206 struct pipe_fence_handle **fence)
207 {
208 struct r600_common_context *rctx = (struct r600_common_context *)ctx;
209 struct radeon_winsys_cs *cs = rctx->dma.cs;
210
211 if (cs->cdw)
212 rctx->ws->cs_flush(cs, flags, &rctx->last_sdma_fence, 0);
213 if (fence)
214 rctx->ws->fence_reference(fence, rctx->last_sdma_fence);
215 }
216
217 static enum pipe_reset_status r600_get_reset_status(struct pipe_context *ctx)
218 {
219 struct r600_common_context *rctx = (struct r600_common_context *)ctx;
220 unsigned latest = rctx->ws->query_value(rctx->ws,
221 RADEON_GPU_RESET_COUNTER);
222
223 if (rctx->gpu_reset_counter == latest)
224 return PIPE_NO_RESET;
225
226 rctx->gpu_reset_counter = latest;
227 return PIPE_UNKNOWN_CONTEXT_RESET;
228 }
229
230 static void r600_set_debug_callback(struct pipe_context *ctx,
231 const struct pipe_debug_callback *cb)
232 {
233 struct r600_common_context *rctx = (struct r600_common_context *)ctx;
234
235 if (cb)
236 rctx->debug = *cb;
237 else
238 memset(&rctx->debug, 0, sizeof(rctx->debug));
239 }
240
241 bool r600_common_context_init(struct r600_common_context *rctx,
242 struct r600_common_screen *rscreen)
243 {
244 util_slab_create(&rctx->pool_transfers,
245 sizeof(struct r600_transfer), 64,
246 UTIL_SLAB_SINGLETHREADED);
247
248 rctx->screen = rscreen;
249 rctx->ws = rscreen->ws;
250 rctx->family = rscreen->family;
251 rctx->chip_class = rscreen->chip_class;
252
253 if (rscreen->chip_class >= CIK)
254 rctx->max_db = MAX2(8, rscreen->info.r600_num_backends);
255 else if (rscreen->chip_class >= EVERGREEN)
256 rctx->max_db = 8;
257 else
258 rctx->max_db = 4;
259
260 rctx->b.transfer_map = u_transfer_map_vtbl;
261 rctx->b.transfer_flush_region = u_transfer_flush_region_vtbl;
262 rctx->b.transfer_unmap = u_transfer_unmap_vtbl;
263 rctx->b.transfer_inline_write = u_default_transfer_inline_write;
264 rctx->b.memory_barrier = r600_memory_barrier;
265 rctx->b.flush = r600_flush_from_st;
266 rctx->b.set_debug_callback = r600_set_debug_callback;
267
268 if (rscreen->info.drm_major == 2 && rscreen->info.drm_minor >= 43) {
269 rctx->b.get_device_reset_status = r600_get_reset_status;
270 rctx->gpu_reset_counter =
271 rctx->ws->query_value(rctx->ws,
272 RADEON_GPU_RESET_COUNTER);
273 }
274
275 LIST_INITHEAD(&rctx->texture_buffers);
276
277 r600_init_context_texture_functions(rctx);
278 r600_streamout_init(rctx);
279 r600_query_init(rctx);
280 cayman_init_msaa(&rctx->b);
281
282 rctx->allocator_so_filled_size = u_suballocator_create(&rctx->b, 4096, 4,
283 0, PIPE_USAGE_DEFAULT, TRUE);
284 if (!rctx->allocator_so_filled_size)
285 return false;
286
287 rctx->uploader = u_upload_create(&rctx->b, 1024 * 1024,
288 PIPE_BIND_INDEX_BUFFER |
289 PIPE_BIND_CONSTANT_BUFFER, PIPE_USAGE_STREAM);
290 if (!rctx->uploader)
291 return false;
292
293 rctx->ctx = rctx->ws->ctx_create(rctx->ws);
294 if (!rctx->ctx)
295 return false;
296
297 if (rscreen->info.r600_has_dma && !(rscreen->debug_flags & DBG_NO_ASYNC_DMA)) {
298 rctx->dma.cs = rctx->ws->cs_create(rctx->ctx, RING_DMA,
299 r600_flush_dma_ring,
300 rctx, NULL);
301 rctx->dma.flush = r600_flush_dma_ring;
302 }
303
304 return true;
305 }
306
307 void r600_common_context_cleanup(struct r600_common_context *rctx)
308 {
309 if (rctx->gfx.cs)
310 rctx->ws->cs_destroy(rctx->gfx.cs);
311 if (rctx->dma.cs)
312 rctx->ws->cs_destroy(rctx->dma.cs);
313 if (rctx->ctx)
314 rctx->ws->ctx_destroy(rctx->ctx);
315
316 if (rctx->uploader) {
317 u_upload_destroy(rctx->uploader);
318 }
319
320 util_slab_destroy(&rctx->pool_transfers);
321
322 if (rctx->allocator_so_filled_size) {
323 u_suballocator_destroy(rctx->allocator_so_filled_size);
324 }
325 rctx->ws->fence_reference(&rctx->last_sdma_fence, NULL);
326 }
327
328 void r600_context_add_resource_size(struct pipe_context *ctx, struct pipe_resource *r)
329 {
330 struct r600_common_context *rctx = (struct r600_common_context *)ctx;
331 struct r600_resource *rr = (struct r600_resource *)r;
332
333 if (!r) {
334 return;
335 }
336
337 /*
338 * The idea is to compute a gross estimate of memory requirement of
339 * each draw call. After each draw call, memory will be precisely
340 * accounted. So the uncertainty is only on the current draw call.
341 * In practice this gave very good estimate (+/- 10% of the target
342 * memory limit).
343 */
344 if (rr->domains & RADEON_DOMAIN_GTT) {
345 rctx->gtt += rr->buf->size;
346 }
347 if (rr->domains & RADEON_DOMAIN_VRAM) {
348 rctx->vram += rr->buf->size;
349 }
350 }
351
352 /*
353 * pipe_screen
354 */
355
356 static const struct debug_named_value common_debug_options[] = {
357 /* logging */
358 { "tex", DBG_TEX, "Print texture info" },
359 { "compute", DBG_COMPUTE, "Print compute info" },
360 { "vm", DBG_VM, "Print virtual addresses when creating resources" },
361 { "trace_cs", DBG_TRACE_CS, "Trace cs and write rlockup_<csid>.c file with faulty cs" },
362 { "info", DBG_INFO, "Print driver information" },
363
364 /* shaders */
365 { "fs", DBG_FS, "Print fetch shaders" },
366 { "vs", DBG_VS, "Print vertex shaders" },
367 { "gs", DBG_GS, "Print geometry shaders" },
368 { "ps", DBG_PS, "Print pixel shaders" },
369 { "cs", DBG_CS, "Print compute shaders" },
370 { "tcs", DBG_TCS, "Print tessellation control shaders" },
371 { "tes", DBG_TES, "Print tessellation evaluation shaders" },
372 { "noir", DBG_NO_IR, "Don't print the LLVM IR"},
373 { "notgsi", DBG_NO_TGSI, "Don't print the TGSI"},
374 { "noasm", DBG_NO_ASM, "Don't print disassembled shaders"},
375
376 /* features */
377 { "nodma", DBG_NO_ASYNC_DMA, "Disable asynchronous DMA" },
378 { "nohyperz", DBG_NO_HYPERZ, "Disable Hyper-Z" },
379 /* GL uses the word INVALIDATE, gallium uses the word DISCARD */
380 { "noinvalrange", DBG_NO_DISCARD_RANGE, "Disable handling of INVALIDATE_RANGE map flags" },
381 { "no2d", DBG_NO_2D_TILING, "Disable 2D tiling" },
382 { "notiling", DBG_NO_TILING, "Disable tiling" },
383 { "switch_on_eop", DBG_SWITCH_ON_EOP, "Program WD/IA to switch on end-of-packet." },
384 { "forcedma", DBG_FORCE_DMA, "Use asynchronous DMA for all operations when possible." },
385 { "precompile", DBG_PRECOMPILE, "Compile one shader variant at shader creation." },
386 { "nowc", DBG_NO_WC, "Disable GTT write combining" },
387 { "check_vm", DBG_CHECK_VM, "Check VM faults and dump debug info." },
388 { "nodcc", DBG_NO_DCC, "Disable DCC." },
389 { "nodccclear", DBG_NO_DCC_CLEAR, "Disable DCC fast clear." },
390 { "norbplus", DBG_NO_RB_PLUS, "Disable RB+ on Stoney." },
391
392 DEBUG_NAMED_VALUE_END /* must be last */
393 };
394
395 static const char* r600_get_vendor(struct pipe_screen* pscreen)
396 {
397 return "X.Org";
398 }
399
400 static const char* r600_get_device_vendor(struct pipe_screen* pscreen)
401 {
402 return "AMD";
403 }
404
405 static const char* r600_get_chip_name(struct r600_common_screen *rscreen)
406 {
407 switch (rscreen->info.family) {
408 case CHIP_R600: return "AMD R600";
409 case CHIP_RV610: return "AMD RV610";
410 case CHIP_RV630: return "AMD RV630";
411 case CHIP_RV670: return "AMD RV670";
412 case CHIP_RV620: return "AMD RV620";
413 case CHIP_RV635: return "AMD RV635";
414 case CHIP_RS780: return "AMD RS780";
415 case CHIP_RS880: return "AMD RS880";
416 case CHIP_RV770: return "AMD RV770";
417 case CHIP_RV730: return "AMD RV730";
418 case CHIP_RV710: return "AMD RV710";
419 case CHIP_RV740: return "AMD RV740";
420 case CHIP_CEDAR: return "AMD CEDAR";
421 case CHIP_REDWOOD: return "AMD REDWOOD";
422 case CHIP_JUNIPER: return "AMD JUNIPER";
423 case CHIP_CYPRESS: return "AMD CYPRESS";
424 case CHIP_HEMLOCK: return "AMD HEMLOCK";
425 case CHIP_PALM: return "AMD PALM";
426 case CHIP_SUMO: return "AMD SUMO";
427 case CHIP_SUMO2: return "AMD SUMO2";
428 case CHIP_BARTS: return "AMD BARTS";
429 case CHIP_TURKS: return "AMD TURKS";
430 case CHIP_CAICOS: return "AMD CAICOS";
431 case CHIP_CAYMAN: return "AMD CAYMAN";
432 case CHIP_ARUBA: return "AMD ARUBA";
433 case CHIP_TAHITI: return "AMD TAHITI";
434 case CHIP_PITCAIRN: return "AMD PITCAIRN";
435 case CHIP_VERDE: return "AMD CAPE VERDE";
436 case CHIP_OLAND: return "AMD OLAND";
437 case CHIP_HAINAN: return "AMD HAINAN";
438 case CHIP_BONAIRE: return "AMD BONAIRE";
439 case CHIP_KAVERI: return "AMD KAVERI";
440 case CHIP_KABINI: return "AMD KABINI";
441 case CHIP_HAWAII: return "AMD HAWAII";
442 case CHIP_MULLINS: return "AMD MULLINS";
443 case CHIP_TONGA: return "AMD TONGA";
444 case CHIP_ICELAND: return "AMD ICELAND";
445 case CHIP_CARRIZO: return "AMD CARRIZO";
446 case CHIP_FIJI: return "AMD FIJI";
447 case CHIP_STONEY: return "AMD STONEY";
448 default: return "AMD unknown";
449 }
450 }
451
452 static const char* r600_get_name(struct pipe_screen* pscreen)
453 {
454 struct r600_common_screen *rscreen = (struct r600_common_screen*)pscreen;
455
456 return rscreen->renderer_string;
457 }
458
459 static float r600_get_paramf(struct pipe_screen* pscreen,
460 enum pipe_capf param)
461 {
462 struct r600_common_screen *rscreen = (struct r600_common_screen *)pscreen;
463
464 switch (param) {
465 case PIPE_CAPF_MAX_LINE_WIDTH:
466 case PIPE_CAPF_MAX_LINE_WIDTH_AA:
467 case PIPE_CAPF_MAX_POINT_WIDTH:
468 case PIPE_CAPF_MAX_POINT_WIDTH_AA:
469 if (rscreen->family >= CHIP_CEDAR)
470 return 16384.0f;
471 else
472 return 8192.0f;
473 case PIPE_CAPF_MAX_TEXTURE_ANISOTROPY:
474 return 16.0f;
475 case PIPE_CAPF_MAX_TEXTURE_LOD_BIAS:
476 return 16.0f;
477 case PIPE_CAPF_GUARD_BAND_LEFT:
478 case PIPE_CAPF_GUARD_BAND_TOP:
479 case PIPE_CAPF_GUARD_BAND_RIGHT:
480 case PIPE_CAPF_GUARD_BAND_BOTTOM:
481 return 0.0f;
482 }
483 return 0.0f;
484 }
485
486 static int r600_get_video_param(struct pipe_screen *screen,
487 enum pipe_video_profile profile,
488 enum pipe_video_entrypoint entrypoint,
489 enum pipe_video_cap param)
490 {
491 switch (param) {
492 case PIPE_VIDEO_CAP_SUPPORTED:
493 return vl_profile_supported(screen, profile, entrypoint);
494 case PIPE_VIDEO_CAP_NPOT_TEXTURES:
495 return 1;
496 case PIPE_VIDEO_CAP_MAX_WIDTH:
497 case PIPE_VIDEO_CAP_MAX_HEIGHT:
498 return vl_video_buffer_max_size(screen);
499 case PIPE_VIDEO_CAP_PREFERED_FORMAT:
500 return PIPE_FORMAT_NV12;
501 case PIPE_VIDEO_CAP_PREFERS_INTERLACED:
502 return false;
503 case PIPE_VIDEO_CAP_SUPPORTS_INTERLACED:
504 return false;
505 case PIPE_VIDEO_CAP_SUPPORTS_PROGRESSIVE:
506 return true;
507 case PIPE_VIDEO_CAP_MAX_LEVEL:
508 return vl_level_supported(screen, profile);
509 default:
510 return 0;
511 }
512 }
513
514 const char *r600_get_llvm_processor_name(enum radeon_family family)
515 {
516 switch (family) {
517 case CHIP_R600:
518 case CHIP_RV630:
519 case CHIP_RV635:
520 case CHIP_RV670:
521 return "r600";
522 case CHIP_RV610:
523 case CHIP_RV620:
524 case CHIP_RS780:
525 case CHIP_RS880:
526 return "rs880";
527 case CHIP_RV710:
528 return "rv710";
529 case CHIP_RV730:
530 return "rv730";
531 case CHIP_RV740:
532 case CHIP_RV770:
533 return "rv770";
534 case CHIP_PALM:
535 case CHIP_CEDAR:
536 return "cedar";
537 case CHIP_SUMO:
538 case CHIP_SUMO2:
539 return "sumo";
540 case CHIP_REDWOOD:
541 return "redwood";
542 case CHIP_JUNIPER:
543 return "juniper";
544 case CHIP_HEMLOCK:
545 case CHIP_CYPRESS:
546 return "cypress";
547 case CHIP_BARTS:
548 return "barts";
549 case CHIP_TURKS:
550 return "turks";
551 case CHIP_CAICOS:
552 return "caicos";
553 case CHIP_CAYMAN:
554 case CHIP_ARUBA:
555 return "cayman";
556
557 case CHIP_TAHITI: return "tahiti";
558 case CHIP_PITCAIRN: return "pitcairn";
559 case CHIP_VERDE: return "verde";
560 case CHIP_OLAND: return "oland";
561 case CHIP_HAINAN: return "hainan";
562 case CHIP_BONAIRE: return "bonaire";
563 case CHIP_KABINI: return "kabini";
564 case CHIP_KAVERI: return "kaveri";
565 case CHIP_HAWAII: return "hawaii";
566 case CHIP_MULLINS:
567 return "mullins";
568 case CHIP_TONGA: return "tonga";
569 case CHIP_ICELAND: return "iceland";
570 case CHIP_CARRIZO: return "carrizo";
571 #if HAVE_LLVM <= 0x0307
572 case CHIP_FIJI: return "tonga";
573 case CHIP_STONEY: return "carrizo";
574 #else
575 case CHIP_FIJI: return "fiji";
576 case CHIP_STONEY: return "stoney";
577 #endif
578 default: return "";
579 }
580 }
581
582 static int r600_get_compute_param(struct pipe_screen *screen,
583 enum pipe_compute_cap param,
584 void *ret)
585 {
586 struct r600_common_screen *rscreen = (struct r600_common_screen *)screen;
587
588 //TODO: select these params by asic
589 switch (param) {
590 case PIPE_COMPUTE_CAP_IR_TARGET: {
591 const char *gpu;
592 const char *triple;
593 if (rscreen->family <= CHIP_ARUBA || HAVE_LLVM < 0x0306) {
594 triple = "r600--";
595 } else {
596 triple = "amdgcn--";
597 }
598 switch(rscreen->family) {
599 /* Clang < 3.6 is missing Hainan in its list of
600 * GPUs, so we need to use the name of a similar GPU.
601 */
602 #if HAVE_LLVM < 0x0306
603 case CHIP_HAINAN:
604 gpu = "oland";
605 break;
606 #endif
607 default:
608 gpu = r600_get_llvm_processor_name(rscreen->family);
609 break;
610 }
611 if (ret) {
612 sprintf(ret, "%s-%s", gpu, triple);
613 }
614 /* +2 for dash and terminating NIL byte */
615 return (strlen(triple) + strlen(gpu) + 2) * sizeof(char);
616 }
617 case PIPE_COMPUTE_CAP_GRID_DIMENSION:
618 if (ret) {
619 uint64_t *grid_dimension = ret;
620 grid_dimension[0] = 3;
621 }
622 return 1 * sizeof(uint64_t);
623
624 case PIPE_COMPUTE_CAP_MAX_GRID_SIZE:
625 if (ret) {
626 uint64_t *grid_size = ret;
627 grid_size[0] = 65535;
628 grid_size[1] = 65535;
629 grid_size[2] = 1;
630 }
631 return 3 * sizeof(uint64_t) ;
632
633 case PIPE_COMPUTE_CAP_MAX_BLOCK_SIZE:
634 if (ret) {
635 uint64_t *block_size = ret;
636 block_size[0] = 256;
637 block_size[1] = 256;
638 block_size[2] = 256;
639 }
640 return 3 * sizeof(uint64_t);
641
642 case PIPE_COMPUTE_CAP_MAX_THREADS_PER_BLOCK:
643 if (ret) {
644 uint64_t *max_threads_per_block = ret;
645 *max_threads_per_block = 256;
646 }
647 return sizeof(uint64_t);
648
649 case PIPE_COMPUTE_CAP_MAX_GLOBAL_SIZE:
650 if (ret) {
651 uint64_t *max_global_size = ret;
652 uint64_t max_mem_alloc_size;
653
654 r600_get_compute_param(screen,
655 PIPE_COMPUTE_CAP_MAX_MEM_ALLOC_SIZE,
656 &max_mem_alloc_size);
657
658 /* In OpenCL, the MAX_MEM_ALLOC_SIZE must be at least
659 * 1/4 of the MAX_GLOBAL_SIZE. Since the
660 * MAX_MEM_ALLOC_SIZE is fixed for older kernels,
661 * make sure we never report more than
662 * 4 * MAX_MEM_ALLOC_SIZE.
663 */
664 *max_global_size = MIN2(4 * max_mem_alloc_size,
665 rscreen->info.gart_size +
666 rscreen->info.vram_size);
667 }
668 return sizeof(uint64_t);
669
670 case PIPE_COMPUTE_CAP_MAX_LOCAL_SIZE:
671 if (ret) {
672 uint64_t *max_local_size = ret;
673 /* Value reported by the closed source driver. */
674 *max_local_size = 32768;
675 }
676 return sizeof(uint64_t);
677
678 case PIPE_COMPUTE_CAP_MAX_INPUT_SIZE:
679 if (ret) {
680 uint64_t *max_input_size = ret;
681 /* Value reported by the closed source driver. */
682 *max_input_size = 1024;
683 }
684 return sizeof(uint64_t);
685
686 case PIPE_COMPUTE_CAP_MAX_MEM_ALLOC_SIZE:
687 if (ret) {
688 uint64_t *max_mem_alloc_size = ret;
689
690 /* XXX: The limit in older kernels is 256 MB. We
691 * should add a query here for newer kernels.
692 */
693 *max_mem_alloc_size = 256 * 1024 * 1024;
694 }
695 return sizeof(uint64_t);
696
697 case PIPE_COMPUTE_CAP_MAX_CLOCK_FREQUENCY:
698 if (ret) {
699 uint32_t *max_clock_frequency = ret;
700 *max_clock_frequency = rscreen->info.max_sclk;
701 }
702 return sizeof(uint32_t);
703
704 case PIPE_COMPUTE_CAP_MAX_COMPUTE_UNITS:
705 if (ret) {
706 uint32_t *max_compute_units = ret;
707 *max_compute_units = rscreen->info.max_compute_units;
708 }
709 return sizeof(uint32_t);
710
711 case PIPE_COMPUTE_CAP_IMAGES_SUPPORTED:
712 if (ret) {
713 uint32_t *images_supported = ret;
714 *images_supported = 0;
715 }
716 return sizeof(uint32_t);
717 case PIPE_COMPUTE_CAP_MAX_PRIVATE_SIZE:
718 break; /* unused */
719 case PIPE_COMPUTE_CAP_SUBGROUP_SIZE:
720 if (ret) {
721 uint32_t *subgroup_size = ret;
722 *subgroup_size = r600_wavefront_size(rscreen->family);
723 }
724 return sizeof(uint32_t);
725 }
726
727 fprintf(stderr, "unknown PIPE_COMPUTE_CAP %d\n", param);
728 return 0;
729 }
730
731 static uint64_t r600_get_timestamp(struct pipe_screen *screen)
732 {
733 struct r600_common_screen *rscreen = (struct r600_common_screen*)screen;
734
735 return 1000000 * rscreen->ws->query_value(rscreen->ws, RADEON_TIMESTAMP) /
736 rscreen->info.r600_clock_crystal_freq;
737 }
738
739 static void r600_fence_reference(struct pipe_screen *screen,
740 struct pipe_fence_handle **dst,
741 struct pipe_fence_handle *src)
742 {
743 struct radeon_winsys *ws = ((struct r600_common_screen*)screen)->ws;
744 struct r600_multi_fence **rdst = (struct r600_multi_fence **)dst;
745 struct r600_multi_fence *rsrc = (struct r600_multi_fence *)src;
746
747 if (pipe_reference(&(*rdst)->reference, &rsrc->reference)) {
748 ws->fence_reference(&(*rdst)->gfx, NULL);
749 ws->fence_reference(&(*rdst)->sdma, NULL);
750 FREE(*rdst);
751 }
752 *rdst = rsrc;
753 }
754
755 static boolean r600_fence_finish(struct pipe_screen *screen,
756 struct pipe_fence_handle *fence,
757 uint64_t timeout)
758 {
759 struct radeon_winsys *rws = ((struct r600_common_screen*)screen)->ws;
760 struct r600_multi_fence *rfence = (struct r600_multi_fence *)fence;
761 int64_t abs_timeout = os_time_get_absolute_timeout(timeout);
762
763 if (rfence->sdma) {
764 if (!rws->fence_wait(rws, rfence->sdma, timeout))
765 return false;
766
767 /* Recompute the timeout after waiting. */
768 if (timeout && timeout != PIPE_TIMEOUT_INFINITE) {
769 int64_t time = os_time_get_nano();
770 timeout = abs_timeout > time ? abs_timeout - time : 0;
771 }
772 }
773
774 if (!rfence->gfx)
775 return true;
776
777 return rws->fence_wait(rws, rfence->gfx, timeout);
778 }
779
780 static bool r600_interpret_tiling(struct r600_common_screen *rscreen,
781 uint32_t tiling_config)
782 {
783 switch ((tiling_config & 0xe) >> 1) {
784 case 0:
785 rscreen->tiling_info.num_channels = 1;
786 break;
787 case 1:
788 rscreen->tiling_info.num_channels = 2;
789 break;
790 case 2:
791 rscreen->tiling_info.num_channels = 4;
792 break;
793 case 3:
794 rscreen->tiling_info.num_channels = 8;
795 break;
796 default:
797 return false;
798 }
799
800 switch ((tiling_config & 0x30) >> 4) {
801 case 0:
802 rscreen->tiling_info.num_banks = 4;
803 break;
804 case 1:
805 rscreen->tiling_info.num_banks = 8;
806 break;
807 default:
808 return false;
809
810 }
811 switch ((tiling_config & 0xc0) >> 6) {
812 case 0:
813 rscreen->tiling_info.group_bytes = 256;
814 break;
815 case 1:
816 rscreen->tiling_info.group_bytes = 512;
817 break;
818 default:
819 return false;
820 }
821 return true;
822 }
823
824 static bool evergreen_interpret_tiling(struct r600_common_screen *rscreen,
825 uint32_t tiling_config)
826 {
827 switch (tiling_config & 0xf) {
828 case 0:
829 rscreen->tiling_info.num_channels = 1;
830 break;
831 case 1:
832 rscreen->tiling_info.num_channels = 2;
833 break;
834 case 2:
835 rscreen->tiling_info.num_channels = 4;
836 break;
837 case 3:
838 rscreen->tiling_info.num_channels = 8;
839 break;
840 default:
841 return false;
842 }
843
844 switch ((tiling_config & 0xf0) >> 4) {
845 case 0:
846 rscreen->tiling_info.num_banks = 4;
847 break;
848 case 1:
849 rscreen->tiling_info.num_banks = 8;
850 break;
851 case 2:
852 rscreen->tiling_info.num_banks = 16;
853 break;
854 default:
855 return false;
856 }
857
858 switch ((tiling_config & 0xf00) >> 8) {
859 case 0:
860 rscreen->tiling_info.group_bytes = 256;
861 break;
862 case 1:
863 rscreen->tiling_info.group_bytes = 512;
864 break;
865 default:
866 return false;
867 }
868 return true;
869 }
870
871 static bool r600_init_tiling(struct r600_common_screen *rscreen)
872 {
873 uint32_t tiling_config = rscreen->info.r600_tiling_config;
874
875 /* set default group bytes, overridden by tiling info ioctl */
876 if (rscreen->chip_class <= R700) {
877 rscreen->tiling_info.group_bytes = 256;
878 } else {
879 rscreen->tiling_info.group_bytes = 512;
880 }
881
882 if (!tiling_config)
883 return true;
884
885 if (rscreen->chip_class <= R700) {
886 return r600_interpret_tiling(rscreen, tiling_config);
887 } else {
888 return evergreen_interpret_tiling(rscreen, tiling_config);
889 }
890 }
891
892 struct pipe_resource *r600_resource_create_common(struct pipe_screen *screen,
893 const struct pipe_resource *templ)
894 {
895 if (templ->target == PIPE_BUFFER) {
896 return r600_buffer_create(screen, templ, 4096);
897 } else {
898 return r600_texture_create(screen, templ);
899 }
900 }
901
902 bool r600_common_screen_init(struct r600_common_screen *rscreen,
903 struct radeon_winsys *ws)
904 {
905 char llvm_string[32] = {};
906
907 ws->query_info(ws, &rscreen->info);
908
909 #if HAVE_LLVM
910 snprintf(llvm_string, sizeof(llvm_string),
911 ", LLVM %i.%i.%i", (HAVE_LLVM >> 8) & 0xff,
912 HAVE_LLVM & 0xff, MESA_LLVM_VERSION_PATCH);
913 #endif
914
915 snprintf(rscreen->renderer_string, sizeof(rscreen->renderer_string),
916 "%s (DRM %i.%i.%i%s)",
917 r600_get_chip_name(rscreen), rscreen->info.drm_major,
918 rscreen->info.drm_minor, rscreen->info.drm_patchlevel,
919 llvm_string);
920
921 rscreen->b.get_name = r600_get_name;
922 rscreen->b.get_vendor = r600_get_vendor;
923 rscreen->b.get_device_vendor = r600_get_device_vendor;
924 rscreen->b.get_compute_param = r600_get_compute_param;
925 rscreen->b.get_paramf = r600_get_paramf;
926 rscreen->b.get_timestamp = r600_get_timestamp;
927 rscreen->b.fence_finish = r600_fence_finish;
928 rscreen->b.fence_reference = r600_fence_reference;
929 rscreen->b.resource_destroy = u_resource_destroy_vtbl;
930 rscreen->b.resource_from_user_memory = r600_buffer_from_user_memory;
931
932 if (rscreen->info.has_uvd) {
933 rscreen->b.get_video_param = rvid_get_video_param;
934 rscreen->b.is_video_format_supported = rvid_is_format_supported;
935 } else {
936 rscreen->b.get_video_param = r600_get_video_param;
937 rscreen->b.is_video_format_supported = vl_video_buffer_is_format_supported;
938 }
939
940 r600_init_screen_texture_functions(rscreen);
941 r600_init_screen_query_functions(rscreen);
942
943 rscreen->ws = ws;
944 rscreen->family = rscreen->info.family;
945 rscreen->chip_class = rscreen->info.chip_class;
946 rscreen->debug_flags = debug_get_flags_option("R600_DEBUG", common_debug_options, 0);
947
948 if (!r600_init_tiling(rscreen)) {
949 return false;
950 }
951 util_format_s3tc_init();
952 pipe_mutex_init(rscreen->aux_context_lock);
953 pipe_mutex_init(rscreen->gpu_load_mutex);
954
955 if (((rscreen->info.drm_major == 2 && rscreen->info.drm_minor >= 28) ||
956 rscreen->info.drm_major == 3) &&
957 (rscreen->debug_flags & DBG_TRACE_CS)) {
958 rscreen->trace_bo = (struct r600_resource*)pipe_buffer_create(&rscreen->b,
959 PIPE_BIND_CUSTOM,
960 PIPE_USAGE_STAGING,
961 4096);
962 if (rscreen->trace_bo) {
963 rscreen->trace_ptr = rscreen->ws->buffer_map(rscreen->trace_bo->buf, NULL,
964 PIPE_TRANSFER_UNSYNCHRONIZED);
965 }
966 }
967
968 if (rscreen->debug_flags & DBG_INFO) {
969 printf("pci_id = 0x%x\n", rscreen->info.pci_id);
970 printf("family = %i\n", rscreen->info.family);
971 printf("chip_class = %i\n", rscreen->info.chip_class);
972 printf("gart_size = %i MB\n", (int)(rscreen->info.gart_size >> 20));
973 printf("vram_size = %i MB\n", (int)(rscreen->info.vram_size >> 20));
974 printf("max_sclk = %i\n", rscreen->info.max_sclk);
975 printf("max_compute_units = %i\n", rscreen->info.max_compute_units);
976 printf("max_se = %i\n", rscreen->info.max_se);
977 printf("max_sh_per_se = %i\n", rscreen->info.max_sh_per_se);
978 printf("drm = %i.%i.%i\n", rscreen->info.drm_major,
979 rscreen->info.drm_minor, rscreen->info.drm_patchlevel);
980 printf("has_uvd = %i\n", rscreen->info.has_uvd);
981 printf("vce_fw_version = %i\n", rscreen->info.vce_fw_version);
982 printf("r600_num_backends = %i\n", rscreen->info.r600_num_backends);
983 printf("r600_clock_crystal_freq = %i\n", rscreen->info.r600_clock_crystal_freq);
984 printf("r600_tiling_config = 0x%x\n", rscreen->info.r600_tiling_config);
985 printf("r600_num_tile_pipes = %i\n", rscreen->info.r600_num_tile_pipes);
986 printf("r600_max_pipes = %i\n", rscreen->info.r600_max_pipes);
987 printf("r600_virtual_address = %i\n", rscreen->info.r600_virtual_address);
988 printf("r600_has_dma = %i\n", rscreen->info.r600_has_dma);
989 printf("r600_backend_map = %i\n", rscreen->info.r600_backend_map);
990 printf("r600_backend_map_valid = %i\n", rscreen->info.r600_backend_map_valid);
991 printf("si_tile_mode_array_valid = %i\n", rscreen->info.si_tile_mode_array_valid);
992 printf("cik_macrotile_mode_array_valid = %i\n", rscreen->info.cik_macrotile_mode_array_valid);
993 }
994 return true;
995 }
996
997 void r600_destroy_common_screen(struct r600_common_screen *rscreen)
998 {
999 r600_perfcounters_destroy(rscreen);
1000 r600_gpu_load_kill_thread(rscreen);
1001
1002 pipe_mutex_destroy(rscreen->gpu_load_mutex);
1003 pipe_mutex_destroy(rscreen->aux_context_lock);
1004 rscreen->aux_context->destroy(rscreen->aux_context);
1005
1006 if (rscreen->trace_bo)
1007 pipe_resource_reference((struct pipe_resource**)&rscreen->trace_bo, NULL);
1008
1009 rscreen->ws->destroy(rscreen->ws);
1010 FREE(rscreen);
1011 }
1012
1013 bool r600_can_dump_shader(struct r600_common_screen *rscreen,
1014 const struct tgsi_token *tokens)
1015 {
1016 /* Compute shader don't have tgsi_tokens */
1017 if (!tokens)
1018 return (rscreen->debug_flags & DBG_CS) != 0;
1019
1020 switch (tgsi_get_processor_type(tokens)) {
1021 case TGSI_PROCESSOR_VERTEX:
1022 return (rscreen->debug_flags & DBG_VS) != 0;
1023 case TGSI_PROCESSOR_TESS_CTRL:
1024 return (rscreen->debug_flags & DBG_TCS) != 0;
1025 case TGSI_PROCESSOR_TESS_EVAL:
1026 return (rscreen->debug_flags & DBG_TES) != 0;
1027 case TGSI_PROCESSOR_GEOMETRY:
1028 return (rscreen->debug_flags & DBG_GS) != 0;
1029 case TGSI_PROCESSOR_FRAGMENT:
1030 return (rscreen->debug_flags & DBG_PS) != 0;
1031 case TGSI_PROCESSOR_COMPUTE:
1032 return (rscreen->debug_flags & DBG_CS) != 0;
1033 default:
1034 return false;
1035 }
1036 }
1037
1038 void r600_screen_clear_buffer(struct r600_common_screen *rscreen, struct pipe_resource *dst,
1039 unsigned offset, unsigned size, unsigned value,
1040 bool is_framebuffer)
1041 {
1042 struct r600_common_context *rctx = (struct r600_common_context*)rscreen->aux_context;
1043
1044 pipe_mutex_lock(rscreen->aux_context_lock);
1045 rctx->clear_buffer(&rctx->b, dst, offset, size, value, is_framebuffer);
1046 rscreen->aux_context->flush(rscreen->aux_context, NULL, 0);
1047 pipe_mutex_unlock(rscreen->aux_context_lock);
1048 }