fb7c36e93fd4240dece391cd3a45e9641c15873f
[platform/adaptation/renesas_rcar/renesas_kernel.git] / drivers / gpu / drm / vmwgfx / vmwgfx_drv.c
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 #include <linux/module.h>
28
29 #include <drm/drmP.h>
30 #include "vmwgfx_drv.h"
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>
35 #include <linux/dma_remapping.h>
36
37 #define VMWGFX_DRIVER_NAME "vmwgfx"
38 #define VMWGFX_DRIVER_DESC "Linux drm driver for VMware graphics devices"
39 #define VMWGFX_CHIP_SVGAII 0
40 #define VMW_FB_RESERVATION 0
41
42 #define VMW_MIN_INITIAL_WIDTH 800
43 #define VMW_MIN_INITIAL_HEIGHT 600
44
45
46 /**
47  * Fully encoded drm commands. Might move to vmw_drm.h
48  */
49
50 #define DRM_IOCTL_VMW_GET_PARAM                                 \
51         DRM_IOWR(DRM_COMMAND_BASE + DRM_VMW_GET_PARAM,          \
52                  struct drm_vmw_getparam_arg)
53 #define DRM_IOCTL_VMW_ALLOC_DMABUF                              \
54         DRM_IOWR(DRM_COMMAND_BASE + DRM_VMW_ALLOC_DMABUF,       \
55                 union drm_vmw_alloc_dmabuf_arg)
56 #define DRM_IOCTL_VMW_UNREF_DMABUF                              \
57         DRM_IOW(DRM_COMMAND_BASE + DRM_VMW_UNREF_DMABUF,        \
58                 struct drm_vmw_unref_dmabuf_arg)
59 #define DRM_IOCTL_VMW_CURSOR_BYPASS                             \
60         DRM_IOW(DRM_COMMAND_BASE + DRM_VMW_CURSOR_BYPASS,       \
61                  struct drm_vmw_cursor_bypass_arg)
62
63 #define DRM_IOCTL_VMW_CONTROL_STREAM                            \
64         DRM_IOW(DRM_COMMAND_BASE + DRM_VMW_CONTROL_STREAM,      \
65                  struct drm_vmw_control_stream_arg)
66 #define DRM_IOCTL_VMW_CLAIM_STREAM                              \
67         DRM_IOR(DRM_COMMAND_BASE + DRM_VMW_CLAIM_STREAM,        \
68                  struct drm_vmw_stream_arg)
69 #define DRM_IOCTL_VMW_UNREF_STREAM                              \
70         DRM_IOW(DRM_COMMAND_BASE + DRM_VMW_UNREF_STREAM,        \
71                  struct drm_vmw_stream_arg)
72
73 #define DRM_IOCTL_VMW_CREATE_CONTEXT                            \
74         DRM_IOR(DRM_COMMAND_BASE + DRM_VMW_CREATE_CONTEXT,      \
75                 struct drm_vmw_context_arg)
76 #define DRM_IOCTL_VMW_UNREF_CONTEXT                             \
77         DRM_IOW(DRM_COMMAND_BASE + DRM_VMW_UNREF_CONTEXT,       \
78                 struct drm_vmw_context_arg)
79 #define DRM_IOCTL_VMW_CREATE_SURFACE                            \
80         DRM_IOWR(DRM_COMMAND_BASE + DRM_VMW_CREATE_SURFACE,     \
81                  union drm_vmw_surface_create_arg)
82 #define DRM_IOCTL_VMW_UNREF_SURFACE                             \
83         DRM_IOW(DRM_COMMAND_BASE + DRM_VMW_UNREF_SURFACE,       \
84                  struct drm_vmw_surface_arg)
85 #define DRM_IOCTL_VMW_REF_SURFACE                               \
86         DRM_IOWR(DRM_COMMAND_BASE + DRM_VMW_REF_SURFACE,        \
87                  union drm_vmw_surface_reference_arg)
88 #define DRM_IOCTL_VMW_EXECBUF                                   \
89         DRM_IOW(DRM_COMMAND_BASE + DRM_VMW_EXECBUF,             \
90                 struct drm_vmw_execbuf_arg)
91 #define DRM_IOCTL_VMW_GET_3D_CAP                                \
92         DRM_IOW(DRM_COMMAND_BASE + DRM_VMW_GET_3D_CAP,          \
93                  struct drm_vmw_get_3d_cap_arg)
94 #define DRM_IOCTL_VMW_FENCE_WAIT                                \
95         DRM_IOWR(DRM_COMMAND_BASE + DRM_VMW_FENCE_WAIT,         \
96                  struct drm_vmw_fence_wait_arg)
97 #define DRM_IOCTL_VMW_FENCE_SIGNALED                            \
98         DRM_IOWR(DRM_COMMAND_BASE + DRM_VMW_FENCE_SIGNALED,     \
99                  struct drm_vmw_fence_signaled_arg)
100 #define DRM_IOCTL_VMW_FENCE_UNREF                               \
101         DRM_IOW(DRM_COMMAND_BASE + DRM_VMW_FENCE_UNREF,         \
102                  struct drm_vmw_fence_arg)
103 #define DRM_IOCTL_VMW_FENCE_EVENT                               \
104         DRM_IOW(DRM_COMMAND_BASE + DRM_VMW_FENCE_EVENT,         \
105                  struct drm_vmw_fence_event_arg)
106 #define DRM_IOCTL_VMW_PRESENT                                   \
107         DRM_IOW(DRM_COMMAND_BASE + DRM_VMW_PRESENT,             \
108                  struct drm_vmw_present_arg)
109 #define DRM_IOCTL_VMW_PRESENT_READBACK                          \
110         DRM_IOW(DRM_COMMAND_BASE + DRM_VMW_PRESENT_READBACK,    \
111                  struct drm_vmw_present_readback_arg)
112 #define DRM_IOCTL_VMW_UPDATE_LAYOUT                             \
113         DRM_IOW(DRM_COMMAND_BASE + DRM_VMW_UPDATE_LAYOUT,       \
114                  struct drm_vmw_update_layout_arg)
115 #define DRM_IOCTL_VMW_CREATE_SHADER                             \
116         DRM_IOWR(DRM_COMMAND_BASE + DRM_VMW_CREATE_SHADER,      \
117                  struct drm_vmw_shader_create_arg)
118 #define DRM_IOCTL_VMW_UNREF_SHADER                              \
119         DRM_IOW(DRM_COMMAND_BASE + DRM_VMW_UNREF_SHADER,        \
120                  struct drm_vmw_shader_arg)
121 #define DRM_IOCTL_VMW_GB_SURFACE_CREATE                         \
122         DRM_IOWR(DRM_COMMAND_BASE + DRM_VMW_GB_SURFACE_CREATE,  \
123                  union drm_vmw_gb_surface_create_arg)
124 #define DRM_IOCTL_VMW_GB_SURFACE_REF                            \
125         DRM_IOWR(DRM_COMMAND_BASE + DRM_VMW_GB_SURFACE_REF,     \
126                  union drm_vmw_gb_surface_reference_arg)
127 #define DRM_IOCTL_VMW_SYNCCPU                                   \
128         DRM_IOW(DRM_COMMAND_BASE + DRM_VMW_SYNCCPU,             \
129                  struct drm_vmw_synccpu_arg)
130
131 /**
132  * The core DRM version of this macro doesn't account for
133  * DRM_COMMAND_BASE.
134  */
135
136 #define VMW_IOCTL_DEF(ioctl, func, flags) \
137   [DRM_IOCTL_NR(DRM_IOCTL_##ioctl) - DRM_COMMAND_BASE] = {DRM_##ioctl, flags, func, DRM_IOCTL_##ioctl}
138
139 /**
140  * Ioctl definitions.
141  */
142
143 static const struct drm_ioctl_desc vmw_ioctls[] = {
144         VMW_IOCTL_DEF(VMW_GET_PARAM, vmw_getparam_ioctl,
145                       DRM_AUTH | DRM_UNLOCKED),
146         VMW_IOCTL_DEF(VMW_ALLOC_DMABUF, vmw_dmabuf_alloc_ioctl,
147                       DRM_AUTH | DRM_UNLOCKED),
148         VMW_IOCTL_DEF(VMW_UNREF_DMABUF, vmw_dmabuf_unref_ioctl,
149                       DRM_AUTH | DRM_UNLOCKED),
150         VMW_IOCTL_DEF(VMW_CURSOR_BYPASS,
151                       vmw_kms_cursor_bypass_ioctl,
152                       DRM_MASTER | DRM_CONTROL_ALLOW | DRM_UNLOCKED),
153
154         VMW_IOCTL_DEF(VMW_CONTROL_STREAM, vmw_overlay_ioctl,
155                       DRM_MASTER | DRM_CONTROL_ALLOW | DRM_UNLOCKED),
156         VMW_IOCTL_DEF(VMW_CLAIM_STREAM, vmw_stream_claim_ioctl,
157                       DRM_MASTER | DRM_CONTROL_ALLOW | DRM_UNLOCKED),
158         VMW_IOCTL_DEF(VMW_UNREF_STREAM, vmw_stream_unref_ioctl,
159                       DRM_MASTER | DRM_CONTROL_ALLOW | DRM_UNLOCKED),
160
161         VMW_IOCTL_DEF(VMW_CREATE_CONTEXT, vmw_context_define_ioctl,
162                       DRM_AUTH | DRM_UNLOCKED),
163         VMW_IOCTL_DEF(VMW_UNREF_CONTEXT, vmw_context_destroy_ioctl,
164                       DRM_AUTH | DRM_UNLOCKED),
165         VMW_IOCTL_DEF(VMW_CREATE_SURFACE, vmw_surface_define_ioctl,
166                       DRM_AUTH | DRM_UNLOCKED),
167         VMW_IOCTL_DEF(VMW_UNREF_SURFACE, vmw_surface_destroy_ioctl,
168                       DRM_AUTH | DRM_UNLOCKED),
169         VMW_IOCTL_DEF(VMW_REF_SURFACE, vmw_surface_reference_ioctl,
170                       DRM_AUTH | DRM_UNLOCKED),
171         VMW_IOCTL_DEF(VMW_EXECBUF, vmw_execbuf_ioctl,
172                       DRM_AUTH | DRM_UNLOCKED),
173         VMW_IOCTL_DEF(VMW_FENCE_WAIT, vmw_fence_obj_wait_ioctl,
174                       DRM_AUTH | DRM_UNLOCKED),
175         VMW_IOCTL_DEF(VMW_FENCE_SIGNALED,
176                       vmw_fence_obj_signaled_ioctl,
177                       DRM_AUTH | DRM_UNLOCKED),
178         VMW_IOCTL_DEF(VMW_FENCE_UNREF, vmw_fence_obj_unref_ioctl,
179                       DRM_AUTH | DRM_UNLOCKED),
180         VMW_IOCTL_DEF(VMW_FENCE_EVENT,
181                       vmw_fence_event_ioctl,
182                       DRM_AUTH | DRM_UNLOCKED),
183         VMW_IOCTL_DEF(VMW_GET_3D_CAP, vmw_get_cap_3d_ioctl,
184                       DRM_AUTH | DRM_UNLOCKED),
185
186         /* these allow direct access to the framebuffers mark as master only */
187         VMW_IOCTL_DEF(VMW_PRESENT, vmw_present_ioctl,
188                       DRM_MASTER | DRM_AUTH | DRM_UNLOCKED),
189         VMW_IOCTL_DEF(VMW_PRESENT_READBACK,
190                       vmw_present_readback_ioctl,
191                       DRM_MASTER | DRM_AUTH | DRM_UNLOCKED),
192         VMW_IOCTL_DEF(VMW_UPDATE_LAYOUT,
193                       vmw_kms_update_layout_ioctl,
194                       DRM_MASTER | DRM_UNLOCKED),
195         VMW_IOCTL_DEF(VMW_CREATE_SHADER,
196                       vmw_shader_define_ioctl,
197                       DRM_AUTH | DRM_UNLOCKED),
198         VMW_IOCTL_DEF(VMW_UNREF_SHADER,
199                       vmw_shader_destroy_ioctl,
200                       DRM_AUTH | DRM_UNLOCKED),
201         VMW_IOCTL_DEF(VMW_GB_SURFACE_CREATE,
202                       vmw_gb_surface_define_ioctl,
203                       DRM_AUTH | DRM_UNLOCKED),
204         VMW_IOCTL_DEF(VMW_GB_SURFACE_REF,
205                       vmw_gb_surface_reference_ioctl,
206                       DRM_AUTH | DRM_UNLOCKED),
207         VMW_IOCTL_DEF(VMW_SYNCCPU,
208                       vmw_user_dmabuf_synccpu_ioctl,
209                       DRM_AUTH | DRM_UNLOCKED),
210 };
211
212 static struct pci_device_id vmw_pci_id_list[] = {
213         {0x15ad, 0x0405, PCI_ANY_ID, PCI_ANY_ID, 0, 0, VMWGFX_CHIP_SVGAII},
214         {0, 0, 0}
215 };
216 MODULE_DEVICE_TABLE(pci, vmw_pci_id_list);
217
218 static int enable_fbdev = IS_ENABLED(CONFIG_DRM_VMWGFX_FBCON);
219 static int vmw_force_iommu;
220 static int vmw_restrict_iommu;
221 static int vmw_force_coherent;
222 static int vmw_restrict_dma_mask;
223
224 static int vmw_probe(struct pci_dev *, const struct pci_device_id *);
225 static void vmw_master_init(struct vmw_master *);
226 static int vmwgfx_pm_notifier(struct notifier_block *nb, unsigned long val,
227                               void *ptr);
228
229 MODULE_PARM_DESC(enable_fbdev, "Enable vmwgfx fbdev");
230 module_param_named(enable_fbdev, enable_fbdev, int, 0600);
231 MODULE_PARM_DESC(force_dma_api, "Force using the DMA API for TTM pages");
232 module_param_named(force_dma_api, vmw_force_iommu, int, 0600);
233 MODULE_PARM_DESC(restrict_iommu, "Try to limit IOMMU usage for TTM pages");
234 module_param_named(restrict_iommu, vmw_restrict_iommu, int, 0600);
235 MODULE_PARM_DESC(force_coherent, "Force coherent TTM pages");
236 module_param_named(force_coherent, vmw_force_coherent, int, 0600);
237 MODULE_PARM_DESC(restrict_dma_mask, "Restrict DMA mask to 44 bits with IOMMU");
238 module_param_named(restrict_dma_mask, vmw_restrict_dma_mask, int, 0600);
239
240
241 static void vmw_print_capabilities(uint32_t capabilities)
242 {
243         DRM_INFO("Capabilities:\n");
244         if (capabilities & SVGA_CAP_RECT_COPY)
245                 DRM_INFO("  Rect copy.\n");
246         if (capabilities & SVGA_CAP_CURSOR)
247                 DRM_INFO("  Cursor.\n");
248         if (capabilities & SVGA_CAP_CURSOR_BYPASS)
249                 DRM_INFO("  Cursor bypass.\n");
250         if (capabilities & SVGA_CAP_CURSOR_BYPASS_2)
251                 DRM_INFO("  Cursor bypass 2.\n");
252         if (capabilities & SVGA_CAP_8BIT_EMULATION)
253                 DRM_INFO("  8bit emulation.\n");
254         if (capabilities & SVGA_CAP_ALPHA_CURSOR)
255                 DRM_INFO("  Alpha cursor.\n");
256         if (capabilities & SVGA_CAP_3D)
257                 DRM_INFO("  3D.\n");
258         if (capabilities & SVGA_CAP_EXTENDED_FIFO)
259                 DRM_INFO("  Extended Fifo.\n");
260         if (capabilities & SVGA_CAP_MULTIMON)
261                 DRM_INFO("  Multimon.\n");
262         if (capabilities & SVGA_CAP_PITCHLOCK)
263                 DRM_INFO("  Pitchlock.\n");
264         if (capabilities & SVGA_CAP_IRQMASK)
265                 DRM_INFO("  Irq mask.\n");
266         if (capabilities & SVGA_CAP_DISPLAY_TOPOLOGY)
267                 DRM_INFO("  Display Topology.\n");
268         if (capabilities & SVGA_CAP_GMR)
269                 DRM_INFO("  GMR.\n");
270         if (capabilities & SVGA_CAP_TRACES)
271                 DRM_INFO("  Traces.\n");
272         if (capabilities & SVGA_CAP_GMR2)
273                 DRM_INFO("  GMR2.\n");
274         if (capabilities & SVGA_CAP_SCREEN_OBJECT_2)
275                 DRM_INFO("  Screen Object 2.\n");
276         if (capabilities & SVGA_CAP_COMMAND_BUFFERS)
277                 DRM_INFO("  Command Buffers.\n");
278         if (capabilities & SVGA_CAP_CMD_BUFFERS_2)
279                 DRM_INFO("  Command Buffers 2.\n");
280         if (capabilities & SVGA_CAP_GBOBJECTS)
281                 DRM_INFO("  Guest Backed Resources.\n");
282 }
283
284 /**
285  * vmw_dummy_query_bo_create - create a bo to hold a dummy query result
286  *
287  * @dev_priv: A device private structure.
288  *
289  * This function creates a small buffer object that holds the query
290  * result for dummy queries emitted as query barriers.
291  * The function will then map the first page and initialize a pending
292  * occlusion query result structure, Finally it will unmap the buffer.
293  * No interruptible waits are done within this function.
294  *
295  * Returns an error if bo creation or initialization fails.
296  */
297 static int vmw_dummy_query_bo_create(struct vmw_private *dev_priv)
298 {
299         int ret;
300         struct ttm_buffer_object *bo;
301         struct ttm_bo_kmap_obj map;
302         volatile SVGA3dQueryResult *result;
303         bool dummy;
304
305         /*
306          * Create the bo as pinned, so that a tryreserve will
307          * immediately succeed. This is because we're the only
308          * user of the bo currently.
309          */
310         ret = ttm_bo_create(&dev_priv->bdev,
311                             PAGE_SIZE,
312                             ttm_bo_type_device,
313                             &vmw_sys_ne_placement,
314                             0, false, NULL,
315                             &bo);
316
317         if (unlikely(ret != 0))
318                 return ret;
319
320         ret = ttm_bo_reserve(bo, false, true, false, 0);
321         BUG_ON(ret != 0);
322
323         ret = ttm_bo_kmap(bo, 0, 1, &map);
324         if (likely(ret == 0)) {
325                 result = ttm_kmap_obj_virtual(&map, &dummy);
326                 result->totalSize = sizeof(*result);
327                 result->state = SVGA3D_QUERYSTATE_PENDING;
328                 result->result32 = 0xff;
329                 ttm_bo_kunmap(&map);
330         }
331         vmw_bo_pin(bo, false);
332         ttm_bo_unreserve(bo);
333
334         if (unlikely(ret != 0)) {
335                 DRM_ERROR("Dummy query buffer map failed.\n");
336                 ttm_bo_unref(&bo);
337         } else
338                 dev_priv->dummy_query_bo = bo;
339
340         return ret;
341 }
342
343 static int vmw_request_device(struct vmw_private *dev_priv)
344 {
345         int ret;
346
347         ret = vmw_fifo_init(dev_priv, &dev_priv->fifo);
348         if (unlikely(ret != 0)) {
349                 DRM_ERROR("Unable to initialize FIFO.\n");
350                 return ret;
351         }
352         vmw_fence_fifo_up(dev_priv->fman);
353         if (dev_priv->has_mob) {
354                 ret = vmw_otables_setup(dev_priv);
355                 if (unlikely(ret != 0)) {
356                         DRM_ERROR("Unable to initialize "
357                                   "guest Memory OBjects.\n");
358                         goto out_no_mob;
359                 }
360         }
361         ret = vmw_dummy_query_bo_create(dev_priv);
362         if (unlikely(ret != 0))
363                 goto out_no_query_bo;
364
365         return 0;
366
367 out_no_query_bo:
368         if (dev_priv->has_mob)
369                 vmw_otables_takedown(dev_priv);
370 out_no_mob:
371         vmw_fence_fifo_down(dev_priv->fman);
372         vmw_fifo_release(dev_priv, &dev_priv->fifo);
373         return ret;
374 }
375
376 static void vmw_release_device(struct vmw_private *dev_priv)
377 {
378         /*
379          * Previous destructions should've released
380          * the pinned bo.
381          */
382
383         BUG_ON(dev_priv->pinned_bo != NULL);
384
385         ttm_bo_unref(&dev_priv->dummy_query_bo);
386         if (dev_priv->has_mob)
387                 vmw_otables_takedown(dev_priv);
388         vmw_fence_fifo_down(dev_priv->fman);
389         vmw_fifo_release(dev_priv, &dev_priv->fifo);
390 }
391
392
393 /**
394  * Increase the 3d resource refcount.
395  * If the count was prevously zero, initialize the fifo, switching to svga
396  * mode. Note that the master holds a ref as well, and may request an
397  * explicit switch to svga mode if fb is not running, using @unhide_svga.
398  */
399 int vmw_3d_resource_inc(struct vmw_private *dev_priv,
400                         bool unhide_svga)
401 {
402         int ret = 0;
403
404         mutex_lock(&dev_priv->release_mutex);
405         if (unlikely(dev_priv->num_3d_resources++ == 0)) {
406                 ret = vmw_request_device(dev_priv);
407                 if (unlikely(ret != 0))
408                         --dev_priv->num_3d_resources;
409         } else if (unhide_svga) {
410                 mutex_lock(&dev_priv->hw_mutex);
411                 vmw_write(dev_priv, SVGA_REG_ENABLE,
412                           vmw_read(dev_priv, SVGA_REG_ENABLE) &
413                           ~SVGA_REG_ENABLE_HIDE);
414                 mutex_unlock(&dev_priv->hw_mutex);
415         }
416
417         mutex_unlock(&dev_priv->release_mutex);
418         return ret;
419 }
420
421 /**
422  * Decrease the 3d resource refcount.
423  * If the count reaches zero, disable the fifo, switching to vga mode.
424  * Note that the master holds a refcount as well, and may request an
425  * explicit switch to vga mode when it releases its refcount to account
426  * for the situation of an X server vt switch to VGA with 3d resources
427  * active.
428  */
429 void vmw_3d_resource_dec(struct vmw_private *dev_priv,
430                          bool hide_svga)
431 {
432         int32_t n3d;
433
434         mutex_lock(&dev_priv->release_mutex);
435         if (unlikely(--dev_priv->num_3d_resources == 0))
436                 vmw_release_device(dev_priv);
437         else if (hide_svga) {
438                 mutex_lock(&dev_priv->hw_mutex);
439                 vmw_write(dev_priv, SVGA_REG_ENABLE,
440                           vmw_read(dev_priv, SVGA_REG_ENABLE) |
441                           SVGA_REG_ENABLE_HIDE);
442                 mutex_unlock(&dev_priv->hw_mutex);
443         }
444
445         n3d = (int32_t) dev_priv->num_3d_resources;
446         mutex_unlock(&dev_priv->release_mutex);
447
448         BUG_ON(n3d < 0);
449 }
450
451 /**
452  * Sets the initial_[width|height] fields on the given vmw_private.
453  *
454  * It does so by reading SVGA_REG_[WIDTH|HEIGHT] regs and then
455  * clamping the value to fb_max_[width|height] fields and the
456  * VMW_MIN_INITIAL_[WIDTH|HEIGHT].
457  * If the values appear to be invalid, set them to
458  * VMW_MIN_INITIAL_[WIDTH|HEIGHT].
459  */
460 static void vmw_get_initial_size(struct vmw_private *dev_priv)
461 {
462         uint32_t width;
463         uint32_t height;
464
465         width = vmw_read(dev_priv, SVGA_REG_WIDTH);
466         height = vmw_read(dev_priv, SVGA_REG_HEIGHT);
467
468         width = max_t(uint32_t, width, VMW_MIN_INITIAL_WIDTH);
469         height = max_t(uint32_t, height, VMW_MIN_INITIAL_HEIGHT);
470
471         if (width > dev_priv->fb_max_width ||
472             height > dev_priv->fb_max_height) {
473
474                 /*
475                  * This is a host error and shouldn't occur.
476                  */
477
478                 width = VMW_MIN_INITIAL_WIDTH;
479                 height = VMW_MIN_INITIAL_HEIGHT;
480         }
481
482         dev_priv->initial_width = width;
483         dev_priv->initial_height = height;
484 }
485
486 /**
487  * vmw_dma_select_mode - Determine how DMA mappings should be set up for this
488  * system.
489  *
490  * @dev_priv: Pointer to a struct vmw_private
491  *
492  * This functions tries to determine the IOMMU setup and what actions
493  * need to be taken by the driver to make system pages visible to the
494  * device.
495  * If this function decides that DMA is not possible, it returns -EINVAL.
496  * The driver may then try to disable features of the device that require
497  * DMA.
498  */
499 static int vmw_dma_select_mode(struct vmw_private *dev_priv)
500 {
501         static const char *names[vmw_dma_map_max] = {
502                 [vmw_dma_phys] = "Using physical TTM page addresses.",
503                 [vmw_dma_alloc_coherent] = "Using coherent TTM pages.",
504                 [vmw_dma_map_populate] = "Keeping DMA mappings.",
505                 [vmw_dma_map_bind] = "Giving up DMA mappings early."};
506 #ifdef CONFIG_X86
507         const struct dma_map_ops *dma_ops = get_dma_ops(dev_priv->dev->dev);
508
509 #ifdef CONFIG_INTEL_IOMMU
510         if (intel_iommu_enabled) {
511                 dev_priv->map_mode = vmw_dma_map_populate;
512                 goto out_fixup;
513         }
514 #endif
515
516         if (!(vmw_force_iommu || vmw_force_coherent)) {
517                 dev_priv->map_mode = vmw_dma_phys;
518                 DRM_INFO("DMA map mode: %s\n", names[dev_priv->map_mode]);
519                 return 0;
520         }
521
522         dev_priv->map_mode = vmw_dma_map_populate;
523
524         if (dma_ops->sync_single_for_cpu)
525                 dev_priv->map_mode = vmw_dma_alloc_coherent;
526 #ifdef CONFIG_SWIOTLB
527         if (swiotlb_nr_tbl() == 0)
528                 dev_priv->map_mode = vmw_dma_map_populate;
529 #endif
530
531 #ifdef CONFIG_INTEL_IOMMU
532 out_fixup:
533 #endif
534         if (dev_priv->map_mode == vmw_dma_map_populate &&
535             vmw_restrict_iommu)
536                 dev_priv->map_mode = vmw_dma_map_bind;
537
538         if (vmw_force_coherent)
539                 dev_priv->map_mode = vmw_dma_alloc_coherent;
540
541 #if !defined(CONFIG_SWIOTLB) && !defined(CONFIG_INTEL_IOMMU)
542         /*
543          * No coherent page pool
544          */
545         if (dev_priv->map_mode == vmw_dma_alloc_coherent)
546                 return -EINVAL;
547 #endif
548
549 #else /* CONFIG_X86 */
550         dev_priv->map_mode = vmw_dma_map_populate;
551 #endif /* CONFIG_X86 */
552
553         DRM_INFO("DMA map mode: %s\n", names[dev_priv->map_mode]);
554
555         return 0;
556 }
557
558 /**
559  * vmw_dma_masks - set required page- and dma masks
560  *
561  * @dev: Pointer to struct drm-device
562  *
563  * With 32-bit we can only handle 32 bit PFNs. Optionally set that
564  * restriction also for 64-bit systems.
565  */
566 #ifdef CONFIG_INTEL_IOMMU
567 static int vmw_dma_masks(struct vmw_private *dev_priv)
568 {
569         struct drm_device *dev = dev_priv->dev;
570
571         if (intel_iommu_enabled &&
572             (sizeof(unsigned long) == 4 || vmw_restrict_dma_mask)) {
573                 DRM_INFO("Restricting DMA addresses to 44 bits.\n");
574                 return dma_set_mask(dev->dev, DMA_BIT_MASK(44));
575         }
576         return 0;
577 }
578 #else
579 static int vmw_dma_masks(struct vmw_private *dev_priv)
580 {
581         return 0;
582 }
583 #endif
584
585 static int vmw_driver_load(struct drm_device *dev, unsigned long chipset)
586 {
587         struct vmw_private *dev_priv;
588         int ret;
589         uint32_t svga_id;
590         enum vmw_res_type i;
591         bool refuse_dma = false;
592
593         dev_priv = kzalloc(sizeof(*dev_priv), GFP_KERNEL);
594         if (unlikely(dev_priv == NULL)) {
595                 DRM_ERROR("Failed allocating a device private struct.\n");
596                 return -ENOMEM;
597         }
598
599         pci_set_master(dev->pdev);
600
601         dev_priv->dev = dev;
602         dev_priv->vmw_chipset = chipset;
603         dev_priv->last_read_seqno = (uint32_t) -100;
604         mutex_init(&dev_priv->hw_mutex);
605         mutex_init(&dev_priv->cmdbuf_mutex);
606         mutex_init(&dev_priv->release_mutex);
607         mutex_init(&dev_priv->binding_mutex);
608         rwlock_init(&dev_priv->resource_lock);
609
610         for (i = vmw_res_context; i < vmw_res_max; ++i) {
611                 idr_init(&dev_priv->res_idr[i]);
612                 INIT_LIST_HEAD(&dev_priv->res_lru[i]);
613         }
614
615         mutex_init(&dev_priv->init_mutex);
616         init_waitqueue_head(&dev_priv->fence_queue);
617         init_waitqueue_head(&dev_priv->fifo_queue);
618         dev_priv->fence_queue_waiters = 0;
619         atomic_set(&dev_priv->fifo_queue_waiters, 0);
620
621         dev_priv->used_memory_size = 0;
622
623         dev_priv->io_start = pci_resource_start(dev->pdev, 0);
624         dev_priv->vram_start = pci_resource_start(dev->pdev, 1);
625         dev_priv->mmio_start = pci_resource_start(dev->pdev, 2);
626
627         dev_priv->enable_fb = enable_fbdev;
628
629         mutex_lock(&dev_priv->hw_mutex);
630
631         vmw_write(dev_priv, SVGA_REG_ID, SVGA_ID_2);
632         svga_id = vmw_read(dev_priv, SVGA_REG_ID);
633         if (svga_id != SVGA_ID_2) {
634                 ret = -ENOSYS;
635                 DRM_ERROR("Unsupported SVGA ID 0x%x\n", svga_id);
636                 mutex_unlock(&dev_priv->hw_mutex);
637                 goto out_err0;
638         }
639
640         dev_priv->capabilities = vmw_read(dev_priv, SVGA_REG_CAPABILITIES);
641         ret = vmw_dma_select_mode(dev_priv);
642         if (unlikely(ret != 0)) {
643                 DRM_INFO("Restricting capabilities due to IOMMU setup.\n");
644                 refuse_dma = true;
645         }
646
647         dev_priv->vram_size = vmw_read(dev_priv, SVGA_REG_VRAM_SIZE);
648         dev_priv->mmio_size = vmw_read(dev_priv, SVGA_REG_MEM_SIZE);
649         dev_priv->fb_max_width = vmw_read(dev_priv, SVGA_REG_MAX_WIDTH);
650         dev_priv->fb_max_height = vmw_read(dev_priv, SVGA_REG_MAX_HEIGHT);
651
652         vmw_get_initial_size(dev_priv);
653
654         if (dev_priv->capabilities & SVGA_CAP_GMR2) {
655                 dev_priv->max_gmr_ids =
656                         vmw_read(dev_priv, SVGA_REG_GMR_MAX_IDS);
657                 dev_priv->max_gmr_pages =
658                         vmw_read(dev_priv, SVGA_REG_GMRS_MAX_PAGES);
659                 dev_priv->memory_size =
660                         vmw_read(dev_priv, SVGA_REG_MEMORY_SIZE);
661                 dev_priv->memory_size -= dev_priv->vram_size;
662         } else {
663                 /*
664                  * An arbitrary limit of 512MiB on surface
665                  * memory. But all HWV8 hardware supports GMR2.
666                  */
667                 dev_priv->memory_size = 512*1024*1024;
668         }
669         dev_priv->max_mob_pages = 0;
670         dev_priv->max_mob_size = 0;
671         if (dev_priv->capabilities & SVGA_CAP_GBOBJECTS) {
672                 uint64_t mem_size =
673                         vmw_read(dev_priv,
674                                  SVGA_REG_SUGGESTED_GBOBJECT_MEM_SIZE_KB);
675
676                 dev_priv->max_mob_pages = mem_size * 1024 / PAGE_SIZE;
677                 dev_priv->prim_bb_mem =
678                         vmw_read(dev_priv,
679                                  SVGA_REG_MAX_PRIMARY_BOUNDING_BOX_MEM);
680                 dev_priv->max_mob_size =
681                         vmw_read(dev_priv, SVGA_REG_MOB_MAX_SIZE);
682         } else
683                 dev_priv->prim_bb_mem = dev_priv->vram_size;
684
685         ret = vmw_dma_masks(dev_priv);
686         if (unlikely(ret != 0)) {
687                 mutex_unlock(&dev_priv->hw_mutex);
688                 goto out_err0;
689         }
690
691         /*
692          * Limit back buffer size to VRAM size.  Remove this once
693          * screen targets are implemented.
694          */
695         if (dev_priv->prim_bb_mem > dev_priv->vram_size)
696                 dev_priv->prim_bb_mem = dev_priv->vram_size;
697
698         mutex_unlock(&dev_priv->hw_mutex);
699
700         vmw_print_capabilities(dev_priv->capabilities);
701
702         if (dev_priv->capabilities & SVGA_CAP_GMR2) {
703                 DRM_INFO("Max GMR ids is %u\n",
704                          (unsigned)dev_priv->max_gmr_ids);
705                 DRM_INFO("Max number of GMR pages is %u\n",
706                          (unsigned)dev_priv->max_gmr_pages);
707                 DRM_INFO("Max dedicated hypervisor surface memory is %u kiB\n",
708                          (unsigned)dev_priv->memory_size / 1024);
709         }
710         DRM_INFO("Maximum display memory size is %u kiB\n",
711                  dev_priv->prim_bb_mem / 1024);
712         DRM_INFO("VRAM at 0x%08x size is %u kiB\n",
713                  dev_priv->vram_start, dev_priv->vram_size / 1024);
714         DRM_INFO("MMIO at 0x%08x size is %u kiB\n",
715                  dev_priv->mmio_start, dev_priv->mmio_size / 1024);
716
717         ret = vmw_ttm_global_init(dev_priv);
718         if (unlikely(ret != 0))
719                 goto out_err0;
720
721
722         vmw_master_init(&dev_priv->fbdev_master);
723         ttm_lock_set_kill(&dev_priv->fbdev_master.lock, false, SIGTERM);
724         dev_priv->active_master = &dev_priv->fbdev_master;
725
726
727         ret = ttm_bo_device_init(&dev_priv->bdev,
728                                  dev_priv->bo_global_ref.ref.object,
729                                  &vmw_bo_driver, VMWGFX_FILE_PAGE_OFFSET,
730                                  false);
731         if (unlikely(ret != 0)) {
732                 DRM_ERROR("Failed initializing TTM buffer object driver.\n");
733                 goto out_err1;
734         }
735
736         ret = ttm_bo_init_mm(&dev_priv->bdev, TTM_PL_VRAM,
737                              (dev_priv->vram_size >> PAGE_SHIFT));
738         if (unlikely(ret != 0)) {
739                 DRM_ERROR("Failed initializing memory manager for VRAM.\n");
740                 goto out_err2;
741         }
742
743         dev_priv->has_gmr = true;
744         if (((dev_priv->capabilities & (SVGA_CAP_GMR | SVGA_CAP_GMR2)) == 0) ||
745             refuse_dma || ttm_bo_init_mm(&dev_priv->bdev, VMW_PL_GMR,
746                                          VMW_PL_GMR) != 0) {
747                 DRM_INFO("No GMR memory available. "
748                          "Graphics memory resources are very limited.\n");
749                 dev_priv->has_gmr = false;
750         }
751
752         if (dev_priv->capabilities & SVGA_CAP_GBOBJECTS) {
753                 dev_priv->has_mob = true;
754                 if (ttm_bo_init_mm(&dev_priv->bdev, VMW_PL_MOB,
755                                    VMW_PL_MOB) != 0) {
756                         DRM_INFO("No MOB memory available. "
757                                  "3D will be disabled.\n");
758                         dev_priv->has_mob = false;
759                 }
760         }
761
762         dev_priv->mmio_mtrr = arch_phys_wc_add(dev_priv->mmio_start,
763                                                dev_priv->mmio_size);
764
765         dev_priv->mmio_virt = ioremap_wc(dev_priv->mmio_start,
766                                          dev_priv->mmio_size);
767
768         if (unlikely(dev_priv->mmio_virt == NULL)) {
769                 ret = -ENOMEM;
770                 DRM_ERROR("Failed mapping MMIO.\n");
771                 goto out_err3;
772         }
773
774         /* Need mmio memory to check for fifo pitchlock cap. */
775         if (!(dev_priv->capabilities & SVGA_CAP_DISPLAY_TOPOLOGY) &&
776             !(dev_priv->capabilities & SVGA_CAP_PITCHLOCK) &&
777             !vmw_fifo_have_pitchlock(dev_priv)) {
778                 ret = -ENOSYS;
779                 DRM_ERROR("Hardware has no pitchlock\n");
780                 goto out_err4;
781         }
782
783         dev_priv->tdev = ttm_object_device_init
784                 (dev_priv->mem_global_ref.object, 12, &vmw_prime_dmabuf_ops);
785
786         if (unlikely(dev_priv->tdev == NULL)) {
787                 DRM_ERROR("Unable to initialize TTM object management.\n");
788                 ret = -ENOMEM;
789                 goto out_err4;
790         }
791
792         dev->dev_private = dev_priv;
793
794         ret = pci_request_regions(dev->pdev, "vmwgfx probe");
795         dev_priv->stealth = (ret != 0);
796         if (dev_priv->stealth) {
797                 /**
798                  * Request at least the mmio PCI resource.
799                  */
800
801                 DRM_INFO("It appears like vesafb is loaded. "
802                          "Ignore above error if any.\n");
803                 ret = pci_request_region(dev->pdev, 2, "vmwgfx stealth probe");
804                 if (unlikely(ret != 0)) {
805                         DRM_ERROR("Failed reserving the SVGA MMIO resource.\n");
806                         goto out_no_device;
807                 }
808         }
809
810         if (dev_priv->capabilities & SVGA_CAP_IRQMASK) {
811                 ret = drm_irq_install(dev);
812                 if (ret != 0) {
813                         DRM_ERROR("Failed installing irq: %d\n", ret);
814                         goto out_no_irq;
815                 }
816         }
817
818         dev_priv->fman = vmw_fence_manager_init(dev_priv);
819         if (unlikely(dev_priv->fman == NULL)) {
820                 ret = -ENOMEM;
821                 goto out_no_fman;
822         }
823
824         vmw_kms_save_vga(dev_priv);
825
826         /* Start kms and overlay systems, needs fifo. */
827         ret = vmw_kms_init(dev_priv);
828         if (unlikely(ret != 0))
829                 goto out_no_kms;
830         vmw_overlay_init(dev_priv);
831
832         if (dev_priv->enable_fb) {
833                 ret = vmw_3d_resource_inc(dev_priv, true);
834                 if (unlikely(ret != 0))
835                         goto out_no_fifo;
836                 vmw_fb_init(dev_priv);
837         }
838
839         dev_priv->pm_nb.notifier_call = vmwgfx_pm_notifier;
840         register_pm_notifier(&dev_priv->pm_nb);
841
842         return 0;
843
844 out_no_fifo:
845         vmw_overlay_close(dev_priv);
846         vmw_kms_close(dev_priv);
847 out_no_kms:
848         vmw_kms_restore_vga(dev_priv);
849         vmw_fence_manager_takedown(dev_priv->fman);
850 out_no_fman:
851         if (dev_priv->capabilities & SVGA_CAP_IRQMASK)
852                 drm_irq_uninstall(dev_priv->dev);
853 out_no_irq:
854         if (dev_priv->stealth)
855                 pci_release_region(dev->pdev, 2);
856         else
857                 pci_release_regions(dev->pdev);
858 out_no_device:
859         ttm_object_device_release(&dev_priv->tdev);
860 out_err4:
861         iounmap(dev_priv->mmio_virt);
862 out_err3:
863         arch_phys_wc_del(dev_priv->mmio_mtrr);
864         if (dev_priv->has_mob)
865                 (void) ttm_bo_clean_mm(&dev_priv->bdev, VMW_PL_MOB);
866         if (dev_priv->has_gmr)
867                 (void) ttm_bo_clean_mm(&dev_priv->bdev, VMW_PL_GMR);
868         (void)ttm_bo_clean_mm(&dev_priv->bdev, TTM_PL_VRAM);
869 out_err2:
870         (void)ttm_bo_device_release(&dev_priv->bdev);
871 out_err1:
872         vmw_ttm_global_release(dev_priv);
873 out_err0:
874         for (i = vmw_res_context; i < vmw_res_max; ++i)
875                 idr_destroy(&dev_priv->res_idr[i]);
876
877         kfree(dev_priv);
878         return ret;
879 }
880
881 static int vmw_driver_unload(struct drm_device *dev)
882 {
883         struct vmw_private *dev_priv = vmw_priv(dev);
884         enum vmw_res_type i;
885
886         unregister_pm_notifier(&dev_priv->pm_nb);
887
888         if (dev_priv->ctx.res_ht_initialized)
889                 drm_ht_remove(&dev_priv->ctx.res_ht);
890         if (dev_priv->ctx.cmd_bounce)
891                 vfree(dev_priv->ctx.cmd_bounce);
892         if (dev_priv->enable_fb) {
893                 vmw_fb_close(dev_priv);
894                 vmw_kms_restore_vga(dev_priv);
895                 vmw_3d_resource_dec(dev_priv, false);
896         }
897         vmw_kms_close(dev_priv);
898         vmw_overlay_close(dev_priv);
899         vmw_fence_manager_takedown(dev_priv->fman);
900         if (dev_priv->capabilities & SVGA_CAP_IRQMASK)
901                 drm_irq_uninstall(dev_priv->dev);
902         if (dev_priv->stealth)
903                 pci_release_region(dev->pdev, 2);
904         else
905                 pci_release_regions(dev->pdev);
906
907         ttm_object_device_release(&dev_priv->tdev);
908         iounmap(dev_priv->mmio_virt);
909         arch_phys_wc_del(dev_priv->mmio_mtrr);
910         if (dev_priv->has_mob)
911                 (void) ttm_bo_clean_mm(&dev_priv->bdev, VMW_PL_MOB);
912         if (dev_priv->has_gmr)
913                 (void)ttm_bo_clean_mm(&dev_priv->bdev, VMW_PL_GMR);
914         (void)ttm_bo_clean_mm(&dev_priv->bdev, TTM_PL_VRAM);
915         (void)ttm_bo_device_release(&dev_priv->bdev);
916         vmw_ttm_global_release(dev_priv);
917
918         for (i = vmw_res_context; i < vmw_res_max; ++i)
919                 idr_destroy(&dev_priv->res_idr[i]);
920
921         kfree(dev_priv);
922
923         return 0;
924 }
925
926 static void vmw_preclose(struct drm_device *dev,
927                          struct drm_file *file_priv)
928 {
929         struct vmw_fpriv *vmw_fp = vmw_fpriv(file_priv);
930         struct vmw_private *dev_priv = vmw_priv(dev);
931
932         vmw_event_fence_fpriv_gone(dev_priv->fman, &vmw_fp->fence_events);
933 }
934
935 static void vmw_postclose(struct drm_device *dev,
936                          struct drm_file *file_priv)
937 {
938         struct vmw_fpriv *vmw_fp;
939
940         vmw_fp = vmw_fpriv(file_priv);
941
942         if (vmw_fp->locked_master) {
943                 struct vmw_master *vmaster =
944                         vmw_master(vmw_fp->locked_master);
945
946                 ttm_lock_set_kill(&vmaster->lock, true, SIGTERM);
947                 ttm_vt_unlock(&vmaster->lock);
948                 drm_master_put(&vmw_fp->locked_master);
949         }
950
951         vmw_compat_shader_man_destroy(vmw_fp->shman);
952         ttm_object_file_release(&vmw_fp->tfile);
953         kfree(vmw_fp);
954 }
955
956 static int vmw_driver_open(struct drm_device *dev, struct drm_file *file_priv)
957 {
958         struct vmw_private *dev_priv = vmw_priv(dev);
959         struct vmw_fpriv *vmw_fp;
960         int ret = -ENOMEM;
961
962         vmw_fp = kzalloc(sizeof(*vmw_fp), GFP_KERNEL);
963         if (unlikely(vmw_fp == NULL))
964                 return ret;
965
966         INIT_LIST_HEAD(&vmw_fp->fence_events);
967         vmw_fp->tfile = ttm_object_file_init(dev_priv->tdev, 10);
968         if (unlikely(vmw_fp->tfile == NULL))
969                 goto out_no_tfile;
970
971         vmw_fp->shman = vmw_compat_shader_man_create(dev_priv);
972         if (IS_ERR(vmw_fp->shman))
973                 goto out_no_shman;
974
975         file_priv->driver_priv = vmw_fp;
976         dev_priv->bdev.dev_mapping = dev->dev_mapping;
977
978         return 0;
979
980 out_no_shman:
981         ttm_object_file_release(&vmw_fp->tfile);
982 out_no_tfile:
983         kfree(vmw_fp);
984         return ret;
985 }
986
987 static long vmw_unlocked_ioctl(struct file *filp, unsigned int cmd,
988                                unsigned long arg)
989 {
990         struct drm_file *file_priv = filp->private_data;
991         struct drm_device *dev = file_priv->minor->dev;
992         unsigned int nr = DRM_IOCTL_NR(cmd);
993
994         /*
995          * Do extra checking on driver private ioctls.
996          */
997
998         if ((nr >= DRM_COMMAND_BASE) && (nr < DRM_COMMAND_END)
999             && (nr < DRM_COMMAND_BASE + dev->driver->num_ioctls)) {
1000                 const struct drm_ioctl_desc *ioctl =
1001                     &vmw_ioctls[nr - DRM_COMMAND_BASE];
1002
1003                 if (unlikely(ioctl->cmd_drv != cmd)) {
1004                         DRM_ERROR("Invalid command format, ioctl %d\n",
1005                                   nr - DRM_COMMAND_BASE);
1006                         return -EINVAL;
1007                 }
1008         }
1009
1010         return drm_ioctl(filp, cmd, arg);
1011 }
1012
1013 static void vmw_lastclose(struct drm_device *dev)
1014 {
1015         struct drm_crtc *crtc;
1016         struct drm_mode_set set;
1017         int ret;
1018
1019         set.x = 0;
1020         set.y = 0;
1021         set.fb = NULL;
1022         set.mode = NULL;
1023         set.connectors = NULL;
1024         set.num_connectors = 0;
1025
1026         list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
1027                 set.crtc = crtc;
1028                 ret = drm_mode_set_config_internal(&set);
1029                 WARN_ON(ret != 0);
1030         }
1031
1032 }
1033
1034 static void vmw_master_init(struct vmw_master *vmaster)
1035 {
1036         ttm_lock_init(&vmaster->lock);
1037         INIT_LIST_HEAD(&vmaster->fb_surf);
1038         mutex_init(&vmaster->fb_surf_mutex);
1039 }
1040
1041 static int vmw_master_create(struct drm_device *dev,
1042                              struct drm_master *master)
1043 {
1044         struct vmw_master *vmaster;
1045
1046         vmaster = kzalloc(sizeof(*vmaster), GFP_KERNEL);
1047         if (unlikely(vmaster == NULL))
1048                 return -ENOMEM;
1049
1050         vmw_master_init(vmaster);
1051         ttm_lock_set_kill(&vmaster->lock, true, SIGTERM);
1052         master->driver_priv = vmaster;
1053
1054         return 0;
1055 }
1056
1057 static void vmw_master_destroy(struct drm_device *dev,
1058                                struct drm_master *master)
1059 {
1060         struct vmw_master *vmaster = vmw_master(master);
1061
1062         master->driver_priv = NULL;
1063         kfree(vmaster);
1064 }
1065
1066
1067 static int vmw_master_set(struct drm_device *dev,
1068                           struct drm_file *file_priv,
1069                           bool from_open)
1070 {
1071         struct vmw_private *dev_priv = vmw_priv(dev);
1072         struct vmw_fpriv *vmw_fp = vmw_fpriv(file_priv);
1073         struct vmw_master *active = dev_priv->active_master;
1074         struct vmw_master *vmaster = vmw_master(file_priv->master);
1075         int ret = 0;
1076
1077         if (!dev_priv->enable_fb) {
1078                 ret = vmw_3d_resource_inc(dev_priv, true);
1079                 if (unlikely(ret != 0))
1080                         return ret;
1081                 vmw_kms_save_vga(dev_priv);
1082                 mutex_lock(&dev_priv->hw_mutex);
1083                 vmw_write(dev_priv, SVGA_REG_TRACES, 0);
1084                 mutex_unlock(&dev_priv->hw_mutex);
1085         }
1086
1087         if (active) {
1088                 BUG_ON(active != &dev_priv->fbdev_master);
1089                 ret = ttm_vt_lock(&active->lock, false, vmw_fp->tfile);
1090                 if (unlikely(ret != 0))
1091                         goto out_no_active_lock;
1092
1093                 ttm_lock_set_kill(&active->lock, true, SIGTERM);
1094                 ret = ttm_bo_evict_mm(&dev_priv->bdev, TTM_PL_VRAM);
1095                 if (unlikely(ret != 0)) {
1096                         DRM_ERROR("Unable to clean VRAM on "
1097                                   "master drop.\n");
1098                 }
1099
1100                 dev_priv->active_master = NULL;
1101         }
1102
1103         ttm_lock_set_kill(&vmaster->lock, false, SIGTERM);
1104         if (!from_open) {
1105                 ttm_vt_unlock(&vmaster->lock);
1106                 BUG_ON(vmw_fp->locked_master != file_priv->master);
1107                 drm_master_put(&vmw_fp->locked_master);
1108         }
1109
1110         dev_priv->active_master = vmaster;
1111
1112         return 0;
1113
1114 out_no_active_lock:
1115         if (!dev_priv->enable_fb) {
1116                 vmw_kms_restore_vga(dev_priv);
1117                 vmw_3d_resource_dec(dev_priv, true);
1118                 mutex_lock(&dev_priv->hw_mutex);
1119                 vmw_write(dev_priv, SVGA_REG_TRACES, 1);
1120                 mutex_unlock(&dev_priv->hw_mutex);
1121         }
1122         return ret;
1123 }
1124
1125 static void vmw_master_drop(struct drm_device *dev,
1126                             struct drm_file *file_priv,
1127                             bool from_release)
1128 {
1129         struct vmw_private *dev_priv = vmw_priv(dev);
1130         struct vmw_fpriv *vmw_fp = vmw_fpriv(file_priv);
1131         struct vmw_master *vmaster = vmw_master(file_priv->master);
1132         int ret;
1133
1134         /**
1135          * Make sure the master doesn't disappear while we have
1136          * it locked.
1137          */
1138
1139         vmw_fp->locked_master = drm_master_get(file_priv->master);
1140         ret = ttm_vt_lock(&vmaster->lock, false, vmw_fp->tfile);
1141         if (unlikely((ret != 0))) {
1142                 DRM_ERROR("Unable to lock TTM at VT switch.\n");
1143                 drm_master_put(&vmw_fp->locked_master);
1144         }
1145
1146         ttm_lock_set_kill(&vmaster->lock, false, SIGTERM);
1147         vmw_execbuf_release_pinned_bo(dev_priv);
1148
1149         if (!dev_priv->enable_fb) {
1150                 ret = ttm_bo_evict_mm(&dev_priv->bdev, TTM_PL_VRAM);
1151                 if (unlikely(ret != 0))
1152                         DRM_ERROR("Unable to clean VRAM on master drop.\n");
1153                 vmw_kms_restore_vga(dev_priv);
1154                 vmw_3d_resource_dec(dev_priv, true);
1155                 mutex_lock(&dev_priv->hw_mutex);
1156                 vmw_write(dev_priv, SVGA_REG_TRACES, 1);
1157                 mutex_unlock(&dev_priv->hw_mutex);
1158         }
1159
1160         dev_priv->active_master = &dev_priv->fbdev_master;
1161         ttm_lock_set_kill(&dev_priv->fbdev_master.lock, false, SIGTERM);
1162         ttm_vt_unlock(&dev_priv->fbdev_master.lock);
1163
1164         if (dev_priv->enable_fb)
1165                 vmw_fb_on(dev_priv);
1166 }
1167
1168
1169 static void vmw_remove(struct pci_dev *pdev)
1170 {
1171         struct drm_device *dev = pci_get_drvdata(pdev);
1172
1173         drm_put_dev(dev);
1174 }
1175
1176 static int vmwgfx_pm_notifier(struct notifier_block *nb, unsigned long val,
1177                               void *ptr)
1178 {
1179         struct vmw_private *dev_priv =
1180                 container_of(nb, struct vmw_private, pm_nb);
1181         struct vmw_master *vmaster = dev_priv->active_master;
1182
1183         switch (val) {
1184         case PM_HIBERNATION_PREPARE:
1185         case PM_SUSPEND_PREPARE:
1186                 ttm_suspend_lock(&vmaster->lock);
1187
1188                 /**
1189                  * This empties VRAM and unbinds all GMR bindings.
1190                  * Buffer contents is moved to swappable memory.
1191                  */
1192                 vmw_execbuf_release_pinned_bo(dev_priv);
1193                 vmw_resource_evict_all(dev_priv);
1194                 ttm_bo_swapout_all(&dev_priv->bdev);
1195
1196                 break;
1197         case PM_POST_HIBERNATION:
1198         case PM_POST_SUSPEND:
1199         case PM_POST_RESTORE:
1200                 ttm_suspend_unlock(&vmaster->lock);
1201
1202                 break;
1203         case PM_RESTORE_PREPARE:
1204                 break;
1205         default:
1206                 break;
1207         }
1208         return 0;
1209 }
1210
1211 /**
1212  * These might not be needed with the virtual SVGA device.
1213  */
1214
1215 static int vmw_pci_suspend(struct pci_dev *pdev, pm_message_t state)
1216 {
1217         struct drm_device *dev = pci_get_drvdata(pdev);
1218         struct vmw_private *dev_priv = vmw_priv(dev);
1219
1220         if (dev_priv->num_3d_resources != 0) {
1221                 DRM_INFO("Can't suspend or hibernate "
1222                          "while 3D resources are active.\n");
1223                 return -EBUSY;
1224         }
1225
1226         pci_save_state(pdev);
1227         pci_disable_device(pdev);
1228         pci_set_power_state(pdev, PCI_D3hot);
1229         return 0;
1230 }
1231
1232 static int vmw_pci_resume(struct pci_dev *pdev)
1233 {
1234         pci_set_power_state(pdev, PCI_D0);
1235         pci_restore_state(pdev);
1236         return pci_enable_device(pdev);
1237 }
1238
1239 static int vmw_pm_suspend(struct device *kdev)
1240 {
1241         struct pci_dev *pdev = to_pci_dev(kdev);
1242         struct pm_message dummy;
1243
1244         dummy.event = 0;
1245
1246         return vmw_pci_suspend(pdev, dummy);
1247 }
1248
1249 static int vmw_pm_resume(struct device *kdev)
1250 {
1251         struct pci_dev *pdev = to_pci_dev(kdev);
1252
1253         return vmw_pci_resume(pdev);
1254 }
1255
1256 static int vmw_pm_prepare(struct device *kdev)
1257 {
1258         struct pci_dev *pdev = to_pci_dev(kdev);
1259         struct drm_device *dev = pci_get_drvdata(pdev);
1260         struct vmw_private *dev_priv = vmw_priv(dev);
1261
1262         /**
1263          * Release 3d reference held by fbdev and potentially
1264          * stop fifo.
1265          */
1266         dev_priv->suspended = true;
1267         if (dev_priv->enable_fb)
1268                         vmw_3d_resource_dec(dev_priv, true);
1269
1270         if (dev_priv->num_3d_resources != 0) {
1271
1272                 DRM_INFO("Can't suspend or hibernate "
1273                          "while 3D resources are active.\n");
1274
1275                 if (dev_priv->enable_fb)
1276                         vmw_3d_resource_inc(dev_priv, true);
1277                 dev_priv->suspended = false;
1278                 return -EBUSY;
1279         }
1280
1281         return 0;
1282 }
1283
1284 static void vmw_pm_complete(struct device *kdev)
1285 {
1286         struct pci_dev *pdev = to_pci_dev(kdev);
1287         struct drm_device *dev = pci_get_drvdata(pdev);
1288         struct vmw_private *dev_priv = vmw_priv(dev);
1289
1290         mutex_lock(&dev_priv->hw_mutex);
1291         vmw_write(dev_priv, SVGA_REG_ID, SVGA_ID_2);
1292         (void) vmw_read(dev_priv, SVGA_REG_ID);
1293         mutex_unlock(&dev_priv->hw_mutex);
1294
1295         /**
1296          * Reclaim 3d reference held by fbdev and potentially
1297          * start fifo.
1298          */
1299         if (dev_priv->enable_fb)
1300                         vmw_3d_resource_inc(dev_priv, false);
1301
1302         dev_priv->suspended = false;
1303 }
1304
1305 static const struct dev_pm_ops vmw_pm_ops = {
1306         .prepare = vmw_pm_prepare,
1307         .complete = vmw_pm_complete,
1308         .suspend = vmw_pm_suspend,
1309         .resume = vmw_pm_resume,
1310 };
1311
1312 static const struct file_operations vmwgfx_driver_fops = {
1313         .owner = THIS_MODULE,
1314         .open = drm_open,
1315         .release = drm_release,
1316         .unlocked_ioctl = vmw_unlocked_ioctl,
1317         .mmap = vmw_mmap,
1318         .poll = vmw_fops_poll,
1319         .read = vmw_fops_read,
1320 #if defined(CONFIG_COMPAT)
1321         .compat_ioctl = drm_compat_ioctl,
1322 #endif
1323         .llseek = noop_llseek,
1324 };
1325
1326 static struct drm_driver driver = {
1327         .driver_features = DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED |
1328         DRIVER_MODESET | DRIVER_PRIME,
1329         .load = vmw_driver_load,
1330         .unload = vmw_driver_unload,
1331         .lastclose = vmw_lastclose,
1332         .irq_preinstall = vmw_irq_preinstall,
1333         .irq_postinstall = vmw_irq_postinstall,
1334         .irq_uninstall = vmw_irq_uninstall,
1335         .irq_handler = vmw_irq_handler,
1336         .get_vblank_counter = vmw_get_vblank_counter,
1337         .enable_vblank = vmw_enable_vblank,
1338         .disable_vblank = vmw_disable_vblank,
1339         .ioctls = vmw_ioctls,
1340         .num_ioctls = DRM_ARRAY_SIZE(vmw_ioctls),
1341         .master_create = vmw_master_create,
1342         .master_destroy = vmw_master_destroy,
1343         .master_set = vmw_master_set,
1344         .master_drop = vmw_master_drop,
1345         .open = vmw_driver_open,
1346         .preclose = vmw_preclose,
1347         .postclose = vmw_postclose,
1348
1349         .dumb_create = vmw_dumb_create,
1350         .dumb_map_offset = vmw_dumb_map_offset,
1351         .dumb_destroy = vmw_dumb_destroy,
1352
1353         .prime_fd_to_handle = vmw_prime_fd_to_handle,
1354         .prime_handle_to_fd = vmw_prime_handle_to_fd,
1355
1356         .fops = &vmwgfx_driver_fops,
1357         .name = VMWGFX_DRIVER_NAME,
1358         .desc = VMWGFX_DRIVER_DESC,
1359         .date = VMWGFX_DRIVER_DATE,
1360         .major = VMWGFX_DRIVER_MAJOR,
1361         .minor = VMWGFX_DRIVER_MINOR,
1362         .patchlevel = VMWGFX_DRIVER_PATCHLEVEL
1363 };
1364
1365 static struct pci_driver vmw_pci_driver = {
1366         .name = VMWGFX_DRIVER_NAME,
1367         .id_table = vmw_pci_id_list,
1368         .probe = vmw_probe,
1369         .remove = vmw_remove,
1370         .driver = {
1371                 .pm = &vmw_pm_ops
1372         }
1373 };
1374
1375 static int vmw_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
1376 {
1377         return drm_get_pci_dev(pdev, ent, &driver);
1378 }
1379
1380 static int __init vmwgfx_init(void)
1381 {
1382         int ret;
1383         ret = drm_pci_init(&driver, &vmw_pci_driver);
1384         if (ret)
1385                 DRM_ERROR("Failed initializing DRM.\n");
1386         return ret;
1387 }
1388
1389 static void __exit vmwgfx_exit(void)
1390 {
1391         drm_pci_exit(&driver, &vmw_pci_driver);
1392 }
1393
1394 module_init(vmwgfx_init);
1395 module_exit(vmwgfx_exit);
1396
1397 MODULE_AUTHOR("VMware Inc. and others");
1398 MODULE_DESCRIPTION("Standalone drm driver for the VMware SVGA device");
1399 MODULE_LICENSE("GPL and additional rights");
1400 MODULE_VERSION(__stringify(VMWGFX_DRIVER_MAJOR) "."
1401                __stringify(VMWGFX_DRIVER_MINOR) "."
1402                __stringify(VMWGFX_DRIVER_PATCHLEVEL) "."
1403                "0");