ac: add radeon_info::num_good_cu_per_sh
[mesa.git] / src / gallium / winsys / radeon / drm / radeon_drm_winsys.c
1 /*
2 * Copyright © 2009 Corbin Simpson
3 * Copyright © 2011 Marek Olšák <maraeo@gmail.com>
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining
7 * a copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
16 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17 * NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS, AUTHORS
18 * AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21 * USE OR OTHER DEALINGS IN THE SOFTWARE.
22 *
23 * The above copyright notice and this permission notice (including the
24 * next paragraph) shall be included in all copies or substantial portions
25 * of the Software.
26 */
27
28 #include "radeon_drm_bo.h"
29 #include "radeon_drm_cs.h"
30 #include "radeon_drm_public.h"
31
32 #include "util/u_cpu_detect.h"
33 #include "util/u_memory.h"
34 #include "util/u_hash_table.h"
35
36 #include <xf86drm.h>
37 #include <stdio.h>
38 #include <sys/types.h>
39 #include <sys/stat.h>
40 #include <unistd.h>
41 #include <fcntl.h>
42 #include <radeon_surface.h>
43
44 static struct util_hash_table *fd_tab = NULL;
45 static mtx_t fd_tab_mutex = _MTX_INITIALIZER_NP;
46
47 /* Enable/disable feature access for one command stream.
48 * If enable == true, return true on success.
49 * Otherwise, return false.
50 *
51 * We basically do the same thing kernel does, because we have to deal
52 * with multiple contexts (here command streams) backed by one winsys. */
53 static bool radeon_set_fd_access(struct radeon_drm_cs *applier,
54 struct radeon_drm_cs **owner,
55 mtx_t *mutex,
56 unsigned request, const char *request_name,
57 bool enable)
58 {
59 struct drm_radeon_info info;
60 unsigned value = enable ? 1 : 0;
61
62 memset(&info, 0, sizeof(info));
63
64 mtx_lock(&*mutex);
65
66 /* Early exit if we are sure the request will fail. */
67 if (enable) {
68 if (*owner) {
69 mtx_unlock(&*mutex);
70 return false;
71 }
72 } else {
73 if (*owner != applier) {
74 mtx_unlock(&*mutex);
75 return false;
76 }
77 }
78
79 /* Pass through the request to the kernel. */
80 info.value = (unsigned long)&value;
81 info.request = request;
82 if (drmCommandWriteRead(applier->ws->fd, DRM_RADEON_INFO,
83 &info, sizeof(info)) != 0) {
84 mtx_unlock(&*mutex);
85 return false;
86 }
87
88 /* Update the rights in the winsys. */
89 if (enable) {
90 if (value) {
91 *owner = applier;
92 mtx_unlock(&*mutex);
93 return true;
94 }
95 } else {
96 *owner = NULL;
97 }
98
99 mtx_unlock(&*mutex);
100 return false;
101 }
102
103 static bool radeon_get_drm_value(int fd, unsigned request,
104 const char *errname, uint32_t *out)
105 {
106 struct drm_radeon_info info;
107 int retval;
108
109 memset(&info, 0, sizeof(info));
110
111 info.value = (unsigned long)out;
112 info.request = request;
113
114 retval = drmCommandWriteRead(fd, DRM_RADEON_INFO, &info, sizeof(info));
115 if (retval) {
116 if (errname) {
117 fprintf(stderr, "radeon: Failed to get %s, error number %d\n",
118 errname, retval);
119 }
120 return false;
121 }
122 return true;
123 }
124
125 /* Helper function to do the ioctls needed for setup and init. */
126 static bool do_winsys_init(struct radeon_drm_winsys *ws)
127 {
128 struct drm_radeon_gem_info gem_info;
129 int retval;
130 drmVersionPtr version;
131
132 memset(&gem_info, 0, sizeof(gem_info));
133
134 /* We do things in a specific order here.
135 *
136 * DRM version first. We need to be sure we're running on a KMS chipset.
137 * This is also for some features.
138 *
139 * Then, the PCI ID. This is essential and should return usable numbers
140 * for all Radeons. If this fails, we probably got handed an FD for some
141 * non-Radeon card.
142 *
143 * The GEM info is actually bogus on the kernel side, as well as our side
144 * (see radeon_gem_info_ioctl in radeon_gem.c) but that's alright because
145 * we don't actually use the info for anything yet.
146 *
147 * The GB and Z pipe requests should always succeed, but they might not
148 * return sensical values for all chipsets, but that's alright because
149 * the pipe drivers already know that.
150 */
151
152 /* Get DRM version. */
153 version = drmGetVersion(ws->fd);
154 if (version->version_major != 2 ||
155 version->version_minor < 12) {
156 fprintf(stderr, "%s: DRM version is %d.%d.%d but this driver is "
157 "only compatible with 2.12.0 (kernel 3.2) or later.\n",
158 __FUNCTION__,
159 version->version_major,
160 version->version_minor,
161 version->version_patchlevel);
162 drmFreeVersion(version);
163 return false;
164 }
165
166 ws->info.drm_major = version->version_major;
167 ws->info.drm_minor = version->version_minor;
168 ws->info.drm_patchlevel = version->version_patchlevel;
169 drmFreeVersion(version);
170
171 /* Get PCI ID. */
172 if (!radeon_get_drm_value(ws->fd, RADEON_INFO_DEVICE_ID, "PCI ID",
173 &ws->info.pci_id))
174 return false;
175
176 /* Check PCI ID. */
177 switch (ws->info.pci_id) {
178 #define CHIPSET(pci_id, name, cfamily) case pci_id: ws->info.family = CHIP_##cfamily; ws->gen = DRV_R300; break;
179 #include "pci_ids/r300_pci_ids.h"
180 #undef CHIPSET
181
182 #define CHIPSET(pci_id, name, cfamily) case pci_id: ws->info.family = CHIP_##cfamily; ws->gen = DRV_R600; break;
183 #include "pci_ids/r600_pci_ids.h"
184 #undef CHIPSET
185
186 #define CHIPSET(pci_id, cfamily) \
187 case pci_id: \
188 ws->info.family = CHIP_##cfamily; \
189 ws->info.name = #cfamily; \
190 ws->gen = DRV_SI; \
191 break;
192 #include "pci_ids/radeonsi_pci_ids.h"
193 #undef CHIPSET
194
195 default:
196 fprintf(stderr, "radeon: Invalid PCI ID.\n");
197 return false;
198 }
199
200 switch (ws->info.family) {
201 default:
202 case CHIP_UNKNOWN:
203 fprintf(stderr, "radeon: Unknown family.\n");
204 return false;
205 case CHIP_R300:
206 case CHIP_R350:
207 case CHIP_RV350:
208 case CHIP_RV370:
209 case CHIP_RV380:
210 case CHIP_RS400:
211 case CHIP_RC410:
212 case CHIP_RS480:
213 ws->info.chip_class = R300;
214 break;
215 case CHIP_R420: /* R4xx-based cores. */
216 case CHIP_R423:
217 case CHIP_R430:
218 case CHIP_R480:
219 case CHIP_R481:
220 case CHIP_RV410:
221 case CHIP_RS600:
222 case CHIP_RS690:
223 case CHIP_RS740:
224 ws->info.chip_class = R400;
225 break;
226 case CHIP_RV515: /* R5xx-based cores. */
227 case CHIP_R520:
228 case CHIP_RV530:
229 case CHIP_R580:
230 case CHIP_RV560:
231 case CHIP_RV570:
232 ws->info.chip_class = R500;
233 break;
234 case CHIP_R600:
235 case CHIP_RV610:
236 case CHIP_RV630:
237 case CHIP_RV670:
238 case CHIP_RV620:
239 case CHIP_RV635:
240 case CHIP_RS780:
241 case CHIP_RS880:
242 ws->info.chip_class = R600;
243 break;
244 case CHIP_RV770:
245 case CHIP_RV730:
246 case CHIP_RV710:
247 case CHIP_RV740:
248 ws->info.chip_class = R700;
249 break;
250 case CHIP_CEDAR:
251 case CHIP_REDWOOD:
252 case CHIP_JUNIPER:
253 case CHIP_CYPRESS:
254 case CHIP_HEMLOCK:
255 case CHIP_PALM:
256 case CHIP_SUMO:
257 case CHIP_SUMO2:
258 case CHIP_BARTS:
259 case CHIP_TURKS:
260 case CHIP_CAICOS:
261 ws->info.chip_class = EVERGREEN;
262 break;
263 case CHIP_CAYMAN:
264 case CHIP_ARUBA:
265 ws->info.chip_class = CAYMAN;
266 break;
267 case CHIP_TAHITI:
268 case CHIP_PITCAIRN:
269 case CHIP_VERDE:
270 case CHIP_OLAND:
271 case CHIP_HAINAN:
272 ws->info.chip_class = SI;
273 break;
274 case CHIP_BONAIRE:
275 case CHIP_KAVERI:
276 case CHIP_KABINI:
277 case CHIP_HAWAII:
278 case CHIP_MULLINS:
279 ws->info.chip_class = CIK;
280 break;
281 }
282
283 /* Set which chips don't have dedicated VRAM. */
284 switch (ws->info.family) {
285 case CHIP_RS400:
286 case CHIP_RC410:
287 case CHIP_RS480:
288 case CHIP_RS600:
289 case CHIP_RS690:
290 case CHIP_RS740:
291 case CHIP_RS780:
292 case CHIP_RS880:
293 case CHIP_PALM:
294 case CHIP_SUMO:
295 case CHIP_SUMO2:
296 case CHIP_ARUBA:
297 case CHIP_KAVERI:
298 case CHIP_KABINI:
299 case CHIP_MULLINS:
300 ws->info.has_dedicated_vram = false;
301 break;
302
303 default:
304 ws->info.has_dedicated_vram = true;
305 }
306
307 /* Check for dma */
308 ws->info.num_sdma_rings = 0;
309 /* DMA is disabled on R700. There is IB corruption and hangs. */
310 if (ws->info.chip_class >= EVERGREEN && ws->info.drm_minor >= 27) {
311 ws->info.num_sdma_rings = 1;
312 }
313
314 /* Check for UVD and VCE */
315 ws->info.has_hw_decode = false;
316 ws->info.vce_fw_version = 0x00000000;
317 if (ws->info.drm_minor >= 32) {
318 uint32_t value = RADEON_CS_RING_UVD;
319 if (radeon_get_drm_value(ws->fd, RADEON_INFO_RING_WORKING,
320 "UVD Ring working", &value))
321 ws->info.has_hw_decode = value;
322
323 value = RADEON_CS_RING_VCE;
324 if (radeon_get_drm_value(ws->fd, RADEON_INFO_RING_WORKING,
325 NULL, &value) && value) {
326
327 if (radeon_get_drm_value(ws->fd, RADEON_INFO_VCE_FW_VERSION,
328 "VCE FW version", &value))
329 ws->info.vce_fw_version = value;
330 }
331 }
332
333 /* Check for userptr support. */
334 {
335 struct drm_radeon_gem_userptr args = {0};
336
337 /* If the ioctl doesn't exist, -EINVAL is returned.
338 *
339 * If the ioctl exists, it should return -EACCES
340 * if RADEON_GEM_USERPTR_READONLY or RADEON_GEM_USERPTR_REGISTER
341 * aren't set.
342 */
343 ws->info.has_userptr =
344 drmCommandWriteRead(ws->fd, DRM_RADEON_GEM_USERPTR,
345 &args, sizeof(args)) == -EACCES;
346 }
347
348 /* Get GEM info. */
349 retval = drmCommandWriteRead(ws->fd, DRM_RADEON_GEM_INFO,
350 &gem_info, sizeof(gem_info));
351 if (retval) {
352 fprintf(stderr, "radeon: Failed to get MM info, error number %d\n",
353 retval);
354 return false;
355 }
356 ws->info.gart_size = gem_info.gart_size;
357 ws->info.vram_size = gem_info.vram_size;
358 ws->info.vram_vis_size = gem_info.vram_visible;
359 /* Older versions of the kernel driver reported incorrect values, and
360 * didn't support more than 256MB of visible VRAM anyway
361 */
362 if (ws->info.drm_minor < 49)
363 ws->info.vram_vis_size = MIN2(ws->info.vram_vis_size, 256*1024*1024);
364
365 /* Radeon allocates all buffers as contigous, which makes large allocations
366 * unlikely to succeed. */
367 ws->info.max_alloc_size = MAX2(ws->info.vram_size, ws->info.gart_size) * 0.7;
368 if (ws->info.has_dedicated_vram)
369 ws->info.max_alloc_size = MIN2(ws->info.vram_size * 0.7, ws->info.max_alloc_size);
370 if (ws->info.drm_minor < 40)
371 ws->info.max_alloc_size = MIN2(ws->info.max_alloc_size, 256*1024*1024);
372 /* Both 32-bit and 64-bit address spaces only have 4GB. */
373 ws->info.max_alloc_size = MIN2(ws->info.max_alloc_size, 3ull*1024*1024*1024);
374
375 /* Get max clock frequency info and convert it to MHz */
376 radeon_get_drm_value(ws->fd, RADEON_INFO_MAX_SCLK, NULL,
377 &ws->info.max_shader_clock);
378 ws->info.max_shader_clock /= 1000;
379
380 ws->num_cpus = sysconf(_SC_NPROCESSORS_ONLN);
381
382 /* Generation-specific queries. */
383 if (ws->gen == DRV_R300) {
384 if (!radeon_get_drm_value(ws->fd, RADEON_INFO_NUM_GB_PIPES,
385 "GB pipe count",
386 &ws->info.r300_num_gb_pipes))
387 return false;
388
389 if (!radeon_get_drm_value(ws->fd, RADEON_INFO_NUM_Z_PIPES,
390 "Z pipe count",
391 &ws->info.r300_num_z_pipes))
392 return false;
393 }
394 else if (ws->gen >= DRV_R600) {
395 uint32_t tiling_config = 0;
396
397 if (!radeon_get_drm_value(ws->fd, RADEON_INFO_NUM_BACKENDS,
398 "num backends",
399 &ws->info.num_render_backends))
400 return false;
401
402 /* get the GPU counter frequency, failure is not fatal */
403 radeon_get_drm_value(ws->fd, RADEON_INFO_CLOCK_CRYSTAL_FREQ, NULL,
404 &ws->info.clock_crystal_freq);
405
406 radeon_get_drm_value(ws->fd, RADEON_INFO_TILING_CONFIG, NULL,
407 &tiling_config);
408
409 ws->info.r600_num_banks =
410 ws->info.chip_class >= EVERGREEN ?
411 4 << ((tiling_config & 0xf0) >> 4) :
412 4 << ((tiling_config & 0x30) >> 4);
413
414 ws->info.pipe_interleave_bytes =
415 ws->info.chip_class >= EVERGREEN ?
416 256 << ((tiling_config & 0xf00) >> 8) :
417 256 << ((tiling_config & 0xc0) >> 6);
418
419 if (!ws->info.pipe_interleave_bytes)
420 ws->info.pipe_interleave_bytes =
421 ws->info.chip_class >= EVERGREEN ? 512 : 256;
422
423 radeon_get_drm_value(ws->fd, RADEON_INFO_NUM_TILE_PIPES, NULL,
424 &ws->info.num_tile_pipes);
425
426 /* "num_tiles_pipes" must be equal to the number of pipes (Px) in the
427 * pipe config field of the GB_TILE_MODE array. Only one card (Tahiti)
428 * reports a different value (12). Fix it by setting what's in the
429 * GB_TILE_MODE array (8).
430 */
431 if (ws->gen == DRV_SI && ws->info.num_tile_pipes == 12)
432 ws->info.num_tile_pipes = 8;
433
434 if (radeon_get_drm_value(ws->fd, RADEON_INFO_BACKEND_MAP, NULL,
435 &ws->info.r600_gb_backend_map))
436 ws->info.r600_gb_backend_map_valid = true;
437
438 /* Default value. */
439 ws->info.enabled_rb_mask = u_bit_consecutive(0, ws->info.num_render_backends);
440 /*
441 * This fails (silently) on non-GCN or older kernels, overwriting the
442 * default enabled_rb_mask with the result of the last query.
443 */
444 if (ws->gen >= DRV_SI)
445 radeon_get_drm_value(ws->fd, RADEON_INFO_SI_BACKEND_ENABLED_MASK, NULL,
446 &ws->info.enabled_rb_mask);
447
448 ws->info.r600_has_virtual_memory = false;
449 if (ws->info.drm_minor >= 13) {
450 uint32_t ib_vm_max_size;
451
452 ws->info.r600_has_virtual_memory = true;
453 if (!radeon_get_drm_value(ws->fd, RADEON_INFO_VA_START, NULL,
454 &ws->va_start))
455 ws->info.r600_has_virtual_memory = false;
456 if (!radeon_get_drm_value(ws->fd, RADEON_INFO_IB_VM_MAX_SIZE, NULL,
457 &ib_vm_max_size))
458 ws->info.r600_has_virtual_memory = false;
459 radeon_get_drm_value(ws->fd, RADEON_INFO_VA_UNMAP_WORKING, NULL,
460 &ws->va_unmap_working);
461 }
462 if (ws->gen == DRV_R600 && !debug_get_bool_option("RADEON_VA", false))
463 ws->info.r600_has_virtual_memory = false;
464 }
465
466 /* Get max pipes, this is only needed for compute shaders. All evergreen+
467 * chips have at least 2 pipes, so we use 2 as a default. */
468 ws->info.r600_max_quad_pipes = 2;
469 radeon_get_drm_value(ws->fd, RADEON_INFO_MAX_PIPES, NULL,
470 &ws->info.r600_max_quad_pipes);
471
472 /* All GPUs have at least one compute unit */
473 ws->info.num_good_compute_units = 1;
474 radeon_get_drm_value(ws->fd, RADEON_INFO_ACTIVE_CU_COUNT, NULL,
475 &ws->info.num_good_compute_units);
476
477 radeon_get_drm_value(ws->fd, RADEON_INFO_MAX_SE, NULL,
478 &ws->info.max_se);
479
480 switch (ws->info.family) {
481 case CHIP_HAINAN:
482 case CHIP_KABINI:
483 case CHIP_MULLINS:
484 ws->info.num_tcc_blocks = 2;
485 break;
486 case CHIP_VERDE:
487 case CHIP_OLAND:
488 case CHIP_BONAIRE:
489 case CHIP_KAVERI:
490 ws->info.num_tcc_blocks = 4;
491 break;
492 case CHIP_PITCAIRN:
493 ws->info.num_tcc_blocks = 8;
494 break;
495 case CHIP_TAHITI:
496 ws->info.num_tcc_blocks = 12;
497 break;
498 case CHIP_HAWAII:
499 ws->info.num_tcc_blocks = 16;
500 break;
501 default:
502 ws->info.num_tcc_blocks = 0;
503 break;
504 }
505
506 if (!ws->info.max_se) {
507 switch (ws->info.family) {
508 default:
509 ws->info.max_se = 1;
510 break;
511 case CHIP_CYPRESS:
512 case CHIP_HEMLOCK:
513 case CHIP_BARTS:
514 case CHIP_CAYMAN:
515 case CHIP_TAHITI:
516 case CHIP_PITCAIRN:
517 case CHIP_BONAIRE:
518 ws->info.max_se = 2;
519 break;
520 case CHIP_HAWAII:
521 ws->info.max_se = 4;
522 break;
523 }
524 }
525
526 radeon_get_drm_value(ws->fd, RADEON_INFO_MAX_SH_PER_SE, NULL,
527 &ws->info.max_sh_per_se);
528 if (ws->gen == DRV_SI) {
529 ws->info.num_good_cu_per_sh = ws->info.num_good_compute_units /
530 (ws->info.max_se * ws->info.max_sh_per_se);
531 }
532
533 radeon_get_drm_value(ws->fd, RADEON_INFO_ACCEL_WORKING2, NULL,
534 &ws->accel_working2);
535 if (ws->info.family == CHIP_HAWAII && ws->accel_working2 < 2) {
536 fprintf(stderr, "radeon: GPU acceleration for Hawaii disabled, "
537 "returned accel_working2 value %u is smaller than 2. "
538 "Please install a newer kernel.\n",
539 ws->accel_working2);
540 return false;
541 }
542
543 if (ws->info.chip_class == CIK) {
544 if (!radeon_get_drm_value(ws->fd, RADEON_INFO_CIK_MACROTILE_MODE_ARRAY, NULL,
545 ws->info.cik_macrotile_mode_array)) {
546 fprintf(stderr, "radeon: Kernel 3.13 is required for CIK support.\n");
547 return false;
548 }
549 }
550
551 if (ws->info.chip_class >= SI) {
552 if (!radeon_get_drm_value(ws->fd, RADEON_INFO_SI_TILE_MODE_ARRAY, NULL,
553 ws->info.si_tile_mode_array)) {
554 fprintf(stderr, "radeon: Kernel 3.10 is required for SI support.\n");
555 return false;
556 }
557 }
558
559 /* Hawaii with old firmware needs type2 nop packet.
560 * accel_working2 with value 3 indicates the new firmware.
561 */
562 ws->info.gfx_ib_pad_with_type2 = ws->info.chip_class <= SI ||
563 (ws->info.family == CHIP_HAWAII &&
564 ws->accel_working2 < 3);
565 ws->info.tcc_cache_line_size = 64; /* TC L2 line size on GCN */
566 ws->info.ib_start_alignment = 4096;
567 ws->info.kernel_flushes_hdp_before_ib = ws->info.drm_minor >= 40;
568 /* HTILE is broken with 1D tiling on old kernels and CIK. */
569 ws->info.htile_cmask_support_1d_tiling = ws->info.chip_class != CIK ||
570 ws->info.drm_minor >= 38;
571 ws->info.si_TA_CS_BC_BASE_ADDR_allowed = ws->info.drm_minor >= 48;
572 ws->info.has_bo_metadata = false;
573 ws->info.has_gpu_reset_status_query = false;
574 ws->info.has_gpu_reset_counter_query = ws->info.drm_minor >= 43;
575 ws->info.has_eqaa_surface_allocator = false;
576 ws->info.has_format_bc1_through_bc7 = ws->info.drm_minor >= 31;
577 ws->info.kernel_flushes_tc_l2_after_ib = true;
578 /* Old kernels disallowed register writes via COPY_DATA
579 * that are used for indirect compute dispatches. */
580 ws->info.has_indirect_compute_dispatch = ws->info.chip_class == CIK ||
581 (ws->info.chip_class == SI &&
582 ws->info.drm_minor >= 45);
583 /* SI doesn't support unaligned loads. */
584 ws->info.has_unaligned_shader_loads = ws->info.chip_class == CIK &&
585 ws->info.drm_minor >= 50;
586 ws->info.has_sparse_vm_mappings = false;
587 /* 2D tiling on CIK is supported since DRM 2.35.0 */
588 ws->info.has_2d_tiling = ws->info.chip_class <= SI || ws->info.drm_minor >= 35;
589 ws->info.has_read_registers_query = ws->info.drm_minor >= 42;
590
591 ws->check_vm = strstr(debug_get_option("R600_DEBUG", ""), "check_vm") != NULL;
592
593 return true;
594 }
595
596 static void radeon_winsys_destroy(struct radeon_winsys *rws)
597 {
598 struct radeon_drm_winsys *ws = (struct radeon_drm_winsys*)rws;
599
600 if (util_queue_is_initialized(&ws->cs_queue))
601 util_queue_destroy(&ws->cs_queue);
602
603 mtx_destroy(&ws->hyperz_owner_mutex);
604 mtx_destroy(&ws->cmask_owner_mutex);
605
606 if (ws->info.r600_has_virtual_memory)
607 pb_slabs_deinit(&ws->bo_slabs);
608 pb_cache_deinit(&ws->bo_cache);
609
610 if (ws->gen >= DRV_R600) {
611 radeon_surface_manager_free(ws->surf_man);
612 }
613
614 util_hash_table_destroy(ws->bo_names);
615 util_hash_table_destroy(ws->bo_handles);
616 util_hash_table_destroy(ws->bo_vas);
617 mtx_destroy(&ws->bo_handles_mutex);
618 mtx_destroy(&ws->vm32.mutex);
619 mtx_destroy(&ws->vm64.mutex);
620 mtx_destroy(&ws->bo_fence_lock);
621
622 if (ws->fd >= 0)
623 close(ws->fd);
624
625 FREE(rws);
626 }
627
628 static void radeon_query_info(struct radeon_winsys *rws,
629 struct radeon_info *info)
630 {
631 *info = ((struct radeon_drm_winsys *)rws)->info;
632 }
633
634 static bool radeon_cs_request_feature(struct radeon_cmdbuf *rcs,
635 enum radeon_feature_id fid,
636 bool enable)
637 {
638 struct radeon_drm_cs *cs = radeon_drm_cs(rcs);
639
640 switch (fid) {
641 case RADEON_FID_R300_HYPERZ_ACCESS:
642 return radeon_set_fd_access(cs, &cs->ws->hyperz_owner,
643 &cs->ws->hyperz_owner_mutex,
644 RADEON_INFO_WANT_HYPERZ, "Hyper-Z",
645 enable);
646
647 case RADEON_FID_R300_CMASK_ACCESS:
648 return radeon_set_fd_access(cs, &cs->ws->cmask_owner,
649 &cs->ws->cmask_owner_mutex,
650 RADEON_INFO_WANT_CMASK, "AA optimizations",
651 enable);
652 }
653 return false;
654 }
655
656 static uint64_t radeon_query_value(struct radeon_winsys *rws,
657 enum radeon_value_id value)
658 {
659 struct radeon_drm_winsys *ws = (struct radeon_drm_winsys*)rws;
660 uint64_t retval = 0;
661
662 switch (value) {
663 case RADEON_REQUESTED_VRAM_MEMORY:
664 return ws->allocated_vram;
665 case RADEON_REQUESTED_GTT_MEMORY:
666 return ws->allocated_gtt;
667 case RADEON_MAPPED_VRAM:
668 return ws->mapped_vram;
669 case RADEON_MAPPED_GTT:
670 return ws->mapped_gtt;
671 case RADEON_BUFFER_WAIT_TIME_NS:
672 return ws->buffer_wait_time;
673 case RADEON_NUM_MAPPED_BUFFERS:
674 return ws->num_mapped_buffers;
675 case RADEON_TIMESTAMP:
676 if (ws->info.drm_minor < 20 || ws->gen < DRV_R600) {
677 assert(0);
678 return 0;
679 }
680
681 radeon_get_drm_value(ws->fd, RADEON_INFO_TIMESTAMP, "timestamp",
682 (uint32_t*)&retval);
683 return retval;
684 case RADEON_NUM_GFX_IBS:
685 return ws->num_gfx_IBs;
686 case RADEON_NUM_SDMA_IBS:
687 return ws->num_sdma_IBs;
688 case RADEON_NUM_BYTES_MOVED:
689 radeon_get_drm_value(ws->fd, RADEON_INFO_NUM_BYTES_MOVED,
690 "num-bytes-moved", (uint32_t*)&retval);
691 return retval;
692 case RADEON_NUM_EVICTIONS:
693 case RADEON_NUM_VRAM_CPU_PAGE_FAULTS:
694 case RADEON_VRAM_VIS_USAGE:
695 case RADEON_GFX_BO_LIST_COUNTER:
696 case RADEON_GFX_IB_SIZE_COUNTER:
697 return 0; /* unimplemented */
698 case RADEON_VRAM_USAGE:
699 radeon_get_drm_value(ws->fd, RADEON_INFO_VRAM_USAGE,
700 "vram-usage", (uint32_t*)&retval);
701 return retval;
702 case RADEON_GTT_USAGE:
703 radeon_get_drm_value(ws->fd, RADEON_INFO_GTT_USAGE,
704 "gtt-usage", (uint32_t*)&retval);
705 return retval;
706 case RADEON_GPU_TEMPERATURE:
707 radeon_get_drm_value(ws->fd, RADEON_INFO_CURRENT_GPU_TEMP,
708 "gpu-temp", (uint32_t*)&retval);
709 return retval;
710 case RADEON_CURRENT_SCLK:
711 radeon_get_drm_value(ws->fd, RADEON_INFO_CURRENT_GPU_SCLK,
712 "current-gpu-sclk", (uint32_t*)&retval);
713 return retval;
714 case RADEON_CURRENT_MCLK:
715 radeon_get_drm_value(ws->fd, RADEON_INFO_CURRENT_GPU_MCLK,
716 "current-gpu-mclk", (uint32_t*)&retval);
717 return retval;
718 case RADEON_GPU_RESET_COUNTER:
719 radeon_get_drm_value(ws->fd, RADEON_INFO_GPU_RESET_COUNTER,
720 "gpu-reset-counter", (uint32_t*)&retval);
721 return retval;
722 case RADEON_CS_THREAD_TIME:
723 return util_queue_get_thread_time_nano(&ws->cs_queue, 0);
724 }
725 return 0;
726 }
727
728 static bool radeon_read_registers(struct radeon_winsys *rws,
729 unsigned reg_offset,
730 unsigned num_registers, uint32_t *out)
731 {
732 struct radeon_drm_winsys *ws = (struct radeon_drm_winsys*)rws;
733 unsigned i;
734
735 for (i = 0; i < num_registers; i++) {
736 uint32_t reg = reg_offset + i*4;
737
738 if (!radeon_get_drm_value(ws->fd, RADEON_INFO_READ_REG, NULL, &reg))
739 return false;
740 out[i] = reg;
741 }
742 return true;
743 }
744
745 static unsigned hash_fd(void *key)
746 {
747 int fd = pointer_to_intptr(key);
748 struct stat stat;
749 fstat(fd, &stat);
750
751 return stat.st_dev ^ stat.st_ino ^ stat.st_rdev;
752 }
753
754 static int compare_fd(void *key1, void *key2)
755 {
756 int fd1 = pointer_to_intptr(key1);
757 int fd2 = pointer_to_intptr(key2);
758 struct stat stat1, stat2;
759 fstat(fd1, &stat1);
760 fstat(fd2, &stat2);
761
762 return stat1.st_dev != stat2.st_dev ||
763 stat1.st_ino != stat2.st_ino ||
764 stat1.st_rdev != stat2.st_rdev;
765 }
766
767 DEBUG_GET_ONCE_BOOL_OPTION(thread, "RADEON_THREAD", true)
768
769 static bool radeon_winsys_unref(struct radeon_winsys *ws)
770 {
771 struct radeon_drm_winsys *rws = (struct radeon_drm_winsys*)ws;
772 bool destroy;
773
774 /* When the reference counter drops to zero, remove the fd from the table.
775 * This must happen while the mutex is locked, so that
776 * radeon_drm_winsys_create in another thread doesn't get the winsys
777 * from the table when the counter drops to 0. */
778 mtx_lock(&fd_tab_mutex);
779
780 destroy = pipe_reference(&rws->reference, NULL);
781 if (destroy && fd_tab) {
782 util_hash_table_remove(fd_tab, intptr_to_pointer(rws->fd));
783 if (util_hash_table_count(fd_tab) == 0) {
784 util_hash_table_destroy(fd_tab);
785 fd_tab = NULL;
786 }
787 }
788
789 mtx_unlock(&fd_tab_mutex);
790 return destroy;
791 }
792
793 #define PTR_TO_UINT(x) ((unsigned)((intptr_t)(x)))
794
795 static unsigned handle_hash(void *key)
796 {
797 return PTR_TO_UINT(key);
798 }
799
800 static int handle_compare(void *key1, void *key2)
801 {
802 return PTR_TO_UINT(key1) != PTR_TO_UINT(key2);
803 }
804
805 static void radeon_pin_threads_to_L3_cache(struct radeon_winsys *ws,
806 unsigned cache)
807 {
808 struct radeon_drm_winsys *rws = (struct radeon_drm_winsys*)ws;
809
810 if (util_queue_is_initialized(&rws->cs_queue)) {
811 util_pin_thread_to_L3(rws->cs_queue.threads[0], cache,
812 util_cpu_caps.cores_per_L3);
813 }
814 }
815
816 PUBLIC struct radeon_winsys *
817 radeon_drm_winsys_create(int fd, const struct pipe_screen_config *config,
818 radeon_screen_create_t screen_create)
819 {
820 struct radeon_drm_winsys *ws;
821
822 mtx_lock(&fd_tab_mutex);
823 if (!fd_tab) {
824 fd_tab = util_hash_table_create(hash_fd, compare_fd);
825 }
826
827 ws = util_hash_table_get(fd_tab, intptr_to_pointer(fd));
828 if (ws) {
829 pipe_reference(NULL, &ws->reference);
830 mtx_unlock(&fd_tab_mutex);
831 return &ws->base;
832 }
833
834 ws = CALLOC_STRUCT(radeon_drm_winsys);
835 if (!ws) {
836 mtx_unlock(&fd_tab_mutex);
837 return NULL;
838 }
839
840 ws->fd = fcntl(fd, F_DUPFD_CLOEXEC, 3);
841
842 if (!do_winsys_init(ws))
843 goto fail1;
844
845 pb_cache_init(&ws->bo_cache, RADEON_MAX_CACHED_HEAPS,
846 500000, ws->check_vm ? 1.0f : 2.0f, 0,
847 MIN2(ws->info.vram_size, ws->info.gart_size),
848 radeon_bo_destroy,
849 radeon_bo_can_reclaim);
850
851 if (ws->info.r600_has_virtual_memory) {
852 /* There is no fundamental obstacle to using slab buffer allocation
853 * without GPUVM, but enabling it requires making sure that the drivers
854 * honor the address offset.
855 */
856 if (!pb_slabs_init(&ws->bo_slabs,
857 RADEON_SLAB_MIN_SIZE_LOG2, RADEON_SLAB_MAX_SIZE_LOG2,
858 RADEON_MAX_SLAB_HEAPS,
859 ws,
860 radeon_bo_can_reclaim_slab,
861 radeon_bo_slab_alloc,
862 radeon_bo_slab_free))
863 goto fail_cache;
864
865 ws->info.min_alloc_size = 1 << RADEON_SLAB_MIN_SIZE_LOG2;
866 } else {
867 ws->info.min_alloc_size = ws->info.gart_page_size;
868 }
869
870 if (ws->gen >= DRV_R600) {
871 ws->surf_man = radeon_surface_manager_new(ws->fd);
872 if (!ws->surf_man)
873 goto fail_slab;
874 }
875
876 /* init reference */
877 pipe_reference_init(&ws->reference, 1);
878
879 /* Set functions. */
880 ws->base.unref = radeon_winsys_unref;
881 ws->base.destroy = radeon_winsys_destroy;
882 ws->base.query_info = radeon_query_info;
883 ws->base.pin_threads_to_L3_cache = radeon_pin_threads_to_L3_cache;
884 ws->base.cs_request_feature = radeon_cs_request_feature;
885 ws->base.query_value = radeon_query_value;
886 ws->base.read_registers = radeon_read_registers;
887
888 radeon_drm_bo_init_functions(ws);
889 radeon_drm_cs_init_functions(ws);
890 radeon_surface_init_functions(ws);
891
892 (void) mtx_init(&ws->hyperz_owner_mutex, mtx_plain);
893 (void) mtx_init(&ws->cmask_owner_mutex, mtx_plain);
894
895 ws->bo_names = util_hash_table_create(handle_hash, handle_compare);
896 ws->bo_handles = util_hash_table_create(handle_hash, handle_compare);
897 ws->bo_vas = util_hash_table_create(handle_hash, handle_compare);
898 (void) mtx_init(&ws->bo_handles_mutex, mtx_plain);
899 (void) mtx_init(&ws->vm32.mutex, mtx_plain);
900 (void) mtx_init(&ws->vm64.mutex, mtx_plain);
901 (void) mtx_init(&ws->bo_fence_lock, mtx_plain);
902 list_inithead(&ws->vm32.holes);
903 list_inithead(&ws->vm64.holes);
904
905 /* The kernel currently returns 8MB. Make sure this doesn't change. */
906 if (ws->va_start > 8 * 1024 * 1024) {
907 /* Not enough 32-bit address space. */
908 radeon_winsys_destroy(&ws->base);
909 mtx_unlock(&fd_tab_mutex);
910 return NULL;
911 }
912
913 ws->vm32.start = ws->va_start;
914 ws->vm32.end = 1ull << 32;
915
916 /* The maximum is 8GB of virtual address space limited by the kernel.
917 * It's obviously not enough for bigger cards, like Hawaiis with 4GB
918 * and 8GB of physical memory and 4GB of GART.
919 *
920 * Older kernels set the limit to 4GB, which is even worse, so they only
921 * have 32-bit address space.
922 */
923 if (ws->info.drm_minor >= 41) {
924 ws->vm64.start = 1ull << 32;
925 ws->vm64.end = 1ull << 33;
926 }
927
928 /* TTM aligns the BO size to the CPU page size */
929 ws->info.gart_page_size = sysconf(_SC_PAGESIZE);
930
931 if (ws->num_cpus > 1 && debug_get_option_thread())
932 util_queue_init(&ws->cs_queue, "rcs", 8, 1, 0);
933
934 /* Create the screen at the end. The winsys must be initialized
935 * completely.
936 *
937 * Alternatively, we could create the screen based on "ws->gen"
938 * and link all drivers into one binary blob. */
939 ws->base.screen = screen_create(&ws->base, config);
940 if (!ws->base.screen) {
941 radeon_winsys_destroy(&ws->base);
942 mtx_unlock(&fd_tab_mutex);
943 return NULL;
944 }
945
946 util_hash_table_set(fd_tab, intptr_to_pointer(ws->fd), ws);
947
948 /* We must unlock the mutex once the winsys is fully initialized, so that
949 * other threads attempting to create the winsys from the same fd will
950 * get a fully initialized winsys and not just half-way initialized. */
951 mtx_unlock(&fd_tab_mutex);
952
953 return &ws->base;
954
955 fail_slab:
956 if (ws->info.r600_has_virtual_memory)
957 pb_slabs_deinit(&ws->bo_slabs);
958 fail_cache:
959 pb_cache_deinit(&ws->bo_cache);
960 fail1:
961 mtx_unlock(&fd_tab_mutex);
962 if (ws->surf_man)
963 radeon_surface_manager_free(ws->surf_man);
964 if (ws->fd >= 0)
965 close(ws->fd);
966
967 FREE(ws);
968 return NULL;
969 }