winsys/radeon: Always report at least 1 compute unit
[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 * Authors:
29 * Corbin Simpson <MostAwesomeDude@gmail.com>
30 * Joakim Sindholt <opensource@zhasha.com>
31 * Marek Olšák <maraeo@gmail.com>
32 */
33
34 #include "radeon_drm_bo.h"
35 #include "radeon_drm_cs.h"
36 #include "radeon_drm_public.h"
37
38 #include "pipebuffer/pb_bufmgr.h"
39 #include "util/u_memory.h"
40 #include "util/u_hash_table.h"
41
42 #include <xf86drm.h>
43 #include <stdio.h>
44 #include <sys/types.h>
45 #include <sys/stat.h>
46 #include <unistd.h>
47
48 #ifndef RADEON_INFO_ACTIVE_CU_COUNT
49 #define RADEON_INFO_ACTIVE_CU_COUNT 0x20
50 #endif
51
52 static struct util_hash_table *fd_tab = NULL;
53 pipe_static_mutex(fd_tab_mutex);
54
55 /* Enable/disable feature access for one command stream.
56 * If enable == TRUE, return TRUE on success.
57 * Otherwise, return FALSE.
58 *
59 * We basically do the same thing kernel does, because we have to deal
60 * with multiple contexts (here command streams) backed by one winsys. */
61 static boolean radeon_set_fd_access(struct radeon_drm_cs *applier,
62 struct radeon_drm_cs **owner,
63 pipe_mutex *mutex,
64 unsigned request, const char *request_name,
65 boolean enable)
66 {
67 struct drm_radeon_info info;
68 unsigned value = enable ? 1 : 0;
69
70 memset(&info, 0, sizeof(info));
71
72 pipe_mutex_lock(*mutex);
73
74 /* Early exit if we are sure the request will fail. */
75 if (enable) {
76 if (*owner) {
77 pipe_mutex_unlock(*mutex);
78 return FALSE;
79 }
80 } else {
81 if (*owner != applier) {
82 pipe_mutex_unlock(*mutex);
83 return FALSE;
84 }
85 }
86
87 /* Pass through the request to the kernel. */
88 info.value = (unsigned long)&value;
89 info.request = request;
90 if (drmCommandWriteRead(applier->ws->fd, DRM_RADEON_INFO,
91 &info, sizeof(info)) != 0) {
92 pipe_mutex_unlock(*mutex);
93 return FALSE;
94 }
95
96 /* Update the rights in the winsys. */
97 if (enable) {
98 if (value) {
99 *owner = applier;
100 pipe_mutex_unlock(*mutex);
101 return TRUE;
102 }
103 } else {
104 *owner = NULL;
105 }
106
107 pipe_mutex_unlock(*mutex);
108 return FALSE;
109 }
110
111 static boolean radeon_get_drm_value(int fd, unsigned request,
112 const char *errname, uint32_t *out)
113 {
114 struct drm_radeon_info info;
115 int retval;
116
117 memset(&info, 0, sizeof(info));
118
119 info.value = (unsigned long)out;
120 info.request = request;
121
122 retval = drmCommandWriteRead(fd, DRM_RADEON_INFO, &info, sizeof(info));
123 if (retval) {
124 if (errname) {
125 fprintf(stderr, "radeon: Failed to get %s, error number %d\n",
126 errname, retval);
127 }
128 return FALSE;
129 }
130 return TRUE;
131 }
132
133 /* Helper function to do the ioctls needed for setup and init. */
134 static boolean do_winsys_init(struct radeon_drm_winsys *ws)
135 {
136 struct drm_radeon_gem_info gem_info;
137 int retval;
138 drmVersionPtr version;
139
140 memset(&gem_info, 0, sizeof(gem_info));
141
142 /* We do things in a specific order here.
143 *
144 * DRM version first. We need to be sure we're running on a KMS chipset.
145 * This is also for some features.
146 *
147 * Then, the PCI ID. This is essential and should return usable numbers
148 * for all Radeons. If this fails, we probably got handed an FD for some
149 * non-Radeon card.
150 *
151 * The GEM info is actually bogus on the kernel side, as well as our side
152 * (see radeon_gem_info_ioctl in radeon_gem.c) but that's alright because
153 * we don't actually use the info for anything yet.
154 *
155 * The GB and Z pipe requests should always succeed, but they might not
156 * return sensical values for all chipsets, but that's alright because
157 * the pipe drivers already know that.
158 */
159
160 /* Get DRM version. */
161 version = drmGetVersion(ws->fd);
162 if (version->version_major != 2 ||
163 version->version_minor < 3) {
164 fprintf(stderr, "%s: DRM version is %d.%d.%d but this driver is "
165 "only compatible with 2.3.x (kernel 2.6.34) or later.\n",
166 __FUNCTION__,
167 version->version_major,
168 version->version_minor,
169 version->version_patchlevel);
170 drmFreeVersion(version);
171 return FALSE;
172 }
173
174 ws->info.drm_major = version->version_major;
175 ws->info.drm_minor = version->version_minor;
176 ws->info.drm_patchlevel = version->version_patchlevel;
177 drmFreeVersion(version);
178
179 /* Get PCI ID. */
180 if (!radeon_get_drm_value(ws->fd, RADEON_INFO_DEVICE_ID, "PCI ID",
181 &ws->info.pci_id))
182 return FALSE;
183
184 /* Check PCI ID. */
185 switch (ws->info.pci_id) {
186 #define CHIPSET(pci_id, name, cfamily) case pci_id: ws->info.family = CHIP_##cfamily; ws->gen = DRV_R300; break;
187 #include "pci_ids/r300_pci_ids.h"
188 #undef CHIPSET
189
190 #define CHIPSET(pci_id, name, cfamily) case pci_id: ws->info.family = CHIP_##cfamily; ws->gen = DRV_R600; break;
191 #include "pci_ids/r600_pci_ids.h"
192 #undef CHIPSET
193
194 #define CHIPSET(pci_id, name, cfamily) case pci_id: ws->info.family = CHIP_##cfamily; ws->gen = DRV_SI; break;
195 #include "pci_ids/radeonsi_pci_ids.h"
196 #undef CHIPSET
197
198 default:
199 fprintf(stderr, "radeon: Invalid PCI ID.\n");
200 return FALSE;
201 }
202
203 switch (ws->info.family) {
204 default:
205 case CHIP_UNKNOWN:
206 fprintf(stderr, "radeon: Unknown family.\n");
207 return FALSE;
208 case CHIP_R300:
209 case CHIP_R350:
210 case CHIP_RV350:
211 case CHIP_RV370:
212 case CHIP_RV380:
213 case CHIP_RS400:
214 case CHIP_RC410:
215 case CHIP_RS480:
216 ws->info.chip_class = R300;
217 break;
218 case CHIP_R420: /* R4xx-based cores. */
219 case CHIP_R423:
220 case CHIP_R430:
221 case CHIP_R480:
222 case CHIP_R481:
223 case CHIP_RV410:
224 case CHIP_RS600:
225 case CHIP_RS690:
226 case CHIP_RS740:
227 ws->info.chip_class = R400;
228 break;
229 case CHIP_RV515: /* R5xx-based cores. */
230 case CHIP_R520:
231 case CHIP_RV530:
232 case CHIP_R580:
233 case CHIP_RV560:
234 case CHIP_RV570:
235 ws->info.chip_class = R500;
236 break;
237 case CHIP_R600:
238 case CHIP_RV610:
239 case CHIP_RV630:
240 case CHIP_RV670:
241 case CHIP_RV620:
242 case CHIP_RV635:
243 case CHIP_RS780:
244 case CHIP_RS880:
245 ws->info.chip_class = R600;
246 break;
247 case CHIP_RV770:
248 case CHIP_RV730:
249 case CHIP_RV710:
250 case CHIP_RV740:
251 ws->info.chip_class = R700;
252 break;
253 case CHIP_CEDAR:
254 case CHIP_REDWOOD:
255 case CHIP_JUNIPER:
256 case CHIP_CYPRESS:
257 case CHIP_HEMLOCK:
258 case CHIP_PALM:
259 case CHIP_SUMO:
260 case CHIP_SUMO2:
261 case CHIP_BARTS:
262 case CHIP_TURKS:
263 case CHIP_CAICOS:
264 ws->info.chip_class = EVERGREEN;
265 break;
266 case CHIP_CAYMAN:
267 case CHIP_ARUBA:
268 ws->info.chip_class = CAYMAN;
269 break;
270 case CHIP_TAHITI:
271 case CHIP_PITCAIRN:
272 case CHIP_VERDE:
273 case CHIP_OLAND:
274 case CHIP_HAINAN:
275 ws->info.chip_class = SI;
276 break;
277 case CHIP_BONAIRE:
278 case CHIP_KAVERI:
279 case CHIP_KABINI:
280 case CHIP_HAWAII:
281 case CHIP_MULLINS:
282 ws->info.chip_class = CIK;
283 break;
284 }
285
286 /* Check for dma */
287 ws->info.r600_has_dma = FALSE;
288 /* DMA is disabled on R700. There is IB corruption and hangs. */
289 if (ws->info.chip_class >= EVERGREEN && ws->info.drm_minor >= 27) {
290 ws->info.r600_has_dma = TRUE;
291 }
292
293 /* Check for UVD and VCE */
294 ws->info.has_uvd = FALSE;
295 ws->info.vce_fw_version = 0x00000000;
296 if (ws->info.drm_minor >= 32) {
297 uint32_t value = RADEON_CS_RING_UVD;
298 if (radeon_get_drm_value(ws->fd, RADEON_INFO_RING_WORKING,
299 "UVD Ring working", &value))
300 ws->info.has_uvd = value;
301
302 value = RADEON_CS_RING_VCE;
303 if (radeon_get_drm_value(ws->fd, RADEON_INFO_RING_WORKING,
304 NULL, &value) && value) {
305
306 if (radeon_get_drm_value(ws->fd, RADEON_INFO_VCE_FW_VERSION,
307 "VCE FW version", &value))
308 ws->info.vce_fw_version = value;
309 }
310 }
311
312 /* Get GEM info. */
313 retval = drmCommandWriteRead(ws->fd, DRM_RADEON_GEM_INFO,
314 &gem_info, sizeof(gem_info));
315 if (retval) {
316 fprintf(stderr, "radeon: Failed to get MM info, error number %d\n",
317 retval);
318 return FALSE;
319 }
320 ws->info.gart_size = gem_info.gart_size;
321 ws->info.vram_size = gem_info.vram_size;
322
323 /* Get max clock frequency info and convert it to MHz */
324 radeon_get_drm_value(ws->fd, RADEON_INFO_MAX_SCLK, NULL,
325 &ws->info.max_sclk);
326 ws->info.max_sclk /= 1000;
327
328 radeon_get_drm_value(ws->fd, RADEON_INFO_SI_BACKEND_ENABLED_MASK, NULL,
329 &ws->info.si_backend_enabled_mask);
330
331 ws->num_cpus = sysconf(_SC_NPROCESSORS_ONLN);
332
333 /* Generation-specific queries. */
334 if (ws->gen == DRV_R300) {
335 if (!radeon_get_drm_value(ws->fd, RADEON_INFO_NUM_GB_PIPES,
336 "GB pipe count",
337 &ws->info.r300_num_gb_pipes))
338 return FALSE;
339
340 if (!radeon_get_drm_value(ws->fd, RADEON_INFO_NUM_Z_PIPES,
341 "Z pipe count",
342 &ws->info.r300_num_z_pipes))
343 return FALSE;
344 }
345 else if (ws->gen >= DRV_R600) {
346 if (ws->info.drm_minor >= 9 &&
347 !radeon_get_drm_value(ws->fd, RADEON_INFO_NUM_BACKENDS,
348 "num backends",
349 &ws->info.r600_num_backends))
350 return FALSE;
351
352 /* get the GPU counter frequency, failure is not fatal */
353 radeon_get_drm_value(ws->fd, RADEON_INFO_CLOCK_CRYSTAL_FREQ, NULL,
354 &ws->info.r600_clock_crystal_freq);
355
356 radeon_get_drm_value(ws->fd, RADEON_INFO_TILING_CONFIG, NULL,
357 &ws->info.r600_tiling_config);
358
359 if (ws->info.drm_minor >= 11) {
360 radeon_get_drm_value(ws->fd, RADEON_INFO_NUM_TILE_PIPES, NULL,
361 &ws->info.r600_num_tile_pipes);
362
363 if (radeon_get_drm_value(ws->fd, RADEON_INFO_BACKEND_MAP, NULL,
364 &ws->info.r600_backend_map))
365 ws->info.r600_backend_map_valid = TRUE;
366 }
367
368 ws->info.r600_virtual_address = FALSE;
369 if (ws->info.drm_minor >= 13) {
370 uint32_t ib_vm_max_size;
371
372 ws->info.r600_virtual_address = TRUE;
373 if (!radeon_get_drm_value(ws->fd, RADEON_INFO_VA_START, NULL,
374 &ws->va_start))
375 ws->info.r600_virtual_address = FALSE;
376 if (!radeon_get_drm_value(ws->fd, RADEON_INFO_IB_VM_MAX_SIZE, NULL,
377 &ib_vm_max_size))
378 ws->info.r600_virtual_address = FALSE;
379 }
380 if (ws->gen == DRV_R600 && !debug_get_bool_option("RADEON_VA", FALSE))
381 ws->info.r600_virtual_address = FALSE;
382 }
383
384 /* Get max pipes, this is only needed for compute shaders. All evergreen+
385 * chips have at least 2 pipes, so we use 2 as a default. */
386 ws->info.r600_max_pipes = 2;
387 radeon_get_drm_value(ws->fd, RADEON_INFO_MAX_PIPES, NULL,
388 &ws->info.r600_max_pipes);
389
390 /* All GPUs have at least one compute unit */
391 ws->info.max_compute_units = 1;
392 radeon_get_drm_value(ws->fd, RADEON_INFO_ACTIVE_CU_COUNT, NULL,
393 &ws->info.max_compute_units);
394
395 radeon_get_drm_value(ws->fd, RADEON_INFO_MAX_SE, NULL,
396 &ws->info.max_se);
397
398 if (!ws->info.max_se) {
399 switch (ws->info.family) {
400 default:
401 ws->info.max_se = 1;
402 break;
403 case CHIP_CYPRESS:
404 case CHIP_HEMLOCK:
405 case CHIP_BARTS:
406 case CHIP_CAYMAN:
407 case CHIP_TAHITI:
408 case CHIP_PITCAIRN:
409 case CHIP_BONAIRE:
410 ws->info.max_se = 2;
411 break;
412 case CHIP_HAWAII:
413 ws->info.max_se = 4;
414 break;
415 }
416 }
417
418 radeon_get_drm_value(ws->fd, RADEON_INFO_MAX_SH_PER_SE, NULL,
419 &ws->info.max_sh_per_se);
420
421 radeon_get_drm_value(ws->fd, RADEON_INFO_ACCEL_WORKING2, NULL,
422 &ws->accel_working2);
423 if (ws->info.family == CHIP_HAWAII && ws->accel_working2 < 2) {
424 fprintf(stderr, "radeon: GPU acceleration for Hawaii disabled, "
425 "returned accel_working2 value %u is smaller than 2. "
426 "Please install a newer kernel.\n",
427 ws->accel_working2);
428 return FALSE;
429 }
430
431 if (radeon_get_drm_value(ws->fd, RADEON_INFO_SI_TILE_MODE_ARRAY, NULL,
432 ws->info.si_tile_mode_array)) {
433 ws->info.si_tile_mode_array_valid = TRUE;
434 }
435
436 if (radeon_get_drm_value(ws->fd, RADEON_INFO_CIK_MACROTILE_MODE_ARRAY, NULL,
437 ws->info.cik_macrotile_mode_array)) {
438 ws->info.cik_macrotile_mode_array_valid = TRUE;
439 }
440
441 return TRUE;
442 }
443
444 static void radeon_winsys_destroy(struct radeon_winsys *rws)
445 {
446 struct radeon_drm_winsys *ws = (struct radeon_drm_winsys*)rws;
447
448 if (ws->thread) {
449 ws->kill_thread = 1;
450 pipe_semaphore_signal(&ws->cs_queued);
451 pipe_thread_wait(ws->thread);
452 }
453 pipe_semaphore_destroy(&ws->cs_queued);
454
455 pipe_mutex_destroy(ws->hyperz_owner_mutex);
456 pipe_mutex_destroy(ws->cmask_owner_mutex);
457 pipe_mutex_destroy(ws->cs_stack_lock);
458
459 ws->cman->destroy(ws->cman);
460 ws->kman->destroy(ws->kman);
461 if (ws->gen >= DRV_R600) {
462 radeon_surface_manager_free(ws->surf_man);
463 }
464 FREE(rws);
465 }
466
467 static void radeon_query_info(struct radeon_winsys *rws,
468 struct radeon_info *info)
469 {
470 *info = ((struct radeon_drm_winsys *)rws)->info;
471 }
472
473 static boolean radeon_cs_request_feature(struct radeon_winsys_cs *rcs,
474 enum radeon_feature_id fid,
475 boolean enable)
476 {
477 struct radeon_drm_cs *cs = radeon_drm_cs(rcs);
478
479 switch (fid) {
480 case RADEON_FID_R300_HYPERZ_ACCESS:
481 return radeon_set_fd_access(cs, &cs->ws->hyperz_owner,
482 &cs->ws->hyperz_owner_mutex,
483 RADEON_INFO_WANT_HYPERZ, "Hyper-Z",
484 enable);
485
486 case RADEON_FID_R300_CMASK_ACCESS:
487 return radeon_set_fd_access(cs, &cs->ws->cmask_owner,
488 &cs->ws->cmask_owner_mutex,
489 RADEON_INFO_WANT_CMASK, "AA optimizations",
490 enable);
491 }
492 return FALSE;
493 }
494
495 static int radeon_drm_winsys_surface_init(struct radeon_winsys *rws,
496 struct radeon_surface *surf)
497 {
498 struct radeon_drm_winsys *ws = (struct radeon_drm_winsys*)rws;
499
500 return radeon_surface_init(ws->surf_man, surf);
501 }
502
503 static int radeon_drm_winsys_surface_best(struct radeon_winsys *rws,
504 struct radeon_surface *surf)
505 {
506 struct radeon_drm_winsys *ws = (struct radeon_drm_winsys*)rws;
507
508 return radeon_surface_best(ws->surf_man, surf);
509 }
510
511 static uint64_t radeon_query_value(struct radeon_winsys *rws,
512 enum radeon_value_id value)
513 {
514 struct radeon_drm_winsys *ws = (struct radeon_drm_winsys*)rws;
515 uint64_t retval = 0;
516
517 switch (value) {
518 case RADEON_REQUESTED_VRAM_MEMORY:
519 return ws->allocated_vram;
520 case RADEON_REQUESTED_GTT_MEMORY:
521 return ws->allocated_gtt;
522 case RADEON_BUFFER_WAIT_TIME_NS:
523 return ws->buffer_wait_time;
524 case RADEON_TIMESTAMP:
525 if (ws->info.drm_minor < 20 || ws->gen < DRV_R600) {
526 assert(0);
527 return 0;
528 }
529
530 radeon_get_drm_value(ws->fd, RADEON_INFO_TIMESTAMP, "timestamp",
531 (uint32_t*)&retval);
532 return retval;
533 case RADEON_NUM_CS_FLUSHES:
534 return ws->num_cs_flushes;
535 case RADEON_NUM_BYTES_MOVED:
536 radeon_get_drm_value(ws->fd, RADEON_INFO_NUM_BYTES_MOVED,
537 "num-bytes-moved", (uint32_t*)&retval);
538 return retval;
539 case RADEON_VRAM_USAGE:
540 radeon_get_drm_value(ws->fd, RADEON_INFO_VRAM_USAGE,
541 "vram-usage", (uint32_t*)&retval);
542 return retval;
543 case RADEON_GTT_USAGE:
544 radeon_get_drm_value(ws->fd, RADEON_INFO_GTT_USAGE,
545 "gtt-usage", (uint32_t*)&retval);
546 return retval;
547 }
548 return 0;
549 }
550
551 static unsigned hash_fd(void *key)
552 {
553 int fd = pointer_to_intptr(key);
554 struct stat stat;
555 fstat(fd, &stat);
556
557 return stat.st_dev ^ stat.st_ino ^ stat.st_rdev;
558 }
559
560 static int compare_fd(void *key1, void *key2)
561 {
562 int fd1 = pointer_to_intptr(key1);
563 int fd2 = pointer_to_intptr(key2);
564 struct stat stat1, stat2;
565 fstat(fd1, &stat1);
566 fstat(fd2, &stat2);
567
568 return stat1.st_dev != stat2.st_dev ||
569 stat1.st_ino != stat2.st_ino ||
570 stat1.st_rdev != stat2.st_rdev;
571 }
572
573 void radeon_drm_ws_queue_cs(struct radeon_drm_winsys *ws, struct radeon_drm_cs *cs)
574 {
575 retry:
576 pipe_mutex_lock(ws->cs_stack_lock);
577 if (ws->ncs >= RING_LAST) {
578 /* no room left for a flush */
579 pipe_mutex_unlock(ws->cs_stack_lock);
580 goto retry;
581 }
582 ws->cs_stack[ws->ncs++] = cs;
583 pipe_mutex_unlock(ws->cs_stack_lock);
584 pipe_semaphore_signal(&ws->cs_queued);
585 }
586
587 static PIPE_THREAD_ROUTINE(radeon_drm_cs_emit_ioctl, param)
588 {
589 struct radeon_drm_winsys *ws = (struct radeon_drm_winsys *)param;
590 struct radeon_drm_cs *cs;
591 unsigned i;
592
593 while (1) {
594 pipe_semaphore_wait(&ws->cs_queued);
595 if (ws->kill_thread)
596 break;
597
598 pipe_mutex_lock(ws->cs_stack_lock);
599 cs = ws->cs_stack[0];
600 for (i = 1; i < ws->ncs; i++)
601 ws->cs_stack[i - 1] = ws->cs_stack[i];
602 ws->cs_stack[--ws->ncs] = NULL;
603 pipe_mutex_unlock(ws->cs_stack_lock);
604
605 if (cs) {
606 radeon_drm_cs_emit_ioctl_oneshot(cs, cs->cst);
607 pipe_semaphore_signal(&cs->flush_completed);
608 }
609 }
610 pipe_mutex_lock(ws->cs_stack_lock);
611 for (i = 0; i < ws->ncs; i++) {
612 pipe_semaphore_signal(&ws->cs_stack[i]->flush_completed);
613 ws->cs_stack[i] = NULL;
614 }
615 ws->ncs = 0;
616 pipe_mutex_unlock(ws->cs_stack_lock);
617 return 0;
618 }
619
620 DEBUG_GET_ONCE_BOOL_OPTION(thread, "RADEON_THREAD", TRUE)
621 static PIPE_THREAD_ROUTINE(radeon_drm_cs_emit_ioctl, param);
622
623 static bool radeon_winsys_unref(struct radeon_winsys *ws)
624 {
625 struct radeon_drm_winsys *rws = (struct radeon_drm_winsys*)ws;
626 bool destroy;
627
628 /* When the reference counter drops to zero, remove the fd from the table.
629 * This must happen while the mutex is locked, so that
630 * radeon_drm_winsys_create in another thread doesn't get the winsys
631 * from the table when the counter drops to 0. */
632 pipe_mutex_lock(fd_tab_mutex);
633
634 destroy = pipe_reference(&rws->reference, NULL);
635 if (destroy && fd_tab)
636 util_hash_table_remove(fd_tab, intptr_to_pointer(rws->fd));
637
638 pipe_mutex_unlock(fd_tab_mutex);
639 return destroy;
640 }
641
642 PUBLIC struct radeon_winsys *
643 radeon_drm_winsys_create(int fd, radeon_screen_create_t screen_create)
644 {
645 struct radeon_drm_winsys *ws;
646
647 pipe_mutex_lock(fd_tab_mutex);
648 if (!fd_tab) {
649 fd_tab = util_hash_table_create(hash_fd, compare_fd);
650 }
651
652 ws = util_hash_table_get(fd_tab, intptr_to_pointer(fd));
653 if (ws) {
654 pipe_reference(NULL, &ws->reference);
655 pipe_mutex_unlock(fd_tab_mutex);
656 return &ws->base;
657 }
658
659 ws = CALLOC_STRUCT(radeon_drm_winsys);
660 if (!ws) {
661 pipe_mutex_unlock(fd_tab_mutex);
662 return NULL;
663 }
664
665 ws->fd = fd;
666
667 if (!do_winsys_init(ws))
668 goto fail;
669
670 /* Create managers. */
671 ws->kman = radeon_bomgr_create(ws);
672 if (!ws->kman)
673 goto fail;
674
675 ws->cman = pb_cache_manager_create(ws->kman, 1000000, 2.0f, 0,
676 (ws->info.vram_size + ws->info.gart_size) / 8);
677 if (!ws->cman)
678 goto fail;
679
680 if (ws->gen >= DRV_R600) {
681 ws->surf_man = radeon_surface_manager_new(fd);
682 if (!ws->surf_man)
683 goto fail;
684 }
685
686 /* init reference */
687 pipe_reference_init(&ws->reference, 1);
688
689 /* Set functions. */
690 ws->base.unref = radeon_winsys_unref;
691 ws->base.destroy = radeon_winsys_destroy;
692 ws->base.query_info = radeon_query_info;
693 ws->base.cs_request_feature = radeon_cs_request_feature;
694 ws->base.surface_init = radeon_drm_winsys_surface_init;
695 ws->base.surface_best = radeon_drm_winsys_surface_best;
696 ws->base.query_value = radeon_query_value;
697
698 radeon_bomgr_init_functions(ws);
699 radeon_drm_cs_init_functions(ws);
700
701 pipe_mutex_init(ws->hyperz_owner_mutex);
702 pipe_mutex_init(ws->cmask_owner_mutex);
703 pipe_mutex_init(ws->cs_stack_lock);
704
705 ws->ncs = 0;
706 pipe_semaphore_init(&ws->cs_queued, 0);
707 if (ws->num_cpus > 1 && debug_get_option_thread())
708 ws->thread = pipe_thread_create(radeon_drm_cs_emit_ioctl, ws);
709
710 /* Create the screen at the end. The winsys must be initialized
711 * completely.
712 *
713 * Alternatively, we could create the screen based on "ws->gen"
714 * and link all drivers into one binary blob. */
715 ws->base.screen = screen_create(&ws->base);
716 if (!ws->base.screen) {
717 radeon_winsys_destroy(&ws->base);
718 pipe_mutex_unlock(fd_tab_mutex);
719 return NULL;
720 }
721
722 util_hash_table_set(fd_tab, intptr_to_pointer(fd), ws);
723
724 /* We must unlock the mutex once the winsys is fully initialized, so that
725 * other threads attempting to create the winsys from the same fd will
726 * get a fully initialized winsys and not just half-way initialized. */
727 pipe_mutex_unlock(fd_tab_mutex);
728
729 return &ws->base;
730
731 fail:
732 pipe_mutex_unlock(fd_tab_mutex);
733 if (ws->cman)
734 ws->cman->destroy(ws->cman);
735 if (ws->kman)
736 ws->kman->destroy(ws->kman);
737 if (ws->surf_man)
738 radeon_surface_manager_free(ws->surf_man);
739 FREE(ws);
740 return NULL;
741 }