svga: try harder to make the cachable flag work
[mesa.git] / src / gallium / drivers / svga / svga_screen_buffer.c
1 /**********************************************************
2 * Copyright 2008-2009 VMware, Inc. All rights reserved.
3 *
4 * Permission is hereby granted, free of charge, to any person
5 * obtaining a copy of this software and associated documentation
6 * files (the "Software"), to deal in the Software without
7 * restriction, including without limitation the rights to use, copy,
8 * modify, merge, publish, distribute, sublicense, and/or sell copies
9 * of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be
13 * included in all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
19 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
20 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 *
24 **********************************************************/
25
26 #include "svga_cmd.h"
27
28 #include "pipe/p_state.h"
29 #include "pipe/p_defines.h"
30 #include "pipe/p_inlines.h"
31 #include "pipe/p_thread.h"
32 #include "util/u_math.h"
33 #include "util/u_memory.h"
34
35 #include "svga_context.h"
36 #include "svga_screen.h"
37 #include "svga_screen_buffer.h"
38 #include "svga_winsys.h"
39 #include "svga_debug.h"
40
41
42 /**
43 * Vertex and index buffers have to be treated slightly differently from
44 * regular guest memory regions because the SVGA device sees them as
45 * surfaces, and the state tracker can create/destroy without the pipe
46 * driver, therefore we must do the uploads from the vws.
47 */
48 static INLINE boolean
49 svga_buffer_needs_hw_storage(unsigned usage)
50 {
51 return usage & (PIPE_BUFFER_USAGE_VERTEX | PIPE_BUFFER_USAGE_INDEX);
52 }
53
54
55 static INLINE enum pipe_error
56 svga_buffer_create_host_surface(struct svga_screen *ss,
57 struct svga_buffer *sbuf)
58 {
59 if(!sbuf->handle) {
60 sbuf->key.flags = 0;
61
62 sbuf->key.format = SVGA3D_BUFFER;
63 if(sbuf->base.usage & PIPE_BUFFER_USAGE_VERTEX)
64 sbuf->key.flags |= SVGA3D_SURFACE_HINT_VERTEXBUFFER;
65 if(sbuf->base.usage & PIPE_BUFFER_USAGE_INDEX)
66 sbuf->key.flags |= SVGA3D_SURFACE_HINT_INDEXBUFFER;
67
68 sbuf->key.size.width = sbuf->base.size;
69 sbuf->key.size.height = 1;
70 sbuf->key.size.depth = 1;
71
72 sbuf->key.numFaces = 1;
73 sbuf->key.numMipLevels = 1;
74 sbuf->key.cachable = 1;
75
76 SVGA_DBG(DEBUG_DMA, "surface_create for buffer sz %d\n", sbuf->base.size);
77
78 sbuf->handle = svga_screen_surface_create(ss, &sbuf->key);
79 if(!sbuf->handle)
80 return PIPE_ERROR_OUT_OF_MEMORY;
81
82 /* Always set the discard flag on the first time the buffer is written
83 * as svga_screen_surface_create might have passed a recycled host
84 * buffer.
85 */
86 sbuf->hw.flags.discard = TRUE;
87
88 SVGA_DBG(DEBUG_DMA, " --> got sid %p sz %d (buffer)\n", sbuf->handle, sbuf->base.size);
89 }
90
91 return PIPE_OK;
92 }
93
94
95 static INLINE void
96 svga_buffer_destroy_host_surface(struct svga_screen *ss,
97 struct svga_buffer *sbuf)
98 {
99 if(sbuf->handle) {
100 SVGA_DBG(DEBUG_DMA, " ungrab sid %p sz %d\n", sbuf->handle, sbuf->base.size);
101 svga_screen_surface_destroy(ss, &sbuf->key, &sbuf->handle);
102 }
103 }
104
105
106 static INLINE void
107 svga_buffer_destroy_hw_storage(struct svga_screen *ss, struct svga_buffer *sbuf)
108 {
109 struct svga_winsys_screen *sws = ss->sws;
110
111 assert(!sbuf->map.count);
112 assert(sbuf->hw.buf);
113 if(sbuf->hw.buf) {
114 sws->buffer_destroy(sws, sbuf->hw.buf);
115 sbuf->hw.buf = NULL;
116 assert(sbuf->head.prev && sbuf->head.next);
117 LIST_DEL(&sbuf->head);
118 #ifdef DEBUG
119 sbuf->head.next = sbuf->head.prev = NULL;
120 #endif
121 }
122 }
123
124 static INLINE enum pipe_error
125 svga_buffer_backup(struct svga_screen *ss, struct svga_buffer *sbuf)
126 {
127 if (sbuf->hw.buf && sbuf->hw.num_ranges) {
128 void *src;
129
130 if (!sbuf->swbuf)
131 sbuf->swbuf = align_malloc(sbuf->base.size, sbuf->base.alignment);
132 if (!sbuf->swbuf)
133 return PIPE_ERROR_OUT_OF_MEMORY;
134
135 src = ss->sws->buffer_map(ss->sws, sbuf->hw.buf,
136 PIPE_BUFFER_USAGE_CPU_READ);
137 if (!src)
138 return PIPE_ERROR;
139
140 memcpy(sbuf->swbuf, src, sbuf->base.size);
141 ss->sws->buffer_unmap(ss->sws, sbuf->hw.buf);
142 }
143
144 return PIPE_OK;
145 }
146
147 /**
148 * Try to make GMR space available by freeing the hardware storage of
149 * unmapped
150 */
151 boolean
152 svga_buffer_free_cached_hw_storage(struct svga_screen *ss)
153 {
154 struct list_head *curr;
155 struct svga_buffer *sbuf;
156 enum pipe_error ret = PIPE_OK;
157
158 curr = ss->cached_buffers.prev;
159
160 /* free the least recently used buffer's hw storage which is not mapped */
161 do {
162 if(curr == &ss->cached_buffers)
163 return FALSE;
164
165 sbuf = LIST_ENTRY(struct svga_buffer, curr, head);
166
167 curr = curr->prev;
168 if (sbuf->map.count == 0)
169 ret = svga_buffer_backup(ss, sbuf);
170
171 } while(sbuf->map.count != 0 || ret != PIPE_OK);
172
173 svga_buffer_destroy_hw_storage(ss, sbuf);
174
175 return TRUE;
176 }
177
178 struct svga_winsys_buffer *
179 svga_winsys_buffer_create( struct svga_screen *ss,
180 unsigned alignment,
181 unsigned usage,
182 unsigned size )
183 {
184 struct svga_winsys_screen *sws = ss->sws;
185 struct svga_winsys_buffer *buf;
186
187 /* Just try */
188 buf = sws->buffer_create(sws, alignment, usage, size);
189 if(!buf) {
190
191 SVGA_DBG(DEBUG_DMA|DEBUG_PERF, "flushing screen to find %d bytes GMR\n",
192 size);
193
194 /* Try flushing all pending DMAs */
195 svga_screen_flush(ss, NULL);
196 buf = sws->buffer_create(sws, alignment, usage, size);
197
198 SVGA_DBG(DEBUG_DMA|DEBUG_PERF, "evicting buffers to find %d bytes GMR\n",
199 size);
200
201 /* Try evicing all buffer storage */
202 while(!buf && svga_buffer_free_cached_hw_storage(ss))
203 buf = sws->buffer_create(sws, alignment, usage, size);
204 }
205
206 return buf;
207 }
208
209
210 /**
211 * Allocate DMA'ble storage for the buffer.
212 *
213 * Called before mapping a buffer.
214 */
215 static INLINE enum pipe_error
216 svga_buffer_create_hw_storage(struct svga_screen *ss,
217 struct svga_buffer *sbuf)
218 {
219 if(!sbuf->hw.buf) {
220 unsigned alignment = sbuf->base.alignment;
221 unsigned usage = 0;
222 unsigned size = sbuf->base.size;
223
224 sbuf->hw.buf = svga_winsys_buffer_create(ss, alignment, usage, size);
225 if(!sbuf->hw.buf)
226 return PIPE_ERROR_OUT_OF_MEMORY;
227
228 assert(!sbuf->needs_flush);
229 assert(!sbuf->head.prev && !sbuf->head.next);
230 LIST_ADD(&sbuf->head, &ss->cached_buffers);
231 }
232
233 return PIPE_OK;
234 }
235
236
237 /**
238 * Variant of SVGA3D_BufferDMA which leaves the copy box temporarily in blank.
239 */
240 static enum pipe_error
241 svga_buffer_upload_command(struct svga_context *svga,
242 struct svga_buffer *sbuf)
243 {
244 struct svga_winsys_context *swc = svga->swc;
245 struct svga_winsys_buffer *guest = sbuf->hw.buf;
246 struct svga_winsys_surface *host = sbuf->handle;
247 SVGA3dTransferType transfer = SVGA3D_WRITE_HOST_VRAM;
248 SVGA3dSurfaceDMAFlags flags = sbuf->hw.flags;
249 SVGA3dCmdSurfaceDMA *cmd;
250 uint32 numBoxes = sbuf->hw.num_ranges;
251 SVGA3dCopyBox *boxes;
252 SVGA3dCmdSurfaceDMASuffix *pSuffix;
253 unsigned region_flags;
254 unsigned surface_flags;
255 struct pipe_buffer *dummy;
256
257 if(transfer == SVGA3D_WRITE_HOST_VRAM) {
258 region_flags = PIPE_BUFFER_USAGE_GPU_READ;
259 surface_flags = PIPE_BUFFER_USAGE_GPU_WRITE;
260 }
261 else if(transfer == SVGA3D_READ_HOST_VRAM) {
262 region_flags = PIPE_BUFFER_USAGE_GPU_WRITE;
263 surface_flags = PIPE_BUFFER_USAGE_GPU_READ;
264 }
265 else {
266 assert(0);
267 return PIPE_ERROR_BAD_INPUT;
268 }
269
270 assert(numBoxes);
271
272 cmd = SVGA3D_FIFOReserve(swc,
273 SVGA_3D_CMD_SURFACE_DMA,
274 sizeof *cmd + numBoxes * sizeof *boxes + sizeof *pSuffix,
275 2);
276 if(!cmd)
277 return PIPE_ERROR_OUT_OF_MEMORY;
278
279 swc->region_relocation(swc, &cmd->guest.ptr, guest, 0, region_flags);
280 cmd->guest.pitch = 0;
281
282 swc->surface_relocation(swc, &cmd->host.sid, host, surface_flags);
283 cmd->host.face = 0;
284 cmd->host.mipmap = 0;
285
286 cmd->transfer = transfer;
287
288 sbuf->hw.boxes = (SVGA3dCopyBox *)&cmd[1];
289 sbuf->hw.svga = svga;
290
291 /* Increment reference count */
292 dummy = NULL;
293 pipe_buffer_reference(&dummy, &sbuf->base);
294
295 pSuffix = (SVGA3dCmdSurfaceDMASuffix *)((uint8_t*)cmd + sizeof *cmd + numBoxes * sizeof *boxes);
296 pSuffix->suffixSize = sizeof *pSuffix;
297 pSuffix->maximumOffset = sbuf->base.size;
298 pSuffix->flags = flags;
299
300 swc->commit(swc);
301
302 return PIPE_OK;
303 }
304
305
306 /**
307 * Patch up the upload DMA command reserved by svga_buffer_upload_command
308 * with the final ranges.
309 */
310 static void
311 svga_buffer_upload_flush(struct svga_context *svga,
312 struct svga_buffer *sbuf)
313 {
314 struct svga_screen *ss = svga_screen(svga->pipe.screen);
315 SVGA3dCopyBox *boxes;
316 unsigned i;
317
318 assert(sbuf->handle);
319 assert(sbuf->hw.buf);
320 assert(sbuf->hw.num_ranges);
321 assert(sbuf->hw.svga == svga);
322 assert(sbuf->hw.boxes);
323
324 /*
325 * Patch the DMA command with the final copy box.
326 */
327
328 SVGA_DBG(DEBUG_DMA, "dma to sid %p\n", sbuf->handle);
329
330 boxes = sbuf->hw.boxes;
331 for(i = 0; i < sbuf->hw.num_ranges; ++i) {
332 SVGA_DBG(DEBUG_DMA, " bytes %u - %u\n",
333 sbuf->hw.ranges[i].start, sbuf->hw.ranges[i].end);
334
335 boxes[i].x = sbuf->hw.ranges[i].start;
336 boxes[i].y = 0;
337 boxes[i].z = 0;
338 boxes[i].w = sbuf->hw.ranges[i].end - sbuf->hw.ranges[i].start;
339 boxes[i].h = 1;
340 boxes[i].d = 1;
341 boxes[i].srcx = sbuf->hw.ranges[i].start;
342 boxes[i].srcy = 0;
343 boxes[i].srcz = 0;
344 }
345
346 sbuf->hw.num_ranges = 0;
347 memset(&sbuf->hw.flags, 0, sizeof sbuf->hw.flags);
348
349 assert(sbuf->head.prev && sbuf->head.next);
350 LIST_DEL(&sbuf->head);
351 sbuf->needs_flush = FALSE;
352 /* XXX: do we care about cached_buffers any more ?*/
353 LIST_ADD(&sbuf->head, &ss->cached_buffers);
354
355 sbuf->hw.svga = NULL;
356 sbuf->hw.boxes = NULL;
357
358 /* Decrement reference count */
359 pipe_buffer_reference((struct pipe_buffer **)&sbuf, NULL);
360 }
361
362
363 /**
364 * Queue a DMA upload of a range of this buffer to the host.
365 *
366 * This function only notes the range down. It doesn't actually emit a DMA
367 * upload command. That only happens when a context tries to refer to this
368 * buffer, and the DMA upload command is added to that context's command buffer.
369 *
370 * We try to lump as many contiguous DMA transfers together as possible.
371 */
372 static void
373 svga_buffer_upload_queue(struct svga_buffer *sbuf,
374 unsigned start,
375 unsigned end)
376 {
377 unsigned i;
378
379 assert(sbuf->hw.buf);
380 assert(end > start);
381
382 /*
383 * Try to grow one of the ranges.
384 *
385 * Note that it is not this function task to care about overlapping ranges,
386 * as the GMR was already given so it is too late to do anything. Situations
387 * where overlapping ranges may pose a problem should be detected via
388 * pipe_context::is_buffer_referenced and the context that refers to the
389 * buffer should be flushed.
390 */
391
392 for(i = 0; i < sbuf->hw.num_ranges; ++i) {
393 if(start <= sbuf->hw.ranges[i].end && sbuf->hw.ranges[i].start <= end) {
394 sbuf->hw.ranges[i].start = MIN2(sbuf->hw.ranges[i].start, start);
395 sbuf->hw.ranges[i].end = MAX2(sbuf->hw.ranges[i].end, end);
396 return;
397 }
398 }
399
400 /*
401 * We cannot add a new range to an existing DMA command, so patch-up the
402 * pending DMA upload and start clean.
403 */
404
405 if(sbuf->needs_flush)
406 svga_buffer_upload_flush(sbuf->hw.svga, sbuf);
407
408 assert(!sbuf->needs_flush);
409 assert(!sbuf->hw.svga);
410 assert(!sbuf->hw.boxes);
411
412 /*
413 * Add a new range.
414 */
415
416 sbuf->hw.ranges[sbuf->hw.num_ranges].start = start;
417 sbuf->hw.ranges[sbuf->hw.num_ranges].end = end;
418 ++sbuf->hw.num_ranges;
419 }
420
421
422 static void *
423 svga_buffer_map_range( struct pipe_screen *screen,
424 struct pipe_buffer *buf,
425 unsigned offset, unsigned length,
426 unsigned usage )
427 {
428 struct svga_screen *ss = svga_screen(screen);
429 struct svga_winsys_screen *sws = ss->sws;
430 struct svga_buffer *sbuf = svga_buffer( buf );
431 void *map;
432
433 if(sbuf->swbuf) {
434 /* User/malloc buffer */
435 map = sbuf->swbuf;
436 }
437 else {
438 if(!sbuf->hw.buf) {
439 struct svga_winsys_surface *handle = sbuf->handle;
440
441 if(svga_buffer_create_hw_storage(ss, sbuf) != PIPE_OK)
442 return NULL;
443
444 /* Populate the hardware storage if the host surface pre-existed */
445 if((usage & PIPE_BUFFER_USAGE_CPU_READ) && handle) {
446 SVGA3dSurfaceDMAFlags flags;
447 enum pipe_error ret;
448 struct pipe_fence_handle *fence = NULL;
449
450 SVGA_DBG(DEBUG_DMA|DEBUG_PERF, "dma from sid %p, bytes %u - %u\n",
451 sbuf->handle, 0, sbuf->base.size);
452
453 memset(&flags, 0, sizeof flags);
454
455 ret = SVGA3D_BufferDMA(ss->swc,
456 sbuf->hw.buf,
457 sbuf->handle,
458 SVGA3D_READ_HOST_VRAM,
459 sbuf->base.size,
460 0,
461 flags);
462 if(ret != PIPE_OK) {
463 ss->swc->flush(ss->swc, NULL);
464
465 ret = SVGA3D_BufferDMA(ss->swc,
466 sbuf->hw.buf,
467 sbuf->handle,
468 SVGA3D_READ_HOST_VRAM,
469 sbuf->base.size,
470 0,
471 flags);
472 assert(ret == PIPE_OK);
473 }
474
475 ss->swc->flush(ss->swc, &fence);
476 sws->fence_finish(sws, fence, 0);
477 sws->fence_reference(sws, &fence, NULL);
478 }
479 }
480 else {
481 if((usage & PIPE_BUFFER_USAGE_CPU_READ) && !sbuf->needs_flush) {
482 /* We already had the hardware storage but we would have to issue
483 * a download if we hadn't, so move the buffer to the begginning
484 * of the LRU list.
485 */
486 assert(sbuf->head.prev && sbuf->head.next);
487 LIST_DEL(&sbuf->head);
488 LIST_ADD(&sbuf->head, &ss->cached_buffers);
489 }
490 }
491
492 map = sws->buffer_map(sws, sbuf->hw.buf, usage);
493 }
494
495 if(map) {
496 pipe_mutex_lock(ss->swc_mutex);
497
498 ++sbuf->map.count;
499
500 if (usage & PIPE_BUFFER_USAGE_CPU_WRITE) {
501 assert(sbuf->map.count <= 1);
502 sbuf->map.writing = TRUE;
503 if (usage & PIPE_BUFFER_USAGE_FLUSH_EXPLICIT)
504 sbuf->map.flush_explicit = TRUE;
505 }
506
507 pipe_mutex_unlock(ss->swc_mutex);
508 }
509
510 return map;
511 }
512
513 static void
514 svga_buffer_flush_mapped_range( struct pipe_screen *screen,
515 struct pipe_buffer *buf,
516 unsigned offset, unsigned length)
517 {
518 struct svga_buffer *sbuf = svga_buffer( buf );
519 struct svga_screen *ss = svga_screen(screen);
520
521 pipe_mutex_lock(ss->swc_mutex);
522 assert(sbuf->map.writing);
523 if(sbuf->map.writing) {
524 assert(sbuf->map.flush_explicit);
525 if(sbuf->hw.buf)
526 svga_buffer_upload_queue(sbuf, offset, offset + length);
527 }
528 pipe_mutex_unlock(ss->swc_mutex);
529 }
530
531 static void
532 svga_buffer_unmap( struct pipe_screen *screen,
533 struct pipe_buffer *buf)
534 {
535 struct svga_screen *ss = svga_screen(screen);
536 struct svga_winsys_screen *sws = ss->sws;
537 struct svga_buffer *sbuf = svga_buffer( buf );
538
539 pipe_mutex_lock(ss->swc_mutex);
540
541 assert(sbuf->map.count);
542 if(sbuf->map.count)
543 --sbuf->map.count;
544
545 if(sbuf->hw.buf)
546 sws->buffer_unmap(sws, sbuf->hw.buf);
547
548 if(sbuf->map.writing) {
549 if(!sbuf->map.flush_explicit) {
550 /* No mapped range was flushed -- flush the whole buffer */
551 SVGA_DBG(DEBUG_DMA, "flushing the whole buffer\n");
552
553 if(sbuf->hw.buf)
554 svga_buffer_upload_queue(sbuf, 0, sbuf->base.size);
555 }
556
557 sbuf->map.writing = FALSE;
558 sbuf->map.flush_explicit = FALSE;
559 }
560
561 pipe_mutex_unlock(ss->swc_mutex);
562 }
563
564 static void
565 svga_buffer_destroy( struct pipe_buffer *buf )
566 {
567 struct svga_screen *ss = svga_screen(buf->screen);
568 struct svga_buffer *sbuf = svga_buffer( buf );
569
570 assert(!p_atomic_read(&buf->reference.count));
571
572 assert(!sbuf->needs_flush);
573
574 if(sbuf->handle) {
575 SVGA_DBG(DEBUG_DMA, "release sid %p sz %d\n", sbuf->handle, sbuf->base.size);
576 svga_screen_surface_destroy(ss, &sbuf->key, &sbuf->handle);
577 }
578
579 if(sbuf->hw.buf)
580 svga_buffer_destroy_hw_storage(ss, sbuf);
581
582 if(sbuf->swbuf && !sbuf->user)
583 align_free(sbuf->swbuf);
584
585 FREE(sbuf);
586 }
587
588 static struct pipe_buffer *
589 svga_buffer_create(struct pipe_screen *screen,
590 unsigned alignment,
591 unsigned usage,
592 unsigned size)
593 {
594 struct svga_screen *ss = svga_screen(screen);
595 struct svga_buffer *sbuf;
596
597 sbuf = CALLOC_STRUCT(svga_buffer);
598 if(!sbuf)
599 goto error1;
600
601 sbuf->magic = SVGA_BUFFER_MAGIC;
602
603 pipe_reference_init(&sbuf->base.reference, 1);
604 sbuf->base.screen = screen;
605 sbuf->base.alignment = alignment;
606 sbuf->base.usage = usage;
607 sbuf->base.size = size;
608
609 if(svga_buffer_needs_hw_storage(usage)) {
610 if(svga_buffer_create_host_surface(ss, sbuf) != PIPE_OK)
611 goto error2;
612 }
613 else {
614 if(alignment < sizeof(void*))
615 alignment = sizeof(void*);
616
617 usage |= PIPE_BUFFER_USAGE_CPU_READ_WRITE;
618
619 sbuf->swbuf = align_malloc(size, alignment);
620 if(!sbuf->swbuf)
621 goto error2;
622 }
623
624 return &sbuf->base;
625
626 error2:
627 FREE(sbuf);
628 error1:
629 return NULL;
630 }
631
632 static struct pipe_buffer *
633 svga_user_buffer_create(struct pipe_screen *screen,
634 void *ptr,
635 unsigned bytes)
636 {
637 struct svga_buffer *sbuf;
638
639 sbuf = CALLOC_STRUCT(svga_buffer);
640 if(!sbuf)
641 goto no_sbuf;
642
643 sbuf->magic = SVGA_BUFFER_MAGIC;
644
645 sbuf->swbuf = ptr;
646 sbuf->user = TRUE;
647
648 pipe_reference_init(&sbuf->base.reference, 1);
649 sbuf->base.screen = screen;
650 sbuf->base.alignment = 1;
651 sbuf->base.usage = 0;
652 sbuf->base.size = bytes;
653
654 return &sbuf->base;
655
656 no_sbuf:
657 return NULL;
658 }
659
660
661 void
662 svga_screen_init_buffer_functions(struct pipe_screen *screen)
663 {
664 screen->buffer_create = svga_buffer_create;
665 screen->user_buffer_create = svga_user_buffer_create;
666 screen->buffer_map_range = svga_buffer_map_range;
667 screen->buffer_flush_mapped_range = svga_buffer_flush_mapped_range;
668 screen->buffer_unmap = svga_buffer_unmap;
669 screen->buffer_destroy = svga_buffer_destroy;
670 }
671
672
673 /**
674 * Copy the contents of the user buffer / malloc buffer to a hardware buffer.
675 */
676 static INLINE enum pipe_error
677 svga_buffer_update_hw(struct svga_screen *ss, struct svga_buffer *sbuf)
678 {
679 if(!sbuf->hw.buf) {
680 enum pipe_error ret;
681 void *map;
682
683 assert(sbuf->swbuf);
684 if(!sbuf->swbuf)
685 return PIPE_ERROR;
686
687 ret = svga_buffer_create_hw_storage(ss, sbuf);
688 assert(ret == PIPE_OK);
689 if(ret != PIPE_OK)
690 return ret;
691
692 pipe_mutex_lock(ss->swc_mutex);
693 map = ss->sws->buffer_map(ss->sws, sbuf->hw.buf, PIPE_BUFFER_USAGE_CPU_WRITE);
694 assert(map);
695 if(!map) {
696 pipe_mutex_unlock(ss->swc_mutex);
697 return PIPE_ERROR_OUT_OF_MEMORY;
698 }
699
700 memcpy(map, sbuf->swbuf, sbuf->base.size);
701 ss->sws->buffer_unmap(ss->sws, sbuf->hw.buf);
702
703 /* This user/malloc buffer is now indistinguishable from a gpu buffer */
704 assert(!sbuf->map.count);
705 if(!sbuf->map.count) {
706 if(sbuf->user)
707 sbuf->user = FALSE;
708 else
709 align_free(sbuf->swbuf);
710 sbuf->swbuf = NULL;
711 }
712
713 svga_buffer_upload_queue(sbuf, 0, sbuf->base.size);
714 }
715
716 pipe_mutex_unlock(ss->swc_mutex);
717 return PIPE_OK;
718 }
719
720
721 struct svga_winsys_surface *
722 svga_buffer_handle(struct svga_context *svga,
723 struct pipe_buffer *buf)
724 {
725 struct pipe_screen *screen = svga->pipe.screen;
726 struct svga_screen *ss = svga_screen(screen);
727 struct svga_buffer *sbuf;
728 enum pipe_error ret;
729
730 if(!buf)
731 return NULL;
732
733 sbuf = svga_buffer(buf);
734
735 assert(!sbuf->map.count);
736
737 if(!sbuf->handle) {
738 ret = svga_buffer_create_host_surface(ss, sbuf);
739 if(ret != PIPE_OK)
740 return NULL;
741
742 ret = svga_buffer_update_hw(ss, sbuf);
743 if(ret != PIPE_OK)
744 return NULL;
745 }
746
747 if(!sbuf->needs_flush && sbuf->hw.num_ranges) {
748 /* Queue the buffer for flushing */
749 ret = svga_buffer_upload_command(svga, sbuf);
750 if(ret != PIPE_OK)
751 /* XXX: Should probably have a richer return value */
752 return NULL;
753
754 assert(sbuf->hw.svga == svga);
755
756 sbuf->needs_flush = TRUE;
757 assert(sbuf->head.prev && sbuf->head.next);
758 LIST_DEL(&sbuf->head);
759 LIST_ADDTAIL(&sbuf->head, &svga->dirty_buffers);
760 }
761
762 return sbuf->handle;
763 }
764
765 struct pipe_buffer *
766 svga_screen_buffer_wrap_surface(struct pipe_screen *screen,
767 enum SVGA3dSurfaceFormat format,
768 struct svga_winsys_surface *srf)
769 {
770 struct pipe_buffer *buf;
771 struct svga_buffer *sbuf;
772 struct svga_winsys_screen *sws = svga_winsys_screen(screen);
773
774 buf = svga_buffer_create(screen, 0, SVGA_BUFFER_USAGE_WRAPPED, 0);
775 if (!buf)
776 return NULL;
777
778 sbuf = svga_buffer(buf);
779
780 /*
781 * We are not the creator of this surface and therefore we must not
782 * cache it for reuse. Set the cacheable flag to zero in the key to
783 * prevent this.
784 */
785 sbuf->key.format = format;
786 sbuf->key.cachable = 0;
787 sws->surface_reference(sws, &sbuf->handle, srf);
788
789 return buf;
790 }
791
792
793 struct svga_winsys_surface *
794 svga_screen_buffer_get_winsys_surface(struct pipe_buffer *buffer)
795 {
796 struct svga_winsys_screen *sws = svga_winsys_screen(buffer->screen);
797 struct svga_winsys_surface *vsurf = NULL;
798
799 assert(svga_buffer(buffer)->key.cachable == 0);
800 svga_buffer(buffer)->key.cachable = 0;
801 sws->surface_reference(sws, &vsurf, svga_buffer(buffer)->handle);
802 return vsurf;
803 }
804
805 void
806 svga_context_flush_buffers(struct svga_context *svga)
807 {
808 struct list_head *curr, *next;
809 struct svga_buffer *sbuf;
810
811 curr = svga->dirty_buffers.next;
812 next = curr->next;
813 while(curr != &svga->dirty_buffers) {
814 sbuf = LIST_ENTRY(struct svga_buffer, curr, head);
815
816 assert(p_atomic_read(&sbuf->base.reference.count) != 0);
817 assert(sbuf->needs_flush);
818
819 svga_buffer_upload_flush(svga, sbuf);
820
821 curr = next;
822 next = curr->next;
823 }
824 }