]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/gpu/drm/vmwgfx/vmwgfx_drv.c
UAPI: (Scripted) Convert #include "..." to #include <path/...> in drivers/gpu/
[mirror_ubuntu-bionic-kernel.git] / drivers / gpu / drm / vmwgfx / vmwgfx_drv.c
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 **************************************************************************/
e0cd3608 27#include <linux/module.h>
fb1d9738 28
760285e7 29#include <drm/drmP.h>
fb1d9738 30#include "vmwgfx_drv.h"
760285e7
DH
31#include <drm/ttm/ttm_placement.h>
32#include <drm/ttm/ttm_bo_driver.h>
33#include <drm/ttm/ttm_object.h>
34#include <drm/ttm/ttm_module.h>
fb1d9738
JB
35
36#define VMWGFX_DRIVER_NAME "vmwgfx"
37#define VMWGFX_DRIVER_DESC "Linux drm driver for VMware graphics devices"
38#define VMWGFX_CHIP_SVGAII 0
39#define VMW_FB_RESERVATION 0
40
eb4f923b
JB
41#define VMW_MIN_INITIAL_WIDTH 800
42#define VMW_MIN_INITIAL_HEIGHT 600
43
44
fb1d9738
JB
45/**
46 * Fully encoded drm commands. Might move to vmw_drm.h
47 */
48
49#define DRM_IOCTL_VMW_GET_PARAM \
50 DRM_IOWR(DRM_COMMAND_BASE + DRM_VMW_GET_PARAM, \
51 struct drm_vmw_getparam_arg)
52#define DRM_IOCTL_VMW_ALLOC_DMABUF \
53 DRM_IOWR(DRM_COMMAND_BASE + DRM_VMW_ALLOC_DMABUF, \
54 union drm_vmw_alloc_dmabuf_arg)
55#define DRM_IOCTL_VMW_UNREF_DMABUF \
56 DRM_IOW(DRM_COMMAND_BASE + DRM_VMW_UNREF_DMABUF, \
57 struct drm_vmw_unref_dmabuf_arg)
58#define DRM_IOCTL_VMW_CURSOR_BYPASS \
59 DRM_IOW(DRM_COMMAND_BASE + DRM_VMW_CURSOR_BYPASS, \
60 struct drm_vmw_cursor_bypass_arg)
61
62#define DRM_IOCTL_VMW_CONTROL_STREAM \
63 DRM_IOW(DRM_COMMAND_BASE + DRM_VMW_CONTROL_STREAM, \
64 struct drm_vmw_control_stream_arg)
65#define DRM_IOCTL_VMW_CLAIM_STREAM \
66 DRM_IOR(DRM_COMMAND_BASE + DRM_VMW_CLAIM_STREAM, \
67 struct drm_vmw_stream_arg)
68#define DRM_IOCTL_VMW_UNREF_STREAM \
69 DRM_IOW(DRM_COMMAND_BASE + DRM_VMW_UNREF_STREAM, \
70 struct drm_vmw_stream_arg)
71
72#define DRM_IOCTL_VMW_CREATE_CONTEXT \
73 DRM_IOR(DRM_COMMAND_BASE + DRM_VMW_CREATE_CONTEXT, \
74 struct drm_vmw_context_arg)
75#define DRM_IOCTL_VMW_UNREF_CONTEXT \
76 DRM_IOW(DRM_COMMAND_BASE + DRM_VMW_UNREF_CONTEXT, \
77 struct drm_vmw_context_arg)
78#define DRM_IOCTL_VMW_CREATE_SURFACE \
79 DRM_IOWR(DRM_COMMAND_BASE + DRM_VMW_CREATE_SURFACE, \
80 union drm_vmw_surface_create_arg)
81#define DRM_IOCTL_VMW_UNREF_SURFACE \
82 DRM_IOW(DRM_COMMAND_BASE + DRM_VMW_UNREF_SURFACE, \
83 struct drm_vmw_surface_arg)
84#define DRM_IOCTL_VMW_REF_SURFACE \
85 DRM_IOWR(DRM_COMMAND_BASE + DRM_VMW_REF_SURFACE, \
86 union drm_vmw_surface_reference_arg)
87#define DRM_IOCTL_VMW_EXECBUF \
88 DRM_IOW(DRM_COMMAND_BASE + DRM_VMW_EXECBUF, \
89 struct drm_vmw_execbuf_arg)
ae2a1040
TH
90#define DRM_IOCTL_VMW_GET_3D_CAP \
91 DRM_IOW(DRM_COMMAND_BASE + DRM_VMW_GET_3D_CAP, \
92 struct drm_vmw_get_3d_cap_arg)
fb1d9738
JB
93#define DRM_IOCTL_VMW_FENCE_WAIT \
94 DRM_IOWR(DRM_COMMAND_BASE + DRM_VMW_FENCE_WAIT, \
95 struct drm_vmw_fence_wait_arg)
ae2a1040
TH
96#define DRM_IOCTL_VMW_FENCE_SIGNALED \
97 DRM_IOWR(DRM_COMMAND_BASE + DRM_VMW_FENCE_SIGNALED, \
98 struct drm_vmw_fence_signaled_arg)
99#define DRM_IOCTL_VMW_FENCE_UNREF \
100 DRM_IOW(DRM_COMMAND_BASE + DRM_VMW_FENCE_UNREF, \
101 struct drm_vmw_fence_arg)
57c5ee79
TH
102#define DRM_IOCTL_VMW_FENCE_EVENT \
103 DRM_IOW(DRM_COMMAND_BASE + DRM_VMW_FENCE_EVENT, \
104 struct drm_vmw_fence_event_arg)
2fcd5a73
JB
105#define DRM_IOCTL_VMW_PRESENT \
106 DRM_IOW(DRM_COMMAND_BASE + DRM_VMW_PRESENT, \
107 struct drm_vmw_present_arg)
108#define DRM_IOCTL_VMW_PRESENT_READBACK \
109 DRM_IOW(DRM_COMMAND_BASE + DRM_VMW_PRESENT_READBACK, \
110 struct drm_vmw_present_readback_arg)
cd2b89e7
TH
111#define DRM_IOCTL_VMW_UPDATE_LAYOUT \
112 DRM_IOW(DRM_COMMAND_BASE + DRM_VMW_UPDATE_LAYOUT, \
113 struct drm_vmw_update_layout_arg)
fb1d9738
JB
114
115/**
116 * The core DRM version of this macro doesn't account for
117 * DRM_COMMAND_BASE.
118 */
119
120#define VMW_IOCTL_DEF(ioctl, func, flags) \
1b2f1489 121 [DRM_IOCTL_NR(DRM_IOCTL_##ioctl) - DRM_COMMAND_BASE] = {DRM_##ioctl, flags, func, DRM_IOCTL_##ioctl}
fb1d9738
JB
122
123/**
124 * Ioctl definitions.
125 */
126
127static struct drm_ioctl_desc vmw_ioctls[] = {
1b2f1489 128 VMW_IOCTL_DEF(VMW_GET_PARAM, vmw_getparam_ioctl,
e1f78003 129 DRM_AUTH | DRM_UNLOCKED),
1b2f1489 130 VMW_IOCTL_DEF(VMW_ALLOC_DMABUF, vmw_dmabuf_alloc_ioctl,
e1f78003 131 DRM_AUTH | DRM_UNLOCKED),
1b2f1489 132 VMW_IOCTL_DEF(VMW_UNREF_DMABUF, vmw_dmabuf_unref_ioctl,
e1f78003 133 DRM_AUTH | DRM_UNLOCKED),
1b2f1489 134 VMW_IOCTL_DEF(VMW_CURSOR_BYPASS,
e1f78003
TH
135 vmw_kms_cursor_bypass_ioctl,
136 DRM_MASTER | DRM_CONTROL_ALLOW | DRM_UNLOCKED),
fb1d9738 137
1b2f1489 138 VMW_IOCTL_DEF(VMW_CONTROL_STREAM, vmw_overlay_ioctl,
e1f78003 139 DRM_MASTER | DRM_CONTROL_ALLOW | DRM_UNLOCKED),
1b2f1489 140 VMW_IOCTL_DEF(VMW_CLAIM_STREAM, vmw_stream_claim_ioctl,
e1f78003 141 DRM_MASTER | DRM_CONTROL_ALLOW | DRM_UNLOCKED),
1b2f1489 142 VMW_IOCTL_DEF(VMW_UNREF_STREAM, vmw_stream_unref_ioctl,
e1f78003 143 DRM_MASTER | DRM_CONTROL_ALLOW | DRM_UNLOCKED),
fb1d9738 144
1b2f1489 145 VMW_IOCTL_DEF(VMW_CREATE_CONTEXT, vmw_context_define_ioctl,
e1f78003 146 DRM_AUTH | DRM_UNLOCKED),
1b2f1489 147 VMW_IOCTL_DEF(VMW_UNREF_CONTEXT, vmw_context_destroy_ioctl,
e1f78003 148 DRM_AUTH | DRM_UNLOCKED),
1b2f1489 149 VMW_IOCTL_DEF(VMW_CREATE_SURFACE, vmw_surface_define_ioctl,
e1f78003 150 DRM_AUTH | DRM_UNLOCKED),
1b2f1489 151 VMW_IOCTL_DEF(VMW_UNREF_SURFACE, vmw_surface_destroy_ioctl,
e1f78003 152 DRM_AUTH | DRM_UNLOCKED),
1b2f1489 153 VMW_IOCTL_DEF(VMW_REF_SURFACE, vmw_surface_reference_ioctl,
e1f78003 154 DRM_AUTH | DRM_UNLOCKED),
1b2f1489 155 VMW_IOCTL_DEF(VMW_EXECBUF, vmw_execbuf_ioctl,
e1f78003 156 DRM_AUTH | DRM_UNLOCKED),
ae2a1040
TH
157 VMW_IOCTL_DEF(VMW_FENCE_WAIT, vmw_fence_obj_wait_ioctl,
158 DRM_AUTH | DRM_UNLOCKED),
159 VMW_IOCTL_DEF(VMW_FENCE_SIGNALED,
160 vmw_fence_obj_signaled_ioctl,
161 DRM_AUTH | DRM_UNLOCKED),
162 VMW_IOCTL_DEF(VMW_FENCE_UNREF, vmw_fence_obj_unref_ioctl,
d8bd19d2 163 DRM_AUTH | DRM_UNLOCKED),
57c5ee79
TH
164 VMW_IOCTL_DEF(VMW_FENCE_EVENT,
165 vmw_fence_event_ioctl,
166 DRM_AUTH | DRM_UNLOCKED),
f63f6a59
TH
167 VMW_IOCTL_DEF(VMW_GET_3D_CAP, vmw_get_cap_3d_ioctl,
168 DRM_AUTH | DRM_UNLOCKED),
2fcd5a73
JB
169
170 /* these allow direct access to the framebuffers mark as master only */
171 VMW_IOCTL_DEF(VMW_PRESENT, vmw_present_ioctl,
172 DRM_MASTER | DRM_AUTH | DRM_UNLOCKED),
173 VMW_IOCTL_DEF(VMW_PRESENT_READBACK,
174 vmw_present_readback_ioctl,
175 DRM_MASTER | DRM_AUTH | DRM_UNLOCKED),
cd2b89e7
TH
176 VMW_IOCTL_DEF(VMW_UPDATE_LAYOUT,
177 vmw_kms_update_layout_ioctl,
178 DRM_MASTER | DRM_UNLOCKED),
fb1d9738
JB
179};
180
181static struct pci_device_id vmw_pci_id_list[] = {
182 {0x15ad, 0x0405, PCI_ANY_ID, PCI_ANY_ID, 0, 0, VMWGFX_CHIP_SVGAII},
183 {0, 0, 0}
184};
c4903429 185MODULE_DEVICE_TABLE(pci, vmw_pci_id_list);
fb1d9738 186
5d2afab9 187static int enable_fbdev = IS_ENABLED(CONFIG_DRM_VMWGFX_FBCON);
fb1d9738
JB
188
189static int vmw_probe(struct pci_dev *, const struct pci_device_id *);
190static void vmw_master_init(struct vmw_master *);
d9f36a00
TH
191static int vmwgfx_pm_notifier(struct notifier_block *nb, unsigned long val,
192 void *ptr);
fb1d9738 193
30c78bb8
TH
194MODULE_PARM_DESC(enable_fbdev, "Enable vmwgfx fbdev");
195module_param_named(enable_fbdev, enable_fbdev, int, 0600);
196
fb1d9738
JB
197static void vmw_print_capabilities(uint32_t capabilities)
198{
199 DRM_INFO("Capabilities:\n");
200 if (capabilities & SVGA_CAP_RECT_COPY)
201 DRM_INFO(" Rect copy.\n");
202 if (capabilities & SVGA_CAP_CURSOR)
203 DRM_INFO(" Cursor.\n");
204 if (capabilities & SVGA_CAP_CURSOR_BYPASS)
205 DRM_INFO(" Cursor bypass.\n");
206 if (capabilities & SVGA_CAP_CURSOR_BYPASS_2)
207 DRM_INFO(" Cursor bypass 2.\n");
208 if (capabilities & SVGA_CAP_8BIT_EMULATION)
209 DRM_INFO(" 8bit emulation.\n");
210 if (capabilities & SVGA_CAP_ALPHA_CURSOR)
211 DRM_INFO(" Alpha cursor.\n");
212 if (capabilities & SVGA_CAP_3D)
213 DRM_INFO(" 3D.\n");
214 if (capabilities & SVGA_CAP_EXTENDED_FIFO)
215 DRM_INFO(" Extended Fifo.\n");
216 if (capabilities & SVGA_CAP_MULTIMON)
217 DRM_INFO(" Multimon.\n");
218 if (capabilities & SVGA_CAP_PITCHLOCK)
219 DRM_INFO(" Pitchlock.\n");
220 if (capabilities & SVGA_CAP_IRQMASK)
221 DRM_INFO(" Irq mask.\n");
222 if (capabilities & SVGA_CAP_DISPLAY_TOPOLOGY)
223 DRM_INFO(" Display Topology.\n");
224 if (capabilities & SVGA_CAP_GMR)
225 DRM_INFO(" GMR.\n");
226 if (capabilities & SVGA_CAP_TRACES)
227 DRM_INFO(" Traces.\n");
dcca2862
TH
228 if (capabilities & SVGA_CAP_GMR2)
229 DRM_INFO(" GMR2.\n");
230 if (capabilities & SVGA_CAP_SCREEN_OBJECT_2)
231 DRM_INFO(" Screen Object 2.\n");
fb1d9738
JB
232}
233
e2fa3a76
TH
234
235/**
236 * vmw_execbuf_prepare_dummy_query - Initialize a query result structure at
237 * the start of a buffer object.
238 *
239 * @dev_priv: The device private structure.
240 *
241 * This function will idle the buffer using an uninterruptible wait, then
242 * map the first page and initialize a pending occlusion query result structure,
243 * Finally it will unmap the buffer.
244 *
245 * TODO: Since we're only mapping a single page, we should optimize the map
246 * to use kmap_atomic / iomap_atomic.
247 */
248static void vmw_dummy_query_bo_prepare(struct vmw_private *dev_priv)
249{
250 struct ttm_bo_kmap_obj map;
251 volatile SVGA3dQueryResult *result;
252 bool dummy;
253 int ret;
254 struct ttm_bo_device *bdev = &dev_priv->bdev;
255 struct ttm_buffer_object *bo = dev_priv->dummy_query_bo;
256
257 ttm_bo_reserve(bo, false, false, false, 0);
258 spin_lock(&bdev->fence_lock);
1717c0e2 259 ret = ttm_bo_wait(bo, false, false, false);
e2fa3a76
TH
260 spin_unlock(&bdev->fence_lock);
261 if (unlikely(ret != 0))
262 (void) vmw_fallback_wait(dev_priv, false, true, 0, false,
263 10*HZ);
264
265 ret = ttm_bo_kmap(bo, 0, 1, &map);
266 if (likely(ret == 0)) {
267 result = ttm_kmap_obj_virtual(&map, &dummy);
268 result->totalSize = sizeof(*result);
269 result->state = SVGA3D_QUERYSTATE_PENDING;
270 result->result32 = 0xff;
271 ttm_bo_kunmap(&map);
272 } else
273 DRM_ERROR("Dummy query buffer map failed.\n");
274 ttm_bo_unreserve(bo);
275}
276
277
278/**
279 * vmw_dummy_query_bo_create - create a bo to hold a dummy query result
280 *
281 * @dev_priv: A device private structure.
282 *
283 * This function creates a small buffer object that holds the query
284 * result for dummy queries emitted as query barriers.
285 * No interruptible waits are done within this function.
286 *
287 * Returns an error if bo creation fails.
288 */
289static int vmw_dummy_query_bo_create(struct vmw_private *dev_priv)
290{
291 return ttm_bo_create(&dev_priv->bdev,
292 PAGE_SIZE,
293 ttm_bo_type_device,
294 &vmw_vram_sys_placement,
295 0, 0, false, NULL,
296 &dev_priv->dummy_query_bo);
297}
298
299
fb1d9738
JB
300static int vmw_request_device(struct vmw_private *dev_priv)
301{
302 int ret;
303
fb1d9738
JB
304 ret = vmw_fifo_init(dev_priv, &dev_priv->fifo);
305 if (unlikely(ret != 0)) {
306 DRM_ERROR("Unable to initialize FIFO.\n");
307 return ret;
308 }
ae2a1040 309 vmw_fence_fifo_up(dev_priv->fman);
e2fa3a76
TH
310 ret = vmw_dummy_query_bo_create(dev_priv);
311 if (unlikely(ret != 0))
312 goto out_no_query_bo;
313 vmw_dummy_query_bo_prepare(dev_priv);
fb1d9738
JB
314
315 return 0;
e2fa3a76
TH
316
317out_no_query_bo:
318 vmw_fence_fifo_down(dev_priv->fman);
319 vmw_fifo_release(dev_priv, &dev_priv->fifo);
320 return ret;
fb1d9738
JB
321}
322
323static void vmw_release_device(struct vmw_private *dev_priv)
324{
e2fa3a76
TH
325 /*
326 * Previous destructions should've released
327 * the pinned bo.
328 */
329
330 BUG_ON(dev_priv->pinned_bo != NULL);
331
332 ttm_bo_unref(&dev_priv->dummy_query_bo);
ae2a1040 333 vmw_fence_fifo_down(dev_priv->fman);
fb1d9738 334 vmw_fifo_release(dev_priv, &dev_priv->fifo);
30c78bb8
TH
335}
336
05730b32
TH
337/**
338 * Increase the 3d resource refcount.
339 * If the count was prevously zero, initialize the fifo, switching to svga
340 * mode. Note that the master holds a ref as well, and may request an
341 * explicit switch to svga mode if fb is not running, using @unhide_svga.
342 */
343int vmw_3d_resource_inc(struct vmw_private *dev_priv,
344 bool unhide_svga)
30c78bb8
TH
345{
346 int ret = 0;
347
348 mutex_lock(&dev_priv->release_mutex);
349 if (unlikely(dev_priv->num_3d_resources++ == 0)) {
350 ret = vmw_request_device(dev_priv);
351 if (unlikely(ret != 0))
352 --dev_priv->num_3d_resources;
05730b32
TH
353 } else if (unhide_svga) {
354 mutex_lock(&dev_priv->hw_mutex);
355 vmw_write(dev_priv, SVGA_REG_ENABLE,
356 vmw_read(dev_priv, SVGA_REG_ENABLE) &
357 ~SVGA_REG_ENABLE_HIDE);
358 mutex_unlock(&dev_priv->hw_mutex);
30c78bb8 359 }
05730b32 360
30c78bb8
TH
361 mutex_unlock(&dev_priv->release_mutex);
362 return ret;
fb1d9738
JB
363}
364
05730b32
TH
365/**
366 * Decrease the 3d resource refcount.
367 * If the count reaches zero, disable the fifo, switching to vga mode.
368 * Note that the master holds a refcount as well, and may request an
369 * explicit switch to vga mode when it releases its refcount to account
370 * for the situation of an X server vt switch to VGA with 3d resources
371 * active.
372 */
373void vmw_3d_resource_dec(struct vmw_private *dev_priv,
374 bool hide_svga)
30c78bb8
TH
375{
376 int32_t n3d;
377
378 mutex_lock(&dev_priv->release_mutex);
379 if (unlikely(--dev_priv->num_3d_resources == 0))
380 vmw_release_device(dev_priv);
05730b32
TH
381 else if (hide_svga) {
382 mutex_lock(&dev_priv->hw_mutex);
383 vmw_write(dev_priv, SVGA_REG_ENABLE,
384 vmw_read(dev_priv, SVGA_REG_ENABLE) |
385 SVGA_REG_ENABLE_HIDE);
386 mutex_unlock(&dev_priv->hw_mutex);
387 }
388
30c78bb8
TH
389 n3d = (int32_t) dev_priv->num_3d_resources;
390 mutex_unlock(&dev_priv->release_mutex);
391
392 BUG_ON(n3d < 0);
393}
394
eb4f923b
JB
395/**
396 * Sets the initial_[width|height] fields on the given vmw_private.
397 *
398 * It does so by reading SVGA_REG_[WIDTH|HEIGHT] regs and then
67d4a87b
TH
399 * clamping the value to fb_max_[width|height] fields and the
400 * VMW_MIN_INITIAL_[WIDTH|HEIGHT].
401 * If the values appear to be invalid, set them to
eb4f923b
JB
402 * VMW_MIN_INITIAL_[WIDTH|HEIGHT].
403 */
404static void vmw_get_initial_size(struct vmw_private *dev_priv)
405{
406 uint32_t width;
407 uint32_t height;
408
409 width = vmw_read(dev_priv, SVGA_REG_WIDTH);
410 height = vmw_read(dev_priv, SVGA_REG_HEIGHT);
411
412 width = max_t(uint32_t, width, VMW_MIN_INITIAL_WIDTH);
eb4f923b 413 height = max_t(uint32_t, height, VMW_MIN_INITIAL_HEIGHT);
67d4a87b
TH
414
415 if (width > dev_priv->fb_max_width ||
416 height > dev_priv->fb_max_height) {
417
418 /*
419 * This is a host error and shouldn't occur.
420 */
421
422 width = VMW_MIN_INITIAL_WIDTH;
423 height = VMW_MIN_INITIAL_HEIGHT;
424 }
eb4f923b
JB
425
426 dev_priv->initial_width = width;
427 dev_priv->initial_height = height;
428}
429
fb1d9738
JB
430static int vmw_driver_load(struct drm_device *dev, unsigned long chipset)
431{
432 struct vmw_private *dev_priv;
433 int ret;
c188660f 434 uint32_t svga_id;
fb1d9738
JB
435
436 dev_priv = kzalloc(sizeof(*dev_priv), GFP_KERNEL);
437 if (unlikely(dev_priv == NULL)) {
438 DRM_ERROR("Failed allocating a device private struct.\n");
439 return -ENOMEM;
440 }
441 memset(dev_priv, 0, sizeof(*dev_priv));
442
466e69b8
DA
443 pci_set_master(dev->pdev);
444
fb1d9738
JB
445 dev_priv->dev = dev;
446 dev_priv->vmw_chipset = chipset;
6bcd8d3c 447 dev_priv->last_read_seqno = (uint32_t) -100;
fb1d9738
JB
448 mutex_init(&dev_priv->hw_mutex);
449 mutex_init(&dev_priv->cmdbuf_mutex);
30c78bb8 450 mutex_init(&dev_priv->release_mutex);
fb1d9738
JB
451 rwlock_init(&dev_priv->resource_lock);
452 idr_init(&dev_priv->context_idr);
453 idr_init(&dev_priv->surface_idr);
454 idr_init(&dev_priv->stream_idr);
fb1d9738
JB
455 mutex_init(&dev_priv->init_mutex);
456 init_waitqueue_head(&dev_priv->fence_queue);
457 init_waitqueue_head(&dev_priv->fifo_queue);
4f73a96b 458 dev_priv->fence_queue_waiters = 0;
fb1d9738 459 atomic_set(&dev_priv->fifo_queue_waiters, 0);
5bb39e81
TH
460 INIT_LIST_HEAD(&dev_priv->surface_lru);
461 dev_priv->used_memory_size = 0;
fb1d9738
JB
462
463 dev_priv->io_start = pci_resource_start(dev->pdev, 0);
464 dev_priv->vram_start = pci_resource_start(dev->pdev, 1);
465 dev_priv->mmio_start = pci_resource_start(dev->pdev, 2);
466
30c78bb8
TH
467 dev_priv->enable_fb = enable_fbdev;
468
fb1d9738 469 mutex_lock(&dev_priv->hw_mutex);
c188660f
PH
470
471 vmw_write(dev_priv, SVGA_REG_ID, SVGA_ID_2);
472 svga_id = vmw_read(dev_priv, SVGA_REG_ID);
473 if (svga_id != SVGA_ID_2) {
474 ret = -ENOSYS;
49625904 475 DRM_ERROR("Unsupported SVGA ID 0x%x\n", svga_id);
c188660f
PH
476 mutex_unlock(&dev_priv->hw_mutex);
477 goto out_err0;
478 }
479
fb1d9738
JB
480 dev_priv->capabilities = vmw_read(dev_priv, SVGA_REG_CAPABILITIES);
481
5bb39e81
TH
482 dev_priv->vram_size = vmw_read(dev_priv, SVGA_REG_VRAM_SIZE);
483 dev_priv->mmio_size = vmw_read(dev_priv, SVGA_REG_MEM_SIZE);
484 dev_priv->fb_max_width = vmw_read(dev_priv, SVGA_REG_MAX_WIDTH);
485 dev_priv->fb_max_height = vmw_read(dev_priv, SVGA_REG_MAX_HEIGHT);
eb4f923b
JB
486
487 vmw_get_initial_size(dev_priv);
488
fb1d9738
JB
489 if (dev_priv->capabilities & SVGA_CAP_GMR) {
490 dev_priv->max_gmr_descriptors =
491 vmw_read(dev_priv,
492 SVGA_REG_GMR_MAX_DESCRIPTOR_LENGTH);
493 dev_priv->max_gmr_ids =
494 vmw_read(dev_priv, SVGA_REG_GMR_MAX_IDS);
495 }
fb17f189
TH
496 if (dev_priv->capabilities & SVGA_CAP_GMR2) {
497 dev_priv->max_gmr_pages =
498 vmw_read(dev_priv, SVGA_REG_GMRS_MAX_PAGES);
499 dev_priv->memory_size =
500 vmw_read(dev_priv, SVGA_REG_MEMORY_SIZE);
5bb39e81
TH
501 dev_priv->memory_size -= dev_priv->vram_size;
502 } else {
503 /*
504 * An arbitrary limit of 512MiB on surface
505 * memory. But all HWV8 hardware supports GMR2.
506 */
507 dev_priv->memory_size = 512*1024*1024;
fb17f189 508 }
fb1d9738 509
fb1d9738
JB
510 mutex_unlock(&dev_priv->hw_mutex);
511
512 vmw_print_capabilities(dev_priv->capabilities);
513
514 if (dev_priv->capabilities & SVGA_CAP_GMR) {
515 DRM_INFO("Max GMR ids is %u\n",
516 (unsigned)dev_priv->max_gmr_ids);
517 DRM_INFO("Max GMR descriptors is %u\n",
518 (unsigned)dev_priv->max_gmr_descriptors);
519 }
fb17f189
TH
520 if (dev_priv->capabilities & SVGA_CAP_GMR2) {
521 DRM_INFO("Max number of GMR pages is %u\n",
522 (unsigned)dev_priv->max_gmr_pages);
5bb39e81
TH
523 DRM_INFO("Max dedicated hypervisor surface memory is %u kiB\n",
524 (unsigned)dev_priv->memory_size / 1024);
fb17f189 525 }
fb1d9738
JB
526 DRM_INFO("VRAM at 0x%08x size is %u kiB\n",
527 dev_priv->vram_start, dev_priv->vram_size / 1024);
528 DRM_INFO("MMIO at 0x%08x size is %u kiB\n",
529 dev_priv->mmio_start, dev_priv->mmio_size / 1024);
530
531 ret = vmw_ttm_global_init(dev_priv);
532 if (unlikely(ret != 0))
533 goto out_err0;
534
535
536 vmw_master_init(&dev_priv->fbdev_master);
537 ttm_lock_set_kill(&dev_priv->fbdev_master.lock, false, SIGTERM);
538 dev_priv->active_master = &dev_priv->fbdev_master;
539
a2c06ee2 540
fb1d9738
JB
541 ret = ttm_bo_device_init(&dev_priv->bdev,
542 dev_priv->bo_global_ref.ref.object,
543 &vmw_bo_driver, VMWGFX_FILE_PAGE_OFFSET,
544 false);
545 if (unlikely(ret != 0)) {
546 DRM_ERROR("Failed initializing TTM buffer object driver.\n");
547 goto out_err1;
548 }
549
550 ret = ttm_bo_init_mm(&dev_priv->bdev, TTM_PL_VRAM,
551 (dev_priv->vram_size >> PAGE_SHIFT));
552 if (unlikely(ret != 0)) {
553 DRM_ERROR("Failed initializing memory manager for VRAM.\n");
554 goto out_err2;
555 }
556
135cba0d
TH
557 dev_priv->has_gmr = true;
558 if (ttm_bo_init_mm(&dev_priv->bdev, VMW_PL_GMR,
559 dev_priv->max_gmr_ids) != 0) {
560 DRM_INFO("No GMR memory available. "
561 "Graphics memory resources are very limited.\n");
562 dev_priv->has_gmr = false;
563 }
564
fb1d9738
JB
565 dev_priv->mmio_mtrr = drm_mtrr_add(dev_priv->mmio_start,
566 dev_priv->mmio_size, DRM_MTRR_WC);
567
568 dev_priv->mmio_virt = ioremap_wc(dev_priv->mmio_start,
569 dev_priv->mmio_size);
570
571 if (unlikely(dev_priv->mmio_virt == NULL)) {
572 ret = -ENOMEM;
573 DRM_ERROR("Failed mapping MMIO.\n");
574 goto out_err3;
575 }
576
d7e1958d
JB
577 /* Need mmio memory to check for fifo pitchlock cap. */
578 if (!(dev_priv->capabilities & SVGA_CAP_DISPLAY_TOPOLOGY) &&
579 !(dev_priv->capabilities & SVGA_CAP_PITCHLOCK) &&
580 !vmw_fifo_have_pitchlock(dev_priv)) {
581 ret = -ENOSYS;
582 DRM_ERROR("Hardware has no pitchlock\n");
583 goto out_err4;
584 }
585
fb1d9738
JB
586 dev_priv->tdev = ttm_object_device_init
587 (dev_priv->mem_global_ref.object, 12);
588
589 if (unlikely(dev_priv->tdev == NULL)) {
590 DRM_ERROR("Unable to initialize TTM object management.\n");
591 ret = -ENOMEM;
592 goto out_err4;
593 }
594
595 dev->dev_private = dev_priv;
596
fb1d9738
JB
597 ret = pci_request_regions(dev->pdev, "vmwgfx probe");
598 dev_priv->stealth = (ret != 0);
599 if (dev_priv->stealth) {
600 /**
601 * Request at least the mmio PCI resource.
602 */
603
604 DRM_INFO("It appears like vesafb is loaded. "
f2d12b8e 605 "Ignore above error if any.\n");
fb1d9738
JB
606 ret = pci_request_region(dev->pdev, 2, "vmwgfx stealth probe");
607 if (unlikely(ret != 0)) {
608 DRM_ERROR("Failed reserving the SVGA MMIO resource.\n");
609 goto out_no_device;
610 }
fb1d9738 611 }
ae2a1040
TH
612
613 dev_priv->fman = vmw_fence_manager_init(dev_priv);
614 if (unlikely(dev_priv->fman == NULL))
615 goto out_no_fman;
56d1c78d
JB
616
617 /* Need to start the fifo to check if we can do screen objects */
618 ret = vmw_3d_resource_inc(dev_priv, true);
619 if (unlikely(ret != 0))
620 goto out_no_fifo;
621 vmw_kms_save_vga(dev_priv);
56d1c78d
JB
622
623 /* Start kms and overlay systems, needs fifo. */
7a1c2f6c
TH
624 ret = vmw_kms_init(dev_priv);
625 if (unlikely(ret != 0))
626 goto out_no_kms;
f2d12b8e 627 vmw_overlay_init(dev_priv);
56d1c78d 628
01e81419 629 /* 3D Depends on Screen Objects being used. */
6ea77d13
TH
630 DRM_INFO("Detected %sdevice 3D availability.\n",
631 vmw_fifo_have_3d(dev_priv) ?
632 "" : "no ");
01e81419 633
56d1c78d 634 /* We might be done with the fifo now */
30c78bb8 635 if (dev_priv->enable_fb) {
30c78bb8 636 vmw_fb_init(dev_priv);
30c78bb8 637 } else {
56d1c78d
JB
638 vmw_kms_restore_vga(dev_priv);
639 vmw_3d_resource_dec(dev_priv, true);
30c78bb8 640 }
fb1d9738 641
7a1c2f6c
TH
642 if (dev_priv->capabilities & SVGA_CAP_IRQMASK) {
643 ret = drm_irq_install(dev);
644 if (unlikely(ret != 0)) {
645 DRM_ERROR("Failed installing irq: %d\n", ret);
646 goto out_no_irq;
647 }
648 }
649
d9f36a00
TH
650 dev_priv->pm_nb.notifier_call = vmwgfx_pm_notifier;
651 register_pm_notifier(&dev_priv->pm_nb);
652
fb1d9738
JB
653 return 0;
654
7a1c2f6c 655out_no_irq:
56d1c78d 656 if (dev_priv->enable_fb)
7a1c2f6c 657 vmw_fb_close(dev_priv);
56d1c78d
JB
658 vmw_overlay_close(dev_priv);
659 vmw_kms_close(dev_priv);
660out_no_kms:
661 /* We still have a 3D resource reference held */
662 if (dev_priv->enable_fb) {
7a1c2f6c 663 vmw_kms_restore_vga(dev_priv);
05730b32 664 vmw_3d_resource_dec(dev_priv, false);
7a1c2f6c 665 }
30c78bb8 666out_no_fifo:
ae2a1040
TH
667 vmw_fence_manager_takedown(dev_priv->fman);
668out_no_fman:
30c78bb8
TH
669 if (dev_priv->stealth)
670 pci_release_region(dev->pdev, 2);
671 else
672 pci_release_regions(dev->pdev);
fb1d9738 673out_no_device:
fb1d9738
JB
674 ttm_object_device_release(&dev_priv->tdev);
675out_err4:
676 iounmap(dev_priv->mmio_virt);
677out_err3:
678 drm_mtrr_del(dev_priv->mmio_mtrr, dev_priv->mmio_start,
679 dev_priv->mmio_size, DRM_MTRR_WC);
135cba0d
TH
680 if (dev_priv->has_gmr)
681 (void) ttm_bo_clean_mm(&dev_priv->bdev, VMW_PL_GMR);
fb1d9738
JB
682 (void)ttm_bo_clean_mm(&dev_priv->bdev, TTM_PL_VRAM);
683out_err2:
684 (void)ttm_bo_device_release(&dev_priv->bdev);
685out_err1:
686 vmw_ttm_global_release(dev_priv);
687out_err0:
fb1d9738
JB
688 idr_destroy(&dev_priv->surface_idr);
689 idr_destroy(&dev_priv->context_idr);
690 idr_destroy(&dev_priv->stream_idr);
691 kfree(dev_priv);
692 return ret;
693}
694
695static int vmw_driver_unload(struct drm_device *dev)
696{
697 struct vmw_private *dev_priv = vmw_priv(dev);
698
d9f36a00
TH
699 unregister_pm_notifier(&dev_priv->pm_nb);
700
be38ab6e
TH
701 if (dev_priv->ctx.cmd_bounce)
702 vfree(dev_priv->ctx.cmd_bounce);
7a1c2f6c
TH
703 if (dev_priv->capabilities & SVGA_CAP_IRQMASK)
704 drm_irq_uninstall(dev_priv->dev);
30c78bb8
TH
705 if (dev_priv->enable_fb) {
706 vmw_fb_close(dev_priv);
707 vmw_kms_restore_vga(dev_priv);
05730b32 708 vmw_3d_resource_dec(dev_priv, false);
30c78bb8 709 }
f2d12b8e
TH
710 vmw_kms_close(dev_priv);
711 vmw_overlay_close(dev_priv);
ae2a1040 712 vmw_fence_manager_takedown(dev_priv->fman);
f2d12b8e 713 if (dev_priv->stealth)
fb1d9738 714 pci_release_region(dev->pdev, 2);
f2d12b8e
TH
715 else
716 pci_release_regions(dev->pdev);
717
fb1d9738
JB
718 ttm_object_device_release(&dev_priv->tdev);
719 iounmap(dev_priv->mmio_virt);
720 drm_mtrr_del(dev_priv->mmio_mtrr, dev_priv->mmio_start,
721 dev_priv->mmio_size, DRM_MTRR_WC);
135cba0d
TH
722 if (dev_priv->has_gmr)
723 (void)ttm_bo_clean_mm(&dev_priv->bdev, VMW_PL_GMR);
fb1d9738
JB
724 (void)ttm_bo_clean_mm(&dev_priv->bdev, TTM_PL_VRAM);
725 (void)ttm_bo_device_release(&dev_priv->bdev);
726 vmw_ttm_global_release(dev_priv);
fb1d9738
JB
727 idr_destroy(&dev_priv->surface_idr);
728 idr_destroy(&dev_priv->context_idr);
729 idr_destroy(&dev_priv->stream_idr);
730
731 kfree(dev_priv);
732
733 return 0;
734}
735
6b82ef50
TH
736static void vmw_preclose(struct drm_device *dev,
737 struct drm_file *file_priv)
738{
739 struct vmw_fpriv *vmw_fp = vmw_fpriv(file_priv);
740 struct vmw_private *dev_priv = vmw_priv(dev);
741
742 vmw_event_fence_fpriv_gone(dev_priv->fman, &vmw_fp->fence_events);
743}
744
fb1d9738
JB
745static void vmw_postclose(struct drm_device *dev,
746 struct drm_file *file_priv)
747{
748 struct vmw_fpriv *vmw_fp;
749
750 vmw_fp = vmw_fpriv(file_priv);
751 ttm_object_file_release(&vmw_fp->tfile);
752 if (vmw_fp->locked_master)
753 drm_master_put(&vmw_fp->locked_master);
754 kfree(vmw_fp);
755}
756
757static int vmw_driver_open(struct drm_device *dev, struct drm_file *file_priv)
758{
759 struct vmw_private *dev_priv = vmw_priv(dev);
760 struct vmw_fpriv *vmw_fp;
761 int ret = -ENOMEM;
762
763 vmw_fp = kzalloc(sizeof(*vmw_fp), GFP_KERNEL);
764 if (unlikely(vmw_fp == NULL))
765 return ret;
766
6b82ef50 767 INIT_LIST_HEAD(&vmw_fp->fence_events);
fb1d9738
JB
768 vmw_fp->tfile = ttm_object_file_init(dev_priv->tdev, 10);
769 if (unlikely(vmw_fp->tfile == NULL))
770 goto out_no_tfile;
771
772 file_priv->driver_priv = vmw_fp;
949c4a34 773 dev_priv->bdev.dev_mapping = dev->dev_mapping;
fb1d9738
JB
774
775 return 0;
776
777out_no_tfile:
778 kfree(vmw_fp);
779 return ret;
780}
781
782static long vmw_unlocked_ioctl(struct file *filp, unsigned int cmd,
783 unsigned long arg)
784{
785 struct drm_file *file_priv = filp->private_data;
786 struct drm_device *dev = file_priv->minor->dev;
787 unsigned int nr = DRM_IOCTL_NR(cmd);
fb1d9738
JB
788
789 /*
e1f78003 790 * Do extra checking on driver private ioctls.
fb1d9738
JB
791 */
792
793 if ((nr >= DRM_COMMAND_BASE) && (nr < DRM_COMMAND_END)
794 && (nr < DRM_COMMAND_BASE + dev->driver->num_ioctls)) {
795 struct drm_ioctl_desc *ioctl =
796 &vmw_ioctls[nr - DRM_COMMAND_BASE];
797
2854eeda 798 if (unlikely(ioctl->cmd_drv != cmd)) {
fb1d9738
JB
799 DRM_ERROR("Invalid command format, ioctl %d\n",
800 nr - DRM_COMMAND_BASE);
801 return -EINVAL;
802 }
fb1d9738
JB
803 }
804
e1f78003 805 return drm_ioctl(filp, cmd, arg);
fb1d9738
JB
806}
807
808static int vmw_firstopen(struct drm_device *dev)
809{
810 struct vmw_private *dev_priv = vmw_priv(dev);
811 dev_priv->is_opened = true;
812
813 return 0;
814}
815
816static void vmw_lastclose(struct drm_device *dev)
817{
818 struct vmw_private *dev_priv = vmw_priv(dev);
819 struct drm_crtc *crtc;
820 struct drm_mode_set set;
821 int ret;
822
823 /**
824 * Do nothing on the lastclose call from drm_unload.
825 */
826
827 if (!dev_priv->is_opened)
828 return;
829
830 dev_priv->is_opened = false;
831 set.x = 0;
832 set.y = 0;
833 set.fb = NULL;
834 set.mode = NULL;
835 set.connectors = NULL;
836 set.num_connectors = 0;
837
838 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
839 set.crtc = crtc;
840 ret = crtc->funcs->set_config(&set);
841 WARN_ON(ret != 0);
842 }
843
844}
845
846static void vmw_master_init(struct vmw_master *vmaster)
847{
848 ttm_lock_init(&vmaster->lock);
3a939a5e
TH
849 INIT_LIST_HEAD(&vmaster->fb_surf);
850 mutex_init(&vmaster->fb_surf_mutex);
fb1d9738
JB
851}
852
853static int vmw_master_create(struct drm_device *dev,
854 struct drm_master *master)
855{
856 struct vmw_master *vmaster;
857
fb1d9738
JB
858 vmaster = kzalloc(sizeof(*vmaster), GFP_KERNEL);
859 if (unlikely(vmaster == NULL))
860 return -ENOMEM;
861
3a939a5e 862 vmw_master_init(vmaster);
fb1d9738
JB
863 ttm_lock_set_kill(&vmaster->lock, true, SIGTERM);
864 master->driver_priv = vmaster;
865
866 return 0;
867}
868
869static void vmw_master_destroy(struct drm_device *dev,
870 struct drm_master *master)
871{
872 struct vmw_master *vmaster = vmw_master(master);
873
fb1d9738
JB
874 master->driver_priv = NULL;
875 kfree(vmaster);
876}
877
878
879static int vmw_master_set(struct drm_device *dev,
880 struct drm_file *file_priv,
881 bool from_open)
882{
883 struct vmw_private *dev_priv = vmw_priv(dev);
884 struct vmw_fpriv *vmw_fp = vmw_fpriv(file_priv);
885 struct vmw_master *active = dev_priv->active_master;
886 struct vmw_master *vmaster = vmw_master(file_priv->master);
887 int ret = 0;
888
30c78bb8 889 if (!dev_priv->enable_fb) {
05730b32 890 ret = vmw_3d_resource_inc(dev_priv, true);
30c78bb8
TH
891 if (unlikely(ret != 0))
892 return ret;
893 vmw_kms_save_vga(dev_priv);
894 mutex_lock(&dev_priv->hw_mutex);
895 vmw_write(dev_priv, SVGA_REG_TRACES, 0);
896 mutex_unlock(&dev_priv->hw_mutex);
897 }
898
fb1d9738
JB
899 if (active) {
900 BUG_ON(active != &dev_priv->fbdev_master);
901 ret = ttm_vt_lock(&active->lock, false, vmw_fp->tfile);
902 if (unlikely(ret != 0))
903 goto out_no_active_lock;
904
905 ttm_lock_set_kill(&active->lock, true, SIGTERM);
906 ret = ttm_bo_evict_mm(&dev_priv->bdev, TTM_PL_VRAM);
907 if (unlikely(ret != 0)) {
908 DRM_ERROR("Unable to clean VRAM on "
909 "master drop.\n");
910 }
911
912 dev_priv->active_master = NULL;
913 }
914
915 ttm_lock_set_kill(&vmaster->lock, false, SIGTERM);
916 if (!from_open) {
917 ttm_vt_unlock(&vmaster->lock);
918 BUG_ON(vmw_fp->locked_master != file_priv->master);
919 drm_master_put(&vmw_fp->locked_master);
920 }
921
922 dev_priv->active_master = vmaster;
923
924 return 0;
925
926out_no_active_lock:
30c78bb8
TH
927 if (!dev_priv->enable_fb) {
928 mutex_lock(&dev_priv->hw_mutex);
929 vmw_write(dev_priv, SVGA_REG_TRACES, 1);
930 mutex_unlock(&dev_priv->hw_mutex);
931 vmw_kms_restore_vga(dev_priv);
05730b32 932 vmw_3d_resource_dec(dev_priv, true);
30c78bb8 933 }
fb1d9738
JB
934 return ret;
935}
936
937static void vmw_master_drop(struct drm_device *dev,
938 struct drm_file *file_priv,
939 bool from_release)
940{
941 struct vmw_private *dev_priv = vmw_priv(dev);
942 struct vmw_fpriv *vmw_fp = vmw_fpriv(file_priv);
943 struct vmw_master *vmaster = vmw_master(file_priv->master);
944 int ret;
945
fb1d9738
JB
946 /**
947 * Make sure the master doesn't disappear while we have
948 * it locked.
949 */
950
951 vmw_fp->locked_master = drm_master_get(file_priv->master);
952 ret = ttm_vt_lock(&vmaster->lock, false, vmw_fp->tfile);
e2fa3a76
TH
953 vmw_execbuf_release_pinned_bo(dev_priv, false, 0);
954
fb1d9738
JB
955 if (unlikely((ret != 0))) {
956 DRM_ERROR("Unable to lock TTM at VT switch.\n");
957 drm_master_put(&vmw_fp->locked_master);
958 }
959
960 ttm_lock_set_kill(&vmaster->lock, true, SIGTERM);
961
30c78bb8
TH
962 if (!dev_priv->enable_fb) {
963 ret = ttm_bo_evict_mm(&dev_priv->bdev, TTM_PL_VRAM);
964 if (unlikely(ret != 0))
965 DRM_ERROR("Unable to clean VRAM on master drop.\n");
966 mutex_lock(&dev_priv->hw_mutex);
967 vmw_write(dev_priv, SVGA_REG_TRACES, 1);
968 mutex_unlock(&dev_priv->hw_mutex);
969 vmw_kms_restore_vga(dev_priv);
05730b32 970 vmw_3d_resource_dec(dev_priv, true);
30c78bb8
TH
971 }
972
fb1d9738
JB
973 dev_priv->active_master = &dev_priv->fbdev_master;
974 ttm_lock_set_kill(&dev_priv->fbdev_master.lock, false, SIGTERM);
975 ttm_vt_unlock(&dev_priv->fbdev_master.lock);
976
30c78bb8
TH
977 if (dev_priv->enable_fb)
978 vmw_fb_on(dev_priv);
fb1d9738
JB
979}
980
981
982static void vmw_remove(struct pci_dev *pdev)
983{
984 struct drm_device *dev = pci_get_drvdata(pdev);
985
986 drm_put_dev(dev);
987}
988
d9f36a00
TH
989static int vmwgfx_pm_notifier(struct notifier_block *nb, unsigned long val,
990 void *ptr)
991{
992 struct vmw_private *dev_priv =
993 container_of(nb, struct vmw_private, pm_nb);
994 struct vmw_master *vmaster = dev_priv->active_master;
995
996 switch (val) {
997 case PM_HIBERNATION_PREPARE:
998 case PM_SUSPEND_PREPARE:
999 ttm_suspend_lock(&vmaster->lock);
1000
1001 /**
1002 * This empties VRAM and unbinds all GMR bindings.
1003 * Buffer contents is moved to swappable memory.
1004 */
e2fa3a76 1005 vmw_execbuf_release_pinned_bo(dev_priv, false, 0);
d9f36a00 1006 ttm_bo_swapout_all(&dev_priv->bdev);
094e0fa8 1007
d9f36a00
TH
1008 break;
1009 case PM_POST_HIBERNATION:
1010 case PM_POST_SUSPEND:
094e0fa8 1011 case PM_POST_RESTORE:
d9f36a00 1012 ttm_suspend_unlock(&vmaster->lock);
094e0fa8 1013
d9f36a00
TH
1014 break;
1015 case PM_RESTORE_PREPARE:
1016 break;
d9f36a00
TH
1017 default:
1018 break;
1019 }
1020 return 0;
1021}
1022
1023/**
1024 * These might not be needed with the virtual SVGA device.
1025 */
1026
7fbd721a 1027static int vmw_pci_suspend(struct pci_dev *pdev, pm_message_t state)
d9f36a00 1028{
094e0fa8
TH
1029 struct drm_device *dev = pci_get_drvdata(pdev);
1030 struct vmw_private *dev_priv = vmw_priv(dev);
1031
1032 if (dev_priv->num_3d_resources != 0) {
1033 DRM_INFO("Can't suspend or hibernate "
1034 "while 3D resources are active.\n");
1035 return -EBUSY;
1036 }
1037
d9f36a00
TH
1038 pci_save_state(pdev);
1039 pci_disable_device(pdev);
1040 pci_set_power_state(pdev, PCI_D3hot);
1041 return 0;
1042}
1043
7fbd721a 1044static int vmw_pci_resume(struct pci_dev *pdev)
d9f36a00
TH
1045{
1046 pci_set_power_state(pdev, PCI_D0);
1047 pci_restore_state(pdev);
1048 return pci_enable_device(pdev);
1049}
1050
7fbd721a
TH
1051static int vmw_pm_suspend(struct device *kdev)
1052{
1053 struct pci_dev *pdev = to_pci_dev(kdev);
1054 struct pm_message dummy;
1055
1056 dummy.event = 0;
1057
1058 return vmw_pci_suspend(pdev, dummy);
1059}
1060
1061static int vmw_pm_resume(struct device *kdev)
1062{
1063 struct pci_dev *pdev = to_pci_dev(kdev);
1064
1065 return vmw_pci_resume(pdev);
1066}
1067
1068static int vmw_pm_prepare(struct device *kdev)
1069{
1070 struct pci_dev *pdev = to_pci_dev(kdev);
1071 struct drm_device *dev = pci_get_drvdata(pdev);
1072 struct vmw_private *dev_priv = vmw_priv(dev);
1073
1074 /**
1075 * Release 3d reference held by fbdev and potentially
1076 * stop fifo.
1077 */
1078 dev_priv->suspended = true;
1079 if (dev_priv->enable_fb)
05730b32 1080 vmw_3d_resource_dec(dev_priv, true);
7fbd721a
TH
1081
1082 if (dev_priv->num_3d_resources != 0) {
1083
1084 DRM_INFO("Can't suspend or hibernate "
1085 "while 3D resources are active.\n");
1086
1087 if (dev_priv->enable_fb)
05730b32 1088 vmw_3d_resource_inc(dev_priv, true);
7fbd721a
TH
1089 dev_priv->suspended = false;
1090 return -EBUSY;
1091 }
1092
1093 return 0;
1094}
1095
1096static void vmw_pm_complete(struct device *kdev)
1097{
1098 struct pci_dev *pdev = to_pci_dev(kdev);
1099 struct drm_device *dev = pci_get_drvdata(pdev);
1100 struct vmw_private *dev_priv = vmw_priv(dev);
1101
1102 /**
1103 * Reclaim 3d reference held by fbdev and potentially
1104 * start fifo.
1105 */
1106 if (dev_priv->enable_fb)
05730b32 1107 vmw_3d_resource_inc(dev_priv, false);
7fbd721a
TH
1108
1109 dev_priv->suspended = false;
1110}
1111
1112static const struct dev_pm_ops vmw_pm_ops = {
1113 .prepare = vmw_pm_prepare,
1114 .complete = vmw_pm_complete,
1115 .suspend = vmw_pm_suspend,
1116 .resume = vmw_pm_resume,
1117};
1118
e08e96de
AV
1119static const struct file_operations vmwgfx_driver_fops = {
1120 .owner = THIS_MODULE,
1121 .open = drm_open,
1122 .release = drm_release,
1123 .unlocked_ioctl = vmw_unlocked_ioctl,
1124 .mmap = vmw_mmap,
1125 .poll = vmw_fops_poll,
1126 .read = vmw_fops_read,
1127 .fasync = drm_fasync,
1128#if defined(CONFIG_COMPAT)
1129 .compat_ioctl = drm_compat_ioctl,
1130#endif
1131 .llseek = noop_llseek,
1132};
1133
fb1d9738
JB
1134static struct drm_driver driver = {
1135 .driver_features = DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED |
1136 DRIVER_MODESET,
1137 .load = vmw_driver_load,
1138 .unload = vmw_driver_unload,
1139 .firstopen = vmw_firstopen,
1140 .lastclose = vmw_lastclose,
1141 .irq_preinstall = vmw_irq_preinstall,
1142 .irq_postinstall = vmw_irq_postinstall,
1143 .irq_uninstall = vmw_irq_uninstall,
1144 .irq_handler = vmw_irq_handler,
7a1c2f6c 1145 .get_vblank_counter = vmw_get_vblank_counter,
1c482ab3
JB
1146 .enable_vblank = vmw_enable_vblank,
1147 .disable_vblank = vmw_disable_vblank,
fb1d9738
JB
1148 .ioctls = vmw_ioctls,
1149 .num_ioctls = DRM_ARRAY_SIZE(vmw_ioctls),
1150 .dma_quiescent = NULL, /*vmw_dma_quiescent, */
1151 .master_create = vmw_master_create,
1152 .master_destroy = vmw_master_destroy,
1153 .master_set = vmw_master_set,
1154 .master_drop = vmw_master_drop,
1155 .open = vmw_driver_open,
6b82ef50 1156 .preclose = vmw_preclose,
fb1d9738 1157 .postclose = vmw_postclose,
5e1782d2
DA
1158
1159 .dumb_create = vmw_dumb_create,
1160 .dumb_map_offset = vmw_dumb_map_offset,
1161 .dumb_destroy = vmw_dumb_destroy,
1162
e08e96de 1163 .fops = &vmwgfx_driver_fops,
fb1d9738
JB
1164 .name = VMWGFX_DRIVER_NAME,
1165 .desc = VMWGFX_DRIVER_DESC,
1166 .date = VMWGFX_DRIVER_DATE,
1167 .major = VMWGFX_DRIVER_MAJOR,
1168 .minor = VMWGFX_DRIVER_MINOR,
1169 .patchlevel = VMWGFX_DRIVER_PATCHLEVEL
1170};
1171
8410ea3b
DA
1172static struct pci_driver vmw_pci_driver = {
1173 .name = VMWGFX_DRIVER_NAME,
1174 .id_table = vmw_pci_id_list,
1175 .probe = vmw_probe,
1176 .remove = vmw_remove,
1177 .driver = {
1178 .pm = &vmw_pm_ops
1179 }
1180};
1181
fb1d9738
JB
1182static int vmw_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
1183{
dcdb1674 1184 return drm_get_pci_dev(pdev, ent, &driver);
fb1d9738
JB
1185}
1186
1187static int __init vmwgfx_init(void)
1188{
1189 int ret;
8410ea3b 1190 ret = drm_pci_init(&driver, &vmw_pci_driver);
fb1d9738
JB
1191 if (ret)
1192 DRM_ERROR("Failed initializing DRM.\n");
1193 return ret;
1194}
1195
1196static void __exit vmwgfx_exit(void)
1197{
8410ea3b 1198 drm_pci_exit(&driver, &vmw_pci_driver);
fb1d9738
JB
1199}
1200
1201module_init(vmwgfx_init);
1202module_exit(vmwgfx_exit);
1203
1204MODULE_AUTHOR("VMware Inc. and others");
1205MODULE_DESCRIPTION("Standalone drm driver for the VMware SVGA device");
1206MODULE_LICENSE("GPL and additional rights");
73558ead
TH
1207MODULE_VERSION(__stringify(VMWGFX_DRIVER_MAJOR) "."
1208 __stringify(VMWGFX_DRIVER_MINOR) "."
1209 __stringify(VMWGFX_DRIVER_PATCHLEVEL) "."
1210 "0");