blob: 0c2b594de002a75c4d18c61d0887f81e39a6d16e [file] [log] [blame]
Jakob Bornecrantz31926332009-11-16 19:56:18 +01001/**********************************************************
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
Brian Paul500e7c52011-12-07 16:57:11 -070026#include "util/u_math.h"
Jakob Bornecrantz31926332009-11-16 19:56:18 +010027#include "util/u_memory.h"
Marek Olšáka3f6bea2016-11-22 18:28:18 +010028#include "util/crc32.h"
Jakob Bornecrantz31926332009-11-16 19:56:18 +010029
30#include "svga_debug.h"
Brian Paul500e7c52011-12-07 16:57:11 -070031#include "svga_format.h"
Jakob Bornecrantz31926332009-11-16 19:56:18 +010032#include "svga_winsys.h"
33#include "svga_screen.h"
34#include "svga_screen_cache.h"
Charmaine Lee16bd2c62017-01-26 18:46:23 -080035#include "svga_context.h"
Jakob Bornecrantz31926332009-11-16 19:56:18 +010036
37
38#define SVGA_SURFACE_CACHE_ENABLED 1
39
40
Brian Paul500e7c52011-12-07 16:57:11 -070041/**
42 * Return the size of the surface described by the key (in bytes).
43 */
44static unsigned
45surface_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);
Charmaine Leeadead352017-06-06 11:52:50 -070051 assert(key->arraySize > 0);
Brian Paul500e7c52011-12-07 16:57:11 -070052
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
Brian Paul56109112017-08-21 13:08:41 -060072 total_size *= key->numFaces * key->arraySize * MAX2(1, key->sampleCount);
Brian Paul500e7c52011-12-07 16:57:11 -070073
74 return total_size;
75}
76
77
Brian Paul4b5a5892012-08-02 09:40:40 -060078/**
79 * Compute the bucket for this key.
Jakob Bornecrantz31926332009-11-16 19:56:18 +010080 */
Ilia Mirkina2a1a582015-07-20 19:58:43 -040081static inline unsigned
Jakob Bornecrantz31926332009-11-16 19:56:18 +010082svga_screen_cache_bucket(const struct svga_host_surface_cache_key *key)
83{
Brian Paul4b5a5892012-08-02 09:40:40 -060084 return util_hash_crc32(key, sizeof *key) % SVGA_HOST_SURFACE_CACHE_BUCKETS;
Jakob Bornecrantz31926332009-11-16 19:56:18 +010085}
86
87
Brian Paul500e7c52011-12-07 16:57:11 -070088/**
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 */
Brian Paulbfb6b762014-08-13 16:30:48 -060093static struct svga_winsys_surface *
Jakob Bornecrantz31926332009-11-16 19:56:18 +010094svga_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
Keith Whitwellf1ce37f2009-11-24 21:13:18 +0000105 assert(key->cachable);
106
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100107 bucket = svga_screen_cache_bucket(key);
108
Timothy Arceriba725542017-03-05 12:12:30 +1100109 mtx_lock(&cache->mutex);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100110
111 curr = cache->bucket[bucket].next;
112 next = curr->next;
Brian Paul4b5a5892012-08-02 09:40:40 -0600113 while (curr != &cache->bucket[bucket]) {
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100114 ++tries;
Brian Paul4b5a5892012-08-02 09:40:40 -0600115
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100116 entry = LIST_ENTRY(struct svga_host_surface_cache_entry, curr, bucket_head);
117
118 assert(entry->handle);
Brian Paul4b5a5892012-08-02 09:40:40 -0600119
Brian Paule0542512015-08-13 11:00:58 -0700120 /* 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 */
Brian Paul4b5a5892012-08-02 09:40:40 -0600126 if (memcmp(&entry->key, key, sizeof *key) == 0 &&
Brian Paule0542512015-08-13 11:00:58 -0700127 sws->fence_signalled(sws, entry->fence, 0) == 0) {
Brian Paul500e7c52011-12-07 16:57:11 -0700128 unsigned surf_size;
129
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100130 assert(sws->surface_is_flushed(sws, entry->handle));
Brian Paul4b5a5892012-08-02 09:40:40 -0600131
Brian Paul500e7c52011-12-07 16:57:11 -0700132 handle = entry->handle; /* Reference is transfered here. */
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100133 entry->handle = NULL;
Brian Paul4b5a5892012-08-02 09:40:40 -0600134
Brian Paule0542512015-08-13 11:00:58 -0700135 /* Remove from hash table */
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100136 LIST_DEL(&entry->bucket_head);
137
Brian Paule0542512015-08-13 11:00:58 -0700138 /* remove from LRU list */
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100139 LIST_DEL(&entry->head);
Brian Paul4b5a5892012-08-02 09:40:40 -0600140
Brian Paule0542512015-08-13 11:00:58 -0700141 /* Add the cache entry (but not the surface!) to the empty list */
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100142 LIST_ADD(&entry->head, &cache->empty);
143
Brian Paul500e7c52011-12-07 16:57:11 -0700144 /* 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
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100152 break;
153 }
154
Brian Paul4b5a5892012-08-02 09:40:40 -0600155 curr = next;
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100156 next = curr->next;
157 }
158
Timothy Arceri628e84a2017-03-05 12:32:06 +1100159 mtx_unlock(&cache->mutex);
Brian Paul4b5a5892012-08-02 09:40:40 -0600160
Keith Whitwellf1ce37f2009-11-24 21:13:18 +0000161 if (SVGA_DEBUG & DEBUG_DMA)
Brian Paul4b5a5892012-08-02 09:40:40 -0600162 debug_printf("%s: cache %s after %u tries (bucket %d)\n", __FUNCTION__,
Keith Whitwellb96218c2009-11-26 15:25:09 +0000163 handle ? "hit" : "miss", tries, bucket);
Brian Paul4b5a5892012-08-02 09:40:40 -0600164
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100165 return handle;
166}
167
168
Brian Paul500e7c52011-12-07 16:57:11 -0700169/**
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 */
175static void
176svga_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;
Brian Paulfe68af62012-06-22 09:43:18 -0600181 struct svga_host_surface_cache_entry *entry = NULL, *next_entry;
Brian Paul500e7c52011-12-07 16:57:11 -0700182
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
Brian Paul81f2f3f2012-08-02 09:40:40 -0600208/**
Brian Paule0542512015-08-13 11:00:58 -0700209 * Add a surface to the cache. This is done when the driver deletes
210 * the surface. Note: transfers a handle reference.
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100211 */
Brian Paulbfb6b762014-08-13 16:30:48 -0600212static void
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100213svga_screen_cache_add(struct svga_screen *svgascreen,
Brian Paul4b5a5892012-08-02 09:40:40 -0600214 const struct svga_host_surface_cache_key *key,
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100215 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;
Brian Paul500e7c52011-12-07 16:57:11 -0700221 unsigned surf_size;
Brian Paule0542512015-08-13 11:00:58 -0700222
Keith Whitwellf1ce37f2009-11-24 21:13:18 +0000223 assert(key->cachable);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100224
Brian Paul4b5a5892012-08-02 09:40:40 -0600225 if (!handle)
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100226 return;
Brian Paule0542512015-08-13 11:00:58 -0700227
Brian Paul500e7c52011-12-07 16:57:11 -0700228 surf_size = surface_size(key);
229
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100230 *p_handle = NULL;
Timothy Arceriba725542017-03-05 12:12:30 +1100231 mtx_lock(&cache->mutex);
Brian Paule0542512015-08-13 11:00:58 -0700232
Brian Paul500e7c52011-12-07 16:57:11 -0700233 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);
Timothy Arceri628e84a2017-03-05 12:32:06 +1100236 mtx_unlock(&cache->mutex);
Brian Paul500e7c52011-12-07 16:57:11 -0700237 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);
Timothy Arceri628e84a2017-03-05 12:32:06 +1100254 mtx_unlock(&cache->mutex);
Brian Paul500e7c52011-12-07 16:57:11 -0700255 return;
256 }
257 }
258
Brian Paul4b5a5892012-08-02 09:40:40 -0600259 if (!LIST_IS_EMPTY(&cache->empty)) {
Brian Paule0542512015-08-13 11:00:58 -0700260 /* An empty entry has no surface associated with it.
261 * Use the first empty entry.
262 */
Brian Paul4b5a5892012-08-02 09:40:40 -0600263 entry = LIST_ENTRY(struct svga_host_surface_cache_entry,
264 cache->empty.next, head);
265
Brian Paule0542512015-08-13 11:00:58 -0700266 /* Remove from LRU list */
Keith Whitwellf1ce37f2009-11-24 21:13:18 +0000267 LIST_DEL(&entry->head);
268 }
Brian Paul4b5a5892012-08-02 09:40:40 -0600269 else if (!LIST_IS_EMPTY(&cache->unused)) {
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100270 /* free the last used buffer and reuse its entry */
Brian Paul4b5a5892012-08-02 09:40:40 -0600271 entry = LIST_ENTRY(struct svga_host_surface_cache_entry,
272 cache->unused.prev, head);
Keith Whitwellb9116882009-11-27 12:18:22 +0000273 SVGA_DBG(DEBUG_CACHE|DEBUG_DMA,
274 "unref sid %p (make space)\n", entry->handle);
Brian Paul500e7c52011-12-07 16:57:11 -0700275
276 cache->total_size -= surface_size(&entry->key);
277
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100278 sws->surface_reference(sws, &entry->handle, NULL);
279
Brian Paule0542512015-08-13 11:00:58 -0700280 /* Remove from hash table */
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100281 LIST_DEL(&entry->bucket_head);
282
Brian Paule0542512015-08-13 11:00:58 -0700283 /* Remove from LRU list */
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100284 LIST_DEL(&entry->head);
285 }
286
Brian Paul4b5a5892012-08-02 09:40:40 -0600287 if (entry) {
Brian Paule0542512015-08-13 11:00:58 -0700288 assert(entry->handle == NULL);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100289 entry->handle = handle;
290 memcpy(&entry->key, key, sizeof entry->key);
Brian Paul4b5a5892012-08-02 09:40:40 -0600291
Keith Whitwellb9116882009-11-27 12:18:22 +0000292 SVGA_DBG(DEBUG_CACHE|DEBUG_DMA,
293 "cache sid %p\n", entry->handle);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100294 LIST_ADD(&entry->head, &cache->validated);
Brian Paul500e7c52011-12-07 16:57:11 -0700295
296 cache->total_size += surf_size;
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100297 }
298 else {
299 /* Couldn't cache the buffer -- this really shouldn't happen */
Keith Whitwellb9116882009-11-27 12:18:22 +0000300 SVGA_DBG(DEBUG_CACHE|DEBUG_DMA,
301 "unref sid %p (couldn't find space)\n", handle);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100302 sws->surface_reference(sws, &handle, NULL);
303 }
Brian Paul4b5a5892012-08-02 09:40:40 -0600304
Timothy Arceri628e84a2017-03-05 12:32:06 +1100305 mtx_unlock(&cache->mutex);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100306}
307
308
309/**
310 * Called during the screen flush to move all buffers not in a validate list
311 * into the unused list.
312 */
313void
314svga_screen_cache_flush(struct svga_screen *svgascreen,
Charmaine Lee16bd2c62017-01-26 18:46:23 -0800315 struct svga_context *svga,
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100316 struct pipe_fence_handle *fence)
317{
318 struct svga_host_surface_cache *cache = &svgascreen->cache;
319 struct svga_winsys_screen *sws = svgascreen->sws;
320 struct svga_host_surface_cache_entry *entry;
321 struct list_head *curr, *next;
322 unsigned bucket;
323
Timothy Arceriba725542017-03-05 12:12:30 +1100324 mtx_lock(&cache->mutex);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100325
Charmaine Leeda98cee2016-03-08 11:18:51 -0800326 /* Loop over entries in the invalidated list */
327 curr = cache->invalidated.next;
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100328 next = curr->next;
Charmaine Leeda98cee2016-03-08 11:18:51 -0800329 while (curr != &cache->invalidated) {
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100330 entry = LIST_ENTRY(struct svga_host_surface_cache_entry, curr, head);
331
332 assert(entry->handle);
333
Brian Paul4b5a5892012-08-02 09:40:40 -0600334 if (sws->surface_is_flushed(sws, entry->handle)) {
Charmaine Leeda98cee2016-03-08 11:18:51 -0800335 /* remove entry from the invalidated list */
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100336 LIST_DEL(&entry->head);
Brian Paul4b5a5892012-08-02 09:40:40 -0600337
Brian Paul7c5eda62016-08-15 11:38:39 -0600338 sws->fence_reference(sws, &entry->fence, fence);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100339
Brian Paule0542512015-08-13 11:00:58 -0700340 /* Add entry to the unused list */
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100341 LIST_ADD(&entry->head, &cache->unused);
342
Brian Paule0542512015-08-13 11:00:58 -0700343 /* Add entry to the hash table bucket */
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100344 bucket = svga_screen_cache_bucket(&entry->key);
345 LIST_ADD(&entry->bucket_head, &cache->bucket[bucket]);
346 }
347
Brian Paul4b5a5892012-08-02 09:40:40 -0600348 curr = next;
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100349 next = curr->next;
350 }
351
Charmaine Leeda98cee2016-03-08 11:18:51 -0800352 curr = cache->validated.next;
353 next = curr->next;
354 while (curr != &cache->validated) {
355 entry = LIST_ENTRY(struct svga_host_surface_cache_entry, curr, head);
356
357 assert(entry->handle);
358
359 if (sws->surface_is_flushed(sws, entry->handle)) {
360 /* remove entry from the validated list */
361 LIST_DEL(&entry->head);
362
Charmaine Lee16bd2c62017-01-26 18:46:23 -0800363 /* It is now safe to invalidate the surface content.
364 * It will be done using the current context.
365 */
Charmaine Lee3fbdab82017-06-21 15:35:38 -0700366 if (svga->swc->surface_invalidate(svga->swc, entry->handle) != PIPE_OK) {
Brian Paul8822ea12017-09-25 14:10:53 -0600367 MAYBE_UNUSED enum pipe_error ret;
Charmaine Lee3fbdab82017-06-21 15:35:38 -0700368
369 /* Even though surface invalidation here is done after the command
370 * buffer is flushed, it is still possible that it will
371 * fail because there might be just enough of this command that is
372 * filling up the command buffer, so in this case we will call
373 * the winsys flush directly to flush the buffer.
374 * Note, we don't want to call svga_context_flush() here because
375 * this function itself is called inside svga_context_flush().
376 */
377 svga->swc->flush(svga->swc, NULL);
378 ret = svga->swc->surface_invalidate(svga->swc, entry->handle);
379 assert(ret == PIPE_OK);
380 }
Charmaine Leeda98cee2016-03-08 11:18:51 -0800381
382 /* add the entry to the invalidated list */
383 LIST_ADD(&entry->head, &cache->invalidated);
384 }
385
386 curr = next;
387 next = curr->next;
388 }
389
Timothy Arceri628e84a2017-03-05 12:32:06 +1100390 mtx_unlock(&cache->mutex);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100391}
392
393
Brian Paul81f2f3f2012-08-02 09:40:40 -0600394/**
395 * Free all the surfaces in the cache.
396 * Called when destroying the svga screen object.
397 */
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100398void
399svga_screen_cache_cleanup(struct svga_screen *svgascreen)
400{
401 struct svga_host_surface_cache *cache = &svgascreen->cache;
402 struct svga_winsys_screen *sws = svgascreen->sws;
403 unsigned i;
Brian Paul4b5a5892012-08-02 09:40:40 -0600404
405 for (i = 0; i < SVGA_HOST_SURFACE_CACHE_SIZE; ++i) {
406 if (cache->entries[i].handle) {
Keith Whitwellb9116882009-11-27 12:18:22 +0000407 SVGA_DBG(DEBUG_CACHE|DEBUG_DMA,
408 "unref sid %p (shutdown)\n", cache->entries[i].handle);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100409 sws->surface_reference(sws, &cache->entries[i].handle, NULL);
Brian Paul500e7c52011-12-07 16:57:11 -0700410
411 cache->total_size -= surface_size(&cache->entries[i].key);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100412 }
413
Brian Paul4b5a5892012-08-02 09:40:40 -0600414 if (cache->entries[i].fence)
Brian Paul7c5eda62016-08-15 11:38:39 -0600415 sws->fence_reference(sws, &cache->entries[i].fence, NULL);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100416 }
Brian Paul4b5a5892012-08-02 09:40:40 -0600417
Timothy Arceribe188282017-03-05 12:32:04 +1100418 mtx_destroy(&cache->mutex);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100419}
420
421
422enum pipe_error
423svga_screen_cache_init(struct svga_screen *svgascreen)
424{
425 struct svga_host_surface_cache *cache = &svgascreen->cache;
426 unsigned i;
427
Brian Paul500e7c52011-12-07 16:57:11 -0700428 assert(cache->total_size == 0);
429
Timothy Arceri75b47dd2017-03-05 12:00:15 +1100430 (void) mtx_init(&cache->mutex, mtx_plain);
Brian Paul4b5a5892012-08-02 09:40:40 -0600431
432 for (i = 0; i < SVGA_HOST_SURFACE_CACHE_BUCKETS; ++i)
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100433 LIST_INITHEAD(&cache->bucket[i]);
434
435 LIST_INITHEAD(&cache->unused);
Brian Paul4b5a5892012-08-02 09:40:40 -0600436
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100437 LIST_INITHEAD(&cache->validated);
Brian Paul4b5a5892012-08-02 09:40:40 -0600438
Charmaine Leeda98cee2016-03-08 11:18:51 -0800439 LIST_INITHEAD(&cache->invalidated);
440
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100441 LIST_INITHEAD(&cache->empty);
Brian Paul4b5a5892012-08-02 09:40:40 -0600442 for (i = 0; i < SVGA_HOST_SURFACE_CACHE_SIZE; ++i)
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100443 LIST_ADDTAIL(&cache->entries[i].head, &cache->empty);
444
445 return PIPE_OK;
446}
447
Brian Paul4b5a5892012-08-02 09:40:40 -0600448
Brian Paul81f2f3f2012-08-02 09:40:40 -0600449/**
450 * Allocate a new host-side surface. If the surface is marked as cachable,
451 * first try re-using a surface in the cache of freed surfaces. Otherwise,
452 * allocate a new surface.
Brian Paule0542512015-08-13 11:00:58 -0700453 * \param bind_flags bitmask of PIPE_BIND_x flags
454 * \param usage one of PIPE_USAGE_x values
Charmaine Lee8a195e22016-10-26 16:15:23 -0700455 * \param validated return True if the surface is a reused surface
Brian Paul81f2f3f2012-08-02 09:40:40 -0600456 */
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100457struct svga_winsys_surface *
458svga_screen_surface_create(struct svga_screen *svgascreen,
Brian Paul45078e82016-05-25 17:13:23 -0600459 unsigned bind_flags, enum pipe_resource_usage usage,
Charmaine Lee8a195e22016-10-26 16:15:23 -0700460 boolean *validated,
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100461 struct svga_host_surface_cache_key *key)
462{
463 struct svga_winsys_screen *sws = svgascreen->sws;
464 struct svga_winsys_surface *handle = NULL;
Keith Whitwellf1ce37f2009-11-24 21:13:18 +0000465 boolean cachable = SVGA_SURFACE_CACHE_ENABLED && key->cachable;
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100466
Keith Whitwellb9116882009-11-27 12:18:22 +0000467 SVGA_DBG(DEBUG_CACHE|DEBUG_DMA,
Brian Paule0542512015-08-13 11:00:58 -0700468 "%s sz %dx%dx%d mips %d faces %d arraySize %d cachable %d\n",
Keith Whitwellf1ce37f2009-11-24 21:13:18 +0000469 __FUNCTION__,
470 key->size.width,
471 key->size.height,
472 key->size.depth,
473 key->numMipLevels,
474 key->numFaces,
Brian Paule0542512015-08-13 11:00:58 -0700475 key->arraySize,
Keith Whitwellf1ce37f2009-11-24 21:13:18 +0000476 key->cachable);
477
478 if (cachable) {
Brian Pauld6cb9122017-06-16 16:34:43 -0600479 /* Try to re-cycle a previously freed, cached surface */
Keith Whitwellf1ce37f2009-11-24 21:13:18 +0000480 if (key->format == SVGA3D_BUFFER) {
Brian Paule0542512015-08-13 11:00:58 -0700481 SVGA3dSurfaceFlags hint_flag;
482
Keith Whitwellf1ce37f2009-11-24 21:13:18 +0000483 /* For buffers, round the buffer size up to the nearest power
484 * of two to increase the probability of cache hits. Keep
485 * texture surface dimensions unchanged.
486 */
487 uint32_t size = 1;
Brian Paul4b5a5892012-08-02 09:40:40 -0600488 while (size < key->size.width)
Keith Whitwellf1ce37f2009-11-24 21:13:18 +0000489 size <<= 1;
490 key->size.width = size;
Brian Paule0542512015-08-13 11:00:58 -0700491
492 /* Determine whether the buffer is static or dynamic.
493 * This is a bit of a heuristic which can be tuned as needed.
494 */
495 if (usage == PIPE_USAGE_DEFAULT ||
496 usage == PIPE_USAGE_IMMUTABLE) {
497 hint_flag = SVGA3D_SURFACE_HINT_STATIC;
498 }
499 else if (bind_flags & PIPE_BIND_INDEX_BUFFER) {
500 /* Index buffers don't change too often. Mark them as static.
501 */
502 hint_flag = SVGA3D_SURFACE_HINT_STATIC;
503 }
504 else {
505 /* Since we're reusing buffers we're effectively transforming all
506 * of them into dynamic buffers.
507 *
508 * It would be nice to not cache long lived static buffers. But there
509 * is no way to detect the long lived from short lived ones yet. A
510 * good heuristic would be buffer size.
511 */
512 hint_flag = SVGA3D_SURFACE_HINT_DYNAMIC;
513 }
514
515 key->flags &= ~(SVGA3D_SURFACE_HINT_STATIC |
516 SVGA3D_SURFACE_HINT_DYNAMIC);
517 key->flags |= hint_flag;
Keith Whitwellf1ce37f2009-11-24 21:13:18 +0000518 }
519
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100520 handle = svga_screen_cache_lookup(svgascreen, key);
Keith Whitwellf1ce37f2009-11-24 21:13:18 +0000521 if (handle) {
522 if (key->format == SVGA3D_BUFFER)
Keith Whitwellb9116882009-11-27 12:18:22 +0000523 SVGA_DBG(DEBUG_CACHE|DEBUG_DMA,
Brian Paul4b5a5892012-08-02 09:40:40 -0600524 "reuse sid %p sz %d (buffer)\n", handle,
Keith Whitwellf1ce37f2009-11-24 21:13:18 +0000525 key->size.width);
526 else
Keith Whitwellb9116882009-11-27 12:18:22 +0000527 SVGA_DBG(DEBUG_CACHE|DEBUG_DMA,
Brian Paule0542512015-08-13 11:00:58 -0700528 "reuse sid %p sz %dx%dx%d mips %d faces %d arraySize %d\n", handle,
Keith Whitwellf1ce37f2009-11-24 21:13:18 +0000529 key->size.width,
530 key->size.height,
531 key->size.depth,
532 key->numMipLevels,
Brian Paule0542512015-08-13 11:00:58 -0700533 key->numFaces,
534 key->arraySize);
Charmaine Lee8a195e22016-10-26 16:15:23 -0700535 *validated = TRUE;
Keith Whitwellf1ce37f2009-11-24 21:13:18 +0000536 }
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100537 }
538
539 if (!handle) {
Brian Pauld6cb9122017-06-16 16:34:43 -0600540 /* Unable to recycle surface, allocate a new one */
Brian Paule0542512015-08-13 11:00:58 -0700541 unsigned usage = 0;
542
543 if (!key->cachable)
544 usage |= SVGA_SURFACE_USAGE_SHARED;
545 if (key->scanout)
546 usage |= SVGA_SURFACE_USAGE_SCANOUT;
547
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100548 handle = sws->surface_create(sws,
549 key->flags,
550 key->format,
Brian Paule0542512015-08-13 11:00:58 -0700551 usage,
Brian Paul4b5a5892012-08-02 09:40:40 -0600552 key->size,
Brian Paule0542512015-08-13 11:00:58 -0700553 key->numFaces * key->arraySize,
Brian Paule2a1d212015-08-06 16:44:35 -0600554 key->numMipLevels,
Brian Paule0542512015-08-13 11:00:58 -0700555 key->sampleCount);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100556 if (handle)
Keith Whitwellb9116882009-11-27 12:18:22 +0000557 SVGA_DBG(DEBUG_CACHE|DEBUG_DMA,
Brian Paul4b5a5892012-08-02 09:40:40 -0600558 " CREATE sid %p sz %dx%dx%d\n",
559 handle,
Keith Whitwellb9116882009-11-27 12:18:22 +0000560 key->size.width,
561 key->size.height,
562 key->size.depth);
Charmaine Lee8a195e22016-10-26 16:15:23 -0700563
564 *validated = FALSE;
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100565 }
566
567 return handle;
568}
569
570
Brian Paul81f2f3f2012-08-02 09:40:40 -0600571/**
572 * Release a surface. We don't actually free the surface- we put
573 * it into the cache of freed surfaces (if it's cachable).
574 */
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100575void
576svga_screen_surface_destroy(struct svga_screen *svgascreen,
577 const struct svga_host_surface_cache_key *key,
578 struct svga_winsys_surface **p_handle)
579{
580 struct svga_winsys_screen *sws = svgascreen->sws;
Brian Paul4b5a5892012-08-02 09:40:40 -0600581
Keith Whitwellf1ce37f2009-11-24 21:13:18 +0000582 /* We only set the cachable flag for surfaces of which we are the
583 * exclusive owner. So just hold onto our existing reference in
584 * that case.
585 */
Brian Paul4b5a5892012-08-02 09:40:40 -0600586 if (SVGA_SURFACE_CACHE_ENABLED && key->cachable) {
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100587 svga_screen_cache_add(svgascreen, key, p_handle);
588 }
589 else {
Keith Whitwellb9116882009-11-27 12:18:22 +0000590 SVGA_DBG(DEBUG_DMA,
591 "unref sid %p (uncachable)\n", *p_handle);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100592 sws->surface_reference(sws, p_handle, NULL);
593 }
594}
Brian Paul0d1ee262012-10-17 09:55:54 -0600595
596
597/**
598 * Print/dump the contents of the screen cache. For debugging.
599 */
600void
601svga_screen_cache_dump(const struct svga_screen *svgascreen)
602{
603 const struct svga_host_surface_cache *cache = &svgascreen->cache;
604 unsigned bucket;
605 unsigned count = 0;
606
607 debug_printf("svga3d surface cache:\n");
608 for (bucket = 0; bucket < SVGA_HOST_SURFACE_CACHE_BUCKETS; bucket++) {
609 struct list_head *curr;
610 curr = cache->bucket[bucket].next;
611 while (curr && curr != &cache->bucket[bucket]) {
612 struct svga_host_surface_cache_entry *entry =
613 LIST_ENTRY(struct svga_host_surface_cache_entry,
614 curr, bucket_head);
Brian Paul903afc32016-03-04 15:58:02 -0700615 if (entry->key.format == SVGA3D_BUFFER) {
616 debug_printf(" %p: buffer %u bytes\n",
617 entry->handle,
618 entry->key.size.width);
619 }
620 else {
621 debug_printf(" %p: %u x %u x %u format %u\n",
622 entry->handle,
Brian Paul0d1ee262012-10-17 09:55:54 -0600623 entry->key.size.width,
624 entry->key.size.height,
625 entry->key.size.depth,
626 entry->key.format);
627 }
628 curr = curr->next;
629 count++;
630 }
631 }
632
633 debug_printf("%u surfaces, %u bytes\n", count, cache->total_size);
634}