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