blob: 1b8f428accaea045792d05cd2c58e77daf5de635 [file] [log] [blame]
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +00001/**************************************************************************
2 *
3 * Copyright © 2009 VMware, Inc., Palo Alto, CA., USA
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
21 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
22 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
23 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
24 * USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28#include "vmwgfx_drv.h"
David Howells760285e2012-10-02 18:01:07 +010029#include <drm/vmwgfx_drm.h>
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +020030#include "vmwgfx_kms.h"
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000031
32int vmw_getparam_ioctl(struct drm_device *dev, void *data,
33 struct drm_file *file_priv)
34{
35 struct vmw_private *dev_priv = vmw_priv(dev);
36 struct drm_vmw_getparam_arg *param =
37 (struct drm_vmw_getparam_arg *)data;
38
39 switch (param->param) {
40 case DRM_VMW_PARAM_NUM_STREAMS:
41 param->value = vmw_overlay_num_overlays(dev_priv);
42 break;
43 case DRM_VMW_PARAM_NUM_FREE_STREAMS:
44 param->value = vmw_overlay_num_free_overlays(dev_priv);
45 break;
46 case DRM_VMW_PARAM_3D:
Jakob Bornecrantz8e19a952010-01-30 03:38:06 +000047 param->value = vmw_fifo_have_3d(dev_priv) ? 1 : 0;
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000048 break;
Thomas Hellstromf77cef32010-02-09 19:41:55 +000049 case DRM_VMW_PARAM_HW_CAPS:
50 param->value = dev_priv->capabilities;
51 break;
52 case DRM_VMW_PARAM_FIFO_CAPS:
53 param->value = dev_priv->fifo.capabilities;
54 break;
Thomas Hellstrom30f47fc82010-10-05 12:43:06 +020055 case DRM_VMW_PARAM_MAX_FB_SIZE:
56 param->value = dev_priv->vram_size;
57 break;
Thomas Hellstromf63f6a52011-09-01 20:18:41 +000058 case DRM_VMW_PARAM_FIFO_HW_VERSION:
59 {
60 __le32 __iomem *fifo_mem = dev_priv->mmio_virt;
Thomas Hellstromebd4c6f2011-11-28 13:19:08 +010061 const struct vmw_fifo_state *fifo = &dev_priv->fifo;
Thomas Hellstromf63f6a52011-09-01 20:18:41 +000062
Thomas Hellstromebd4c6f2011-11-28 13:19:08 +010063 param->value =
64 ioread32(fifo_mem +
65 ((fifo->capabilities &
66 SVGA_FIFO_CAP_3D_HWVERSION_REVISED) ?
67 SVGA_FIFO_3D_HWVERSION_REVISED :
68 SVGA_FIFO_3D_HWVERSION));
Thomas Hellstromf63f6a52011-09-01 20:18:41 +000069 break;
70 }
Jakob Bornecrantzfb1d9732009-12-10 00:19:58 +000071 default:
72 DRM_ERROR("Illegal vmwgfx get param request: %d\n",
73 param->param);
74 return -EINVAL;
75 }
76
77 return 0;
78}
Thomas Hellstromf63f6a52011-09-01 20:18:41 +000079
80
81int vmw_get_cap_3d_ioctl(struct drm_device *dev, void *data,
82 struct drm_file *file_priv)
83{
84 struct drm_vmw_get_3d_cap_arg *arg =
85 (struct drm_vmw_get_3d_cap_arg *) data;
86 struct vmw_private *dev_priv = vmw_priv(dev);
87 uint32_t size;
88 __le32 __iomem *fifo_mem;
89 void __user *buffer = (void __user *)((unsigned long)(arg->buffer));
90 void *bounce;
91 int ret;
92
93 if (unlikely(arg->pad64 != 0)) {
94 DRM_ERROR("Illegal GET_3D_CAP argument.\n");
95 return -EINVAL;
96 }
97
98 size = (SVGA_FIFO_3D_CAPS_LAST - SVGA_FIFO_3D_CAPS + 1) << 2;
99
100 if (arg->max_size < size)
101 size = arg->max_size;
102
103 bounce = vmalloc(size);
104 if (unlikely(bounce == NULL)) {
105 DRM_ERROR("Failed to allocate bounce buffer for 3D caps.\n");
106 return -ENOMEM;
107 }
108
109 fifo_mem = dev_priv->mmio_virt;
110 memcpy_fromio(bounce, &fifo_mem[SVGA_FIFO_3D_CAPS], size);
111
112 ret = copy_to_user(buffer, bounce, size);
Dan Carpenter888155b2012-11-12 11:07:24 +0000113 if (ret)
114 ret = -EFAULT;
Thomas Hellstromf63f6a52011-09-01 20:18:41 +0000115 vfree(bounce);
116
117 if (unlikely(ret != 0))
118 DRM_ERROR("Failed to report 3D caps info.\n");
119
120 return ret;
121}
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +0200122
123int vmw_present_ioctl(struct drm_device *dev, void *data,
124 struct drm_file *file_priv)
125{
126 struct ttm_object_file *tfile = vmw_fpriv(file_priv)->tfile;
127 struct vmw_private *dev_priv = vmw_priv(dev);
128 struct drm_vmw_present_arg *arg =
129 (struct drm_vmw_present_arg *)data;
130 struct vmw_surface *surface;
131 struct vmw_master *vmaster = vmw_master(file_priv->master);
132 struct drm_vmw_rect __user *clips_ptr;
133 struct drm_vmw_rect *clips = NULL;
Daniel Vetter786b99e2012-12-02 21:53:40 +0100134 struct drm_framebuffer *fb;
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +0200135 struct vmw_framebuffer *vfb;
Thomas Hellstromc0951b72012-11-20 12:19:35 +0000136 struct vmw_resource *res;
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +0200137 uint32_t num_clips;
138 int ret;
139
140 num_clips = arg->num_clips;
141 clips_ptr = (struct drm_vmw_rect *)(unsigned long)arg->clips_ptr;
142
143 if (unlikely(num_clips == 0))
144 return 0;
145
146 if (clips_ptr == NULL) {
147 DRM_ERROR("Variable clips_ptr must be specified.\n");
148 ret = -EINVAL;
149 goto out_clips;
150 }
151
Thomas Meyer24bb5a02011-11-29 22:08:00 +0100152 clips = kcalloc(num_clips, sizeof(*clips), GFP_KERNEL);
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +0200153 if (clips == NULL) {
154 DRM_ERROR("Failed to allocate clip rect list.\n");
155 ret = -ENOMEM;
156 goto out_clips;
157 }
158
159 ret = copy_from_user(clips, clips_ptr, num_clips * sizeof(*clips));
160 if (ret) {
161 DRM_ERROR("Failed to copy clip rects from userspace.\n");
Dan Carpenterd2c184f2011-10-18 09:09:19 +0300162 ret = -EFAULT;
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +0200163 goto out_no_copy;
164 }
165
Daniel Vetterbbe4b992012-12-02 01:48:38 +0100166 drm_modeset_lock_all(dev);
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +0200167
Daniel Vetter786b99e2012-12-02 21:53:40 +0100168 fb = drm_framebuffer_lookup(dev, arg->fb_id);
169 if (!fb) {
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +0200170 DRM_ERROR("Invalid framebuffer id.\n");
171 ret = -EINVAL;
172 goto out_no_fb;
173 }
Daniel Vetter786b99e2012-12-02 21:53:40 +0100174 /* fb is protect by the mode_config lock, so drop the ref immediately */
175 drm_framebuffer_unreference(fb);
176 vfb = vmw_framebuffer_to_vfb(fb);
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +0200177
178 ret = ttm_read_lock(&vmaster->lock, true);
179 if (unlikely(ret != 0))
180 goto out_no_ttm_lock;
181
Thomas Hellstromc0951b72012-11-20 12:19:35 +0000182 ret = vmw_user_resource_lookup_handle(dev_priv, tfile, arg->sid,
183 user_surface_converter,
184 &res);
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +0200185 if (ret)
186 goto out_no_surface;
187
Thomas Hellstromc0951b72012-11-20 12:19:35 +0000188 surface = vmw_res_to_srf(res);
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +0200189 ret = vmw_kms_present(dev_priv, file_priv,
190 vfb, surface, arg->sid,
191 arg->dest_x, arg->dest_y,
192 clips, num_clips);
193
194 /* vmw_user_surface_lookup takes one ref so does new_fb */
195 vmw_surface_unreference(&surface);
196
197out_no_surface:
198 ttm_read_unlock(&vmaster->lock);
199out_no_ttm_lock:
200out_no_fb:
Daniel Vetterbbe4b992012-12-02 01:48:38 +0100201 drm_modeset_unlock_all(dev);
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +0200202out_no_copy:
203 kfree(clips);
204out_clips:
205 return ret;
206}
207
208int vmw_present_readback_ioctl(struct drm_device *dev, void *data,
209 struct drm_file *file_priv)
210{
211 struct vmw_private *dev_priv = vmw_priv(dev);
212 struct drm_vmw_present_readback_arg *arg =
213 (struct drm_vmw_present_readback_arg *)data;
214 struct drm_vmw_fence_rep __user *user_fence_rep =
215 (struct drm_vmw_fence_rep __user *)
216 (unsigned long)arg->fence_rep;
217 struct vmw_master *vmaster = vmw_master(file_priv->master);
218 struct drm_vmw_rect __user *clips_ptr;
219 struct drm_vmw_rect *clips = NULL;
Daniel Vetter786b99e2012-12-02 21:53:40 +0100220 struct drm_framebuffer *fb;
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +0200221 struct vmw_framebuffer *vfb;
222 uint32_t num_clips;
223 int ret;
224
225 num_clips = arg->num_clips;
226 clips_ptr = (struct drm_vmw_rect *)(unsigned long)arg->clips_ptr;
227
228 if (unlikely(num_clips == 0))
229 return 0;
230
231 if (clips_ptr == NULL) {
232 DRM_ERROR("Argument clips_ptr must be specified.\n");
233 ret = -EINVAL;
234 goto out_clips;
235 }
236
Thomas Meyer24bb5a02011-11-29 22:08:00 +0100237 clips = kcalloc(num_clips, sizeof(*clips), GFP_KERNEL);
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +0200238 if (clips == NULL) {
239 DRM_ERROR("Failed to allocate clip rect list.\n");
240 ret = -ENOMEM;
241 goto out_clips;
242 }
243
244 ret = copy_from_user(clips, clips_ptr, num_clips * sizeof(*clips));
245 if (ret) {
246 DRM_ERROR("Failed to copy clip rects from userspace.\n");
Dan Carpenterd2c184f2011-10-18 09:09:19 +0300247 ret = -EFAULT;
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +0200248 goto out_no_copy;
249 }
250
Daniel Vetterbbe4b992012-12-02 01:48:38 +0100251 drm_modeset_lock_all(dev);
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +0200252
Daniel Vetter786b99e2012-12-02 21:53:40 +0100253 fb = drm_framebuffer_lookup(dev, arg->fb_id);
254 if (!fb) {
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +0200255 DRM_ERROR("Invalid framebuffer id.\n");
256 ret = -EINVAL;
257 goto out_no_fb;
258 }
Daniel Vetter786b99e2012-12-02 21:53:40 +0100259 /* fb is protect by the mode_config lock, so drop the ref immediately */
260 drm_framebuffer_unreference(fb);
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +0200261
Daniel Vetter786b99e2012-12-02 21:53:40 +0100262 vfb = vmw_framebuffer_to_vfb(fb);
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +0200263 if (!vfb->dmabuf) {
264 DRM_ERROR("Framebuffer not dmabuf backed.\n");
265 ret = -EINVAL;
266 goto out_no_fb;
267 }
268
269 ret = ttm_read_lock(&vmaster->lock, true);
270 if (unlikely(ret != 0))
271 goto out_no_ttm_lock;
272
273 ret = vmw_kms_readback(dev_priv, file_priv,
274 vfb, user_fence_rep,
275 clips, num_clips);
276
277 ttm_read_unlock(&vmaster->lock);
278out_no_ttm_lock:
279out_no_fb:
Daniel Vetterbbe4b992012-12-02 01:48:38 +0100280 drm_modeset_unlock_all(dev);
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +0200281out_no_copy:
282 kfree(clips);
283out_clips:
284 return ret;
285}
Thomas Hellstrom5438ae82011-10-10 12:23:27 +0200286
287
288/**
289 * vmw_fops_poll - wrapper around the drm_poll function
290 *
291 * @filp: See the linux fops poll documentation.
292 * @wait: See the linux fops poll documentation.
293 *
294 * Wrapper around the drm_poll function that makes sure the device is
295 * processing the fifo if drm_poll decides to wait.
296 */
297unsigned int vmw_fops_poll(struct file *filp, struct poll_table_struct *wait)
298{
299 struct drm_file *file_priv = filp->private_data;
300 struct vmw_private *dev_priv =
301 vmw_priv(file_priv->minor->dev);
302
303 vmw_fifo_ping_host(dev_priv, SVGA_SYNC_GENERIC);
304 return drm_poll(filp, wait);
305}
306
307
308/**
309 * vmw_fops_read - wrapper around the drm_read function
310 *
311 * @filp: See the linux fops read documentation.
312 * @buffer: See the linux fops read documentation.
313 * @count: See the linux fops read documentation.
314 * offset: See the linux fops read documentation.
315 *
316 * Wrapper around the drm_read function that makes sure the device is
317 * processing the fifo if drm_read decides to wait.
318 */
319ssize_t vmw_fops_read(struct file *filp, char __user *buffer,
320 size_t count, loff_t *offset)
321{
322 struct drm_file *file_priv = filp->private_data;
323 struct vmw_private *dev_priv =
324 vmw_priv(file_priv->minor->dev);
325
326 vmw_fifo_ping_host(dev_priv, SVGA_SYNC_GENERIC);
327 return drm_read(filp, buffer, count, offset);
328}