Linux Audio

Check our new training course

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