blob: 03b809a41a7f9845f958ff3fbf8f8396d4880bb9 [file] [log] [blame]
Brian Paul500e7c52011-12-07 16:57:11 -07001
Jakob Bornecrantz31926332009-11-16 19:56:18 +01002/**********************************************************
3 * Copyright 2008-2009 VMware, Inc. All rights reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person
6 * obtaining a copy of this software and associated documentation
7 * files (the "Software"), to deal in the Software without
8 * restriction, including without limitation the rights to use, copy,
9 * modify, merge, publish, distribute, sublicense, and/or sell copies
10 * of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be
14 * included in all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
20 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
21 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 *
25 **********************************************************/
26
27#ifndef SVGA_SCREEN_CACHE_H_
28#define SVGA_SCREEN_CACHE_H_
29
30
31#include "svga_types.h"
32#include "svga_reg.h"
33#include "svga3d_reg.h"
34
José Fonseca2aaca1d2010-02-02 15:18:01 +000035#include "os/os_thread.h"
Jakob Bornecrantz31926332009-11-16 19:56:18 +010036
Jason Ekstrand7a306682015-04-27 17:41:27 -070037#include "util/list.h"
Jakob Bornecrantz31926332009-11-16 19:56:18 +010038
39
Keith Whitwellf1ce37f2009-11-24 21:13:18 +000040/* Guess the storage size of cached surfaces and try and keep it under
41 * this amount:
42 */
Brian Paul500e7c52011-12-07 16:57:11 -070043#define SVGA_HOST_SURFACE_CACHE_BYTES (16 * 1024 * 1024)
Keith Whitwellf1ce37f2009-11-24 21:13:18 +000044
45/* Maximum number of discrete surfaces in the cache:
46 */
Jakob Bornecrantz31926332009-11-16 19:56:18 +010047#define SVGA_HOST_SURFACE_CACHE_SIZE 1024
48
Keith Whitwellf1ce37f2009-11-24 21:13:18 +000049/* Number of hash buckets:
50 */
51#define SVGA_HOST_SURFACE_CACHE_BUCKETS 256
Jakob Bornecrantz31926332009-11-16 19:56:18 +010052
53
54struct svga_winsys_surface;
55struct svga_screen;
Charmaine Lee16bd2c62017-01-26 18:46:23 -080056struct svga_context;
Jakob Bornecrantz31926332009-11-16 19:56:18 +010057
58/**
59 * Same as svga_winsys_screen::surface_create.
60 */
61struct svga_host_surface_cache_key
62{
Keith Whitwell55b01572009-11-25 11:44:41 +000063 SVGA3dSurfaceFlags flags;
64 SVGA3dSurfaceFormat format;
Jakob Bornecrantz31926332009-11-16 19:56:18 +010065 SVGA3dSize size;
Brian Paule0542512015-08-13 11:00:58 -070066 uint32_t numFaces:3;
67 uint32_t arraySize:16;
68 uint32_t numMipLevels:6;
Keith Whitwellf1ce37f2009-11-24 21:13:18 +000069 uint32_t cachable:1; /* False if this is a shared surface */
Brian Paule0542512015-08-13 11:00:58 -070070 uint32_t sampleCount:5;
71 uint32_t scanout:1;
Jakob Bornecrantz31926332009-11-16 19:56:18 +010072};
73
74
75struct svga_host_surface_cache_entry
76{
77 /**
78 * Head for the LRU list, svga_host_surface_cache::unused, and
79 * svga_host_surface_cache::empty
80 */
81 struct list_head head;
82
83 /** Head for the bucket lists. */
84 struct list_head bucket_head;
85
86 struct svga_host_surface_cache_key key;
87 struct svga_winsys_surface *handle;
88
89 struct pipe_fence_handle *fence;
90};
91
92
93/**
94 * Cache of the host surfaces.
95 *
96 * A cache entry can be in the following stages:
Brian Paul500e7c52011-12-07 16:57:11 -070097 * 1. empty (entry->handle = NULL)
Jakob Bornecrantz31926332009-11-16 19:56:18 +010098 * 2. holding a buffer in a validate list
Charmaine Leeda98cee2016-03-08 11:18:51 -080099 * 3. holding a buffer in an invalidate list
100 * 4. holding a flushed buffer (not in any validate list) with an active fence
101 * 5. holding a flushed buffer with an expired fence
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100102 *
Charmaine Leeda98cee2016-03-08 11:18:51 -0800103 * An entry progresses from 1 -> 2 -> 3 -> 4 -> 5. When we need an entry to put a
Brian Paul02bf6452013-02-23 06:59:39 -0700104 * buffer into we preferentially take from 1, or from the least recently used
Charmaine Leeda98cee2016-03-08 11:18:51 -0800105 * buffer from 4/5.
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100106 */
107struct svga_host_surface_cache
108{
Timothy Arceri2efddc62017-03-05 12:32:01 +1100109 mtx_t mutex;
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100110
111 /* Unused buffers are put in buckets to speed up lookups */
112 struct list_head bucket[SVGA_HOST_SURFACE_CACHE_BUCKETS];
113
114 /* Entries with unused buffers, ordered from most to least recently used
115 * (3 and 4) */
116 struct list_head unused;
117
Charmaine Leeda98cee2016-03-08 11:18:51 -0800118 /* Entries with buffers still in validate list (2) */
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100119 struct list_head validated;
120
Charmaine Leeda98cee2016-03-08 11:18:51 -0800121 /* Entries with buffers still in invalidate list (3) */
122 struct list_head invalidated;
123
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100124 /** Empty entries (1) */
125 struct list_head empty;
126
127 /** The actual storage for the entries */
128 struct svga_host_surface_cache_entry entries[SVGA_HOST_SURFACE_CACHE_SIZE];
Brian Paul500e7c52011-12-07 16:57:11 -0700129
130 /** Sum of sizes of all surfaces (in bytes) */
131 unsigned total_size;
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100132};
133
134
135void
136svga_screen_cache_cleanup(struct svga_screen *svgascreen);
137
138void
139svga_screen_cache_flush(struct svga_screen *svgascreen,
Charmaine Lee16bd2c62017-01-26 18:46:23 -0800140 struct svga_context *svga,
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100141 struct pipe_fence_handle *fence);
142
143enum pipe_error
144svga_screen_cache_init(struct svga_screen *svgascreen);
145
146
147struct svga_winsys_surface *
148svga_screen_surface_create(struct svga_screen *svgascreen,
Brian Paul45078e82016-05-25 17:13:23 -0600149 unsigned bind_flags, enum pipe_resource_usage usage,
Charmaine Lee8a195e22016-10-26 16:15:23 -0700150 boolean *validated,
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100151 struct svga_host_surface_cache_key *key);
152
153void
154svga_screen_surface_destroy(struct svga_screen *svgascreen,
155 const struct svga_host_surface_cache_key *key,
156 struct svga_winsys_surface **handle);
157
Brian Paul0d1ee262012-10-17 09:55:54 -0600158void
159svga_screen_cache_dump(const struct svga_screen *svgascreen);
160
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100161
162#endif /* SVGA_SCREEN_CACHE_H_ */