blob: db533416ec4cef9d0591d1cfd7ab48c9eb0ea601 [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
26#ifndef SVGA_BUFFER_H
27#define SVGA_BUFFER_H
28
29
30#include "pipe/p_compiler.h"
31#include "pipe/p_state.h"
Keith Whitwell287c94e2010-04-10 16:05:54 +010032#include "util/u_transfer.h"
Jakob Bornecrantz31926332009-11-16 19:56:18 +010033
Jakob Bornecrantz31926332009-11-16 19:56:18 +010034#include "svga_screen_cache.h"
Brian Paule0a6fb02014-02-08 09:51:14 -080035#include "svga_screen.h"
36#include "svga_cmd.h"
37#include "svga_context.h"
Jakob Bornecrantz31926332009-11-16 19:56:18 +010038
39
Jakob Bornecrantz31926332009-11-16 19:56:18 +010040/**
41 * Maximum number of discontiguous ranges
42 */
43#define SVGA_BUFFER_MAX_RANGES 32
44
45
Jakob Bornecrantz31926332009-11-16 19:56:18 +010046struct svga_context;
47struct svga_winsys_buffer;
48struct svga_winsys_surface;
49
50
Keith Whitwell287c94e2010-04-10 16:05:54 +010051extern struct u_resource_vtbl svga_buffer_vtbl;
52
Jakob Bornecrantz31926332009-11-16 19:56:18 +010053struct svga_buffer_range
54{
55 unsigned start;
56 unsigned end;
57};
58
Brian Paule0a6fb02014-02-08 09:51:14 -080059struct svga_3d_update_gb_image;
Jakob Bornecrantz31926332009-11-16 19:56:18 +010060
61/**
Charmaine Leeeea62232016-11-16 15:31:00 -080062 * This structure describes the bind flags and cache key associated
63 * with the host surface.
64 */
65struct svga_buffer_surface
66{
67 struct list_head list;
68 unsigned bind_flags;
69 struct svga_host_surface_cache_key key;
70 struct svga_winsys_surface *handle;
71};
72
73/**
Jakob Bornecrantz31926332009-11-16 19:56:18 +010074 * SVGA pipe buffer.
75 */
76struct svga_buffer
77{
Keith Whitwell287c94e2010-04-10 16:05:54 +010078 struct u_resource b;
Jakob Bornecrantz31926332009-11-16 19:56:18 +010079
Brian Paule0542512015-08-13 11:00:58 -070080 /** This is a superset of b.b.bind */
81 unsigned bind_flags;
82
Jakob Bornecrantz31926332009-11-16 19:56:18 +010083 /**
84 * Regular (non DMA'able) memory.
85 *
86 * Used for user buffers or for buffers which we know before hand that can
87 * never be used by the virtual hardware directly, such as constant buffers.
88 */
89 void *swbuf;
90
91 /**
92 * Whether swbuf was created by the user or not.
93 */
94 boolean user;
95
96 /**
Jakob Bornecrantz31926332009-11-16 19:56:18 +010097 * Creation key for the host surface handle.
98 *
99 * This structure describes all the host surface characteristics so that it
100 * can be looked up in cache, since creating a host surface is often a slow
101 * operation.
102 */
103 struct svga_host_surface_cache_key key;
104
105 /**
106 * Host surface handle.
107 *
108 * This is a platform independent abstraction for host SID. We create when
José Fonseca74651f52011-03-16 15:43:00 +0000109 * trying to bind.
110 *
111 * Only set for non-user buffers.
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100112 */
113 struct svga_winsys_surface *handle;
José Fonsecacf861332010-02-18 14:05:57 +0000114
115 /**
Charmaine Leeeea62232016-11-16 15:31:00 -0800116 * List of surfaces created for this buffer resource to support
117 * incompatible bind flags.
118 */
119 struct list_head surfaces;
120
121 /**
José Fonsecacf861332010-02-18 14:05:57 +0000122 * Information about ongoing and past map operations.
123 */
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100124 struct {
José Fonsecacf861332010-02-18 14:05:57 +0000125 /**
126 * Number of concurrent mappings.
José Fonsecacf861332010-02-18 14:05:57 +0000127 */
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100128 unsigned count;
José Fonsecacf861332010-02-18 14:05:57 +0000129
130 /**
José Fonsecacf861332010-02-18 14:05:57 +0000131 * Dirty ranges.
132 *
133 * Ranges that were touched by the application and need to be uploaded to
134 * the host.
135 *
136 * This information will be copied into dma.boxes, when emiting the
137 * SVGA3dCmdSurfaceDMA command.
138 */
139 struct svga_buffer_range ranges[SVGA_BUFFER_MAX_RANGES];
140 unsigned num_ranges;
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100141 } map;
José Fonsecacf861332010-02-18 14:05:57 +0000142
143 /**
José Fonsecab3309282010-02-22 19:24:18 +0000144 * Information about uploaded version of user buffers.
145 */
146 struct {
Keith Whitwell287c94e2010-04-10 16:05:54 +0100147 struct pipe_resource *buffer;
José Fonsecab3309282010-02-22 19:24:18 +0000148
149 /**
150 * We combine multiple user buffers into the same hardware buffer. This
151 * is the relative offset within that buffer.
152 */
153 unsigned offset;
José Fonsecab3309282010-02-22 19:24:18 +0000154
Thomas Hellstrom54219422011-06-30 08:52:19 +0200155 /**
156 * Range of user buffer that is uploaded in @buffer at @offset.
157 */
158 unsigned start;
159 unsigned end;
160 } uploaded;
Thomas Hellstrom2b301df2011-03-17 21:09:38 +0100161
162 /**
José Fonsecacf861332010-02-18 14:05:57 +0000163 * DMA'ble memory.
164 *
165 * A piece of GMR memory, with the same size of the buffer. It is created
166 * when mapping the buffer, and will be used to upload vertex data to the
167 * host.
José Fonseca74651f52011-03-16 15:43:00 +0000168 *
169 * Only set for non-user buffers.
José Fonsecacf861332010-02-18 14:05:57 +0000170 */
171 struct svga_winsys_buffer *hwbuf;
172
173 /**
174 * Information about pending DMA uploads.
175 *
176 */
177 struct {
178 /**
179 * Whether this buffer has an unfinished DMA upload command.
180 *
181 * If not set then the rest of the information is null.
182 */
183 boolean pending;
184
185 SVGA3dSurfaceDMAFlags flags;
186
187 /**
188 * Pointer to the DMA copy box *inside* the command buffer.
189 */
190 SVGA3dCopyBox *boxes;
191
192 /**
Brian Paule0a6fb02014-02-08 09:51:14 -0800193 * Pointer to the sequence of update commands
194 * *inside* the command buffer.
195 */
196 struct svga_3d_update_gb_image *updates;
197
198 /**
José Fonsecacf861332010-02-18 14:05:57 +0000199 * Context that has the pending DMA to this buffer.
200 */
201 struct svga_context *svga;
202 } dma;
203
204 /**
205 * Linked list head, used to gather all buffers with pending dma uploads on
206 * a context. It is only valid if the dma.pending is set above.
207 */
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100208 struct list_head head;
Brian Paulac114c62013-04-03 10:23:57 -0600209
210 unsigned size; /**< Approximate size in bytes */
Brian Paule0542512015-08-13 11:00:58 -0700211
212 boolean dirty; /**< Need to do a readback before mapping? */
Brian Paul4f74b372016-08-31 14:49:41 -0600213
214 /** In some cases we try to keep the results of the translate_indices()
215 * function from svga_draw_elements.c
216 */
217 struct {
218 enum pipe_prim_type orig_prim, new_prim;
219 struct pipe_resource *buffer;
220 unsigned index_size;
221 unsigned offset; /**< first index */
222 unsigned count; /**< num indices */
223 } translated_indices;
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100224};
225
226
Ilia Mirkina2a1a582015-07-20 19:58:43 -0400227static inline struct svga_buffer *
Brian Paule206f672016-08-25 15:05:27 -0600228svga_buffer(struct pipe_resource *resource)
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100229{
Brian Paule206f672016-08-25 15:05:27 -0600230 struct svga_buffer *buf = (struct svga_buffer *) resource;
231 assert(buf == NULL || buf->b.vtbl == &svga_buffer_vtbl);
232 return buf;
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100233}
234
235
236/**
237 * Returns TRUE for user buffers. We may
238 * decide to use an alternate upload path for these buffers.
239 */
Ilia Mirkina2a1a582015-07-20 19:58:43 -0400240static inline boolean
Keith Whitwell287c94e2010-04-10 16:05:54 +0100241svga_buffer_is_user_buffer( struct pipe_resource *buffer )
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100242{
José Fonsecabd00fb22011-05-31 13:33:34 +0100243 if (buffer) {
244 return svga_buffer(buffer)->user;
245 } else {
246 return FALSE;
247 }
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100248}
249
Brian Paule0a6fb02014-02-08 09:51:14 -0800250/**
251 * Returns a pointer to a struct svga_winsys_screen given a
252 * struct svga_buffer.
253 */
Ilia Mirkina2a1a582015-07-20 19:58:43 -0400254static inline struct svga_winsys_screen *
Brian Paule0a6fb02014-02-08 09:51:14 -0800255svga_buffer_winsys_screen(struct svga_buffer *sbuf)
256{
257 return svga_screen(sbuf->b.b.screen)->sws;
258}
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100259
Keith Whitwell287c94e2010-04-10 16:05:54 +0100260
Brian Paule0a6fb02014-02-08 09:51:14 -0800261/**
262 * Returns whether a buffer has hardware storage that is
263 * visible to the GPU.
264 */
Ilia Mirkina2a1a582015-07-20 19:58:43 -0400265static inline boolean
Brian Paule0a6fb02014-02-08 09:51:14 -0800266svga_buffer_has_hw_storage(struct svga_buffer *sbuf)
267{
268 if (svga_buffer_winsys_screen(sbuf)->have_gb_objects)
269 return (sbuf->handle ? TRUE : FALSE);
270 else
271 return (sbuf->hwbuf ? TRUE : FALSE);
272}
273
274/**
275 * Map the hardware storage of a buffer.
Brian Paul7348df82017-04-03 08:42:36 -0600276 * \param flags bitmask of PIPE_TRANSFER_* flags
Brian Paule0a6fb02014-02-08 09:51:14 -0800277 */
Ilia Mirkina2a1a582015-07-20 19:58:43 -0400278static inline void *
Brian Paule0a6fb02014-02-08 09:51:14 -0800279svga_buffer_hw_storage_map(struct svga_context *svga,
280 struct svga_buffer *sbuf,
281 unsigned flags, boolean *retry)
282{
283 struct svga_winsys_screen *sws = svga_buffer_winsys_screen(sbuf);
Brian Paulefe37512015-10-12 18:40:27 -0600284
Charmaine Leeee398142016-08-31 14:49:52 -0700285 svga->hud.num_buffers_mapped++;
Brian Paulefe37512015-10-12 18:40:27 -0600286
Brian Paule0a6fb02014-02-08 09:51:14 -0800287 if (sws->have_gb_objects) {
288 return svga->swc->surface_map(svga->swc, sbuf->handle, flags, retry);
289 } else {
290 *retry = FALSE;
291 return sws->buffer_map(sws, sbuf->hwbuf, flags);
292 }
293}
294
295/**
296 * Unmap the hardware storage of a buffer.
297 */
Ilia Mirkina2a1a582015-07-20 19:58:43 -0400298static inline void
Brian Paule0a6fb02014-02-08 09:51:14 -0800299svga_buffer_hw_storage_unmap(struct svga_context *svga,
300 struct svga_buffer *sbuf)
301{
302 struct svga_winsys_screen *sws = svga_buffer_winsys_screen(sbuf);
303
304 if (sws->have_gb_objects) {
305 struct svga_winsys_context *swc = svga->swc;
306 boolean rebind;
307 swc->surface_unmap(swc, sbuf->handle, &rebind);
308 if (rebind) {
309 enum pipe_error ret;
310 ret = SVGA3D_BindGBSurface(swc, sbuf->handle);
311 if (ret != PIPE_OK) {
312 /* flush and retry */
313 svga_context_flush(svga, NULL);
314 ret = SVGA3D_BindGBSurface(swc, sbuf->handle);
315 assert(ret == PIPE_OK);
316 }
317 }
318 } else
319 sws->buffer_unmap(sws, sbuf->hwbuf);
320}
321
Keith Whitwell287c94e2010-04-10 16:05:54 +0100322
323struct pipe_resource *
324svga_user_buffer_create(struct pipe_screen *screen,
325 void *ptr,
326 unsigned bytes,
327 unsigned usage);
328
329struct pipe_resource *
330svga_buffer_create(struct pipe_screen *screen,
331 const struct pipe_resource *template);
332
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100333
José Fonseca24529212010-02-18 16:40:14 +0000334
335/**
336 * Get the host surface handle for this buffer.
337 *
338 * This will ensure the host surface is updated, issuing DMAs as needed.
339 *
340 * NOTE: This may insert new commands in the context, so it *must* be called
341 * before reserving command buffer space. And, in order to insert commands
342 * it may need to call svga_context_flush().
343 */
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100344struct svga_winsys_surface *
345svga_buffer_handle(struct svga_context *svga,
Charmaine Leeb549f5e2017-06-26 17:24:15 -0600346 struct pipe_resource *buf,
347 unsigned tobind_flags);
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100348
349void
350svga_context_flush_buffers(struct svga_context *svga);
351
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100352struct svga_winsys_buffer *
José Fonsecab8459092010-05-02 23:54:42 +0100353svga_winsys_buffer_create(struct svga_context *svga,
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100354 unsigned alignment,
355 unsigned usage,
356 unsigned size);
357
Jakob Bornecrantz31926332009-11-16 19:56:18 +0100358#endif /* SVGA_BUFFER_H */