1 /* SPDX-License-Identifier: GPL-2.0 OR MIT */ 2 /************************************************************************** 3 * 4 * Copyright 2009-2015 VMware, Inc., Palo Alto, CA., USA 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_validation.h" 32 #include "vmwgfx_reg.h" 33 #include <drm/drmP.h> 34 #include <drm/vmwgfx_drm.h> 35 #include <drm/drm_hashtab.h> 36 #include <drm/drm_auth.h> 37 #include <linux/suspend.h> 38 #include <drm/ttm/ttm_bo_driver.h> 39 #include <drm/ttm/ttm_execbuf_util.h> 40 #include <drm/ttm/ttm_module.h> 41 #include "vmwgfx_fence.h" 42 #include "ttm_object.h" 43 #include "ttm_lock.h" 44 #include <linux/sync_file.h> 45 46 #define VMWGFX_DRIVER_NAME "vmwgfx" 47 #define VMWGFX_DRIVER_DATE "20190328" 48 #define VMWGFX_DRIVER_MAJOR 2 49 #define VMWGFX_DRIVER_MINOR 16 50 #define VMWGFX_DRIVER_PATCHLEVEL 0 51 #define VMWGFX_FIFO_STATIC_SIZE (1024*1024) 52 #define VMWGFX_MAX_RELOCATIONS 2048 53 #define VMWGFX_MAX_VALIDATIONS 2048 54 #define VMWGFX_MAX_DISPLAYS 16 55 #define VMWGFX_CMD_BOUNCE_INIT_SIZE 32768 56 #define VMWGFX_ENABLE_SCREEN_TARGET_OTABLE 1 57 58 /* 59 * Perhaps we should have sysfs entries for these. 60 */ 61 #define VMWGFX_NUM_GB_CONTEXT 256 62 #define VMWGFX_NUM_GB_SHADER 20000 63 #define VMWGFX_NUM_GB_SURFACE 32768 64 #define VMWGFX_NUM_GB_SCREEN_TARGET VMWGFX_MAX_DISPLAYS 65 #define VMWGFX_NUM_DXCONTEXT 256 66 #define VMWGFX_NUM_DXQUERY 512 67 #define VMWGFX_NUM_MOB (VMWGFX_NUM_GB_CONTEXT +\ 68 VMWGFX_NUM_GB_SHADER +\ 69 VMWGFX_NUM_GB_SURFACE +\ 70 VMWGFX_NUM_GB_SCREEN_TARGET) 71 72 #define VMW_PL_GMR (TTM_PL_PRIV + 0) 73 #define VMW_PL_FLAG_GMR (TTM_PL_FLAG_PRIV << 0) 74 #define VMW_PL_MOB (TTM_PL_PRIV + 1) 75 #define VMW_PL_FLAG_MOB (TTM_PL_FLAG_PRIV << 1) 76 77 #define VMW_RES_CONTEXT ttm_driver_type0 78 #define VMW_RES_SURFACE ttm_driver_type1 79 #define VMW_RES_STREAM ttm_driver_type2 80 #define VMW_RES_FENCE ttm_driver_type3 81 #define VMW_RES_SHADER ttm_driver_type4 82 83 struct vmw_fpriv { 84 struct ttm_object_file *tfile; 85 bool gb_aware; /* user-space is guest-backed aware */ 86 }; 87 88 /** 89 * struct vmw_buffer_object - TTM buffer object with vmwgfx additions 90 * @base: The TTM buffer object 91 * @res_tree: RB tree of resources using this buffer object as a backing MOB 92 * @pin_count: pin depth 93 * @dx_query_ctx: DX context if this buffer object is used as a DX query MOB 94 * @map: Kmap object for semi-persistent mappings 95 * @res_prios: Eviction priority counts for attached resources 96 * @dirty: structure for user-space dirty-tracking 97 */ 98 struct vmw_buffer_object { 99 struct ttm_buffer_object base; 100 struct rb_root res_tree; 101 s32 pin_count; 102 /* Not ref-counted. Protected by binding_mutex */ 103 struct vmw_resource *dx_query_ctx; 104 /* Protected by reservation */ 105 struct ttm_bo_kmap_obj map; 106 u32 res_prios[TTM_MAX_BO_PRIORITY]; 107 struct vmw_bo_dirty *dirty; 108 }; 109 110 /** 111 * struct vmw_validate_buffer - Carries validation info about buffers. 112 * 113 * @base: Validation info for TTM. 114 * @hash: Hash entry for quick lookup of the TTM buffer object. 115 * 116 * This structure contains also driver private validation info 117 * on top of the info needed by TTM. 118 */ 119 struct vmw_validate_buffer { 120 struct ttm_validate_buffer base; 121 struct drm_hash_item hash; 122 bool validate_as_mob; 123 }; 124 125 struct vmw_res_func; 126 127 128 /** 129 * struct vmw-resource - base class for hardware resources 130 * 131 * @kref: For refcounting. 132 * @dev_priv: Pointer to the device private for this resource. Immutable. 133 * @id: Device id. Protected by @dev_priv::resource_lock. 134 * @backup_size: Backup buffer size. Immutable. 135 * @res_dirty: Resource contains data not yet in the backup buffer. Protected 136 * by resource reserved. 137 * @backup_dirty: Backup buffer contains data not yet in the HW resource. 138 * Protected by resource reserved. 139 * @coherent: Emulate coherency by tracking vm accesses. 140 * @backup: The backup buffer if any. Protected by resource reserved. 141 * @backup_offset: Offset into the backup buffer if any. Protected by resource 142 * reserved. Note that only a few resource types can have a @backup_offset 143 * different from zero. 144 * @pin_count: The pin count for this resource. A pinned resource has a 145 * pin-count greater than zero. It is not on the resource LRU lists and its 146 * backup buffer is pinned. Hence it can't be evicted. 147 * @func: Method vtable for this resource. Immutable. 148 * @mob_node; Node for the MOB backup rbtree. Protected by @backup reserved. 149 * @lru_head: List head for the LRU list. Protected by @dev_priv::resource_lock. 150 * @binding_head: List head for the context binding list. Protected by 151 * the @dev_priv::binding_mutex 152 * @res_free: The resource destructor. 153 * @hw_destroy: Callback to destroy the resource on the device, as part of 154 * resource destruction. 155 */ 156 struct vmw_resource_dirty; 157 struct vmw_resource { 158 struct kref kref; 159 struct vmw_private *dev_priv; 160 int id; 161 u32 used_prio; 162 unsigned long backup_size; 163 u32 res_dirty : 1; 164 u32 backup_dirty : 1; 165 u32 coherent : 1; 166 struct vmw_buffer_object *backup; 167 unsigned long backup_offset; 168 unsigned long pin_count; 169 const struct vmw_res_func *func; 170 struct rb_node mob_node; 171 struct list_head lru_head; 172 struct list_head binding_head; 173 struct vmw_resource_dirty *dirty; 174 void (*res_free) (struct vmw_resource *res); 175 void (*hw_destroy) (struct vmw_resource *res); 176 }; 177 178 179 /* 180 * Resources that are managed using ioctls. 181 */ 182 enum vmw_res_type { 183 vmw_res_context, 184 vmw_res_surface, 185 vmw_res_stream, 186 vmw_res_shader, 187 vmw_res_dx_context, 188 vmw_res_cotable, 189 vmw_res_view, 190 vmw_res_max 191 }; 192 193 /* 194 * Resources that are managed using command streams. 195 */ 196 enum vmw_cmdbuf_res_type { 197 vmw_cmdbuf_res_shader, 198 vmw_cmdbuf_res_view 199 }; 200 201 struct vmw_cmdbuf_res_manager; 202 203 struct vmw_cursor_snooper { 204 size_t age; 205 uint32_t *image; 206 }; 207 208 struct vmw_framebuffer; 209 struct vmw_surface_offset; 210 211 struct vmw_surface { 212 struct vmw_resource res; 213 SVGA3dSurfaceAllFlags flags; 214 uint32_t format; 215 uint32_t mip_levels[DRM_VMW_MAX_SURFACE_FACES]; 216 struct drm_vmw_size base_size; 217 struct drm_vmw_size *sizes; 218 uint32_t num_sizes; 219 bool scanout; 220 uint32_t array_size; 221 /* TODO so far just a extra pointer */ 222 struct vmw_cursor_snooper snooper; 223 struct vmw_surface_offset *offsets; 224 SVGA3dTextureFilter autogen_filter; 225 uint32_t multisample_count; 226 struct list_head view_list; 227 SVGA3dMSPattern multisample_pattern; 228 SVGA3dMSQualityLevel quality_level; 229 }; 230 231 struct vmw_marker_queue { 232 struct list_head head; 233 u64 lag; 234 u64 lag_time; 235 spinlock_t lock; 236 }; 237 238 struct vmw_fifo_state { 239 unsigned long reserved_size; 240 u32 *dynamic_buffer; 241 u32 *static_buffer; 242 unsigned long static_buffer_size; 243 bool using_bounce_buffer; 244 uint32_t capabilities; 245 struct mutex fifo_mutex; 246 struct rw_semaphore rwsem; 247 struct vmw_marker_queue marker_queue; 248 bool dx; 249 }; 250 251 /** 252 * struct vmw_res_cache_entry - resource information cache entry 253 * @handle: User-space handle of a resource. 254 * @res: Non-ref-counted pointer to the resource. 255 * @valid_handle: Whether the @handle member is valid. 256 * @valid: Whether the entry is valid, which also implies that the execbuf 257 * code holds a reference to the resource, and it's placed on the 258 * validation list. 259 * 260 * Used to avoid frequent repeated user-space handle lookups of the 261 * same resource. 262 */ 263 struct vmw_res_cache_entry { 264 uint32_t handle; 265 struct vmw_resource *res; 266 void *private; 267 unsigned short valid_handle; 268 unsigned short valid; 269 }; 270 271 /** 272 * enum vmw_dma_map_mode - indicate how to perform TTM page dma mappings. 273 */ 274 enum vmw_dma_map_mode { 275 vmw_dma_phys, /* Use physical page addresses */ 276 vmw_dma_alloc_coherent, /* Use TTM coherent pages */ 277 vmw_dma_map_populate, /* Unmap from DMA just after unpopulate */ 278 vmw_dma_map_bind, /* Unmap from DMA just before unbind */ 279 vmw_dma_map_max 280 }; 281 282 /** 283 * struct vmw_sg_table - Scatter/gather table for binding, with additional 284 * device-specific information. 285 * 286 * @sgt: Pointer to a struct sg_table with binding information 287 * @num_regions: Number of regions with device-address contiguous pages 288 */ 289 struct vmw_sg_table { 290 enum vmw_dma_map_mode mode; 291 struct page **pages; 292 const dma_addr_t *addrs; 293 struct sg_table *sgt; 294 unsigned long num_regions; 295 unsigned long num_pages; 296 }; 297 298 /** 299 * struct vmw_piter - Page iterator that iterates over a list of pages 300 * and DMA addresses that could be either a scatter-gather list or 301 * arrays 302 * 303 * @pages: Array of page pointers to the pages. 304 * @addrs: DMA addresses to the pages if coherent pages are used. 305 * @iter: Scatter-gather page iterator. Current position in SG list. 306 * @i: Current position in arrays. 307 * @num_pages: Number of pages total. 308 * @next: Function to advance the iterator. Returns false if past the list 309 * of pages, true otherwise. 310 * @dma_address: Function to return the DMA address of the current page. 311 */ 312 struct vmw_piter { 313 struct page **pages; 314 const dma_addr_t *addrs; 315 struct sg_dma_page_iter iter; 316 unsigned long i; 317 unsigned long num_pages; 318 bool (*next)(struct vmw_piter *); 319 dma_addr_t (*dma_address)(struct vmw_piter *); 320 struct page *(*page)(struct vmw_piter *); 321 }; 322 323 /* 324 * enum vmw_display_unit_type - Describes the display unit 325 */ 326 enum vmw_display_unit_type { 327 vmw_du_invalid = 0, 328 vmw_du_legacy, 329 vmw_du_screen_object, 330 vmw_du_screen_target 331 }; 332 333 struct vmw_validation_context; 334 struct vmw_ctx_validation_info; 335 336 /** 337 * struct vmw_sw_context - Command submission context 338 * @res_ht: Pointer hash table used to find validation duplicates 339 * @kernel: Whether the command buffer originates from kernel code rather 340 * than from user-space 341 * @fp: If @kernel is false, points to the file of the client. Otherwise 342 * NULL 343 * @cmd_bounce: Command bounce buffer used for command validation before 344 * copying to fifo space 345 * @cmd_bounce_size: Current command bounce buffer size 346 * @cur_query_bo: Current buffer object used as query result buffer 347 * @bo_relocations: List of buffer object relocations 348 * @res_relocations: List of resource relocations 349 * @buf_start: Pointer to start of memory where command validation takes 350 * place 351 * @res_cache: Cache of recently looked up resources 352 * @last_query_ctx: Last context that submitted a query 353 * @needs_post_query_barrier: Whether a query barrier is needed after 354 * command submission 355 * @staged_bindings: Cached per-context binding tracker 356 * @staged_bindings_inuse: Whether the cached per-context binding tracker 357 * is in use 358 * @staged_cmd_res: List of staged command buffer managed resources in this 359 * command buffer 360 * @ctx_list: List of context resources referenced in this command buffer 361 * @dx_ctx_node: Validation metadata of the current DX context 362 * @dx_query_mob: The MOB used for DX queries 363 * @dx_query_ctx: The DX context used for the last DX query 364 * @man: Pointer to the command buffer managed resource manager 365 * @ctx: The validation context 366 */ 367 struct vmw_sw_context{ 368 struct drm_open_hash res_ht; 369 bool res_ht_initialized; 370 bool kernel; 371 struct vmw_fpriv *fp; 372 uint32_t *cmd_bounce; 373 uint32_t cmd_bounce_size; 374 struct vmw_buffer_object *cur_query_bo; 375 struct list_head bo_relocations; 376 struct list_head res_relocations; 377 uint32_t *buf_start; 378 struct vmw_res_cache_entry res_cache[vmw_res_max]; 379 struct vmw_resource *last_query_ctx; 380 bool needs_post_query_barrier; 381 struct vmw_ctx_binding_state *staged_bindings; 382 bool staged_bindings_inuse; 383 struct list_head staged_cmd_res; 384 struct list_head ctx_list; 385 struct vmw_ctx_validation_info *dx_ctx_node; 386 struct vmw_buffer_object *dx_query_mob; 387 struct vmw_resource *dx_query_ctx; 388 struct vmw_cmdbuf_res_manager *man; 389 struct vmw_validation_context *ctx; 390 }; 391 392 struct vmw_legacy_display; 393 struct vmw_overlay; 394 395 struct vmw_vga_topology_state { 396 uint32_t width; 397 uint32_t height; 398 uint32_t primary; 399 uint32_t pos_x; 400 uint32_t pos_y; 401 }; 402 403 404 /* 405 * struct vmw_otable - Guest Memory OBject table metadata 406 * 407 * @size: Size of the table (page-aligned). 408 * @page_table: Pointer to a struct vmw_mob holding the page table. 409 */ 410 struct vmw_otable { 411 unsigned long size; 412 struct vmw_mob *page_table; 413 bool enabled; 414 }; 415 416 struct vmw_otable_batch { 417 unsigned num_otables; 418 struct vmw_otable *otables; 419 struct vmw_resource *context; 420 struct ttm_buffer_object *otable_bo; 421 }; 422 423 enum { 424 VMW_IRQTHREAD_FENCE, 425 VMW_IRQTHREAD_CMDBUF, 426 VMW_IRQTHREAD_MAX 427 }; 428 429 struct vmw_private { 430 struct ttm_bo_device bdev; 431 432 struct vmw_fifo_state fifo; 433 434 struct drm_device *dev; 435 unsigned long vmw_chipset; 436 unsigned int io_start; 437 uint32_t vram_start; 438 uint32_t vram_size; 439 uint32_t prim_bb_mem; 440 uint32_t mmio_start; 441 uint32_t mmio_size; 442 uint32_t fb_max_width; 443 uint32_t fb_max_height; 444 uint32_t texture_max_width; 445 uint32_t texture_max_height; 446 uint32_t stdu_max_width; 447 uint32_t stdu_max_height; 448 uint32_t initial_width; 449 uint32_t initial_height; 450 u32 *mmio_virt; 451 uint32_t capabilities; 452 uint32_t capabilities2; 453 uint32_t max_gmr_ids; 454 uint32_t max_gmr_pages; 455 uint32_t max_mob_pages; 456 uint32_t max_mob_size; 457 uint32_t memory_size; 458 bool has_gmr; 459 bool has_mob; 460 spinlock_t hw_lock; 461 spinlock_t cap_lock; 462 bool has_dx; 463 bool assume_16bpp; 464 bool has_sm4_1; 465 466 /* 467 * VGA registers. 468 */ 469 470 struct vmw_vga_topology_state vga_save[VMWGFX_MAX_DISPLAYS]; 471 uint32_t vga_width; 472 uint32_t vga_height; 473 uint32_t vga_bpp; 474 uint32_t vga_bpl; 475 uint32_t vga_pitchlock; 476 477 uint32_t num_displays; 478 479 /* 480 * Framebuffer info. 481 */ 482 483 void *fb_info; 484 enum vmw_display_unit_type active_display_unit; 485 struct vmw_legacy_display *ldu_priv; 486 struct vmw_overlay *overlay_priv; 487 struct drm_property *hotplug_mode_update_property; 488 struct drm_property *implicit_placement_property; 489 struct mutex global_kms_state_mutex; 490 spinlock_t cursor_lock; 491 struct drm_atomic_state *suspend_state; 492 493 /* 494 * Context and surface management. 495 */ 496 497 spinlock_t resource_lock; 498 struct idr res_idr[vmw_res_max]; 499 /* 500 * Block lastclose from racing with firstopen. 501 */ 502 503 struct mutex init_mutex; 504 505 /* 506 * A resource manager for kernel-only surfaces and 507 * contexts. 508 */ 509 510 struct ttm_object_device *tdev; 511 512 /* 513 * Fencing and IRQs. 514 */ 515 516 atomic_t marker_seq; 517 wait_queue_head_t fence_queue; 518 wait_queue_head_t fifo_queue; 519 spinlock_t waiter_lock; 520 int fence_queue_waiters; /* Protected by waiter_lock */ 521 int goal_queue_waiters; /* Protected by waiter_lock */ 522 int cmdbuf_waiters; /* Protected by waiter_lock */ 523 int error_waiters; /* Protected by waiter_lock */ 524 int fifo_queue_waiters; /* Protected by waiter_lock */ 525 uint32_t last_read_seqno; 526 struct vmw_fence_manager *fman; 527 uint32_t irq_mask; /* Updates protected by waiter_lock */ 528 529 /* 530 * Device state 531 */ 532 533 uint32_t traces_state; 534 uint32_t enable_state; 535 uint32_t config_done_state; 536 537 /** 538 * Execbuf 539 */ 540 /** 541 * Protected by the cmdbuf mutex. 542 */ 543 544 struct vmw_sw_context ctx; 545 struct mutex cmdbuf_mutex; 546 struct mutex binding_mutex; 547 548 /** 549 * Operating mode. 550 */ 551 552 bool stealth; 553 bool enable_fb; 554 spinlock_t svga_lock; 555 556 /** 557 * PM management. 558 */ 559 struct notifier_block pm_nb; 560 bool refuse_hibernation; 561 bool suspend_locked; 562 563 struct mutex release_mutex; 564 atomic_t num_fifo_resources; 565 566 /* 567 * Replace this with an rwsem as soon as we have down_xx_interruptible() 568 */ 569 struct ttm_lock reservation_sem; 570 571 /* 572 * Query processing. These members 573 * are protected by the cmdbuf mutex. 574 */ 575 576 struct vmw_buffer_object *dummy_query_bo; 577 struct vmw_buffer_object *pinned_bo; 578 uint32_t query_cid; 579 uint32_t query_cid_valid; 580 bool dummy_query_bo_pinned; 581 582 /* 583 * Surface swapping. The "surface_lru" list is protected by the 584 * resource lock in order to be able to destroy a surface and take 585 * it off the lru atomically. "used_memory_size" is currently 586 * protected by the cmdbuf mutex for simplicity. 587 */ 588 589 struct list_head res_lru[vmw_res_max]; 590 uint32_t used_memory_size; 591 592 /* 593 * DMA mapping stuff. 594 */ 595 enum vmw_dma_map_mode map_mode; 596 597 /* 598 * Guest Backed stuff 599 */ 600 struct vmw_otable_batch otable_batch; 601 602 struct vmw_cmdbuf_man *cman; 603 DECLARE_BITMAP(irqthread_pending, VMW_IRQTHREAD_MAX); 604 605 /* Validation memory reservation */ 606 struct vmw_validation_mem vvm; 607 608 /* VM operations */ 609 struct vm_operations_struct vm_ops; 610 }; 611 612 static inline struct vmw_surface *vmw_res_to_srf(struct vmw_resource *res) 613 { 614 return container_of(res, struct vmw_surface, res); 615 } 616 617 static inline struct vmw_private *vmw_priv(struct drm_device *dev) 618 { 619 return (struct vmw_private *)dev->dev_private; 620 } 621 622 static inline struct vmw_fpriv *vmw_fpriv(struct drm_file *file_priv) 623 { 624 return (struct vmw_fpriv *)file_priv->driver_priv; 625 } 626 627 /* 628 * The locking here is fine-grained, so that it is performed once 629 * for every read- and write operation. This is of course costly, but we 630 * don't perform much register access in the timing critical paths anyway. 631 * Instead we have the extra benefit of being sure that we don't forget 632 * the hw lock around register accesses. 633 */ 634 static inline void vmw_write(struct vmw_private *dev_priv, 635 unsigned int offset, uint32_t value) 636 { 637 spin_lock(&dev_priv->hw_lock); 638 outl(offset, dev_priv->io_start + VMWGFX_INDEX_PORT); 639 outl(value, dev_priv->io_start + VMWGFX_VALUE_PORT); 640 spin_unlock(&dev_priv->hw_lock); 641 } 642 643 static inline uint32_t vmw_read(struct vmw_private *dev_priv, 644 unsigned int offset) 645 { 646 u32 val; 647 648 spin_lock(&dev_priv->hw_lock); 649 outl(offset, dev_priv->io_start + VMWGFX_INDEX_PORT); 650 val = inl(dev_priv->io_start + VMWGFX_VALUE_PORT); 651 spin_unlock(&dev_priv->hw_lock); 652 653 return val; 654 } 655 656 extern void vmw_svga_enable(struct vmw_private *dev_priv); 657 extern void vmw_svga_disable(struct vmw_private *dev_priv); 658 659 660 /** 661 * GMR utilities - vmwgfx_gmr.c 662 */ 663 664 extern int vmw_gmr_bind(struct vmw_private *dev_priv, 665 const struct vmw_sg_table *vsgt, 666 unsigned long num_pages, 667 int gmr_id); 668 extern void vmw_gmr_unbind(struct vmw_private *dev_priv, int gmr_id); 669 670 /** 671 * Resource utilities - vmwgfx_resource.c 672 */ 673 struct vmw_user_resource_conv; 674 675 extern void vmw_resource_unreference(struct vmw_resource **p_res); 676 extern struct vmw_resource *vmw_resource_reference(struct vmw_resource *res); 677 extern struct vmw_resource * 678 vmw_resource_reference_unless_doomed(struct vmw_resource *res); 679 extern int vmw_resource_validate(struct vmw_resource *res, bool intr, 680 bool dirtying); 681 extern int vmw_resource_reserve(struct vmw_resource *res, bool interruptible, 682 bool no_backup); 683 extern bool vmw_resource_needs_backup(const struct vmw_resource *res); 684 extern int vmw_user_lookup_handle(struct vmw_private *dev_priv, 685 struct ttm_object_file *tfile, 686 uint32_t handle, 687 struct vmw_surface **out_surf, 688 struct vmw_buffer_object **out_buf); 689 extern int vmw_user_resource_lookup_handle( 690 struct vmw_private *dev_priv, 691 struct ttm_object_file *tfile, 692 uint32_t handle, 693 const struct vmw_user_resource_conv *converter, 694 struct vmw_resource **p_res); 695 extern struct vmw_resource * 696 vmw_user_resource_noref_lookup_handle(struct vmw_private *dev_priv, 697 struct ttm_object_file *tfile, 698 uint32_t handle, 699 const struct vmw_user_resource_conv * 700 converter); 701 extern int vmw_stream_claim_ioctl(struct drm_device *dev, void *data, 702 struct drm_file *file_priv); 703 extern int vmw_stream_unref_ioctl(struct drm_device *dev, void *data, 704 struct drm_file *file_priv); 705 extern int vmw_user_stream_lookup(struct vmw_private *dev_priv, 706 struct ttm_object_file *tfile, 707 uint32_t *inout_id, 708 struct vmw_resource **out); 709 extern void vmw_resource_unreserve(struct vmw_resource *res, 710 bool dirty_set, 711 bool dirty, 712 bool switch_backup, 713 struct vmw_buffer_object *new_backup, 714 unsigned long new_backup_offset); 715 extern void vmw_query_move_notify(struct ttm_buffer_object *bo, 716 struct ttm_mem_reg *mem); 717 extern int vmw_query_readback_all(struct vmw_buffer_object *dx_query_mob); 718 extern void vmw_resource_evict_all(struct vmw_private *dev_priv); 719 extern void vmw_resource_unbind_list(struct vmw_buffer_object *vbo); 720 void vmw_resource_mob_attach(struct vmw_resource *res); 721 void vmw_resource_mob_detach(struct vmw_resource *res); 722 void vmw_resource_dirty_update(struct vmw_resource *res, pgoff_t start, 723 pgoff_t end); 724 int vmw_resources_clean(struct vmw_buffer_object *vbo, pgoff_t start, 725 pgoff_t end, pgoff_t *num_prefault); 726 727 /** 728 * vmw_resource_mob_attached - Whether a resource currently has a mob attached 729 * @res: The resource 730 * 731 * Return: true if the resource has a mob attached, false otherwise. 732 */ 733 static inline bool vmw_resource_mob_attached(const struct vmw_resource *res) 734 { 735 return !RB_EMPTY_NODE(&res->mob_node); 736 } 737 738 /** 739 * vmw_user_resource_noref_release - release a user resource pointer looked up 740 * without reference 741 */ 742 static inline void vmw_user_resource_noref_release(void) 743 { 744 ttm_base_object_noref_release(); 745 } 746 747 /** 748 * Buffer object helper functions - vmwgfx_bo.c 749 */ 750 extern int vmw_bo_pin_in_placement(struct vmw_private *vmw_priv, 751 struct vmw_buffer_object *bo, 752 struct ttm_placement *placement, 753 bool interruptible); 754 extern int vmw_bo_pin_in_vram(struct vmw_private *dev_priv, 755 struct vmw_buffer_object *buf, 756 bool interruptible); 757 extern int vmw_bo_pin_in_vram_or_gmr(struct vmw_private *dev_priv, 758 struct vmw_buffer_object *buf, 759 bool interruptible); 760 extern int vmw_bo_pin_in_start_of_vram(struct vmw_private *vmw_priv, 761 struct vmw_buffer_object *bo, 762 bool interruptible); 763 extern int vmw_bo_unpin(struct vmw_private *vmw_priv, 764 struct vmw_buffer_object *bo, 765 bool interruptible); 766 extern void vmw_bo_get_guest_ptr(const struct ttm_buffer_object *buf, 767 SVGAGuestPtr *ptr); 768 extern void vmw_bo_pin_reserved(struct vmw_buffer_object *bo, bool pin); 769 extern void vmw_bo_bo_free(struct ttm_buffer_object *bo); 770 extern int vmw_bo_init(struct vmw_private *dev_priv, 771 struct vmw_buffer_object *vmw_bo, 772 size_t size, struct ttm_placement *placement, 773 bool interuptable, 774 void (*bo_free)(struct ttm_buffer_object *bo)); 775 extern int vmw_user_bo_verify_access(struct ttm_buffer_object *bo, 776 struct ttm_object_file *tfile); 777 extern int vmw_user_bo_alloc(struct vmw_private *dev_priv, 778 struct ttm_object_file *tfile, 779 uint32_t size, 780 bool shareable, 781 uint32_t *handle, 782 struct vmw_buffer_object **p_dma_buf, 783 struct ttm_base_object **p_base); 784 extern int vmw_user_bo_reference(struct ttm_object_file *tfile, 785 struct vmw_buffer_object *dma_buf, 786 uint32_t *handle); 787 extern int vmw_bo_alloc_ioctl(struct drm_device *dev, void *data, 788 struct drm_file *file_priv); 789 extern int vmw_bo_unref_ioctl(struct drm_device *dev, void *data, 790 struct drm_file *file_priv); 791 extern int vmw_user_bo_synccpu_ioctl(struct drm_device *dev, void *data, 792 struct drm_file *file_priv); 793 extern int vmw_user_bo_lookup(struct ttm_object_file *tfile, 794 uint32_t id, struct vmw_buffer_object **out, 795 struct ttm_base_object **base); 796 extern void vmw_bo_fence_single(struct ttm_buffer_object *bo, 797 struct vmw_fence_obj *fence); 798 extern void *vmw_bo_map_and_cache(struct vmw_buffer_object *vbo); 799 extern void vmw_bo_unmap(struct vmw_buffer_object *vbo); 800 extern void vmw_bo_move_notify(struct ttm_buffer_object *bo, 801 struct ttm_mem_reg *mem); 802 extern void vmw_bo_swap_notify(struct ttm_buffer_object *bo); 803 extern struct vmw_buffer_object * 804 vmw_user_bo_noref_lookup(struct ttm_object_file *tfile, u32 handle); 805 806 /** 807 * vmw_user_bo_noref_release - release a buffer object pointer looked up 808 * without reference 809 */ 810 static inline void vmw_user_bo_noref_release(void) 811 { 812 ttm_base_object_noref_release(); 813 } 814 815 /** 816 * vmw_bo_adjust_prio - Adjust the buffer object eviction priority 817 * according to attached resources 818 * @vbo: The struct vmw_buffer_object 819 */ 820 static inline void vmw_bo_prio_adjust(struct vmw_buffer_object *vbo) 821 { 822 int i = ARRAY_SIZE(vbo->res_prios); 823 824 while (i--) { 825 if (vbo->res_prios[i]) { 826 vbo->base.priority = i; 827 return; 828 } 829 } 830 831 vbo->base.priority = 3; 832 } 833 834 /** 835 * vmw_bo_prio_add - Notify a buffer object of a newly attached resource 836 * eviction priority 837 * @vbo: The struct vmw_buffer_object 838 * @prio: The resource priority 839 * 840 * After being notified, the code assigns the highest resource eviction priority 841 * to the backing buffer object (mob). 842 */ 843 static inline void vmw_bo_prio_add(struct vmw_buffer_object *vbo, int prio) 844 { 845 if (vbo->res_prios[prio]++ == 0) 846 vmw_bo_prio_adjust(vbo); 847 } 848 849 /** 850 * vmw_bo_prio_del - Notify a buffer object of a resource with a certain 851 * priority being removed 852 * @vbo: The struct vmw_buffer_object 853 * @prio: The resource priority 854 * 855 * After being notified, the code assigns the highest resource eviction priority 856 * to the backing buffer object (mob). 857 */ 858 static inline void vmw_bo_prio_del(struct vmw_buffer_object *vbo, int prio) 859 { 860 if (--vbo->res_prios[prio] == 0) 861 vmw_bo_prio_adjust(vbo); 862 } 863 864 /** 865 * Misc Ioctl functionality - vmwgfx_ioctl.c 866 */ 867 868 extern int vmw_getparam_ioctl(struct drm_device *dev, void *data, 869 struct drm_file *file_priv); 870 extern int vmw_get_cap_3d_ioctl(struct drm_device *dev, void *data, 871 struct drm_file *file_priv); 872 extern int vmw_present_ioctl(struct drm_device *dev, void *data, 873 struct drm_file *file_priv); 874 extern int vmw_present_readback_ioctl(struct drm_device *dev, void *data, 875 struct drm_file *file_priv); 876 extern __poll_t vmw_fops_poll(struct file *filp, 877 struct poll_table_struct *wait); 878 extern ssize_t vmw_fops_read(struct file *filp, char __user *buffer, 879 size_t count, loff_t *offset); 880 881 /** 882 * Fifo utilities - vmwgfx_fifo.c 883 */ 884 885 extern int vmw_fifo_init(struct vmw_private *dev_priv, 886 struct vmw_fifo_state *fifo); 887 extern void vmw_fifo_release(struct vmw_private *dev_priv, 888 struct vmw_fifo_state *fifo); 889 extern void * 890 vmw_fifo_reserve_dx(struct vmw_private *dev_priv, uint32_t bytes, int ctx_id); 891 extern void vmw_fifo_commit(struct vmw_private *dev_priv, uint32_t bytes); 892 extern void vmw_fifo_commit_flush(struct vmw_private *dev_priv, uint32_t bytes); 893 extern int vmw_fifo_send_fence(struct vmw_private *dev_priv, 894 uint32_t *seqno); 895 extern void vmw_fifo_ping_host_locked(struct vmw_private *, uint32_t reason); 896 extern void vmw_fifo_ping_host(struct vmw_private *dev_priv, uint32_t reason); 897 extern bool vmw_fifo_have_3d(struct vmw_private *dev_priv); 898 extern bool vmw_fifo_have_pitchlock(struct vmw_private *dev_priv); 899 extern int vmw_fifo_emit_dummy_query(struct vmw_private *dev_priv, 900 uint32_t cid); 901 extern int vmw_fifo_flush(struct vmw_private *dev_priv, 902 bool interruptible); 903 904 #define VMW_FIFO_RESERVE_DX(__priv, __bytes, __ctx_id) \ 905 ({ \ 906 vmw_fifo_reserve_dx(__priv, __bytes, __ctx_id) ? : ({ \ 907 DRM_ERROR("FIFO reserve failed at %s for %u bytes\n", \ 908 __func__, (unsigned int) __bytes); \ 909 NULL; \ 910 }); \ 911 }) 912 913 #define VMW_FIFO_RESERVE(__priv, __bytes) \ 914 VMW_FIFO_RESERVE_DX(__priv, __bytes, SVGA3D_INVALID_ID) 915 916 /** 917 * TTM glue - vmwgfx_ttm_glue.c 918 */ 919 920 extern int vmw_mmap(struct file *filp, struct vm_area_struct *vma); 921 922 extern void vmw_validation_mem_init_ttm(struct vmw_private *dev_priv, 923 size_t gran); 924 /** 925 * TTM buffer object driver - vmwgfx_ttm_buffer.c 926 */ 927 928 extern const size_t vmw_tt_size; 929 extern struct ttm_placement vmw_vram_placement; 930 extern struct ttm_placement vmw_vram_ne_placement; 931 extern struct ttm_placement vmw_vram_sys_placement; 932 extern struct ttm_placement vmw_vram_gmr_placement; 933 extern struct ttm_placement vmw_vram_gmr_ne_placement; 934 extern struct ttm_placement vmw_sys_placement; 935 extern struct ttm_placement vmw_sys_ne_placement; 936 extern struct ttm_placement vmw_evictable_placement; 937 extern struct ttm_placement vmw_srf_placement; 938 extern struct ttm_placement vmw_mob_placement; 939 extern struct ttm_placement vmw_mob_ne_placement; 940 extern struct ttm_placement vmw_nonfixed_placement; 941 extern struct ttm_bo_driver vmw_bo_driver; 942 extern int vmw_dma_quiescent(struct drm_device *dev); 943 extern int vmw_bo_map_dma(struct ttm_buffer_object *bo); 944 extern void vmw_bo_unmap_dma(struct ttm_buffer_object *bo); 945 extern const struct vmw_sg_table * 946 vmw_bo_sg_table(struct ttm_buffer_object *bo); 947 extern void vmw_piter_start(struct vmw_piter *viter, 948 const struct vmw_sg_table *vsgt, 949 unsigned long p_offs); 950 951 /** 952 * vmw_piter_next - Advance the iterator one page. 953 * 954 * @viter: Pointer to the iterator to advance. 955 * 956 * Returns false if past the list of pages, true otherwise. 957 */ 958 static inline bool vmw_piter_next(struct vmw_piter *viter) 959 { 960 return viter->next(viter); 961 } 962 963 /** 964 * vmw_piter_dma_addr - Return the DMA address of the current page. 965 * 966 * @viter: Pointer to the iterator 967 * 968 * Returns the DMA address of the page pointed to by @viter. 969 */ 970 static inline dma_addr_t vmw_piter_dma_addr(struct vmw_piter *viter) 971 { 972 return viter->dma_address(viter); 973 } 974 975 /** 976 * vmw_piter_page - Return a pointer to the current page. 977 * 978 * @viter: Pointer to the iterator 979 * 980 * Returns the DMA address of the page pointed to by @viter. 981 */ 982 static inline struct page *vmw_piter_page(struct vmw_piter *viter) 983 { 984 return viter->page(viter); 985 } 986 987 /** 988 * Command submission - vmwgfx_execbuf.c 989 */ 990 991 extern int vmw_execbuf_ioctl(struct drm_device *dev, unsigned long data, 992 struct drm_file *file_priv, size_t size); 993 extern int vmw_execbuf_process(struct drm_file *file_priv, 994 struct vmw_private *dev_priv, 995 void __user *user_commands, 996 void *kernel_commands, 997 uint32_t command_size, 998 uint64_t throttle_us, 999 uint32_t dx_context_handle, 1000 struct drm_vmw_fence_rep __user 1001 *user_fence_rep, 1002 struct vmw_fence_obj **out_fence, 1003 uint32_t flags); 1004 extern void __vmw_execbuf_release_pinned_bo(struct vmw_private *dev_priv, 1005 struct vmw_fence_obj *fence); 1006 extern void vmw_execbuf_release_pinned_bo(struct vmw_private *dev_priv); 1007 1008 extern int vmw_execbuf_fence_commands(struct drm_file *file_priv, 1009 struct vmw_private *dev_priv, 1010 struct vmw_fence_obj **p_fence, 1011 uint32_t *p_handle); 1012 extern void vmw_execbuf_copy_fence_user(struct vmw_private *dev_priv, 1013 struct vmw_fpriv *vmw_fp, 1014 int ret, 1015 struct drm_vmw_fence_rep __user 1016 *user_fence_rep, 1017 struct vmw_fence_obj *fence, 1018 uint32_t fence_handle, 1019 int32_t out_fence_fd, 1020 struct sync_file *sync_file); 1021 bool vmw_cmd_describe(const void *buf, u32 *size, char const **cmd); 1022 1023 /** 1024 * IRQs and wating - vmwgfx_irq.c 1025 */ 1026 1027 extern int vmw_wait_seqno(struct vmw_private *dev_priv, bool lazy, 1028 uint32_t seqno, bool interruptible, 1029 unsigned long timeout); 1030 extern int vmw_irq_install(struct drm_device *dev, int irq); 1031 extern void vmw_irq_uninstall(struct drm_device *dev); 1032 extern bool vmw_seqno_passed(struct vmw_private *dev_priv, 1033 uint32_t seqno); 1034 extern int vmw_fallback_wait(struct vmw_private *dev_priv, 1035 bool lazy, 1036 bool fifo_idle, 1037 uint32_t seqno, 1038 bool interruptible, 1039 unsigned long timeout); 1040 extern void vmw_update_seqno(struct vmw_private *dev_priv, 1041 struct vmw_fifo_state *fifo_state); 1042 extern void vmw_seqno_waiter_add(struct vmw_private *dev_priv); 1043 extern void vmw_seqno_waiter_remove(struct vmw_private *dev_priv); 1044 extern void vmw_goal_waiter_add(struct vmw_private *dev_priv); 1045 extern void vmw_goal_waiter_remove(struct vmw_private *dev_priv); 1046 extern void vmw_generic_waiter_add(struct vmw_private *dev_priv, u32 flag, 1047 int *waiter_count); 1048 extern void vmw_generic_waiter_remove(struct vmw_private *dev_priv, 1049 u32 flag, int *waiter_count); 1050 1051 /** 1052 * Rudimentary fence-like objects currently used only for throttling - 1053 * vmwgfx_marker.c 1054 */ 1055 1056 extern void vmw_marker_queue_init(struct vmw_marker_queue *queue); 1057 extern void vmw_marker_queue_takedown(struct vmw_marker_queue *queue); 1058 extern int vmw_marker_push(struct vmw_marker_queue *queue, 1059 uint32_t seqno); 1060 extern int vmw_marker_pull(struct vmw_marker_queue *queue, 1061 uint32_t signaled_seqno); 1062 extern int vmw_wait_lag(struct vmw_private *dev_priv, 1063 struct vmw_marker_queue *queue, uint32_t us); 1064 1065 /** 1066 * Kernel framebuffer - vmwgfx_fb.c 1067 */ 1068 1069 int vmw_fb_init(struct vmw_private *vmw_priv); 1070 int vmw_fb_close(struct vmw_private *dev_priv); 1071 int vmw_fb_off(struct vmw_private *vmw_priv); 1072 int vmw_fb_on(struct vmw_private *vmw_priv); 1073 1074 /** 1075 * Kernel modesetting - vmwgfx_kms.c 1076 */ 1077 1078 int vmw_kms_init(struct vmw_private *dev_priv); 1079 int vmw_kms_close(struct vmw_private *dev_priv); 1080 int vmw_kms_save_vga(struct vmw_private *vmw_priv); 1081 int vmw_kms_restore_vga(struct vmw_private *vmw_priv); 1082 int vmw_kms_cursor_bypass_ioctl(struct drm_device *dev, void *data, 1083 struct drm_file *file_priv); 1084 void vmw_kms_cursor_post_execbuf(struct vmw_private *dev_priv); 1085 void vmw_kms_cursor_snoop(struct vmw_surface *srf, 1086 struct ttm_object_file *tfile, 1087 struct ttm_buffer_object *bo, 1088 SVGA3dCmdHeader *header); 1089 int vmw_kms_write_svga(struct vmw_private *vmw_priv, 1090 unsigned width, unsigned height, unsigned pitch, 1091 unsigned bpp, unsigned depth); 1092 bool vmw_kms_validate_mode_vram(struct vmw_private *dev_priv, 1093 uint32_t pitch, 1094 uint32_t height); 1095 u32 vmw_get_vblank_counter(struct drm_device *dev, unsigned int pipe); 1096 int vmw_enable_vblank(struct drm_device *dev, unsigned int pipe); 1097 void vmw_disable_vblank(struct drm_device *dev, unsigned int pipe); 1098 int vmw_kms_present(struct vmw_private *dev_priv, 1099 struct drm_file *file_priv, 1100 struct vmw_framebuffer *vfb, 1101 struct vmw_surface *surface, 1102 uint32_t sid, int32_t destX, int32_t destY, 1103 struct drm_vmw_rect *clips, 1104 uint32_t num_clips); 1105 int vmw_kms_update_layout_ioctl(struct drm_device *dev, void *data, 1106 struct drm_file *file_priv); 1107 void vmw_kms_legacy_hotspot_clear(struct vmw_private *dev_priv); 1108 int vmw_kms_suspend(struct drm_device *dev); 1109 int vmw_kms_resume(struct drm_device *dev); 1110 void vmw_kms_lost_device(struct drm_device *dev); 1111 1112 int vmw_dumb_create(struct drm_file *file_priv, 1113 struct drm_device *dev, 1114 struct drm_mode_create_dumb *args); 1115 1116 int vmw_dumb_map_offset(struct drm_file *file_priv, 1117 struct drm_device *dev, uint32_t handle, 1118 uint64_t *offset); 1119 int vmw_dumb_destroy(struct drm_file *file_priv, 1120 struct drm_device *dev, 1121 uint32_t handle); 1122 extern int vmw_resource_pin(struct vmw_resource *res, bool interruptible); 1123 extern void vmw_resource_unpin(struct vmw_resource *res); 1124 extern enum vmw_res_type vmw_res_type(const struct vmw_resource *res); 1125 1126 /** 1127 * Overlay control - vmwgfx_overlay.c 1128 */ 1129 1130 int vmw_overlay_init(struct vmw_private *dev_priv); 1131 int vmw_overlay_close(struct vmw_private *dev_priv); 1132 int vmw_overlay_ioctl(struct drm_device *dev, void *data, 1133 struct drm_file *file_priv); 1134 int vmw_overlay_stop_all(struct vmw_private *dev_priv); 1135 int vmw_overlay_resume_all(struct vmw_private *dev_priv); 1136 int vmw_overlay_pause_all(struct vmw_private *dev_priv); 1137 int vmw_overlay_claim(struct vmw_private *dev_priv, uint32_t *out); 1138 int vmw_overlay_unref(struct vmw_private *dev_priv, uint32_t stream_id); 1139 int vmw_overlay_num_overlays(struct vmw_private *dev_priv); 1140 int vmw_overlay_num_free_overlays(struct vmw_private *dev_priv); 1141 1142 /** 1143 * GMR Id manager 1144 */ 1145 1146 extern const struct ttm_mem_type_manager_func vmw_gmrid_manager_func; 1147 1148 /** 1149 * Prime - vmwgfx_prime.c 1150 */ 1151 1152 extern const struct dma_buf_ops vmw_prime_dmabuf_ops; 1153 extern int vmw_prime_fd_to_handle(struct drm_device *dev, 1154 struct drm_file *file_priv, 1155 int fd, u32 *handle); 1156 extern int vmw_prime_handle_to_fd(struct drm_device *dev, 1157 struct drm_file *file_priv, 1158 uint32_t handle, uint32_t flags, 1159 int *prime_fd); 1160 1161 /* 1162 * MemoryOBject management - vmwgfx_mob.c 1163 */ 1164 struct vmw_mob; 1165 extern int vmw_mob_bind(struct vmw_private *dev_priv, struct vmw_mob *mob, 1166 const struct vmw_sg_table *vsgt, 1167 unsigned long num_data_pages, int32_t mob_id); 1168 extern void vmw_mob_unbind(struct vmw_private *dev_priv, 1169 struct vmw_mob *mob); 1170 extern void vmw_mob_destroy(struct vmw_mob *mob); 1171 extern struct vmw_mob *vmw_mob_create(unsigned long data_pages); 1172 extern int vmw_otables_setup(struct vmw_private *dev_priv); 1173 extern void vmw_otables_takedown(struct vmw_private *dev_priv); 1174 1175 /* 1176 * Context management - vmwgfx_context.c 1177 */ 1178 1179 extern const struct vmw_user_resource_conv *user_context_converter; 1180 1181 extern int vmw_context_check(struct vmw_private *dev_priv, 1182 struct ttm_object_file *tfile, 1183 int id, 1184 struct vmw_resource **p_res); 1185 extern int vmw_context_define_ioctl(struct drm_device *dev, void *data, 1186 struct drm_file *file_priv); 1187 extern int vmw_extended_context_define_ioctl(struct drm_device *dev, void *data, 1188 struct drm_file *file_priv); 1189 extern int vmw_context_destroy_ioctl(struct drm_device *dev, void *data, 1190 struct drm_file *file_priv); 1191 extern struct list_head *vmw_context_binding_list(struct vmw_resource *ctx); 1192 extern struct vmw_cmdbuf_res_manager * 1193 vmw_context_res_man(struct vmw_resource *ctx); 1194 extern struct vmw_resource *vmw_context_cotable(struct vmw_resource *ctx, 1195 SVGACOTableType cotable_type); 1196 extern struct list_head *vmw_context_binding_list(struct vmw_resource *ctx); 1197 struct vmw_ctx_binding_state; 1198 extern struct vmw_ctx_binding_state * 1199 vmw_context_binding_state(struct vmw_resource *ctx); 1200 extern void vmw_dx_context_scrub_cotables(struct vmw_resource *ctx, 1201 bool readback); 1202 extern int vmw_context_bind_dx_query(struct vmw_resource *ctx_res, 1203 struct vmw_buffer_object *mob); 1204 extern struct vmw_buffer_object * 1205 vmw_context_get_dx_query_mob(struct vmw_resource *ctx_res); 1206 1207 1208 /* 1209 * Surface management - vmwgfx_surface.c 1210 */ 1211 1212 extern const struct vmw_user_resource_conv *user_surface_converter; 1213 1214 extern void vmw_surface_res_free(struct vmw_resource *res); 1215 extern int vmw_surface_destroy_ioctl(struct drm_device *dev, void *data, 1216 struct drm_file *file_priv); 1217 extern int vmw_surface_define_ioctl(struct drm_device *dev, void *data, 1218 struct drm_file *file_priv); 1219 extern int vmw_surface_reference_ioctl(struct drm_device *dev, void *data, 1220 struct drm_file *file_priv); 1221 extern int vmw_gb_surface_define_ioctl(struct drm_device *dev, void *data, 1222 struct drm_file *file_priv); 1223 extern int vmw_gb_surface_reference_ioctl(struct drm_device *dev, void *data, 1224 struct drm_file *file_priv); 1225 extern int vmw_surface_check(struct vmw_private *dev_priv, 1226 struct ttm_object_file *tfile, 1227 uint32_t handle, int *id); 1228 extern int vmw_surface_validate(struct vmw_private *dev_priv, 1229 struct vmw_surface *srf); 1230 int vmw_surface_gb_priv_define(struct drm_device *dev, 1231 uint32_t user_accounting_size, 1232 SVGA3dSurfaceAllFlags svga3d_flags, 1233 SVGA3dSurfaceFormat format, 1234 bool for_scanout, 1235 uint32_t num_mip_levels, 1236 uint32_t multisample_count, 1237 uint32_t array_size, 1238 struct drm_vmw_size size, 1239 SVGA3dMSPattern multisample_pattern, 1240 SVGA3dMSQualityLevel quality_level, 1241 struct vmw_surface **srf_out); 1242 extern int vmw_gb_surface_define_ext_ioctl(struct drm_device *dev, 1243 void *data, 1244 struct drm_file *file_priv); 1245 extern int vmw_gb_surface_reference_ext_ioctl(struct drm_device *dev, 1246 void *data, 1247 struct drm_file *file_priv); 1248 1249 /* 1250 * Shader management - vmwgfx_shader.c 1251 */ 1252 1253 extern const struct vmw_user_resource_conv *user_shader_converter; 1254 1255 extern int vmw_shader_define_ioctl(struct drm_device *dev, void *data, 1256 struct drm_file *file_priv); 1257 extern int vmw_shader_destroy_ioctl(struct drm_device *dev, void *data, 1258 struct drm_file *file_priv); 1259 extern int vmw_compat_shader_add(struct vmw_private *dev_priv, 1260 struct vmw_cmdbuf_res_manager *man, 1261 u32 user_key, const void *bytecode, 1262 SVGA3dShaderType shader_type, 1263 size_t size, 1264 struct list_head *list); 1265 extern int vmw_shader_remove(struct vmw_cmdbuf_res_manager *man, 1266 u32 user_key, SVGA3dShaderType shader_type, 1267 struct list_head *list); 1268 extern int vmw_dx_shader_add(struct vmw_cmdbuf_res_manager *man, 1269 struct vmw_resource *ctx, 1270 u32 user_key, 1271 SVGA3dShaderType shader_type, 1272 struct list_head *list); 1273 extern void vmw_dx_shader_cotable_list_scrub(struct vmw_private *dev_priv, 1274 struct list_head *list, 1275 bool readback); 1276 1277 extern struct vmw_resource * 1278 vmw_shader_lookup(struct vmw_cmdbuf_res_manager *man, 1279 u32 user_key, SVGA3dShaderType shader_type); 1280 1281 /* 1282 * Command buffer managed resources - vmwgfx_cmdbuf_res.c 1283 */ 1284 1285 extern struct vmw_cmdbuf_res_manager * 1286 vmw_cmdbuf_res_man_create(struct vmw_private *dev_priv); 1287 extern void vmw_cmdbuf_res_man_destroy(struct vmw_cmdbuf_res_manager *man); 1288 extern size_t vmw_cmdbuf_res_man_size(void); 1289 extern struct vmw_resource * 1290 vmw_cmdbuf_res_lookup(struct vmw_cmdbuf_res_manager *man, 1291 enum vmw_cmdbuf_res_type res_type, 1292 u32 user_key); 1293 extern void vmw_cmdbuf_res_revert(struct list_head *list); 1294 extern void vmw_cmdbuf_res_commit(struct list_head *list); 1295 extern int vmw_cmdbuf_res_add(struct vmw_cmdbuf_res_manager *man, 1296 enum vmw_cmdbuf_res_type res_type, 1297 u32 user_key, 1298 struct vmw_resource *res, 1299 struct list_head *list); 1300 extern int vmw_cmdbuf_res_remove(struct vmw_cmdbuf_res_manager *man, 1301 enum vmw_cmdbuf_res_type res_type, 1302 u32 user_key, 1303 struct list_head *list, 1304 struct vmw_resource **res); 1305 1306 /* 1307 * COTable management - vmwgfx_cotable.c 1308 */ 1309 extern const SVGACOTableType vmw_cotable_scrub_order[]; 1310 extern struct vmw_resource *vmw_cotable_alloc(struct vmw_private *dev_priv, 1311 struct vmw_resource *ctx, 1312 u32 type); 1313 extern int vmw_cotable_notify(struct vmw_resource *res, int id); 1314 extern int vmw_cotable_scrub(struct vmw_resource *res, bool readback); 1315 extern void vmw_cotable_add_resource(struct vmw_resource *ctx, 1316 struct list_head *head); 1317 1318 /* 1319 * Command buffer managerment vmwgfx_cmdbuf.c 1320 */ 1321 struct vmw_cmdbuf_man; 1322 struct vmw_cmdbuf_header; 1323 1324 extern struct vmw_cmdbuf_man * 1325 vmw_cmdbuf_man_create(struct vmw_private *dev_priv); 1326 extern int vmw_cmdbuf_set_pool_size(struct vmw_cmdbuf_man *man, 1327 size_t size, size_t default_size); 1328 extern void vmw_cmdbuf_remove_pool(struct vmw_cmdbuf_man *man); 1329 extern void vmw_cmdbuf_man_destroy(struct vmw_cmdbuf_man *man); 1330 extern int vmw_cmdbuf_idle(struct vmw_cmdbuf_man *man, bool interruptible, 1331 unsigned long timeout); 1332 extern void *vmw_cmdbuf_reserve(struct vmw_cmdbuf_man *man, size_t size, 1333 int ctx_id, bool interruptible, 1334 struct vmw_cmdbuf_header *header); 1335 extern void vmw_cmdbuf_commit(struct vmw_cmdbuf_man *man, size_t size, 1336 struct vmw_cmdbuf_header *header, 1337 bool flush); 1338 extern void *vmw_cmdbuf_alloc(struct vmw_cmdbuf_man *man, 1339 size_t size, bool interruptible, 1340 struct vmw_cmdbuf_header **p_header); 1341 extern void vmw_cmdbuf_header_free(struct vmw_cmdbuf_header *header); 1342 extern int vmw_cmdbuf_cur_flush(struct vmw_cmdbuf_man *man, 1343 bool interruptible); 1344 extern void vmw_cmdbuf_irqthread(struct vmw_cmdbuf_man *man); 1345 1346 /* CPU blit utilities - vmwgfx_blit.c */ 1347 1348 /** 1349 * struct vmw_diff_cpy - CPU blit information structure 1350 * 1351 * @rect: The output bounding box rectangle. 1352 * @line: The current line of the blit. 1353 * @line_offset: Offset of the current line segment. 1354 * @cpp: Bytes per pixel (granularity information). 1355 * @memcpy: Which memcpy function to use. 1356 */ 1357 struct vmw_diff_cpy { 1358 struct drm_rect rect; 1359 size_t line; 1360 size_t line_offset; 1361 int cpp; 1362 void (*do_cpy)(struct vmw_diff_cpy *diff, u8 *dest, const u8 *src, 1363 size_t n); 1364 }; 1365 1366 #define VMW_CPU_BLIT_INITIALIZER { \ 1367 .do_cpy = vmw_memcpy, \ 1368 } 1369 1370 #define VMW_CPU_BLIT_DIFF_INITIALIZER(_cpp) { \ 1371 .line = 0, \ 1372 .line_offset = 0, \ 1373 .rect = { .x1 = INT_MAX/2, \ 1374 .y1 = INT_MAX/2, \ 1375 .x2 = INT_MIN/2, \ 1376 .y2 = INT_MIN/2 \ 1377 }, \ 1378 .cpp = _cpp, \ 1379 .do_cpy = vmw_diff_memcpy, \ 1380 } 1381 1382 void vmw_diff_memcpy(struct vmw_diff_cpy *diff, u8 *dest, const u8 *src, 1383 size_t n); 1384 1385 void vmw_memcpy(struct vmw_diff_cpy *diff, u8 *dest, const u8 *src, size_t n); 1386 1387 int vmw_bo_cpu_blit(struct ttm_buffer_object *dst, 1388 u32 dst_offset, u32 dst_stride, 1389 struct ttm_buffer_object *src, 1390 u32 src_offset, u32 src_stride, 1391 u32 w, u32 h, 1392 struct vmw_diff_cpy *diff); 1393 1394 /* Host messaging -vmwgfx_msg.c: */ 1395 int vmw_host_get_guestinfo(const char *guest_info_param, 1396 char *buffer, size_t *length); 1397 int vmw_host_log(const char *log); 1398 1399 /* VMW logging */ 1400 1401 /** 1402 * VMW_DEBUG_USER - Debug output for user-space debugging. 1403 * 1404 * @fmt: printf() like format string. 1405 * 1406 * This macro is for logging user-space error and debugging messages for e.g. 1407 * command buffer execution errors due to malformed commands, invalid context, 1408 * etc. 1409 */ 1410 #define VMW_DEBUG_USER(fmt, ...) \ 1411 DRM_DEBUG_DRIVER(fmt, ##__VA_ARGS__) 1412 1413 /** 1414 * VMW_DEBUG_KMS - Debug output for kernel mode-setting 1415 * 1416 * This macro is for debugging vmwgfx mode-setting code. 1417 */ 1418 #define VMW_DEBUG_KMS(fmt, ...) \ 1419 DRM_DEBUG_DRIVER(fmt, ##__VA_ARGS__) 1420 1421 /* Resource dirtying - vmwgfx_page_dirty.c */ 1422 void vmw_bo_dirty_scan(struct vmw_buffer_object *vbo); 1423 int vmw_bo_dirty_add(struct vmw_buffer_object *vbo); 1424 void vmw_bo_dirty_transfer_to_res(struct vmw_resource *res); 1425 void vmw_bo_dirty_clear_res(struct vmw_resource *res); 1426 void vmw_bo_dirty_release(struct vmw_buffer_object *vbo); 1427 void vmw_bo_dirty_unmap(struct vmw_buffer_object *vbo, 1428 pgoff_t start, pgoff_t end); 1429 vm_fault_t vmw_bo_vm_fault(struct vm_fault *vmf); 1430 vm_fault_t vmw_bo_vm_mkwrite(struct vm_fault *vmf); 1431 1432 /** 1433 * Inline helper functions 1434 */ 1435 1436 static inline void vmw_surface_unreference(struct vmw_surface **srf) 1437 { 1438 struct vmw_surface *tmp_srf = *srf; 1439 struct vmw_resource *res = &tmp_srf->res; 1440 *srf = NULL; 1441 1442 vmw_resource_unreference(&res); 1443 } 1444 1445 static inline struct vmw_surface *vmw_surface_reference(struct vmw_surface *srf) 1446 { 1447 (void) vmw_resource_reference(&srf->res); 1448 return srf; 1449 } 1450 1451 static inline void vmw_bo_unreference(struct vmw_buffer_object **buf) 1452 { 1453 struct vmw_buffer_object *tmp_buf = *buf; 1454 1455 *buf = NULL; 1456 if (tmp_buf != NULL) { 1457 ttm_bo_put(&tmp_buf->base); 1458 } 1459 } 1460 1461 static inline struct vmw_buffer_object * 1462 vmw_bo_reference(struct vmw_buffer_object *buf) 1463 { 1464 ttm_bo_get(&buf->base); 1465 return buf; 1466 } 1467 1468 static inline struct ttm_mem_global *vmw_mem_glob(struct vmw_private *dev_priv) 1469 { 1470 return &ttm_mem_glob; 1471 } 1472 1473 static inline void vmw_fifo_resource_inc(struct vmw_private *dev_priv) 1474 { 1475 atomic_inc(&dev_priv->num_fifo_resources); 1476 } 1477 1478 static inline void vmw_fifo_resource_dec(struct vmw_private *dev_priv) 1479 { 1480 atomic_dec(&dev_priv->num_fifo_resources); 1481 } 1482 1483 /** 1484 * vmw_mmio_read - Perform a MMIO read from volatile memory 1485 * 1486 * @addr: The address to read from 1487 * 1488 * This function is intended to be equivalent to ioread32() on 1489 * memremap'd memory, but without byteswapping. 1490 */ 1491 static inline u32 vmw_mmio_read(u32 *addr) 1492 { 1493 return READ_ONCE(*addr); 1494 } 1495 1496 /** 1497 * vmw_mmio_write - Perform a MMIO write to volatile memory 1498 * 1499 * @addr: The address to write to 1500 * 1501 * This function is intended to be equivalent to iowrite32 on 1502 * memremap'd memory, but without byteswapping. 1503 */ 1504 static inline void vmw_mmio_write(u32 value, u32 *addr) 1505 { 1506 WRITE_ONCE(*addr, value); 1507 } 1508 #endif 1509