Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 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_DRV_H_ |
| 29 | #define _VMWGFX_DRV_H_ |
| 30 | |
| 31 | #include "vmwgfx_reg.h" |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 32 | #include <drm/drmP.h> |
| 33 | #include <drm/vmwgfx_drm.h> |
| 34 | #include <drm/drm_hashtab.h> |
| 35 | #include <linux/suspend.h> |
| 36 | #include <drm/ttm/ttm_bo_driver.h> |
| 37 | #include <drm/ttm/ttm_object.h> |
| 38 | #include <drm/ttm/ttm_lock.h> |
| 39 | #include <drm/ttm/ttm_execbuf_util.h> |
| 40 | #include <drm/ttm/ttm_module.h> |
Thomas Hellstrom | ae2a104 | 2011-09-01 20:18:44 +0000 | [diff] [blame] | 41 | #include "vmwgfx_fence.h" |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 42 | |
Thomas Hellstrom | 311474d | 2012-11-21 12:34:47 +0100 | [diff] [blame] | 43 | #define VMWGFX_DRIVER_DATE "20121114" |
Thomas Hellstrom | 2ae7b03 | 2011-09-01 20:18:45 +0000 | [diff] [blame] | 44 | #define VMWGFX_DRIVER_MAJOR 2 |
Thomas Hellstrom | 311474d | 2012-11-21 12:34:47 +0100 | [diff] [blame] | 45 | #define VMWGFX_DRIVER_MINOR 5 |
Thomas Hellstrom | f77cef3 | 2010-02-09 19:41:55 +0000 | [diff] [blame] | 46 | #define VMWGFX_DRIVER_PATCHLEVEL 0 |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 47 | #define VMWGFX_FILE_PAGE_OFFSET 0x00100000 |
| 48 | #define VMWGFX_FIFO_STATIC_SIZE (1024*1024) |
| 49 | #define VMWGFX_MAX_RELOCATIONS 2048 |
Thomas Hellstrom | be38ab6 | 2011-08-31 07:42:54 +0000 | [diff] [blame] | 50 | #define VMWGFX_MAX_VALIDATIONS 2048 |
Thomas Hellstrom | 7c4f778 | 2010-06-01 11:38:17 +0200 | [diff] [blame] | 51 | #define VMWGFX_MAX_DISPLAYS 16 |
Thomas Hellstrom | be38ab6 | 2011-08-31 07:42:54 +0000 | [diff] [blame] | 52 | #define VMWGFX_CMD_BOUNCE_INIT_SIZE 32768 |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 53 | |
Thomas Hellstrom | 3530bdc | 2012-11-21 10:49:52 +0100 | [diff] [blame] | 54 | /* |
| 55 | * Perhaps we should have sysfs entries for these. |
| 56 | */ |
| 57 | #define VMWGFX_NUM_GB_CONTEXT 256 |
| 58 | #define VMWGFX_NUM_GB_SHADER 20000 |
| 59 | #define VMWGFX_NUM_GB_SURFACE 32768 |
| 60 | #define VMWGFX_NUM_MOB (VMWGFX_NUM_GB_CONTEXT +\ |
| 61 | VMWGFX_NUM_GB_SHADER +\ |
| 62 | VMWGFX_NUM_GB_SURFACE) |
| 63 | |
Thomas Hellstrom | 135cba0 | 2010-10-26 21:21:47 +0200 | [diff] [blame] | 64 | #define VMW_PL_GMR TTM_PL_PRIV0 |
| 65 | #define VMW_PL_FLAG_GMR TTM_PL_FLAG_PRIV0 |
Thomas Hellstrom | 6da768a | 2012-11-21 11:06:22 +0100 | [diff] [blame] | 66 | #define VMW_PL_MOB TTM_PL_PRIV1 |
| 67 | #define VMW_PL_FLAG_MOB TTM_PL_FLAG_PRIV1 |
Thomas Hellstrom | 135cba0 | 2010-10-26 21:21:47 +0200 | [diff] [blame] | 68 | |
Thomas Hellstrom | ae2a104 | 2011-09-01 20:18:44 +0000 | [diff] [blame] | 69 | #define VMW_RES_CONTEXT ttm_driver_type0 |
| 70 | #define VMW_RES_SURFACE ttm_driver_type1 |
| 71 | #define VMW_RES_STREAM ttm_driver_type2 |
| 72 | #define VMW_RES_FENCE ttm_driver_type3 |
Thomas Hellstrom | c74c162 | 2012-11-21 12:10:26 +0100 | [diff] [blame] | 73 | #define VMW_RES_SHADER ttm_driver_type4 |
Thomas Hellstrom | ae2a104 | 2011-09-01 20:18:44 +0000 | [diff] [blame] | 74 | |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 75 | struct vmw_fpriv { |
| 76 | struct drm_master *locked_master; |
| 77 | struct ttm_object_file *tfile; |
Thomas Hellstrom | 6b82ef5 | 2012-02-09 16:56:42 +0100 | [diff] [blame] | 78 | struct list_head fence_events; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 79 | }; |
| 80 | |
| 81 | struct vmw_dma_buffer { |
| 82 | struct ttm_buffer_object base; |
Thomas Hellstrom | c0951b7 | 2012-11-20 12:19:35 +0000 | [diff] [blame] | 83 | struct list_head res_list; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 84 | }; |
| 85 | |
Thomas Hellstrom | c0951b7 | 2012-11-20 12:19:35 +0000 | [diff] [blame] | 86 | /** |
| 87 | * struct vmw_validate_buffer - Carries validation info about buffers. |
| 88 | * |
| 89 | * @base: Validation info for TTM. |
| 90 | * @hash: Hash entry for quick lookup of the TTM buffer object. |
| 91 | * |
| 92 | * This structure contains also driver private validation info |
| 93 | * on top of the info needed by TTM. |
| 94 | */ |
| 95 | struct vmw_validate_buffer { |
| 96 | struct ttm_validate_buffer base; |
| 97 | struct drm_hash_item hash; |
Thomas Hellstrom | 96c5f0d | 2012-11-21 11:19:53 +0100 | [diff] [blame] | 98 | bool validate_as_mob; |
Thomas Hellstrom | c0951b7 | 2012-11-20 12:19:35 +0000 | [diff] [blame] | 99 | }; |
| 100 | |
| 101 | struct vmw_res_func; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 102 | struct vmw_resource { |
| 103 | struct kref kref; |
| 104 | struct vmw_private *dev_priv; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 105 | int id; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 106 | bool avail; |
Thomas Hellstrom | c0951b7 | 2012-11-20 12:19:35 +0000 | [diff] [blame] | 107 | unsigned long backup_size; |
| 108 | bool res_dirty; /* Protected by backup buffer reserved */ |
| 109 | bool backup_dirty; /* Protected by backup buffer reserved */ |
| 110 | struct vmw_dma_buffer *backup; |
| 111 | unsigned long backup_offset; |
| 112 | const struct vmw_res_func *func; |
| 113 | struct list_head lru_head; /* Protected by the resource lock */ |
| 114 | struct list_head mob_head; /* Protected by @backup reserved */ |
Thomas Hellstrom | 173fb7d | 2013-10-08 02:32:36 -0700 | [diff] [blame] | 115 | struct list_head binding_head; /* Protected by binding_mutex */ |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 116 | void (*res_free) (struct vmw_resource *res); |
Thomas Hellstrom | c0951b7 | 2012-11-20 12:19:35 +0000 | [diff] [blame] | 117 | void (*hw_destroy) (struct vmw_resource *res); |
| 118 | }; |
| 119 | |
| 120 | enum vmw_res_type { |
| 121 | vmw_res_context, |
| 122 | vmw_res_surface, |
| 123 | vmw_res_stream, |
Thomas Hellstrom | c74c162 | 2012-11-21 12:10:26 +0100 | [diff] [blame] | 124 | vmw_res_shader, |
Thomas Hellstrom | c0951b7 | 2012-11-20 12:19:35 +0000 | [diff] [blame] | 125 | vmw_res_max |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 126 | }; |
| 127 | |
| 128 | struct vmw_cursor_snooper { |
| 129 | struct drm_crtc *crtc; |
| 130 | size_t age; |
| 131 | uint32_t *image; |
| 132 | }; |
| 133 | |
Jakob Bornecrantz | 2fcd5a7 | 2011-10-04 20:13:26 +0200 | [diff] [blame] | 134 | struct vmw_framebuffer; |
Thomas Hellstrom | 5bb39e8 | 2011-10-04 20:13:33 +0200 | [diff] [blame] | 135 | struct vmw_surface_offset; |
Jakob Bornecrantz | 2fcd5a7 | 2011-10-04 20:13:26 +0200 | [diff] [blame] | 136 | |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 137 | struct vmw_surface { |
| 138 | struct vmw_resource res; |
| 139 | uint32_t flags; |
| 140 | uint32_t format; |
| 141 | uint32_t mip_levels[DRM_VMW_MAX_SURFACE_FACES]; |
Thomas Hellstrom | c0951b7 | 2012-11-20 12:19:35 +0000 | [diff] [blame] | 142 | struct drm_vmw_size base_size; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 143 | struct drm_vmw_size *sizes; |
| 144 | uint32_t num_sizes; |
Jakob Bornecrantz | 5ffdb65 | 2010-01-30 03:38:08 +0000 | [diff] [blame] | 145 | bool scanout; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 146 | /* TODO so far just a extra pointer */ |
| 147 | struct vmw_cursor_snooper snooper; |
Thomas Hellstrom | 5bb39e8 | 2011-10-04 20:13:33 +0200 | [diff] [blame] | 148 | struct vmw_surface_offset *offsets; |
Thomas Hellstrom | c0951b7 | 2012-11-20 12:19:35 +0000 | [diff] [blame] | 149 | SVGA3dTextureFilter autogen_filter; |
| 150 | uint32_t multisample_count; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 151 | }; |
| 152 | |
Thomas Hellstrom | 6bcd8d3c | 2011-09-01 20:18:42 +0000 | [diff] [blame] | 153 | struct vmw_marker_queue { |
Thomas Hellstrom | 1925d45 | 2010-05-28 11:21:57 +0200 | [diff] [blame] | 154 | struct list_head head; |
| 155 | struct timespec lag; |
| 156 | struct timespec lag_time; |
| 157 | spinlock_t lock; |
| 158 | }; |
| 159 | |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 160 | struct vmw_fifo_state { |
| 161 | unsigned long reserved_size; |
| 162 | __le32 *dynamic_buffer; |
| 163 | __le32 *static_buffer; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 164 | unsigned long static_buffer_size; |
| 165 | bool using_bounce_buffer; |
| 166 | uint32_t capabilities; |
Thomas Hellstrom | 85b9e48 | 2010-02-08 09:57:25 +0000 | [diff] [blame] | 167 | struct mutex fifo_mutex; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 168 | struct rw_semaphore rwsem; |
Thomas Hellstrom | 6bcd8d3c | 2011-09-01 20:18:42 +0000 | [diff] [blame] | 169 | struct vmw_marker_queue marker_queue; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 170 | }; |
| 171 | |
| 172 | struct vmw_relocation { |
Thomas Hellstrom | ddcda24 | 2012-11-21 11:26:55 +0100 | [diff] [blame] | 173 | SVGAMobId *mob_loc; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 174 | SVGAGuestPtr *location; |
| 175 | uint32_t index; |
| 176 | }; |
| 177 | |
Thomas Hellstrom | c0951b7 | 2012-11-20 12:19:35 +0000 | [diff] [blame] | 178 | /** |
| 179 | * struct vmw_res_cache_entry - resource information cache entry |
| 180 | * |
| 181 | * @valid: Whether the entry is valid, which also implies that the execbuf |
| 182 | * code holds a reference to the resource, and it's placed on the |
| 183 | * validation list. |
| 184 | * @handle: User-space handle of a resource. |
| 185 | * @res: Non-ref-counted pointer to the resource. |
| 186 | * |
| 187 | * Used to avoid frequent repeated user-space handle lookups of the |
| 188 | * same resource. |
| 189 | */ |
| 190 | struct vmw_res_cache_entry { |
| 191 | bool valid; |
| 192 | uint32_t handle; |
| 193 | struct vmw_resource *res; |
| 194 | struct vmw_resource_val_node *node; |
| 195 | }; |
| 196 | |
Thomas Hellstrom | d92d985 | 2013-10-24 01:49:26 -0700 | [diff] [blame] | 197 | /** |
| 198 | * enum vmw_dma_map_mode - indicate how to perform TTM page dma mappings. |
| 199 | */ |
| 200 | enum vmw_dma_map_mode { |
| 201 | vmw_dma_phys, /* Use physical page addresses */ |
| 202 | vmw_dma_alloc_coherent, /* Use TTM coherent pages */ |
| 203 | vmw_dma_map_populate, /* Unmap from DMA just after unpopulate */ |
| 204 | vmw_dma_map_bind, /* Unmap from DMA just before unbind */ |
| 205 | vmw_dma_map_max |
| 206 | }; |
| 207 | |
| 208 | /** |
| 209 | * struct vmw_sg_table - Scatter/gather table for binding, with additional |
| 210 | * device-specific information. |
| 211 | * |
| 212 | * @sgt: Pointer to a struct sg_table with binding information |
| 213 | * @num_regions: Number of regions with device-address contigous pages |
| 214 | */ |
| 215 | struct vmw_sg_table { |
| 216 | enum vmw_dma_map_mode mode; |
| 217 | struct page **pages; |
| 218 | const dma_addr_t *addrs; |
| 219 | struct sg_table *sgt; |
| 220 | unsigned long num_regions; |
| 221 | unsigned long num_pages; |
| 222 | }; |
| 223 | |
| 224 | /** |
| 225 | * struct vmw_piter - Page iterator that iterates over a list of pages |
| 226 | * and DMA addresses that could be either a scatter-gather list or |
| 227 | * arrays |
| 228 | * |
| 229 | * @pages: Array of page pointers to the pages. |
| 230 | * @addrs: DMA addresses to the pages if coherent pages are used. |
| 231 | * @iter: Scatter-gather page iterator. Current position in SG list. |
| 232 | * @i: Current position in arrays. |
| 233 | * @num_pages: Number of pages total. |
| 234 | * @next: Function to advance the iterator. Returns false if past the list |
| 235 | * of pages, true otherwise. |
| 236 | * @dma_address: Function to return the DMA address of the current page. |
| 237 | */ |
| 238 | struct vmw_piter { |
| 239 | struct page **pages; |
| 240 | const dma_addr_t *addrs; |
| 241 | struct sg_page_iter iter; |
| 242 | unsigned long i; |
| 243 | unsigned long num_pages; |
| 244 | bool (*next)(struct vmw_piter *); |
| 245 | dma_addr_t (*dma_address)(struct vmw_piter *); |
| 246 | struct page *(*page)(struct vmw_piter *); |
| 247 | }; |
| 248 | |
Thomas Hellstrom | b5c3b1a6 | 2013-10-08 02:27:17 -0700 | [diff] [blame] | 249 | /* |
| 250 | * enum vmw_ctx_binding_type - abstract resource to context binding types |
| 251 | */ |
| 252 | enum vmw_ctx_binding_type { |
| 253 | vmw_ctx_binding_shader, |
| 254 | vmw_ctx_binding_rt, |
| 255 | vmw_ctx_binding_tex, |
| 256 | vmw_ctx_binding_max |
| 257 | }; |
| 258 | |
| 259 | /** |
| 260 | * struct vmw_ctx_bindinfo - structure representing a single context binding |
| 261 | * |
| 262 | * @ctx: Pointer to the context structure. NULL means the binding is not |
| 263 | * active. |
Thomas Hellstrom | 173fb7d | 2013-10-08 02:32:36 -0700 | [diff] [blame] | 264 | * @res: Non ref-counted pointer to the bound resource. |
Thomas Hellstrom | b5c3b1a6 | 2013-10-08 02:27:17 -0700 | [diff] [blame] | 265 | * @bt: The binding type. |
| 266 | * @i1: Union of information needed to unbind. |
| 267 | */ |
| 268 | struct vmw_ctx_bindinfo { |
| 269 | struct vmw_resource *ctx; |
Thomas Hellstrom | 173fb7d | 2013-10-08 02:32:36 -0700 | [diff] [blame] | 270 | struct vmw_resource *res; |
Thomas Hellstrom | b5c3b1a6 | 2013-10-08 02:27:17 -0700 | [diff] [blame] | 271 | enum vmw_ctx_binding_type bt; |
| 272 | union { |
| 273 | SVGA3dShaderType shader_type; |
| 274 | SVGA3dRenderTargetType rt_type; |
| 275 | uint32 texture_stage; |
| 276 | } i1; |
| 277 | }; |
| 278 | |
| 279 | /** |
| 280 | * struct vmw_ctx_binding - structure representing a single context binding |
| 281 | * - suitable for tracking in a context |
| 282 | * |
| 283 | * @ctx_list: List head for context. |
Thomas Hellstrom | 173fb7d | 2013-10-08 02:32:36 -0700 | [diff] [blame] | 284 | * @res_list: List head for bound resource. |
Thomas Hellstrom | b5c3b1a6 | 2013-10-08 02:27:17 -0700 | [diff] [blame] | 285 | * @bi: Binding info |
| 286 | */ |
| 287 | struct vmw_ctx_binding { |
| 288 | struct list_head ctx_list; |
Thomas Hellstrom | 173fb7d | 2013-10-08 02:32:36 -0700 | [diff] [blame] | 289 | struct list_head res_list; |
Thomas Hellstrom | b5c3b1a6 | 2013-10-08 02:27:17 -0700 | [diff] [blame] | 290 | struct vmw_ctx_bindinfo bi; |
| 291 | }; |
| 292 | |
| 293 | |
| 294 | /** |
| 295 | * struct vmw_ctx_binding_state - context binding state |
| 296 | * |
| 297 | * @list: linked list of individual bindings. |
| 298 | * @render_targets: Render target bindings. |
| 299 | * @texture_units: Texture units/samplers bindings. |
| 300 | * @shaders: Shader bindings. |
| 301 | * |
| 302 | * Note that this structure also provides storage space for the individual |
| 303 | * struct vmw_ctx_binding objects, so that no dynamic allocation is needed |
| 304 | * for individual bindings. |
| 305 | * |
| 306 | */ |
| 307 | struct vmw_ctx_binding_state { |
| 308 | struct list_head list; |
| 309 | struct vmw_ctx_binding render_targets[SVGA3D_RT_MAX]; |
| 310 | struct vmw_ctx_binding texture_units[SVGA3D_NUM_TEXTURE_UNITS]; |
| 311 | struct vmw_ctx_binding shaders[SVGA3D_SHADERTYPE_MAX]; |
| 312 | }; |
| 313 | |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 314 | struct vmw_sw_context{ |
Thomas Hellstrom | c0951b7 | 2012-11-20 12:19:35 +0000 | [diff] [blame] | 315 | struct drm_open_hash res_ht; |
| 316 | bool res_ht_initialized; |
Thomas Hellstrom | 922ade0 | 2011-10-04 20:13:17 +0200 | [diff] [blame] | 317 | bool kernel; /**< is the called made from the kernel */ |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 318 | struct ttm_object_file *tfile; |
| 319 | struct list_head validate_nodes; |
| 320 | struct vmw_relocation relocs[VMWGFX_MAX_RELOCATIONS]; |
| 321 | uint32_t cur_reloc; |
Thomas Hellstrom | c0951b7 | 2012-11-20 12:19:35 +0000 | [diff] [blame] | 322 | struct vmw_validate_buffer val_bufs[VMWGFX_MAX_VALIDATIONS]; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 323 | uint32_t cur_val_buf; |
Thomas Hellstrom | be38ab6 | 2011-08-31 07:42:54 +0000 | [diff] [blame] | 324 | uint32_t *cmd_bounce; |
| 325 | uint32_t cmd_bounce_size; |
Thomas Hellstrom | f18c884 | 2011-10-04 20:13:31 +0200 | [diff] [blame] | 326 | struct list_head resource_list; |
Thomas Hellstrom | e2fa3a7 | 2011-10-04 20:13:30 +0200 | [diff] [blame] | 327 | uint32_t fence_flags; |
Thomas Hellstrom | e2fa3a7 | 2011-10-04 20:13:30 +0200 | [diff] [blame] | 328 | struct ttm_buffer_object *cur_query_bo; |
Thomas Hellstrom | c0951b7 | 2012-11-20 12:19:35 +0000 | [diff] [blame] | 329 | struct list_head res_relocations; |
| 330 | uint32_t *buf_start; |
| 331 | struct vmw_res_cache_entry res_cache[vmw_res_max]; |
| 332 | struct vmw_resource *last_query_ctx; |
| 333 | bool needs_post_query_barrier; |
| 334 | struct vmw_resource *error_resource; |
Thomas Hellstrom | b5c3b1a6 | 2013-10-08 02:27:17 -0700 | [diff] [blame] | 335 | struct vmw_ctx_binding_state staged_bindings; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 336 | }; |
| 337 | |
| 338 | struct vmw_legacy_display; |
| 339 | struct vmw_overlay; |
| 340 | |
| 341 | struct vmw_master { |
| 342 | struct ttm_lock lock; |
Thomas Hellstrom | 3a939a5 | 2010-10-05 12:43:03 +0200 | [diff] [blame] | 343 | struct mutex fb_surf_mutex; |
| 344 | struct list_head fb_surf; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 345 | }; |
| 346 | |
Thomas Hellstrom | 7c4f778 | 2010-06-01 11:38:17 +0200 | [diff] [blame] | 347 | struct vmw_vga_topology_state { |
| 348 | uint32_t width; |
| 349 | uint32_t height; |
| 350 | uint32_t primary; |
| 351 | uint32_t pos_x; |
| 352 | uint32_t pos_y; |
| 353 | }; |
| 354 | |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 355 | struct vmw_private { |
| 356 | struct ttm_bo_device bdev; |
| 357 | struct ttm_bo_global_ref bo_global_ref; |
Dave Airlie | ba4420c | 2010-03-09 10:56:52 +1000 | [diff] [blame] | 358 | struct drm_global_reference mem_global_ref; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 359 | |
| 360 | struct vmw_fifo_state fifo; |
| 361 | |
| 362 | struct drm_device *dev; |
| 363 | unsigned long vmw_chipset; |
| 364 | unsigned int io_start; |
| 365 | uint32_t vram_start; |
| 366 | uint32_t vram_size; |
Thomas Hellstrom | bc2d650 | 2012-11-21 10:32:36 +0100 | [diff] [blame] | 367 | uint32_t prim_bb_mem; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 368 | uint32_t mmio_start; |
| 369 | uint32_t mmio_size; |
| 370 | uint32_t fb_max_width; |
| 371 | uint32_t fb_max_height; |
Jakob Bornecrantz | eb4f923 | 2012-02-09 16:56:46 +0100 | [diff] [blame] | 372 | uint32_t initial_width; |
| 373 | uint32_t initial_height; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 374 | __le32 __iomem *mmio_virt; |
| 375 | int mmio_mtrr; |
| 376 | uint32_t capabilities; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 377 | uint32_t max_gmr_ids; |
Thomas Hellstrom | fb17f18 | 2011-08-31 07:42:53 +0000 | [diff] [blame] | 378 | uint32_t max_gmr_pages; |
Thomas Hellstrom | 6da768a | 2012-11-21 11:06:22 +0100 | [diff] [blame] | 379 | uint32_t max_mob_pages; |
Thomas Hellstrom | fb17f18 | 2011-08-31 07:42:53 +0000 | [diff] [blame] | 380 | uint32_t memory_size; |
Thomas Hellstrom | 135cba0 | 2010-10-26 21:21:47 +0200 | [diff] [blame] | 381 | bool has_gmr; |
Thomas Hellstrom | 3530bdc | 2012-11-21 10:49:52 +0100 | [diff] [blame] | 382 | bool has_mob; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 383 | struct mutex hw_mutex; |
| 384 | |
| 385 | /* |
| 386 | * VGA registers. |
| 387 | */ |
| 388 | |
Thomas Hellstrom | 7c4f778 | 2010-06-01 11:38:17 +0200 | [diff] [blame] | 389 | struct vmw_vga_topology_state vga_save[VMWGFX_MAX_DISPLAYS]; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 390 | uint32_t vga_width; |
| 391 | uint32_t vga_height; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 392 | uint32_t vga_bpp; |
Thomas Hellstrom | 7c4f778 | 2010-06-01 11:38:17 +0200 | [diff] [blame] | 393 | uint32_t vga_bpl; |
Jakob Bornecrantz | d7e1958 | 2010-05-28 11:21:59 +0200 | [diff] [blame] | 394 | uint32_t vga_pitchlock; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 395 | |
Thomas Hellstrom | 7c4f778 | 2010-06-01 11:38:17 +0200 | [diff] [blame] | 396 | uint32_t num_displays; |
| 397 | |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 398 | /* |
| 399 | * Framebuffer info. |
| 400 | */ |
| 401 | |
| 402 | void *fb_info; |
| 403 | struct vmw_legacy_display *ldu_priv; |
Jakob Bornecrantz | 56d1c78 | 2011-10-04 20:13:22 +0200 | [diff] [blame] | 404 | struct vmw_screen_object_display *sou_priv; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 405 | struct vmw_overlay *overlay_priv; |
| 406 | |
| 407 | /* |
| 408 | * Context and surface management. |
| 409 | */ |
| 410 | |
| 411 | rwlock_t resource_lock; |
Thomas Hellstrom | c0951b7 | 2012-11-20 12:19:35 +0000 | [diff] [blame] | 412 | struct idr res_idr[vmw_res_max]; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 413 | /* |
| 414 | * Block lastclose from racing with firstopen. |
| 415 | */ |
| 416 | |
| 417 | struct mutex init_mutex; |
| 418 | |
| 419 | /* |
| 420 | * A resource manager for kernel-only surfaces and |
| 421 | * contexts. |
| 422 | */ |
| 423 | |
| 424 | struct ttm_object_device *tdev; |
| 425 | |
| 426 | /* |
| 427 | * Fencing and IRQs. |
| 428 | */ |
| 429 | |
Thomas Hellstrom | 6bcd8d3c | 2011-09-01 20:18:42 +0000 | [diff] [blame] | 430 | atomic_t marker_seq; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 431 | wait_queue_head_t fence_queue; |
| 432 | wait_queue_head_t fifo_queue; |
Thomas Hellstrom | 4f73a96 | 2011-09-01 20:18:43 +0000 | [diff] [blame] | 433 | int fence_queue_waiters; /* Protected by hw_mutex */ |
Thomas Hellstrom | 57c5ee7 | 2011-10-10 12:23:26 +0200 | [diff] [blame] | 434 | int goal_queue_waiters; /* Protected by hw_mutex */ |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 435 | atomic_t fifo_queue_waiters; |
Thomas Hellstrom | 6bcd8d3c | 2011-09-01 20:18:42 +0000 | [diff] [blame] | 436 | uint32_t last_read_seqno; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 437 | spinlock_t irq_lock; |
Thomas Hellstrom | ae2a104 | 2011-09-01 20:18:44 +0000 | [diff] [blame] | 438 | struct vmw_fence_manager *fman; |
Thomas Hellstrom | 57c5ee7 | 2011-10-10 12:23:26 +0200 | [diff] [blame] | 439 | uint32_t irq_mask; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 440 | |
| 441 | /* |
| 442 | * Device state |
| 443 | */ |
| 444 | |
| 445 | uint32_t traces_state; |
| 446 | uint32_t enable_state; |
| 447 | uint32_t config_done_state; |
| 448 | |
| 449 | /** |
| 450 | * Execbuf |
| 451 | */ |
| 452 | /** |
| 453 | * Protected by the cmdbuf mutex. |
| 454 | */ |
| 455 | |
| 456 | struct vmw_sw_context ctx; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 457 | struct mutex cmdbuf_mutex; |
Thomas Hellstrom | 173fb7d | 2013-10-08 02:32:36 -0700 | [diff] [blame] | 458 | struct mutex binding_mutex; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 459 | |
| 460 | /** |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 461 | * Operating mode. |
| 462 | */ |
| 463 | |
| 464 | bool stealth; |
Thomas Hellstrom | 30c78bb | 2010-10-01 10:21:48 +0200 | [diff] [blame] | 465 | bool enable_fb; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 466 | |
| 467 | /** |
| 468 | * Master management. |
| 469 | */ |
| 470 | |
| 471 | struct vmw_master *active_master; |
| 472 | struct vmw_master fbdev_master; |
Thomas Hellstrom | d9f36a0 | 2010-01-13 22:28:43 +0100 | [diff] [blame] | 473 | struct notifier_block pm_nb; |
Thomas Hellstrom | 094e0fa | 2010-10-05 12:43:00 +0200 | [diff] [blame] | 474 | bool suspended; |
Thomas Hellstrom | 30c78bb | 2010-10-01 10:21:48 +0200 | [diff] [blame] | 475 | |
| 476 | struct mutex release_mutex; |
| 477 | uint32_t num_3d_resources; |
Thomas Hellstrom | e2fa3a7 | 2011-10-04 20:13:30 +0200 | [diff] [blame] | 478 | |
| 479 | /* |
| 480 | * Query processing. These members |
| 481 | * are protected by the cmdbuf mutex. |
| 482 | */ |
| 483 | |
| 484 | struct ttm_buffer_object *dummy_query_bo; |
| 485 | struct ttm_buffer_object *pinned_bo; |
| 486 | uint32_t query_cid; |
Thomas Hellstrom | c0951b7 | 2012-11-20 12:19:35 +0000 | [diff] [blame] | 487 | uint32_t query_cid_valid; |
Thomas Hellstrom | e2fa3a7 | 2011-10-04 20:13:30 +0200 | [diff] [blame] | 488 | bool dummy_query_bo_pinned; |
Thomas Hellstrom | 5bb39e8 | 2011-10-04 20:13:33 +0200 | [diff] [blame] | 489 | |
| 490 | /* |
| 491 | * Surface swapping. The "surface_lru" list is protected by the |
| 492 | * resource lock in order to be able to destroy a surface and take |
| 493 | * it off the lru atomically. "used_memory_size" is currently |
| 494 | * protected by the cmdbuf mutex for simplicity. |
| 495 | */ |
| 496 | |
Thomas Hellstrom | c0951b7 | 2012-11-20 12:19:35 +0000 | [diff] [blame] | 497 | struct list_head res_lru[vmw_res_max]; |
Thomas Hellstrom | 5bb39e8 | 2011-10-04 20:13:33 +0200 | [diff] [blame] | 498 | uint32_t used_memory_size; |
Thomas Hellstrom | d92d985 | 2013-10-24 01:49:26 -0700 | [diff] [blame] | 499 | |
| 500 | /* |
| 501 | * DMA mapping stuff. |
| 502 | */ |
| 503 | enum vmw_dma_map_mode map_mode; |
Thomas Hellstrom | 3530bdc | 2012-11-21 10:49:52 +0100 | [diff] [blame] | 504 | |
| 505 | /* |
| 506 | * Guest Backed stuff |
| 507 | */ |
| 508 | struct ttm_buffer_object *otable_bo; |
| 509 | struct vmw_otable *otables; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 510 | }; |
| 511 | |
Thomas Hellstrom | c0951b7 | 2012-11-20 12:19:35 +0000 | [diff] [blame] | 512 | static inline struct vmw_surface *vmw_res_to_srf(struct vmw_resource *res) |
| 513 | { |
| 514 | return container_of(res, struct vmw_surface, res); |
| 515 | } |
| 516 | |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 517 | static inline struct vmw_private *vmw_priv(struct drm_device *dev) |
| 518 | { |
| 519 | return (struct vmw_private *)dev->dev_private; |
| 520 | } |
| 521 | |
| 522 | static inline struct vmw_fpriv *vmw_fpriv(struct drm_file *file_priv) |
| 523 | { |
| 524 | return (struct vmw_fpriv *)file_priv->driver_priv; |
| 525 | } |
| 526 | |
| 527 | static inline struct vmw_master *vmw_master(struct drm_master *master) |
| 528 | { |
| 529 | return (struct vmw_master *) master->driver_priv; |
| 530 | } |
| 531 | |
| 532 | static inline void vmw_write(struct vmw_private *dev_priv, |
| 533 | unsigned int offset, uint32_t value) |
| 534 | { |
| 535 | outl(offset, dev_priv->io_start + VMWGFX_INDEX_PORT); |
| 536 | outl(value, dev_priv->io_start + VMWGFX_VALUE_PORT); |
| 537 | } |
| 538 | |
| 539 | static inline uint32_t vmw_read(struct vmw_private *dev_priv, |
| 540 | unsigned int offset) |
| 541 | { |
| 542 | uint32_t val; |
| 543 | |
| 544 | outl(offset, dev_priv->io_start + VMWGFX_INDEX_PORT); |
| 545 | val = inl(dev_priv->io_start + VMWGFX_VALUE_PORT); |
| 546 | return val; |
| 547 | } |
| 548 | |
Thomas Hellstrom | 05730b3 | 2011-08-31 07:42:52 +0000 | [diff] [blame] | 549 | int vmw_3d_resource_inc(struct vmw_private *dev_priv, bool unhide_svga); |
| 550 | void vmw_3d_resource_dec(struct vmw_private *dev_priv, bool hide_svga); |
Thomas Hellstrom | 30c78bb | 2010-10-01 10:21:48 +0200 | [diff] [blame] | 551 | |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 552 | /** |
| 553 | * GMR utilities - vmwgfx_gmr.c |
| 554 | */ |
| 555 | |
| 556 | extern int vmw_gmr_bind(struct vmw_private *dev_priv, |
Thomas Hellstrom | d92d985 | 2013-10-24 01:49:26 -0700 | [diff] [blame] | 557 | const struct vmw_sg_table *vsgt, |
Thomas Hellstrom | 135cba0 | 2010-10-26 21:21:47 +0200 | [diff] [blame] | 558 | unsigned long num_pages, |
| 559 | int gmr_id); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 560 | extern void vmw_gmr_unbind(struct vmw_private *dev_priv, int gmr_id); |
| 561 | |
| 562 | /** |
| 563 | * Resource utilities - vmwgfx_resource.c |
| 564 | */ |
Thomas Hellstrom | c0951b7 | 2012-11-20 12:19:35 +0000 | [diff] [blame] | 565 | struct vmw_user_resource_conv; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 566 | |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 567 | extern void vmw_resource_unreference(struct vmw_resource **p_res); |
| 568 | extern struct vmw_resource *vmw_resource_reference(struct vmw_resource *res); |
Thomas Hellstrom | c0951b7 | 2012-11-20 12:19:35 +0000 | [diff] [blame] | 569 | extern int vmw_resource_validate(struct vmw_resource *res); |
| 570 | extern int vmw_resource_reserve(struct vmw_resource *res, bool no_backup); |
| 571 | extern bool vmw_resource_needs_backup(const struct vmw_resource *res); |
Jakob Bornecrantz | 551a669 | 2011-11-28 13:19:11 +0100 | [diff] [blame] | 572 | extern int vmw_user_lookup_handle(struct vmw_private *dev_priv, |
| 573 | struct ttm_object_file *tfile, |
| 574 | uint32_t handle, |
| 575 | struct vmw_surface **out_surf, |
| 576 | struct vmw_dma_buffer **out_buf); |
Thomas Hellstrom | c0951b7 | 2012-11-20 12:19:35 +0000 | [diff] [blame] | 577 | extern int vmw_user_resource_lookup_handle( |
| 578 | struct vmw_private *dev_priv, |
| 579 | struct ttm_object_file *tfile, |
| 580 | uint32_t handle, |
| 581 | const struct vmw_user_resource_conv *converter, |
| 582 | struct vmw_resource **p_res); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 583 | extern void vmw_dmabuf_bo_free(struct ttm_buffer_object *bo); |
| 584 | extern int vmw_dmabuf_init(struct vmw_private *dev_priv, |
| 585 | struct vmw_dma_buffer *vmw_bo, |
| 586 | size_t size, struct ttm_placement *placement, |
| 587 | bool interuptable, |
| 588 | void (*bo_free) (struct ttm_buffer_object *bo)); |
Thomas Hellstrom | d08a9b9 | 2012-11-21 16:04:18 +0100 | [diff] [blame] | 589 | extern int vmw_user_dmabuf_verify_access(struct ttm_buffer_object *bo, |
| 590 | struct ttm_object_file *tfile); |
Thomas Hellstrom | a97e219 | 2012-11-21 11:45:13 +0100 | [diff] [blame] | 591 | extern int vmw_user_dmabuf_alloc(struct vmw_private *dev_priv, |
| 592 | struct ttm_object_file *tfile, |
| 593 | uint32_t size, |
| 594 | bool shareable, |
| 595 | uint32_t *handle, |
| 596 | struct vmw_dma_buffer **p_dma_buf); |
| 597 | extern int vmw_user_dmabuf_reference(struct ttm_object_file *tfile, |
| 598 | struct vmw_dma_buffer *dma_buf, |
| 599 | uint32_t *handle); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 600 | extern int vmw_dmabuf_alloc_ioctl(struct drm_device *dev, void *data, |
| 601 | struct drm_file *file_priv); |
| 602 | extern int vmw_dmabuf_unref_ioctl(struct drm_device *dev, void *data, |
| 603 | struct drm_file *file_priv); |
Thomas Hellstrom | 1d7a5cb | 2012-11-21 12:32:19 +0100 | [diff] [blame] | 604 | extern int vmw_user_dmabuf_synccpu_ioctl(struct drm_device *dev, void *data, |
| 605 | struct drm_file *file_priv); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 606 | extern uint32_t vmw_dmabuf_validate_node(struct ttm_buffer_object *bo, |
| 607 | uint32_t cur_validate_node); |
| 608 | extern void vmw_dmabuf_validate_clear(struct ttm_buffer_object *bo); |
| 609 | extern int vmw_user_dmabuf_lookup(struct ttm_object_file *tfile, |
| 610 | uint32_t id, struct vmw_dma_buffer **out); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 611 | extern int vmw_stream_claim_ioctl(struct drm_device *dev, void *data, |
| 612 | struct drm_file *file_priv); |
| 613 | extern int vmw_stream_unref_ioctl(struct drm_device *dev, void *data, |
| 614 | struct drm_file *file_priv); |
| 615 | extern int vmw_user_stream_lookup(struct vmw_private *dev_priv, |
| 616 | struct ttm_object_file *tfile, |
| 617 | uint32_t *inout_id, |
| 618 | struct vmw_resource **out); |
Thomas Hellstrom | c0951b7 | 2012-11-20 12:19:35 +0000 | [diff] [blame] | 619 | extern void vmw_resource_unreserve(struct vmw_resource *res, |
| 620 | struct vmw_dma_buffer *new_backup, |
| 621 | unsigned long new_backup_offset); |
| 622 | extern void vmw_resource_move_notify(struct ttm_buffer_object *bo, |
| 623 | struct ttm_mem_reg *mem); |
| 624 | extern void vmw_fence_single_bo(struct ttm_buffer_object *bo, |
| 625 | struct vmw_fence_obj *fence); |
| 626 | extern void vmw_resource_evict_all(struct vmw_private *dev_priv); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 627 | |
Jakob Bornecrantz | d991ef0 | 2011-10-04 20:13:21 +0200 | [diff] [blame] | 628 | /** |
| 629 | * DMA buffer helper routines - vmwgfx_dmabuf.c |
| 630 | */ |
| 631 | extern int vmw_dmabuf_to_placement(struct vmw_private *vmw_priv, |
| 632 | struct vmw_dma_buffer *bo, |
| 633 | struct ttm_placement *placement, |
| 634 | bool interruptible); |
| 635 | extern int vmw_dmabuf_to_vram(struct vmw_private *dev_priv, |
| 636 | struct vmw_dma_buffer *buf, |
| 637 | bool pin, bool interruptible); |
| 638 | extern int vmw_dmabuf_to_vram_or_gmr(struct vmw_private *dev_priv, |
| 639 | struct vmw_dma_buffer *buf, |
| 640 | bool pin, bool interruptible); |
| 641 | extern int vmw_dmabuf_to_start_of_vram(struct vmw_private *vmw_priv, |
| 642 | struct vmw_dma_buffer *bo, |
| 643 | bool pin, bool interruptible); |
| 644 | extern int vmw_dmabuf_unpin(struct vmw_private *vmw_priv, |
| 645 | struct vmw_dma_buffer *bo, |
| 646 | bool interruptible); |
Thomas Hellstrom | b37a6b9 | 2011-10-04 20:13:28 +0200 | [diff] [blame] | 647 | extern void vmw_bo_get_guest_ptr(const struct ttm_buffer_object *buf, |
| 648 | SVGAGuestPtr *ptr); |
Thomas Hellstrom | e2fa3a7 | 2011-10-04 20:13:30 +0200 | [diff] [blame] | 649 | extern void vmw_bo_pin(struct ttm_buffer_object *bo, bool pin); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 650 | |
| 651 | /** |
| 652 | * Misc Ioctl functionality - vmwgfx_ioctl.c |
| 653 | */ |
| 654 | |
| 655 | extern int vmw_getparam_ioctl(struct drm_device *dev, void *data, |
| 656 | struct drm_file *file_priv); |
Thomas Hellstrom | f63f6a5 | 2011-09-01 20:18:41 +0000 | [diff] [blame] | 657 | extern int vmw_get_cap_3d_ioctl(struct drm_device *dev, void *data, |
| 658 | struct drm_file *file_priv); |
Jakob Bornecrantz | 2fcd5a7 | 2011-10-04 20:13:26 +0200 | [diff] [blame] | 659 | extern int vmw_present_ioctl(struct drm_device *dev, void *data, |
| 660 | struct drm_file *file_priv); |
| 661 | extern int vmw_present_readback_ioctl(struct drm_device *dev, void *data, |
| 662 | struct drm_file *file_priv); |
Thomas Hellstrom | 5438ae8 | 2011-10-10 12:23:27 +0200 | [diff] [blame] | 663 | extern unsigned int vmw_fops_poll(struct file *filp, |
| 664 | struct poll_table_struct *wait); |
| 665 | extern ssize_t vmw_fops_read(struct file *filp, char __user *buffer, |
| 666 | size_t count, loff_t *offset); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 667 | |
| 668 | /** |
| 669 | * Fifo utilities - vmwgfx_fifo.c |
| 670 | */ |
| 671 | |
| 672 | extern int vmw_fifo_init(struct vmw_private *dev_priv, |
| 673 | struct vmw_fifo_state *fifo); |
| 674 | extern void vmw_fifo_release(struct vmw_private *dev_priv, |
| 675 | struct vmw_fifo_state *fifo); |
| 676 | extern void *vmw_fifo_reserve(struct vmw_private *dev_priv, uint32_t bytes); |
| 677 | extern void vmw_fifo_commit(struct vmw_private *dev_priv, uint32_t bytes); |
| 678 | extern int vmw_fifo_send_fence(struct vmw_private *dev_priv, |
Thomas Hellstrom | 6bcd8d3c | 2011-09-01 20:18:42 +0000 | [diff] [blame] | 679 | uint32_t *seqno); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 680 | extern void vmw_fifo_ping_host(struct vmw_private *dev_priv, uint32_t reason); |
Jakob Bornecrantz | 8e19a95 | 2010-01-30 03:38:06 +0000 | [diff] [blame] | 681 | extern bool vmw_fifo_have_3d(struct vmw_private *dev_priv); |
Jakob Bornecrantz | d7e1958 | 2010-05-28 11:21:59 +0200 | [diff] [blame] | 682 | extern bool vmw_fifo_have_pitchlock(struct vmw_private *dev_priv); |
Thomas Hellstrom | e2fa3a7 | 2011-10-04 20:13:30 +0200 | [diff] [blame] | 683 | extern int vmw_fifo_emit_dummy_query(struct vmw_private *dev_priv, |
| 684 | uint32_t cid); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 685 | |
| 686 | /** |
| 687 | * TTM glue - vmwgfx_ttm_glue.c |
| 688 | */ |
| 689 | |
| 690 | extern int vmw_ttm_global_init(struct vmw_private *dev_priv); |
| 691 | extern void vmw_ttm_global_release(struct vmw_private *dev_priv); |
| 692 | extern int vmw_mmap(struct file *filp, struct vm_area_struct *vma); |
| 693 | |
| 694 | /** |
| 695 | * TTM buffer object driver - vmwgfx_buffer.c |
| 696 | */ |
| 697 | |
Thomas Hellstrom | 308d17e | 2013-11-28 01:46:56 -0800 | [diff] [blame] | 698 | extern const size_t vmw_tt_size; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 699 | extern struct ttm_placement vmw_vram_placement; |
| 700 | extern struct ttm_placement vmw_vram_ne_placement; |
Thomas Hellstrom | 8ba5152 | 2010-01-16 16:05:05 +0100 | [diff] [blame] | 701 | extern struct ttm_placement vmw_vram_sys_placement; |
Thomas Hellstrom | 135cba0 | 2010-10-26 21:21:47 +0200 | [diff] [blame] | 702 | extern struct ttm_placement vmw_vram_gmr_placement; |
Jakob Bornecrantz | d991ef0 | 2011-10-04 20:13:21 +0200 | [diff] [blame] | 703 | extern struct ttm_placement vmw_vram_gmr_ne_placement; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 704 | extern struct ttm_placement vmw_sys_placement; |
Thomas Hellstrom | 3530bdc | 2012-11-21 10:49:52 +0100 | [diff] [blame] | 705 | extern struct ttm_placement vmw_sys_ne_placement; |
Jakob Bornecrantz | d991ef0 | 2011-10-04 20:13:21 +0200 | [diff] [blame] | 706 | extern struct ttm_placement vmw_evictable_placement; |
Thomas Hellstrom | 5bb39e8 | 2011-10-04 20:13:33 +0200 | [diff] [blame] | 707 | extern struct ttm_placement vmw_srf_placement; |
Thomas Hellstrom | 96c5f0d | 2012-11-21 11:19:53 +0100 | [diff] [blame] | 708 | extern struct ttm_placement vmw_mob_placement; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 709 | extern struct ttm_bo_driver vmw_bo_driver; |
| 710 | extern int vmw_dma_quiescent(struct drm_device *dev); |
Thomas Hellstrom | 0fd53cf | 2013-10-24 13:27:38 -0700 | [diff] [blame^] | 711 | extern int vmw_bo_map_dma(struct ttm_buffer_object *bo); |
| 712 | extern void vmw_bo_unmap_dma(struct ttm_buffer_object *bo); |
| 713 | extern const struct vmw_sg_table * |
| 714 | vmw_bo_sg_table(struct ttm_buffer_object *bo); |
Thomas Hellstrom | d92d985 | 2013-10-24 01:49:26 -0700 | [diff] [blame] | 715 | extern void vmw_piter_start(struct vmw_piter *viter, |
| 716 | const struct vmw_sg_table *vsgt, |
| 717 | unsigned long p_offs); |
| 718 | |
| 719 | /** |
| 720 | * vmw_piter_next - Advance the iterator one page. |
| 721 | * |
| 722 | * @viter: Pointer to the iterator to advance. |
| 723 | * |
| 724 | * Returns false if past the list of pages, true otherwise. |
| 725 | */ |
| 726 | static inline bool vmw_piter_next(struct vmw_piter *viter) |
| 727 | { |
| 728 | return viter->next(viter); |
| 729 | } |
| 730 | |
| 731 | /** |
| 732 | * vmw_piter_dma_addr - Return the DMA address of the current page. |
| 733 | * |
| 734 | * @viter: Pointer to the iterator |
| 735 | * |
| 736 | * Returns the DMA address of the page pointed to by @viter. |
| 737 | */ |
| 738 | static inline dma_addr_t vmw_piter_dma_addr(struct vmw_piter *viter) |
| 739 | { |
| 740 | return viter->dma_address(viter); |
| 741 | } |
| 742 | |
| 743 | /** |
| 744 | * vmw_piter_page - Return a pointer to the current page. |
| 745 | * |
| 746 | * @viter: Pointer to the iterator |
| 747 | * |
| 748 | * Returns the DMA address of the page pointed to by @viter. |
| 749 | */ |
| 750 | static inline struct page *vmw_piter_page(struct vmw_piter *viter) |
| 751 | { |
| 752 | return viter->page(viter); |
| 753 | } |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 754 | |
| 755 | /** |
| 756 | * Command submission - vmwgfx_execbuf.c |
| 757 | */ |
| 758 | |
| 759 | extern int vmw_execbuf_ioctl(struct drm_device *dev, void *data, |
| 760 | struct drm_file *file_priv); |
Thomas Hellstrom | 922ade0 | 2011-10-04 20:13:17 +0200 | [diff] [blame] | 761 | extern int vmw_execbuf_process(struct drm_file *file_priv, |
| 762 | struct vmw_private *dev_priv, |
| 763 | void __user *user_commands, |
| 764 | void *kernel_commands, |
| 765 | uint32_t command_size, |
| 766 | uint64_t throttle_us, |
| 767 | struct drm_vmw_fence_rep __user |
Jakob Bornecrantz | bb1bd2f | 2012-02-09 16:56:43 +0100 | [diff] [blame] | 768 | *user_fence_rep, |
| 769 | struct vmw_fence_obj **out_fence); |
Thomas Hellstrom | c0951b7 | 2012-11-20 12:19:35 +0000 | [diff] [blame] | 770 | extern void __vmw_execbuf_release_pinned_bo(struct vmw_private *dev_priv, |
| 771 | struct vmw_fence_obj *fence); |
| 772 | extern void vmw_execbuf_release_pinned_bo(struct vmw_private *dev_priv); |
Thomas Hellstrom | e2fa3a7 | 2011-10-04 20:13:30 +0200 | [diff] [blame] | 773 | |
Thomas Hellstrom | 5bb39e8 | 2011-10-04 20:13:33 +0200 | [diff] [blame] | 774 | extern int vmw_execbuf_fence_commands(struct drm_file *file_priv, |
| 775 | struct vmw_private *dev_priv, |
| 776 | struct vmw_fence_obj **p_fence, |
| 777 | uint32_t *p_handle); |
Thomas Hellstrom | 57c5ee7 | 2011-10-10 12:23:26 +0200 | [diff] [blame] | 778 | extern void vmw_execbuf_copy_fence_user(struct vmw_private *dev_priv, |
| 779 | struct vmw_fpriv *vmw_fp, |
| 780 | int ret, |
| 781 | struct drm_vmw_fence_rep __user |
| 782 | *user_fence_rep, |
| 783 | struct vmw_fence_obj *fence, |
| 784 | uint32_t fence_handle); |
Thomas Hellstrom | 5bb39e8 | 2011-10-04 20:13:33 +0200 | [diff] [blame] | 785 | |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 786 | /** |
| 787 | * IRQs and wating - vmwgfx_irq.c |
| 788 | */ |
| 789 | |
Daniel Vetter | e9f0d76 | 2013-12-11 11:34:42 +0100 | [diff] [blame] | 790 | extern irqreturn_t vmw_irq_handler(int irq, void *arg); |
Thomas Hellstrom | 6bcd8d3c | 2011-09-01 20:18:42 +0000 | [diff] [blame] | 791 | extern int vmw_wait_seqno(struct vmw_private *dev_priv, bool lazy, |
| 792 | uint32_t seqno, bool interruptible, |
| 793 | unsigned long timeout); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 794 | extern void vmw_irq_preinstall(struct drm_device *dev); |
| 795 | extern int vmw_irq_postinstall(struct drm_device *dev); |
| 796 | extern void vmw_irq_uninstall(struct drm_device *dev); |
Thomas Hellstrom | 6bcd8d3c | 2011-09-01 20:18:42 +0000 | [diff] [blame] | 797 | extern bool vmw_seqno_passed(struct vmw_private *dev_priv, |
| 798 | uint32_t seqno); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 799 | extern int vmw_fallback_wait(struct vmw_private *dev_priv, |
| 800 | bool lazy, |
| 801 | bool fifo_idle, |
Thomas Hellstrom | 6bcd8d3c | 2011-09-01 20:18:42 +0000 | [diff] [blame] | 802 | uint32_t seqno, |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 803 | bool interruptible, |
| 804 | unsigned long timeout); |
Thomas Hellstrom | 6bcd8d3c | 2011-09-01 20:18:42 +0000 | [diff] [blame] | 805 | extern void vmw_update_seqno(struct vmw_private *dev_priv, |
Thomas Hellstrom | 1925d45 | 2010-05-28 11:21:57 +0200 | [diff] [blame] | 806 | struct vmw_fifo_state *fifo_state); |
Thomas Hellstrom | ae2a104 | 2011-09-01 20:18:44 +0000 | [diff] [blame] | 807 | extern void vmw_seqno_waiter_add(struct vmw_private *dev_priv); |
| 808 | extern void vmw_seqno_waiter_remove(struct vmw_private *dev_priv); |
Thomas Hellstrom | 57c5ee7 | 2011-10-10 12:23:26 +0200 | [diff] [blame] | 809 | extern void vmw_goal_waiter_add(struct vmw_private *dev_priv); |
| 810 | extern void vmw_goal_waiter_remove(struct vmw_private *dev_priv); |
Thomas Hellstrom | 1925d45 | 2010-05-28 11:21:57 +0200 | [diff] [blame] | 811 | |
| 812 | /** |
Thomas Hellstrom | 6bcd8d3c | 2011-09-01 20:18:42 +0000 | [diff] [blame] | 813 | * Rudimentary fence-like objects currently used only for throttling - |
| 814 | * vmwgfx_marker.c |
Thomas Hellstrom | 1925d45 | 2010-05-28 11:21:57 +0200 | [diff] [blame] | 815 | */ |
| 816 | |
Thomas Hellstrom | 6bcd8d3c | 2011-09-01 20:18:42 +0000 | [diff] [blame] | 817 | extern void vmw_marker_queue_init(struct vmw_marker_queue *queue); |
| 818 | extern void vmw_marker_queue_takedown(struct vmw_marker_queue *queue); |
| 819 | extern int vmw_marker_push(struct vmw_marker_queue *queue, |
| 820 | uint32_t seqno); |
| 821 | extern int vmw_marker_pull(struct vmw_marker_queue *queue, |
| 822 | uint32_t signaled_seqno); |
Thomas Hellstrom | 1925d45 | 2010-05-28 11:21:57 +0200 | [diff] [blame] | 823 | extern int vmw_wait_lag(struct vmw_private *dev_priv, |
Thomas Hellstrom | 6bcd8d3c | 2011-09-01 20:18:42 +0000 | [diff] [blame] | 824 | struct vmw_marker_queue *queue, uint32_t us); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 825 | |
| 826 | /** |
| 827 | * Kernel framebuffer - vmwgfx_fb.c |
| 828 | */ |
| 829 | |
| 830 | int vmw_fb_init(struct vmw_private *vmw_priv); |
| 831 | int vmw_fb_close(struct vmw_private *dev_priv); |
| 832 | int vmw_fb_off(struct vmw_private *vmw_priv); |
| 833 | int vmw_fb_on(struct vmw_private *vmw_priv); |
| 834 | |
| 835 | /** |
| 836 | * Kernel modesetting - vmwgfx_kms.c |
| 837 | */ |
| 838 | |
| 839 | int vmw_kms_init(struct vmw_private *dev_priv); |
| 840 | int vmw_kms_close(struct vmw_private *dev_priv); |
| 841 | int vmw_kms_save_vga(struct vmw_private *vmw_priv); |
| 842 | int vmw_kms_restore_vga(struct vmw_private *vmw_priv); |
| 843 | int vmw_kms_cursor_bypass_ioctl(struct drm_device *dev, void *data, |
| 844 | struct drm_file *file_priv); |
| 845 | void vmw_kms_cursor_post_execbuf(struct vmw_private *dev_priv); |
| 846 | void vmw_kms_cursor_snoop(struct vmw_surface *srf, |
| 847 | struct ttm_object_file *tfile, |
| 848 | struct ttm_buffer_object *bo, |
| 849 | SVGA3dCmdHeader *header); |
Michel Dänzer | 0bef23f | 2011-08-31 07:42:50 +0000 | [diff] [blame] | 850 | int vmw_kms_write_svga(struct vmw_private *vmw_priv, |
| 851 | unsigned width, unsigned height, unsigned pitch, |
| 852 | unsigned bpp, unsigned depth); |
Thomas Hellstrom | 3a939a5 | 2010-10-05 12:43:03 +0200 | [diff] [blame] | 853 | void vmw_kms_idle_workqueues(struct vmw_master *vmaster); |
Thomas Hellstrom | e133e73 | 2010-10-05 12:43:04 +0200 | [diff] [blame] | 854 | bool vmw_kms_validate_mode_vram(struct vmw_private *dev_priv, |
| 855 | uint32_t pitch, |
| 856 | uint32_t height); |
Thomas Hellstrom | 7a1c2f6 | 2010-10-01 10:21:49 +0200 | [diff] [blame] | 857 | u32 vmw_get_vblank_counter(struct drm_device *dev, int crtc); |
Jakob Bornecrantz | 1c482ab | 2011-10-17 11:59:45 +0200 | [diff] [blame] | 858 | int vmw_enable_vblank(struct drm_device *dev, int crtc); |
| 859 | void vmw_disable_vblank(struct drm_device *dev, int crtc); |
Jakob Bornecrantz | 2fcd5a7 | 2011-10-04 20:13:26 +0200 | [diff] [blame] | 860 | int vmw_kms_present(struct vmw_private *dev_priv, |
| 861 | struct drm_file *file_priv, |
| 862 | struct vmw_framebuffer *vfb, |
| 863 | struct vmw_surface *surface, |
| 864 | uint32_t sid, int32_t destX, int32_t destY, |
| 865 | struct drm_vmw_rect *clips, |
| 866 | uint32_t num_clips); |
| 867 | int vmw_kms_readback(struct vmw_private *dev_priv, |
| 868 | struct drm_file *file_priv, |
| 869 | struct vmw_framebuffer *vfb, |
| 870 | struct drm_vmw_fence_rep __user *user_fence_rep, |
| 871 | struct drm_vmw_rect *clips, |
| 872 | uint32_t num_clips); |
Thomas Hellstrom | cd2b89e | 2011-10-25 23:35:53 +0200 | [diff] [blame] | 873 | int vmw_kms_update_layout_ioctl(struct drm_device *dev, void *data, |
| 874 | struct drm_file *file_priv); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 875 | |
Dave Airlie | 5e1782d | 2012-08-28 01:53:54 +0000 | [diff] [blame] | 876 | int vmw_dumb_create(struct drm_file *file_priv, |
| 877 | struct drm_device *dev, |
| 878 | struct drm_mode_create_dumb *args); |
| 879 | |
| 880 | int vmw_dumb_map_offset(struct drm_file *file_priv, |
| 881 | struct drm_device *dev, uint32_t handle, |
| 882 | uint64_t *offset); |
| 883 | int vmw_dumb_destroy(struct drm_file *file_priv, |
| 884 | struct drm_device *dev, |
| 885 | uint32_t handle); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 886 | /** |
| 887 | * Overlay control - vmwgfx_overlay.c |
| 888 | */ |
| 889 | |
| 890 | int vmw_overlay_init(struct vmw_private *dev_priv); |
| 891 | int vmw_overlay_close(struct vmw_private *dev_priv); |
| 892 | int vmw_overlay_ioctl(struct drm_device *dev, void *data, |
| 893 | struct drm_file *file_priv); |
| 894 | int vmw_overlay_stop_all(struct vmw_private *dev_priv); |
| 895 | int vmw_overlay_resume_all(struct vmw_private *dev_priv); |
| 896 | int vmw_overlay_pause_all(struct vmw_private *dev_priv); |
| 897 | int vmw_overlay_claim(struct vmw_private *dev_priv, uint32_t *out); |
| 898 | int vmw_overlay_unref(struct vmw_private *dev_priv, uint32_t stream_id); |
| 899 | int vmw_overlay_num_overlays(struct vmw_private *dev_priv); |
| 900 | int vmw_overlay_num_free_overlays(struct vmw_private *dev_priv); |
| 901 | |
| 902 | /** |
Thomas Hellstrom | 135cba0 | 2010-10-26 21:21:47 +0200 | [diff] [blame] | 903 | * GMR Id manager |
| 904 | */ |
| 905 | |
| 906 | extern const struct ttm_mem_type_manager_func vmw_gmrid_manager_func; |
| 907 | |
| 908 | /** |
Thomas Hellstrom | 69977ff | 2013-11-13 01:50:46 -0800 | [diff] [blame] | 909 | * Prime - vmwgfx_prime.c |
| 910 | */ |
| 911 | |
| 912 | extern const struct dma_buf_ops vmw_prime_dmabuf_ops; |
| 913 | extern int vmw_prime_fd_to_handle(struct drm_device *dev, |
| 914 | struct drm_file *file_priv, |
| 915 | int fd, u32 *handle); |
| 916 | extern int vmw_prime_handle_to_fd(struct drm_device *dev, |
| 917 | struct drm_file *file_priv, |
| 918 | uint32_t handle, uint32_t flags, |
| 919 | int *prime_fd); |
| 920 | |
Thomas Hellstrom | 3530bdc | 2012-11-21 10:49:52 +0100 | [diff] [blame] | 921 | /* |
| 922 | * MemoryOBject management - vmwgfx_mob.c |
| 923 | */ |
| 924 | struct vmw_mob; |
| 925 | extern int vmw_mob_bind(struct vmw_private *dev_priv, struct vmw_mob *mob, |
Thomas Hellstrom | 0fd53cf | 2013-10-24 13:27:38 -0700 | [diff] [blame^] | 926 | const struct vmw_sg_table *vsgt, |
| 927 | unsigned long num_data_pages, int32_t mob_id); |
Thomas Hellstrom | 3530bdc | 2012-11-21 10:49:52 +0100 | [diff] [blame] | 928 | extern void vmw_mob_unbind(struct vmw_private *dev_priv, |
| 929 | struct vmw_mob *mob); |
| 930 | extern void vmw_mob_destroy(struct vmw_mob *mob); |
| 931 | extern struct vmw_mob *vmw_mob_create(unsigned long data_pages); |
| 932 | extern int vmw_otables_setup(struct vmw_private *dev_priv); |
| 933 | extern void vmw_otables_takedown(struct vmw_private *dev_priv); |
Thomas Hellstrom | 69977ff | 2013-11-13 01:50:46 -0800 | [diff] [blame] | 934 | |
Thomas Hellstrom | c74c162 | 2012-11-21 12:10:26 +0100 | [diff] [blame] | 935 | /* |
Thomas Hellstrom | 7086d09 | 2012-11-21 12:20:53 +0100 | [diff] [blame] | 936 | * Context management - vmwgfx_context.c |
| 937 | */ |
| 938 | |
| 939 | extern const struct vmw_user_resource_conv *user_context_converter; |
| 940 | |
| 941 | extern struct vmw_resource *vmw_context_alloc(struct vmw_private *dev_priv); |
| 942 | |
| 943 | extern int vmw_context_check(struct vmw_private *dev_priv, |
| 944 | struct ttm_object_file *tfile, |
| 945 | int id, |
| 946 | struct vmw_resource **p_res); |
| 947 | extern int vmw_context_define_ioctl(struct drm_device *dev, void *data, |
| 948 | struct drm_file *file_priv); |
| 949 | extern int vmw_context_destroy_ioctl(struct drm_device *dev, void *data, |
| 950 | struct drm_file *file_priv); |
Thomas Hellstrom | b5c3b1a6 | 2013-10-08 02:27:17 -0700 | [diff] [blame] | 951 | extern int vmw_context_binding_add(struct vmw_ctx_binding_state *cbs, |
| 952 | const struct vmw_ctx_bindinfo *ci); |
Thomas Hellstrom | 173fb7d | 2013-10-08 02:32:36 -0700 | [diff] [blame] | 953 | extern void |
| 954 | vmw_context_binding_state_transfer(struct vmw_resource *res, |
| 955 | struct vmw_ctx_binding_state *cbs); |
| 956 | extern void vmw_context_binding_res_list_kill(struct list_head *head); |
Thomas Hellstrom | 7086d09 | 2012-11-21 12:20:53 +0100 | [diff] [blame] | 957 | |
| 958 | /* |
| 959 | * Surface management - vmwgfx_surface.c |
| 960 | */ |
| 961 | |
| 962 | extern const struct vmw_user_resource_conv *user_surface_converter; |
| 963 | |
| 964 | extern void vmw_surface_res_free(struct vmw_resource *res); |
| 965 | extern int vmw_surface_destroy_ioctl(struct drm_device *dev, void *data, |
| 966 | struct drm_file *file_priv); |
| 967 | extern int vmw_surface_define_ioctl(struct drm_device *dev, void *data, |
| 968 | struct drm_file *file_priv); |
| 969 | extern int vmw_surface_reference_ioctl(struct drm_device *dev, void *data, |
| 970 | struct drm_file *file_priv); |
| 971 | extern int vmw_gb_surface_define_ioctl(struct drm_device *dev, void *data, |
| 972 | struct drm_file *file_priv); |
| 973 | extern int vmw_gb_surface_reference_ioctl(struct drm_device *dev, void *data, |
| 974 | struct drm_file *file_priv); |
| 975 | extern int vmw_surface_check(struct vmw_private *dev_priv, |
| 976 | struct ttm_object_file *tfile, |
| 977 | uint32_t handle, int *id); |
| 978 | extern int vmw_surface_validate(struct vmw_private *dev_priv, |
| 979 | struct vmw_surface *srf); |
| 980 | |
| 981 | /* |
Thomas Hellstrom | c74c162 | 2012-11-21 12:10:26 +0100 | [diff] [blame] | 982 | * Shader management - vmwgfx_shader.c |
| 983 | */ |
| 984 | |
Thomas Hellstrom | 7086d09 | 2012-11-21 12:20:53 +0100 | [diff] [blame] | 985 | extern const struct vmw_user_resource_conv *user_shader_converter; |
| 986 | |
Thomas Hellstrom | c74c162 | 2012-11-21 12:10:26 +0100 | [diff] [blame] | 987 | extern int vmw_shader_define_ioctl(struct drm_device *dev, void *data, |
| 988 | struct drm_file *file_priv); |
| 989 | extern int vmw_shader_destroy_ioctl(struct drm_device *dev, void *data, |
| 990 | struct drm_file *file_priv); |
| 991 | |
Thomas Hellstrom | 69977ff | 2013-11-13 01:50:46 -0800 | [diff] [blame] | 992 | /** |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 993 | * Inline helper functions |
| 994 | */ |
| 995 | |
| 996 | static inline void vmw_surface_unreference(struct vmw_surface **srf) |
| 997 | { |
| 998 | struct vmw_surface *tmp_srf = *srf; |
| 999 | struct vmw_resource *res = &tmp_srf->res; |
| 1000 | *srf = NULL; |
| 1001 | |
| 1002 | vmw_resource_unreference(&res); |
| 1003 | } |
| 1004 | |
| 1005 | static inline struct vmw_surface *vmw_surface_reference(struct vmw_surface *srf) |
| 1006 | { |
| 1007 | (void) vmw_resource_reference(&srf->res); |
| 1008 | return srf; |
| 1009 | } |
| 1010 | |
| 1011 | static inline void vmw_dmabuf_unreference(struct vmw_dma_buffer **buf) |
| 1012 | { |
| 1013 | struct vmw_dma_buffer *tmp_buf = *buf; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 1014 | |
Thomas Hellstrom | bf6f036 | 2012-11-09 12:26:15 +0000 | [diff] [blame] | 1015 | *buf = NULL; |
| 1016 | if (tmp_buf != NULL) { |
| 1017 | struct ttm_buffer_object *bo = &tmp_buf->base; |
| 1018 | |
| 1019 | ttm_bo_unref(&bo); |
| 1020 | } |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 1021 | } |
| 1022 | |
| 1023 | static inline struct vmw_dma_buffer *vmw_dmabuf_reference(struct vmw_dma_buffer *buf) |
| 1024 | { |
| 1025 | if (ttm_bo_reference(&buf->base)) |
| 1026 | return buf; |
| 1027 | return NULL; |
| 1028 | } |
| 1029 | |
Thomas Hellstrom | ae2a104 | 2011-09-01 20:18:44 +0000 | [diff] [blame] | 1030 | static inline struct ttm_mem_global *vmw_mem_glob(struct vmw_private *dev_priv) |
| 1031 | { |
| 1032 | return (struct ttm_mem_global *) dev_priv->mem_global_ref.object; |
| 1033 | } |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 1034 | #endif |