Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | RSS feed

  1. /**************************************************************************
  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. #ifndef __KERNEL__
  32. #include <drm.h>
  33. #endif
  34.  
  35. #define DRM_VMW_MAX_SURFACE_FACES 6
  36. #define DRM_VMW_MAX_MIP_LEVELS 24
  37.  
  38.  
  39. #define DRM_VMW_GET_PARAM            0
  40. #define DRM_VMW_ALLOC_DMABUF         1
  41. #define DRM_VMW_UNREF_DMABUF         2
  42. #define DRM_VMW_CURSOR_BYPASS        3
  43. /* guarded by DRM_VMW_PARAM_NUM_STREAMS != 0*/
  44. #define DRM_VMW_CONTROL_STREAM       4
  45. #define DRM_VMW_CLAIM_STREAM         5
  46. #define DRM_VMW_UNREF_STREAM         6
  47. /* guarded by DRM_VMW_PARAM_3D == 1 */
  48. #define DRM_VMW_CREATE_CONTEXT       7
  49. #define DRM_VMW_UNREF_CONTEXT        8
  50. #define DRM_VMW_CREATE_SURFACE       9
  51. #define DRM_VMW_UNREF_SURFACE        10
  52. #define DRM_VMW_REF_SURFACE          11
  53. #define DRM_VMW_EXECBUF              12
  54. #define DRM_VMW_GET_3D_CAP           13
  55. #define DRM_VMW_FENCE_WAIT           14
  56. #define DRM_VMW_FENCE_SIGNALED       15
  57. #define DRM_VMW_FENCE_UNREF          16
  58. #define DRM_VMW_FENCE_EVENT          17
  59. #define DRM_VMW_PRESENT              18
  60. #define DRM_VMW_PRESENT_READBACK     19
  61. #define DRM_VMW_UPDATE_LAYOUT        20
  62. #define DRM_VMW_CREATE_SHADER        21
  63. #define DRM_VMW_UNREF_SHADER         22
  64. #define DRM_VMW_GB_SURFACE_CREATE    23
  65. #define DRM_VMW_GB_SURFACE_REF       24
  66. #define DRM_VMW_SYNCCPU              25
  67.  
  68. /*************************************************************************/
  69. /**
  70.  * DRM_VMW_GET_PARAM - get device information.
  71.  *
  72.  * DRM_VMW_PARAM_FIFO_OFFSET:
  73.  * Offset to use to map the first page of the FIFO read-only.
  74.  * The fifo is mapped using the mmap() system call on the drm device.
  75.  *
  76.  * DRM_VMW_PARAM_OVERLAY_IOCTL:
  77.  * Does the driver support the overlay ioctl.
  78.  */
  79.  
  80. #define DRM_VMW_PARAM_NUM_STREAMS      0
  81. #define DRM_VMW_PARAM_NUM_FREE_STREAMS 1
  82. #define DRM_VMW_PARAM_3D               2
  83. #define DRM_VMW_PARAM_HW_CAPS          3
  84. #define DRM_VMW_PARAM_FIFO_CAPS        4
  85. #define DRM_VMW_PARAM_MAX_FB_SIZE      5
  86. #define DRM_VMW_PARAM_FIFO_HW_VERSION  6
  87. #define DRM_VMW_PARAM_MAX_SURF_MEMORY  7
  88. #define DRM_VMW_PARAM_3D_CAPS_SIZE     8
  89. #define DRM_VMW_PARAM_MAX_MOB_MEMORY   9
  90. #define DRM_VMW_PARAM_MAX_MOB_SIZE     10
  91.  
  92. /**
  93.  * enum drm_vmw_handle_type - handle type for ref ioctls
  94.  *
  95.  */
  96. enum drm_vmw_handle_type {
  97.         DRM_VMW_HANDLE_LEGACY = 0,
  98.         DRM_VMW_HANDLE_PRIME = 1
  99. };
  100.  
  101. /**
  102.  * struct drm_vmw_getparam_arg
  103.  *
  104.  * @value: Returned value. //Out
  105.  * @param: Parameter to query. //In.
  106.  *
  107.  * Argument to the DRM_VMW_GET_PARAM Ioctl.
  108.  */
  109.  
  110. struct drm_vmw_getparam_arg {
  111.         uint64_t value;
  112.         uint32_t param;
  113.         uint32_t pad64;
  114. };
  115.  
  116. /*************************************************************************/
  117. /**
  118.  * DRM_VMW_CREATE_CONTEXT - Create a host context.
  119.  *
  120.  * Allocates a device unique context id, and queues a create context command
  121.  * for the host. Does not wait for host completion.
  122.  */
  123.  
  124. /**
  125.  * struct drm_vmw_context_arg
  126.  *
  127.  * @cid: Device unique context ID.
  128.  *
  129.  * Output argument to the DRM_VMW_CREATE_CONTEXT Ioctl.
  130.  * Input argument to the DRM_VMW_UNREF_CONTEXT Ioctl.
  131.  */
  132.  
  133. struct drm_vmw_context_arg {
  134.         int32_t cid;
  135.         uint32_t pad64;
  136. };
  137.  
  138. /*************************************************************************/
  139. /**
  140.  * DRM_VMW_UNREF_CONTEXT - Create a host context.
  141.  *
  142.  * Frees a global context id, and queues a destroy host command for the host.
  143.  * Does not wait for host completion. The context ID can be used directly
  144.  * in the command stream and shows up as the same context ID on the host.
  145.  */
  146.  
  147. /*************************************************************************/
  148. /**
  149.  * DRM_VMW_CREATE_SURFACE - Create a host suface.
  150.  *
  151.  * Allocates a device unique surface id, and queues a create surface command
  152.  * for the host. Does not wait for host completion. The surface ID can be
  153.  * used directly in the command stream and shows up as the same surface
  154.  * ID on the host.
  155.  */
  156.  
  157. /**
  158.  * struct drm_wmv_surface_create_req
  159.  *
  160.  * @flags: Surface flags as understood by the host.
  161.  * @format: Surface format as understood by the host.
  162.  * @mip_levels: Number of mip levels for each face.
  163.  * An unused face should have 0 encoded.
  164.  * @size_addr: Address of a user-space array of sruct drm_vmw_size
  165.  * cast to an uint64_t for 32-64 bit compatibility.
  166.  * The size of the array should equal the total number of mipmap levels.
  167.  * @shareable: Boolean whether other clients (as identified by file descriptors)
  168.  * may reference this surface.
  169.  * @scanout: Boolean whether the surface is intended to be used as a
  170.  * scanout.
  171.  *
  172.  * Input data to the DRM_VMW_CREATE_SURFACE Ioctl.
  173.  * Output data from the DRM_VMW_REF_SURFACE Ioctl.
  174.  */
  175.  
  176. struct drm_vmw_surface_create_req {
  177.         uint32_t flags;
  178.         uint32_t format;
  179.         uint32_t mip_levels[DRM_VMW_MAX_SURFACE_FACES];
  180.         uint64_t size_addr;
  181.         int32_t shareable;
  182.         int32_t scanout;
  183. };
  184.  
  185. /**
  186.  * struct drm_wmv_surface_arg
  187.  *
  188.  * @sid: Surface id of created surface or surface to destroy or reference.
  189.  * @handle_type: Handle type for DRM_VMW_REF_SURFACE Ioctl.
  190.  *
  191.  * Output data from the DRM_VMW_CREATE_SURFACE Ioctl.
  192.  * Input argument to the DRM_VMW_UNREF_SURFACE Ioctl.
  193.  * Input argument to the DRM_VMW_REF_SURFACE Ioctl.
  194.  */
  195.  
  196. struct drm_vmw_surface_arg {
  197.         int32_t sid;
  198.         enum drm_vmw_handle_type handle_type;
  199. };
  200.  
  201. /**
  202.  * struct drm_vmw_size ioctl.
  203.  *
  204.  * @width - mip level width
  205.  * @height - mip level height
  206.  * @depth - mip level depth
  207.  *
  208.  * Description of a mip level.
  209.  * Input data to the DRM_WMW_CREATE_SURFACE Ioctl.
  210.  */
  211.  
  212. struct drm_vmw_size {
  213.         uint32_t width;
  214.         uint32_t height;
  215.         uint32_t depth;
  216.         uint32_t pad64;
  217. };
  218.  
  219. /**
  220.  * union drm_vmw_surface_create_arg
  221.  *
  222.  * @rep: Output data as described above.
  223.  * @req: Input data as described above.
  224.  *
  225.  * Argument to the DRM_VMW_CREATE_SURFACE Ioctl.
  226.  */
  227.  
  228. union drm_vmw_surface_create_arg {
  229.         struct drm_vmw_surface_arg rep;
  230.         struct drm_vmw_surface_create_req req;
  231. };
  232.  
  233. /*************************************************************************/
  234. /**
  235.  * DRM_VMW_REF_SURFACE - Reference a host surface.
  236.  *
  237.  * Puts a reference on a host surface with a give sid, as previously
  238.  * returned by the DRM_VMW_CREATE_SURFACE ioctl.
  239.  * A reference will make sure the surface isn't destroyed while we hold
  240.  * it and will allow the calling client to use the surface ID in the command
  241.  * stream.
  242.  *
  243.  * On successful return, the Ioctl returns the surface information given
  244.  * in the DRM_VMW_CREATE_SURFACE ioctl.
  245.  */
  246.  
  247. /**
  248.  * union drm_vmw_surface_reference_arg
  249.  *
  250.  * @rep: Output data as described above.
  251.  * @req: Input data as described above.
  252.  *
  253.  * Argument to the DRM_VMW_REF_SURFACE Ioctl.
  254.  */
  255.  
  256. union drm_vmw_surface_reference_arg {
  257.         struct drm_vmw_surface_create_req rep;
  258.         struct drm_vmw_surface_arg req;
  259. };
  260.  
  261. /*************************************************************************/
  262. /**
  263.  * DRM_VMW_UNREF_SURFACE - Unreference a host surface.
  264.  *
  265.  * Clear a reference previously put on a host surface.
  266.  * When all references are gone, including the one implicitly placed
  267.  * on creation,
  268.  * a destroy surface command will be queued for the host.
  269.  * Does not wait for completion.
  270.  */
  271.  
  272. /*************************************************************************/
  273. /**
  274.  * DRM_VMW_EXECBUF
  275.  *
  276.  * Submit a command buffer for execution on the host, and return a
  277.  * fence seqno that when signaled, indicates that the command buffer has
  278.  * executed.
  279.  */
  280.  
  281. /**
  282.  * struct drm_vmw_execbuf_arg
  283.  *
  284.  * @commands: User-space address of a command buffer cast to an uint64_t.
  285.  * @command-size: Size in bytes of the command buffer.
  286.  * @throttle-us: Sleep until software is less than @throttle_us
  287.  * microseconds ahead of hardware. The driver may round this value
  288.  * to the nearest kernel tick.
  289.  * @fence_rep: User-space address of a struct drm_vmw_fence_rep cast to an
  290.  * uint64_t.
  291.  * @version: Allows expanding the execbuf ioctl parameters without breaking
  292.  * backwards compatibility, since user-space will always tell the kernel
  293.  * which version it uses.
  294.  * @flags: Execbuf flags. None currently.
  295.  *
  296.  * Argument to the DRM_VMW_EXECBUF Ioctl.
  297.  */
  298.  
  299. #define DRM_VMW_EXECBUF_VERSION 1
  300.  
  301. struct drm_vmw_execbuf_arg {
  302.         uint64_t commands;
  303.         uint32_t command_size;
  304.         uint32_t throttle_us;
  305.         uint64_t fence_rep;
  306.         uint32_t version;
  307.         uint32_t flags;
  308. };
  309.  
  310. /**
  311.  * struct drm_vmw_fence_rep
  312.  *
  313.  * @handle: Fence object handle for fence associated with a command submission.
  314.  * @mask: Fence flags relevant for this fence object.
  315.  * @seqno: Fence sequence number in fifo. A fence object with a lower
  316.  * seqno will signal the EXEC flag before a fence object with a higher
  317.  * seqno. This can be used by user-space to avoid kernel calls to determine
  318.  * whether a fence has signaled the EXEC flag. Note that @seqno will
  319.  * wrap at 32-bit.
  320.  * @passed_seqno: The highest seqno number processed by the hardware
  321.  * so far. This can be used to mark user-space fence objects as signaled, and
  322.  * to determine whether a fence seqno might be stale.
  323.  * @error: This member should've been set to -EFAULT on submission.
  324.  * The following actions should be take on completion:
  325.  * error == -EFAULT: Fence communication failed. The host is synchronized.
  326.  * Use the last fence id read from the FIFO fence register.
  327.  * error != 0 && error != -EFAULT:
  328.  * Fence submission failed. The host is synchronized. Use the fence_seq member.
  329.  * error == 0: All is OK, The host may not be synchronized.
  330.  * Use the fence_seq member.
  331.  *
  332.  * Input / Output data to the DRM_VMW_EXECBUF Ioctl.
  333.  */
  334.  
  335. struct drm_vmw_fence_rep {
  336.         uint32_t handle;
  337.         uint32_t mask;
  338.         uint32_t seqno;
  339.         uint32_t passed_seqno;
  340.         uint32_t pad64;
  341.         int32_t error;
  342. };
  343.  
  344. /*************************************************************************/
  345. /**
  346.  * DRM_VMW_ALLOC_DMABUF
  347.  *
  348.  * Allocate a DMA buffer that is visible also to the host.
  349.  * NOTE: The buffer is
  350.  * identified by a handle and an offset, which are private to the guest, but
  351.  * useable in the command stream. The guest kernel may translate these
  352.  * and patch up the command stream accordingly. In the future, the offset may
  353.  * be zero at all times, or it may disappear from the interface before it is
  354.  * fixed.
  355.  *
  356.  * The DMA buffer may stay user-space mapped in the guest at all times,
  357.  * and is thus suitable for sub-allocation.
  358.  *
  359.  * DMA buffers are mapped using the mmap() syscall on the drm device.
  360.  */
  361.  
  362. /**
  363.  * struct drm_vmw_alloc_dmabuf_req
  364.  *
  365.  * @size: Required minimum size of the buffer.
  366.  *
  367.  * Input data to the DRM_VMW_ALLOC_DMABUF Ioctl.
  368.  */
  369.  
  370. struct drm_vmw_alloc_dmabuf_req {
  371.         uint32_t size;
  372.         uint32_t pad64;
  373. };
  374.  
  375. /**
  376.  * struct drm_vmw_dmabuf_rep
  377.  *
  378.  * @map_handle: Offset to use in the mmap() call used to map the buffer.
  379.  * @handle: Handle unique to this buffer. Used for unreferencing.
  380.  * @cur_gmr_id: GMR id to use in the command stream when this buffer is
  381.  * referenced. See not above.
  382.  * @cur_gmr_offset: Offset to use in the command stream when this buffer is
  383.  * referenced. See note above.
  384.  *
  385.  * Output data from the DRM_VMW_ALLOC_DMABUF Ioctl.
  386.  */
  387.  
  388. struct drm_vmw_dmabuf_rep {
  389.         uint64_t map_handle;
  390.         uint32_t handle;
  391.         uint32_t cur_gmr_id;
  392.         uint32_t cur_gmr_offset;
  393.         uint32_t pad64;
  394. };
  395.  
  396. /**
  397.  * union drm_vmw_dmabuf_arg
  398.  *
  399.  * @req: Input data as described above.
  400.  * @rep: Output data as described above.
  401.  *
  402.  * Argument to the DRM_VMW_ALLOC_DMABUF Ioctl.
  403.  */
  404.  
  405. union drm_vmw_alloc_dmabuf_arg {
  406.         struct drm_vmw_alloc_dmabuf_req req;
  407.         struct drm_vmw_dmabuf_rep rep;
  408. };
  409.  
  410. /*************************************************************************/
  411. /**
  412.  * DRM_VMW_UNREF_DMABUF - Free a DMA buffer.
  413.  *
  414.  */
  415.  
  416. /**
  417.  * struct drm_vmw_unref_dmabuf_arg
  418.  *
  419.  * @handle: Handle indicating what buffer to free. Obtained from the
  420.  * DRM_VMW_ALLOC_DMABUF Ioctl.
  421.  *
  422.  * Argument to the DRM_VMW_UNREF_DMABUF Ioctl.
  423.  */
  424.  
  425. struct drm_vmw_unref_dmabuf_arg {
  426.         uint32_t handle;
  427.         uint32_t pad64;
  428. };
  429.  
  430. /*************************************************************************/
  431. /**
  432.  * DRM_VMW_CONTROL_STREAM - Control overlays, aka streams.
  433.  *
  434.  * This IOCTL controls the overlay units of the svga device.
  435.  * The SVGA overlay units does not work like regular hardware units in
  436.  * that they do not automaticaly read back the contents of the given dma
  437.  * buffer. But instead only read back for each call to this ioctl, and
  438.  * at any point between this call being made and a following call that
  439.  * either changes the buffer or disables the stream.
  440.  */
  441.  
  442. /**
  443.  * struct drm_vmw_rect
  444.  *
  445.  * Defines a rectangle. Used in the overlay ioctl to define
  446.  * source and destination rectangle.
  447.  */
  448.  
  449. struct drm_vmw_rect {
  450.         int32_t x;
  451.         int32_t y;
  452.         uint32_t w;
  453.         uint32_t h;
  454. };
  455.  
  456. /**
  457.  * struct drm_vmw_control_stream_arg
  458.  *
  459.  * @stream_id: Stearm to control
  460.  * @enabled: If false all following arguments are ignored.
  461.  * @handle: Handle to buffer for getting data from.
  462.  * @format: Format of the overlay as understood by the host.
  463.  * @width: Width of the overlay.
  464.  * @height: Height of the overlay.
  465.  * @size: Size of the overlay in bytes.
  466.  * @pitch: Array of pitches, the two last are only used for YUV12 formats.
  467.  * @offset: Offset from start of dma buffer to overlay.
  468.  * @src: Source rect, must be within the defined area above.
  469.  * @dst: Destination rect, x and y may be negative.
  470.  *
  471.  * Argument to the DRM_VMW_CONTROL_STREAM Ioctl.
  472.  */
  473.  
  474. struct drm_vmw_control_stream_arg {
  475.         uint32_t stream_id;
  476.         uint32_t enabled;
  477.  
  478.         uint32_t flags;
  479.         uint32_t color_key;
  480.  
  481.         uint32_t handle;
  482.         uint32_t offset;
  483.         int32_t format;
  484.         uint32_t size;
  485.         uint32_t width;
  486.         uint32_t height;
  487.         uint32_t pitch[3];
  488.  
  489.         uint32_t pad64;
  490.         struct drm_vmw_rect src;
  491.         struct drm_vmw_rect dst;
  492. };
  493.  
  494. /*************************************************************************/
  495. /**
  496.  * DRM_VMW_CURSOR_BYPASS - Give extra information about cursor bypass.
  497.  *
  498.  */
  499.  
  500. #define DRM_VMW_CURSOR_BYPASS_ALL    (1 << 0)
  501. #define DRM_VMW_CURSOR_BYPASS_FLAGS       (1)
  502.  
  503. /**
  504.  * struct drm_vmw_cursor_bypass_arg
  505.  *
  506.  * @flags: Flags.
  507.  * @crtc_id: Crtc id, only used if DMR_CURSOR_BYPASS_ALL isn't passed.
  508.  * @xpos: X position of cursor.
  509.  * @ypos: Y position of cursor.
  510.  * @xhot: X hotspot.
  511.  * @yhot: Y hotspot.
  512.  *
  513.  * Argument to the DRM_VMW_CURSOR_BYPASS Ioctl.
  514.  */
  515.  
  516. struct drm_vmw_cursor_bypass_arg {
  517.         uint32_t flags;
  518.         uint32_t crtc_id;
  519.         int32_t xpos;
  520.         int32_t ypos;
  521.         int32_t xhot;
  522.         int32_t yhot;
  523. };
  524.  
  525. /*************************************************************************/
  526. /**
  527.  * DRM_VMW_CLAIM_STREAM - Claim a single stream.
  528.  */
  529.  
  530. /**
  531.  * struct drm_vmw_context_arg
  532.  *
  533.  * @stream_id: Device unique context ID.
  534.  *
  535.  * Output argument to the DRM_VMW_CREATE_CONTEXT Ioctl.
  536.  * Input argument to the DRM_VMW_UNREF_CONTEXT Ioctl.
  537.  */
  538.  
  539. struct drm_vmw_stream_arg {
  540.         uint32_t stream_id;
  541.         uint32_t pad64;
  542. };
  543.  
  544. /*************************************************************************/
  545. /**
  546.  * DRM_VMW_UNREF_STREAM - Unclaim a stream.
  547.  *
  548.  * Return a single stream that was claimed by this process. Also makes
  549.  * sure that the stream has been stopped.
  550.  */
  551.  
  552. /*************************************************************************/
  553. /**
  554.  * DRM_VMW_GET_3D_CAP
  555.  *
  556.  * Read 3D capabilities from the FIFO
  557.  *
  558.  */
  559.  
  560. /**
  561.  * struct drm_vmw_get_3d_cap_arg
  562.  *
  563.  * @buffer: Pointer to a buffer for capability data, cast to an uint64_t
  564.  * @size: Max size to copy
  565.  *
  566.  * Input argument to the DRM_VMW_GET_3D_CAP_IOCTL
  567.  * ioctls.
  568.  */
  569.  
  570. struct drm_vmw_get_3d_cap_arg {
  571.         uint64_t buffer;
  572.         uint32_t max_size;
  573.         uint32_t pad64;
  574. };
  575.  
  576.  
  577. /*************************************************************************/
  578. /**
  579.  * DRM_VMW_FENCE_WAIT
  580.  *
  581.  * Waits for a fence object to signal. The wait is interruptible, so that
  582.  * signals may be delivered during the interrupt. The wait may timeout,
  583.  * in which case the calls returns -EBUSY. If the wait is restarted,
  584.  * that is restarting without resetting @cookie_valid to zero,
  585.  * the timeout is computed from the first call.
  586.  *
  587.  * The flags argument to the DRM_VMW_FENCE_WAIT ioctl indicates what to wait
  588.  * on:
  589.  * DRM_VMW_FENCE_FLAG_EXEC: All commands ahead of the fence in the command
  590.  * stream
  591.  * have executed.
  592.  * DRM_VMW_FENCE_FLAG_QUERY: All query results resulting from query finish
  593.  * commands
  594.  * in the buffer given to the EXECBUF ioctl returning the fence object handle
  595.  * are available to user-space.
  596.  *
  597.  * DRM_VMW_WAIT_OPTION_UNREF: If this wait option is given, and the
  598.  * fenc wait ioctl returns 0, the fence object has been unreferenced after
  599.  * the wait.
  600.  */
  601.  
  602. #define DRM_VMW_FENCE_FLAG_EXEC   (1 << 0)
  603. #define DRM_VMW_FENCE_FLAG_QUERY  (1 << 1)
  604.  
  605. #define DRM_VMW_WAIT_OPTION_UNREF (1 << 0)
  606.  
  607. /**
  608.  * struct drm_vmw_fence_wait_arg
  609.  *
  610.  * @handle: Fence object handle as returned by the DRM_VMW_EXECBUF ioctl.
  611.  * @cookie_valid: Must be reset to 0 on first call. Left alone on restart.
  612.  * @kernel_cookie: Set to 0 on first call. Left alone on restart.
  613.  * @timeout_us: Wait timeout in microseconds. 0 for indefinite timeout.
  614.  * @lazy: Set to 1 if timing is not critical. Allow more than a kernel tick
  615.  * before returning.
  616.  * @flags: Fence flags to wait on.
  617.  * @wait_options: Options that control the behaviour of the wait ioctl.
  618.  *
  619.  * Input argument to the DRM_VMW_FENCE_WAIT ioctl.
  620.  */
  621.  
  622. struct drm_vmw_fence_wait_arg {
  623.         uint32_t handle;
  624.         int32_t  cookie_valid;
  625.         uint64_t kernel_cookie;
  626.         uint64_t timeout_us;
  627.         int32_t lazy;
  628.         int32_t flags;
  629.         int32_t wait_options;
  630.         int32_t pad64;
  631. };
  632.  
  633. /*************************************************************************/
  634. /**
  635.  * DRM_VMW_FENCE_SIGNALED
  636.  *
  637.  * Checks if a fence object is signaled..
  638.  */
  639.  
  640. /**
  641.  * struct drm_vmw_fence_signaled_arg
  642.  *
  643.  * @handle: Fence object handle as returned by the DRM_VMW_EXECBUF ioctl.
  644.  * @flags: Fence object flags input to DRM_VMW_FENCE_SIGNALED ioctl
  645.  * @signaled: Out: Flags signaled.
  646.  * @sequence: Out: Highest sequence passed so far. Can be used to signal the
  647.  * EXEC flag of user-space fence objects.
  648.  *
  649.  * Input/Output argument to the DRM_VMW_FENCE_SIGNALED and DRM_VMW_FENCE_UNREF
  650.  * ioctls.
  651.  */
  652.  
  653. struct drm_vmw_fence_signaled_arg {
  654.          uint32_t handle;
  655.          uint32_t flags;
  656.          int32_t signaled;
  657.          uint32_t passed_seqno;
  658.          uint32_t signaled_flags;
  659.          uint32_t pad64;
  660. };
  661.  
  662. /*************************************************************************/
  663. /**
  664.  * DRM_VMW_FENCE_UNREF
  665.  *
  666.  * Unreferences a fence object, and causes it to be destroyed if there are no
  667.  * other references to it.
  668.  *
  669.  */
  670.  
  671. /**
  672.  * struct drm_vmw_fence_arg
  673.  *
  674.  * @handle: Fence object handle as returned by the DRM_VMW_EXECBUF ioctl.
  675.  *
  676.  * Input/Output argument to the DRM_VMW_FENCE_UNREF ioctl..
  677.  */
  678.  
  679. struct drm_vmw_fence_arg {
  680.          uint32_t handle;
  681.          uint32_t pad64;
  682. };
  683.  
  684.  
  685. /*************************************************************************/
  686. /**
  687.  * DRM_VMW_FENCE_EVENT
  688.  *
  689.  * Queues an event on a fence to be delivered on the drm character device
  690.  * when the fence has signaled the DRM_VMW_FENCE_FLAG_EXEC flag.
  691.  * Optionally the approximate time when the fence signaled is
  692.  * given by the event.
  693.  */
  694.  
  695. /*
  696.  * The event type
  697.  */
  698. #define DRM_VMW_EVENT_FENCE_SIGNALED 0x80000000
  699.  
  700. struct drm_vmw_event_fence {
  701.         struct drm_event base;
  702.         uint64_t user_data;
  703.         uint32_t tv_sec;
  704.         uint32_t tv_usec;
  705. };
  706.  
  707. /*
  708.  * Flags that may be given to the command.
  709.  */
  710. /* Request fence signaled time on the event. */
  711. #define DRM_VMW_FE_FLAG_REQ_TIME (1 << 0)
  712.  
  713. /**
  714.  * struct drm_vmw_fence_event_arg
  715.  *
  716.  * @fence_rep: Pointer to fence_rep structure cast to uint64_t or 0 if
  717.  * the fence is not supposed to be referenced by user-space.
  718.  * @user_info: Info to be delivered with the event.
  719.  * @handle: Attach the event to this fence only.
  720.  * @flags: A set of flags as defined above.
  721.  */
  722. struct drm_vmw_fence_event_arg {
  723.         uint64_t fence_rep;
  724.         uint64_t user_data;
  725.         uint32_t handle;
  726.         uint32_t flags;
  727. };
  728.  
  729.  
  730. /*************************************************************************/
  731. /**
  732.  * DRM_VMW_PRESENT
  733.  *
  734.  * Executes an SVGA present on a given fb for a given surface. The surface
  735.  * is placed on the framebuffer. Cliprects are given relative to the given
  736.  * point (the point disignated by dest_{x|y}).
  737.  *
  738.  */
  739.  
  740. /**
  741.  * struct drm_vmw_present_arg
  742.  * @fb_id: framebuffer id to present / read back from.
  743.  * @sid: Surface id to present from.
  744.  * @dest_x: X placement coordinate for surface.
  745.  * @dest_y: Y placement coordinate for surface.
  746.  * @clips_ptr: Pointer to an array of clip rects cast to an uint64_t.
  747.  * @num_clips: Number of cliprects given relative to the framebuffer origin,
  748.  * in the same coordinate space as the frame buffer.
  749.  * @pad64: Unused 64-bit padding.
  750.  *
  751.  * Input argument to the DRM_VMW_PRESENT ioctl.
  752.  */
  753.  
  754. struct drm_vmw_present_arg {
  755.         uint32_t fb_id;
  756.         uint32_t sid;
  757.         int32_t dest_x;
  758.         int32_t dest_y;
  759.         uint64_t clips_ptr;
  760.         uint32_t num_clips;
  761.         uint32_t pad64;
  762. };
  763.  
  764.  
  765. /*************************************************************************/
  766. /**
  767.  * DRM_VMW_PRESENT_READBACK
  768.  *
  769.  * Executes an SVGA present readback from a given fb to the dma buffer
  770.  * currently bound as the fb. If there is no dma buffer bound to the fb,
  771.  * an error will be returned.
  772.  *
  773.  */
  774.  
  775. /**
  776.  * struct drm_vmw_present_arg
  777.  * @fb_id: fb_id to present / read back from.
  778.  * @num_clips: Number of cliprects.
  779.  * @clips_ptr: Pointer to an array of clip rects cast to an uint64_t.
  780.  * @fence_rep: Pointer to a struct drm_vmw_fence_rep, cast to an uint64_t.
  781.  * If this member is NULL, then the ioctl should not return a fence.
  782.  */
  783.  
  784. struct drm_vmw_present_readback_arg {
  785.          uint32_t fb_id;
  786.          uint32_t num_clips;
  787.          uint64_t clips_ptr;
  788.          uint64_t fence_rep;
  789. };
  790.  
  791. /*************************************************************************/
  792. /**
  793.  * DRM_VMW_UPDATE_LAYOUT - Update layout
  794.  *
  795.  * Updates the preferred modes and connection status for connectors. The
  796.  * command consists of one drm_vmw_update_layout_arg pointing to an array
  797.  * of num_outputs drm_vmw_rect's.
  798.  */
  799.  
  800. /**
  801.  * struct drm_vmw_update_layout_arg
  802.  *
  803.  * @num_outputs: number of active connectors
  804.  * @rects: pointer to array of drm_vmw_rect cast to an uint64_t
  805.  *
  806.  * Input argument to the DRM_VMW_UPDATE_LAYOUT Ioctl.
  807.  */
  808. struct drm_vmw_update_layout_arg {
  809.         uint32_t num_outputs;
  810.         uint32_t pad64;
  811.         uint64_t rects;
  812. };
  813.  
  814.  
  815. /*************************************************************************/
  816. /**
  817.  * DRM_VMW_CREATE_SHADER - Create shader
  818.  *
  819.  * Creates a shader and optionally binds it to a dma buffer containing
  820.  * the shader byte-code.
  821.  */
  822.  
  823. /**
  824.  * enum drm_vmw_shader_type - Shader types
  825.  */
  826. enum drm_vmw_shader_type {
  827.         drm_vmw_shader_type_vs = 0,
  828.         drm_vmw_shader_type_ps,
  829.         drm_vmw_shader_type_gs
  830. };
  831.  
  832.  
  833. /**
  834.  * struct drm_vmw_shader_create_arg
  835.  *
  836.  * @shader_type: Shader type of the shader to create.
  837.  * @size: Size of the byte-code in bytes.
  838.  * where the shader byte-code starts
  839.  * @buffer_handle: Buffer handle identifying the buffer containing the
  840.  * shader byte-code
  841.  * @shader_handle: On successful completion contains a handle that
  842.  * can be used to subsequently identify the shader.
  843.  * @offset: Offset in bytes into the buffer given by @buffer_handle,
  844.  *
  845.  * Input / Output argument to the DRM_VMW_CREATE_SHADER Ioctl.
  846.  */
  847. struct drm_vmw_shader_create_arg {
  848.         enum drm_vmw_shader_type shader_type;
  849.         uint32_t size;
  850.         uint32_t buffer_handle;
  851.         uint32_t shader_handle;
  852.         uint64_t offset;
  853. };
  854.  
  855. /*************************************************************************/
  856. /**
  857.  * DRM_VMW_UNREF_SHADER - Unreferences a shader
  858.  *
  859.  * Destroys a user-space reference to a shader, optionally destroying
  860.  * it.
  861.  */
  862.  
  863. /**
  864.  * struct drm_vmw_shader_arg
  865.  *
  866.  * @handle: Handle identifying the shader to destroy.
  867.  *
  868.  * Input argument to the DRM_VMW_UNREF_SHADER ioctl.
  869.  */
  870. struct drm_vmw_shader_arg {
  871.         uint32_t handle;
  872.         uint32_t pad64;
  873. };
  874.  
  875. /*************************************************************************/
  876. /**
  877.  * DRM_VMW_GB_SURFACE_CREATE - Create a host guest-backed surface.
  878.  *
  879.  * Allocates a surface handle and queues a create surface command
  880.  * for the host on the first use of the surface. The surface ID can
  881.  * be used as the surface ID in commands referencing the surface.
  882.  */
  883.  
  884. /**
  885.  * enum drm_vmw_surface_flags
  886.  *
  887.  * @drm_vmw_surface_flag_shareable:     Whether the surface is shareable
  888.  * @drm_vmw_surface_flag_scanout:       Whether the surface is a scanout
  889.  *                                      surface.
  890.  * @drm_vmw_surface_flag_create_buffer: Create a backup buffer if none is
  891.  *                                      given.
  892.  */
  893. enum drm_vmw_surface_flags {
  894.         drm_vmw_surface_flag_shareable = (1 << 0),
  895.         drm_vmw_surface_flag_scanout = (1 << 1),
  896.         drm_vmw_surface_flag_create_buffer = (1 << 2)
  897. };
  898.  
  899. /**
  900.  * struct drm_vmw_gb_surface_create_req
  901.  *
  902.  * @svga3d_flags:     SVGA3d surface flags for the device.
  903.  * @format:           SVGA3d format.
  904.  * @mip_level:        Number of mip levels for all faces.
  905.  * @drm_surface_flags Flags as described above.
  906.  * @multisample_count Future use. Set to 0.
  907.  * @autogen_filter    Future use. Set to 0.
  908.  * @buffer_handle     Buffer handle of backup buffer. SVGA3D_INVALID_ID
  909.  *                    if none.
  910.  * @base_size         Size of the base mip level for all faces.
  911.  *
  912.  * Input argument to the  DRM_VMW_GB_SURFACE_CREATE Ioctl.
  913.  * Part of output argument for the DRM_VMW_GB_SURFACE_REF Ioctl.
  914.  */
  915. struct drm_vmw_gb_surface_create_req {
  916.         uint32_t svga3d_flags;
  917.         uint32_t format;
  918.         uint32_t mip_levels;
  919.         enum drm_vmw_surface_flags drm_surface_flags;
  920.         uint32_t multisample_count;
  921.         uint32_t autogen_filter;
  922.         uint32_t buffer_handle;
  923.         uint32_t pad64;
  924.         struct drm_vmw_size base_size;
  925. };
  926.  
  927. /**
  928.  * struct drm_vmw_gb_surface_create_rep
  929.  *
  930.  * @handle:            Surface handle.
  931.  * @backup_size:       Size of backup buffers for this surface.
  932.  * @buffer_handle:     Handle of backup buffer. SVGA3D_INVALID_ID if none.
  933.  * @buffer_size:       Actual size of the buffer identified by
  934.  *                     @buffer_handle
  935.  * @buffer_map_handle: Offset into device address space for the buffer
  936.  *                     identified by @buffer_handle.
  937.  *
  938.  * Part of output argument for the DRM_VMW_GB_SURFACE_REF ioctl.
  939.  * Output argument for the DRM_VMW_GB_SURFACE_CREATE ioctl.
  940.  */
  941. struct drm_vmw_gb_surface_create_rep {
  942.         uint32_t handle;
  943.         uint32_t backup_size;
  944.         uint32_t buffer_handle;
  945.         uint32_t buffer_size;
  946.         uint64_t buffer_map_handle;
  947. };
  948.  
  949. /**
  950.  * union drm_vmw_gb_surface_create_arg
  951.  *
  952.  * @req: Input argument as described above.
  953.  * @rep: Output argument as described above.
  954.  *
  955.  * Argument to the DRM_VMW_GB_SURFACE_CREATE ioctl.
  956.  */
  957. union drm_vmw_gb_surface_create_arg {
  958.         struct drm_vmw_gb_surface_create_rep rep;
  959.         struct drm_vmw_gb_surface_create_req req;
  960. };
  961.  
  962. /*************************************************************************/
  963. /**
  964.  * DRM_VMW_GB_SURFACE_REF - Reference a host surface.
  965.  *
  966.  * Puts a reference on a host surface with a given handle, as previously
  967.  * returned by the DRM_VMW_GB_SURFACE_CREATE ioctl.
  968.  * A reference will make sure the surface isn't destroyed while we hold
  969.  * it and will allow the calling client to use the surface handle in
  970.  * the command stream.
  971.  *
  972.  * On successful return, the Ioctl returns the surface information given
  973.  * to and returned from the DRM_VMW_GB_SURFACE_CREATE ioctl.
  974.  */
  975.  
  976. /**
  977.  * struct drm_vmw_gb_surface_reference_arg
  978.  *
  979.  * @creq: The data used as input when the surface was created, as described
  980.  *        above at "struct drm_vmw_gb_surface_create_req"
  981.  * @crep: Additional data output when the surface was created, as described
  982.  *        above at "struct drm_vmw_gb_surface_create_rep"
  983.  *
  984.  * Output Argument to the DRM_VMW_GB_SURFACE_REF ioctl.
  985.  */
  986. struct drm_vmw_gb_surface_ref_rep {
  987.         struct drm_vmw_gb_surface_create_req creq;
  988.         struct drm_vmw_gb_surface_create_rep crep;
  989. };
  990.  
  991. /**
  992.  * union drm_vmw_gb_surface_reference_arg
  993.  *
  994.  * @req: Input data as described above at "struct drm_vmw_surface_arg"
  995.  * @rep: Output data as described above at "struct drm_vmw_gb_surface_ref_rep"
  996.  *
  997.  * Argument to the DRM_VMW_GB_SURFACE_REF Ioctl.
  998.  */
  999. union drm_vmw_gb_surface_reference_arg {
  1000.         struct drm_vmw_gb_surface_ref_rep rep;
  1001.         struct drm_vmw_surface_arg req;
  1002. };
  1003.  
  1004.  
  1005. /*************************************************************************/
  1006. /**
  1007.  * DRM_VMW_SYNCCPU - Sync a DMA buffer / MOB for CPU access.
  1008.  *
  1009.  * Idles any previously submitted GPU operations on the buffer and
  1010.  * by default blocks command submissions that reference the buffer.
  1011.  * If the file descriptor used to grab a blocking CPU sync is closed, the
  1012.  * cpu sync is released.
  1013.  * The flags argument indicates how the grab / release operation should be
  1014.  * performed:
  1015.  */
  1016.  
  1017. /**
  1018.  * enum drm_vmw_synccpu_flags - Synccpu flags:
  1019.  *
  1020.  * @drm_vmw_synccpu_read: Sync for read. If sync is done for read only, it's a
  1021.  * hint to the kernel to allow command submissions that references the buffer
  1022.  * for read-only.
  1023.  * @drm_vmw_synccpu_write: Sync for write. Block all command submissions
  1024.  * referencing this buffer.
  1025.  * @drm_vmw_synccpu_dontblock: Dont wait for GPU idle, but rather return
  1026.  * -EBUSY should the buffer be busy.
  1027.  * @drm_vmw_synccpu_allow_cs: Allow command submission that touches the buffer
  1028.  * while the buffer is synced for CPU. This is similar to the GEM bo idle
  1029.  * behavior.
  1030.  */
  1031. enum drm_vmw_synccpu_flags {
  1032.         drm_vmw_synccpu_read = (1 << 0),
  1033.         drm_vmw_synccpu_write = (1 << 1),
  1034.         drm_vmw_synccpu_dontblock = (1 << 2),
  1035.         drm_vmw_synccpu_allow_cs = (1 << 3)
  1036. };
  1037.  
  1038. /**
  1039.  * enum drm_vmw_synccpu_op - Synccpu operations:
  1040.  *
  1041.  * @drm_vmw_synccpu_grab:    Grab the buffer for CPU operations
  1042.  * @drm_vmw_synccpu_release: Release a previous grab.
  1043.  */
  1044. enum drm_vmw_synccpu_op {
  1045.         drm_vmw_synccpu_grab,
  1046.         drm_vmw_synccpu_release
  1047. };
  1048.  
  1049. /**
  1050.  * struct drm_vmw_synccpu_arg
  1051.  *
  1052.  * @op:                      The synccpu operation as described above.
  1053.  * @handle:                  Handle identifying the buffer object.
  1054.  * @flags:                   Flags as described above.
  1055.  */
  1056. struct drm_vmw_synccpu_arg {
  1057.         enum drm_vmw_synccpu_op op;
  1058.         enum drm_vmw_synccpu_flags flags;
  1059.         uint32_t handle;
  1060.         uint32_t pad64;
  1061. };
  1062.  
  1063. #endif
  1064.