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" |
| 32 | #include "drmP.h" |
| 33 | #include "vmwgfx_drm.h" |
| 34 | #include "drm_hashtab.h" |
Thomas Hellstrom | d9f36a0 | 2010-01-13 22:28:43 +0100 | [diff] [blame] | 35 | #include "linux/suspend.h" |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 36 | #include "ttm/ttm_bo_driver.h" |
| 37 | #include "ttm/ttm_object.h" |
| 38 | #include "ttm/ttm_lock.h" |
| 39 | #include "ttm/ttm_execbuf_util.h" |
| 40 | #include "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 | 2ae7b03 | 2011-09-01 20:18:45 +0000 | [diff] [blame] | 43 | #define VMWGFX_DRIVER_DATE "20110901" |
| 44 | #define VMWGFX_DRIVER_MAJOR 2 |
| 45 | #define VMWGFX_DRIVER_MINOR 0 |
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 | 135cba0 | 2010-10-26 21:21:47 +0200 | [diff] [blame] | 54 | #define VMW_PL_GMR TTM_PL_PRIV0 |
| 55 | #define VMW_PL_FLAG_GMR TTM_PL_FLAG_PRIV0 |
| 56 | |
Thomas Hellstrom | ae2a104 | 2011-09-01 20:18:44 +0000 | [diff] [blame] | 57 | #define VMW_RES_CONTEXT ttm_driver_type0 |
| 58 | #define VMW_RES_SURFACE ttm_driver_type1 |
| 59 | #define VMW_RES_STREAM ttm_driver_type2 |
| 60 | #define VMW_RES_FENCE ttm_driver_type3 |
| 61 | |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 62 | struct vmw_fpriv { |
| 63 | struct drm_master *locked_master; |
| 64 | struct ttm_object_file *tfile; |
| 65 | }; |
| 66 | |
| 67 | struct vmw_dma_buffer { |
| 68 | struct ttm_buffer_object base; |
| 69 | struct list_head validate_list; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 70 | bool gmr_bound; |
| 71 | uint32_t cur_validate_node; |
| 72 | bool on_validate_list; |
| 73 | }; |
| 74 | |
| 75 | struct vmw_resource { |
| 76 | struct kref kref; |
| 77 | struct vmw_private *dev_priv; |
| 78 | struct idr *idr; |
| 79 | int id; |
| 80 | enum ttm_object_type res_type; |
| 81 | bool avail; |
| 82 | void (*hw_destroy) (struct vmw_resource *res); |
| 83 | void (*res_free) (struct vmw_resource *res); |
Thomas Hellstrom | be38ab6 | 2011-08-31 07:42:54 +0000 | [diff] [blame] | 84 | bool on_validate_list; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 85 | /* TODO is a generic snooper needed? */ |
| 86 | #if 0 |
| 87 | void (*snoop)(struct vmw_resource *res, |
| 88 | struct ttm_object_file *tfile, |
| 89 | SVGA3dCmdHeader *header); |
| 90 | void *snoop_priv; |
| 91 | #endif |
| 92 | }; |
| 93 | |
| 94 | struct vmw_cursor_snooper { |
| 95 | struct drm_crtc *crtc; |
| 96 | size_t age; |
| 97 | uint32_t *image; |
| 98 | }; |
| 99 | |
Jakob Bornecrantz | 2fcd5a7 | 2011-10-04 20:13:26 +0200 | [diff] [blame] | 100 | struct vmw_framebuffer; |
| 101 | |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 102 | struct vmw_surface { |
| 103 | struct vmw_resource res; |
| 104 | uint32_t flags; |
| 105 | uint32_t format; |
| 106 | uint32_t mip_levels[DRM_VMW_MAX_SURFACE_FACES]; |
| 107 | struct drm_vmw_size *sizes; |
| 108 | uint32_t num_sizes; |
| 109 | |
Jakob Bornecrantz | 5ffdb65 | 2010-01-30 03:38:08 +0000 | [diff] [blame] | 110 | bool scanout; |
| 111 | |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 112 | /* TODO so far just a extra pointer */ |
| 113 | struct vmw_cursor_snooper snooper; |
| 114 | }; |
| 115 | |
Thomas Hellstrom | 6bcd8d3c | 2011-09-01 20:18:42 +0000 | [diff] [blame] | 116 | struct vmw_marker_queue { |
Thomas Hellstrom | 1925d45 | 2010-05-28 11:21:57 +0200 | [diff] [blame] | 117 | struct list_head head; |
| 118 | struct timespec lag; |
| 119 | struct timespec lag_time; |
| 120 | spinlock_t lock; |
| 121 | }; |
| 122 | |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 123 | struct vmw_fifo_state { |
| 124 | unsigned long reserved_size; |
| 125 | __le32 *dynamic_buffer; |
| 126 | __le32 *static_buffer; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 127 | unsigned long static_buffer_size; |
| 128 | bool using_bounce_buffer; |
| 129 | uint32_t capabilities; |
Thomas Hellstrom | 85b9e48 | 2010-02-08 09:57:25 +0000 | [diff] [blame] | 130 | struct mutex fifo_mutex; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 131 | struct rw_semaphore rwsem; |
Thomas Hellstrom | 6bcd8d3c | 2011-09-01 20:18:42 +0000 | [diff] [blame] | 132 | struct vmw_marker_queue marker_queue; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 133 | }; |
| 134 | |
| 135 | struct vmw_relocation { |
| 136 | SVGAGuestPtr *location; |
| 137 | uint32_t index; |
| 138 | }; |
| 139 | |
| 140 | struct vmw_sw_context{ |
| 141 | struct ida bo_list; |
| 142 | uint32_t last_cid; |
| 143 | bool cid_valid; |
Thomas Hellstrom | 922ade0 | 2011-10-04 20:13:17 +0200 | [diff] [blame] | 144 | bool kernel; /**< is the called made from the kernel */ |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 145 | uint32_t last_sid; |
Thomas Hellstrom | 7a73ba7 | 2009-12-22 16:53:41 +0100 | [diff] [blame] | 146 | uint32_t sid_translation; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 147 | bool sid_valid; |
| 148 | struct ttm_object_file *tfile; |
| 149 | struct list_head validate_nodes; |
| 150 | struct vmw_relocation relocs[VMWGFX_MAX_RELOCATIONS]; |
| 151 | uint32_t cur_reloc; |
Thomas Hellstrom | be38ab6 | 2011-08-31 07:42:54 +0000 | [diff] [blame] | 152 | struct ttm_validate_buffer val_bufs[VMWGFX_MAX_VALIDATIONS]; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 153 | uint32_t cur_val_buf; |
Thomas Hellstrom | be38ab6 | 2011-08-31 07:42:54 +0000 | [diff] [blame] | 154 | uint32_t *cmd_bounce; |
| 155 | uint32_t cmd_bounce_size; |
| 156 | struct vmw_resource *resources[VMWGFX_MAX_VALIDATIONS]; |
| 157 | uint32_t num_ref_resources; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 158 | }; |
| 159 | |
| 160 | struct vmw_legacy_display; |
| 161 | struct vmw_overlay; |
| 162 | |
| 163 | struct vmw_master { |
| 164 | struct ttm_lock lock; |
Thomas Hellstrom | 3a939a5 | 2010-10-05 12:43:03 +0200 | [diff] [blame] | 165 | struct mutex fb_surf_mutex; |
| 166 | struct list_head fb_surf; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 167 | }; |
| 168 | |
Thomas Hellstrom | 7c4f778 | 2010-06-01 11:38:17 +0200 | [diff] [blame] | 169 | struct vmw_vga_topology_state { |
| 170 | uint32_t width; |
| 171 | uint32_t height; |
| 172 | uint32_t primary; |
| 173 | uint32_t pos_x; |
| 174 | uint32_t pos_y; |
| 175 | }; |
| 176 | |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 177 | struct vmw_private { |
| 178 | struct ttm_bo_device bdev; |
| 179 | struct ttm_bo_global_ref bo_global_ref; |
Dave Airlie | ba4420c | 2010-03-09 10:56:52 +1000 | [diff] [blame] | 180 | struct drm_global_reference mem_global_ref; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 181 | |
| 182 | struct vmw_fifo_state fifo; |
| 183 | |
| 184 | struct drm_device *dev; |
| 185 | unsigned long vmw_chipset; |
| 186 | unsigned int io_start; |
| 187 | uint32_t vram_start; |
| 188 | uint32_t vram_size; |
| 189 | uint32_t mmio_start; |
| 190 | uint32_t mmio_size; |
| 191 | uint32_t fb_max_width; |
| 192 | uint32_t fb_max_height; |
| 193 | __le32 __iomem *mmio_virt; |
| 194 | int mmio_mtrr; |
| 195 | uint32_t capabilities; |
| 196 | uint32_t max_gmr_descriptors; |
| 197 | uint32_t max_gmr_ids; |
Thomas Hellstrom | fb17f18 | 2011-08-31 07:42:53 +0000 | [diff] [blame] | 198 | uint32_t max_gmr_pages; |
| 199 | uint32_t memory_size; |
Thomas Hellstrom | 135cba0 | 2010-10-26 21:21:47 +0200 | [diff] [blame] | 200 | bool has_gmr; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 201 | struct mutex hw_mutex; |
| 202 | |
| 203 | /* |
| 204 | * VGA registers. |
| 205 | */ |
| 206 | |
Thomas Hellstrom | 7c4f778 | 2010-06-01 11:38:17 +0200 | [diff] [blame] | 207 | struct vmw_vga_topology_state vga_save[VMWGFX_MAX_DISPLAYS]; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 208 | uint32_t vga_width; |
| 209 | uint32_t vga_height; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 210 | uint32_t vga_bpp; |
Thomas Hellstrom | 7c4f778 | 2010-06-01 11:38:17 +0200 | [diff] [blame] | 211 | uint32_t vga_bpl; |
Jakob Bornecrantz | d7e1958 | 2010-05-28 11:21:59 +0200 | [diff] [blame] | 212 | uint32_t vga_pitchlock; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 213 | |
Thomas Hellstrom | 7c4f778 | 2010-06-01 11:38:17 +0200 | [diff] [blame] | 214 | uint32_t num_displays; |
| 215 | |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 216 | /* |
| 217 | * Framebuffer info. |
| 218 | */ |
| 219 | |
| 220 | void *fb_info; |
| 221 | struct vmw_legacy_display *ldu_priv; |
Jakob Bornecrantz | 56d1c78 | 2011-10-04 20:13:22 +0200 | [diff] [blame] | 222 | struct vmw_screen_object_display *sou_priv; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 223 | struct vmw_overlay *overlay_priv; |
| 224 | |
| 225 | /* |
| 226 | * Context and surface management. |
| 227 | */ |
| 228 | |
| 229 | rwlock_t resource_lock; |
| 230 | struct idr context_idr; |
| 231 | struct idr surface_idr; |
| 232 | struct idr stream_idr; |
| 233 | |
| 234 | /* |
| 235 | * Block lastclose from racing with firstopen. |
| 236 | */ |
| 237 | |
| 238 | struct mutex init_mutex; |
| 239 | |
| 240 | /* |
| 241 | * A resource manager for kernel-only surfaces and |
| 242 | * contexts. |
| 243 | */ |
| 244 | |
| 245 | struct ttm_object_device *tdev; |
| 246 | |
| 247 | /* |
| 248 | * Fencing and IRQs. |
| 249 | */ |
| 250 | |
Thomas Hellstrom | 6bcd8d3c | 2011-09-01 20:18:42 +0000 | [diff] [blame] | 251 | atomic_t marker_seq; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 252 | wait_queue_head_t fence_queue; |
| 253 | wait_queue_head_t fifo_queue; |
Thomas Hellstrom | 4f73a96 | 2011-09-01 20:18:43 +0000 | [diff] [blame] | 254 | int fence_queue_waiters; /* Protected by hw_mutex */ |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 255 | atomic_t fifo_queue_waiters; |
Thomas Hellstrom | 6bcd8d3c | 2011-09-01 20:18:42 +0000 | [diff] [blame] | 256 | uint32_t last_read_seqno; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 257 | spinlock_t irq_lock; |
Thomas Hellstrom | ae2a104 | 2011-09-01 20:18:44 +0000 | [diff] [blame] | 258 | struct vmw_fence_manager *fman; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 259 | |
| 260 | /* |
| 261 | * Device state |
| 262 | */ |
| 263 | |
| 264 | uint32_t traces_state; |
| 265 | uint32_t enable_state; |
| 266 | uint32_t config_done_state; |
| 267 | |
| 268 | /** |
| 269 | * Execbuf |
| 270 | */ |
| 271 | /** |
| 272 | * Protected by the cmdbuf mutex. |
| 273 | */ |
| 274 | |
| 275 | struct vmw_sw_context ctx; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 276 | struct mutex cmdbuf_mutex; |
| 277 | |
| 278 | /** |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 279 | * Operating mode. |
| 280 | */ |
| 281 | |
| 282 | bool stealth; |
| 283 | bool is_opened; |
Thomas Hellstrom | 30c78bb | 2010-10-01 10:21:48 +0200 | [diff] [blame] | 284 | bool enable_fb; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 285 | |
| 286 | /** |
| 287 | * Master management. |
| 288 | */ |
| 289 | |
| 290 | struct vmw_master *active_master; |
| 291 | struct vmw_master fbdev_master; |
Thomas Hellstrom | d9f36a0 | 2010-01-13 22:28:43 +0100 | [diff] [blame] | 292 | struct notifier_block pm_nb; |
Thomas Hellstrom | 094e0fa | 2010-10-05 12:43:00 +0200 | [diff] [blame] | 293 | bool suspended; |
Thomas Hellstrom | 30c78bb | 2010-10-01 10:21:48 +0200 | [diff] [blame] | 294 | |
| 295 | struct mutex release_mutex; |
| 296 | uint32_t num_3d_resources; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 297 | }; |
| 298 | |
| 299 | static inline struct vmw_private *vmw_priv(struct drm_device *dev) |
| 300 | { |
| 301 | return (struct vmw_private *)dev->dev_private; |
| 302 | } |
| 303 | |
| 304 | static inline struct vmw_fpriv *vmw_fpriv(struct drm_file *file_priv) |
| 305 | { |
| 306 | return (struct vmw_fpriv *)file_priv->driver_priv; |
| 307 | } |
| 308 | |
| 309 | static inline struct vmw_master *vmw_master(struct drm_master *master) |
| 310 | { |
| 311 | return (struct vmw_master *) master->driver_priv; |
| 312 | } |
| 313 | |
| 314 | static inline void vmw_write(struct vmw_private *dev_priv, |
| 315 | unsigned int offset, uint32_t value) |
| 316 | { |
| 317 | outl(offset, dev_priv->io_start + VMWGFX_INDEX_PORT); |
| 318 | outl(value, dev_priv->io_start + VMWGFX_VALUE_PORT); |
| 319 | } |
| 320 | |
| 321 | static inline uint32_t vmw_read(struct vmw_private *dev_priv, |
| 322 | unsigned int offset) |
| 323 | { |
| 324 | uint32_t val; |
| 325 | |
| 326 | outl(offset, dev_priv->io_start + VMWGFX_INDEX_PORT); |
| 327 | val = inl(dev_priv->io_start + VMWGFX_VALUE_PORT); |
| 328 | return val; |
| 329 | } |
| 330 | |
Thomas Hellstrom | 05730b3 | 2011-08-31 07:42:52 +0000 | [diff] [blame] | 331 | int vmw_3d_resource_inc(struct vmw_private *dev_priv, bool unhide_svga); |
| 332 | 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] | 333 | |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 334 | /** |
| 335 | * GMR utilities - vmwgfx_gmr.c |
| 336 | */ |
| 337 | |
| 338 | extern int vmw_gmr_bind(struct vmw_private *dev_priv, |
Thomas Hellstrom | 135cba0 | 2010-10-26 21:21:47 +0200 | [diff] [blame] | 339 | struct page *pages[], |
| 340 | unsigned long num_pages, |
| 341 | int gmr_id); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 342 | extern void vmw_gmr_unbind(struct vmw_private *dev_priv, int gmr_id); |
| 343 | |
| 344 | /** |
| 345 | * Resource utilities - vmwgfx_resource.c |
| 346 | */ |
| 347 | |
| 348 | extern struct vmw_resource *vmw_context_alloc(struct vmw_private *dev_priv); |
| 349 | extern void vmw_resource_unreference(struct vmw_resource **p_res); |
| 350 | extern struct vmw_resource *vmw_resource_reference(struct vmw_resource *res); |
| 351 | extern int vmw_context_destroy_ioctl(struct drm_device *dev, void *data, |
| 352 | struct drm_file *file_priv); |
| 353 | extern int vmw_context_define_ioctl(struct drm_device *dev, void *data, |
| 354 | struct drm_file *file_priv); |
| 355 | extern int vmw_context_check(struct vmw_private *dev_priv, |
| 356 | struct ttm_object_file *tfile, |
Thomas Hellstrom | be38ab6 | 2011-08-31 07:42:54 +0000 | [diff] [blame] | 357 | int id, |
| 358 | struct vmw_resource **p_res); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 359 | extern void vmw_surface_res_free(struct vmw_resource *res); |
| 360 | extern int vmw_surface_init(struct vmw_private *dev_priv, |
| 361 | struct vmw_surface *srf, |
| 362 | void (*res_free) (struct vmw_resource *res)); |
Thomas Hellstrom | 7a73ba7 | 2009-12-22 16:53:41 +0100 | [diff] [blame] | 363 | extern int vmw_user_surface_lookup_handle(struct vmw_private *dev_priv, |
| 364 | struct ttm_object_file *tfile, |
| 365 | uint32_t handle, |
| 366 | struct vmw_surface **out); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 367 | extern int vmw_surface_destroy_ioctl(struct drm_device *dev, void *data, |
| 368 | struct drm_file *file_priv); |
| 369 | extern int vmw_surface_define_ioctl(struct drm_device *dev, void *data, |
| 370 | struct drm_file *file_priv); |
| 371 | extern int vmw_surface_reference_ioctl(struct drm_device *dev, void *data, |
| 372 | struct drm_file *file_priv); |
| 373 | extern int vmw_surface_check(struct vmw_private *dev_priv, |
| 374 | struct ttm_object_file *tfile, |
Thomas Hellstrom | 7a73ba7 | 2009-12-22 16:53:41 +0100 | [diff] [blame] | 375 | uint32_t handle, int *id); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 376 | extern void vmw_dmabuf_bo_free(struct ttm_buffer_object *bo); |
| 377 | extern int vmw_dmabuf_init(struct vmw_private *dev_priv, |
| 378 | struct vmw_dma_buffer *vmw_bo, |
| 379 | size_t size, struct ttm_placement *placement, |
| 380 | bool interuptable, |
| 381 | void (*bo_free) (struct ttm_buffer_object *bo)); |
| 382 | extern int vmw_dmabuf_alloc_ioctl(struct drm_device *dev, void *data, |
| 383 | struct drm_file *file_priv); |
| 384 | extern int vmw_dmabuf_unref_ioctl(struct drm_device *dev, void *data, |
| 385 | struct drm_file *file_priv); |
| 386 | extern uint32_t vmw_dmabuf_validate_node(struct ttm_buffer_object *bo, |
| 387 | uint32_t cur_validate_node); |
| 388 | extern void vmw_dmabuf_validate_clear(struct ttm_buffer_object *bo); |
| 389 | extern int vmw_user_dmabuf_lookup(struct ttm_object_file *tfile, |
| 390 | uint32_t id, struct vmw_dma_buffer **out); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 391 | extern int vmw_stream_claim_ioctl(struct drm_device *dev, void *data, |
| 392 | struct drm_file *file_priv); |
| 393 | extern int vmw_stream_unref_ioctl(struct drm_device *dev, void *data, |
| 394 | struct drm_file *file_priv); |
| 395 | extern int vmw_user_stream_lookup(struct vmw_private *dev_priv, |
| 396 | struct ttm_object_file *tfile, |
| 397 | uint32_t *inout_id, |
| 398 | struct vmw_resource **out); |
| 399 | |
Jakob Bornecrantz | d991ef0 | 2011-10-04 20:13:21 +0200 | [diff] [blame] | 400 | /** |
| 401 | * DMA buffer helper routines - vmwgfx_dmabuf.c |
| 402 | */ |
| 403 | extern int vmw_dmabuf_to_placement(struct vmw_private *vmw_priv, |
| 404 | struct vmw_dma_buffer *bo, |
| 405 | struct ttm_placement *placement, |
| 406 | bool interruptible); |
| 407 | extern int vmw_dmabuf_to_vram(struct vmw_private *dev_priv, |
| 408 | struct vmw_dma_buffer *buf, |
| 409 | bool pin, bool interruptible); |
| 410 | extern int vmw_dmabuf_to_vram_or_gmr(struct vmw_private *dev_priv, |
| 411 | struct vmw_dma_buffer *buf, |
| 412 | bool pin, bool interruptible); |
| 413 | extern int vmw_dmabuf_to_start_of_vram(struct vmw_private *vmw_priv, |
| 414 | struct vmw_dma_buffer *bo, |
| 415 | bool pin, bool interruptible); |
| 416 | extern int vmw_dmabuf_unpin(struct vmw_private *vmw_priv, |
| 417 | struct vmw_dma_buffer *bo, |
| 418 | bool interruptible); |
Thomas Hellstrom | b37a6b9 | 2011-10-04 20:13:28 +0200 | [diff] [blame^] | 419 | extern void vmw_bo_get_guest_ptr(const struct ttm_buffer_object *buf, |
| 420 | SVGAGuestPtr *ptr); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 421 | |
| 422 | /** |
| 423 | * Misc Ioctl functionality - vmwgfx_ioctl.c |
| 424 | */ |
| 425 | |
| 426 | extern int vmw_getparam_ioctl(struct drm_device *dev, void *data, |
| 427 | struct drm_file *file_priv); |
Thomas Hellstrom | f63f6a5 | 2011-09-01 20:18:41 +0000 | [diff] [blame] | 428 | extern int vmw_get_cap_3d_ioctl(struct drm_device *dev, void *data, |
| 429 | struct drm_file *file_priv); |
Jakob Bornecrantz | 2fcd5a7 | 2011-10-04 20:13:26 +0200 | [diff] [blame] | 430 | extern int vmw_present_ioctl(struct drm_device *dev, void *data, |
| 431 | struct drm_file *file_priv); |
| 432 | extern int vmw_present_readback_ioctl(struct drm_device *dev, void *data, |
| 433 | struct drm_file *file_priv); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 434 | |
| 435 | /** |
| 436 | * Fifo utilities - vmwgfx_fifo.c |
| 437 | */ |
| 438 | |
| 439 | extern int vmw_fifo_init(struct vmw_private *dev_priv, |
| 440 | struct vmw_fifo_state *fifo); |
| 441 | extern void vmw_fifo_release(struct vmw_private *dev_priv, |
| 442 | struct vmw_fifo_state *fifo); |
| 443 | extern void *vmw_fifo_reserve(struct vmw_private *dev_priv, uint32_t bytes); |
| 444 | extern void vmw_fifo_commit(struct vmw_private *dev_priv, uint32_t bytes); |
| 445 | extern int vmw_fifo_send_fence(struct vmw_private *dev_priv, |
Thomas Hellstrom | 6bcd8d3c | 2011-09-01 20:18:42 +0000 | [diff] [blame] | 446 | uint32_t *seqno); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 447 | 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] | 448 | extern bool vmw_fifo_have_3d(struct vmw_private *dev_priv); |
Jakob Bornecrantz | d7e1958 | 2010-05-28 11:21:59 +0200 | [diff] [blame] | 449 | extern bool vmw_fifo_have_pitchlock(struct vmw_private *dev_priv); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 450 | |
| 451 | /** |
| 452 | * TTM glue - vmwgfx_ttm_glue.c |
| 453 | */ |
| 454 | |
| 455 | extern int vmw_ttm_global_init(struct vmw_private *dev_priv); |
| 456 | extern void vmw_ttm_global_release(struct vmw_private *dev_priv); |
| 457 | extern int vmw_mmap(struct file *filp, struct vm_area_struct *vma); |
| 458 | |
| 459 | /** |
| 460 | * TTM buffer object driver - vmwgfx_buffer.c |
| 461 | */ |
| 462 | |
| 463 | extern struct ttm_placement vmw_vram_placement; |
| 464 | extern struct ttm_placement vmw_vram_ne_placement; |
Thomas Hellstrom | 8ba5152 | 2010-01-16 16:05:05 +0100 | [diff] [blame] | 465 | extern struct ttm_placement vmw_vram_sys_placement; |
Thomas Hellstrom | 135cba0 | 2010-10-26 21:21:47 +0200 | [diff] [blame] | 466 | extern struct ttm_placement vmw_vram_gmr_placement; |
Jakob Bornecrantz | d991ef0 | 2011-10-04 20:13:21 +0200 | [diff] [blame] | 467 | extern struct ttm_placement vmw_vram_gmr_ne_placement; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 468 | extern struct ttm_placement vmw_sys_placement; |
Jakob Bornecrantz | d991ef0 | 2011-10-04 20:13:21 +0200 | [diff] [blame] | 469 | extern struct ttm_placement vmw_evictable_placement; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 470 | extern struct ttm_bo_driver vmw_bo_driver; |
| 471 | extern int vmw_dma_quiescent(struct drm_device *dev); |
| 472 | |
| 473 | /** |
| 474 | * Command submission - vmwgfx_execbuf.c |
| 475 | */ |
| 476 | |
| 477 | extern int vmw_execbuf_ioctl(struct drm_device *dev, void *data, |
| 478 | struct drm_file *file_priv); |
Thomas Hellstrom | 922ade0 | 2011-10-04 20:13:17 +0200 | [diff] [blame] | 479 | extern int vmw_execbuf_process(struct drm_file *file_priv, |
| 480 | struct vmw_private *dev_priv, |
| 481 | void __user *user_commands, |
| 482 | void *kernel_commands, |
| 483 | uint32_t command_size, |
| 484 | uint64_t throttle_us, |
| 485 | struct drm_vmw_fence_rep __user |
| 486 | *user_fence_rep); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 487 | |
| 488 | /** |
| 489 | * IRQs and wating - vmwgfx_irq.c |
| 490 | */ |
| 491 | |
| 492 | extern irqreturn_t vmw_irq_handler(DRM_IRQ_ARGS); |
Thomas Hellstrom | 6bcd8d3c | 2011-09-01 20:18:42 +0000 | [diff] [blame] | 493 | extern int vmw_wait_seqno(struct vmw_private *dev_priv, bool lazy, |
| 494 | uint32_t seqno, bool interruptible, |
| 495 | unsigned long timeout); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 496 | extern void vmw_irq_preinstall(struct drm_device *dev); |
| 497 | extern int vmw_irq_postinstall(struct drm_device *dev); |
| 498 | extern void vmw_irq_uninstall(struct drm_device *dev); |
Thomas Hellstrom | 6bcd8d3c | 2011-09-01 20:18:42 +0000 | [diff] [blame] | 499 | extern bool vmw_seqno_passed(struct vmw_private *dev_priv, |
| 500 | uint32_t seqno); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 501 | extern int vmw_fallback_wait(struct vmw_private *dev_priv, |
| 502 | bool lazy, |
| 503 | bool fifo_idle, |
Thomas Hellstrom | 6bcd8d3c | 2011-09-01 20:18:42 +0000 | [diff] [blame] | 504 | uint32_t seqno, |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 505 | bool interruptible, |
| 506 | unsigned long timeout); |
Thomas Hellstrom | 6bcd8d3c | 2011-09-01 20:18:42 +0000 | [diff] [blame] | 507 | extern void vmw_update_seqno(struct vmw_private *dev_priv, |
Thomas Hellstrom | 1925d45 | 2010-05-28 11:21:57 +0200 | [diff] [blame] | 508 | struct vmw_fifo_state *fifo_state); |
Thomas Hellstrom | ae2a104 | 2011-09-01 20:18:44 +0000 | [diff] [blame] | 509 | extern void vmw_seqno_waiter_add(struct vmw_private *dev_priv); |
| 510 | extern void vmw_seqno_waiter_remove(struct vmw_private *dev_priv); |
Thomas Hellstrom | 1925d45 | 2010-05-28 11:21:57 +0200 | [diff] [blame] | 511 | |
| 512 | /** |
Thomas Hellstrom | 6bcd8d3c | 2011-09-01 20:18:42 +0000 | [diff] [blame] | 513 | * Rudimentary fence-like objects currently used only for throttling - |
| 514 | * vmwgfx_marker.c |
Thomas Hellstrom | 1925d45 | 2010-05-28 11:21:57 +0200 | [diff] [blame] | 515 | */ |
| 516 | |
Thomas Hellstrom | 6bcd8d3c | 2011-09-01 20:18:42 +0000 | [diff] [blame] | 517 | extern void vmw_marker_queue_init(struct vmw_marker_queue *queue); |
| 518 | extern void vmw_marker_queue_takedown(struct vmw_marker_queue *queue); |
| 519 | extern int vmw_marker_push(struct vmw_marker_queue *queue, |
| 520 | uint32_t seqno); |
| 521 | extern int vmw_marker_pull(struct vmw_marker_queue *queue, |
| 522 | uint32_t signaled_seqno); |
Thomas Hellstrom | 1925d45 | 2010-05-28 11:21:57 +0200 | [diff] [blame] | 523 | extern int vmw_wait_lag(struct vmw_private *dev_priv, |
Thomas Hellstrom | 6bcd8d3c | 2011-09-01 20:18:42 +0000 | [diff] [blame] | 524 | struct vmw_marker_queue *queue, uint32_t us); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 525 | |
| 526 | /** |
| 527 | * Kernel framebuffer - vmwgfx_fb.c |
| 528 | */ |
| 529 | |
| 530 | int vmw_fb_init(struct vmw_private *vmw_priv); |
| 531 | int vmw_fb_close(struct vmw_private *dev_priv); |
| 532 | int vmw_fb_off(struct vmw_private *vmw_priv); |
| 533 | int vmw_fb_on(struct vmw_private *vmw_priv); |
| 534 | |
| 535 | /** |
| 536 | * Kernel modesetting - vmwgfx_kms.c |
| 537 | */ |
| 538 | |
| 539 | int vmw_kms_init(struct vmw_private *dev_priv); |
| 540 | int vmw_kms_close(struct vmw_private *dev_priv); |
| 541 | int vmw_kms_save_vga(struct vmw_private *vmw_priv); |
| 542 | int vmw_kms_restore_vga(struct vmw_private *vmw_priv); |
| 543 | int vmw_kms_cursor_bypass_ioctl(struct drm_device *dev, void *data, |
| 544 | struct drm_file *file_priv); |
| 545 | void vmw_kms_cursor_post_execbuf(struct vmw_private *dev_priv); |
| 546 | void vmw_kms_cursor_snoop(struct vmw_surface *srf, |
| 547 | struct ttm_object_file *tfile, |
| 548 | struct ttm_buffer_object *bo, |
| 549 | SVGA3dCmdHeader *header); |
Michel Dänzer | 0bef23f | 2011-08-31 07:42:50 +0000 | [diff] [blame] | 550 | int vmw_kms_write_svga(struct vmw_private *vmw_priv, |
| 551 | unsigned width, unsigned height, unsigned pitch, |
| 552 | unsigned bpp, unsigned depth); |
Thomas Hellstrom | 3a939a5 | 2010-10-05 12:43:03 +0200 | [diff] [blame] | 553 | void vmw_kms_idle_workqueues(struct vmw_master *vmaster); |
Thomas Hellstrom | e133e73 | 2010-10-05 12:43:04 +0200 | [diff] [blame] | 554 | bool vmw_kms_validate_mode_vram(struct vmw_private *dev_priv, |
| 555 | uint32_t pitch, |
| 556 | uint32_t height); |
Thomas Hellstrom | 7a1c2f6 | 2010-10-01 10:21:49 +0200 | [diff] [blame] | 557 | u32 vmw_get_vblank_counter(struct drm_device *dev, int crtc); |
Jakob Bornecrantz | 2fcd5a7 | 2011-10-04 20:13:26 +0200 | [diff] [blame] | 558 | int vmw_kms_present(struct vmw_private *dev_priv, |
| 559 | struct drm_file *file_priv, |
| 560 | struct vmw_framebuffer *vfb, |
| 561 | struct vmw_surface *surface, |
| 562 | uint32_t sid, int32_t destX, int32_t destY, |
| 563 | struct drm_vmw_rect *clips, |
| 564 | uint32_t num_clips); |
| 565 | int vmw_kms_readback(struct vmw_private *dev_priv, |
| 566 | struct drm_file *file_priv, |
| 567 | struct vmw_framebuffer *vfb, |
| 568 | struct drm_vmw_fence_rep __user *user_fence_rep, |
| 569 | struct drm_vmw_rect *clips, |
| 570 | uint32_t num_clips); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 571 | |
| 572 | /** |
| 573 | * Overlay control - vmwgfx_overlay.c |
| 574 | */ |
| 575 | |
| 576 | int vmw_overlay_init(struct vmw_private *dev_priv); |
| 577 | int vmw_overlay_close(struct vmw_private *dev_priv); |
| 578 | int vmw_overlay_ioctl(struct drm_device *dev, void *data, |
| 579 | struct drm_file *file_priv); |
| 580 | int vmw_overlay_stop_all(struct vmw_private *dev_priv); |
| 581 | int vmw_overlay_resume_all(struct vmw_private *dev_priv); |
| 582 | int vmw_overlay_pause_all(struct vmw_private *dev_priv); |
| 583 | int vmw_overlay_claim(struct vmw_private *dev_priv, uint32_t *out); |
| 584 | int vmw_overlay_unref(struct vmw_private *dev_priv, uint32_t stream_id); |
| 585 | int vmw_overlay_num_overlays(struct vmw_private *dev_priv); |
| 586 | int vmw_overlay_num_free_overlays(struct vmw_private *dev_priv); |
| 587 | |
| 588 | /** |
Thomas Hellstrom | 135cba0 | 2010-10-26 21:21:47 +0200 | [diff] [blame] | 589 | * GMR Id manager |
| 590 | */ |
| 591 | |
| 592 | extern const struct ttm_mem_type_manager_func vmw_gmrid_manager_func; |
| 593 | |
| 594 | /** |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 595 | * Inline helper functions |
| 596 | */ |
| 597 | |
| 598 | static inline void vmw_surface_unreference(struct vmw_surface **srf) |
| 599 | { |
| 600 | struct vmw_surface *tmp_srf = *srf; |
| 601 | struct vmw_resource *res = &tmp_srf->res; |
| 602 | *srf = NULL; |
| 603 | |
| 604 | vmw_resource_unreference(&res); |
| 605 | } |
| 606 | |
| 607 | static inline struct vmw_surface *vmw_surface_reference(struct vmw_surface *srf) |
| 608 | { |
| 609 | (void) vmw_resource_reference(&srf->res); |
| 610 | return srf; |
| 611 | } |
| 612 | |
| 613 | static inline void vmw_dmabuf_unreference(struct vmw_dma_buffer **buf) |
| 614 | { |
| 615 | struct vmw_dma_buffer *tmp_buf = *buf; |
| 616 | struct ttm_buffer_object *bo = &tmp_buf->base; |
| 617 | *buf = NULL; |
| 618 | |
| 619 | ttm_bo_unref(&bo); |
| 620 | } |
| 621 | |
| 622 | static inline struct vmw_dma_buffer *vmw_dmabuf_reference(struct vmw_dma_buffer *buf) |
| 623 | { |
| 624 | if (ttm_bo_reference(&buf->base)) |
| 625 | return buf; |
| 626 | return NULL; |
| 627 | } |
| 628 | |
Thomas Hellstrom | ae2a104 | 2011-09-01 20:18:44 +0000 | [diff] [blame] | 629 | static inline struct ttm_mem_global *vmw_mem_glob(struct vmw_private *dev_priv) |
| 630 | { |
| 631 | return (struct ttm_mem_global *) dev_priv->mem_global_ref.object; |
| 632 | } |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 633 | #endif |