drm/vmwgfx: Initial DX support
[linux-2.6-block.git] / drivers / gpu / drm / vmwgfx / vmwgfx_drv.h
CommitLineData
fb1d9738
JB
1/**************************************************************************
2 *
c8261a96 3 * Copyright © 2009-2014 VMware, Inc., Palo Alto, CA., USA
fb1d9738
JB
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"
760285e7
DH
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>
ae2a1040 41#include "vmwgfx_fence.h"
fb1d9738 42
35c05125 43#define VMWGFX_DRIVER_DATE "20150626"
2ae7b03c 44#define VMWGFX_DRIVER_MAJOR 2
35c05125
SY
45#define VMWGFX_DRIVER_MINOR 7
46#define VMWGFX_DRIVER_PATCHLEVEL 0
fb1d9738
JB
47#define VMWGFX_FILE_PAGE_OFFSET 0x00100000
48#define VMWGFX_FIFO_STATIC_SIZE (1024*1024)
49#define VMWGFX_MAX_RELOCATIONS 2048
be38ab6e 50#define VMWGFX_MAX_VALIDATIONS 2048
7c4f7780 51#define VMWGFX_MAX_DISPLAYS 16
be38ab6e 52#define VMWGFX_CMD_BOUNCE_INIT_SIZE 32768
35c05125 53#define VMWGFX_ENABLE_SCREEN_TARGET_OTABLE 1
fb1d9738 54
3530bdc3
TH
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
7cba9062 61#define VMWGFX_NUM_GB_SCREEN_TARGET VMWGFX_MAX_DISPLAYS
d80efd5c
TH
62#define VMWGFX_NUM_DXCONTEXT 256
63#define VMWGFX_NUM_DXQUERY 512
3530bdc3
TH
64#define VMWGFX_NUM_MOB (VMWGFX_NUM_GB_CONTEXT +\
65 VMWGFX_NUM_GB_SHADER +\
7cba9062
TH
66 VMWGFX_NUM_GB_SURFACE +\
67 VMWGFX_NUM_GB_SCREEN_TARGET)
3530bdc3 68
135cba0d
TH
69#define VMW_PL_GMR TTM_PL_PRIV0
70#define VMW_PL_FLAG_GMR TTM_PL_FLAG_PRIV0
6da768aa
TH
71#define VMW_PL_MOB TTM_PL_PRIV1
72#define VMW_PL_FLAG_MOB TTM_PL_FLAG_PRIV1
135cba0d 73
ae2a1040
TH
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
c74c162f 78#define VMW_RES_SHADER ttm_driver_type4
ae2a1040 79
fb1d9738
JB
80struct vmw_fpriv {
81 struct drm_master *locked_master;
82 struct ttm_object_file *tfile;
6b82ef50 83 struct list_head fence_events;
d5bde956 84 bool gb_aware;
fb1d9738
JB
85};
86
87struct vmw_dma_buffer {
88 struct ttm_buffer_object base;
c0951b79 89 struct list_head res_list;
459d0fa7 90 s32 pin_count;
fb1d9738
JB
91};
92
c0951b79
TH
93/**
94 * struct vmw_validate_buffer - Carries validation info about buffers.
95 *
96 * @base: Validation info for TTM.
97 * @hash: Hash entry for quick lookup of the TTM buffer object.
98 *
99 * This structure contains also driver private validation info
100 * on top of the info needed by TTM.
101 */
102struct vmw_validate_buffer {
103 struct ttm_validate_buffer base;
104 struct drm_hash_item hash;
96c5f0df 105 bool validate_as_mob;
c0951b79
TH
106};
107
108struct vmw_res_func;
fb1d9738
JB
109struct vmw_resource {
110 struct kref kref;
111 struct vmw_private *dev_priv;
fb1d9738 112 int id;
fb1d9738 113 bool avail;
c0951b79
TH
114 unsigned long backup_size;
115 bool res_dirty; /* Protected by backup buffer reserved */
116 bool backup_dirty; /* Protected by backup buffer reserved */
117 struct vmw_dma_buffer *backup;
118 unsigned long backup_offset;
ed93394c 119 unsigned long pin_count; /* Protected by resource reserved */
c0951b79
TH
120 const struct vmw_res_func *func;
121 struct list_head lru_head; /* Protected by the resource lock */
122 struct list_head mob_head; /* Protected by @backup reserved */
173fb7d4 123 struct list_head binding_head; /* Protected by binding_mutex */
fb1d9738 124 void (*res_free) (struct vmw_resource *res);
c0951b79
TH
125 void (*hw_destroy) (struct vmw_resource *res);
126};
127
18e4a466
TH
128
129/*
130 * Resources that are managed using ioctls.
131 */
c0951b79
TH
132enum vmw_res_type {
133 vmw_res_context,
134 vmw_res_surface,
135 vmw_res_stream,
c74c162f 136 vmw_res_shader,
d80efd5c
TH
137 vmw_res_dx_context,
138 vmw_res_cotable,
139 vmw_res_view,
c0951b79 140 vmw_res_max
fb1d9738
JB
141};
142
18e4a466
TH
143/*
144 * Resources that are managed using command streams.
145 */
146enum vmw_cmdbuf_res_type {
d80efd5c
TH
147 vmw_cmdbuf_res_shader,
148 vmw_cmdbuf_res_view
18e4a466
TH
149};
150
151struct vmw_cmdbuf_res_manager;
152
fb1d9738
JB
153struct vmw_cursor_snooper {
154 struct drm_crtc *crtc;
155 size_t age;
156 uint32_t *image;
157};
158
2fcd5a73 159struct vmw_framebuffer;
5bb39e81 160struct vmw_surface_offset;
2fcd5a73 161
fb1d9738
JB
162struct vmw_surface {
163 struct vmw_resource res;
164 uint32_t flags;
165 uint32_t format;
166 uint32_t mip_levels[DRM_VMW_MAX_SURFACE_FACES];
c0951b79 167 struct drm_vmw_size base_size;
fb1d9738
JB
168 struct drm_vmw_size *sizes;
169 uint32_t num_sizes;
5ffdb658 170 bool scanout;
d80efd5c 171 uint32_t array_size;
fb1d9738
JB
172 /* TODO so far just a extra pointer */
173 struct vmw_cursor_snooper snooper;
5bb39e81 174 struct vmw_surface_offset *offsets;
c0951b79
TH
175 SVGA3dTextureFilter autogen_filter;
176 uint32_t multisample_count;
d80efd5c 177 struct list_head view_list;
fb1d9738
JB
178};
179
6bcd8d3c 180struct vmw_marker_queue {
1925d456 181 struct list_head head;
f166e6dc
TG
182 u64 lag;
183 u64 lag_time;
1925d456
TH
184 spinlock_t lock;
185};
186
fb1d9738
JB
187struct vmw_fifo_state {
188 unsigned long reserved_size;
b9eb1a61
TH
189 u32 *dynamic_buffer;
190 u32 *static_buffer;
fb1d9738
JB
191 unsigned long static_buffer_size;
192 bool using_bounce_buffer;
193 uint32_t capabilities;
85b9e487 194 struct mutex fifo_mutex;
fb1d9738 195 struct rw_semaphore rwsem;
6bcd8d3c 196 struct vmw_marker_queue marker_queue;
d80efd5c 197 bool dx;
fb1d9738
JB
198};
199
200struct vmw_relocation {
ddcda24e 201 SVGAMobId *mob_loc;
fb1d9738
JB
202 SVGAGuestPtr *location;
203 uint32_t index;
204};
205
c0951b79
TH
206/**
207 * struct vmw_res_cache_entry - resource information cache entry
208 *
209 * @valid: Whether the entry is valid, which also implies that the execbuf
210 * code holds a reference to the resource, and it's placed on the
211 * validation list.
212 * @handle: User-space handle of a resource.
213 * @res: Non-ref-counted pointer to the resource.
214 *
215 * Used to avoid frequent repeated user-space handle lookups of the
216 * same resource.
217 */
218struct vmw_res_cache_entry {
219 bool valid;
220 uint32_t handle;
221 struct vmw_resource *res;
222 struct vmw_resource_val_node *node;
223};
224
d92d9851
TH
225/**
226 * enum vmw_dma_map_mode - indicate how to perform TTM page dma mappings.
227 */
228enum vmw_dma_map_mode {
229 vmw_dma_phys, /* Use physical page addresses */
230 vmw_dma_alloc_coherent, /* Use TTM coherent pages */
231 vmw_dma_map_populate, /* Unmap from DMA just after unpopulate */
232 vmw_dma_map_bind, /* Unmap from DMA just before unbind */
233 vmw_dma_map_max
234};
235
236/**
237 * struct vmw_sg_table - Scatter/gather table for binding, with additional
238 * device-specific information.
239 *
240 * @sgt: Pointer to a struct sg_table with binding information
241 * @num_regions: Number of regions with device-address contigous pages
242 */
243struct vmw_sg_table {
244 enum vmw_dma_map_mode mode;
245 struct page **pages;
246 const dma_addr_t *addrs;
247 struct sg_table *sgt;
248 unsigned long num_regions;
249 unsigned long num_pages;
250};
251
252/**
253 * struct vmw_piter - Page iterator that iterates over a list of pages
254 * and DMA addresses that could be either a scatter-gather list or
255 * arrays
256 *
257 * @pages: Array of page pointers to the pages.
258 * @addrs: DMA addresses to the pages if coherent pages are used.
259 * @iter: Scatter-gather page iterator. Current position in SG list.
260 * @i: Current position in arrays.
261 * @num_pages: Number of pages total.
262 * @next: Function to advance the iterator. Returns false if past the list
263 * of pages, true otherwise.
264 * @dma_address: Function to return the DMA address of the current page.
265 */
266struct vmw_piter {
267 struct page **pages;
268 const dma_addr_t *addrs;
269 struct sg_page_iter iter;
270 unsigned long i;
271 unsigned long num_pages;
272 bool (*next)(struct vmw_piter *);
273 dma_addr_t (*dma_address)(struct vmw_piter *);
274 struct page *(*page)(struct vmw_piter *);
275};
276
c8261a96
SY
277/*
278 * enum vmw_display_unit_type - Describes the display unit
279 */
280enum vmw_display_unit_type {
281 vmw_du_invalid = 0,
282 vmw_du_legacy,
35c05125
SY
283 vmw_du_screen_object,
284 vmw_du_screen_target
c8261a96
SY
285};
286
287
fb1d9738 288struct vmw_sw_context{
c0951b79
TH
289 struct drm_open_hash res_ht;
290 bool res_ht_initialized;
922ade0d 291 bool kernel; /**< is the called made from the kernel */
d5bde956 292 struct vmw_fpriv *fp;
fb1d9738
JB
293 struct list_head validate_nodes;
294 struct vmw_relocation relocs[VMWGFX_MAX_RELOCATIONS];
295 uint32_t cur_reloc;
c0951b79 296 struct vmw_validate_buffer val_bufs[VMWGFX_MAX_VALIDATIONS];
fb1d9738 297 uint32_t cur_val_buf;
be38ab6e
TH
298 uint32_t *cmd_bounce;
299 uint32_t cmd_bounce_size;
f18c8840 300 struct list_head resource_list;
d80efd5c 301 struct list_head ctx_resource_list; /* For contexts and cotables */
459d0fa7 302 struct vmw_dma_buffer *cur_query_bo;
c0951b79
TH
303 struct list_head res_relocations;
304 uint32_t *buf_start;
305 struct vmw_res_cache_entry res_cache[vmw_res_max];
306 struct vmw_resource *last_query_ctx;
307 bool needs_post_query_barrier;
308 struct vmw_resource *error_resource;
d80efd5c
TH
309 struct vmw_ctx_binding_state *staged_bindings;
310 bool staged_bindings_inuse;
18e4a466 311 struct list_head staged_cmd_res;
d80efd5c
TH
312 struct vmw_resource_val_node *dx_ctx_node;
313 struct vmw_dma_buffer *dx_query_mob;
314 struct vmw_resource *dx_query_ctx;
315 struct vmw_cmdbuf_res_manager *man;
fb1d9738
JB
316};
317
318struct vmw_legacy_display;
319struct vmw_overlay;
320
321struct vmw_master {
322 struct ttm_lock lock;
323};
324
7c4f7780
TH
325struct vmw_vga_topology_state {
326 uint32_t width;
327 uint32_t height;
328 uint32_t primary;
329 uint32_t pos_x;
330 uint32_t pos_y;
331};
332
d80efd5c
TH
333
334/*
335 * struct vmw_otable - Guest Memory OBject table metadata
336 *
337 * @size: Size of the table (page-aligned).
338 * @page_table: Pointer to a struct vmw_mob holding the page table.
339 */
340struct vmw_otable {
341 unsigned long size;
342 struct vmw_mob *page_table;
343 bool enabled;
344};
345
346struct vmw_otable_batch {
347 unsigned num_otables;
348 struct vmw_otable *otables;
349 struct vmw_resource *context;
350 struct ttm_buffer_object *otable_bo;
351};
352
fb1d9738
JB
353struct vmw_private {
354 struct ttm_bo_device bdev;
355 struct ttm_bo_global_ref bo_global_ref;
ba4420c2 356 struct drm_global_reference mem_global_ref;
fb1d9738
JB
357
358 struct vmw_fifo_state fifo;
359
360 struct drm_device *dev;
361 unsigned long vmw_chipset;
362 unsigned int io_start;
363 uint32_t vram_start;
364 uint32_t vram_size;
bc2d6508 365 uint32_t prim_bb_mem;
fb1d9738
JB
366 uint32_t mmio_start;
367 uint32_t mmio_size;
368 uint32_t fb_max_width;
369 uint32_t fb_max_height;
35c05125
SY
370 uint32_t texture_max_width;
371 uint32_t texture_max_height;
372 uint32_t stdu_max_width;
373 uint32_t stdu_max_height;
eb4f923b
JB
374 uint32_t initial_width;
375 uint32_t initial_height;
b9eb1a61 376 u32 __iomem *mmio_virt;
fb1d9738
JB
377 int mmio_mtrr;
378 uint32_t capabilities;
fb1d9738 379 uint32_t max_gmr_ids;
fb17f189 380 uint32_t max_gmr_pages;
6da768aa 381 uint32_t max_mob_pages;
857aea1c 382 uint32_t max_mob_size;
fb17f189 383 uint32_t memory_size;
135cba0d 384 bool has_gmr;
3530bdc3 385 bool has_mob;
496eb6fd
TH
386 spinlock_t hw_lock;
387 spinlock_t cap_lock;
d80efd5c 388 bool has_dx;
fb1d9738
JB
389
390 /*
391 * VGA registers.
392 */
393
7c4f7780 394 struct vmw_vga_topology_state vga_save[VMWGFX_MAX_DISPLAYS];
fb1d9738
JB
395 uint32_t vga_width;
396 uint32_t vga_height;
fb1d9738 397 uint32_t vga_bpp;
7c4f7780 398 uint32_t vga_bpl;
d7e1958d 399 uint32_t vga_pitchlock;
fb1d9738 400
7c4f7780
TH
401 uint32_t num_displays;
402
fb1d9738
JB
403 /*
404 * Framebuffer info.
405 */
406
407 void *fb_info;
c8261a96 408 enum vmw_display_unit_type active_display_unit;
fb1d9738 409 struct vmw_legacy_display *ldu_priv;
56d1c78d 410 struct vmw_screen_object_display *sou_priv;
fb1d9738
JB
411 struct vmw_overlay *overlay_priv;
412
413 /*
414 * Context and surface management.
415 */
416
417 rwlock_t resource_lock;
c0951b79 418 struct idr res_idr[vmw_res_max];
fb1d9738
JB
419 /*
420 * Block lastclose from racing with firstopen.
421 */
422
423 struct mutex init_mutex;
424
425 /*
426 * A resource manager for kernel-only surfaces and
427 * contexts.
428 */
429
430 struct ttm_object_device *tdev;
431
432 /*
433 * Fencing and IRQs.
434 */
435
6bcd8d3c 436 atomic_t marker_seq;
fb1d9738
JB
437 wait_queue_head_t fence_queue;
438 wait_queue_head_t fifo_queue;
496eb6fd
TH
439 spinlock_t waiter_lock;
440 int fence_queue_waiters; /* Protected by waiter_lock */
441 int goal_queue_waiters; /* Protected by waiter_lock */
3eab3d9e
TH
442 int cmdbuf_waiters; /* Protected by irq_lock */
443 int error_waiters; /* Protected by irq_lock */
fb1d9738 444 atomic_t fifo_queue_waiters;
6bcd8d3c 445 uint32_t last_read_seqno;
fb1d9738 446 spinlock_t irq_lock;
ae2a1040 447 struct vmw_fence_manager *fman;
57c5ee79 448 uint32_t irq_mask;
fb1d9738
JB
449
450 /*
451 * Device state
452 */
453
454 uint32_t traces_state;
455 uint32_t enable_state;
456 uint32_t config_done_state;
457
458 /**
459 * Execbuf
460 */
461 /**
462 * Protected by the cmdbuf mutex.
463 */
464
465 struct vmw_sw_context ctx;
fb1d9738 466 struct mutex cmdbuf_mutex;
173fb7d4 467 struct mutex binding_mutex;
fb1d9738 468
fb1d9738
JB
469 /**
470 * Operating mode.
471 */
472
473 bool stealth;
30c78bb8 474 bool enable_fb;
153b3d5b 475 spinlock_t svga_lock;
fb1d9738
JB
476
477 /**
478 * Master management.
479 */
480
481 struct vmw_master *active_master;
482 struct vmw_master fbdev_master;
d9f36a00 483 struct notifier_block pm_nb;
094e0fa8 484 bool suspended;
153b3d5b 485 bool refuse_hibernation;
30c78bb8
TH
486
487 struct mutex release_mutex;
153b3d5b 488 atomic_t num_fifo_resources;
e2fa3a76 489
294adf7d
TH
490 /*
491 * Replace this with an rwsem as soon as we have down_xx_interruptible()
492 */
493 struct ttm_lock reservation_sem;
494
e2fa3a76
TH
495 /*
496 * Query processing. These members
497 * are protected by the cmdbuf mutex.
498 */
499
459d0fa7
TH
500 struct vmw_dma_buffer *dummy_query_bo;
501 struct vmw_dma_buffer *pinned_bo;
e2fa3a76 502 uint32_t query_cid;
c0951b79 503 uint32_t query_cid_valid;
e2fa3a76 504 bool dummy_query_bo_pinned;
5bb39e81
TH
505
506 /*
507 * Surface swapping. The "surface_lru" list is protected by the
508 * resource lock in order to be able to destroy a surface and take
509 * it off the lru atomically. "used_memory_size" is currently
510 * protected by the cmdbuf mutex for simplicity.
511 */
512
c0951b79 513 struct list_head res_lru[vmw_res_max];
5bb39e81 514 uint32_t used_memory_size;
d92d9851
TH
515
516 /*
517 * DMA mapping stuff.
518 */
519 enum vmw_dma_map_mode map_mode;
3530bdc3
TH
520
521 /*
522 * Guest Backed stuff
523 */
d80efd5c 524 struct vmw_otable_batch otable_batch;
3eab3d9e
TH
525
526 struct vmw_cmdbuf_man *cman;
fb1d9738
JB
527};
528
c0951b79
TH
529static inline struct vmw_surface *vmw_res_to_srf(struct vmw_resource *res)
530{
531 return container_of(res, struct vmw_surface, res);
532}
533
fb1d9738
JB
534static inline struct vmw_private *vmw_priv(struct drm_device *dev)
535{
536 return (struct vmw_private *)dev->dev_private;
537}
538
539static inline struct vmw_fpriv *vmw_fpriv(struct drm_file *file_priv)
540{
541 return (struct vmw_fpriv *)file_priv->driver_priv;
542}
543
544static inline struct vmw_master *vmw_master(struct drm_master *master)
545{
546 return (struct vmw_master *) master->driver_priv;
547}
548
496eb6fd
TH
549/*
550 * The locking here is fine-grained, so that it is performed once
551 * for every read- and write operation. This is of course costly, but we
552 * don't perform much register access in the timing critical paths anyway.
553 * Instead we have the extra benefit of being sure that we don't forget
554 * the hw lock around register accesses.
555 */
fb1d9738
JB
556static inline void vmw_write(struct vmw_private *dev_priv,
557 unsigned int offset, uint32_t value)
558{
496eb6fd
TH
559 unsigned long irq_flags;
560
561 spin_lock_irqsave(&dev_priv->hw_lock, irq_flags);
fb1d9738
JB
562 outl(offset, dev_priv->io_start + VMWGFX_INDEX_PORT);
563 outl(value, dev_priv->io_start + VMWGFX_VALUE_PORT);
496eb6fd 564 spin_unlock_irqrestore(&dev_priv->hw_lock, irq_flags);
fb1d9738
JB
565}
566
567static inline uint32_t vmw_read(struct vmw_private *dev_priv,
568 unsigned int offset)
569{
496eb6fd
TH
570 unsigned long irq_flags;
571 u32 val;
fb1d9738 572
496eb6fd 573 spin_lock_irqsave(&dev_priv->hw_lock, irq_flags);
fb1d9738
JB
574 outl(offset, dev_priv->io_start + VMWGFX_INDEX_PORT);
575 val = inl(dev_priv->io_start + VMWGFX_VALUE_PORT);
496eb6fd
TH
576 spin_unlock_irqrestore(&dev_priv->hw_lock, irq_flags);
577
fb1d9738
JB
578 return val;
579}
580
153b3d5b
TH
581extern void vmw_svga_enable(struct vmw_private *dev_priv);
582extern void vmw_svga_disable(struct vmw_private *dev_priv);
583
30c78bb8 584
fb1d9738
JB
585/**
586 * GMR utilities - vmwgfx_gmr.c
587 */
588
589extern int vmw_gmr_bind(struct vmw_private *dev_priv,
d92d9851 590 const struct vmw_sg_table *vsgt,
135cba0d
TH
591 unsigned long num_pages,
592 int gmr_id);
fb1d9738
JB
593extern void vmw_gmr_unbind(struct vmw_private *dev_priv, int gmr_id);
594
595/**
596 * Resource utilities - vmwgfx_resource.c
597 */
c0951b79 598struct vmw_user_resource_conv;
fb1d9738 599
fb1d9738
JB
600extern void vmw_resource_unreference(struct vmw_resource **p_res);
601extern struct vmw_resource *vmw_resource_reference(struct vmw_resource *res);
30f82d81
TH
602extern struct vmw_resource *
603vmw_resource_reference_unless_doomed(struct vmw_resource *res);
c0951b79 604extern int vmw_resource_validate(struct vmw_resource *res);
1a4b172a
TH
605extern int vmw_resource_reserve(struct vmw_resource *res, bool interruptible,
606 bool no_backup);
c0951b79 607extern bool vmw_resource_needs_backup(const struct vmw_resource *res);
551a6697
JB
608extern int vmw_user_lookup_handle(struct vmw_private *dev_priv,
609 struct ttm_object_file *tfile,
610 uint32_t handle,
611 struct vmw_surface **out_surf,
612 struct vmw_dma_buffer **out_buf);
c0951b79
TH
613extern int vmw_user_resource_lookup_handle(
614 struct vmw_private *dev_priv,
615 struct ttm_object_file *tfile,
616 uint32_t handle,
617 const struct vmw_user_resource_conv *converter,
618 struct vmw_resource **p_res);
fb1d9738
JB
619extern void vmw_dmabuf_bo_free(struct ttm_buffer_object *bo);
620extern int vmw_dmabuf_init(struct vmw_private *dev_priv,
621 struct vmw_dma_buffer *vmw_bo,
622 size_t size, struct ttm_placement *placement,
623 bool interuptable,
624 void (*bo_free) (struct ttm_buffer_object *bo));
d08a9b9c
TH
625extern int vmw_user_dmabuf_verify_access(struct ttm_buffer_object *bo,
626 struct ttm_object_file *tfile);
a97e2192
TH
627extern int vmw_user_dmabuf_alloc(struct vmw_private *dev_priv,
628 struct ttm_object_file *tfile,
629 uint32_t size,
630 bool shareable,
631 uint32_t *handle,
632 struct vmw_dma_buffer **p_dma_buf);
633extern int vmw_user_dmabuf_reference(struct ttm_object_file *tfile,
634 struct vmw_dma_buffer *dma_buf,
635 uint32_t *handle);
fb1d9738
JB
636extern int vmw_dmabuf_alloc_ioctl(struct drm_device *dev, void *data,
637 struct drm_file *file_priv);
638extern int vmw_dmabuf_unref_ioctl(struct drm_device *dev, void *data,
639 struct drm_file *file_priv);
1d7a5cbf
TH
640extern int vmw_user_dmabuf_synccpu_ioctl(struct drm_device *dev, void *data,
641 struct drm_file *file_priv);
fb1d9738
JB
642extern uint32_t vmw_dmabuf_validate_node(struct ttm_buffer_object *bo,
643 uint32_t cur_validate_node);
644extern void vmw_dmabuf_validate_clear(struct ttm_buffer_object *bo);
645extern int vmw_user_dmabuf_lookup(struct ttm_object_file *tfile,
646 uint32_t id, struct vmw_dma_buffer **out);
fb1d9738
JB
647extern int vmw_stream_claim_ioctl(struct drm_device *dev, void *data,
648 struct drm_file *file_priv);
649extern int vmw_stream_unref_ioctl(struct drm_device *dev, void *data,
650 struct drm_file *file_priv);
651extern int vmw_user_stream_lookup(struct vmw_private *dev_priv,
652 struct ttm_object_file *tfile,
653 uint32_t *inout_id,
654 struct vmw_resource **out);
c0951b79 655extern void vmw_resource_unreserve(struct vmw_resource *res,
d80efd5c 656 bool switch_backup,
c0951b79
TH
657 struct vmw_dma_buffer *new_backup,
658 unsigned long new_backup_offset);
659extern void vmw_resource_move_notify(struct ttm_buffer_object *bo,
660 struct ttm_mem_reg *mem);
661extern void vmw_fence_single_bo(struct ttm_buffer_object *bo,
662 struct vmw_fence_obj *fence);
663extern void vmw_resource_evict_all(struct vmw_private *dev_priv);
fb1d9738 664
d991ef03
JB
665/**
666 * DMA buffer helper routines - vmwgfx_dmabuf.c
667 */
459d0fa7 668extern int vmw_dmabuf_pin_in_placement(struct vmw_private *vmw_priv,
d991ef03 669 struct vmw_dma_buffer *bo,
459d0fa7
TH
670 struct ttm_placement *placement,
671 bool interruptible);
672extern int vmw_dmabuf_pin_in_vram(struct vmw_private *dev_priv,
673 struct vmw_dma_buffer *buf,
674 bool interruptible);
675extern int vmw_dmabuf_pin_in_vram_or_gmr(struct vmw_private *dev_priv,
676 struct vmw_dma_buffer *buf,
677 bool interruptible);
678extern int vmw_dmabuf_pin_in_start_of_vram(struct vmw_private *vmw_priv,
679 struct vmw_dma_buffer *bo,
680 bool interruptible);
d991ef03
JB
681extern int vmw_dmabuf_unpin(struct vmw_private *vmw_priv,
682 struct vmw_dma_buffer *bo,
683 bool interruptible);
b37a6b9a
TH
684extern void vmw_bo_get_guest_ptr(const struct ttm_buffer_object *buf,
685 SVGAGuestPtr *ptr);
459d0fa7 686extern void vmw_bo_pin_reserved(struct vmw_dma_buffer *bo, bool pin);
fb1d9738
JB
687
688/**
689 * Misc Ioctl functionality - vmwgfx_ioctl.c
690 */
691
692extern int vmw_getparam_ioctl(struct drm_device *dev, void *data,
693 struct drm_file *file_priv);
f63f6a59
TH
694extern int vmw_get_cap_3d_ioctl(struct drm_device *dev, void *data,
695 struct drm_file *file_priv);
2fcd5a73
JB
696extern int vmw_present_ioctl(struct drm_device *dev, void *data,
697 struct drm_file *file_priv);
698extern int vmw_present_readback_ioctl(struct drm_device *dev, void *data,
699 struct drm_file *file_priv);
5438ae88
TH
700extern unsigned int vmw_fops_poll(struct file *filp,
701 struct poll_table_struct *wait);
702extern ssize_t vmw_fops_read(struct file *filp, char __user *buffer,
703 size_t count, loff_t *offset);
fb1d9738
JB
704
705/**
706 * Fifo utilities - vmwgfx_fifo.c
707 */
708
709extern int vmw_fifo_init(struct vmw_private *dev_priv,
710 struct vmw_fifo_state *fifo);
711extern void vmw_fifo_release(struct vmw_private *dev_priv,
712 struct vmw_fifo_state *fifo);
713extern void *vmw_fifo_reserve(struct vmw_private *dev_priv, uint32_t bytes);
d80efd5c
TH
714extern void *
715vmw_fifo_reserve_dx(struct vmw_private *dev_priv, uint32_t bytes, int ctx_id);
fb1d9738 716extern void vmw_fifo_commit(struct vmw_private *dev_priv, uint32_t bytes);
d80efd5c 717extern void vmw_fifo_commit_flush(struct vmw_private *dev_priv, uint32_t bytes);
fb1d9738 718extern int vmw_fifo_send_fence(struct vmw_private *dev_priv,
6bcd8d3c 719 uint32_t *seqno);
2298e804 720extern void vmw_fifo_ping_host_locked(struct vmw_private *, uint32_t reason);
fb1d9738 721extern void vmw_fifo_ping_host(struct vmw_private *dev_priv, uint32_t reason);
8e19a951 722extern bool vmw_fifo_have_3d(struct vmw_private *dev_priv);
d7e1958d 723extern bool vmw_fifo_have_pitchlock(struct vmw_private *dev_priv);
e2fa3a76
TH
724extern int vmw_fifo_emit_dummy_query(struct vmw_private *dev_priv,
725 uint32_t cid);
3eab3d9e
TH
726extern int vmw_fifo_flush(struct vmw_private *dev_priv,
727 bool interruptible);
fb1d9738
JB
728
729/**
730 * TTM glue - vmwgfx_ttm_glue.c
731 */
732
733extern int vmw_ttm_global_init(struct vmw_private *dev_priv);
734extern void vmw_ttm_global_release(struct vmw_private *dev_priv);
735extern int vmw_mmap(struct file *filp, struct vm_area_struct *vma);
736
737/**
738 * TTM buffer object driver - vmwgfx_buffer.c
739 */
740
308d17ef 741extern const size_t vmw_tt_size;
fb1d9738
JB
742extern struct ttm_placement vmw_vram_placement;
743extern struct ttm_placement vmw_vram_ne_placement;
8ba5152a 744extern struct ttm_placement vmw_vram_sys_placement;
135cba0d 745extern struct ttm_placement vmw_vram_gmr_placement;
d991ef03 746extern struct ttm_placement vmw_vram_gmr_ne_placement;
fb1d9738 747extern struct ttm_placement vmw_sys_placement;
3530bdc3 748extern struct ttm_placement vmw_sys_ne_placement;
d991ef03 749extern struct ttm_placement vmw_evictable_placement;
5bb39e81 750extern struct ttm_placement vmw_srf_placement;
96c5f0df 751extern struct ttm_placement vmw_mob_placement;
3eab3d9e 752extern struct ttm_placement vmw_mob_ne_placement;
fb1d9738
JB
753extern struct ttm_bo_driver vmw_bo_driver;
754extern int vmw_dma_quiescent(struct drm_device *dev);
0fd53cfb
TH
755extern int vmw_bo_map_dma(struct ttm_buffer_object *bo);
756extern void vmw_bo_unmap_dma(struct ttm_buffer_object *bo);
757extern const struct vmw_sg_table *
758vmw_bo_sg_table(struct ttm_buffer_object *bo);
d92d9851
TH
759extern void vmw_piter_start(struct vmw_piter *viter,
760 const struct vmw_sg_table *vsgt,
761 unsigned long p_offs);
762
763/**
764 * vmw_piter_next - Advance the iterator one page.
765 *
766 * @viter: Pointer to the iterator to advance.
767 *
768 * Returns false if past the list of pages, true otherwise.
769 */
770static inline bool vmw_piter_next(struct vmw_piter *viter)
771{
772 return viter->next(viter);
773}
774
775/**
776 * vmw_piter_dma_addr - Return the DMA address of the current page.
777 *
778 * @viter: Pointer to the iterator
779 *
780 * Returns the DMA address of the page pointed to by @viter.
781 */
782static inline dma_addr_t vmw_piter_dma_addr(struct vmw_piter *viter)
783{
784 return viter->dma_address(viter);
785}
786
787/**
788 * vmw_piter_page - Return a pointer to the current page.
789 *
790 * @viter: Pointer to the iterator
791 *
792 * Returns the DMA address of the page pointed to by @viter.
793 */
794static inline struct page *vmw_piter_page(struct vmw_piter *viter)
795{
796 return viter->page(viter);
797}
fb1d9738
JB
798
799/**
800 * Command submission - vmwgfx_execbuf.c
801 */
802
d80efd5c
TH
803extern int vmw_execbuf_ioctl(struct drm_device *dev, unsigned long data,
804 struct drm_file *file_priv, size_t size);
922ade0d
TH
805extern int vmw_execbuf_process(struct drm_file *file_priv,
806 struct vmw_private *dev_priv,
807 void __user *user_commands,
808 void *kernel_commands,
809 uint32_t command_size,
810 uint64_t throttle_us,
d80efd5c 811 uint32_t dx_context_handle,
922ade0d 812 struct drm_vmw_fence_rep __user
bb1bd2f4
JB
813 *user_fence_rep,
814 struct vmw_fence_obj **out_fence);
c0951b79
TH
815extern void __vmw_execbuf_release_pinned_bo(struct vmw_private *dev_priv,
816 struct vmw_fence_obj *fence);
817extern void vmw_execbuf_release_pinned_bo(struct vmw_private *dev_priv);
e2fa3a76 818
5bb39e81
TH
819extern int vmw_execbuf_fence_commands(struct drm_file *file_priv,
820 struct vmw_private *dev_priv,
821 struct vmw_fence_obj **p_fence,
822 uint32_t *p_handle);
57c5ee79
TH
823extern void vmw_execbuf_copy_fence_user(struct vmw_private *dev_priv,
824 struct vmw_fpriv *vmw_fp,
825 int ret,
826 struct drm_vmw_fence_rep __user
827 *user_fence_rep,
828 struct vmw_fence_obj *fence,
829 uint32_t fence_handle);
1a4b172a
TH
830extern int vmw_validate_single_buffer(struct vmw_private *dev_priv,
831 struct ttm_buffer_object *bo,
832 bool interruptible,
833 bool validate_as_mob);
834
5bb39e81 835
fb1d9738
JB
836/**
837 * IRQs and wating - vmwgfx_irq.c
838 */
839
e9f0d76f 840extern irqreturn_t vmw_irq_handler(int irq, void *arg);
6bcd8d3c 841extern int vmw_wait_seqno(struct vmw_private *dev_priv, bool lazy,
c8261a96
SY
842 uint32_t seqno, bool interruptible,
843 unsigned long timeout);
fb1d9738
JB
844extern void vmw_irq_preinstall(struct drm_device *dev);
845extern int vmw_irq_postinstall(struct drm_device *dev);
846extern void vmw_irq_uninstall(struct drm_device *dev);
6bcd8d3c
TH
847extern bool vmw_seqno_passed(struct vmw_private *dev_priv,
848 uint32_t seqno);
fb1d9738
JB
849extern int vmw_fallback_wait(struct vmw_private *dev_priv,
850 bool lazy,
851 bool fifo_idle,
6bcd8d3c 852 uint32_t seqno,
fb1d9738
JB
853 bool interruptible,
854 unsigned long timeout);
6bcd8d3c 855extern void vmw_update_seqno(struct vmw_private *dev_priv,
1925d456 856 struct vmw_fifo_state *fifo_state);
ae2a1040
TH
857extern void vmw_seqno_waiter_add(struct vmw_private *dev_priv);
858extern void vmw_seqno_waiter_remove(struct vmw_private *dev_priv);
57c5ee79
TH
859extern void vmw_goal_waiter_add(struct vmw_private *dev_priv);
860extern void vmw_goal_waiter_remove(struct vmw_private *dev_priv);
3eab3d9e
TH
861extern void vmw_generic_waiter_add(struct vmw_private *dev_priv, u32 flag,
862 int *waiter_count);
863extern void vmw_generic_waiter_remove(struct vmw_private *dev_priv,
864 u32 flag, int *waiter_count);
1925d456
TH
865
866/**
6bcd8d3c
TH
867 * Rudimentary fence-like objects currently used only for throttling -
868 * vmwgfx_marker.c
1925d456
TH
869 */
870
6bcd8d3c
TH
871extern void vmw_marker_queue_init(struct vmw_marker_queue *queue);
872extern void vmw_marker_queue_takedown(struct vmw_marker_queue *queue);
873extern int vmw_marker_push(struct vmw_marker_queue *queue,
c8261a96 874 uint32_t seqno);
6bcd8d3c 875extern int vmw_marker_pull(struct vmw_marker_queue *queue,
c8261a96 876 uint32_t signaled_seqno);
1925d456 877extern int vmw_wait_lag(struct vmw_private *dev_priv,
6bcd8d3c 878 struct vmw_marker_queue *queue, uint32_t us);
fb1d9738
JB
879
880/**
881 * Kernel framebuffer - vmwgfx_fb.c
882 */
883
884int vmw_fb_init(struct vmw_private *vmw_priv);
885int vmw_fb_close(struct vmw_private *dev_priv);
886int vmw_fb_off(struct vmw_private *vmw_priv);
887int vmw_fb_on(struct vmw_private *vmw_priv);
888
889/**
890 * Kernel modesetting - vmwgfx_kms.c
891 */
892
893int vmw_kms_init(struct vmw_private *dev_priv);
894int vmw_kms_close(struct vmw_private *dev_priv);
895int vmw_kms_save_vga(struct vmw_private *vmw_priv);
896int vmw_kms_restore_vga(struct vmw_private *vmw_priv);
897int vmw_kms_cursor_bypass_ioctl(struct drm_device *dev, void *data,
898 struct drm_file *file_priv);
899void vmw_kms_cursor_post_execbuf(struct vmw_private *dev_priv);
900void vmw_kms_cursor_snoop(struct vmw_surface *srf,
901 struct ttm_object_file *tfile,
902 struct ttm_buffer_object *bo,
903 SVGA3dCmdHeader *header);
0bef23f9
MD
904int vmw_kms_write_svga(struct vmw_private *vmw_priv,
905 unsigned width, unsigned height, unsigned pitch,
906 unsigned bpp, unsigned depth);
3a939a5e 907void vmw_kms_idle_workqueues(struct vmw_master *vmaster);
e133e737
TH
908bool vmw_kms_validate_mode_vram(struct vmw_private *dev_priv,
909 uint32_t pitch,
910 uint32_t height);
7a1c2f6c 911u32 vmw_get_vblank_counter(struct drm_device *dev, int crtc);
1c482ab3
JB
912int vmw_enable_vblank(struct drm_device *dev, int crtc);
913void vmw_disable_vblank(struct drm_device *dev, int crtc);
2fcd5a73
JB
914int vmw_kms_present(struct vmw_private *dev_priv,
915 struct drm_file *file_priv,
916 struct vmw_framebuffer *vfb,
917 struct vmw_surface *surface,
918 uint32_t sid, int32_t destX, int32_t destY,
919 struct drm_vmw_rect *clips,
920 uint32_t num_clips);
cd2b89e7
TH
921int vmw_kms_update_layout_ioctl(struct drm_device *dev, void *data,
922 struct drm_file *file_priv);
fb1d9738 923
5e1782d2
DA
924int vmw_dumb_create(struct drm_file *file_priv,
925 struct drm_device *dev,
926 struct drm_mode_create_dumb *args);
927
928int vmw_dumb_map_offset(struct drm_file *file_priv,
929 struct drm_device *dev, uint32_t handle,
930 uint64_t *offset);
931int vmw_dumb_destroy(struct drm_file *file_priv,
932 struct drm_device *dev,
933 uint32_t handle);
1a4b172a 934extern int vmw_resource_pin(struct vmw_resource *res, bool interruptible);
ed93394c 935extern void vmw_resource_unpin(struct vmw_resource *res);
d80efd5c 936extern enum vmw_res_type vmw_res_type(const struct vmw_resource *res);
ed93394c 937
fb1d9738
JB
938/**
939 * Overlay control - vmwgfx_overlay.c
940 */
941
942int vmw_overlay_init(struct vmw_private *dev_priv);
943int vmw_overlay_close(struct vmw_private *dev_priv);
944int vmw_overlay_ioctl(struct drm_device *dev, void *data,
945 struct drm_file *file_priv);
946int vmw_overlay_stop_all(struct vmw_private *dev_priv);
947int vmw_overlay_resume_all(struct vmw_private *dev_priv);
948int vmw_overlay_pause_all(struct vmw_private *dev_priv);
949int vmw_overlay_claim(struct vmw_private *dev_priv, uint32_t *out);
950int vmw_overlay_unref(struct vmw_private *dev_priv, uint32_t stream_id);
951int vmw_overlay_num_overlays(struct vmw_private *dev_priv);
952int vmw_overlay_num_free_overlays(struct vmw_private *dev_priv);
953
135cba0d
TH
954/**
955 * GMR Id manager
956 */
957
958extern const struct ttm_mem_type_manager_func vmw_gmrid_manager_func;
959
69977ff5
TH
960/**
961 * Prime - vmwgfx_prime.c
962 */
963
964extern const struct dma_buf_ops vmw_prime_dmabuf_ops;
965extern int vmw_prime_fd_to_handle(struct drm_device *dev,
966 struct drm_file *file_priv,
967 int fd, u32 *handle);
968extern int vmw_prime_handle_to_fd(struct drm_device *dev,
969 struct drm_file *file_priv,
970 uint32_t handle, uint32_t flags,
971 int *prime_fd);
972
3530bdc3
TH
973/*
974 * MemoryOBject management - vmwgfx_mob.c
975 */
976struct vmw_mob;
977extern int vmw_mob_bind(struct vmw_private *dev_priv, struct vmw_mob *mob,
0fd53cfb
TH
978 const struct vmw_sg_table *vsgt,
979 unsigned long num_data_pages, int32_t mob_id);
3530bdc3
TH
980extern void vmw_mob_unbind(struct vmw_private *dev_priv,
981 struct vmw_mob *mob);
982extern void vmw_mob_destroy(struct vmw_mob *mob);
983extern struct vmw_mob *vmw_mob_create(unsigned long data_pages);
984extern int vmw_otables_setup(struct vmw_private *dev_priv);
985extern void vmw_otables_takedown(struct vmw_private *dev_priv);
69977ff5 986
7086d099
TH
987/*
988 * Context management - vmwgfx_context.c
989 */
990
991extern const struct vmw_user_resource_conv *user_context_converter;
992
7086d099
TH
993extern int vmw_context_check(struct vmw_private *dev_priv,
994 struct ttm_object_file *tfile,
995 int id,
996 struct vmw_resource **p_res);
997extern int vmw_context_define_ioctl(struct drm_device *dev, void *data,
998 struct drm_file *file_priv);
d80efd5c
TH
999extern int vmw_extended_context_define_ioctl(struct drm_device *dev, void *data,
1000 struct drm_file *file_priv);
7086d099
TH
1001extern int vmw_context_destroy_ioctl(struct drm_device *dev, void *data,
1002 struct drm_file *file_priv);
30f82d81 1003extern struct list_head *vmw_context_binding_list(struct vmw_resource *ctx);
18e4a466
TH
1004extern struct vmw_cmdbuf_res_manager *
1005vmw_context_res_man(struct vmw_resource *ctx);
d80efd5c
TH
1006extern struct vmw_resource *vmw_context_cotable(struct vmw_resource *ctx,
1007 SVGACOTableType cotable_type);
1008extern struct list_head *vmw_context_binding_list(struct vmw_resource *ctx);
1009struct vmw_ctx_binding_state;
1010extern struct vmw_ctx_binding_state *
1011vmw_context_binding_state(struct vmw_resource *ctx);
1012extern void vmw_dx_context_scrub_cotables(struct vmw_resource *ctx,
1013 bool readback);
1014
7086d099
TH
1015/*
1016 * Surface management - vmwgfx_surface.c
1017 */
1018
1019extern const struct vmw_user_resource_conv *user_surface_converter;
1020
1021extern void vmw_surface_res_free(struct vmw_resource *res);
1022extern int vmw_surface_destroy_ioctl(struct drm_device *dev, void *data,
1023 struct drm_file *file_priv);
1024extern int vmw_surface_define_ioctl(struct drm_device *dev, void *data,
1025 struct drm_file *file_priv);
1026extern int vmw_surface_reference_ioctl(struct drm_device *dev, void *data,
1027 struct drm_file *file_priv);
1028extern int vmw_gb_surface_define_ioctl(struct drm_device *dev, void *data,
1029 struct drm_file *file_priv);
1030extern int vmw_gb_surface_reference_ioctl(struct drm_device *dev, void *data,
1031 struct drm_file *file_priv);
1032extern int vmw_surface_check(struct vmw_private *dev_priv,
1033 struct ttm_object_file *tfile,
1034 uint32_t handle, int *id);
1035extern int vmw_surface_validate(struct vmw_private *dev_priv,
1036 struct vmw_surface *srf);
233826a7
SY
1037int vmw_surface_gb_priv_define(struct drm_device *dev,
1038 uint32_t user_accounting_size,
1039 uint32_t svga3d_flags,
1040 SVGA3dSurfaceFormat format,
1041 bool for_scanout,
1042 uint32_t num_mip_levels,
1043 uint32_t multisample_count,
d80efd5c 1044 uint32_t array_size,
233826a7
SY
1045 struct drm_vmw_size size,
1046 struct vmw_surface **srf_out);
7086d099 1047
c74c162f
TH
1048/*
1049 * Shader management - vmwgfx_shader.c
1050 */
1051
7086d099
TH
1052extern const struct vmw_user_resource_conv *user_shader_converter;
1053
c74c162f
TH
1054extern int vmw_shader_define_ioctl(struct drm_device *dev, void *data,
1055 struct drm_file *file_priv);
1056extern int vmw_shader_destroy_ioctl(struct drm_device *dev, void *data,
1057 struct drm_file *file_priv);
18e4a466
TH
1058extern int vmw_compat_shader_add(struct vmw_private *dev_priv,
1059 struct vmw_cmdbuf_res_manager *man,
d5bde956
TH
1060 u32 user_key, const void *bytecode,
1061 SVGA3dShaderType shader_type,
1062 size_t size,
d5bde956 1063 struct list_head *list);
d80efd5c
TH
1064extern int vmw_shader_remove(struct vmw_cmdbuf_res_manager *man,
1065 u32 user_key, SVGA3dShaderType shader_type,
1066 struct list_head *list);
1067extern int vmw_dx_shader_add(struct vmw_cmdbuf_res_manager *man,
1068 struct vmw_resource *ctx,
1069 u32 user_key,
1070 SVGA3dShaderType shader_type,
1071 struct list_head *list);
1072extern void vmw_dx_shader_cotable_list_scrub(struct vmw_private *dev_priv,
1073 struct list_head *list,
1074 bool readback);
1075
18e4a466 1076extern struct vmw_resource *
d80efd5c
TH
1077vmw_shader_lookup(struct vmw_cmdbuf_res_manager *man,
1078 u32 user_key, SVGA3dShaderType shader_type);
18e4a466
TH
1079
1080/*
1081 * Command buffer managed resources - vmwgfx_cmdbuf_res.c
1082 */
1083
1084extern struct vmw_cmdbuf_res_manager *
1085vmw_cmdbuf_res_man_create(struct vmw_private *dev_priv);
1086extern void vmw_cmdbuf_res_man_destroy(struct vmw_cmdbuf_res_manager *man);
1087extern size_t vmw_cmdbuf_res_man_size(void);
1088extern struct vmw_resource *
1089vmw_cmdbuf_res_lookup(struct vmw_cmdbuf_res_manager *man,
1090 enum vmw_cmdbuf_res_type res_type,
1091 u32 user_key);
1092extern void vmw_cmdbuf_res_revert(struct list_head *list);
1093extern void vmw_cmdbuf_res_commit(struct list_head *list);
1094extern int vmw_cmdbuf_res_add(struct vmw_cmdbuf_res_manager *man,
1095 enum vmw_cmdbuf_res_type res_type,
1096 u32 user_key,
1097 struct vmw_resource *res,
1098 struct list_head *list);
1099extern int vmw_cmdbuf_res_remove(struct vmw_cmdbuf_res_manager *man,
1100 enum vmw_cmdbuf_res_type res_type,
1101 u32 user_key,
d80efd5c
TH
1102 struct list_head *list,
1103 struct vmw_resource **res);
d5bde956 1104
d80efd5c
TH
1105/*
1106 * COTable management - vmwgfx_cotable.c
1107 */
1108extern const SVGACOTableType vmw_cotable_scrub_order[];
1109extern struct vmw_resource *vmw_cotable_alloc(struct vmw_private *dev_priv,
1110 struct vmw_resource *ctx,
1111 u32 type);
1112extern int vmw_cotable_notify(struct vmw_resource *res, int id);
1113extern int vmw_cotable_scrub(struct vmw_resource *res, bool readback);
1114extern void vmw_cotable_add_resource(struct vmw_resource *ctx,
1115 struct list_head *head);
c74c162f 1116
3eab3d9e
TH
1117/*
1118 * Command buffer managerment vmwgfx_cmdbuf.c
1119 */
1120struct vmw_cmdbuf_man;
1121struct vmw_cmdbuf_header;
1122
1123extern struct vmw_cmdbuf_man *
1124vmw_cmdbuf_man_create(struct vmw_private *dev_priv);
1125extern int vmw_cmdbuf_set_pool_size(struct vmw_cmdbuf_man *man,
1126 size_t size, size_t default_size);
1127extern void vmw_cmdbuf_remove_pool(struct vmw_cmdbuf_man *man);
1128extern void vmw_cmdbuf_man_destroy(struct vmw_cmdbuf_man *man);
1129extern int vmw_cmdbuf_idle(struct vmw_cmdbuf_man *man, bool interruptible,
1130 unsigned long timeout);
1131extern void *vmw_cmdbuf_reserve(struct vmw_cmdbuf_man *man, size_t size,
1132 int ctx_id, bool interruptible,
1133 struct vmw_cmdbuf_header *header);
1134extern void vmw_cmdbuf_commit(struct vmw_cmdbuf_man *man, size_t size,
1135 struct vmw_cmdbuf_header *header,
1136 bool flush);
1137extern void vmw_cmdbuf_tasklet_schedule(struct vmw_cmdbuf_man *man);
1138extern void *vmw_cmdbuf_alloc(struct vmw_cmdbuf_man *man,
1139 size_t size, bool interruptible,
1140 struct vmw_cmdbuf_header **p_header);
1141extern void vmw_cmdbuf_header_free(struct vmw_cmdbuf_header *header);
1142extern int vmw_cmdbuf_cur_flush(struct vmw_cmdbuf_man *man,
1143 bool interruptible);
1144
1145
fb1d9738
JB
1146/**
1147 * Inline helper functions
1148 */
1149
1150static inline void vmw_surface_unreference(struct vmw_surface **srf)
1151{
1152 struct vmw_surface *tmp_srf = *srf;
1153 struct vmw_resource *res = &tmp_srf->res;
1154 *srf = NULL;
1155
1156 vmw_resource_unreference(&res);
1157}
1158
1159static inline struct vmw_surface *vmw_surface_reference(struct vmw_surface *srf)
1160{
1161 (void) vmw_resource_reference(&srf->res);
1162 return srf;
1163}
1164
1165static inline void vmw_dmabuf_unreference(struct vmw_dma_buffer **buf)
1166{
1167 struct vmw_dma_buffer *tmp_buf = *buf;
bf6f0368 1168
fb1d9738 1169 *buf = NULL;
bf6f0368
TH
1170 if (tmp_buf != NULL) {
1171 struct ttm_buffer_object *bo = &tmp_buf->base;
fb1d9738 1172
bf6f0368
TH
1173 ttm_bo_unref(&bo);
1174 }
fb1d9738
JB
1175}
1176
1177static inline struct vmw_dma_buffer *vmw_dmabuf_reference(struct vmw_dma_buffer *buf)
1178{
1179 if (ttm_bo_reference(&buf->base))
1180 return buf;
1181 return NULL;
1182}
1183
ae2a1040
TH
1184static inline struct ttm_mem_global *vmw_mem_glob(struct vmw_private *dev_priv)
1185{
1186 return (struct ttm_mem_global *) dev_priv->mem_global_ref.object;
1187}
153b3d5b
TH
1188
1189static inline void vmw_fifo_resource_inc(struct vmw_private *dev_priv)
1190{
1191 atomic_inc(&dev_priv->num_fifo_resources);
1192}
1193
1194static inline void vmw_fifo_resource_dec(struct vmw_private *dev_priv)
1195{
1196 atomic_dec(&dev_priv->num_fifo_resources);
1197}
fb1d9738 1198#endif