Merge branch 'mesa_7_5_branch'
[mesa.git] / src / mesa / drivers / dri / radeon / radeon_bo_legacy.c
1 /*
2 * Copyright © 2008 Nicolai Haehnle
3 * Copyright © 2008 Dave Airlie
4 * Copyright © 2008 Jérôme Glisse
5 * All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the
9 * "Software"), to deal in the Software without restriction, including
10 * without limitation the rights to use, copy, modify, merge, publish,
11 * distribute, sub license, and/or sell copies of the Software, and to
12 * permit persons to whom the Software is furnished to do so, subject to
13 * the following conditions:
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 NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20 * OTHERWISE, 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 * Aapo Tahkola <aet@rasterburn.org>
30 * Nicolai Haehnle <prefect_@gmx.net>
31 * Dave Airlie
32 * Jérôme Glisse <glisse@freedesktop.org>
33 */
34 #include <stdio.h>
35 #include <stddef.h>
36 #include <stdint.h>
37 #include <stdlib.h>
38 #include <string.h>
39 #include <errno.h>
40 #include <unistd.h>
41 #include <sys/mman.h>
42 #include <sys/ioctl.h>
43 #include "xf86drm.h"
44 #include "texmem.h"
45 #include "main/simple_list.h"
46
47 #include "drm.h"
48 #include "radeon_drm.h"
49 #include "radeon_common.h"
50 #include "radeon_bocs_wrapper.h"
51 #include "radeon_macros.h"
52
53 /* no seriously texmem.c is this screwed up */
54 struct bo_legacy_texture_object {
55 driTextureObject base;
56 struct bo_legacy *parent;
57 };
58
59 struct bo_legacy {
60 struct radeon_bo base;
61 int map_count;
62 uint32_t pending;
63 int is_pending;
64 int static_bo;
65 uint32_t offset;
66 struct bo_legacy_texture_object *tobj;
67 int validated;
68 int dirty;
69 void *ptr;
70 struct bo_legacy *next, *prev;
71 struct bo_legacy *pnext, *pprev;
72 #ifdef RADEON_DEBUG_BO
73 char szBufUsage[16];
74 #endif /* RADEON_DEBUG_BO */
75 };
76
77 struct bo_manager_legacy {
78 struct radeon_bo_manager base;
79 unsigned nhandle;
80 unsigned nfree_handles;
81 unsigned cfree_handles;
82 uint32_t current_age;
83 struct bo_legacy bos;
84 struct bo_legacy pending_bos;
85 uint32_t fb_location;
86 uint32_t texture_offset;
87 unsigned dma_alloc_size;
88 uint32_t dma_buf_count;
89 unsigned cpendings;
90 driTextureObject texture_swapped;
91 driTexHeap *texture_heap;
92 struct radeon_screen *screen;
93 unsigned *free_handles;
94 };
95
96 static void bo_legacy_tobj_destroy(void *data, driTextureObject *t)
97 {
98 struct bo_legacy_texture_object *tobj = (struct bo_legacy_texture_object *)t;
99
100 if (tobj->parent) {
101 tobj->parent->tobj = NULL;
102 tobj->parent->validated = 0;
103 }
104 }
105
106 static void inline clean_handles(struct bo_manager_legacy *bom)
107 {
108 while (bom->cfree_handles > 0 &&
109 !bom->free_handles[bom->cfree_handles - 1])
110 bom->cfree_handles--;
111
112 }
113 static int legacy_new_handle(struct bo_manager_legacy *bom, uint32_t *handle)
114 {
115 uint32_t tmp;
116
117 *handle = 0;
118 if (bom->nhandle == 0xFFFFFFFF) {
119 return -EINVAL;
120 }
121 if (bom->cfree_handles > 0) {
122 tmp = bom->free_handles[--bom->cfree_handles];
123 clean_handles(bom);
124 } else {
125 bom->cfree_handles = 0;
126 tmp = bom->nhandle++;
127 }
128 assert(tmp);
129 *handle = tmp;
130 return 0;
131 }
132
133 static int legacy_free_handle(struct bo_manager_legacy *bom, uint32_t handle)
134 {
135 uint32_t *handles;
136
137 if (!handle) {
138 return 0;
139 }
140 if (handle == (bom->nhandle - 1)) {
141 int i;
142
143 bom->nhandle--;
144 for (i = bom->cfree_handles - 1; i >= 0; i--) {
145 if (bom->free_handles[i] == (bom->nhandle - 1)) {
146 bom->nhandle--;
147 bom->free_handles[i] = 0;
148 }
149 }
150 clean_handles(bom);
151 return 0;
152 }
153 if (bom->cfree_handles < bom->nfree_handles) {
154 bom->free_handles[bom->cfree_handles++] = handle;
155 return 0;
156 }
157 bom->nfree_handles += 0x100;
158 handles = (uint32_t*)realloc(bom->free_handles, bom->nfree_handles * 4);
159 if (handles == NULL) {
160 bom->nfree_handles -= 0x100;
161 return -ENOMEM;
162 }
163 bom->free_handles = handles;
164 bom->free_handles[bom->cfree_handles++] = handle;
165 return 0;
166 }
167
168 static void legacy_get_current_age(struct bo_manager_legacy *boml)
169 {
170 drm_radeon_getparam_t gp;
171 unsigned char *RADEONMMIO = NULL;
172 int r;
173
174 if ( IS_R300_CLASS(boml->screen)
175 || IS_R600_CLASS(boml->screen) )
176 {
177 gp.param = RADEON_PARAM_LAST_CLEAR;
178 gp.value = (int *)&boml->current_age;
179 r = drmCommandWriteRead(boml->base.fd, DRM_RADEON_GETPARAM,
180 &gp, sizeof(gp));
181 if (r) {
182 fprintf(stderr, "%s: drmRadeonGetParam: %d\n", __FUNCTION__, r);
183 exit(1);
184 }
185 }
186 else {
187 RADEONMMIO = boml->screen->mmio.map;
188 boml->current_age = boml->screen->scratch[3];
189 boml->current_age = INREG(RADEON_GUI_SCRATCH_REG3);
190 }
191 }
192
193 static int legacy_is_pending(struct radeon_bo *bo)
194 {
195 struct bo_manager_legacy *boml = (struct bo_manager_legacy *)bo->bom;
196 struct bo_legacy *bo_legacy = (struct bo_legacy*)bo;
197
198 if (bo_legacy->is_pending <= 0) {
199 bo_legacy->is_pending = 0;
200 return 0;
201 }
202 if (boml->current_age >= bo_legacy->pending) {
203 if (boml->pending_bos.pprev == bo_legacy) {
204 boml->pending_bos.pprev = bo_legacy->pprev;
205 }
206 bo_legacy->pprev->pnext = bo_legacy->pnext;
207 if (bo_legacy->pnext) {
208 bo_legacy->pnext->pprev = bo_legacy->pprev;
209 }
210 assert(bo_legacy->is_pending <= bo->cref);
211 while (bo_legacy->is_pending--) {
212 bo = radeon_bo_unref(bo);
213 if (!bo)
214 break;
215 }
216 if (bo)
217 bo_legacy->is_pending = 0;
218 boml->cpendings--;
219 return 0;
220 }
221 return 1;
222 }
223
224 static int legacy_wait_pending(struct radeon_bo *bo)
225 {
226 struct bo_manager_legacy *boml = (struct bo_manager_legacy *)bo->bom;
227 struct bo_legacy *bo_legacy = (struct bo_legacy*)bo;
228
229 if (!bo_legacy->is_pending) {
230 return 0;
231 }
232 /* FIXME: lockup and userspace busy looping that's all the folks */
233 legacy_get_current_age(boml);
234 while (legacy_is_pending(bo)) {
235 usleep(10);
236 legacy_get_current_age(boml);
237 }
238 return 0;
239 }
240
241 static void legacy_track_pending(struct bo_manager_legacy *boml, int debug)
242 {
243 struct bo_legacy *bo_legacy;
244 struct bo_legacy *next;
245
246 legacy_get_current_age(boml);
247 bo_legacy = boml->pending_bos.pnext;
248 while (bo_legacy) {
249 if (debug)
250 fprintf(stderr,"pending %p %d %d %d\n", bo_legacy, bo_legacy->base.size,
251 boml->current_age, bo_legacy->pending);
252 next = bo_legacy->pnext;
253 if (legacy_is_pending(&(bo_legacy->base))) {
254 }
255 bo_legacy = next;
256 }
257 }
258
259 static int legacy_wait_any_pending(struct bo_manager_legacy *boml)
260 {
261 struct bo_legacy *bo_legacy;
262
263 legacy_get_current_age(boml);
264 bo_legacy = boml->pending_bos.pnext;
265 if (!bo_legacy)
266 return -1;
267 legacy_wait_pending(&bo_legacy->base);
268 return 0;
269 }
270
271 static void legacy_kick_all_buffers(struct bo_manager_legacy *boml)
272 {
273 struct bo_legacy *legacy;
274
275 legacy = boml->bos.next;
276 while (legacy != &boml->bos) {
277 if (legacy->tobj) {
278 if (legacy->validated) {
279 driDestroyTextureObject(&legacy->tobj->base);
280 legacy->tobj = 0;
281 legacy->validated = 0;
282 }
283 }
284 legacy = legacy->next;
285 }
286 }
287
288 static struct bo_legacy *bo_allocate(struct bo_manager_legacy *boml,
289 uint32_t size,
290 uint32_t alignment,
291 uint32_t domains,
292 #ifdef RADEON_DEBUG_BO
293 uint32_t flags,
294 char * szBufUsage)
295 #else
296 uint32_t flags)
297 #endif /* RADEON_DEBUG_BO */
298 {
299 struct bo_legacy *bo_legacy;
300 static int pgsize;
301
302 if (pgsize == 0)
303 pgsize = getpagesize() - 1;
304
305 size = (size + pgsize) & ~pgsize;
306
307 bo_legacy = (struct bo_legacy*)calloc(1, sizeof(struct bo_legacy));
308 if (bo_legacy == NULL) {
309 return NULL;
310 }
311 bo_legacy->base.bom = (struct radeon_bo_manager*)boml;
312 bo_legacy->base.handle = 0;
313 bo_legacy->base.size = size;
314 bo_legacy->base.alignment = alignment;
315 bo_legacy->base.domains = domains;
316 bo_legacy->base.flags = flags;
317 bo_legacy->base.ptr = NULL;
318 bo_legacy->map_count = 0;
319 bo_legacy->next = NULL;
320 bo_legacy->prev = NULL;
321 bo_legacy->pnext = NULL;
322 bo_legacy->pprev = NULL;
323 bo_legacy->next = boml->bos.next;
324 bo_legacy->prev = &boml->bos;
325 boml->bos.next = bo_legacy;
326 if (bo_legacy->next) {
327 bo_legacy->next->prev = bo_legacy;
328 }
329
330 #ifdef RADEON_DEBUG_BO
331 sprintf(bo_legacy->szBufUsage, "%s", szBufUsage);
332 #endif /* RADEON_DEBUG_BO */
333
334 return bo_legacy;
335 }
336
337 static int bo_dma_alloc(struct radeon_bo *bo)
338 {
339 struct bo_manager_legacy *boml = (struct bo_manager_legacy *)bo->bom;
340 struct bo_legacy *bo_legacy = (struct bo_legacy*)bo;
341 drm_radeon_mem_alloc_t alloc;
342 unsigned size;
343 int base_offset;
344 int r;
345
346 /* align size on 4Kb */
347 size = (((4 * 1024) - 1) + bo->size) & ~((4 * 1024) - 1);
348 alloc.region = RADEON_MEM_REGION_GART;
349 alloc.alignment = bo_legacy->base.alignment;
350 alloc.size = size;
351 alloc.region_offset = &base_offset;
352 r = drmCommandWriteRead(bo->bom->fd,
353 DRM_RADEON_ALLOC,
354 &alloc,
355 sizeof(alloc));
356 if (r) {
357 /* ptr is set to NULL if dma allocation failed */
358 bo_legacy->ptr = NULL;
359 return r;
360 }
361 bo_legacy->ptr = boml->screen->gartTextures.map + base_offset;
362 bo_legacy->offset = boml->screen->gart_texture_offset + base_offset;
363 bo->size = size;
364 boml->dma_alloc_size += size;
365 boml->dma_buf_count++;
366 return 0;
367 }
368
369 static int bo_dma_free(struct radeon_bo *bo)
370 {
371 struct bo_manager_legacy *boml = (struct bo_manager_legacy *)bo->bom;
372 struct bo_legacy *bo_legacy = (struct bo_legacy*)bo;
373 drm_radeon_mem_free_t memfree;
374 int r;
375
376 if (bo_legacy->ptr == NULL) {
377 /* ptr is set to NULL if dma allocation failed */
378 return 0;
379 }
380 legacy_get_current_age(boml);
381 memfree.region = RADEON_MEM_REGION_GART;
382 memfree.region_offset = bo_legacy->offset;
383 memfree.region_offset -= boml->screen->gart_texture_offset;
384 r = drmCommandWrite(boml->base.fd,
385 DRM_RADEON_FREE,
386 &memfree,
387 sizeof(memfree));
388 if (r) {
389 fprintf(stderr, "Failed to free bo[%p] at %08x\n",
390 &bo_legacy->base, memfree.region_offset);
391 fprintf(stderr, "ret = %s\n", strerror(-r));
392 return r;
393 }
394 boml->dma_alloc_size -= bo_legacy->base.size;
395 boml->dma_buf_count--;
396 return 0;
397 }
398
399 static void bo_free(struct bo_legacy *bo_legacy)
400 {
401 struct bo_manager_legacy *boml;
402
403 if (bo_legacy == NULL) {
404 return;
405 }
406 boml = (struct bo_manager_legacy *)bo_legacy->base.bom;
407 bo_legacy->prev->next = bo_legacy->next;
408 if (bo_legacy->next) {
409 bo_legacy->next->prev = bo_legacy->prev;
410 }
411 if (!bo_legacy->static_bo) {
412 legacy_free_handle(boml, bo_legacy->base.handle);
413 if (bo_legacy->base.domains & RADEON_GEM_DOMAIN_GTT) {
414 /* dma buffers */
415 bo_dma_free(&bo_legacy->base);
416 } else {
417 driDestroyTextureObject(&bo_legacy->tobj->base);
418 bo_legacy->tobj = NULL;
419 /* free backing store */
420 free(bo_legacy->ptr);
421 }
422 }
423 memset(bo_legacy, 0 , sizeof(struct bo_legacy));
424 free(bo_legacy);
425 }
426
427 static struct radeon_bo *bo_open(struct radeon_bo_manager *bom,
428 uint32_t handle,
429 uint32_t size,
430 uint32_t alignment,
431 uint32_t domains,
432 #ifdef RADEON_DEBUG_BO
433 uint32_t flags,
434 char * szBufUsage)
435 #else
436 uint32_t flags)
437 #endif /* RADEON_DEBUG_BO */
438 {
439 struct bo_manager_legacy *boml = (struct bo_manager_legacy *)bom;
440 struct bo_legacy *bo_legacy;
441 int r;
442
443 if (handle) {
444 bo_legacy = boml->bos.next;
445 while (bo_legacy) {
446 if (bo_legacy->base.handle == handle) {
447 radeon_bo_ref(&(bo_legacy->base));
448 return (struct radeon_bo*)bo_legacy;
449 }
450 bo_legacy = bo_legacy->next;
451 }
452 return NULL;
453 }
454 #ifdef RADEON_DEBUG_BO
455 bo_legacy = bo_allocate(boml, size, alignment, domains, flags, szBufUsage);
456 #else
457 bo_legacy = bo_allocate(boml, size, alignment, domains, flags);
458 #endif /* RADEON_DEBUG_BO */
459 bo_legacy->static_bo = 0;
460 r = legacy_new_handle(boml, &bo_legacy->base.handle);
461 if (r) {
462 bo_free(bo_legacy);
463 return NULL;
464 }
465 if (bo_legacy->base.domains & RADEON_GEM_DOMAIN_GTT)
466 {
467 retry:
468 legacy_track_pending(boml, 0);
469 /* dma buffers */
470
471 r = bo_dma_alloc(&(bo_legacy->base));
472 if (r)
473 {
474 if (legacy_wait_any_pending(boml) == -1)
475 {
476 bo_free(bo_legacy);
477 return NULL;
478 }
479 goto retry;
480 return NULL;
481 }
482 }
483 else
484 {
485 bo_legacy->ptr = malloc(bo_legacy->base.size);
486 if (bo_legacy->ptr == NULL) {
487 bo_free(bo_legacy);
488 return NULL;
489 }
490 }
491 radeon_bo_ref(&(bo_legacy->base));
492
493 return (struct radeon_bo*)bo_legacy;
494 }
495
496 static void bo_ref(struct radeon_bo *bo)
497 {
498 }
499
500 static struct radeon_bo *bo_unref(struct radeon_bo *bo)
501 {
502 struct bo_legacy *bo_legacy = (struct bo_legacy*)bo;
503
504 if (bo->cref <= 0) {
505 bo_legacy->prev->next = bo_legacy->next;
506 if (bo_legacy->next) {
507 bo_legacy->next->prev = bo_legacy->prev;
508 }
509 if (!bo_legacy->is_pending) {
510 bo_free(bo_legacy);
511 }
512 return NULL;
513 }
514 return bo;
515 }
516
517 static int bo_map(struct radeon_bo *bo, int write)
518 {
519 struct bo_manager_legacy *boml = (struct bo_manager_legacy *)bo->bom;
520 struct bo_legacy *bo_legacy = (struct bo_legacy*)bo;
521
522 legacy_wait_pending(bo);
523 bo_legacy->validated = 0;
524 bo_legacy->dirty = 1;
525 bo_legacy->map_count++;
526 bo->ptr = bo_legacy->ptr;
527 /* Read the first pixel in the frame buffer. This should
528 * be a noop, right? In fact without this conform fails as reading
529 * from the framebuffer sometimes produces old results -- the
530 * on-card read cache gets mixed up and doesn't notice that the
531 * framebuffer has been updated.
532 *
533 * Note that we should probably be reading some otherwise unused
534 * region of VRAM, otherwise we might get incorrect results when
535 * reading pixels from the top left of the screen.
536 *
537 * I found this problem on an R420 with glean's texCube test.
538 * Note that the R200 span code also *writes* the first pixel in the
539 * framebuffer, but I've found this to be unnecessary.
540 * -- Nicolai Hähnle, June 2008
541 */
542 if (!(bo->domains & RADEON_GEM_DOMAIN_GTT)) {
543 int p;
544 volatile int *buf = (int*)boml->screen->driScreen->pFB;
545 p = *buf;
546 }
547
548 return 0;
549 }
550
551 static int bo_unmap(struct radeon_bo *bo)
552 {
553 struct bo_legacy *bo_legacy = (struct bo_legacy*)bo;
554
555 if (--bo_legacy->map_count > 0)
556 {
557 return 0;
558 }
559
560 bo->ptr = NULL;
561
562 return 0;
563 }
564
565
566 static int bo_is_static(struct radeon_bo *bo)
567 {
568 struct bo_legacy *bo_legacy = (struct bo_legacy*)bo;
569 return bo_legacy->static_bo;
570 }
571
572 static struct radeon_bo_funcs bo_legacy_funcs = {
573 bo_open,
574 bo_ref,
575 bo_unref,
576 bo_map,
577 bo_unmap,
578 NULL,
579 bo_is_static,
580 };
581
582 static int bo_vram_validate(struct radeon_bo *bo,
583 uint32_t *soffset,
584 uint32_t *eoffset)
585 {
586 struct bo_manager_legacy *boml = (struct bo_manager_legacy *)bo->bom;
587 struct bo_legacy *bo_legacy = (struct bo_legacy*)bo;
588 int r;
589 int retry_count = 0, pending_retry = 0;
590
591 if (!bo_legacy->tobj) {
592 bo_legacy->tobj = CALLOC(sizeof(struct bo_legacy_texture_object));
593 bo_legacy->tobj->parent = bo_legacy;
594 make_empty_list(&bo_legacy->tobj->base);
595 bo_legacy->tobj->base.totalSize = bo->size;
596 retry:
597 r = driAllocateTexture(&boml->texture_heap, 1,
598 &bo_legacy->tobj->base);
599 if (r) {
600 pending_retry = 0;
601 while(boml->cpendings && pending_retry++ < 10000) {
602 legacy_track_pending(boml, 0);
603 retry_count++;
604 if (retry_count > 2) {
605 free(bo_legacy->tobj);
606 bo_legacy->tobj = NULL;
607 fprintf(stderr, "Ouch! vram_validate failed %d\n", r);
608 return -1;
609 }
610 goto retry;
611 }
612 }
613 bo_legacy->offset = boml->texture_offset +
614 bo_legacy->tobj->base.memBlock->ofs;
615 bo_legacy->dirty = 1;
616 }
617
618 assert(bo_legacy->tobj->base.memBlock);
619
620 if (bo_legacy->tobj)
621 driUpdateTextureLRU(&bo_legacy->tobj->base);
622
623 if (bo_legacy->dirty || bo_legacy->tobj->base.dirty_images[0]) {
624 if (IS_R600_CLASS(boml->screen)) {
625 char *src = bo_legacy->ptr;
626 char *dst = (char *) boml->screen->driScreen->pFB +
627 (bo_legacy->offset - boml->fb_location);
628
629 /* FIXME: alignment, pitch, etc. */
630 memcpy(dst, src, bo->size);
631 } else {
632 /* Copy to VRAM using a blit.
633 * All memory is 4K aligned. We're using 1024 pixels wide blits.
634 */
635 drm_radeon_texture_t tex;
636 drm_radeon_tex_image_t tmp;
637 int ret;
638
639 tex.offset = bo_legacy->offset;
640 tex.image = &tmp;
641 assert(!(tex.offset & 1023));
642
643 tmp.x = 0;
644 tmp.y = 0;
645 if (bo->size < 4096) {
646 tmp.width = (bo->size + 3) / 4;
647 tmp.height = 1;
648 } else {
649 tmp.width = 1024;
650 tmp.height = (bo->size + 4095) / 4096;
651 }
652 tmp.data = bo_legacy->ptr;
653 tex.format = RADEON_TXFORMAT_ARGB8888;
654 tex.width = tmp.width;
655 tex.height = tmp.height;
656 tex.pitch = MAX2(tmp.width / 16, 1);
657 do {
658 ret = drmCommandWriteRead(bo->bom->fd,
659 DRM_RADEON_TEXTURE,
660 &tex,
661 sizeof(drm_radeon_texture_t));
662 if (ret) {
663 if (RADEON_DEBUG & DEBUG_IOCTL)
664 fprintf(stderr, "DRM_RADEON_TEXTURE: again!\n");
665 usleep(1);
666 }
667 } while (ret == -EAGAIN);
668 }
669 bo_legacy->dirty = 0;
670 bo_legacy->tobj->base.dirty_images[0] = 0;
671 }
672 return 0;
673 }
674
675 /*
676 * radeon_bo_legacy_validate -
677 * returns:
678 * 0 - all good
679 * -EINVAL - mapped buffer can't be validated
680 * -EAGAIN - restart validation we've kicked all the buffers out
681 */
682 int radeon_bo_legacy_validate(struct radeon_bo *bo,
683 uint32_t *soffset,
684 uint32_t *eoffset)
685 {
686 struct bo_manager_legacy *boml = (struct bo_manager_legacy *)bo->bom;
687 struct bo_legacy *bo_legacy = (struct bo_legacy*)bo;
688 int r;
689 int retries = 0;
690
691 if (bo_legacy->map_count) {
692 #ifdef RADEON_DEBUG_BO
693 fprintf(stderr, "bo(%p, %d, %s) is mapped (%d) can't valide it.\n",
694 bo, bo->size, bo_legacy->szBufUsage, bo_legacy->map_count);
695 #else
696 fprintf(stderr, "bo(%p, %d) is mapped (%d) can't valide it.\n",
697 bo, bo->size, bo_legacy->map_count);
698 #endif /* RADEON_DEBUG_BO */
699
700 return -EINVAL;
701 }
702 if (bo_legacy->static_bo || bo_legacy->validated) {
703 *soffset = bo_legacy->offset;
704 *eoffset = bo_legacy->offset + bo->size;
705
706 return 0;
707 }
708 if (!(bo->domains & RADEON_GEM_DOMAIN_GTT)) {
709
710 r = bo_vram_validate(bo, soffset, eoffset);
711 if (r) {
712 legacy_track_pending(boml, 0);
713 legacy_kick_all_buffers(boml);
714 retries++;
715 if (retries == 2) {
716 fprintf(stderr,"legacy bo: failed to get relocations into aperture\n");
717 assert(0);
718 exit(-1);
719 }
720 return -EAGAIN;
721 }
722 }
723 *soffset = bo_legacy->offset;
724 *eoffset = bo_legacy->offset + bo->size;
725 bo_legacy->validated = 1;
726
727 return 0;
728 }
729
730 void radeon_bo_legacy_pending(struct radeon_bo *bo, uint32_t pending)
731 {
732 struct bo_manager_legacy *boml = (struct bo_manager_legacy *)bo->bom;
733 struct bo_legacy *bo_legacy = (struct bo_legacy*)bo;
734
735 bo_legacy->pending = pending;
736 bo_legacy->is_pending++;
737 /* add to pending list */
738 radeon_bo_ref(bo);
739 if (bo_legacy->is_pending > 1) {
740 return;
741 }
742 bo_legacy->pprev = boml->pending_bos.pprev;
743 bo_legacy->pnext = NULL;
744 bo_legacy->pprev->pnext = bo_legacy;
745 boml->pending_bos.pprev = bo_legacy;
746 boml->cpendings++;
747 }
748
749 void radeon_bo_manager_legacy_dtor(struct radeon_bo_manager *bom)
750 {
751 struct bo_manager_legacy *boml = (struct bo_manager_legacy *)bom;
752 struct bo_legacy *bo_legacy;
753
754 if (bom == NULL) {
755 return;
756 }
757 bo_legacy = boml->bos.next;
758 while (bo_legacy) {
759 struct bo_legacy *next;
760
761 next = bo_legacy->next;
762 bo_free(bo_legacy);
763 bo_legacy = next;
764 }
765 driDestroyTextureHeap(boml->texture_heap);
766 free(boml->free_handles);
767 free(boml);
768 }
769
770 static struct bo_legacy *radeon_legacy_bo_alloc_static(struct bo_manager_legacy *bom,
771 int size,
772 #ifdef RADEON_DEBUG_BO
773 uint32_t offset,
774 char * szBufUsage)
775 #else
776 uint32_t offset)
777 #endif /* RADEON_DEBUG_BO */
778 {
779 struct bo_legacy *bo;
780
781 #ifdef RADEON_DEBUG_BO
782 bo = bo_allocate(bom, size, 0, RADEON_GEM_DOMAIN_VRAM, 0, szBufUsage);
783 #else
784 bo = bo_allocate(bom, size, 0, RADEON_GEM_DOMAIN_VRAM, 0);
785 #endif /* RADEON_DEBUG_BO */
786 if (bo == NULL)
787 return NULL;
788 bo->static_bo = 1;
789 bo->offset = offset + bom->fb_location;
790 bo->base.handle = bo->offset;
791 bo->ptr = bom->screen->driScreen->pFB + offset;
792 if (bo->base.handle > bom->nhandle) {
793 bom->nhandle = bo->base.handle + 1;
794 }
795 radeon_bo_ref(&(bo->base));
796 return bo;
797 }
798
799 struct radeon_bo_manager *radeon_bo_manager_legacy_ctor(struct radeon_screen *scrn)
800 {
801 struct bo_manager_legacy *bom;
802 struct bo_legacy *bo;
803 unsigned size;
804
805 bom = (struct bo_manager_legacy*)
806 calloc(1, sizeof(struct bo_manager_legacy));
807 if (bom == NULL) {
808 return NULL;
809 }
810
811 make_empty_list(&bom->texture_swapped);
812
813 bom->texture_heap = driCreateTextureHeap(0,
814 bom,
815 scrn->texSize[0],
816 12,
817 RADEON_NR_TEX_REGIONS,
818 (drmTextureRegionPtr)scrn->sarea->tex_list[0],
819 &scrn->sarea->tex_age[0],
820 &bom->texture_swapped,
821 sizeof(struct bo_legacy_texture_object),
822 &bo_legacy_tobj_destroy);
823 bom->texture_offset = scrn->texOffset[0];
824
825 bom->base.funcs = &bo_legacy_funcs;
826 bom->base.fd = scrn->driScreen->fd;
827 bom->bos.next = NULL;
828 bom->bos.prev = NULL;
829 bom->pending_bos.pprev = &bom->pending_bos;
830 bom->pending_bos.pnext = NULL;
831 bom->screen = scrn;
832 bom->fb_location = scrn->fbLocation;
833 bom->nhandle = 1;
834 bom->cfree_handles = 0;
835 bom->nfree_handles = 0x400;
836 bom->free_handles = (uint32_t*)malloc(bom->nfree_handles * 4);
837 if (bom->free_handles == NULL) {
838 radeon_bo_manager_legacy_dtor((struct radeon_bo_manager*)bom);
839 return NULL;
840 }
841
842 /* biggest framebuffer size */
843 size = 4096*4096*4;
844
845 /* allocate front */
846 #ifdef RADEON_DEBUG_BO
847 bo = radeon_legacy_bo_alloc_static(bom, size, bom->screen->frontOffset, "FRONT BUF");
848 #else
849 bo = radeon_legacy_bo_alloc_static(bom, size, bom->screen->frontOffset);
850 #endif /* RADEON_DEBUG_BO */
851 if (!bo) {
852 radeon_bo_manager_legacy_dtor((struct radeon_bo_manager*)bom);
853 return NULL;
854 }
855 if (scrn->sarea->tiling_enabled) {
856 bo->base.flags = RADEON_BO_FLAGS_MACRO_TILE;
857 }
858
859 /* allocate back */
860 #ifdef RADEON_DEBUG_BO
861 bo = radeon_legacy_bo_alloc_static(bom, size, bom->screen->backOffset, "BACK BUF");
862 #else
863 bo = radeon_legacy_bo_alloc_static(bom, size, bom->screen->backOffset);
864 #endif /* RADEON_DEBUG_BO */
865 if (!bo) {
866 radeon_bo_manager_legacy_dtor((struct radeon_bo_manager*)bom);
867 return NULL;
868 }
869 if (scrn->sarea->tiling_enabled) {
870 bo->base.flags = RADEON_BO_FLAGS_MACRO_TILE;
871 }
872
873 /* allocate depth */
874 #ifdef RADEON_DEBUG_BO
875 bo = radeon_legacy_bo_alloc_static(bom, size, bom->screen->depthOffset, "Z BUF");
876 #else
877 bo = radeon_legacy_bo_alloc_static(bom, size, bom->screen->depthOffset);
878 #endif /* RADEON_DEBUG_BO */
879 if (!bo) {
880 radeon_bo_manager_legacy_dtor((struct radeon_bo_manager*)bom);
881 return NULL;
882 }
883 bo->base.flags = 0;
884 if (scrn->sarea->tiling_enabled) {
885 bo->base.flags |= RADEON_BO_FLAGS_MACRO_TILE;
886 bo->base.flags |= RADEON_BO_FLAGS_MICRO_TILE;
887 }
888 return (struct radeon_bo_manager*)bom;
889 }
890
891 void radeon_bo_legacy_texture_age(struct radeon_bo_manager *bom)
892 {
893 struct bo_manager_legacy *boml = (struct bo_manager_legacy *)bom;
894 DRI_AGE_TEXTURES(boml->texture_heap);
895 }
896
897 unsigned radeon_bo_legacy_relocs_size(struct radeon_bo *bo)
898 {
899 struct bo_legacy *bo_legacy = (struct bo_legacy*)bo;
900
901 if (bo_legacy->static_bo || (bo->domains & RADEON_GEM_DOMAIN_GTT)) {
902 return 0;
903 }
904 return bo->size;
905 }
906