r600/compute: add support for TGSI compute shaders. (v1.1)
[mesa.git] / src / gallium / drivers / svga / svga_winsys.h
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 /**
27 * @file
28 * VMware SVGA specific winsys interface.
29 *
30 * @author Jose Fonseca <jfonseca@vmware.com>
31 *
32 * Documentation taken from the VMware SVGA DDK.
33 */
34
35 #ifndef SVGA_WINSYS_H_
36 #define SVGA_WINSYS_H_
37
38 #include "svga_types.h"
39 #include "svga_reg.h"
40 #include "svga3d_reg.h"
41
42 #include "pipe/p_compiler.h"
43 #include "pipe/p_defines.h"
44
45 #include "svga_mksstats.h"
46
47 struct svga_winsys_screen;
48 struct svga_winsys_buffer;
49 struct pipe_screen;
50 struct pipe_context;
51 struct pipe_debug_callback;
52 struct pipe_fence_handle;
53 struct pipe_resource;
54 struct svga_region;
55 struct winsys_handle;
56
57
58 #define SVGA_BUFFER_USAGE_PINNED (1 << 0)
59 #define SVGA_BUFFER_USAGE_WRAPPED (1 << 1)
60 #define SVGA_BUFFER_USAGE_SHADER (1 << 2)
61
62 /**
63 * Relocation flags to help with dirty tracking
64 * SVGA_RELOC_WRITE - The command will cause a GPU write to this
65 * resource.
66 * SVGA_RELOC_READ - The command will cause a GPU read from this
67 * resource.
68 * SVGA_RELOC_INTERNAL The command will only transfer data internally
69 * within the resource, and optionally clear
70 * dirty bits
71 * SVGA_RELOC_DMA - Only set for resource buffer DMA uploads for winsys
72 * implementations that want to track the amount
73 * of such data referenced in the command stream.
74 */
75 #define SVGA_RELOC_WRITE (1 << 0)
76 #define SVGA_RELOC_READ (1 << 1)
77 #define SVGA_RELOC_INTERNAL (1 << 2)
78 #define SVGA_RELOC_DMA (1 << 3)
79
80 #define SVGA_FENCE_FLAG_EXEC (1 << 0)
81 #define SVGA_FENCE_FLAG_QUERY (1 << 1)
82
83 #define SVGA_SURFACE_USAGE_SHARED (1 << 0)
84 #define SVGA_SURFACE_USAGE_SCANOUT (1 << 1)
85
86 #define SVGA_QUERY_FLAG_SET (1 << 0)
87 #define SVGA_QUERY_FLAG_REF (1 << 1)
88
89 #define SVGA_HINT_FLAG_CAN_PRE_FLUSH (1 << 0) /* Can preemptively flush */
90 #define SVGA_HINT_FLAG_EXPORT_FENCE_FD (1 << 1) /* Export a Fence FD */
91
92 /**
93 * SVGA mks statistics info
94 */
95 struct svga_winsys_stats_timeframe {
96 void *counterTime;
97 uint64 startTime;
98 uint64 adjustedStartTime;
99 struct svga_winsys_stats_timeframe *enclosing;
100 };
101
102 enum svga_stats_count {
103 SVGA_STATS_COUNT_BLENDSTATE,
104 SVGA_STATS_COUNT_BLITBLITTERCOPY,
105 SVGA_STATS_COUNT_DEPTHSTENCILSTATE,
106 SVGA_STATS_COUNT_RASTERIZERSTATE,
107 SVGA_STATS_COUNT_SAMPLER,
108 SVGA_STATS_COUNT_SAMPLERVIEW,
109 SVGA_STATS_COUNT_SURFACEWRITEFLUSH,
110 SVGA_STATS_COUNT_TEXREADBACK,
111 SVGA_STATS_COUNT_VERTEXELEMENT,
112 SVGA_STATS_COUNT_MAX
113 };
114
115 enum svga_stats_time {
116 SVGA_STATS_TIME_BLIT,
117 SVGA_STATS_TIME_BLITBLITTER,
118 SVGA_STATS_TIME_BLITFALLBACK,
119 SVGA_STATS_TIME_BUFFERSFLUSH,
120 SVGA_STATS_TIME_BUFFERTRANSFERMAP,
121 SVGA_STATS_TIME_BUFFERTRANSFERUNMAP,
122 SVGA_STATS_TIME_CONTEXTFINISH,
123 SVGA_STATS_TIME_CONTEXTFLUSH,
124 SVGA_STATS_TIME_COPYREGION,
125 SVGA_STATS_TIME_COPYREGIONFALLBACK,
126 SVGA_STATS_TIME_CREATEBACKEDSURFACEVIEW,
127 SVGA_STATS_TIME_CREATEBUFFER,
128 SVGA_STATS_TIME_CREATECONTEXT,
129 SVGA_STATS_TIME_CREATEFS,
130 SVGA_STATS_TIME_CREATEGS,
131 SVGA_STATS_TIME_CREATESURFACE,
132 SVGA_STATS_TIME_CREATESURFACEVIEW,
133 SVGA_STATS_TIME_CREATETEXTURE,
134 SVGA_STATS_TIME_CREATEVS,
135 SVGA_STATS_TIME_DEFINESHADER,
136 SVGA_STATS_TIME_DESTROYSURFACE,
137 SVGA_STATS_TIME_DRAWVBO,
138 SVGA_STATS_TIME_DRAWARRAYS,
139 SVGA_STATS_TIME_DRAWELEMENTS,
140 SVGA_STATS_TIME_EMITFS,
141 SVGA_STATS_TIME_EMITGS,
142 SVGA_STATS_TIME_EMITVS,
143 SVGA_STATS_TIME_EMULATESURFACEVIEW,
144 SVGA_STATS_TIME_FENCEFINISH,
145 SVGA_STATS_TIME_GENERATEINDICES,
146 SVGA_STATS_TIME_HWTNLDRAWARRAYS,
147 SVGA_STATS_TIME_HWTNLDRAWELEMENTS,
148 SVGA_STATS_TIME_HWTNLFLUSH,
149 SVGA_STATS_TIME_HWTNLPRIM,
150 SVGA_STATS_TIME_PROPAGATESURFACE,
151 SVGA_STATS_TIME_SETSAMPLERVIEWS,
152 SVGA_STATS_TIME_SURFACEFLUSH,
153 SVGA_STATS_TIME_SWTNLDRAWVBO,
154 SVGA_STATS_TIME_SWTNLUPDATEDRAW,
155 SVGA_STATS_TIME_SWTNLUPDATEVDECL,
156 SVGA_STATS_TIME_TEXTRANSFERMAP,
157 SVGA_STATS_TIME_TEXTRANSFERUNMAP,
158 SVGA_STATS_TIME_TGSIVGPU10TRANSLATE,
159 SVGA_STATS_TIME_TGSIVGPU9TRANSLATE,
160 SVGA_STATS_TIME_UPDATESTATE,
161 SVGA_STATS_TIME_VALIDATESURFACEVIEW,
162 SVGA_STATS_TIME_VBUFDRAWARRAYS,
163 SVGA_STATS_TIME_VBUFDRAWELEMENTS,
164 SVGA_STATS_TIME_VBUFRENDERALLOCVERT,
165 SVGA_STATS_TIME_VBUFRENDERMAPVERT,
166 SVGA_STATS_TIME_VBUFRENDERUNMAPVERT,
167 SVGA_STATS_TIME_VBUFSUBMITSTATE,
168 SVGA_STATS_TIME_MAX
169 };
170
171 #define SVGA_STATS_PREFIX "GuestGL_"
172
173 #define SVGA_STATS_COUNT_NAMES \
174 SVGA_STATS_PREFIX "BlendState", \
175 SVGA_STATS_PREFIX "BlitBlitterCopy", \
176 SVGA_STATS_PREFIX "DepthStencilState", \
177 SVGA_STATS_PREFIX "RasterizerState", \
178 SVGA_STATS_PREFIX "Sampler", \
179 SVGA_STATS_PREFIX "SamplerView", \
180 SVGA_STATS_PREFIX "SurfaceWriteFlush", \
181 SVGA_STATS_PREFIX "TextureReadback", \
182 SVGA_STATS_PREFIX "VertexElement" \
183
184 #define SVGA_STATS_TIME_NAMES \
185 SVGA_STATS_PREFIX "Blit", \
186 SVGA_STATS_PREFIX "BlitBlitter", \
187 SVGA_STATS_PREFIX "BlitFallback", \
188 SVGA_STATS_PREFIX "BuffersFlush", \
189 SVGA_STATS_PREFIX "BufferTransferMap", \
190 SVGA_STATS_PREFIX "BufferTransferUnmap", \
191 SVGA_STATS_PREFIX "ContextFinish", \
192 SVGA_STATS_PREFIX "ContextFlush", \
193 SVGA_STATS_PREFIX "CopyRegion", \
194 SVGA_STATS_PREFIX "CopyRegionFallback", \
195 SVGA_STATS_PREFIX "CreateBackedSurfaceView", \
196 SVGA_STATS_PREFIX "CreateBuffer", \
197 SVGA_STATS_PREFIX "CreateContext", \
198 SVGA_STATS_PREFIX "CreateFS", \
199 SVGA_STATS_PREFIX "CreateGS", \
200 SVGA_STATS_PREFIX "CreateSurface", \
201 SVGA_STATS_PREFIX "CreateSurfaceView", \
202 SVGA_STATS_PREFIX "CreateTexture", \
203 SVGA_STATS_PREFIX "CreateVS", \
204 SVGA_STATS_PREFIX "DefineShader", \
205 SVGA_STATS_PREFIX "DestroySurface", \
206 SVGA_STATS_PREFIX "DrawVBO", \
207 SVGA_STATS_PREFIX "DrawArrays", \
208 SVGA_STATS_PREFIX "DrawElements", \
209 SVGA_STATS_PREFIX "EmitFS", \
210 SVGA_STATS_PREFIX "EmitGS", \
211 SVGA_STATS_PREFIX "EmitVS", \
212 SVGA_STATS_PREFIX "EmulateSurfaceView", \
213 SVGA_STATS_PREFIX "FenceFinish", \
214 SVGA_STATS_PREFIX "GenerateIndices", \
215 SVGA_STATS_PREFIX "HWtnlDrawArrays", \
216 SVGA_STATS_PREFIX "HWtnlDrawElements", \
217 SVGA_STATS_PREFIX "HWtnlFlush", \
218 SVGA_STATS_PREFIX "HWtnlPrim", \
219 SVGA_STATS_PREFIX "PropagateSurface", \
220 SVGA_STATS_PREFIX "SetSamplerViews", \
221 SVGA_STATS_PREFIX "SurfaceFlush", \
222 SVGA_STATS_PREFIX "SwtnlDrawVBO", \
223 SVGA_STATS_PREFIX "SwtnlUpdateDraw", \
224 SVGA_STATS_PREFIX "SwtnlUpdateVDecl", \
225 SVGA_STATS_PREFIX "TextureTransferMap", \
226 SVGA_STATS_PREFIX "TextureTransferUnmap", \
227 SVGA_STATS_PREFIX "TGSIVGPU10Translate", \
228 SVGA_STATS_PREFIX "TGSIVGPU9Translate", \
229 SVGA_STATS_PREFIX "UpdateState", \
230 SVGA_STATS_PREFIX "ValidateSurfaceView", \
231 SVGA_STATS_PREFIX "VbufDrawArrays", \
232 SVGA_STATS_PREFIX "VbufDrawElements", \
233 SVGA_STATS_PREFIX "VbufRenderAllocVertices", \
234 SVGA_STATS_PREFIX "VbufRenderMapVertices", \
235 SVGA_STATS_PREFIX "VbufRenderUnmapVertices", \
236 SVGA_STATS_PREFIX "VbufSubmitState"
237
238
239 /** Opaque surface handle */
240 struct svga_winsys_surface;
241
242 /** Opaque guest-backed objects */
243 struct svga_winsys_gb_shader;
244 struct svga_winsys_gb_query;
245
246
247 /**
248 * SVGA per-context winsys interface.
249 */
250 struct svga_winsys_context
251 {
252 void
253 (*destroy)(struct svga_winsys_context *swc);
254
255 void *
256 (*reserve)(struct svga_winsys_context *swc,
257 uint32_t nr_bytes, uint32_t nr_relocs );
258
259 /**
260 * Returns current size of command buffer, in bytes.
261 */
262 unsigned
263 (*get_command_buffer_size)(struct svga_winsys_context *swc);
264
265 /**
266 * Emit a relocation for a host surface.
267 *
268 * @param flags bitmask of SVGA_RELOC_* flags
269 *
270 * NOTE: Order of this call does matter. It should be the same order
271 * as relocations appear in the command buffer.
272 */
273 void
274 (*surface_relocation)(struct svga_winsys_context *swc,
275 uint32 *sid,
276 uint32 *mobid,
277 struct svga_winsys_surface *surface,
278 unsigned flags);
279
280 /**
281 * Emit a relocation for a guest memory region.
282 *
283 * @param flags bitmask of SVGA_RELOC_* flags
284 *
285 * NOTE: Order of this call does matter. It should be the same order
286 * as relocations appear in the command buffer.
287 */
288 void
289 (*region_relocation)(struct svga_winsys_context *swc,
290 struct SVGAGuestPtr *ptr,
291 struct svga_winsys_buffer *buffer,
292 uint32 offset,
293 unsigned flags);
294
295 /**
296 * Emit a relocation for a guest-backed shader object.
297 *
298 * NOTE: Order of this call does matter. It should be the same order
299 * as relocations appear in the command buffer.
300 */
301 void
302 (*shader_relocation)(struct svga_winsys_context *swc,
303 uint32 *shid,
304 uint32 *mobid,
305 uint32 *offset,
306 struct svga_winsys_gb_shader *shader,
307 unsigned flags);
308
309 /**
310 * Emit a relocation for a guest-backed context.
311 *
312 * NOTE: Order of this call does matter. It should be the same order
313 * as relocations appear in the command buffer.
314 */
315 void
316 (*context_relocation)(struct svga_winsys_context *swc, uint32 *cid);
317
318 /**
319 * Emit a relocation for a guest Memory OBject.
320 *
321 * @param flags bitmask of SVGA_RELOC_* flags
322 * @param offset_into_mob Buffer starts at this offset into the MOB.
323 *
324 * Note that not all commands accept an offset into the MOB and
325 * those commands can't use suballocated buffer pools. To trap
326 * errors from improper buffer pool usage, set the offset_into_mob
327 * pointer to NULL.
328 */
329 void
330 (*mob_relocation)(struct svga_winsys_context *swc,
331 SVGAMobId *id,
332 uint32 *offset_into_mob,
333 struct svga_winsys_buffer *buffer,
334 uint32 offset,
335 unsigned flags);
336
337 /**
338 * Emit a relocation for a guest-backed query object.
339 *
340 * NOTE: Order of this call does matter. It should be the same order
341 * as relocations appear in the command buffer.
342 */
343 void
344 (*query_relocation)(struct svga_winsys_context *swc,
345 SVGAMobId *id,
346 struct svga_winsys_gb_query *query);
347
348 /**
349 * Bind queries to context.
350 * \param flags exactly one of SVGA_QUERY_FLAG_SET/REF
351 */
352 enum pipe_error
353 (*query_bind)(struct svga_winsys_context *sws,
354 struct svga_winsys_gb_query *query,
355 unsigned flags);
356
357 void
358 (*commit)(struct svga_winsys_context *swc);
359
360 enum pipe_error
361 (*flush)(struct svga_winsys_context *swc,
362 struct pipe_fence_handle **pfence);
363
364 /**
365 * Context ID used to fill in the commands
366 *
367 * Context IDs are arbitrary small non-negative integers,
368 * global to the entire SVGA device.
369 */
370 uint32 cid;
371
372 /**
373 * Flags to hint the current context state
374 */
375 uint32 hints;
376
377 /**
378 * File descriptor for imported fence
379 */
380 int32 imported_fence_fd;
381
382 /**
383 ** BEGIN new functions for guest-backed surfaces.
384 **/
385
386 boolean have_gb_objects;
387
388 /**
389 * Map a guest-backed surface.
390 * \param flags bitmaks of PIPE_TRANSFER_x flags
391 *
392 * The surface_map() member is allowed to fail due to a
393 * shortage of command buffer space, if the
394 * PIPE_TRANSFER_DISCARD_WHOLE_RESOURCE bit is set in flags.
395 * In that case, the caller must flush the current command
396 * buffer and reissue the map.
397 */
398 void *
399 (*surface_map)(struct svga_winsys_context *swc,
400 struct svga_winsys_surface *surface,
401 unsigned flags, boolean *retry);
402
403 /**
404 * Unmap a guest-backed surface.
405 * \param rebind returns a flag indicating whether the caller should
406 * issue a SVGA3D_BindGBSurface() call.
407 */
408 void
409 (*surface_unmap)(struct svga_winsys_context *swc,
410 struct svga_winsys_surface *surface,
411 boolean *rebind);
412
413 /**
414 * Invalidate the content of this surface
415 */
416 enum pipe_error
417 (*surface_invalidate)(struct svga_winsys_context *swc,
418 struct svga_winsys_surface *surface);
419
420 /**
421 * Create and define a DX GB shader that resides in the device COTable.
422 * Caller of this function will issue the DXDefineShader command.
423 */
424 struct svga_winsys_gb_shader *
425 (*shader_create)(struct svga_winsys_context *swc,
426 uint32 shaderId,
427 SVGA3dShaderType shaderType,
428 const uint32 *bytecode,
429 uint32 bytecodeLen);
430
431 /**
432 * Destroy a DX GB shader.
433 * This function will issue the DXDestroyShader command.
434 */
435 void
436 (*shader_destroy)(struct svga_winsys_context *swc,
437 struct svga_winsys_gb_shader *shader);
438
439 /**
440 * Rebind a DX GB resource to a context.
441 * This is called to reference a DX GB resource in the command stream in
442 * order to page in the associated resource in case the memory has been
443 * paged out, and to fence it if necessary after command submission.
444 */
445 enum pipe_error
446 (*resource_rebind)(struct svga_winsys_context *swc,
447 struct svga_winsys_surface *surface,
448 struct svga_winsys_gb_shader *shader,
449 unsigned flags);
450
451 /** To report perf/conformance/etc issues to the state tracker */
452 struct pipe_debug_callback *debug_callback;
453
454 /** The more recent command issued to command buffer */
455 SVGAFifo3dCmdId last_command;
456 };
457
458
459 /**
460 * SVGA per-screen winsys interface.
461 */
462 struct svga_winsys_screen
463 {
464 void
465 (*destroy)(struct svga_winsys_screen *sws);
466
467 SVGA3dHardwareVersion
468 (*get_hw_version)(struct svga_winsys_screen *sws);
469
470 boolean
471 (*get_cap)(struct svga_winsys_screen *sws,
472 SVGA3dDevCapIndex index,
473 SVGA3dDevCapResult *result);
474
475 /**
476 * Create a new context.
477 *
478 * Context objects encapsulate all render state, and shader
479 * objects are per-context.
480 *
481 * Surfaces are not per-context. The same surface can be shared
482 * between multiple contexts, and surface operations can occur
483 * without a context.
484 */
485 struct svga_winsys_context *
486 (*context_create)(struct svga_winsys_screen *sws);
487
488 /**
489 * This creates a "surface" object in the SVGA3D device.
490 *
491 * \param sws Pointer to an svga_winsys_context
492 * \param flags Device surface create flags
493 * \param format Format Device surface format
494 * \param usage Winsys usage: bitmask of SVGA_SURFACE_USAGE_x flags
495 * \param size Surface size given in device format
496 * \param numLayers Number of layers of the surface (or cube faces)
497 * \param numMipLevels Number of mipmap levels for each face
498 *
499 * Returns the surface ID (sid). Surfaces are generic
500 * containers for host VRAM objects like textures, vertex
501 * buffers, and depth/stencil buffers.
502 *
503 * Surfaces are hierarchial:
504 *
505 * - Surface may have multiple faces (for cube maps)
506 *
507 * - Each face has a list of mipmap levels
508 *
509 * - Each mipmap image may have multiple volume
510 * slices for 3D image, or multiple 2D slices for texture array.
511 *
512 * - Each slice is a 2D array of 'blocks'
513 *
514 * - Each block may be one or more pixels.
515 * (Usually 1, more for DXT or YUV formats.)
516 *
517 * Surfaces are generic host VRAM objects. The SVGA3D device
518 * may optimize surfaces according to the format they were
519 * created with, but this format does not limit the ways in
520 * which the surface may be used. For example, a depth surface
521 * can be used as a texture, or a floating point image may
522 * be used as a vertex buffer. Some surface usages may be
523 * lower performance, due to software emulation, but any
524 * usage should work with any surface.
525 */
526 struct svga_winsys_surface *
527 (*surface_create)(struct svga_winsys_screen *sws,
528 SVGA3dSurfaceFlags flags,
529 SVGA3dSurfaceFormat format,
530 unsigned usage,
531 SVGA3dSize size,
532 uint32 numLayers,
533 uint32 numMipLevels,
534 unsigned sampleCount);
535
536 /**
537 * Creates a surface from a winsys handle.
538 * Used to implement pipe_screen::resource_from_handle.
539 */
540 struct svga_winsys_surface *
541 (*surface_from_handle)(struct svga_winsys_screen *sws,
542 struct winsys_handle *whandle,
543 SVGA3dSurfaceFormat *format);
544
545 /**
546 * Get a winsys_handle from a surface.
547 * Used to implement pipe_screen::resource_get_handle.
548 */
549 boolean
550 (*surface_get_handle)(struct svga_winsys_screen *sws,
551 struct svga_winsys_surface *surface,
552 unsigned stride,
553 struct winsys_handle *whandle);
554
555 /**
556 * Whether this surface is sitting in a validate list
557 */
558 boolean
559 (*surface_is_flushed)(struct svga_winsys_screen *sws,
560 struct svga_winsys_surface *surface);
561
562 /**
563 * Reference a SVGA3D surface object. This allows sharing of a
564 * surface between different objects.
565 */
566 void
567 (*surface_reference)(struct svga_winsys_screen *sws,
568 struct svga_winsys_surface **pdst,
569 struct svga_winsys_surface *src);
570
571 /**
572 * Check if a resource (texture, buffer) of the given size
573 * and format can be created.
574 * \Return TRUE if OK, FALSE if too large.
575 */
576 boolean
577 (*surface_can_create)(struct svga_winsys_screen *sws,
578 SVGA3dSurfaceFormat format,
579 SVGA3dSize size,
580 uint32 numLayers,
581 uint32 numMipLevels);
582
583 /**
584 * Buffer management. Buffer attributes are mostly fixed over its lifetime.
585 *
586 * @param usage bitmask of SVGA_BUFFER_USAGE_* flags.
587 *
588 * alignment indicates the client's alignment requirements, eg for
589 * SSE instructions.
590 */
591 struct svga_winsys_buffer *
592 (*buffer_create)( struct svga_winsys_screen *sws,
593 unsigned alignment,
594 unsigned usage,
595 unsigned size );
596
597 /**
598 * Map the entire data store of a buffer object into the client's address.
599 * usage is a bitmask of PIPE_TRANSFER_*
600 */
601 void *
602 (*buffer_map)( struct svga_winsys_screen *sws,
603 struct svga_winsys_buffer *buf,
604 unsigned usage );
605
606 void
607 (*buffer_unmap)( struct svga_winsys_screen *sws,
608 struct svga_winsys_buffer *buf );
609
610 void
611 (*buffer_destroy)( struct svga_winsys_screen *sws,
612 struct svga_winsys_buffer *buf );
613
614
615 /**
616 * Reference a fence object.
617 */
618 void
619 (*fence_reference)( struct svga_winsys_screen *sws,
620 struct pipe_fence_handle **pdst,
621 struct pipe_fence_handle *src );
622
623 /**
624 * Checks whether the fence has been signalled.
625 * \param flags driver-specific meaning
626 * \return zero on success.
627 */
628 int (*fence_signalled)( struct svga_winsys_screen *sws,
629 struct pipe_fence_handle *fence,
630 unsigned flag );
631
632 /**
633 * Wait for the fence to finish.
634 * \param timeout in nanoseconds (may be PIPE_TIMEOUT_INFINITE).
635 * 0 to return immediately, if the API suports it.
636 * \param flags driver-specific meaning
637 * \return zero on success.
638 */
639 int (*fence_finish)( struct svga_winsys_screen *sws,
640 struct pipe_fence_handle *fence,
641 uint64_t timeout,
642 unsigned flag );
643
644 /**
645 * Get the file descriptor associated with the fence
646 * \param duplicate duplicate the fd before returning it
647 * \return zero on success.
648 */
649 int (*fence_get_fd)( struct svga_winsys_screen *sws,
650 struct pipe_fence_handle *fence,
651 boolean duplicate );
652
653 /**
654 * Create a fence using the given file descriptor
655 * \return zero on success.
656 */
657 void (*fence_create_fd)( struct svga_winsys_screen *sws,
658 struct pipe_fence_handle **fence,
659 int32_t fd );
660
661 /**
662 * Accumulates fence FD from other devices into the current context
663 * \param context_fd FD the context will be waiting on
664 * \return zero on success
665 */
666 int (*fence_server_sync)( struct svga_winsys_screen *sws,
667 int32_t *context_fd,
668 struct pipe_fence_handle *fence );
669
670 /**
671 ** BEGIN new functions for guest-backed surfaces.
672 **/
673
674 /** Are guest-backed objects enabled? */
675 bool have_gb_objects;
676
677 /** Can we do DMA with guest-backed objects enabled? */
678 bool have_gb_dma;
679
680 /**
681 * Create and define a GB shader.
682 */
683 struct svga_winsys_gb_shader *
684 (*shader_create)(struct svga_winsys_screen *sws,
685 SVGA3dShaderType shaderType,
686 const uint32 *bytecode,
687 uint32 bytecodeLen);
688
689 /**
690 * Destroy a GB shader. It's safe to call this function even
691 * if the shader is referenced in a context's command stream.
692 */
693 void
694 (*shader_destroy)(struct svga_winsys_screen *sws,
695 struct svga_winsys_gb_shader *shader);
696
697 /**
698 * Create and define a GB query.
699 */
700 struct svga_winsys_gb_query *
701 (*query_create)(struct svga_winsys_screen *sws, uint32 len);
702
703 /**
704 * Destroy a GB query.
705 */
706 void
707 (*query_destroy)(struct svga_winsys_screen *sws,
708 struct svga_winsys_gb_query *query);
709
710 /**
711 * Initialize the query state of the query that resides in the slot
712 * specified in offset
713 * \return zero on success.
714 */
715 int
716 (*query_init)(struct svga_winsys_screen *sws,
717 struct svga_winsys_gb_query *query,
718 unsigned offset,
719 SVGA3dQueryState queryState);
720
721 /**
722 * Inquire for the query state and result of the query that resides
723 * in the slot specified in offset
724 */
725 void
726 (*query_get_result)(struct svga_winsys_screen *sws,
727 struct svga_winsys_gb_query *query,
728 unsigned offset,
729 SVGA3dQueryState *queryState,
730 void *result, uint32 resultLen);
731
732 /**
733 * Increment a statistic counter
734 */
735 void
736 (*stats_inc)(enum svga_stats_count);
737
738 /**
739 * Push a time frame onto the stack
740 */
741 void
742 (*stats_time_push)(enum svga_stats_time, struct svga_winsys_stats_timeframe *);
743
744 /**
745 * Pop a time frame.
746 */
747 void
748 (*stats_time_pop)();
749
750
751 /** Have VGPU v10 hardware? */
752 boolean have_vgpu10;
753
754 /** To rebind resources at the beginnning of a new command buffer */
755 boolean need_to_rebind_resources;
756
757 boolean have_generate_mipmap_cmd;
758 boolean have_set_predication_cmd;
759 boolean have_transfer_from_buffer_cmd;
760 boolean have_fence_fd;
761 };
762
763
764 struct svga_winsys_screen *
765 svga_winsys_screen(struct pipe_screen *screen);
766
767 struct svga_winsys_context *
768 svga_winsys_context(struct pipe_context *context);
769
770 struct pipe_resource *
771 svga_screen_buffer_wrap_surface(struct pipe_screen *screen,
772 enum SVGA3dSurfaceFormat format,
773 struct svga_winsys_surface *srf);
774
775 struct svga_winsys_surface *
776 svga_screen_buffer_get_winsys_surface(struct pipe_resource *buffer);
777
778 #endif /* SVGA_WINSYS_H_ */