blob: 1edb63ec3f348d56bd73ea54a8fa7a7214a298c9 [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"
29#include "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);
113 vfree(bounce);
114
115 if (unlikely(ret != 0))
116 DRM_ERROR("Failed to report 3D caps info.\n");
117
118 return ret;
119}
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +0200120
121int vmw_present_ioctl(struct drm_device *dev, void *data,
122 struct drm_file *file_priv)
123{
124 struct ttm_object_file *tfile = vmw_fpriv(file_priv)->tfile;
125 struct vmw_private *dev_priv = vmw_priv(dev);
126 struct drm_vmw_present_arg *arg =
127 (struct drm_vmw_present_arg *)data;
128 struct vmw_surface *surface;
129 struct vmw_master *vmaster = vmw_master(file_priv->master);
130 struct drm_vmw_rect __user *clips_ptr;
131 struct drm_vmw_rect *clips = NULL;
132 struct drm_mode_object *obj;
133 struct vmw_framebuffer *vfb;
134 uint32_t num_clips;
135 int ret;
136
137 num_clips = arg->num_clips;
138 clips_ptr = (struct drm_vmw_rect *)(unsigned long)arg->clips_ptr;
139
140 if (unlikely(num_clips == 0))
141 return 0;
142
143 if (clips_ptr == NULL) {
144 DRM_ERROR("Variable clips_ptr must be specified.\n");
145 ret = -EINVAL;
146 goto out_clips;
147 }
148
Thomas Meyer24bb5a02011-11-29 22:08:00 +0100149 clips = kcalloc(num_clips, sizeof(*clips), GFP_KERNEL);
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +0200150 if (clips == NULL) {
151 DRM_ERROR("Failed to allocate clip rect list.\n");
152 ret = -ENOMEM;
153 goto out_clips;
154 }
155
156 ret = copy_from_user(clips, clips_ptr, num_clips * sizeof(*clips));
157 if (ret) {
158 DRM_ERROR("Failed to copy clip rects from userspace.\n");
Dan Carpenterd2c184f2011-10-18 09:09:19 +0300159 ret = -EFAULT;
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +0200160 goto out_no_copy;
161 }
162
163 ret = mutex_lock_interruptible(&dev->mode_config.mutex);
164 if (unlikely(ret != 0)) {
165 ret = -ERESTARTSYS;
166 goto out_no_mode_mutex;
167 }
168
169 obj = drm_mode_object_find(dev, arg->fb_id, DRM_MODE_OBJECT_FB);
170 if (!obj) {
171 DRM_ERROR("Invalid framebuffer id.\n");
172 ret = -EINVAL;
173 goto out_no_fb;
174 }
175
176 vfb = vmw_framebuffer_to_vfb(obj_to_fb(obj));
177 if (!vfb->dmabuf) {
178 DRM_ERROR("Framebuffer not dmabuf backed.\n");
179 ret = -EINVAL;
180 goto out_no_fb;
181 }
182
183 ret = ttm_read_lock(&vmaster->lock, true);
184 if (unlikely(ret != 0))
185 goto out_no_ttm_lock;
186
187 ret = vmw_user_surface_lookup_handle(dev_priv, tfile, arg->sid,
188 &surface);
189 if (ret)
190 goto out_no_surface;
191
192 ret = vmw_kms_present(dev_priv, file_priv,
193 vfb, surface, arg->sid,
194 arg->dest_x, arg->dest_y,
195 clips, num_clips);
196
197 /* vmw_user_surface_lookup takes one ref so does new_fb */
198 vmw_surface_unreference(&surface);
199
200out_no_surface:
201 ttm_read_unlock(&vmaster->lock);
202out_no_ttm_lock:
203out_no_fb:
204 mutex_unlock(&dev->mode_config.mutex);
205out_no_mode_mutex:
206out_no_copy:
207 kfree(clips);
208out_clips:
209 return ret;
210}
211
212int vmw_present_readback_ioctl(struct drm_device *dev, void *data,
213 struct drm_file *file_priv)
214{
215 struct vmw_private *dev_priv = vmw_priv(dev);
216 struct drm_vmw_present_readback_arg *arg =
217 (struct drm_vmw_present_readback_arg *)data;
218 struct drm_vmw_fence_rep __user *user_fence_rep =
219 (struct drm_vmw_fence_rep __user *)
220 (unsigned long)arg->fence_rep;
221 struct vmw_master *vmaster = vmw_master(file_priv->master);
222 struct drm_vmw_rect __user *clips_ptr;
223 struct drm_vmw_rect *clips = NULL;
224 struct drm_mode_object *obj;
225 struct vmw_framebuffer *vfb;
226 uint32_t num_clips;
227 int ret;
228
229 num_clips = arg->num_clips;
230 clips_ptr = (struct drm_vmw_rect *)(unsigned long)arg->clips_ptr;
231
232 if (unlikely(num_clips == 0))
233 return 0;
234
235 if (clips_ptr == NULL) {
236 DRM_ERROR("Argument clips_ptr must be specified.\n");
237 ret = -EINVAL;
238 goto out_clips;
239 }
240
Thomas Meyer24bb5a02011-11-29 22:08:00 +0100241 clips = kcalloc(num_clips, sizeof(*clips), GFP_KERNEL);
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +0200242 if (clips == NULL) {
243 DRM_ERROR("Failed to allocate clip rect list.\n");
244 ret = -ENOMEM;
245 goto out_clips;
246 }
247
248 ret = copy_from_user(clips, clips_ptr, num_clips * sizeof(*clips));
249 if (ret) {
250 DRM_ERROR("Failed to copy clip rects from userspace.\n");
Dan Carpenterd2c184f2011-10-18 09:09:19 +0300251 ret = -EFAULT;
Jakob Bornecrantz2fcd5a72011-10-04 20:13:26 +0200252 goto out_no_copy;
253 }
254
255 ret = mutex_lock_interruptible(&dev->mode_config.mutex);
256 if (unlikely(ret != 0)) {
257 ret = -ERESTARTSYS;
258 goto out_no_mode_mutex;
259 }
260
261 obj = drm_mode_object_find(dev, arg->fb_id, DRM_MODE_OBJECT_FB);
262 if (!obj) {
263 DRM_ERROR("Invalid framebuffer id.\n");
264 ret = -EINVAL;
265 goto out_no_fb;
266 }
267
268 vfb = vmw_framebuffer_to_vfb(obj_to_fb(obj));
269 if (!vfb->dmabuf) {
270 DRM_ERROR("Framebuffer not dmabuf backed.\n");
271 ret = -EINVAL;
272 goto out_no_fb;
273 }
274
275 ret = ttm_read_lock(&vmaster->lock, true);
276 if (unlikely(ret != 0))
277 goto out_no_ttm_lock;
278
279 ret = vmw_kms_readback(dev_priv, file_priv,
280 vfb, user_fence_rep,
281 clips, num_clips);
282
283 ttm_read_unlock(&vmaster->lock);
284out_no_ttm_lock:
285out_no_fb:
286 mutex_unlock(&dev->mode_config.mutex);
287out_no_mode_mutex:
288out_no_copy:
289 kfree(clips);
290out_clips:
291 return ret;
292}
Thomas Hellstrom5438ae82011-10-10 12:23:27 +0200293
294
295/**
296 * vmw_fops_poll - wrapper around the drm_poll function
297 *
298 * @filp: See the linux fops poll documentation.
299 * @wait: See the linux fops poll documentation.
300 *
301 * Wrapper around the drm_poll function that makes sure the device is
302 * processing the fifo if drm_poll decides to wait.
303 */
304unsigned int vmw_fops_poll(struct file *filp, struct poll_table_struct *wait)
305{
306 struct drm_file *file_priv = filp->private_data;
307 struct vmw_private *dev_priv =
308 vmw_priv(file_priv->minor->dev);
309
310 vmw_fifo_ping_host(dev_priv, SVGA_SYNC_GENERIC);
311 return drm_poll(filp, wait);
312}
313
314
315/**
316 * vmw_fops_read - wrapper around the drm_read function
317 *
318 * @filp: See the linux fops read documentation.
319 * @buffer: See the linux fops read documentation.
320 * @count: See the linux fops read documentation.
321 * offset: See the linux fops read documentation.
322 *
323 * Wrapper around the drm_read function that makes sure the device is
324 * processing the fifo if drm_read decides to wait.
325 */
326ssize_t vmw_fops_read(struct file *filp, char __user *buffer,
327 size_t count, loff_t *offset)
328{
329 struct drm_file *file_priv = filp->private_data;
330 struct vmw_private *dev_priv =
331 vmw_priv(file_priv->minor->dev);
332
333 vmw_fifo_ping_host(dev_priv, SVGA_SYNC_GENERIC);
334 return drm_read(filp, buffer, count, offset);
335}