blob: 5b5b0a891f36e4ebff7c06bacb0d002f407c0ab9 [file] [log] [blame]
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001/**************************************************************************
2 *
3 * Copyright © 2009 VMware, Inc., Palo Alto, CA., USA
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
21 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
22 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
23 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
24 * USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28#ifndef __VMWGFX_DRM_H__
29#define __VMWGFX_DRM_H__
30
31#define DRM_VMW_MAX_SURFACE_FACES 6
32#define DRM_VMW_MAX_MIP_LEVELS 24
33
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000034
35#define DRM_VMW_GET_PARAM 0
36#define DRM_VMW_ALLOC_DMABUF 1
37#define DRM_VMW_UNREF_DMABUF 2
38#define DRM_VMW_CURSOR_BYPASS 3
39/* guarded by DRM_VMW_PARAM_NUM_STREAMS != 0*/
40#define DRM_VMW_CONTROL_STREAM 4
41#define DRM_VMW_CLAIM_STREAM 5
42#define DRM_VMW_UNREF_STREAM 6
43/* guarded by DRM_VMW_PARAM_3D == 1 */
44#define DRM_VMW_CREATE_CONTEXT 7
45#define DRM_VMW_UNREF_CONTEXT 8
46#define DRM_VMW_CREATE_SURFACE 9
47#define DRM_VMW_UNREF_SURFACE 10
48#define DRM_VMW_REF_SURFACE 11
49#define DRM_VMW_EXECBUF 12
Thomas Hellstromae2a1042011-09-01 20:18:44 +000050#define DRM_VMW_GET_3D_CAP 13
51#define DRM_VMW_FENCE_WAIT 14
52#define DRM_VMW_FENCE_SIGNALED 15
53#define DRM_VMW_FENCE_UNREF 16
54#define DRM_VMW_FENCE_EVENT 17
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +020055#define DRM_VMW_PRESENT 18
56#define DRM_VMW_PRESENT_READBACK 19
Thomas Hellstromae2a1042011-09-01 20:18:44 +000057
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000058
59/*************************************************************************/
60/**
61 * DRM_VMW_GET_PARAM - get device information.
62 *
63 * DRM_VMW_PARAM_FIFO_OFFSET:
64 * Offset to use to map the first page of the FIFO read-only.
65 * The fifo is mapped using the mmap() system call on the drm device.
66 *
67 * DRM_VMW_PARAM_OVERLAY_IOCTL:
68 * Does the driver support the overlay ioctl.
69 */
70
71#define DRM_VMW_PARAM_NUM_STREAMS 0
72#define DRM_VMW_PARAM_NUM_FREE_STREAMS 1
73#define DRM_VMW_PARAM_3D 2
Thomas Hellstrom07999a72011-09-01 20:18:40 +000074#define DRM_VMW_PARAM_HW_CAPS 3
75#define DRM_VMW_PARAM_FIFO_CAPS 4
76#define DRM_VMW_PARAM_MAX_FB_SIZE 5
Thomas Hellstromf63f6a52011-09-01 20:18:41 +000077#define DRM_VMW_PARAM_FIFO_HW_VERSION 6
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000078
79/**
80 * struct drm_vmw_getparam_arg
81 *
82 * @value: Returned value. //Out
83 * @param: Parameter to query. //In.
84 *
85 * Argument to the DRM_VMW_GET_PARAM Ioctl.
86 */
87
88struct drm_vmw_getparam_arg {
89 uint64_t value;
90 uint32_t param;
91 uint32_t pad64;
92};
93
94/*************************************************************************/
95/**
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000096 * DRM_VMW_CREATE_CONTEXT - Create a host context.
97 *
98 * Allocates a device unique context id, and queues a create context command
99 * for the host. Does not wait for host completion.
100 */
101
102/**
103 * struct drm_vmw_context_arg
104 *
105 * @cid: Device unique context ID.
106 *
107 * Output argument to the DRM_VMW_CREATE_CONTEXT Ioctl.
108 * Input argument to the DRM_VMW_UNREF_CONTEXT Ioctl.
109 */
110
111struct drm_vmw_context_arg {
112 int32_t cid;
113 uint32_t pad64;
114};
115
116/*************************************************************************/
117/**
118 * DRM_VMW_UNREF_CONTEXT - Create a host context.
119 *
120 * Frees a global context id, and queues a destroy host command for the host.
121 * Does not wait for host completion. The context ID can be used directly
122 * in the command stream and shows up as the same context ID on the host.
123 */
124
125/*************************************************************************/
126/**
127 * DRM_VMW_CREATE_SURFACE - Create a host suface.
128 *
129 * Allocates a device unique surface id, and queues a create surface command
130 * for the host. Does not wait for host completion. The surface ID can be
131 * used directly in the command stream and shows up as the same surface
132 * ID on the host.
133 */
134
135/**
136 * struct drm_wmv_surface_create_req
137 *
138 * @flags: Surface flags as understood by the host.
139 * @format: Surface format as understood by the host.
140 * @mip_levels: Number of mip levels for each face.
141 * An unused face should have 0 encoded.
142 * @size_addr: Address of a user-space array of sruct drm_vmw_size
143 * cast to an uint64_t for 32-64 bit compatibility.
144 * The size of the array should equal the total number of mipmap levels.
145 * @shareable: Boolean whether other clients (as identified by file descriptors)
146 * may reference this surface.
Thomas Hellstromf77cef32010-02-09 19:41:55 +0000147 * @scanout: Boolean whether the surface is intended to be used as a
148 * scanout.
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000149 *
150 * Input data to the DRM_VMW_CREATE_SURFACE Ioctl.
151 * Output data from the DRM_VMW_REF_SURFACE Ioctl.
152 */
153
154struct drm_vmw_surface_create_req {
155 uint32_t flags;
156 uint32_t format;
157 uint32_t mip_levels[DRM_VMW_MAX_SURFACE_FACES];
158 uint64_t size_addr;
159 int32_t shareable;
Thomas Hellstromf77cef32010-02-09 19:41:55 +0000160 int32_t scanout;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000161};
162
163/**
164 * struct drm_wmv_surface_arg
165 *
166 * @sid: Surface id of created surface or surface to destroy or reference.
167 *
168 * Output data from the DRM_VMW_CREATE_SURFACE Ioctl.
169 * Input argument to the DRM_VMW_UNREF_SURFACE Ioctl.
170 * Input argument to the DRM_VMW_REF_SURFACE Ioctl.
171 */
172
173struct drm_vmw_surface_arg {
174 int32_t sid;
175 uint32_t pad64;
176};
177
178/**
179 * struct drm_vmw_size ioctl.
180 *
181 * @width - mip level width
182 * @height - mip level height
183 * @depth - mip level depth
184 *
185 * Description of a mip level.
186 * Input data to the DRM_WMW_CREATE_SURFACE Ioctl.
187 */
188
189struct drm_vmw_size {
190 uint32_t width;
191 uint32_t height;
192 uint32_t depth;
193 uint32_t pad64;
194};
195
196/**
197 * union drm_vmw_surface_create_arg
198 *
199 * @rep: Output data as described above.
200 * @req: Input data as described above.
201 *
202 * Argument to the DRM_VMW_CREATE_SURFACE Ioctl.
203 */
204
205union drm_vmw_surface_create_arg {
206 struct drm_vmw_surface_arg rep;
207 struct drm_vmw_surface_create_req req;
208};
209
210/*************************************************************************/
211/**
212 * DRM_VMW_REF_SURFACE - Reference a host surface.
213 *
214 * Puts a reference on a host surface with a give sid, as previously
215 * returned by the DRM_VMW_CREATE_SURFACE ioctl.
216 * A reference will make sure the surface isn't destroyed while we hold
217 * it and will allow the calling client to use the surface ID in the command
218 * stream.
219 *
220 * On successful return, the Ioctl returns the surface information given
221 * in the DRM_VMW_CREATE_SURFACE ioctl.
222 */
223
224/**
225 * union drm_vmw_surface_reference_arg
226 *
227 * @rep: Output data as described above.
228 * @req: Input data as described above.
229 *
230 * Argument to the DRM_VMW_REF_SURFACE Ioctl.
231 */
232
233union drm_vmw_surface_reference_arg {
234 struct drm_vmw_surface_create_req rep;
235 struct drm_vmw_surface_arg req;
236};
237
238/*************************************************************************/
239/**
240 * DRM_VMW_UNREF_SURFACE - Unreference a host surface.
241 *
242 * Clear a reference previously put on a host surface.
243 * When all references are gone, including the one implicitly placed
244 * on creation,
245 * a destroy surface command will be queued for the host.
246 * Does not wait for completion.
247 */
248
249/*************************************************************************/
250/**
251 * DRM_VMW_EXECBUF
252 *
253 * Submit a command buffer for execution on the host, and return a
Thomas Hellstrom6bcd8d3c2011-09-01 20:18:42 +0000254 * fence seqno that when signaled, indicates that the command buffer has
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000255 * executed.
256 */
257
258/**
259 * struct drm_vmw_execbuf_arg
260 *
261 * @commands: User-space address of a command buffer cast to an uint64_t.
262 * @command-size: Size in bytes of the command buffer.
Thomas Hellstromf77cef32010-02-09 19:41:55 +0000263 * @throttle-us: Sleep until software is less than @throttle_us
264 * microseconds ahead of hardware. The driver may round this value
265 * to the nearest kernel tick.
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000266 * @fence_rep: User-space address of a struct drm_vmw_fence_rep cast to an
267 * uint64_t.
Jakob Bornecrantza87897e2010-02-09 21:29:47 +0000268 * @version: Allows expanding the execbuf ioctl parameters without breaking
269 * backwards compatibility, since user-space will always tell the kernel
270 * which version it uses.
271 * @flags: Execbuf flags. None currently.
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000272 *
273 * Argument to the DRM_VMW_EXECBUF Ioctl.
274 */
275
Thomas Hellstrom2ae7b032011-09-01 20:18:45 +0000276#define DRM_VMW_EXECBUF_VERSION 1
Jakob Bornecrantza87897e2010-02-09 21:29:47 +0000277
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000278struct drm_vmw_execbuf_arg {
279 uint64_t commands;
280 uint32_t command_size;
Thomas Hellstromf77cef32010-02-09 19:41:55 +0000281 uint32_t throttle_us;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000282 uint64_t fence_rep;
Thomas Hellstromae2a1042011-09-01 20:18:44 +0000283 uint32_t version;
284 uint32_t flags;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000285};
286
287/**
288 * struct drm_vmw_fence_rep
289 *
Thomas Hellstromae2a1042011-09-01 20:18:44 +0000290 * @handle: Fence object handle for fence associated with a command submission.
291 * @mask: Fence flags relevant for this fence object.
292 * @seqno: Fence sequence number in fifo. A fence object with a lower
293 * seqno will signal the EXEC flag before a fence object with a higher
294 * seqno. This can be used by user-space to avoid kernel calls to determine
295 * whether a fence has signaled the EXEC flag. Note that @seqno will
296 * wrap at 32-bit.
297 * @passed_seqno: The highest seqno number processed by the hardware
298 * so far. This can be used to mark user-space fence objects as signaled, and
299 * to determine whether a fence seqno might be stale.
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000300 * @error: This member should've been set to -EFAULT on submission.
301 * The following actions should be take on completion:
302 * error == -EFAULT: Fence communication failed. The host is synchronized.
303 * Use the last fence id read from the FIFO fence register.
304 * error != 0 && error != -EFAULT:
305 * Fence submission failed. The host is synchronized. Use the fence_seq member.
306 * error == 0: All is OK, The host may not be synchronized.
307 * Use the fence_seq member.
308 *
309 * Input / Output data to the DRM_VMW_EXECBUF Ioctl.
310 */
311
312struct drm_vmw_fence_rep {
Thomas Hellstromae2a1042011-09-01 20:18:44 +0000313 uint32_t handle;
314 uint32_t mask;
315 uint32_t seqno;
316 uint32_t passed_seqno;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000317 uint32_t pad64;
Thomas Hellstromae2a1042011-09-01 20:18:44 +0000318 int32_t error;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000319};
320
321/*************************************************************************/
322/**
323 * DRM_VMW_ALLOC_DMABUF
324 *
325 * Allocate a DMA buffer that is visible also to the host.
326 * NOTE: The buffer is
327 * identified by a handle and an offset, which are private to the guest, but
328 * useable in the command stream. The guest kernel may translate these
329 * and patch up the command stream accordingly. In the future, the offset may
330 * be zero at all times, or it may disappear from the interface before it is
331 * fixed.
332 *
333 * The DMA buffer may stay user-space mapped in the guest at all times,
334 * and is thus suitable for sub-allocation.
335 *
336 * DMA buffers are mapped using the mmap() syscall on the drm device.
337 */
338
339/**
340 * struct drm_vmw_alloc_dmabuf_req
341 *
342 * @size: Required minimum size of the buffer.
343 *
344 * Input data to the DRM_VMW_ALLOC_DMABUF Ioctl.
345 */
346
347struct drm_vmw_alloc_dmabuf_req {
348 uint32_t size;
349 uint32_t pad64;
350};
351
352/**
353 * struct drm_vmw_dmabuf_rep
354 *
355 * @map_handle: Offset to use in the mmap() call used to map the buffer.
356 * @handle: Handle unique to this buffer. Used for unreferencing.
357 * @cur_gmr_id: GMR id to use in the command stream when this buffer is
358 * referenced. See not above.
359 * @cur_gmr_offset: Offset to use in the command stream when this buffer is
360 * referenced. See note above.
361 *
362 * Output data from the DRM_VMW_ALLOC_DMABUF Ioctl.
363 */
364
365struct drm_vmw_dmabuf_rep {
366 uint64_t map_handle;
367 uint32_t handle;
368 uint32_t cur_gmr_id;
369 uint32_t cur_gmr_offset;
370 uint32_t pad64;
371};
372
373/**
374 * union drm_vmw_dmabuf_arg
375 *
376 * @req: Input data as described above.
377 * @rep: Output data as described above.
378 *
379 * Argument to the DRM_VMW_ALLOC_DMABUF Ioctl.
380 */
381
382union drm_vmw_alloc_dmabuf_arg {
383 struct drm_vmw_alloc_dmabuf_req req;
384 struct drm_vmw_dmabuf_rep rep;
385};
386
387/*************************************************************************/
388/**
389 * DRM_VMW_UNREF_DMABUF - Free a DMA buffer.
390 *
391 */
392
393/**
394 * struct drm_vmw_unref_dmabuf_arg
395 *
396 * @handle: Handle indicating what buffer to free. Obtained from the
397 * DRM_VMW_ALLOC_DMABUF Ioctl.
398 *
399 * Argument to the DRM_VMW_UNREF_DMABUF Ioctl.
400 */
401
402struct drm_vmw_unref_dmabuf_arg {
403 uint32_t handle;
404 uint32_t pad64;
405};
406
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000407/*************************************************************************/
408/**
409 * DRM_VMW_CONTROL_STREAM - Control overlays, aka streams.
410 *
411 * This IOCTL controls the overlay units of the svga device.
412 * The SVGA overlay units does not work like regular hardware units in
413 * that they do not automaticaly read back the contents of the given dma
414 * buffer. But instead only read back for each call to this ioctl, and
415 * at any point between this call being made and a following call that
416 * either changes the buffer or disables the stream.
417 */
418
419/**
420 * struct drm_vmw_rect
421 *
422 * Defines a rectangle. Used in the overlay ioctl to define
423 * source and destination rectangle.
424 */
425
426struct drm_vmw_rect {
427 int32_t x;
428 int32_t y;
429 uint32_t w;
430 uint32_t h;
431};
432
433/**
434 * struct drm_vmw_control_stream_arg
435 *
436 * @stream_id: Stearm to control
437 * @enabled: If false all following arguments are ignored.
438 * @handle: Handle to buffer for getting data from.
439 * @format: Format of the overlay as understood by the host.
440 * @width: Width of the overlay.
441 * @height: Height of the overlay.
442 * @size: Size of the overlay in bytes.
443 * @pitch: Array of pitches, the two last are only used for YUV12 formats.
444 * @offset: Offset from start of dma buffer to overlay.
445 * @src: Source rect, must be within the defined area above.
446 * @dst: Destination rect, x and y may be negative.
447 *
448 * Argument to the DRM_VMW_CONTROL_STREAM Ioctl.
449 */
450
451struct drm_vmw_control_stream_arg {
452 uint32_t stream_id;
453 uint32_t enabled;
454
455 uint32_t flags;
456 uint32_t color_key;
457
458 uint32_t handle;
459 uint32_t offset;
460 int32_t format;
461 uint32_t size;
462 uint32_t width;
463 uint32_t height;
464 uint32_t pitch[3];
465
466 uint32_t pad64;
467 struct drm_vmw_rect src;
468 struct drm_vmw_rect dst;
469};
470
471/*************************************************************************/
472/**
473 * DRM_VMW_CURSOR_BYPASS - Give extra information about cursor bypass.
474 *
475 */
476
477#define DRM_VMW_CURSOR_BYPASS_ALL (1 << 0)
478#define DRM_VMW_CURSOR_BYPASS_FLAGS (1)
479
480/**
481 * struct drm_vmw_cursor_bypass_arg
482 *
483 * @flags: Flags.
484 * @crtc_id: Crtc id, only used if DMR_CURSOR_BYPASS_ALL isn't passed.
485 * @xpos: X position of cursor.
486 * @ypos: Y position of cursor.
487 * @xhot: X hotspot.
488 * @yhot: Y hotspot.
489 *
490 * Argument to the DRM_VMW_CURSOR_BYPASS Ioctl.
491 */
492
493struct drm_vmw_cursor_bypass_arg {
494 uint32_t flags;
495 uint32_t crtc_id;
496 int32_t xpos;
497 int32_t ypos;
498 int32_t xhot;
499 int32_t yhot;
500};
501
502/*************************************************************************/
503/**
504 * DRM_VMW_CLAIM_STREAM - Claim a single stream.
505 */
506
507/**
508 * struct drm_vmw_context_arg
509 *
510 * @stream_id: Device unique context ID.
511 *
512 * Output argument to the DRM_VMW_CREATE_CONTEXT Ioctl.
513 * Input argument to the DRM_VMW_UNREF_CONTEXT Ioctl.
514 */
515
516struct drm_vmw_stream_arg {
517 uint32_t stream_id;
518 uint32_t pad64;
519};
520
521/*************************************************************************/
522/**
523 * DRM_VMW_UNREF_STREAM - Unclaim a stream.
524 *
525 * Return a single stream that was claimed by this process. Also makes
526 * sure that the stream has been stopped.
527 */
Thomas Hellstromae2a1042011-09-01 20:18:44 +0000528
Thomas Hellstromf63f6a52011-09-01 20:18:41 +0000529/*************************************************************************/
530/**
531 * DRM_VMW_GET_3D_CAP
532 *
533 * Read 3D capabilities from the FIFO
534 *
535 */
536
537/**
538 * struct drm_vmw_get_3d_cap_arg
539 *
540 * @buffer: Pointer to a buffer for capability data, cast to an uint64_t
541 * @size: Max size to copy
542 *
543 * Input argument to the DRM_VMW_GET_3D_CAP_IOCTL
544 * ioctls.
545 */
546
547struct drm_vmw_get_3d_cap_arg {
548 uint64_t buffer;
549 uint32_t max_size;
550 uint32_t pad64;
551};
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000552
Jakob Bornecrantzd8bd19d2010-06-01 11:54:20 +0200553/*************************************************************************/
554/**
555 * DRM_VMW_UPDATE_LAYOUT - Update layout
556 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300557 * Updates the preferred modes and connection status for connectors. The
Jakob Bornecrantzd8bd19d2010-06-01 11:54:20 +0200558 * command conisits of one drm_vmw_update_layout_arg pointing out a array
559 * of num_outputs drm_vmw_rect's.
560 */
561
562/**
563 * struct drm_vmw_update_layout_arg
564 *
565 * @num_outputs: number of active
566 * @rects: pointer to array of drm_vmw_rect
567 *
568 * Input argument to the DRM_VMW_UPDATE_LAYOUT Ioctl.
569 */
570
571struct drm_vmw_update_layout_arg {
572 uint32_t num_outputs;
573 uint32_t pad64;
574 uint64_t rects;
575};
576
Thomas Hellstromae2a1042011-09-01 20:18:44 +0000577
578/*************************************************************************/
579/**
580 * DRM_VMW_FENCE_WAIT
581 *
582 * Waits for a fence object to signal. The wait is interruptible, so that
583 * signals may be delivered during the interrupt. The wait may timeout,
584 * in which case the calls returns -EBUSY. If the wait is restarted,
585 * that is restarting without resetting @cookie_valid to zero,
586 * the timeout is computed from the first call.
587 *
588 * The flags argument to the DRM_VMW_FENCE_WAIT ioctl indicates what to wait
589 * on:
590 * DRM_VMW_FENCE_FLAG_EXEC: All commands ahead of the fence in the command
591 * stream
592 * have executed.
593 * DRM_VMW_FENCE_FLAG_QUERY: All query results resulting from query finish
594 * commands
595 * in the buffer given to the EXECBUF ioctl returning the fence object handle
596 * are available to user-space.
597 *
598 * DRM_VMW_WAIT_OPTION_UNREF: If this wait option is given, and the
599 * fenc wait ioctl returns 0, the fence object has been unreferenced after
600 * the wait.
601 */
602
603#define DRM_VMW_FENCE_FLAG_EXEC (1 << 0)
604#define DRM_VMW_FENCE_FLAG_QUERY (1 << 1)
605
606#define DRM_VMW_WAIT_OPTION_UNREF (1 << 0)
607
608/**
609 * struct drm_vmw_fence_wait_arg
610 *
611 * @handle: Fence object handle as returned by the DRM_VMW_EXECBUF ioctl.
612 * @cookie_valid: Must be reset to 0 on first call. Left alone on restart.
613 * @kernel_cookie: Set to 0 on first call. Left alone on restart.
614 * @timeout_us: Wait timeout in microseconds. 0 for indefinite timeout.
615 * @lazy: Set to 1 if timing is not critical. Allow more than a kernel tick
616 * before returning.
617 * @flags: Fence flags to wait on.
618 * @wait_options: Options that control the behaviour of the wait ioctl.
619 *
620 * Input argument to the DRM_VMW_FENCE_WAIT ioctl.
621 */
622
623struct drm_vmw_fence_wait_arg {
624 uint32_t handle;
625 int32_t cookie_valid;
626 uint64_t kernel_cookie;
627 uint64_t timeout_us;
628 int32_t lazy;
629 int32_t flags;
630 int32_t wait_options;
631 int32_t pad64;
632};
633
634/*************************************************************************/
635/**
636 * DRM_VMW_FENCE_SIGNALED
637 *
638 * Checks if a fence object is signaled..
639 */
640
641/**
642 * struct drm_vmw_fence_signaled_arg
643 *
644 * @handle: Fence object handle as returned by the DRM_VMW_EXECBUF ioctl.
645 * @flags: Fence object flags input to DRM_VMW_FENCE_SIGNALED ioctl
646 * @signaled: Out: Flags signaled.
647 * @sequence: Out: Highest sequence passed so far. Can be used to signal the
648 * EXEC flag of user-space fence objects.
649 *
650 * Input/Output argument to the DRM_VMW_FENCE_SIGNALED and DRM_VMW_FENCE_UNREF
651 * ioctls.
652 */
653
654struct drm_vmw_fence_signaled_arg {
655 uint32_t handle;
656 uint32_t flags;
657 int32_t signaled;
658 uint32_t passed_seqno;
659 uint32_t signaled_flags;
660 uint32_t pad64;
661};
662
663/*************************************************************************/
664/**
665 * DRM_VMW_FENCE_UNREF
666 *
667 * Unreferences a fence object, and causes it to be destroyed if there are no
668 * other references to it.
669 *
670 */
671
672/**
673 * struct drm_vmw_fence_arg
674 *
675 * @handle: Fence object handle as returned by the DRM_VMW_EXECBUF ioctl.
676 *
677 * Input/Output argument to the DRM_VMW_FENCE_UNREF ioctl..
678 */
679
680struct drm_vmw_fence_arg {
681 uint32_t handle;
682 uint32_t pad64;
683};
684
685
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +0200686/*************************************************************************/
687/**
688 * DRM_VMW_PRESENT
689 *
690 * Executes an SVGA present on a given fb for a given surface. The surface
691 * is placed on the framebuffer. Cliprects are given relative to the given
692 * point (the point disignated by dest_{x|y}).
693 *
694 */
695
696/**
697 * struct drm_vmw_present_arg
698 * @fb_id: framebuffer id to present / read back from.
699 * @sid: Surface id to present from.
700 * @dest_x: X placement coordinate for surface.
701 * @dest_y: Y placement coordinate for surface.
702 * @clips_ptr: Pointer to an array of clip rects cast to an uint64_t.
703 * @num_clips: Number of cliprects given relative to the framebuffer origin,
704 * in the same coordinate space as the frame buffer.
705 * @pad64: Unused 64-bit padding.
706 *
707 * Input argument to the DRM_VMW_PRESENT ioctl.
708 */
709
710struct drm_vmw_present_arg {
711 uint32_t fb_id;
712 uint32_t sid;
713 int32_t dest_x;
714 int32_t dest_y;
715 uint64_t clips_ptr;
716 uint32_t num_clips;
717 uint32_t pad64;
718};
719
720
721/*************************************************************************/
722/**
723 * DRM_VMW_PRESENT_READBACK
724 *
725 * Executes an SVGA present readback from a given fb to the dma buffer
726 * currently bound as the fb. If there is no dma buffer bound to the fb,
727 * an error will be returned.
728 *
729 */
730
731/**
732 * struct drm_vmw_present_arg
733 * @fb_id: fb_id to present / read back from.
734 * @num_clips: Number of cliprects.
735 * @clips_ptr: Pointer to an array of clip rects cast to an uint64_t.
736 * @fence_rep: Pointer to a struct drm_vmw_fence_rep, cast to an uint64_t.
737 * If this member is NULL, then the ioctl should not return a fence.
738 */
739
740struct drm_vmw_present_readback_arg {
741 uint32_t fb_id;
742 uint32_t num_clips;
743 uint64_t clips_ptr;
744 uint64_t fence_rep;
745};
746
Thomas Hellstromae2a1042011-09-01 20:18:44 +0000747
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +0000748#endif