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