1916a64245c09c2a3edf9d675ccf86fbf0a6c060
[mesa.git] / src / gallium / drivers / svga / svga_screen_cache.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 "util/u_math.h"
27 #include "util/u_memory.h"
28 #include "util/crc32.h"
29
30 #include "svga_debug.h"
31 #include "svga_format.h"
32 #include "svga_winsys.h"
33 #include "svga_screen.h"
34 #include "svga_screen_cache.h"
35 #include "svga_context.h"
36 #include "svga_cmd.h"
37
38 #define SVGA_SURFACE_CACHE_ENABLED 1
39
40
41 /**
42 * Return the size of the surface described by the key (in bytes).
43 */
44 static unsigned
45 surface_size(const struct svga_host_surface_cache_key *key)
46 {
47 unsigned bw, bh, bpb, total_size, i;
48
49 assert(key->numMipLevels > 0);
50 assert(key->numFaces > 0);
51 assert(key->arraySize > 0);
52
53 if (key->format == SVGA3D_BUFFER) {
54 /* Special case: we don't want to count vertex/index buffers
55 * against the cache size limit, so view them as zero-sized.
56 */
57 return 0;
58 }
59
60 svga_format_size(key->format, &bw, &bh, &bpb);
61
62 total_size = 0;
63
64 for (i = 0; i < key->numMipLevels; i++) {
65 unsigned w = u_minify(key->size.width, i);
66 unsigned h = u_minify(key->size.height, i);
67 unsigned d = u_minify(key->size.depth, i);
68 unsigned img_size = ((w + bw - 1) / bw) * ((h + bh - 1) / bh) * d * bpb;
69 total_size += img_size;
70 }
71
72 total_size *= key->numFaces * key->arraySize * MAX2(1, key->sampleCount);
73
74 return total_size;
75 }
76
77
78 /**
79 * Compute the bucket for this key.
80 */
81 static inline unsigned
82 svga_screen_cache_bucket(const struct svga_host_surface_cache_key *key)
83 {
84 return util_hash_crc32(key, sizeof *key) % SVGA_HOST_SURFACE_CACHE_BUCKETS;
85 }
86
87
88 /**
89 * Search the cache for a surface that matches the key. If a match is
90 * found, remove it from the cache and return the surface pointer.
91 * Return NULL otherwise.
92 */
93 static struct svga_winsys_surface *
94 svga_screen_cache_lookup(struct svga_screen *svgascreen,
95 const struct svga_host_surface_cache_key *key)
96 {
97 struct svga_host_surface_cache *cache = &svgascreen->cache;
98 struct svga_winsys_screen *sws = svgascreen->sws;
99 struct svga_host_surface_cache_entry *entry;
100 struct svga_winsys_surface *handle = NULL;
101 struct list_head *curr, *next;
102 unsigned bucket;
103 unsigned tries = 0;
104
105 assert(key->cachable);
106
107 bucket = svga_screen_cache_bucket(key);
108
109 mtx_lock(&cache->mutex);
110
111 curr = cache->bucket[bucket].next;
112 next = curr->next;
113 while (curr != &cache->bucket[bucket]) {
114 ++tries;
115
116 entry = LIST_ENTRY(struct svga_host_surface_cache_entry, curr, bucket_head);
117
118 assert(entry->handle);
119
120 /* If the key matches and the fence is signalled (the surface is no
121 * longer needed) the lookup was successful. We found a surface that
122 * can be reused.
123 * We unlink the surface from the cache entry and we add the entry to
124 * the 'empty' list.
125 */
126 if (memcmp(&entry->key, key, sizeof *key) == 0 &&
127 sws->fence_signalled(sws, entry->fence, 0) == 0) {
128 unsigned surf_size;
129
130 assert(sws->surface_is_flushed(sws, entry->handle));
131
132 handle = entry->handle; /* Reference is transfered here. */
133 entry->handle = NULL;
134
135 /* Remove from hash table */
136 LIST_DEL(&entry->bucket_head);
137
138 /* remove from LRU list */
139 LIST_DEL(&entry->head);
140
141 /* Add the cache entry (but not the surface!) to the empty list */
142 LIST_ADD(&entry->head, &cache->empty);
143
144 /* update the cache size */
145 surf_size = surface_size(&entry->key);
146 assert(surf_size <= cache->total_size);
147 if (surf_size > cache->total_size)
148 cache->total_size = 0; /* should never happen, but be safe */
149 else
150 cache->total_size -= surf_size;
151
152 break;
153 }
154
155 curr = next;
156 next = curr->next;
157 }
158
159 mtx_unlock(&cache->mutex);
160
161 if (SVGA_DEBUG & DEBUG_DMA)
162 debug_printf("%s: cache %s after %u tries (bucket %d)\n", __FUNCTION__,
163 handle ? "hit" : "miss", tries, bucket);
164
165 return handle;
166 }
167
168
169 /**
170 * Free the least recently used entries in the surface cache until the
171 * cache size is <= the target size OR there are no unused entries left
172 * to discard. We don't do any flushing to try to free up additional
173 * surfaces.
174 */
175 static void
176 svga_screen_cache_shrink(struct svga_screen *svgascreen,
177 unsigned target_size)
178 {
179 struct svga_host_surface_cache *cache = &svgascreen->cache;
180 struct svga_winsys_screen *sws = svgascreen->sws;
181 struct svga_host_surface_cache_entry *entry = NULL, *next_entry;
182
183 /* Walk over the list of unused buffers in reverse order: from oldest
184 * to newest.
185 */
186 LIST_FOR_EACH_ENTRY_SAFE_REV(entry, next_entry, &cache->unused, head) {
187 if (entry->key.format != SVGA3D_BUFFER) {
188 /* we don't want to discard vertex/index buffers */
189
190 cache->total_size -= surface_size(&entry->key);
191
192 assert(entry->handle);
193 sws->surface_reference(sws, &entry->handle, NULL);
194
195 LIST_DEL(&entry->bucket_head);
196 LIST_DEL(&entry->head);
197 LIST_ADD(&entry->head, &cache->empty);
198
199 if (cache->total_size <= target_size) {
200 /* all done */
201 break;
202 }
203 }
204 }
205 }
206
207
208 /**
209 * Add a surface to the cache. This is done when the driver deletes
210 * the surface. Note: transfers a handle reference.
211 */
212 static void
213 svga_screen_cache_add(struct svga_screen *svgascreen,
214 const struct svga_host_surface_cache_key *key,
215 struct svga_winsys_surface **p_handle)
216 {
217 struct svga_host_surface_cache *cache = &svgascreen->cache;
218 struct svga_winsys_screen *sws = svgascreen->sws;
219 struct svga_host_surface_cache_entry *entry = NULL;
220 struct svga_winsys_surface *handle = *p_handle;
221 unsigned surf_size;
222
223 assert(key->cachable);
224
225 if (!handle)
226 return;
227
228 surf_size = surface_size(key);
229
230 *p_handle = NULL;
231 mtx_lock(&cache->mutex);
232
233 if (surf_size >= SVGA_HOST_SURFACE_CACHE_BYTES) {
234 /* this surface is too large to cache, just free it */
235 sws->surface_reference(sws, &handle, NULL);
236 mtx_unlock(&cache->mutex);
237 return;
238 }
239
240 if (cache->total_size + surf_size > SVGA_HOST_SURFACE_CACHE_BYTES) {
241 /* Adding this surface would exceed the cache size.
242 * Try to discard least recently used entries until we hit the
243 * new target cache size.
244 */
245 unsigned target_size = SVGA_HOST_SURFACE_CACHE_BYTES - surf_size;
246
247 svga_screen_cache_shrink(svgascreen, target_size);
248
249 if (cache->total_size > target_size) {
250 /* we weren't able to shrink the cache as much as we wanted so
251 * just discard this surface.
252 */
253 sws->surface_reference(sws, &handle, NULL);
254 mtx_unlock(&cache->mutex);
255 return;
256 }
257 }
258
259 if (!LIST_IS_EMPTY(&cache->empty)) {
260 /* An empty entry has no surface associated with it.
261 * Use the first empty entry.
262 */
263 entry = LIST_ENTRY(struct svga_host_surface_cache_entry,
264 cache->empty.next, head);
265
266 /* Remove from LRU list */
267 LIST_DEL(&entry->head);
268 }
269 else if (!LIST_IS_EMPTY(&cache->unused)) {
270 /* free the last used buffer and reuse its entry */
271 entry = LIST_ENTRY(struct svga_host_surface_cache_entry,
272 cache->unused.prev, head);
273 SVGA_DBG(DEBUG_CACHE|DEBUG_DMA,
274 "unref sid %p (make space)\n", entry->handle);
275
276 cache->total_size -= surface_size(&entry->key);
277
278 sws->surface_reference(sws, &entry->handle, NULL);
279
280 /* Remove from hash table */
281 LIST_DEL(&entry->bucket_head);
282
283 /* Remove from LRU list */
284 LIST_DEL(&entry->head);
285 }
286
287 if (entry) {
288 assert(entry->handle == NULL);
289 entry->handle = handle;
290 memcpy(&entry->key, key, sizeof entry->key);
291
292 SVGA_DBG(DEBUG_CACHE|DEBUG_DMA,
293 "cache sid %p\n", entry->handle);
294
295 /* If we don't have gb objects, we don't need to invalidate. */
296 if (sws->have_gb_objects)
297 LIST_ADD(&entry->head, &cache->validated);
298 else
299 LIST_ADD(&entry->head, &cache->invalidated);
300
301 cache->total_size += surf_size;
302 }
303 else {
304 /* Couldn't cache the buffer -- this really shouldn't happen */
305 SVGA_DBG(DEBUG_CACHE|DEBUG_DMA,
306 "unref sid %p (couldn't find space)\n", handle);
307 sws->surface_reference(sws, &handle, NULL);
308 }
309
310 mtx_unlock(&cache->mutex);
311 }
312
313
314 /**
315 * Called during the screen flush to move all buffers not in a validate list
316 * into the unused list.
317 */
318 void
319 svga_screen_cache_flush(struct svga_screen *svgascreen,
320 struct svga_context *svga,
321 struct pipe_fence_handle *fence)
322 {
323 struct svga_host_surface_cache *cache = &svgascreen->cache;
324 struct svga_winsys_screen *sws = svgascreen->sws;
325 struct svga_host_surface_cache_entry *entry;
326 struct list_head *curr, *next;
327 unsigned bucket;
328
329 mtx_lock(&cache->mutex);
330
331 /* Loop over entries in the invalidated list */
332 curr = cache->invalidated.next;
333 next = curr->next;
334 while (curr != &cache->invalidated) {
335 entry = LIST_ENTRY(struct svga_host_surface_cache_entry, curr, head);
336
337 assert(entry->handle);
338
339 if (sws->surface_is_flushed(sws, entry->handle)) {
340 /* remove entry from the invalidated list */
341 LIST_DEL(&entry->head);
342
343 sws->fence_reference(sws, &entry->fence, fence);
344
345 /* Add entry to the unused list */
346 LIST_ADD(&entry->head, &cache->unused);
347
348 /* Add entry to the hash table bucket */
349 bucket = svga_screen_cache_bucket(&entry->key);
350 LIST_ADD(&entry->bucket_head, &cache->bucket[bucket]);
351 }
352
353 curr = next;
354 next = curr->next;
355 }
356
357 curr = cache->validated.next;
358 next = curr->next;
359 while (curr != &cache->validated) {
360 entry = LIST_ENTRY(struct svga_host_surface_cache_entry, curr, head);
361
362 assert(entry->handle);
363 assert(svga_have_gb_objects(svga));
364
365 if (sws->surface_is_flushed(sws, entry->handle)) {
366 /* remove entry from the validated list */
367 LIST_DEL(&entry->head);
368
369 /* It is now safe to invalidate the surface content.
370 * It will be done using the current context.
371 */
372 if (SVGA3D_InvalidateGBSurface(svga->swc, entry->handle) != PIPE_OK) {
373 MAYBE_UNUSED enum pipe_error ret;
374
375 /* Even though surface invalidation here is done after the command
376 * buffer is flushed, it is still possible that it will
377 * fail because there might be just enough of this command that is
378 * filling up the command buffer, so in this case we will call
379 * the winsys flush directly to flush the buffer.
380 * Note, we don't want to call svga_context_flush() here because
381 * this function itself is called inside svga_context_flush().
382 */
383 svga->swc->flush(svga->swc, NULL);
384 ret = SVGA3D_InvalidateGBSurface(svga->swc, entry->handle);
385 assert(ret == PIPE_OK);
386 }
387
388 /* add the entry to the invalidated list */
389 LIST_ADD(&entry->head, &cache->invalidated);
390 }
391
392 curr = next;
393 next = curr->next;
394 }
395
396 mtx_unlock(&cache->mutex);
397 }
398
399
400 /**
401 * Free all the surfaces in the cache.
402 * Called when destroying the svga screen object.
403 */
404 void
405 svga_screen_cache_cleanup(struct svga_screen *svgascreen)
406 {
407 struct svga_host_surface_cache *cache = &svgascreen->cache;
408 struct svga_winsys_screen *sws = svgascreen->sws;
409 unsigned i;
410
411 for (i = 0; i < SVGA_HOST_SURFACE_CACHE_SIZE; ++i) {
412 if (cache->entries[i].handle) {
413 SVGA_DBG(DEBUG_CACHE|DEBUG_DMA,
414 "unref sid %p (shutdown)\n", cache->entries[i].handle);
415 sws->surface_reference(sws, &cache->entries[i].handle, NULL);
416
417 cache->total_size -= surface_size(&cache->entries[i].key);
418 }
419
420 if (cache->entries[i].fence)
421 sws->fence_reference(sws, &cache->entries[i].fence, NULL);
422 }
423
424 mtx_destroy(&cache->mutex);
425 }
426
427
428 enum pipe_error
429 svga_screen_cache_init(struct svga_screen *svgascreen)
430 {
431 struct svga_host_surface_cache *cache = &svgascreen->cache;
432 unsigned i;
433
434 assert(cache->total_size == 0);
435
436 (void) mtx_init(&cache->mutex, mtx_plain);
437
438 for (i = 0; i < SVGA_HOST_SURFACE_CACHE_BUCKETS; ++i)
439 LIST_INITHEAD(&cache->bucket[i]);
440
441 LIST_INITHEAD(&cache->unused);
442
443 LIST_INITHEAD(&cache->validated);
444
445 LIST_INITHEAD(&cache->invalidated);
446
447 LIST_INITHEAD(&cache->empty);
448 for (i = 0; i < SVGA_HOST_SURFACE_CACHE_SIZE; ++i)
449 LIST_ADDTAIL(&cache->entries[i].head, &cache->empty);
450
451 return PIPE_OK;
452 }
453
454
455 /**
456 * Allocate a new host-side surface. If the surface is marked as cachable,
457 * first try re-using a surface in the cache of freed surfaces. Otherwise,
458 * allocate a new surface.
459 * \param bind_flags bitmask of PIPE_BIND_x flags
460 * \param usage one of PIPE_USAGE_x values
461 * \param validated return True if the surface is a reused surface
462 */
463 struct svga_winsys_surface *
464 svga_screen_surface_create(struct svga_screen *svgascreen,
465 unsigned bind_flags, enum pipe_resource_usage usage,
466 boolean *validated,
467 struct svga_host_surface_cache_key *key)
468 {
469 struct svga_winsys_screen *sws = svgascreen->sws;
470 struct svga_winsys_surface *handle = NULL;
471 boolean cachable = SVGA_SURFACE_CACHE_ENABLED && key->cachable;
472
473 SVGA_DBG(DEBUG_CACHE|DEBUG_DMA,
474 "%s sz %dx%dx%d mips %d faces %d arraySize %d cachable %d\n",
475 __FUNCTION__,
476 key->size.width,
477 key->size.height,
478 key->size.depth,
479 key->numMipLevels,
480 key->numFaces,
481 key->arraySize,
482 key->cachable);
483
484 if (cachable) {
485 /* Try to re-cycle a previously freed, cached surface */
486 if (key->format == SVGA3D_BUFFER) {
487 SVGA3dSurfaceAllFlags hint_flag;
488
489 /* For buffers, round the buffer size up to the nearest power
490 * of two to increase the probability of cache hits. Keep
491 * texture surface dimensions unchanged.
492 */
493 uint32_t size = 1;
494 while (size < key->size.width)
495 size <<= 1;
496 key->size.width = size;
497
498 /* Determine whether the buffer is static or dynamic.
499 * This is a bit of a heuristic which can be tuned as needed.
500 */
501 if (usage == PIPE_USAGE_DEFAULT ||
502 usage == PIPE_USAGE_IMMUTABLE) {
503 hint_flag = SVGA3D_SURFACE_HINT_STATIC;
504 }
505 else if (bind_flags & PIPE_BIND_INDEX_BUFFER) {
506 /* Index buffers don't change too often. Mark them as static.
507 */
508 hint_flag = SVGA3D_SURFACE_HINT_STATIC;
509 }
510 else {
511 /* Since we're reusing buffers we're effectively transforming all
512 * of them into dynamic buffers.
513 *
514 * It would be nice to not cache long lived static buffers. But there
515 * is no way to detect the long lived from short lived ones yet. A
516 * good heuristic would be buffer size.
517 */
518 hint_flag = SVGA3D_SURFACE_HINT_DYNAMIC;
519 }
520
521 key->flags &= ~(SVGA3D_SURFACE_HINT_STATIC |
522 SVGA3D_SURFACE_HINT_DYNAMIC);
523 key->flags |= hint_flag;
524 }
525
526 handle = svga_screen_cache_lookup(svgascreen, key);
527 if (handle) {
528 if (key->format == SVGA3D_BUFFER)
529 SVGA_DBG(DEBUG_CACHE|DEBUG_DMA,
530 "reuse sid %p sz %d (buffer)\n", handle,
531 key->size.width);
532 else
533 SVGA_DBG(DEBUG_CACHE|DEBUG_DMA,
534 "reuse sid %p sz %dx%dx%d mips %d faces %d arraySize %d\n", handle,
535 key->size.width,
536 key->size.height,
537 key->size.depth,
538 key->numMipLevels,
539 key->numFaces,
540 key->arraySize);
541 *validated = TRUE;
542 }
543 }
544
545 if (!handle) {
546 /* Unable to recycle surface, allocate a new one */
547 unsigned usage = 0;
548
549 if (!key->cachable)
550 usage |= SVGA_SURFACE_USAGE_SHARED;
551 if (key->scanout)
552 usage |= SVGA_SURFACE_USAGE_SCANOUT;
553 if (key->coherent)
554 usage |= SVGA_SURFACE_USAGE_COHERENT;
555
556 handle = sws->surface_create(sws,
557 key->flags,
558 key->format,
559 usage,
560 key->size,
561 key->numFaces * key->arraySize,
562 key->numMipLevels,
563 key->sampleCount);
564 if (handle)
565 SVGA_DBG(DEBUG_CACHE|DEBUG_DMA,
566 " CREATE sid %p sz %dx%dx%d\n",
567 handle,
568 key->size.width,
569 key->size.height,
570 key->size.depth);
571
572 *validated = FALSE;
573 }
574
575 return handle;
576 }
577
578
579 /**
580 * Release a surface. We don't actually free the surface- we put
581 * it into the cache of freed surfaces (if it's cachable).
582 */
583 void
584 svga_screen_surface_destroy(struct svga_screen *svgascreen,
585 const struct svga_host_surface_cache_key *key,
586 struct svga_winsys_surface **p_handle)
587 {
588 struct svga_winsys_screen *sws = svgascreen->sws;
589
590 /* We only set the cachable flag for surfaces of which we are the
591 * exclusive owner. So just hold onto our existing reference in
592 * that case.
593 */
594 if (SVGA_SURFACE_CACHE_ENABLED && key->cachable) {
595 svga_screen_cache_add(svgascreen, key, p_handle);
596 }
597 else {
598 SVGA_DBG(DEBUG_DMA,
599 "unref sid %p (uncachable)\n", *p_handle);
600 sws->surface_reference(sws, p_handle, NULL);
601 }
602 }
603
604
605 /**
606 * Print/dump the contents of the screen cache. For debugging.
607 */
608 void
609 svga_screen_cache_dump(const struct svga_screen *svgascreen)
610 {
611 const struct svga_host_surface_cache *cache = &svgascreen->cache;
612 unsigned bucket;
613 unsigned count = 0;
614
615 debug_printf("svga3d surface cache:\n");
616 for (bucket = 0; bucket < SVGA_HOST_SURFACE_CACHE_BUCKETS; bucket++) {
617 struct list_head *curr;
618 curr = cache->bucket[bucket].next;
619 while (curr && curr != &cache->bucket[bucket]) {
620 struct svga_host_surface_cache_entry *entry =
621 LIST_ENTRY(struct svga_host_surface_cache_entry,
622 curr, bucket_head);
623 if (entry->key.format == SVGA3D_BUFFER) {
624 debug_printf(" %p: buffer %u bytes\n",
625 entry->handle,
626 entry->key.size.width);
627 }
628 else {
629 debug_printf(" %p: %u x %u x %u format %u\n",
630 entry->handle,
631 entry->key.size.width,
632 entry->key.size.height,
633 entry->key.size.depth,
634 entry->key.format);
635 }
636 curr = curr->next;
637 count++;
638 }
639 }
640
641 debug_printf("%u surfaces, %u bytes\n", count, cache->total_size);
642 }