RT-AC56 3.0.0.4.374.37 core
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / gpu / drm / vmwgfx / vmwgfx_execbuf.c
blobdd8356e6e49b1afbf64e8f719b2299b087ac5072
1 /**************************************************************************
3 * Copyright © 2009 VMware, Inc., Palo Alto, CA., USA
4 * All Rights Reserved.
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:
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.
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.
26 **************************************************************************/
28 #include "vmwgfx_drv.h"
29 #include "vmwgfx_reg.h"
30 #include "ttm/ttm_bo_api.h"
31 #include "ttm/ttm_placement.h"
33 static int vmw_cmd_invalid(struct vmw_private *dev_priv,
34 struct vmw_sw_context *sw_context,
35 SVGA3dCmdHeader *header)
37 return capable(CAP_SYS_ADMIN) ? : -EINVAL;
40 static int vmw_cmd_ok(struct vmw_private *dev_priv,
41 struct vmw_sw_context *sw_context,
42 SVGA3dCmdHeader *header)
44 return 0;
47 static int vmw_cmd_cid_check(struct vmw_private *dev_priv,
48 struct vmw_sw_context *sw_context,
49 SVGA3dCmdHeader *header)
51 struct vmw_cid_cmd {
52 SVGA3dCmdHeader header;
53 __le32 cid;
54 } *cmd;
55 int ret;
57 cmd = container_of(header, struct vmw_cid_cmd, header);
58 if (likely(sw_context->cid_valid && cmd->cid == sw_context->last_cid))
59 return 0;
61 ret = vmw_context_check(dev_priv, sw_context->tfile, cmd->cid);
62 if (unlikely(ret != 0)) {
63 DRM_ERROR("Could not find or use context %u\n",
64 (unsigned) cmd->cid);
65 return ret;
68 sw_context->last_cid = cmd->cid;
69 sw_context->cid_valid = true;
71 return 0;
74 static int vmw_cmd_sid_check(struct vmw_private *dev_priv,
75 struct vmw_sw_context *sw_context,
76 uint32_t *sid)
78 if (*sid == SVGA3D_INVALID_ID)
79 return 0;
81 if (unlikely((!sw_context->sid_valid ||
82 *sid != sw_context->last_sid))) {
83 int real_id;
84 int ret = vmw_surface_check(dev_priv, sw_context->tfile,
85 *sid, &real_id);
87 if (unlikely(ret != 0)) {
88 DRM_ERROR("Could ot find or use surface 0x%08x "
89 "address 0x%08lx\n",
90 (unsigned int) *sid,
91 (unsigned long) sid);
92 return ret;
95 sw_context->last_sid = *sid;
96 sw_context->sid_valid = true;
97 *sid = real_id;
98 sw_context->sid_translation = real_id;
99 } else
100 *sid = sw_context->sid_translation;
102 return 0;
106 static int vmw_cmd_set_render_target_check(struct vmw_private *dev_priv,
107 struct vmw_sw_context *sw_context,
108 SVGA3dCmdHeader *header)
110 struct vmw_sid_cmd {
111 SVGA3dCmdHeader header;
112 SVGA3dCmdSetRenderTarget body;
113 } *cmd;
114 int ret;
116 ret = vmw_cmd_cid_check(dev_priv, sw_context, header);
117 if (unlikely(ret != 0))
118 return ret;
120 cmd = container_of(header, struct vmw_sid_cmd, header);
121 ret = vmw_cmd_sid_check(dev_priv, sw_context, &cmd->body.target.sid);
122 return ret;
125 static int vmw_cmd_surface_copy_check(struct vmw_private *dev_priv,
126 struct vmw_sw_context *sw_context,
127 SVGA3dCmdHeader *header)
129 struct vmw_sid_cmd {
130 SVGA3dCmdHeader header;
131 SVGA3dCmdSurfaceCopy body;
132 } *cmd;
133 int ret;
135 cmd = container_of(header, struct vmw_sid_cmd, header);
136 ret = vmw_cmd_sid_check(dev_priv, sw_context, &cmd->body.src.sid);
137 if (unlikely(ret != 0))
138 return ret;
139 return vmw_cmd_sid_check(dev_priv, sw_context, &cmd->body.dest.sid);
142 static int vmw_cmd_stretch_blt_check(struct vmw_private *dev_priv,
143 struct vmw_sw_context *sw_context,
144 SVGA3dCmdHeader *header)
146 struct vmw_sid_cmd {
147 SVGA3dCmdHeader header;
148 SVGA3dCmdSurfaceStretchBlt body;
149 } *cmd;
150 int ret;
152 cmd = container_of(header, struct vmw_sid_cmd, header);
153 ret = vmw_cmd_sid_check(dev_priv, sw_context, &cmd->body.src.sid);
154 if (unlikely(ret != 0))
155 return ret;
156 return vmw_cmd_sid_check(dev_priv, sw_context, &cmd->body.dest.sid);
159 static int vmw_cmd_blt_surf_screen_check(struct vmw_private *dev_priv,
160 struct vmw_sw_context *sw_context,
161 SVGA3dCmdHeader *header)
163 struct vmw_sid_cmd {
164 SVGA3dCmdHeader header;
165 SVGA3dCmdBlitSurfaceToScreen body;
166 } *cmd;
168 cmd = container_of(header, struct vmw_sid_cmd, header);
169 return vmw_cmd_sid_check(dev_priv, sw_context, &cmd->body.srcImage.sid);
172 static int vmw_cmd_present_check(struct vmw_private *dev_priv,
173 struct vmw_sw_context *sw_context,
174 SVGA3dCmdHeader *header)
176 struct vmw_sid_cmd {
177 SVGA3dCmdHeader header;
178 SVGA3dCmdPresent body;
179 } *cmd;
181 cmd = container_of(header, struct vmw_sid_cmd, header);
182 return vmw_cmd_sid_check(dev_priv, sw_context, &cmd->body.sid);
185 static int vmw_translate_guest_ptr(struct vmw_private *dev_priv,
186 struct vmw_sw_context *sw_context,
187 SVGAGuestPtr *ptr,
188 struct vmw_dma_buffer **vmw_bo_p)
190 struct vmw_dma_buffer *vmw_bo = NULL;
191 struct ttm_buffer_object *bo;
192 uint32_t handle = ptr->gmrId;
193 struct vmw_relocation *reloc;
194 uint32_t cur_validate_node;
195 struct ttm_validate_buffer *val_buf;
196 int ret;
198 ret = vmw_user_dmabuf_lookup(sw_context->tfile, handle, &vmw_bo);
199 if (unlikely(ret != 0)) {
200 DRM_ERROR("Could not find or use GMR region.\n");
201 return -EINVAL;
203 bo = &vmw_bo->base;
205 if (unlikely(sw_context->cur_reloc >= VMWGFX_MAX_RELOCATIONS)) {
206 DRM_ERROR("Max number relocations per submission"
207 " exceeded\n");
208 ret = -EINVAL;
209 goto out_no_reloc;
212 reloc = &sw_context->relocs[sw_context->cur_reloc++];
213 reloc->location = ptr;
215 cur_validate_node = vmw_dmabuf_validate_node(bo, sw_context->cur_val_buf);
216 if (unlikely(cur_validate_node >= VMWGFX_MAX_GMRS)) {
217 DRM_ERROR("Max number of DMA buffers per submission"
218 " exceeded.\n");
219 ret = -EINVAL;
220 goto out_no_reloc;
223 reloc->index = cur_validate_node;
224 if (unlikely(cur_validate_node == sw_context->cur_val_buf)) {
225 val_buf = &sw_context->val_bufs[cur_validate_node];
226 val_buf->bo = ttm_bo_reference(bo);
227 val_buf->new_sync_obj_arg = (void *) dev_priv;
228 list_add_tail(&val_buf->head, &sw_context->validate_nodes);
229 ++sw_context->cur_val_buf;
231 *vmw_bo_p = vmw_bo;
232 return 0;
234 out_no_reloc:
235 vmw_dmabuf_unreference(&vmw_bo);
236 vmw_bo_p = NULL;
237 return ret;
240 static int vmw_cmd_end_query(struct vmw_private *dev_priv,
241 struct vmw_sw_context *sw_context,
242 SVGA3dCmdHeader *header)
244 struct vmw_dma_buffer *vmw_bo;
245 struct vmw_query_cmd {
246 SVGA3dCmdHeader header;
247 SVGA3dCmdEndQuery q;
248 } *cmd;
249 int ret;
251 cmd = container_of(header, struct vmw_query_cmd, header);
252 ret = vmw_cmd_cid_check(dev_priv, sw_context, header);
253 if (unlikely(ret != 0))
254 return ret;
256 ret = vmw_translate_guest_ptr(dev_priv, sw_context,
257 &cmd->q.guestResult,
258 &vmw_bo);
259 if (unlikely(ret != 0))
260 return ret;
262 vmw_dmabuf_unreference(&vmw_bo);
263 return 0;
266 static int vmw_cmd_wait_query(struct vmw_private *dev_priv,
267 struct vmw_sw_context *sw_context,
268 SVGA3dCmdHeader *header)
270 struct vmw_dma_buffer *vmw_bo;
271 struct vmw_query_cmd {
272 SVGA3dCmdHeader header;
273 SVGA3dCmdWaitForQuery q;
274 } *cmd;
275 int ret;
277 cmd = container_of(header, struct vmw_query_cmd, header);
278 ret = vmw_cmd_cid_check(dev_priv, sw_context, header);
279 if (unlikely(ret != 0))
280 return ret;
282 ret = vmw_translate_guest_ptr(dev_priv, sw_context,
283 &cmd->q.guestResult,
284 &vmw_bo);
285 if (unlikely(ret != 0))
286 return ret;
288 vmw_dmabuf_unreference(&vmw_bo);
289 return 0;
293 static int vmw_cmd_dma(struct vmw_private *dev_priv,
294 struct vmw_sw_context *sw_context,
295 SVGA3dCmdHeader *header)
297 struct vmw_dma_buffer *vmw_bo = NULL;
298 struct ttm_buffer_object *bo;
299 struct vmw_surface *srf = NULL;
300 struct vmw_dma_cmd {
301 SVGA3dCmdHeader header;
302 SVGA3dCmdSurfaceDMA dma;
303 } *cmd;
304 int ret;
306 cmd = container_of(header, struct vmw_dma_cmd, header);
307 ret = vmw_translate_guest_ptr(dev_priv, sw_context,
308 &cmd->dma.guest.ptr,
309 &vmw_bo);
310 if (unlikely(ret != 0))
311 return ret;
313 bo = &vmw_bo->base;
314 ret = vmw_user_surface_lookup_handle(dev_priv, sw_context->tfile,
315 cmd->dma.host.sid, &srf);
316 if (ret) {
317 DRM_ERROR("could not find surface\n");
318 goto out_no_reloc;
322 * Patch command stream with device SID.
325 cmd->dma.host.sid = srf->res.id;
326 vmw_kms_cursor_snoop(srf, sw_context->tfile, bo, header);
327 vmw_surface_unreference(&srf);
329 out_no_reloc:
330 vmw_dmabuf_unreference(&vmw_bo);
331 return ret;
334 static int vmw_cmd_draw(struct vmw_private *dev_priv,
335 struct vmw_sw_context *sw_context,
336 SVGA3dCmdHeader *header)
338 struct vmw_draw_cmd {
339 SVGA3dCmdHeader header;
340 SVGA3dCmdDrawPrimitives body;
341 } *cmd;
342 SVGA3dVertexDecl *decl = (SVGA3dVertexDecl *)(
343 (unsigned long)header + sizeof(*cmd));
344 SVGA3dPrimitiveRange *range;
345 uint32_t i;
346 uint32_t maxnum;
347 int ret;
349 ret = vmw_cmd_cid_check(dev_priv, sw_context, header);
350 if (unlikely(ret != 0))
351 return ret;
353 cmd = container_of(header, struct vmw_draw_cmd, header);
354 maxnum = (header->size - sizeof(cmd->body)) / sizeof(*decl);
356 if (unlikely(cmd->body.numVertexDecls > maxnum)) {
357 DRM_ERROR("Illegal number of vertex declarations.\n");
358 return -EINVAL;
361 for (i = 0; i < cmd->body.numVertexDecls; ++i, ++decl) {
362 ret = vmw_cmd_sid_check(dev_priv, sw_context,
363 &decl->array.surfaceId);
364 if (unlikely(ret != 0))
365 return ret;
368 maxnum = (header->size - sizeof(cmd->body) -
369 cmd->body.numVertexDecls * sizeof(*decl)) / sizeof(*range);
370 if (unlikely(cmd->body.numRanges > maxnum)) {
371 DRM_ERROR("Illegal number of index ranges.\n");
372 return -EINVAL;
375 range = (SVGA3dPrimitiveRange *) decl;
376 for (i = 0; i < cmd->body.numRanges; ++i, ++range) {
377 ret = vmw_cmd_sid_check(dev_priv, sw_context,
378 &range->indexArray.surfaceId);
379 if (unlikely(ret != 0))
380 return ret;
382 return 0;
386 static int vmw_cmd_tex_state(struct vmw_private *dev_priv,
387 struct vmw_sw_context *sw_context,
388 SVGA3dCmdHeader *header)
390 struct vmw_tex_state_cmd {
391 SVGA3dCmdHeader header;
392 SVGA3dCmdSetTextureState state;
395 SVGA3dTextureState *last_state = (SVGA3dTextureState *)
396 ((unsigned long) header + header->size + sizeof(header));
397 SVGA3dTextureState *cur_state = (SVGA3dTextureState *)
398 ((unsigned long) header + sizeof(struct vmw_tex_state_cmd));
399 int ret;
401 ret = vmw_cmd_cid_check(dev_priv, sw_context, header);
402 if (unlikely(ret != 0))
403 return ret;
405 for (; cur_state < last_state; ++cur_state) {
406 if (likely(cur_state->name != SVGA3D_TS_BIND_TEXTURE))
407 continue;
409 ret = vmw_cmd_sid_check(dev_priv, sw_context,
410 &cur_state->value);
411 if (unlikely(ret != 0))
412 return ret;
415 return 0;
419 typedef int (*vmw_cmd_func) (struct vmw_private *,
420 struct vmw_sw_context *,
421 SVGA3dCmdHeader *);
423 #define VMW_CMD_DEF(cmd, func) \
424 [cmd - SVGA_3D_CMD_BASE] = func
426 static vmw_cmd_func vmw_cmd_funcs[SVGA_3D_CMD_MAX] = {
427 VMW_CMD_DEF(SVGA_3D_CMD_SURFACE_DEFINE, &vmw_cmd_invalid),
428 VMW_CMD_DEF(SVGA_3D_CMD_SURFACE_DESTROY, &vmw_cmd_invalid),
429 VMW_CMD_DEF(SVGA_3D_CMD_SURFACE_COPY, &vmw_cmd_surface_copy_check),
430 VMW_CMD_DEF(SVGA_3D_CMD_SURFACE_STRETCHBLT, &vmw_cmd_stretch_blt_check),
431 VMW_CMD_DEF(SVGA_3D_CMD_SURFACE_DMA, &vmw_cmd_dma),
432 VMW_CMD_DEF(SVGA_3D_CMD_CONTEXT_DEFINE, &vmw_cmd_invalid),
433 VMW_CMD_DEF(SVGA_3D_CMD_CONTEXT_DESTROY, &vmw_cmd_invalid),
434 VMW_CMD_DEF(SVGA_3D_CMD_SETTRANSFORM, &vmw_cmd_cid_check),
435 VMW_CMD_DEF(SVGA_3D_CMD_SETZRANGE, &vmw_cmd_cid_check),
436 VMW_CMD_DEF(SVGA_3D_CMD_SETRENDERSTATE, &vmw_cmd_cid_check),
437 VMW_CMD_DEF(SVGA_3D_CMD_SETRENDERTARGET,
438 &vmw_cmd_set_render_target_check),
439 VMW_CMD_DEF(SVGA_3D_CMD_SETTEXTURESTATE, &vmw_cmd_tex_state),
440 VMW_CMD_DEF(SVGA_3D_CMD_SETMATERIAL, &vmw_cmd_cid_check),
441 VMW_CMD_DEF(SVGA_3D_CMD_SETLIGHTDATA, &vmw_cmd_cid_check),
442 VMW_CMD_DEF(SVGA_3D_CMD_SETLIGHTENABLED, &vmw_cmd_cid_check),
443 VMW_CMD_DEF(SVGA_3D_CMD_SETVIEWPORT, &vmw_cmd_cid_check),
444 VMW_CMD_DEF(SVGA_3D_CMD_SETCLIPPLANE, &vmw_cmd_cid_check),
445 VMW_CMD_DEF(SVGA_3D_CMD_CLEAR, &vmw_cmd_cid_check),
446 VMW_CMD_DEF(SVGA_3D_CMD_PRESENT, &vmw_cmd_present_check),
447 VMW_CMD_DEF(SVGA_3D_CMD_SHADER_DEFINE, &vmw_cmd_cid_check),
448 VMW_CMD_DEF(SVGA_3D_CMD_SHADER_DESTROY, &vmw_cmd_cid_check),
449 VMW_CMD_DEF(SVGA_3D_CMD_SET_SHADER, &vmw_cmd_cid_check),
450 VMW_CMD_DEF(SVGA_3D_CMD_SET_SHADER_CONST, &vmw_cmd_cid_check),
451 VMW_CMD_DEF(SVGA_3D_CMD_DRAW_PRIMITIVES, &vmw_cmd_draw),
452 VMW_CMD_DEF(SVGA_3D_CMD_SETSCISSORRECT, &vmw_cmd_cid_check),
453 VMW_CMD_DEF(SVGA_3D_CMD_BEGIN_QUERY, &vmw_cmd_cid_check),
454 VMW_CMD_DEF(SVGA_3D_CMD_END_QUERY, &vmw_cmd_end_query),
455 VMW_CMD_DEF(SVGA_3D_CMD_WAIT_FOR_QUERY, &vmw_cmd_wait_query),
456 VMW_CMD_DEF(SVGA_3D_CMD_PRESENT_READBACK, &vmw_cmd_ok),
457 VMW_CMD_DEF(SVGA_3D_CMD_BLIT_SURFACE_TO_SCREEN,
458 &vmw_cmd_blt_surf_screen_check)
461 static int vmw_cmd_check(struct vmw_private *dev_priv,
462 struct vmw_sw_context *sw_context,
463 void *buf, uint32_t *size)
465 uint32_t cmd_id;
466 uint32_t size_remaining = *size;
467 SVGA3dCmdHeader *header = (SVGA3dCmdHeader *) buf;
468 int ret;
470 cmd_id = ((uint32_t *)buf)[0];
471 if (cmd_id == SVGA_CMD_UPDATE) {
472 *size = 5 << 2;
473 return 0;
476 cmd_id = le32_to_cpu(header->id);
477 *size = le32_to_cpu(header->size) + sizeof(SVGA3dCmdHeader);
479 cmd_id -= SVGA_3D_CMD_BASE;
480 if (unlikely(*size > size_remaining))
481 goto out_err;
483 if (unlikely(cmd_id >= SVGA_3D_CMD_MAX - SVGA_3D_CMD_BASE))
484 goto out_err;
486 ret = vmw_cmd_funcs[cmd_id](dev_priv, sw_context, header);
487 if (unlikely(ret != 0))
488 goto out_err;
490 return 0;
491 out_err:
492 DRM_ERROR("Illegal / Invalid SVGA3D command: %d\n",
493 cmd_id + SVGA_3D_CMD_BASE);
494 return -EINVAL;
497 static int vmw_cmd_check_all(struct vmw_private *dev_priv,
498 struct vmw_sw_context *sw_context,
499 void *buf, uint32_t size)
501 int32_t cur_size = size;
502 int ret;
504 while (cur_size > 0) {
505 size = cur_size;
506 ret = vmw_cmd_check(dev_priv, sw_context, buf, &size);
507 if (unlikely(ret != 0))
508 return ret;
509 buf = (void *)((unsigned long) buf + size);
510 cur_size -= size;
513 if (unlikely(cur_size != 0)) {
514 DRM_ERROR("Command verifier out of sync.\n");
515 return -EINVAL;
518 return 0;
521 static void vmw_free_relocations(struct vmw_sw_context *sw_context)
523 sw_context->cur_reloc = 0;
526 static void vmw_apply_relocations(struct vmw_sw_context *sw_context)
528 uint32_t i;
529 struct vmw_relocation *reloc;
530 struct ttm_validate_buffer *validate;
531 struct ttm_buffer_object *bo;
533 for (i = 0; i < sw_context->cur_reloc; ++i) {
534 reloc = &sw_context->relocs[i];
535 validate = &sw_context->val_bufs[reloc->index];
536 bo = validate->bo;
537 reloc->location->offset += bo->offset;
538 reloc->location->gmrId = vmw_dmabuf_gmr(bo);
540 vmw_free_relocations(sw_context);
543 static void vmw_clear_validations(struct vmw_sw_context *sw_context)
545 struct ttm_validate_buffer *entry, *next;
547 list_for_each_entry_safe(entry, next, &sw_context->validate_nodes,
548 head) {
549 list_del(&entry->head);
550 vmw_dmabuf_validate_clear(entry->bo);
551 ttm_bo_unref(&entry->bo);
552 sw_context->cur_val_buf--;
554 BUG_ON(sw_context->cur_val_buf != 0);
557 static int vmw_validate_single_buffer(struct vmw_private *dev_priv,
558 struct ttm_buffer_object *bo)
560 int ret;
562 if (vmw_dmabuf_gmr(bo) != SVGA_GMR_NULL)
563 return 0;
566 * Put BO in VRAM, only if there is space.
569 ret = ttm_bo_validate(bo, &vmw_vram_sys_placement, true, false, false);
570 if (unlikely(ret == -ERESTARTSYS))
571 return ret;
574 * Otherwise, set it up as GMR.
577 if (vmw_dmabuf_gmr(bo) != SVGA_GMR_NULL)
578 return 0;
580 ret = vmw_gmr_bind(dev_priv, bo);
581 if (likely(ret == 0 || ret == -ERESTARTSYS))
582 return ret;
585 * If that failed, try VRAM again, this time evicting
586 * previous contents.
589 ret = ttm_bo_validate(bo, &vmw_vram_placement, true, false, false);
590 return ret;
594 static int vmw_validate_buffers(struct vmw_private *dev_priv,
595 struct vmw_sw_context *sw_context)
597 struct ttm_validate_buffer *entry;
598 int ret;
600 list_for_each_entry(entry, &sw_context->validate_nodes, head) {
601 ret = vmw_validate_single_buffer(dev_priv, entry->bo);
602 if (unlikely(ret != 0))
603 return ret;
605 return 0;
608 int vmw_execbuf_ioctl(struct drm_device *dev, void *data,
609 struct drm_file *file_priv)
611 struct vmw_private *dev_priv = vmw_priv(dev);
612 struct drm_vmw_execbuf_arg *arg = (struct drm_vmw_execbuf_arg *)data;
613 struct drm_vmw_fence_rep fence_rep;
614 struct drm_vmw_fence_rep __user *user_fence_rep;
615 int ret;
616 void *user_cmd;
617 void *cmd;
618 uint32_t sequence;
619 struct vmw_sw_context *sw_context = &dev_priv->ctx;
620 struct vmw_master *vmaster = vmw_master(file_priv->master);
622 ret = ttm_read_lock(&vmaster->lock, true);
623 if (unlikely(ret != 0))
624 return ret;
626 ret = mutex_lock_interruptible(&dev_priv->cmdbuf_mutex);
627 if (unlikely(ret != 0)) {
628 ret = -ERESTARTSYS;
629 goto out_no_cmd_mutex;
632 cmd = vmw_fifo_reserve(dev_priv, arg->command_size);
633 if (unlikely(cmd == NULL)) {
634 DRM_ERROR("Failed reserving fifo space for commands.\n");
635 ret = -ENOMEM;
636 goto out_unlock;
639 user_cmd = (void __user *)(unsigned long)arg->commands;
640 ret = copy_from_user(cmd, user_cmd, arg->command_size);
642 if (unlikely(ret != 0)) {
643 ret = -EFAULT;
644 DRM_ERROR("Failed copying commands.\n");
645 goto out_commit;
648 sw_context->tfile = vmw_fpriv(file_priv)->tfile;
649 sw_context->cid_valid = false;
650 sw_context->sid_valid = false;
651 sw_context->cur_reloc = 0;
652 sw_context->cur_val_buf = 0;
654 INIT_LIST_HEAD(&sw_context->validate_nodes);
656 ret = vmw_cmd_check_all(dev_priv, sw_context, cmd, arg->command_size);
657 if (unlikely(ret != 0))
658 goto out_err;
659 ret = ttm_eu_reserve_buffers(&sw_context->validate_nodes,
660 dev_priv->val_seq++);
661 if (unlikely(ret != 0))
662 goto out_err;
664 ret = vmw_validate_buffers(dev_priv, sw_context);
665 if (unlikely(ret != 0))
666 goto out_err;
668 vmw_apply_relocations(sw_context);
670 if (arg->throttle_us) {
671 ret = vmw_wait_lag(dev_priv, &dev_priv->fifo.fence_queue,
672 arg->throttle_us);
674 if (unlikely(ret != 0))
675 goto out_err;
678 vmw_fifo_commit(dev_priv, arg->command_size);
680 ret = vmw_fifo_send_fence(dev_priv, &sequence);
682 ttm_eu_fence_buffer_objects(&sw_context->validate_nodes,
683 (void *)(unsigned long) sequence);
684 vmw_clear_validations(sw_context);
685 mutex_unlock(&dev_priv->cmdbuf_mutex);
688 * This error is harmless, because if fence submission fails,
689 * vmw_fifo_send_fence will sync.
692 if (ret != 0)
693 DRM_ERROR("Fence submission error. Syncing.\n");
695 fence_rep.error = ret;
696 fence_rep.fence_seq = (uint64_t) sequence;
698 user_fence_rep = (struct drm_vmw_fence_rep __user *)
699 (unsigned long)arg->fence_rep;
702 * copy_to_user errors will be detected by user space not
703 * seeing fence_rep::error filled in.
706 ret = copy_to_user(user_fence_rep, &fence_rep, sizeof(fence_rep));
708 vmw_kms_cursor_post_execbuf(dev_priv);
709 ttm_read_unlock(&vmaster->lock);
710 return 0;
711 out_err:
712 vmw_free_relocations(sw_context);
713 ttm_eu_backoff_reservation(&sw_context->validate_nodes);
714 vmw_clear_validations(sw_context);
715 out_commit:
716 vmw_fifo_commit(dev_priv, 0);
717 out_unlock:
718 mutex_unlock(&dev_priv->cmdbuf_mutex);
719 out_no_cmd_mutex:
720 ttm_read_unlock(&vmaster->lock);
721 return ret;