radeonsi: Program RASTER_CONFIG for harvested GPUs v5
[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 radeon_get_drm_value(ws->fd, RADEON_INFO_ACTIVE_CU_COUNT, NULL,
391 &ws->info.max_compute_units);
392
393 radeon_get_drm_value(ws->fd, RADEON_INFO_MAX_SE, NULL,
394 &ws->info.max_se);
395
396 if (!ws->info.max_se) {
397 switch (ws->info.family) {
398 default:
399 ws->info.max_se = 1;
400 break;
401 case CHIP_CYPRESS:
402 case CHIP_HEMLOCK:
403 case CHIP_BARTS:
404 case CHIP_CAYMAN:
405 case CHIP_TAHITI:
406 case CHIP_PITCAIRN:
407 case CHIP_BONAIRE:
408 ws->info.max_se = 2;
409 break;
410 case CHIP_HAWAII:
411 ws->info.max_se = 4;
412 break;
413 }
414 }
415
416 radeon_get_drm_value(ws->fd, RADEON_INFO_MAX_SH_PER_SE, NULL,
417 &ws->info.max_sh_per_se);
418
419 radeon_get_drm_value(ws->fd, RADEON_INFO_ACCEL_WORKING2, NULL,
420 &ws->accel_working2);
421 if (ws->info.family == CHIP_HAWAII && ws->accel_working2 < 2) {
422 fprintf(stderr, "radeon: GPU acceleration for Hawaii disabled, "
423 "returned accel_working2 value %u is smaller than 2. "
424 "Please install a newer kernel.\n",
425 ws->accel_working2);
426 return FALSE;
427 }
428
429 if (radeon_get_drm_value(ws->fd, RADEON_INFO_SI_TILE_MODE_ARRAY, NULL,
430 ws->info.si_tile_mode_array)) {
431 ws->info.si_tile_mode_array_valid = TRUE;
432 }
433
434 if (radeon_get_drm_value(ws->fd, RADEON_INFO_CIK_MACROTILE_MODE_ARRAY, NULL,
435 ws->info.cik_macrotile_mode_array)) {
436 ws->info.cik_macrotile_mode_array_valid = TRUE;
437 }
438
439 return TRUE;
440 }
441
442 static void radeon_winsys_destroy(struct radeon_winsys *rws)
443 {
444 struct radeon_drm_winsys *ws = (struct radeon_drm_winsys*)rws;
445
446 if (ws->thread) {
447 ws->kill_thread = 1;
448 pipe_semaphore_signal(&ws->cs_queued);
449 pipe_thread_wait(ws->thread);
450 }
451 pipe_semaphore_destroy(&ws->cs_queued);
452
453 pipe_mutex_destroy(ws->hyperz_owner_mutex);
454 pipe_mutex_destroy(ws->cmask_owner_mutex);
455 pipe_mutex_destroy(ws->cs_stack_lock);
456
457 ws->cman->destroy(ws->cman);
458 ws->kman->destroy(ws->kman);
459 if (ws->gen >= DRV_R600) {
460 radeon_surface_manager_free(ws->surf_man);
461 }
462 FREE(rws);
463 }
464
465 static void radeon_query_info(struct radeon_winsys *rws,
466 struct radeon_info *info)
467 {
468 *info = ((struct radeon_drm_winsys *)rws)->info;
469 }
470
471 static boolean radeon_cs_request_feature(struct radeon_winsys_cs *rcs,
472 enum radeon_feature_id fid,
473 boolean enable)
474 {
475 struct radeon_drm_cs *cs = radeon_drm_cs(rcs);
476
477 switch (fid) {
478 case RADEON_FID_R300_HYPERZ_ACCESS:
479 return radeon_set_fd_access(cs, &cs->ws->hyperz_owner,
480 &cs->ws->hyperz_owner_mutex,
481 RADEON_INFO_WANT_HYPERZ, "Hyper-Z",
482 enable);
483
484 case RADEON_FID_R300_CMASK_ACCESS:
485 return radeon_set_fd_access(cs, &cs->ws->cmask_owner,
486 &cs->ws->cmask_owner_mutex,
487 RADEON_INFO_WANT_CMASK, "AA optimizations",
488 enable);
489 }
490 return FALSE;
491 }
492
493 static int radeon_drm_winsys_surface_init(struct radeon_winsys *rws,
494 struct radeon_surface *surf)
495 {
496 struct radeon_drm_winsys *ws = (struct radeon_drm_winsys*)rws;
497
498 return radeon_surface_init(ws->surf_man, surf);
499 }
500
501 static int radeon_drm_winsys_surface_best(struct radeon_winsys *rws,
502 struct radeon_surface *surf)
503 {
504 struct radeon_drm_winsys *ws = (struct radeon_drm_winsys*)rws;
505
506 return radeon_surface_best(ws->surf_man, surf);
507 }
508
509 static uint64_t radeon_query_value(struct radeon_winsys *rws,
510 enum radeon_value_id value)
511 {
512 struct radeon_drm_winsys *ws = (struct radeon_drm_winsys*)rws;
513 uint64_t retval = 0;
514
515 switch (value) {
516 case RADEON_REQUESTED_VRAM_MEMORY:
517 return ws->allocated_vram;
518 case RADEON_REQUESTED_GTT_MEMORY:
519 return ws->allocated_gtt;
520 case RADEON_BUFFER_WAIT_TIME_NS:
521 return ws->buffer_wait_time;
522 case RADEON_TIMESTAMP:
523 if (ws->info.drm_minor < 20 || ws->gen < DRV_R600) {
524 assert(0);
525 return 0;
526 }
527
528 radeon_get_drm_value(ws->fd, RADEON_INFO_TIMESTAMP, "timestamp",
529 (uint32_t*)&retval);
530 return retval;
531 case RADEON_NUM_CS_FLUSHES:
532 return ws->num_cs_flushes;
533 case RADEON_NUM_BYTES_MOVED:
534 radeon_get_drm_value(ws->fd, RADEON_INFO_NUM_BYTES_MOVED,
535 "num-bytes-moved", (uint32_t*)&retval);
536 return retval;
537 case RADEON_VRAM_USAGE:
538 radeon_get_drm_value(ws->fd, RADEON_INFO_VRAM_USAGE,
539 "vram-usage", (uint32_t*)&retval);
540 return retval;
541 case RADEON_GTT_USAGE:
542 radeon_get_drm_value(ws->fd, RADEON_INFO_GTT_USAGE,
543 "gtt-usage", (uint32_t*)&retval);
544 return retval;
545 }
546 return 0;
547 }
548
549 static unsigned hash_fd(void *key)
550 {
551 int fd = pointer_to_intptr(key);
552 struct stat stat;
553 fstat(fd, &stat);
554
555 return stat.st_dev ^ stat.st_ino ^ stat.st_rdev;
556 }
557
558 static int compare_fd(void *key1, void *key2)
559 {
560 int fd1 = pointer_to_intptr(key1);
561 int fd2 = pointer_to_intptr(key2);
562 struct stat stat1, stat2;
563 fstat(fd1, &stat1);
564 fstat(fd2, &stat2);
565
566 return stat1.st_dev != stat2.st_dev ||
567 stat1.st_ino != stat2.st_ino ||
568 stat1.st_rdev != stat2.st_rdev;
569 }
570
571 void radeon_drm_ws_queue_cs(struct radeon_drm_winsys *ws, struct radeon_drm_cs *cs)
572 {
573 retry:
574 pipe_mutex_lock(ws->cs_stack_lock);
575 if (ws->ncs >= RING_LAST) {
576 /* no room left for a flush */
577 pipe_mutex_unlock(ws->cs_stack_lock);
578 goto retry;
579 }
580 ws->cs_stack[ws->ncs++] = cs;
581 pipe_mutex_unlock(ws->cs_stack_lock);
582 pipe_semaphore_signal(&ws->cs_queued);
583 }
584
585 static PIPE_THREAD_ROUTINE(radeon_drm_cs_emit_ioctl, param)
586 {
587 struct radeon_drm_winsys *ws = (struct radeon_drm_winsys *)param;
588 struct radeon_drm_cs *cs;
589 unsigned i;
590
591 while (1) {
592 pipe_semaphore_wait(&ws->cs_queued);
593 if (ws->kill_thread)
594 break;
595
596 pipe_mutex_lock(ws->cs_stack_lock);
597 cs = ws->cs_stack[0];
598 for (i = 1; i < ws->ncs; i++)
599 ws->cs_stack[i - 1] = ws->cs_stack[i];
600 ws->cs_stack[--ws->ncs] = NULL;
601 pipe_mutex_unlock(ws->cs_stack_lock);
602
603 if (cs) {
604 radeon_drm_cs_emit_ioctl_oneshot(cs, cs->cst);
605 pipe_semaphore_signal(&cs->flush_completed);
606 }
607 }
608 pipe_mutex_lock(ws->cs_stack_lock);
609 for (i = 0; i < ws->ncs; i++) {
610 pipe_semaphore_signal(&ws->cs_stack[i]->flush_completed);
611 ws->cs_stack[i] = NULL;
612 }
613 ws->ncs = 0;
614 pipe_mutex_unlock(ws->cs_stack_lock);
615 return 0;
616 }
617
618 DEBUG_GET_ONCE_BOOL_OPTION(thread, "RADEON_THREAD", TRUE)
619 static PIPE_THREAD_ROUTINE(radeon_drm_cs_emit_ioctl, param);
620
621 static bool radeon_winsys_unref(struct radeon_winsys *ws)
622 {
623 struct radeon_drm_winsys *rws = (struct radeon_drm_winsys*)ws;
624 bool destroy;
625
626 /* When the reference counter drops to zero, remove the fd from the table.
627 * This must happen while the mutex is locked, so that
628 * radeon_drm_winsys_create in another thread doesn't get the winsys
629 * from the table when the counter drops to 0. */
630 pipe_mutex_lock(fd_tab_mutex);
631
632 destroy = pipe_reference(&rws->reference, NULL);
633 if (destroy && fd_tab)
634 util_hash_table_remove(fd_tab, intptr_to_pointer(rws->fd));
635
636 pipe_mutex_unlock(fd_tab_mutex);
637 return destroy;
638 }
639
640 PUBLIC struct radeon_winsys *
641 radeon_drm_winsys_create(int fd, radeon_screen_create_t screen_create)
642 {
643 struct radeon_drm_winsys *ws;
644
645 pipe_mutex_lock(fd_tab_mutex);
646 if (!fd_tab) {
647 fd_tab = util_hash_table_create(hash_fd, compare_fd);
648 }
649
650 ws = util_hash_table_get(fd_tab, intptr_to_pointer(fd));
651 if (ws) {
652 pipe_reference(NULL, &ws->reference);
653 pipe_mutex_unlock(fd_tab_mutex);
654 return &ws->base;
655 }
656
657 ws = CALLOC_STRUCT(radeon_drm_winsys);
658 if (!ws) {
659 pipe_mutex_unlock(fd_tab_mutex);
660 return NULL;
661 }
662
663 ws->fd = fd;
664
665 if (!do_winsys_init(ws))
666 goto fail;
667
668 /* Create managers. */
669 ws->kman = radeon_bomgr_create(ws);
670 if (!ws->kman)
671 goto fail;
672
673 ws->cman = pb_cache_manager_create(ws->kman, 1000000, 2.0f, 0,
674 (ws->info.vram_size + ws->info.gart_size) / 8);
675 if (!ws->cman)
676 goto fail;
677
678 if (ws->gen >= DRV_R600) {
679 ws->surf_man = radeon_surface_manager_new(fd);
680 if (!ws->surf_man)
681 goto fail;
682 }
683
684 /* init reference */
685 pipe_reference_init(&ws->reference, 1);
686
687 /* Set functions. */
688 ws->base.unref = radeon_winsys_unref;
689 ws->base.destroy = radeon_winsys_destroy;
690 ws->base.query_info = radeon_query_info;
691 ws->base.cs_request_feature = radeon_cs_request_feature;
692 ws->base.surface_init = radeon_drm_winsys_surface_init;
693 ws->base.surface_best = radeon_drm_winsys_surface_best;
694 ws->base.query_value = radeon_query_value;
695
696 radeon_bomgr_init_functions(ws);
697 radeon_drm_cs_init_functions(ws);
698
699 pipe_mutex_init(ws->hyperz_owner_mutex);
700 pipe_mutex_init(ws->cmask_owner_mutex);
701 pipe_mutex_init(ws->cs_stack_lock);
702
703 ws->ncs = 0;
704 pipe_semaphore_init(&ws->cs_queued, 0);
705 if (ws->num_cpus > 1 && debug_get_option_thread())
706 ws->thread = pipe_thread_create(radeon_drm_cs_emit_ioctl, ws);
707
708 /* Create the screen at the end. The winsys must be initialized
709 * completely.
710 *
711 * Alternatively, we could create the screen based on "ws->gen"
712 * and link all drivers into one binary blob. */
713 ws->base.screen = screen_create(&ws->base);
714 if (!ws->base.screen) {
715 radeon_winsys_destroy(&ws->base);
716 pipe_mutex_unlock(fd_tab_mutex);
717 return NULL;
718 }
719
720 util_hash_table_set(fd_tab, intptr_to_pointer(fd), ws);
721
722 /* We must unlock the mutex once the winsys is fully initialized, so that
723 * other threads attempting to create the winsys from the same fd will
724 * get a fully initialized winsys and not just half-way initialized. */
725 pipe_mutex_unlock(fd_tab_mutex);
726
727 return &ws->base;
728
729 fail:
730 pipe_mutex_unlock(fd_tab_mutex);
731 if (ws->cman)
732 ws->cman->destroy(ws->cman);
733 if (ws->kman)
734 ws->kman->destroy(ws->kman);
735 if (ws->surf_man)
736 radeon_surface_manager_free(ws->surf_man);
737 FREE(ws);
738 return NULL;
739 }