1 /**************************************************************************
3 * Copyright © 2009 VMware, Inc., Palo Alto, CA., USA
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:
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
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.
26 **************************************************************************/
28 #ifndef _VMWGFX_DRV_H_
29 #define _VMWGFX_DRV_H_
31 #include "vmwgfx_reg.h"
33 #include "vmwgfx_drm.h"
34 #include "drm_hashtab.h"
35 #include "linux/suspend.h"
36 #include "ttm/ttm_bo_driver.h"
37 #include "ttm/ttm_object.h"
38 #include "ttm/ttm_lock.h"
39 #include "ttm/ttm_execbuf_util.h"
40 #include "ttm/ttm_module.h"
42 #define VMWGFX_DRIVER_DATE "20090724"
43 #define VMWGFX_DRIVER_MAJOR 0
44 #define VMWGFX_DRIVER_MINOR 1
45 #define VMWGFX_DRIVER_PATCHLEVEL 2
46 #define VMWGFX_FILE_PAGE_OFFSET 0x00100000
47 #define VMWGFX_FIFO_STATIC_SIZE (1024*1024)
48 #define VMWGFX_MAX_RELOCATIONS 2048
49 #define VMWGFX_MAX_GMRS 2048
52 struct drm_master
*locked_master
;
53 struct ttm_object_file
*tfile
;
56 struct vmw_dma_buffer
{
57 struct ttm_buffer_object base
;
58 struct list_head validate_list
;
59 struct list_head gmr_lru
;
62 uint32_t cur_validate_node
;
63 bool on_validate_list
;
68 struct vmw_private
*dev_priv
;
71 enum ttm_object_type res_type
;
73 void (*hw_destroy
) (struct vmw_resource
*res
);
74 void (*res_free
) (struct vmw_resource
*res
);
76 /* TODO is a generic snooper needed? */
78 void (*snoop
)(struct vmw_resource
*res
,
79 struct ttm_object_file
*tfile
,
80 SVGA3dCmdHeader
*header
);
85 struct vmw_cursor_snooper
{
86 struct drm_crtc
*crtc
;
92 struct vmw_resource res
;
95 uint32_t mip_levels
[DRM_VMW_MAX_SURFACE_FACES
];
96 struct drm_vmw_size
*sizes
;
99 /* TODO so far just a extra pointer */
100 struct vmw_cursor_snooper snooper
;
103 struct vmw_fifo_state
{
104 unsigned long reserved_size
;
105 __le32
*dynamic_buffer
;
106 __le32
*static_buffer
;
108 uint32_t last_data_size
;
109 uint32_t last_buffer_size
;
110 bool last_buffer_add
;
111 unsigned long static_buffer_size
;
112 bool using_bounce_buffer
;
113 uint32_t capabilities
;
114 struct rw_semaphore rwsem
;
117 struct vmw_relocation
{
118 SVGAGuestPtr
*location
;
122 struct vmw_sw_context
{
127 uint32_t sid_translation
;
129 struct ttm_object_file
*tfile
;
130 struct list_head validate_nodes
;
131 struct vmw_relocation relocs
[VMWGFX_MAX_RELOCATIONS
];
133 struct ttm_validate_buffer val_bufs
[VMWGFX_MAX_GMRS
];
134 uint32_t cur_val_buf
;
137 struct vmw_legacy_display
;
141 struct ttm_lock lock
;
145 struct ttm_bo_device bdev
;
146 struct ttm_bo_global_ref bo_global_ref
;
147 struct ttm_global_reference mem_global_ref
;
149 struct vmw_fifo_state fifo
;
151 struct drm_device
*dev
;
152 unsigned long vmw_chipset
;
153 unsigned int io_start
;
158 uint32_t fb_max_width
;
159 uint32_t fb_max_height
;
160 __le32 __iomem
*mmio_virt
;
162 uint32_t capabilities
;
163 uint32_t max_gmr_descriptors
;
164 uint32_t max_gmr_ids
;
165 struct mutex hw_mutex
;
176 uint32_t vga_red_mask
;
177 uint32_t vga_blue_mask
;
178 uint32_t vga_green_mask
;
185 struct vmw_legacy_display
*ldu_priv
;
186 struct vmw_overlay
*overlay_priv
;
189 * Context and surface management.
192 rwlock_t resource_lock
;
193 struct idr context_idr
;
194 struct idr surface_idr
;
195 struct idr stream_idr
;
198 * Block lastclose from racing with firstopen.
201 struct mutex init_mutex
;
204 * A resource manager for kernel-only surfaces and
208 struct ttm_object_device
*tdev
;
215 wait_queue_head_t fence_queue
;
216 wait_queue_head_t fifo_queue
;
217 atomic_t fence_queue_waiters
;
218 atomic_t fifo_queue_waiters
;
219 uint32_t last_read_sequence
;
226 uint32_t traces_state
;
227 uint32_t enable_state
;
228 uint32_t config_done_state
;
234 * Protected by the cmdbuf mutex.
237 struct vmw_sw_context ctx
;
239 struct mutex cmdbuf_mutex
;
242 * GMR management. Protected by the lru spinlock.
246 struct list_head gmr_lru
;
260 struct vmw_master
*active_master
;
261 struct vmw_master fbdev_master
;
262 struct notifier_block pm_nb
;
265 static inline struct vmw_private
*vmw_priv(struct drm_device
*dev
)
267 return (struct vmw_private
*)dev
->dev_private
;
270 static inline struct vmw_fpriv
*vmw_fpriv(struct drm_file
*file_priv
)
272 return (struct vmw_fpriv
*)file_priv
->driver_priv
;
275 static inline struct vmw_master
*vmw_master(struct drm_master
*master
)
277 return (struct vmw_master
*) master
->driver_priv
;
280 static inline void vmw_write(struct vmw_private
*dev_priv
,
281 unsigned int offset
, uint32_t value
)
283 outl(offset
, dev_priv
->io_start
+ VMWGFX_INDEX_PORT
);
284 outl(value
, dev_priv
->io_start
+ VMWGFX_VALUE_PORT
);
287 static inline uint32_t vmw_read(struct vmw_private
*dev_priv
,
292 outl(offset
, dev_priv
->io_start
+ VMWGFX_INDEX_PORT
);
293 val
= inl(dev_priv
->io_start
+ VMWGFX_VALUE_PORT
);
298 * GMR utilities - vmwgfx_gmr.c
301 extern int vmw_gmr_bind(struct vmw_private
*dev_priv
,
302 struct ttm_buffer_object
*bo
);
303 extern void vmw_gmr_unbind(struct vmw_private
*dev_priv
, int gmr_id
);
306 * Resource utilities - vmwgfx_resource.c
309 extern struct vmw_resource
*vmw_context_alloc(struct vmw_private
*dev_priv
);
310 extern void vmw_resource_unreference(struct vmw_resource
**p_res
);
311 extern struct vmw_resource
*vmw_resource_reference(struct vmw_resource
*res
);
312 extern int vmw_context_destroy_ioctl(struct drm_device
*dev
, void *data
,
313 struct drm_file
*file_priv
);
314 extern int vmw_context_define_ioctl(struct drm_device
*dev
, void *data
,
315 struct drm_file
*file_priv
);
316 extern int vmw_context_check(struct vmw_private
*dev_priv
,
317 struct ttm_object_file
*tfile
,
319 extern void vmw_surface_res_free(struct vmw_resource
*res
);
320 extern int vmw_surface_init(struct vmw_private
*dev_priv
,
321 struct vmw_surface
*srf
,
322 void (*res_free
) (struct vmw_resource
*res
));
323 extern int vmw_user_surface_lookup_handle(struct vmw_private
*dev_priv
,
324 struct ttm_object_file
*tfile
,
326 struct vmw_surface
**out
);
327 extern int vmw_surface_destroy_ioctl(struct drm_device
*dev
, void *data
,
328 struct drm_file
*file_priv
);
329 extern int vmw_surface_define_ioctl(struct drm_device
*dev
, void *data
,
330 struct drm_file
*file_priv
);
331 extern int vmw_surface_reference_ioctl(struct drm_device
*dev
, void *data
,
332 struct drm_file
*file_priv
);
333 extern int vmw_surface_check(struct vmw_private
*dev_priv
,
334 struct ttm_object_file
*tfile
,
335 uint32_t handle
, int *id
);
336 extern void vmw_dmabuf_bo_free(struct ttm_buffer_object
*bo
);
337 extern int vmw_dmabuf_init(struct vmw_private
*dev_priv
,
338 struct vmw_dma_buffer
*vmw_bo
,
339 size_t size
, struct ttm_placement
*placement
,
341 void (*bo_free
) (struct ttm_buffer_object
*bo
));
342 extern int vmw_dmabuf_alloc_ioctl(struct drm_device
*dev
, void *data
,
343 struct drm_file
*file_priv
);
344 extern int vmw_dmabuf_unref_ioctl(struct drm_device
*dev
, void *data
,
345 struct drm_file
*file_priv
);
346 extern uint32_t vmw_dmabuf_validate_node(struct ttm_buffer_object
*bo
,
347 uint32_t cur_validate_node
);
348 extern void vmw_dmabuf_validate_clear(struct ttm_buffer_object
*bo
);
349 extern int vmw_user_dmabuf_lookup(struct ttm_object_file
*tfile
,
350 uint32_t id
, struct vmw_dma_buffer
**out
);
351 extern uint32_t vmw_dmabuf_gmr(struct ttm_buffer_object
*bo
);
352 extern void vmw_dmabuf_set_gmr(struct ttm_buffer_object
*bo
, uint32_t id
);
353 extern int vmw_gmr_id_alloc(struct vmw_private
*dev_priv
, uint32_t *p_id
);
354 extern int vmw_dmabuf_to_start_of_vram(struct vmw_private
*vmw_priv
,
355 struct vmw_dma_buffer
*bo
);
356 extern int vmw_dmabuf_from_vram(struct vmw_private
*vmw_priv
,
357 struct vmw_dma_buffer
*bo
);
358 extern void vmw_dmabuf_gmr_unbind(struct ttm_buffer_object
*bo
);
359 extern int vmw_stream_claim_ioctl(struct drm_device
*dev
, void *data
,
360 struct drm_file
*file_priv
);
361 extern int vmw_stream_unref_ioctl(struct drm_device
*dev
, void *data
,
362 struct drm_file
*file_priv
);
363 extern int vmw_user_stream_lookup(struct vmw_private
*dev_priv
,
364 struct ttm_object_file
*tfile
,
366 struct vmw_resource
**out
);
370 * Misc Ioctl functionality - vmwgfx_ioctl.c
373 extern int vmw_getparam_ioctl(struct drm_device
*dev
, void *data
,
374 struct drm_file
*file_priv
);
375 extern int vmw_fifo_debug_ioctl(struct drm_device
*dev
, void *data
,
376 struct drm_file
*file_priv
);
379 * Fifo utilities - vmwgfx_fifo.c
382 extern int vmw_fifo_init(struct vmw_private
*dev_priv
,
383 struct vmw_fifo_state
*fifo
);
384 extern void vmw_fifo_release(struct vmw_private
*dev_priv
,
385 struct vmw_fifo_state
*fifo
);
386 extern void *vmw_fifo_reserve(struct vmw_private
*dev_priv
, uint32_t bytes
);
387 extern void vmw_fifo_commit(struct vmw_private
*dev_priv
, uint32_t bytes
);
388 extern int vmw_fifo_send_fence(struct vmw_private
*dev_priv
,
390 extern void vmw_fifo_ping_host(struct vmw_private
*dev_priv
, uint32_t reason
);
391 extern int vmw_fifo_mmap(struct file
*filp
, struct vm_area_struct
*vma
);
394 * TTM glue - vmwgfx_ttm_glue.c
397 extern int vmw_ttm_global_init(struct vmw_private
*dev_priv
);
398 extern void vmw_ttm_global_release(struct vmw_private
*dev_priv
);
399 extern int vmw_mmap(struct file
*filp
, struct vm_area_struct
*vma
);
402 * TTM buffer object driver - vmwgfx_buffer.c
405 extern struct ttm_placement vmw_vram_placement
;
406 extern struct ttm_placement vmw_vram_ne_placement
;
407 extern struct ttm_placement vmw_vram_sys_placement
;
408 extern struct ttm_placement vmw_sys_placement
;
409 extern struct ttm_bo_driver vmw_bo_driver
;
410 extern int vmw_dma_quiescent(struct drm_device
*dev
);
413 * Command submission - vmwgfx_execbuf.c
416 extern int vmw_execbuf_ioctl(struct drm_device
*dev
, void *data
,
417 struct drm_file
*file_priv
);
420 * IRQs and wating - vmwgfx_irq.c
423 extern irqreturn_t
vmw_irq_handler(DRM_IRQ_ARGS
);
424 extern int vmw_wait_fence(struct vmw_private
*dev_priv
, bool lazy
,
425 uint32_t sequence
, bool interruptible
,
426 unsigned long timeout
);
427 extern void vmw_irq_preinstall(struct drm_device
*dev
);
428 extern int vmw_irq_postinstall(struct drm_device
*dev
);
429 extern void vmw_irq_uninstall(struct drm_device
*dev
);
430 extern bool vmw_fence_signaled(struct vmw_private
*dev_priv
,
432 extern int vmw_fence_wait_ioctl(struct drm_device
*dev
, void *data
,
433 struct drm_file
*file_priv
);
434 extern int vmw_fallback_wait(struct vmw_private
*dev_priv
,
439 unsigned long timeout
);
442 * Kernel framebuffer - vmwgfx_fb.c
445 int vmw_fb_init(struct vmw_private
*vmw_priv
);
446 int vmw_fb_close(struct vmw_private
*dev_priv
);
447 int vmw_fb_off(struct vmw_private
*vmw_priv
);
448 int vmw_fb_on(struct vmw_private
*vmw_priv
);
451 * Kernel modesetting - vmwgfx_kms.c
454 int vmw_kms_init(struct vmw_private
*dev_priv
);
455 int vmw_kms_close(struct vmw_private
*dev_priv
);
456 int vmw_kms_save_vga(struct vmw_private
*vmw_priv
);
457 int vmw_kms_restore_vga(struct vmw_private
*vmw_priv
);
458 int vmw_kms_cursor_bypass_ioctl(struct drm_device
*dev
, void *data
,
459 struct drm_file
*file_priv
);
460 void vmw_kms_cursor_post_execbuf(struct vmw_private
*dev_priv
);
461 void vmw_kms_cursor_snoop(struct vmw_surface
*srf
,
462 struct ttm_object_file
*tfile
,
463 struct ttm_buffer_object
*bo
,
464 SVGA3dCmdHeader
*header
);
467 * Overlay control - vmwgfx_overlay.c
470 int vmw_overlay_init(struct vmw_private
*dev_priv
);
471 int vmw_overlay_close(struct vmw_private
*dev_priv
);
472 int vmw_overlay_ioctl(struct drm_device
*dev
, void *data
,
473 struct drm_file
*file_priv
);
474 int vmw_overlay_stop_all(struct vmw_private
*dev_priv
);
475 int vmw_overlay_resume_all(struct vmw_private
*dev_priv
);
476 int vmw_overlay_pause_all(struct vmw_private
*dev_priv
);
477 int vmw_overlay_claim(struct vmw_private
*dev_priv
, uint32_t *out
);
478 int vmw_overlay_unref(struct vmw_private
*dev_priv
, uint32_t stream_id
);
479 int vmw_overlay_num_overlays(struct vmw_private
*dev_priv
);
480 int vmw_overlay_num_free_overlays(struct vmw_private
*dev_priv
);
483 * Inline helper functions
486 static inline void vmw_surface_unreference(struct vmw_surface
**srf
)
488 struct vmw_surface
*tmp_srf
= *srf
;
489 struct vmw_resource
*res
= &tmp_srf
->res
;
492 vmw_resource_unreference(&res
);
495 static inline struct vmw_surface
*vmw_surface_reference(struct vmw_surface
*srf
)
497 (void) vmw_resource_reference(&srf
->res
);
501 static inline void vmw_dmabuf_unreference(struct vmw_dma_buffer
**buf
)
503 struct vmw_dma_buffer
*tmp_buf
= *buf
;
504 struct ttm_buffer_object
*bo
= &tmp_buf
->base
;
510 static inline struct vmw_dma_buffer
*vmw_dmabuf_reference(struct vmw_dma_buffer
*buf
)
512 if (ttm_bo_reference(&buf
->base
))