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 
95 struct 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  */
109 struct 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  */
129 struct vmw_validate_buffer {
130 	struct ttm_validate_buffer base;
131 	struct drm_hash_item hash;
132 	bool validate_as_mob;
133 };
134 
135 struct 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  */
165 struct 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  */
188 enum 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  */
202 enum vmw_cmdbuf_res_type {
203 	vmw_cmdbuf_res_shader,
204 	vmw_cmdbuf_res_view
205 };
206 
207 struct vmw_cmdbuf_res_manager;
208 
209 struct vmw_cursor_snooper {
210 	size_t age;
211 	uint32_t *image;
212 };
213 
214 struct vmw_framebuffer;
215 struct vmw_surface_offset;
216 
217 struct 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 
237 struct vmw_marker_queue {
238 	struct list_head head;
239 	u64 lag;
240 	u64 lag_time;
241 	spinlock_t lock;
242 };
243 
244 struct 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  */
269 struct 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  */
280 enum 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  */
295 struct 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  */
318 struct 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  */
332 enum 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 
339 struct vmw_validation_context;
340 struct 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  */
373 struct 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 
398 struct vmw_legacy_display;
399 struct vmw_overlay;
400 
401 struct 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  */
416 struct vmw_otable {
417 	unsigned long size;
418 	struct vmw_mob *page_table;
419 	bool enabled;
420 };
421 
422 struct 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 
429 enum {
430 	VMW_IRQTHREAD_FENCE,
431 	VMW_IRQTHREAD_CMDBUF,
432 	VMW_IRQTHREAD_MAX
433 };
434 
435 struct vmw_private {
436 	struct ttm_bo_device bdev;
437 
438 	struct vmw_fifo_state fifo;
439 
440 	struct drm_device *dev;
441 	struct drm_vma_offset_manager vma_manager;
442 	unsigned long vmw_chipset;
443 	unsigned int io_start;
444 	uint32_t vram_start;
445 	uint32_t vram_size;
446 	uint32_t prim_bb_mem;
447 	uint32_t mmio_start;
448 	uint32_t mmio_size;
449 	uint32_t fb_max_width;
450 	uint32_t fb_max_height;
451 	uint32_t texture_max_width;
452 	uint32_t texture_max_height;
453 	uint32_t stdu_max_width;
454 	uint32_t stdu_max_height;
455 	uint32_t initial_width;
456 	uint32_t initial_height;
457 	u32 *mmio_virt;
458 	uint32_t capabilities;
459 	uint32_t capabilities2;
460 	uint32_t max_gmr_ids;
461 	uint32_t max_gmr_pages;
462 	uint32_t max_mob_pages;
463 	uint32_t max_mob_size;
464 	uint32_t memory_size;
465 	bool has_gmr;
466 	bool has_mob;
467 	spinlock_t hw_lock;
468 	spinlock_t cap_lock;
469 	bool has_dx;
470 	bool assume_16bpp;
471 	bool has_sm4_1;
472 
473 	/*
474 	 * VGA registers.
475 	 */
476 
477 	struct vmw_vga_topology_state vga_save[VMWGFX_MAX_DISPLAYS];
478 	uint32_t vga_width;
479 	uint32_t vga_height;
480 	uint32_t vga_bpp;
481 	uint32_t vga_bpl;
482 	uint32_t vga_pitchlock;
483 
484 	uint32_t num_displays;
485 
486 	/*
487 	 * Framebuffer info.
488 	 */
489 
490 	void *fb_info;
491 	enum vmw_display_unit_type active_display_unit;
492 	struct vmw_legacy_display *ldu_priv;
493 	struct vmw_overlay *overlay_priv;
494 	struct drm_property *hotplug_mode_update_property;
495 	struct drm_property *implicit_placement_property;
496 	struct mutex global_kms_state_mutex;
497 	spinlock_t cursor_lock;
498 	struct drm_atomic_state *suspend_state;
499 
500 	/*
501 	 * Context and surface management.
502 	 */
503 
504 	spinlock_t resource_lock;
505 	struct idr res_idr[vmw_res_max];
506 
507 	/*
508 	 * A resource manager for kernel-only surfaces and
509 	 * contexts.
510 	 */
511 
512 	struct ttm_object_device *tdev;
513 
514 	/*
515 	 * Fencing and IRQs.
516 	 */
517 
518 	atomic_t marker_seq;
519 	wait_queue_head_t fence_queue;
520 	wait_queue_head_t fifo_queue;
521 	spinlock_t waiter_lock;
522 	int fence_queue_waiters; /* Protected by waiter_lock */
523 	int goal_queue_waiters; /* Protected by waiter_lock */
524 	int cmdbuf_waiters; /* Protected by waiter_lock */
525 	int error_waiters; /* Protected by waiter_lock */
526 	int fifo_queue_waiters; /* Protected by waiter_lock */
527 	uint32_t last_read_seqno;
528 	struct vmw_fence_manager *fman;
529 	uint32_t irq_mask; /* Updates protected by waiter_lock */
530 
531 	/*
532 	 * Device state
533 	 */
534 
535 	uint32_t traces_state;
536 	uint32_t enable_state;
537 	uint32_t config_done_state;
538 
539 	/**
540 	 * Execbuf
541 	 */
542 	/**
543 	 * Protected by the cmdbuf mutex.
544 	 */
545 
546 	struct vmw_sw_context ctx;
547 	struct mutex cmdbuf_mutex;
548 	struct mutex binding_mutex;
549 
550 	/**
551 	 * Operating mode.
552 	 */
553 
554 	bool stealth;
555 	bool enable_fb;
556 	spinlock_t svga_lock;
557 
558 	/**
559 	 * PM management.
560 	 */
561 	struct notifier_block pm_nb;
562 	bool refuse_hibernation;
563 	bool suspend_locked;
564 
565 	struct mutex release_mutex;
566 	atomic_t num_fifo_resources;
567 
568 	/*
569 	 * Replace this with an rwsem as soon as we have down_xx_interruptible()
570 	 */
571 	struct ttm_lock reservation_sem;
572 
573 	/*
574 	 * Query processing. These members
575 	 * are protected by the cmdbuf mutex.
576 	 */
577 
578 	struct vmw_buffer_object *dummy_query_bo;
579 	struct vmw_buffer_object *pinned_bo;
580 	uint32_t query_cid;
581 	uint32_t query_cid_valid;
582 	bool dummy_query_bo_pinned;
583 
584 	/*
585 	 * Surface swapping. The "surface_lru" list is protected by the
586 	 * resource lock in order to be able to destroy a surface and take
587 	 * it off the lru atomically. "used_memory_size" is currently
588 	 * protected by the cmdbuf mutex for simplicity.
589 	 */
590 
591 	struct list_head res_lru[vmw_res_max];
592 	uint32_t used_memory_size;
593 
594 	/*
595 	 * DMA mapping stuff.
596 	 */
597 	enum vmw_dma_map_mode map_mode;
598 
599 	/*
600 	 * Guest Backed stuff
601 	 */
602 	struct vmw_otable_batch otable_batch;
603 
604 	struct vmw_cmdbuf_man *cman;
605 	DECLARE_BITMAP(irqthread_pending, VMW_IRQTHREAD_MAX);
606 
607 	/* Validation memory reservation */
608 	struct vmw_validation_mem vvm;
609 };
610 
611 static inline struct vmw_surface *vmw_res_to_srf(struct vmw_resource *res)
612 {
613 	return container_of(res, struct vmw_surface, res);
614 }
615 
616 static inline struct vmw_private *vmw_priv(struct drm_device *dev)
617 {
618 	return (struct vmw_private *)dev->dev_private;
619 }
620 
621 static inline struct vmw_fpriv *vmw_fpriv(struct drm_file *file_priv)
622 {
623 	return (struct vmw_fpriv *)file_priv->driver_priv;
624 }
625 
626 /*
627  * The locking here is fine-grained, so that it is performed once
628  * for every read- and write operation. This is of course costly, but we
629  * don't perform much register access in the timing critical paths anyway.
630  * Instead we have the extra benefit of being sure that we don't forget
631  * the hw lock around register accesses.
632  */
633 static inline void vmw_write(struct vmw_private *dev_priv,
634 			     unsigned int offset, uint32_t value)
635 {
636 	spin_lock(&dev_priv->hw_lock);
637 	outl(offset, dev_priv->io_start + VMWGFX_INDEX_PORT);
638 	outl(value, dev_priv->io_start + VMWGFX_VALUE_PORT);
639 	spin_unlock(&dev_priv->hw_lock);
640 }
641 
642 static inline uint32_t vmw_read(struct vmw_private *dev_priv,
643 				unsigned int offset)
644 {
645 	u32 val;
646 
647 	spin_lock(&dev_priv->hw_lock);
648 	outl(offset, dev_priv->io_start + VMWGFX_INDEX_PORT);
649 	val = inl(dev_priv->io_start + VMWGFX_VALUE_PORT);
650 	spin_unlock(&dev_priv->hw_lock);
651 
652 	return val;
653 }
654 
655 extern void vmw_svga_enable(struct vmw_private *dev_priv);
656 extern void vmw_svga_disable(struct vmw_private *dev_priv);
657 
658 
659 /**
660  * GMR utilities - vmwgfx_gmr.c
661  */
662 
663 extern int vmw_gmr_bind(struct vmw_private *dev_priv,
664 			const struct vmw_sg_table *vsgt,
665 			unsigned long num_pages,
666 			int gmr_id);
667 extern void vmw_gmr_unbind(struct vmw_private *dev_priv, int gmr_id);
668 
669 /**
670  * Resource utilities - vmwgfx_resource.c
671  */
672 struct vmw_user_resource_conv;
673 
674 extern void vmw_resource_unreference(struct vmw_resource **p_res);
675 extern struct vmw_resource *vmw_resource_reference(struct vmw_resource *res);
676 extern struct vmw_resource *
677 vmw_resource_reference_unless_doomed(struct vmw_resource *res);
678 extern int vmw_resource_validate(struct vmw_resource *res, bool intr);
679 extern int vmw_resource_reserve(struct vmw_resource *res, bool interruptible,
680 				bool no_backup);
681 extern bool vmw_resource_needs_backup(const struct vmw_resource *res);
682 extern int vmw_user_lookup_handle(struct vmw_private *dev_priv,
683 				  struct ttm_object_file *tfile,
684 				  uint32_t handle,
685 				  struct vmw_surface **out_surf,
686 				  struct vmw_buffer_object **out_buf);
687 extern int vmw_user_resource_lookup_handle(
688 	struct vmw_private *dev_priv,
689 	struct ttm_object_file *tfile,
690 	uint32_t handle,
691 	const struct vmw_user_resource_conv *converter,
692 	struct vmw_resource **p_res);
693 extern struct vmw_resource *
694 vmw_user_resource_noref_lookup_handle(struct vmw_private *dev_priv,
695 				      struct ttm_object_file *tfile,
696 				      uint32_t handle,
697 				      const struct vmw_user_resource_conv *
698 				      converter);
699 extern int vmw_stream_claim_ioctl(struct drm_device *dev, void *data,
700 				  struct drm_file *file_priv);
701 extern int vmw_stream_unref_ioctl(struct drm_device *dev, void *data,
702 				  struct drm_file *file_priv);
703 extern int vmw_user_stream_lookup(struct vmw_private *dev_priv,
704 				  struct ttm_object_file *tfile,
705 				  uint32_t *inout_id,
706 				  struct vmw_resource **out);
707 extern void vmw_resource_unreserve(struct vmw_resource *res,
708 				   bool dirty_set,
709 				   bool dirty,
710 				   bool switch_backup,
711 				   struct vmw_buffer_object *new_backup,
712 				   unsigned long new_backup_offset);
713 extern void vmw_query_move_notify(struct ttm_buffer_object *bo,
714 				  struct ttm_mem_reg *mem);
715 extern int vmw_query_readback_all(struct vmw_buffer_object *dx_query_mob);
716 extern void vmw_resource_evict_all(struct vmw_private *dev_priv);
717 extern void vmw_resource_unbind_list(struct vmw_buffer_object *vbo);
718 void vmw_resource_mob_attach(struct vmw_resource *res);
719 void vmw_resource_mob_detach(struct vmw_resource *res);
720 
721 /**
722  * vmw_resource_mob_attached - Whether a resource currently has a mob attached
723  * @res: The resource
724  *
725  * Return: true if the resource has a mob attached, false otherwise.
726  */
727 static inline bool vmw_resource_mob_attached(const struct vmw_resource *res)
728 {
729 	return !list_empty(&res->mob_head);
730 }
731 
732 /**
733  * vmw_user_resource_noref_release - release a user resource pointer looked up
734  * without reference
735  */
736 static inline void vmw_user_resource_noref_release(void)
737 {
738 	ttm_base_object_noref_release();
739 }
740 
741 /**
742  * Buffer object helper functions - vmwgfx_bo.c
743  */
744 extern int vmw_bo_pin_in_placement(struct vmw_private *vmw_priv,
745 				   struct vmw_buffer_object *bo,
746 				   struct ttm_placement *placement,
747 				   bool interruptible);
748 extern int vmw_bo_pin_in_vram(struct vmw_private *dev_priv,
749 			      struct vmw_buffer_object *buf,
750 			      bool interruptible);
751 extern int vmw_bo_pin_in_vram_or_gmr(struct vmw_private *dev_priv,
752 				     struct vmw_buffer_object *buf,
753 				     bool interruptible);
754 extern int vmw_bo_pin_in_start_of_vram(struct vmw_private *vmw_priv,
755 				       struct vmw_buffer_object *bo,
756 				       bool interruptible);
757 extern int vmw_bo_unpin(struct vmw_private *vmw_priv,
758 			struct vmw_buffer_object *bo,
759 			bool interruptible);
760 extern void vmw_bo_get_guest_ptr(const struct ttm_buffer_object *buf,
761 				 SVGAGuestPtr *ptr);
762 extern void vmw_bo_pin_reserved(struct vmw_buffer_object *bo, bool pin);
763 extern void vmw_bo_bo_free(struct ttm_buffer_object *bo);
764 extern int vmw_bo_init(struct vmw_private *dev_priv,
765 		       struct vmw_buffer_object *vmw_bo,
766 		       size_t size, struct ttm_placement *placement,
767 		       bool interuptable,
768 		       void (*bo_free)(struct ttm_buffer_object *bo));
769 extern int vmw_user_bo_verify_access(struct ttm_buffer_object *bo,
770 				     struct ttm_object_file *tfile);
771 extern int vmw_user_bo_alloc(struct vmw_private *dev_priv,
772 			     struct ttm_object_file *tfile,
773 			     uint32_t size,
774 			     bool shareable,
775 			     uint32_t *handle,
776 			     struct vmw_buffer_object **p_dma_buf,
777 			     struct ttm_base_object **p_base);
778 extern int vmw_user_bo_reference(struct ttm_object_file *tfile,
779 				 struct vmw_buffer_object *dma_buf,
780 				 uint32_t *handle);
781 extern int vmw_bo_alloc_ioctl(struct drm_device *dev, void *data,
782 			      struct drm_file *file_priv);
783 extern int vmw_bo_unref_ioctl(struct drm_device *dev, void *data,
784 			      struct drm_file *file_priv);
785 extern int vmw_user_bo_synccpu_ioctl(struct drm_device *dev, void *data,
786 				     struct drm_file *file_priv);
787 extern int vmw_user_bo_lookup(struct ttm_object_file *tfile,
788 			      uint32_t id, struct vmw_buffer_object **out,
789 			      struct ttm_base_object **base);
790 extern void vmw_bo_fence_single(struct ttm_buffer_object *bo,
791 				struct vmw_fence_obj *fence);
792 extern void *vmw_bo_map_and_cache(struct vmw_buffer_object *vbo);
793 extern void vmw_bo_unmap(struct vmw_buffer_object *vbo);
794 extern void vmw_bo_move_notify(struct ttm_buffer_object *bo,
795 			       struct ttm_mem_reg *mem);
796 extern void vmw_bo_swap_notify(struct ttm_buffer_object *bo);
797 extern struct vmw_buffer_object *
798 vmw_user_bo_noref_lookup(struct ttm_object_file *tfile, u32 handle);
799 
800 /**
801  * vmw_user_bo_noref_release - release a buffer object pointer looked up
802  * without reference
803  */
804 static inline void vmw_user_bo_noref_release(void)
805 {
806 	ttm_base_object_noref_release();
807 }
808 
809 /**
810  * vmw_bo_adjust_prio - Adjust the buffer object eviction priority
811  * according to attached resources
812  * @vbo: The struct vmw_buffer_object
813  */
814 static inline void vmw_bo_prio_adjust(struct vmw_buffer_object *vbo)
815 {
816 	int i = ARRAY_SIZE(vbo->res_prios);
817 
818 	while (i--) {
819 		if (vbo->res_prios[i]) {
820 			vbo->base.priority = i;
821 			return;
822 		}
823 	}
824 
825 	vbo->base.priority = 3;
826 }
827 
828 /**
829  * vmw_bo_prio_add - Notify a buffer object of a newly attached resource
830  * eviction priority
831  * @vbo: The struct vmw_buffer_object
832  * @prio: The resource priority
833  *
834  * After being notified, the code assigns the highest resource eviction priority
835  * to the backing buffer object (mob).
836  */
837 static inline void vmw_bo_prio_add(struct vmw_buffer_object *vbo, int prio)
838 {
839 	if (vbo->res_prios[prio]++ == 0)
840 		vmw_bo_prio_adjust(vbo);
841 }
842 
843 /**
844  * vmw_bo_prio_del - Notify a buffer object of a resource with a certain
845  * priority being removed
846  * @vbo: The struct vmw_buffer_object
847  * @prio: The resource priority
848  *
849  * After being notified, the code assigns the highest resource eviction priority
850  * to the backing buffer object (mob).
851  */
852 static inline void vmw_bo_prio_del(struct vmw_buffer_object *vbo, int prio)
853 {
854 	if (--vbo->res_prios[prio] == 0)
855 		vmw_bo_prio_adjust(vbo);
856 }
857 
858 /**
859  * Misc Ioctl functionality - vmwgfx_ioctl.c
860  */
861 
862 extern int vmw_getparam_ioctl(struct drm_device *dev, void *data,
863 			      struct drm_file *file_priv);
864 extern int vmw_get_cap_3d_ioctl(struct drm_device *dev, void *data,
865 				struct drm_file *file_priv);
866 extern int vmw_present_ioctl(struct drm_device *dev, void *data,
867 			     struct drm_file *file_priv);
868 extern int vmw_present_readback_ioctl(struct drm_device *dev, void *data,
869 				      struct drm_file *file_priv);
870 extern __poll_t vmw_fops_poll(struct file *filp,
871 				  struct poll_table_struct *wait);
872 extern ssize_t vmw_fops_read(struct file *filp, char __user *buffer,
873 			     size_t count, loff_t *offset);
874 
875 /**
876  * Fifo utilities - vmwgfx_fifo.c
877  */
878 
879 extern int vmw_fifo_init(struct vmw_private *dev_priv,
880 			 struct vmw_fifo_state *fifo);
881 extern void vmw_fifo_release(struct vmw_private *dev_priv,
882 			     struct vmw_fifo_state *fifo);
883 extern void *
884 vmw_fifo_reserve_dx(struct vmw_private *dev_priv, uint32_t bytes, int ctx_id);
885 extern void vmw_fifo_commit(struct vmw_private *dev_priv, uint32_t bytes);
886 extern void vmw_fifo_commit_flush(struct vmw_private *dev_priv, uint32_t bytes);
887 extern int vmw_fifo_send_fence(struct vmw_private *dev_priv,
888 			       uint32_t *seqno);
889 extern void vmw_fifo_ping_host_locked(struct vmw_private *, uint32_t reason);
890 extern void vmw_fifo_ping_host(struct vmw_private *dev_priv, uint32_t reason);
891 extern bool vmw_fifo_have_3d(struct vmw_private *dev_priv);
892 extern bool vmw_fifo_have_pitchlock(struct vmw_private *dev_priv);
893 extern int vmw_fifo_emit_dummy_query(struct vmw_private *dev_priv,
894 				     uint32_t cid);
895 extern int vmw_fifo_flush(struct vmw_private *dev_priv,
896 			  bool interruptible);
897 
898 #define VMW_FIFO_RESERVE_DX(__priv, __bytes, __ctx_id)                        \
899 ({                                                                            \
900 	vmw_fifo_reserve_dx(__priv, __bytes, __ctx_id) ? : ({                 \
901 		DRM_ERROR("FIFO reserve failed at %s for %u bytes\n",         \
902 			  __func__, (unsigned int) __bytes);                  \
903 		NULL;                                                         \
904 	});                                                                   \
905 })
906 
907 #define VMW_FIFO_RESERVE(__priv, __bytes)                                     \
908 	VMW_FIFO_RESERVE_DX(__priv, __bytes, SVGA3D_INVALID_ID)
909 
910 /**
911  * TTM glue - vmwgfx_ttm_glue.c
912  */
913 
914 extern int vmw_mmap(struct file *filp, struct vm_area_struct *vma);
915 
916 extern void vmw_validation_mem_init_ttm(struct vmw_private *dev_priv,
917 					size_t gran);
918 /**
919  * TTM buffer object driver - vmwgfx_ttm_buffer.c
920  */
921 
922 extern const size_t vmw_tt_size;
923 extern struct ttm_placement vmw_vram_placement;
924 extern struct ttm_placement vmw_vram_ne_placement;
925 extern struct ttm_placement vmw_vram_sys_placement;
926 extern struct ttm_placement vmw_vram_gmr_placement;
927 extern struct ttm_placement vmw_vram_gmr_ne_placement;
928 extern struct ttm_placement vmw_sys_placement;
929 extern struct ttm_placement vmw_sys_ne_placement;
930 extern struct ttm_placement vmw_evictable_placement;
931 extern struct ttm_placement vmw_srf_placement;
932 extern struct ttm_placement vmw_mob_placement;
933 extern struct ttm_placement vmw_mob_ne_placement;
934 extern struct ttm_placement vmw_nonfixed_placement;
935 extern struct ttm_bo_driver vmw_bo_driver;
936 extern int vmw_dma_quiescent(struct drm_device *dev);
937 extern int vmw_bo_map_dma(struct ttm_buffer_object *bo);
938 extern void vmw_bo_unmap_dma(struct ttm_buffer_object *bo);
939 extern const struct vmw_sg_table *
940 vmw_bo_sg_table(struct ttm_buffer_object *bo);
941 extern void vmw_piter_start(struct vmw_piter *viter,
942 			    const struct vmw_sg_table *vsgt,
943 			    unsigned long p_offs);
944 
945 /**
946  * vmw_piter_next - Advance the iterator one page.
947  *
948  * @viter: Pointer to the iterator to advance.
949  *
950  * Returns false if past the list of pages, true otherwise.
951  */
952 static inline bool vmw_piter_next(struct vmw_piter *viter)
953 {
954 	return viter->next(viter);
955 }
956 
957 /**
958  * vmw_piter_dma_addr - Return the DMA address of the current page.
959  *
960  * @viter: Pointer to the iterator
961  *
962  * Returns the DMA address of the page pointed to by @viter.
963  */
964 static inline dma_addr_t vmw_piter_dma_addr(struct vmw_piter *viter)
965 {
966 	return viter->dma_address(viter);
967 }
968 
969 /**
970  * vmw_piter_page - Return a pointer to the current page.
971  *
972  * @viter: Pointer to the iterator
973  *
974  * Returns the DMA address of the page pointed to by @viter.
975  */
976 static inline struct page *vmw_piter_page(struct vmw_piter *viter)
977 {
978 	return viter->page(viter);
979 }
980 
981 /**
982  * Command submission - vmwgfx_execbuf.c
983  */
984 
985 extern int vmw_execbuf_ioctl(struct drm_device *dev, void *data,
986 			     struct drm_file *file_priv);
987 extern int vmw_execbuf_process(struct drm_file *file_priv,
988 			       struct vmw_private *dev_priv,
989 			       void __user *user_commands,
990 			       void *kernel_commands,
991 			       uint32_t command_size,
992 			       uint64_t throttle_us,
993 			       uint32_t dx_context_handle,
994 			       struct drm_vmw_fence_rep __user
995 			       *user_fence_rep,
996 			       struct vmw_fence_obj **out_fence,
997 			       uint32_t flags);
998 extern void __vmw_execbuf_release_pinned_bo(struct vmw_private *dev_priv,
999 					    struct vmw_fence_obj *fence);
1000 extern void vmw_execbuf_release_pinned_bo(struct vmw_private *dev_priv);
1001 
1002 extern int vmw_execbuf_fence_commands(struct drm_file *file_priv,
1003 				      struct vmw_private *dev_priv,
1004 				      struct vmw_fence_obj **p_fence,
1005 				      uint32_t *p_handle);
1006 extern void vmw_execbuf_copy_fence_user(struct vmw_private *dev_priv,
1007 					struct vmw_fpriv *vmw_fp,
1008 					int ret,
1009 					struct drm_vmw_fence_rep __user
1010 					*user_fence_rep,
1011 					struct vmw_fence_obj *fence,
1012 					uint32_t fence_handle,
1013 					int32_t out_fence_fd,
1014 					struct sync_file *sync_file);
1015 bool vmw_cmd_describe(const void *buf, u32 *size, char const **cmd);
1016 
1017 /**
1018  * IRQs and wating - vmwgfx_irq.c
1019  */
1020 
1021 extern int vmw_wait_seqno(struct vmw_private *dev_priv, bool lazy,
1022 			  uint32_t seqno, bool interruptible,
1023 			  unsigned long timeout);
1024 extern int vmw_irq_install(struct drm_device *dev, int irq);
1025 extern void vmw_irq_uninstall(struct drm_device *dev);
1026 extern bool vmw_seqno_passed(struct vmw_private *dev_priv,
1027 				uint32_t seqno);
1028 extern int vmw_fallback_wait(struct vmw_private *dev_priv,
1029 			     bool lazy,
1030 			     bool fifo_idle,
1031 			     uint32_t seqno,
1032 			     bool interruptible,
1033 			     unsigned long timeout);
1034 extern void vmw_update_seqno(struct vmw_private *dev_priv,
1035 				struct vmw_fifo_state *fifo_state);
1036 extern void vmw_seqno_waiter_add(struct vmw_private *dev_priv);
1037 extern void vmw_seqno_waiter_remove(struct vmw_private *dev_priv);
1038 extern void vmw_goal_waiter_add(struct vmw_private *dev_priv);
1039 extern void vmw_goal_waiter_remove(struct vmw_private *dev_priv);
1040 extern void vmw_generic_waiter_add(struct vmw_private *dev_priv, u32 flag,
1041 				   int *waiter_count);
1042 extern void vmw_generic_waiter_remove(struct vmw_private *dev_priv,
1043 				      u32 flag, int *waiter_count);
1044 
1045 /**
1046  * Rudimentary fence-like objects currently used only for throttling -
1047  * vmwgfx_marker.c
1048  */
1049 
1050 extern void vmw_marker_queue_init(struct vmw_marker_queue *queue);
1051 extern void vmw_marker_queue_takedown(struct vmw_marker_queue *queue);
1052 extern int vmw_marker_push(struct vmw_marker_queue *queue,
1053 			   uint32_t seqno);
1054 extern int vmw_marker_pull(struct vmw_marker_queue *queue,
1055 			   uint32_t signaled_seqno);
1056 extern int vmw_wait_lag(struct vmw_private *dev_priv,
1057 			struct vmw_marker_queue *queue, uint32_t us);
1058 
1059 /**
1060  * Kernel framebuffer - vmwgfx_fb.c
1061  */
1062 
1063 int vmw_fb_init(struct vmw_private *vmw_priv);
1064 int vmw_fb_close(struct vmw_private *dev_priv);
1065 int vmw_fb_off(struct vmw_private *vmw_priv);
1066 int vmw_fb_on(struct vmw_private *vmw_priv);
1067 
1068 /**
1069  * Kernel modesetting - vmwgfx_kms.c
1070  */
1071 
1072 int vmw_kms_init(struct vmw_private *dev_priv);
1073 int vmw_kms_close(struct vmw_private *dev_priv);
1074 int vmw_kms_save_vga(struct vmw_private *vmw_priv);
1075 int vmw_kms_restore_vga(struct vmw_private *vmw_priv);
1076 int vmw_kms_cursor_bypass_ioctl(struct drm_device *dev, void *data,
1077 				struct drm_file *file_priv);
1078 void vmw_kms_cursor_post_execbuf(struct vmw_private *dev_priv);
1079 void vmw_kms_cursor_snoop(struct vmw_surface *srf,
1080 			  struct ttm_object_file *tfile,
1081 			  struct ttm_buffer_object *bo,
1082 			  SVGA3dCmdHeader *header);
1083 int vmw_kms_write_svga(struct vmw_private *vmw_priv,
1084 		       unsigned width, unsigned height, unsigned pitch,
1085 		       unsigned bpp, unsigned depth);
1086 bool vmw_kms_validate_mode_vram(struct vmw_private *dev_priv,
1087 				uint32_t pitch,
1088 				uint32_t height);
1089 u32 vmw_get_vblank_counter(struct drm_device *dev, unsigned int pipe);
1090 int vmw_enable_vblank(struct drm_device *dev, unsigned int pipe);
1091 void vmw_disable_vblank(struct drm_device *dev, unsigned int pipe);
1092 int vmw_kms_present(struct vmw_private *dev_priv,
1093 		    struct drm_file *file_priv,
1094 		    struct vmw_framebuffer *vfb,
1095 		    struct vmw_surface *surface,
1096 		    uint32_t sid, int32_t destX, int32_t destY,
1097 		    struct drm_vmw_rect *clips,
1098 		    uint32_t num_clips);
1099 int vmw_kms_update_layout_ioctl(struct drm_device *dev, void *data,
1100 				struct drm_file *file_priv);
1101 void vmw_kms_legacy_hotspot_clear(struct vmw_private *dev_priv);
1102 int vmw_kms_suspend(struct drm_device *dev);
1103 int vmw_kms_resume(struct drm_device *dev);
1104 void vmw_kms_lost_device(struct drm_device *dev);
1105 
1106 int vmw_dumb_create(struct drm_file *file_priv,
1107 		    struct drm_device *dev,
1108 		    struct drm_mode_create_dumb *args);
1109 
1110 int vmw_dumb_map_offset(struct drm_file *file_priv,
1111 			struct drm_device *dev, uint32_t handle,
1112 			uint64_t *offset);
1113 int vmw_dumb_destroy(struct drm_file *file_priv,
1114 		     struct drm_device *dev,
1115 		     uint32_t handle);
1116 extern int vmw_resource_pin(struct vmw_resource *res, bool interruptible);
1117 extern void vmw_resource_unpin(struct vmw_resource *res);
1118 extern enum vmw_res_type vmw_res_type(const struct vmw_resource *res);
1119 
1120 /**
1121  * Overlay control - vmwgfx_overlay.c
1122  */
1123 
1124 int vmw_overlay_init(struct vmw_private *dev_priv);
1125 int vmw_overlay_close(struct vmw_private *dev_priv);
1126 int vmw_overlay_ioctl(struct drm_device *dev, void *data,
1127 		      struct drm_file *file_priv);
1128 int vmw_overlay_stop_all(struct vmw_private *dev_priv);
1129 int vmw_overlay_resume_all(struct vmw_private *dev_priv);
1130 int vmw_overlay_pause_all(struct vmw_private *dev_priv);
1131 int vmw_overlay_claim(struct vmw_private *dev_priv, uint32_t *out);
1132 int vmw_overlay_unref(struct vmw_private *dev_priv, uint32_t stream_id);
1133 int vmw_overlay_num_overlays(struct vmw_private *dev_priv);
1134 int vmw_overlay_num_free_overlays(struct vmw_private *dev_priv);
1135 
1136 /**
1137  * GMR Id manager
1138  */
1139 
1140 extern const struct ttm_mem_type_manager_func vmw_gmrid_manager_func;
1141 
1142 /**
1143  * Prime - vmwgfx_prime.c
1144  */
1145 
1146 extern const struct dma_buf_ops vmw_prime_dmabuf_ops;
1147 extern int vmw_prime_fd_to_handle(struct drm_device *dev,
1148 				  struct drm_file *file_priv,
1149 				  int fd, u32 *handle);
1150 extern int vmw_prime_handle_to_fd(struct drm_device *dev,
1151 				  struct drm_file *file_priv,
1152 				  uint32_t handle, uint32_t flags,
1153 				  int *prime_fd);
1154 
1155 /*
1156  * MemoryOBject management -  vmwgfx_mob.c
1157  */
1158 struct vmw_mob;
1159 extern int vmw_mob_bind(struct vmw_private *dev_priv, struct vmw_mob *mob,
1160 			const struct vmw_sg_table *vsgt,
1161 			unsigned long num_data_pages, int32_t mob_id);
1162 extern void vmw_mob_unbind(struct vmw_private *dev_priv,
1163 			   struct vmw_mob *mob);
1164 extern void vmw_mob_destroy(struct vmw_mob *mob);
1165 extern struct vmw_mob *vmw_mob_create(unsigned long data_pages);
1166 extern int vmw_otables_setup(struct vmw_private *dev_priv);
1167 extern void vmw_otables_takedown(struct vmw_private *dev_priv);
1168 
1169 /*
1170  * Context management - vmwgfx_context.c
1171  */
1172 
1173 extern const struct vmw_user_resource_conv *user_context_converter;
1174 
1175 extern int vmw_context_check(struct vmw_private *dev_priv,
1176 			     struct ttm_object_file *tfile,
1177 			     int id,
1178 			     struct vmw_resource **p_res);
1179 extern int vmw_context_define_ioctl(struct drm_device *dev, void *data,
1180 				    struct drm_file *file_priv);
1181 extern int vmw_extended_context_define_ioctl(struct drm_device *dev, void *data,
1182 					     struct drm_file *file_priv);
1183 extern int vmw_context_destroy_ioctl(struct drm_device *dev, void *data,
1184 				     struct drm_file *file_priv);
1185 extern struct list_head *vmw_context_binding_list(struct vmw_resource *ctx);
1186 extern struct vmw_cmdbuf_res_manager *
1187 vmw_context_res_man(struct vmw_resource *ctx);
1188 extern struct vmw_resource *vmw_context_cotable(struct vmw_resource *ctx,
1189 						SVGACOTableType cotable_type);
1190 extern struct list_head *vmw_context_binding_list(struct vmw_resource *ctx);
1191 struct vmw_ctx_binding_state;
1192 extern struct vmw_ctx_binding_state *
1193 vmw_context_binding_state(struct vmw_resource *ctx);
1194 extern void vmw_dx_context_scrub_cotables(struct vmw_resource *ctx,
1195 					  bool readback);
1196 extern int vmw_context_bind_dx_query(struct vmw_resource *ctx_res,
1197 				     struct vmw_buffer_object *mob);
1198 extern struct vmw_buffer_object *
1199 vmw_context_get_dx_query_mob(struct vmw_resource *ctx_res);
1200 
1201 
1202 /*
1203  * Surface management - vmwgfx_surface.c
1204  */
1205 
1206 extern const struct vmw_user_resource_conv *user_surface_converter;
1207 
1208 extern void vmw_surface_res_free(struct vmw_resource *res);
1209 extern int vmw_surface_destroy_ioctl(struct drm_device *dev, void *data,
1210 				     struct drm_file *file_priv);
1211 extern int vmw_surface_define_ioctl(struct drm_device *dev, void *data,
1212 				    struct drm_file *file_priv);
1213 extern int vmw_surface_reference_ioctl(struct drm_device *dev, void *data,
1214 				       struct drm_file *file_priv);
1215 extern int vmw_gb_surface_define_ioctl(struct drm_device *dev, void *data,
1216 				       struct drm_file *file_priv);
1217 extern int vmw_gb_surface_reference_ioctl(struct drm_device *dev, void *data,
1218 					  struct drm_file *file_priv);
1219 extern int vmw_surface_check(struct vmw_private *dev_priv,
1220 			     struct ttm_object_file *tfile,
1221 			     uint32_t handle, int *id);
1222 extern int vmw_surface_validate(struct vmw_private *dev_priv,
1223 				struct vmw_surface *srf);
1224 int vmw_surface_gb_priv_define(struct drm_device *dev,
1225 			       uint32_t user_accounting_size,
1226 			       SVGA3dSurfaceAllFlags svga3d_flags,
1227 			       SVGA3dSurfaceFormat format,
1228 			       bool for_scanout,
1229 			       uint32_t num_mip_levels,
1230 			       uint32_t multisample_count,
1231 			       uint32_t array_size,
1232 			       struct drm_vmw_size size,
1233 			       SVGA3dMSPattern multisample_pattern,
1234 			       SVGA3dMSQualityLevel quality_level,
1235 			       struct vmw_surface **srf_out);
1236 extern int vmw_gb_surface_define_ext_ioctl(struct drm_device *dev,
1237 					   void *data,
1238 					   struct drm_file *file_priv);
1239 extern int vmw_gb_surface_reference_ext_ioctl(struct drm_device *dev,
1240 					      void *data,
1241 					      struct drm_file *file_priv);
1242 
1243 /*
1244  * Shader management - vmwgfx_shader.c
1245  */
1246 
1247 extern const struct vmw_user_resource_conv *user_shader_converter;
1248 
1249 extern int vmw_shader_define_ioctl(struct drm_device *dev, void *data,
1250 				   struct drm_file *file_priv);
1251 extern int vmw_shader_destroy_ioctl(struct drm_device *dev, void *data,
1252 				    struct drm_file *file_priv);
1253 extern int vmw_compat_shader_add(struct vmw_private *dev_priv,
1254 				 struct vmw_cmdbuf_res_manager *man,
1255 				 u32 user_key, const void *bytecode,
1256 				 SVGA3dShaderType shader_type,
1257 				 size_t size,
1258 				 struct list_head *list);
1259 extern int vmw_shader_remove(struct vmw_cmdbuf_res_manager *man,
1260 			     u32 user_key, SVGA3dShaderType shader_type,
1261 			     struct list_head *list);
1262 extern int vmw_dx_shader_add(struct vmw_cmdbuf_res_manager *man,
1263 			     struct vmw_resource *ctx,
1264 			     u32 user_key,
1265 			     SVGA3dShaderType shader_type,
1266 			     struct list_head *list);
1267 extern void vmw_dx_shader_cotable_list_scrub(struct vmw_private *dev_priv,
1268 					     struct list_head *list,
1269 					     bool readback);
1270 
1271 extern struct vmw_resource *
1272 vmw_shader_lookup(struct vmw_cmdbuf_res_manager *man,
1273 		  u32 user_key, SVGA3dShaderType shader_type);
1274 
1275 /*
1276  * Command buffer managed resources - vmwgfx_cmdbuf_res.c
1277  */
1278 
1279 extern struct vmw_cmdbuf_res_manager *
1280 vmw_cmdbuf_res_man_create(struct vmw_private *dev_priv);
1281 extern void vmw_cmdbuf_res_man_destroy(struct vmw_cmdbuf_res_manager *man);
1282 extern size_t vmw_cmdbuf_res_man_size(void);
1283 extern struct vmw_resource *
1284 vmw_cmdbuf_res_lookup(struct vmw_cmdbuf_res_manager *man,
1285 		      enum vmw_cmdbuf_res_type res_type,
1286 		      u32 user_key);
1287 extern void vmw_cmdbuf_res_revert(struct list_head *list);
1288 extern void vmw_cmdbuf_res_commit(struct list_head *list);
1289 extern int vmw_cmdbuf_res_add(struct vmw_cmdbuf_res_manager *man,
1290 			      enum vmw_cmdbuf_res_type res_type,
1291 			      u32 user_key,
1292 			      struct vmw_resource *res,
1293 			      struct list_head *list);
1294 extern int vmw_cmdbuf_res_remove(struct vmw_cmdbuf_res_manager *man,
1295 				 enum vmw_cmdbuf_res_type res_type,
1296 				 u32 user_key,
1297 				 struct list_head *list,
1298 				 struct vmw_resource **res);
1299 
1300 /*
1301  * COTable management - vmwgfx_cotable.c
1302  */
1303 extern const SVGACOTableType vmw_cotable_scrub_order[];
1304 extern struct vmw_resource *vmw_cotable_alloc(struct vmw_private *dev_priv,
1305 					      struct vmw_resource *ctx,
1306 					      u32 type);
1307 extern int vmw_cotable_notify(struct vmw_resource *res, int id);
1308 extern int vmw_cotable_scrub(struct vmw_resource *res, bool readback);
1309 extern void vmw_cotable_add_resource(struct vmw_resource *ctx,
1310 				     struct list_head *head);
1311 
1312 /*
1313  * Command buffer managerment vmwgfx_cmdbuf.c
1314  */
1315 struct vmw_cmdbuf_man;
1316 struct vmw_cmdbuf_header;
1317 
1318 extern struct vmw_cmdbuf_man *
1319 vmw_cmdbuf_man_create(struct vmw_private *dev_priv);
1320 extern int vmw_cmdbuf_set_pool_size(struct vmw_cmdbuf_man *man,
1321 				    size_t size, size_t default_size);
1322 extern void vmw_cmdbuf_remove_pool(struct vmw_cmdbuf_man *man);
1323 extern void vmw_cmdbuf_man_destroy(struct vmw_cmdbuf_man *man);
1324 extern int vmw_cmdbuf_idle(struct vmw_cmdbuf_man *man, bool interruptible,
1325 			   unsigned long timeout);
1326 extern void *vmw_cmdbuf_reserve(struct vmw_cmdbuf_man *man, size_t size,
1327 				int ctx_id, bool interruptible,
1328 				struct vmw_cmdbuf_header *header);
1329 extern void vmw_cmdbuf_commit(struct vmw_cmdbuf_man *man, size_t size,
1330 			      struct vmw_cmdbuf_header *header,
1331 			      bool flush);
1332 extern void *vmw_cmdbuf_alloc(struct vmw_cmdbuf_man *man,
1333 			      size_t size, bool interruptible,
1334 			      struct vmw_cmdbuf_header **p_header);
1335 extern void vmw_cmdbuf_header_free(struct vmw_cmdbuf_header *header);
1336 extern int vmw_cmdbuf_cur_flush(struct vmw_cmdbuf_man *man,
1337 				bool interruptible);
1338 extern void vmw_cmdbuf_irqthread(struct vmw_cmdbuf_man *man);
1339 
1340 /* CPU blit utilities - vmwgfx_blit.c */
1341 
1342 /**
1343  * struct vmw_diff_cpy - CPU blit information structure
1344  *
1345  * @rect: The output bounding box rectangle.
1346  * @line: The current line of the blit.
1347  * @line_offset: Offset of the current line segment.
1348  * @cpp: Bytes per pixel (granularity information).
1349  * @memcpy: Which memcpy function to use.
1350  */
1351 struct vmw_diff_cpy {
1352 	struct drm_rect rect;
1353 	size_t line;
1354 	size_t line_offset;
1355 	int cpp;
1356 	void (*do_cpy)(struct vmw_diff_cpy *diff, u8 *dest, const u8 *src,
1357 		       size_t n);
1358 };
1359 
1360 #define VMW_CPU_BLIT_INITIALIZER {	\
1361 	.do_cpy = vmw_memcpy,		\
1362 }
1363 
1364 #define VMW_CPU_BLIT_DIFF_INITIALIZER(_cpp) {	  \
1365 	.line = 0,				  \
1366 	.line_offset = 0,			  \
1367 	.rect = { .x1 = INT_MAX/2,		  \
1368 		  .y1 = INT_MAX/2,		  \
1369 		  .x2 = INT_MIN/2,		  \
1370 		  .y2 = INT_MIN/2		  \
1371 	},					  \
1372 	.cpp = _cpp,				  \
1373 	.do_cpy = vmw_diff_memcpy,		  \
1374 }
1375 
1376 void vmw_diff_memcpy(struct vmw_diff_cpy *diff, u8 *dest, const u8 *src,
1377 		     size_t n);
1378 
1379 void vmw_memcpy(struct vmw_diff_cpy *diff, u8 *dest, const u8 *src, size_t n);
1380 
1381 int vmw_bo_cpu_blit(struct ttm_buffer_object *dst,
1382 		    u32 dst_offset, u32 dst_stride,
1383 		    struct ttm_buffer_object *src,
1384 		    u32 src_offset, u32 src_stride,
1385 		    u32 w, u32 h,
1386 		    struct vmw_diff_cpy *diff);
1387 
1388 /* Host messaging -vmwgfx_msg.c: */
1389 int vmw_host_get_guestinfo(const char *guest_info_param,
1390 			   char *buffer, size_t *length);
1391 int vmw_host_log(const char *log);
1392 
1393 /* VMW logging */
1394 
1395 /**
1396  * VMW_DEBUG_USER - Debug output for user-space debugging.
1397  *
1398  * @fmt: printf() like format string.
1399  *
1400  * This macro is for logging user-space error and debugging messages for e.g.
1401  * command buffer execution errors due to malformed commands, invalid context,
1402  * etc.
1403  */
1404 #define VMW_DEBUG_USER(fmt, ...)                                              \
1405 	DRM_DEBUG_DRIVER(fmt, ##__VA_ARGS__)
1406 
1407 /**
1408  * VMW_DEBUG_KMS - Debug output for kernel mode-setting
1409  *
1410  * This macro is for debugging vmwgfx mode-setting code.
1411  */
1412 #define VMW_DEBUG_KMS(fmt, ...)                                               \
1413 	DRM_DEBUG_DRIVER(fmt, ##__VA_ARGS__)
1414 
1415 /**
1416  * Inline helper functions
1417  */
1418 
1419 static inline void vmw_surface_unreference(struct vmw_surface **srf)
1420 {
1421 	struct vmw_surface *tmp_srf = *srf;
1422 	struct vmw_resource *res = &tmp_srf->res;
1423 	*srf = NULL;
1424 
1425 	vmw_resource_unreference(&res);
1426 }
1427 
1428 static inline struct vmw_surface *vmw_surface_reference(struct vmw_surface *srf)
1429 {
1430 	(void) vmw_resource_reference(&srf->res);
1431 	return srf;
1432 }
1433 
1434 static inline void vmw_bo_unreference(struct vmw_buffer_object **buf)
1435 {
1436 	struct vmw_buffer_object *tmp_buf = *buf;
1437 
1438 	*buf = NULL;
1439 	if (tmp_buf != NULL) {
1440 		ttm_bo_put(&tmp_buf->base);
1441 	}
1442 }
1443 
1444 static inline struct vmw_buffer_object *
1445 vmw_bo_reference(struct vmw_buffer_object *buf)
1446 {
1447 	ttm_bo_get(&buf->base);
1448 	return buf;
1449 }
1450 
1451 static inline struct ttm_mem_global *vmw_mem_glob(struct vmw_private *dev_priv)
1452 {
1453 	return &ttm_mem_glob;
1454 }
1455 
1456 static inline void vmw_fifo_resource_inc(struct vmw_private *dev_priv)
1457 {
1458 	atomic_inc(&dev_priv->num_fifo_resources);
1459 }
1460 
1461 static inline void vmw_fifo_resource_dec(struct vmw_private *dev_priv)
1462 {
1463 	atomic_dec(&dev_priv->num_fifo_resources);
1464 }
1465 
1466 /**
1467  * vmw_mmio_read - Perform a MMIO read from volatile memory
1468  *
1469  * @addr: The address to read from
1470  *
1471  * This function is intended to be equivalent to ioread32() on
1472  * memremap'd memory, but without byteswapping.
1473  */
1474 static inline u32 vmw_mmio_read(u32 *addr)
1475 {
1476 	return READ_ONCE(*addr);
1477 }
1478 
1479 /**
1480  * vmw_mmio_write - Perform a MMIO write to volatile memory
1481  *
1482  * @addr: The address to write to
1483  *
1484  * This function is intended to be equivalent to iowrite32 on
1485  * memremap'd memory, but without byteswapping.
1486  */
1487 static inline void vmw_mmio_write(u32 value, u32 *addr)
1488 {
1489 	WRITE_ONCE(*addr, value);
1490 }
1491 #endif
1492