1 /**************************************************************************
2  *
3  * Copyright © 2015 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 "ttm/ttm_bo_api.h"
30 
31 /*
32  * Size of inline command buffers. Try to make sure that a page size is a
33  * multiple of the DMA pool allocation size.
34  */
35 #define VMW_CMDBUF_INLINE_ALIGN 64
36 #define VMW_CMDBUF_INLINE_SIZE \
37 	(1024 - ALIGN(sizeof(SVGACBHeader), VMW_CMDBUF_INLINE_ALIGN))
38 
39 /**
40  * struct vmw_cmdbuf_context - Command buffer context queues
41  *
42  * @submitted: List of command buffers that have been submitted to the
43  * manager but not yet submitted to hardware.
44  * @hw_submitted: List of command buffers submitted to hardware.
45  * @preempted: List of preempted command buffers.
46  * @num_hw_submitted: Number of buffers currently being processed by hardware
47  */
48 struct vmw_cmdbuf_context {
49 	struct list_head submitted;
50 	struct list_head hw_submitted;
51 	struct list_head preempted;
52 	unsigned num_hw_submitted;
53 };
54 
55 /**
56  * struct vmw_cmdbuf_man: - Command buffer manager
57  *
58  * @cur_mutex: Mutex protecting the command buffer used for incremental small
59  * kernel command submissions, @cur.
60  * @space_mutex: Mutex to protect against starvation when we allocate
61  * main pool buffer space.
62  * @work: A struct work_struct implementeing command buffer error handling.
63  * Immutable.
64  * @dev_priv: Pointer to the device private struct. Immutable.
65  * @ctx: Array of command buffer context queues. The queues and the context
66  * data is protected by @lock.
67  * @error: List of command buffers that have caused device errors.
68  * Protected by @lock.
69  * @mm: Range manager for the command buffer space. Manager allocations and
70  * frees are protected by @lock.
71  * @cmd_space: Buffer object for the command buffer space, unless we were
72  * able to make a contigous coherent DMA memory allocation, @handle. Immutable.
73  * @map_obj: Mapping state for @cmd_space. Immutable.
74  * @map: Pointer to command buffer space. May be a mapped buffer object or
75  * a contigous coherent DMA memory allocation. Immutable.
76  * @cur: Command buffer for small kernel command submissions. Protected by
77  * the @cur_mutex.
78  * @cur_pos: Space already used in @cur. Protected by @cur_mutex.
79  * @default_size: Default size for the @cur command buffer. Immutable.
80  * @max_hw_submitted: Max number of in-flight command buffers the device can
81  * handle. Immutable.
82  * @lock: Spinlock protecting command submission queues.
83  * @header: Pool of DMA memory for device command buffer headers.
84  * Internal protection.
85  * @dheaders: Pool of DMA memory for device command buffer headers with trailing
86  * space for inline data. Internal protection.
87  * @tasklet: Tasklet struct for irq processing. Immutable.
88  * @alloc_queue: Wait queue for processes waiting to allocate command buffer
89  * space.
90  * @idle_queue: Wait queue for processes waiting for command buffer idle.
91  * @irq_on: Whether the process function has requested irq to be turned on.
92  * Protected by @lock.
93  * @using_mob: Whether the command buffer space is a MOB or a contigous DMA
94  * allocation. Immutable.
95  * @has_pool: Has a large pool of DMA memory which allows larger allocations.
96  * Typically this is false only during bootstrap.
97  * @handle: DMA address handle for the command buffer space if @using_mob is
98  * false. Immutable.
99  * @size: The size of the command buffer space. Immutable.
100  */
101 struct vmw_cmdbuf_man {
102 	struct mutex cur_mutex;
103 	struct mutex space_mutex;
104 	struct work_struct work;
105 	struct vmw_private *dev_priv;
106 	struct vmw_cmdbuf_context ctx[SVGA_CB_CONTEXT_MAX];
107 	struct list_head error;
108 	struct drm_mm mm;
109 	struct ttm_buffer_object *cmd_space;
110 	struct ttm_bo_kmap_obj map_obj;
111 	u8 *map;
112 	struct vmw_cmdbuf_header *cur;
113 	size_t cur_pos;
114 	size_t default_size;
115 	unsigned max_hw_submitted;
116 	spinlock_t lock;
117 	struct dma_pool *headers;
118 	struct dma_pool *dheaders;
119 	struct tasklet_struct tasklet;
120 	wait_queue_head_t alloc_queue;
121 	wait_queue_head_t idle_queue;
122 	bool irq_on;
123 	bool using_mob;
124 	bool has_pool;
125 	dma_addr_t handle;
126 	size_t size;
127 };
128 
129 /**
130  * struct vmw_cmdbuf_header - Command buffer metadata
131  *
132  * @man: The command buffer manager.
133  * @cb_header: Device command buffer header, allocated from a DMA pool.
134  * @cb_context: The device command buffer context.
135  * @list: List head for attaching to the manager lists.
136  * @node: The range manager node.
137  * @handle. The DMA address of @cb_header. Handed to the device on command
138  * buffer submission.
139  * @cmd: Pointer to the command buffer space of this buffer.
140  * @size: Size of the command buffer space of this buffer.
141  * @reserved: Reserved space of this buffer.
142  * @inline_space: Whether inline command buffer space is used.
143  */
144 struct vmw_cmdbuf_header {
145 	struct vmw_cmdbuf_man *man;
146 	SVGACBHeader *cb_header;
147 	SVGACBContext cb_context;
148 	struct list_head list;
149 	struct drm_mm_node node;
150 	dma_addr_t handle;
151 	u8 *cmd;
152 	size_t size;
153 	size_t reserved;
154 	bool inline_space;
155 };
156 
157 /**
158  * struct vmw_cmdbuf_dheader - Device command buffer header with inline
159  * command buffer space.
160  *
161  * @cb_header: Device command buffer header.
162  * @cmd: Inline command buffer space.
163  */
164 struct vmw_cmdbuf_dheader {
165 	SVGACBHeader cb_header;
166 	u8 cmd[VMW_CMDBUF_INLINE_SIZE] __aligned(VMW_CMDBUF_INLINE_ALIGN);
167 };
168 
169 /**
170  * struct vmw_cmdbuf_alloc_info - Command buffer space allocation metadata
171  *
172  * @page_size: Size of requested command buffer space in pages.
173  * @node: Pointer to the range manager node.
174  * @done: True if this allocation has succeeded.
175  */
176 struct vmw_cmdbuf_alloc_info {
177 	size_t page_size;
178 	struct drm_mm_node *node;
179 	bool done;
180 };
181 
182 /* Loop over each context in the command buffer manager. */
183 #define for_each_cmdbuf_ctx(_man, _i, _ctx) \
184 	for (_i = 0, _ctx = &(_man)->ctx[0]; (_i) < SVGA_CB_CONTEXT_MAX; \
185 	     ++(_i), ++(_ctx))
186 
187 static int vmw_cmdbuf_startstop(struct vmw_cmdbuf_man *man, bool enable);
188 
189 
190 /**
191  * vmw_cmdbuf_cur_lock - Helper to lock the cur_mutex.
192  *
193  * @man: The range manager.
194  * @interruptible: Whether to wait interruptible when locking.
195  */
196 static int vmw_cmdbuf_cur_lock(struct vmw_cmdbuf_man *man, bool interruptible)
197 {
198 	if (interruptible) {
199 		if (mutex_lock_interruptible(&man->cur_mutex))
200 			return -ERESTARTSYS;
201 	} else {
202 		mutex_lock(&man->cur_mutex);
203 	}
204 
205 	return 0;
206 }
207 
208 /**
209  * vmw_cmdbuf_cur_unlock - Helper to unlock the cur_mutex.
210  *
211  * @man: The range manager.
212  */
213 static void vmw_cmdbuf_cur_unlock(struct vmw_cmdbuf_man *man)
214 {
215 	mutex_unlock(&man->cur_mutex);
216 }
217 
218 /**
219  * vmw_cmdbuf_header_inline_free - Free a struct vmw_cmdbuf_header that has
220  * been used for the device context with inline command buffers.
221  * Need not be called locked.
222  *
223  * @header: Pointer to the header to free.
224  */
225 static void vmw_cmdbuf_header_inline_free(struct vmw_cmdbuf_header *header)
226 {
227 	struct vmw_cmdbuf_dheader *dheader;
228 
229 	if (WARN_ON_ONCE(!header->inline_space))
230 		return;
231 
232 	dheader = container_of(header->cb_header, struct vmw_cmdbuf_dheader,
233 			       cb_header);
234 	dma_pool_free(header->man->dheaders, dheader, header->handle);
235 	kfree(header);
236 }
237 
238 /**
239  * __vmw_cmdbuf_header_free - Free a struct vmw_cmdbuf_header  and its
240  * associated structures.
241  *
242  * header: Pointer to the header to free.
243  *
244  * For internal use. Must be called with man::lock held.
245  */
246 static void __vmw_cmdbuf_header_free(struct vmw_cmdbuf_header *header)
247 {
248 	struct vmw_cmdbuf_man *man = header->man;
249 
250 	BUG_ON(!spin_is_locked(&man->lock));
251 
252 	if (header->inline_space) {
253 		vmw_cmdbuf_header_inline_free(header);
254 		return;
255 	}
256 
257 	drm_mm_remove_node(&header->node);
258 	wake_up_all(&man->alloc_queue);
259 	if (header->cb_header)
260 		dma_pool_free(man->headers, header->cb_header,
261 			      header->handle);
262 	kfree(header);
263 }
264 
265 /**
266  * vmw_cmdbuf_header_free - Free a struct vmw_cmdbuf_header  and its
267  * associated structures.
268  *
269  * @header: Pointer to the header to free.
270  */
271 void vmw_cmdbuf_header_free(struct vmw_cmdbuf_header *header)
272 {
273 	struct vmw_cmdbuf_man *man = header->man;
274 
275 	/* Avoid locking if inline_space */
276 	if (header->inline_space) {
277 		vmw_cmdbuf_header_inline_free(header);
278 		return;
279 	}
280 	spin_lock_bh(&man->lock);
281 	__vmw_cmdbuf_header_free(header);
282 	spin_unlock_bh(&man->lock);
283 }
284 
285 
286 /**
287  * vmw_cmbuf_header_submit: Submit a command buffer to hardware.
288  *
289  * @header: The header of the buffer to submit.
290  */
291 static int vmw_cmdbuf_header_submit(struct vmw_cmdbuf_header *header)
292 {
293 	struct vmw_cmdbuf_man *man = header->man;
294 	u32 val;
295 
296 	if (sizeof(header->handle) > 4)
297 		val = (header->handle >> 32);
298 	else
299 		val = 0;
300 	vmw_write(man->dev_priv, SVGA_REG_COMMAND_HIGH, val);
301 
302 	val = (header->handle & 0xFFFFFFFFULL);
303 	val |= header->cb_context & SVGA_CB_CONTEXT_MASK;
304 	vmw_write(man->dev_priv, SVGA_REG_COMMAND_LOW, val);
305 
306 	return header->cb_header->status;
307 }
308 
309 /**
310  * vmw_cmdbuf_ctx_init: Initialize a command buffer context.
311  *
312  * @ctx: The command buffer context to initialize
313  */
314 static void vmw_cmdbuf_ctx_init(struct vmw_cmdbuf_context *ctx)
315 {
316 	INIT_LIST_HEAD(&ctx->hw_submitted);
317 	INIT_LIST_HEAD(&ctx->submitted);
318 	INIT_LIST_HEAD(&ctx->preempted);
319 	ctx->num_hw_submitted = 0;
320 }
321 
322 /**
323  * vmw_cmdbuf_ctx_submit: Submit command buffers from a command buffer
324  * context.
325  *
326  * @man: The command buffer manager.
327  * @ctx: The command buffer context.
328  *
329  * Submits command buffers to hardware until there are no more command
330  * buffers to submit or the hardware can't handle more command buffers.
331  */
332 static void vmw_cmdbuf_ctx_submit(struct vmw_cmdbuf_man *man,
333 				  struct vmw_cmdbuf_context *ctx)
334 {
335 	while (ctx->num_hw_submitted < man->max_hw_submitted &&
336 	      !list_empty(&ctx->submitted)) {
337 		struct vmw_cmdbuf_header *entry;
338 		SVGACBStatus status;
339 
340 		entry = list_first_entry(&ctx->submitted,
341 					 struct vmw_cmdbuf_header,
342 					 list);
343 
344 		status = vmw_cmdbuf_header_submit(entry);
345 
346 		/* This should never happen */
347 		if (WARN_ON_ONCE(status == SVGA_CB_STATUS_QUEUE_FULL)) {
348 			entry->cb_header->status = SVGA_CB_STATUS_NONE;
349 			break;
350 		}
351 
352 		list_del(&entry->list);
353 		list_add_tail(&entry->list, &ctx->hw_submitted);
354 		ctx->num_hw_submitted++;
355 	}
356 
357 }
358 
359 /**
360  * vmw_cmdbuf_ctx_submit: Process a command buffer context.
361  *
362  * @man: The command buffer manager.
363  * @ctx: The command buffer context.
364  *
365  * Submit command buffers to hardware if possible, and process finished
366  * buffers. Typically freeing them, but on preemption or error take
367  * appropriate action. Wake up waiters if appropriate.
368  */
369 static void vmw_cmdbuf_ctx_process(struct vmw_cmdbuf_man *man,
370 				   struct vmw_cmdbuf_context *ctx,
371 				   int *notempty)
372 {
373 	struct vmw_cmdbuf_header *entry, *next;
374 
375 	vmw_cmdbuf_ctx_submit(man, ctx);
376 
377 	list_for_each_entry_safe(entry, next, &ctx->hw_submitted, list) {
378 		SVGACBStatus status = entry->cb_header->status;
379 
380 		if (status == SVGA_CB_STATUS_NONE)
381 			break;
382 
383 		list_del(&entry->list);
384 		wake_up_all(&man->idle_queue);
385 		ctx->num_hw_submitted--;
386 		switch (status) {
387 		case SVGA_CB_STATUS_COMPLETED:
388 			__vmw_cmdbuf_header_free(entry);
389 			break;
390 		case SVGA_CB_STATUS_COMMAND_ERROR:
391 		case SVGA_CB_STATUS_CB_HEADER_ERROR:
392 			list_add_tail(&entry->list, &man->error);
393 			schedule_work(&man->work);
394 			break;
395 		case SVGA_CB_STATUS_PREEMPTED:
396 			list_add(&entry->list, &ctx->preempted);
397 			break;
398 		default:
399 			WARN_ONCE(true, "Undefined command buffer status.\n");
400 			__vmw_cmdbuf_header_free(entry);
401 			break;
402 		}
403 	}
404 
405 	vmw_cmdbuf_ctx_submit(man, ctx);
406 	if (!list_empty(&ctx->submitted))
407 		(*notempty)++;
408 }
409 
410 /**
411  * vmw_cmdbuf_man_process - Process all command buffer contexts and
412  * switch on and off irqs as appropriate.
413  *
414  * @man: The command buffer manager.
415  *
416  * Calls vmw_cmdbuf_ctx_process() on all contexts. If any context has
417  * command buffers left that are not submitted to hardware, Make sure
418  * IRQ handling is turned on. Otherwise, make sure it's turned off. This
419  * function may return -EAGAIN to indicate it should be rerun due to
420  * possibly missed IRQs if IRQs has just been turned on.
421  */
422 static int vmw_cmdbuf_man_process(struct vmw_cmdbuf_man *man)
423 {
424 	int notempty = 0;
425 	struct vmw_cmdbuf_context *ctx;
426 	int i;
427 
428 	for_each_cmdbuf_ctx(man, i, ctx)
429 		vmw_cmdbuf_ctx_process(man, ctx, &notempty);
430 
431 	if (man->irq_on && !notempty) {
432 		vmw_generic_waiter_remove(man->dev_priv,
433 					  SVGA_IRQFLAG_COMMAND_BUFFER,
434 					  &man->dev_priv->cmdbuf_waiters);
435 		man->irq_on = false;
436 	} else if (!man->irq_on && notempty) {
437 		vmw_generic_waiter_add(man->dev_priv,
438 				       SVGA_IRQFLAG_COMMAND_BUFFER,
439 				       &man->dev_priv->cmdbuf_waiters);
440 		man->irq_on = true;
441 
442 		/* Rerun in case we just missed an irq. */
443 		return -EAGAIN;
444 	}
445 
446 	return 0;
447 }
448 
449 /**
450  * vmw_cmdbuf_ctx_add - Schedule a command buffer for submission on a
451  * command buffer context
452  *
453  * @man: The command buffer manager.
454  * @header: The header of the buffer to submit.
455  * @cb_context: The command buffer context to use.
456  *
457  * This function adds @header to the "submitted" queue of the command
458  * buffer context identified by @cb_context. It then calls the command buffer
459  * manager processing to potentially submit the buffer to hardware.
460  * @man->lock needs to be held when calling this function.
461  */
462 static void vmw_cmdbuf_ctx_add(struct vmw_cmdbuf_man *man,
463 			       struct vmw_cmdbuf_header *header,
464 			       SVGACBContext cb_context)
465 {
466 	if (!(header->cb_header->flags & SVGA_CB_FLAG_DX_CONTEXT))
467 		header->cb_header->dxContext = 0;
468 	header->cb_context = cb_context;
469 	list_add_tail(&header->list, &man->ctx[cb_context].submitted);
470 
471 	if (vmw_cmdbuf_man_process(man) == -EAGAIN)
472 		vmw_cmdbuf_man_process(man);
473 }
474 
475 /**
476  * vmw_cmdbuf_man_tasklet - The main part of the command buffer interrupt
477  * handler implemented as a tasklet.
478  *
479  * @data: Tasklet closure. A pointer to the command buffer manager cast to
480  * an unsigned long.
481  *
482  * The bottom half (tasklet) of the interrupt handler simply calls into the
483  * command buffer processor to free finished buffers and submit any
484  * queued buffers to hardware.
485  */
486 static void vmw_cmdbuf_man_tasklet(unsigned long data)
487 {
488 	struct vmw_cmdbuf_man *man = (struct vmw_cmdbuf_man *) data;
489 
490 	spin_lock(&man->lock);
491 	if (vmw_cmdbuf_man_process(man) == -EAGAIN)
492 		(void) vmw_cmdbuf_man_process(man);
493 	spin_unlock(&man->lock);
494 }
495 
496 /**
497  * vmw_cmdbuf_work_func - The deferred work function that handles
498  * command buffer errors.
499  *
500  * @work: The work func closure argument.
501  *
502  * Restarting the command buffer context after an error requires process
503  * context, so it is deferred to this work function.
504  */
505 static void vmw_cmdbuf_work_func(struct work_struct *work)
506 {
507 	struct vmw_cmdbuf_man *man =
508 		container_of(work, struct vmw_cmdbuf_man, work);
509 	struct vmw_cmdbuf_header *entry, *next;
510 	bool restart = false;
511 
512 	spin_lock_bh(&man->lock);
513 	list_for_each_entry_safe(entry, next, &man->error, list) {
514 		restart = true;
515 		DRM_ERROR("Command buffer error.\n");
516 
517 		list_del(&entry->list);
518 		__vmw_cmdbuf_header_free(entry);
519 		wake_up_all(&man->idle_queue);
520 	}
521 	spin_unlock_bh(&man->lock);
522 
523 	if (restart && vmw_cmdbuf_startstop(man, true))
524 		DRM_ERROR("Failed restarting command buffer context 0.\n");
525 
526 }
527 
528 /**
529  * vmw_cmdbuf_man idle - Check whether the command buffer manager is idle.
530  *
531  * @man: The command buffer manager.
532  * @check_preempted: Check also the preempted queue for pending command buffers.
533  *
534  */
535 static bool vmw_cmdbuf_man_idle(struct vmw_cmdbuf_man *man,
536 				bool check_preempted)
537 {
538 	struct vmw_cmdbuf_context *ctx;
539 	bool idle = false;
540 	int i;
541 
542 	spin_lock_bh(&man->lock);
543 	vmw_cmdbuf_man_process(man);
544 	for_each_cmdbuf_ctx(man, i, ctx) {
545 		if (!list_empty(&ctx->submitted) ||
546 		    !list_empty(&ctx->hw_submitted) ||
547 		    (check_preempted && !list_empty(&ctx->preempted)))
548 			goto out_unlock;
549 	}
550 
551 	idle = list_empty(&man->error);
552 
553 out_unlock:
554 	spin_unlock_bh(&man->lock);
555 
556 	return idle;
557 }
558 
559 /**
560  * __vmw_cmdbuf_cur_flush - Flush the current command buffer for small kernel
561  * command submissions
562  *
563  * @man: The command buffer manager.
564  *
565  * Flushes the current command buffer without allocating a new one. A new one
566  * is automatically allocated when needed. Call with @man->cur_mutex held.
567  */
568 static void __vmw_cmdbuf_cur_flush(struct vmw_cmdbuf_man *man)
569 {
570 	struct vmw_cmdbuf_header *cur = man->cur;
571 
572 	WARN_ON(!mutex_is_locked(&man->cur_mutex));
573 
574 	if (!cur)
575 		return;
576 
577 	spin_lock_bh(&man->lock);
578 	if (man->cur_pos == 0) {
579 		__vmw_cmdbuf_header_free(cur);
580 		goto out_unlock;
581 	}
582 
583 	man->cur->cb_header->length = man->cur_pos;
584 	vmw_cmdbuf_ctx_add(man, man->cur, SVGA_CB_CONTEXT_0);
585 out_unlock:
586 	spin_unlock_bh(&man->lock);
587 	man->cur = NULL;
588 	man->cur_pos = 0;
589 }
590 
591 /**
592  * vmw_cmdbuf_cur_flush - Flush the current command buffer for small kernel
593  * command submissions
594  *
595  * @man: The command buffer manager.
596  * @interruptible: Whether to sleep interruptible when sleeping.
597  *
598  * Flushes the current command buffer without allocating a new one. A new one
599  * is automatically allocated when needed.
600  */
601 int vmw_cmdbuf_cur_flush(struct vmw_cmdbuf_man *man,
602 			 bool interruptible)
603 {
604 	int ret = vmw_cmdbuf_cur_lock(man, interruptible);
605 
606 	if (ret)
607 		return ret;
608 
609 	__vmw_cmdbuf_cur_flush(man);
610 	vmw_cmdbuf_cur_unlock(man);
611 
612 	return 0;
613 }
614 
615 /**
616  * vmw_cmdbuf_idle - Wait for command buffer manager idle.
617  *
618  * @man: The command buffer manager.
619  * @interruptible: Sleep interruptible while waiting.
620  * @timeout: Time out after this many ticks.
621  *
622  * Wait until the command buffer manager has processed all command buffers,
623  * or until a timeout occurs. If a timeout occurs, the function will return
624  * -EBUSY.
625  */
626 int vmw_cmdbuf_idle(struct vmw_cmdbuf_man *man, bool interruptible,
627 		    unsigned long timeout)
628 {
629 	int ret;
630 
631 	ret = vmw_cmdbuf_cur_flush(man, interruptible);
632 	vmw_generic_waiter_add(man->dev_priv,
633 			       SVGA_IRQFLAG_COMMAND_BUFFER,
634 			       &man->dev_priv->cmdbuf_waiters);
635 
636 	if (interruptible) {
637 		ret = wait_event_interruptible_timeout
638 			(man->idle_queue, vmw_cmdbuf_man_idle(man, true),
639 			 timeout);
640 	} else {
641 		ret = wait_event_timeout
642 			(man->idle_queue, vmw_cmdbuf_man_idle(man, true),
643 			 timeout);
644 	}
645 	vmw_generic_waiter_remove(man->dev_priv,
646 				  SVGA_IRQFLAG_COMMAND_BUFFER,
647 				  &man->dev_priv->cmdbuf_waiters);
648 	if (ret == 0) {
649 		if (!vmw_cmdbuf_man_idle(man, true))
650 			ret = -EBUSY;
651 		else
652 			ret = 0;
653 	}
654 	if (ret > 0)
655 		ret = 0;
656 
657 	return ret;
658 }
659 
660 /**
661  * vmw_cmdbuf_try_alloc - Try to allocate buffer space from the main pool.
662  *
663  * @man: The command buffer manager.
664  * @info: Allocation info. Will hold the size on entry and allocated mm node
665  * on successful return.
666  *
667  * Try to allocate buffer space from the main pool. Returns true if succeeded.
668  * If a fatal error was hit, the error code is returned in @info->ret.
669  */
670 static bool vmw_cmdbuf_try_alloc(struct vmw_cmdbuf_man *man,
671 				 struct vmw_cmdbuf_alloc_info *info)
672 {
673 	int ret;
674 
675 	if (info->done)
676 		return true;
677 
678 	memset(info->node, 0, sizeof(*info->node));
679 	spin_lock_bh(&man->lock);
680 	ret = drm_mm_insert_node_generic(&man->mm, info->node, info->page_size,
681 					 0, 0,
682 					 DRM_MM_SEARCH_DEFAULT,
683 					 DRM_MM_CREATE_DEFAULT);
684 	spin_unlock_bh(&man->lock);
685 	info->done = !ret;
686 
687 	return info->done;
688 }
689 
690 /**
691  * vmw_cmdbuf_alloc_space - Allocate buffer space from the main pool.
692  *
693  * @man: The command buffer manager.
694  * @node: Pointer to pre-allocated range-manager node.
695  * @size: The size of the allocation.
696  * @interruptible: Whether to sleep interruptible while waiting for space.
697  *
698  * This function allocates buffer space from the main pool, and if there is
699  * no space available ATM, it turns on IRQ handling and sleeps waiting for it to
700  * become available.
701  */
702 static int vmw_cmdbuf_alloc_space(struct vmw_cmdbuf_man *man,
703 				  struct drm_mm_node *node,
704 				  size_t size,
705 				  bool interruptible)
706 {
707 	struct vmw_cmdbuf_alloc_info info;
708 
709 	info.page_size = PAGE_ALIGN(size) >> PAGE_SHIFT;
710 	info.node = node;
711 	info.done = false;
712 
713 	/*
714 	 * To prevent starvation of large requests, only one allocating call
715 	 * at a time waiting for space.
716 	 */
717 	if (interruptible) {
718 		if (mutex_lock_interruptible(&man->space_mutex))
719 			return -ERESTARTSYS;
720 	} else {
721 		mutex_lock(&man->space_mutex);
722 	}
723 
724 	/* Try to allocate space without waiting. */
725 	if (vmw_cmdbuf_try_alloc(man, &info))
726 		goto out_unlock;
727 
728 	vmw_generic_waiter_add(man->dev_priv,
729 			       SVGA_IRQFLAG_COMMAND_BUFFER,
730 			       &man->dev_priv->cmdbuf_waiters);
731 
732 	if (interruptible) {
733 		int ret;
734 
735 		ret = wait_event_interruptible
736 			(man->alloc_queue, vmw_cmdbuf_try_alloc(man, &info));
737 		if (ret) {
738 			vmw_generic_waiter_remove
739 				(man->dev_priv, SVGA_IRQFLAG_COMMAND_BUFFER,
740 				 &man->dev_priv->cmdbuf_waiters);
741 			mutex_unlock(&man->space_mutex);
742 			return ret;
743 		}
744 	} else {
745 		wait_event(man->alloc_queue, vmw_cmdbuf_try_alloc(man, &info));
746 	}
747 	vmw_generic_waiter_remove(man->dev_priv,
748 				  SVGA_IRQFLAG_COMMAND_BUFFER,
749 				  &man->dev_priv->cmdbuf_waiters);
750 
751 out_unlock:
752 	mutex_unlock(&man->space_mutex);
753 
754 	return 0;
755 }
756 
757 /**
758  * vmw_cmdbuf_space_pool - Set up a command buffer header with command buffer
759  * space from the main pool.
760  *
761  * @man: The command buffer manager.
762  * @header: Pointer to the header to set up.
763  * @size: The requested size of the buffer space.
764  * @interruptible: Whether to sleep interruptible while waiting for space.
765  */
766 static int vmw_cmdbuf_space_pool(struct vmw_cmdbuf_man *man,
767 				 struct vmw_cmdbuf_header *header,
768 				 size_t size,
769 				 bool interruptible)
770 {
771 	SVGACBHeader *cb_hdr;
772 	size_t offset;
773 	int ret;
774 
775 	if (!man->has_pool)
776 		return -ENOMEM;
777 
778 	ret = vmw_cmdbuf_alloc_space(man, &header->node,  size, interruptible);
779 
780 	if (ret)
781 		return ret;
782 
783 	header->cb_header = dma_pool_alloc(man->headers, GFP_KERNEL,
784 					   &header->handle);
785 	if (!header->cb_header) {
786 		ret = -ENOMEM;
787 		goto out_no_cb_header;
788 	}
789 
790 	header->size = header->node.size << PAGE_SHIFT;
791 	cb_hdr = header->cb_header;
792 	offset = header->node.start << PAGE_SHIFT;
793 	header->cmd = man->map + offset;
794 	memset(cb_hdr, 0, sizeof(*cb_hdr));
795 	if (man->using_mob) {
796 		cb_hdr->flags = SVGA_CB_FLAG_MOB;
797 		cb_hdr->ptr.mob.mobid = man->cmd_space->mem.start;
798 		cb_hdr->ptr.mob.mobOffset = offset;
799 	} else {
800 		cb_hdr->ptr.pa = (u64)man->handle + (u64)offset;
801 	}
802 
803 	return 0;
804 
805 out_no_cb_header:
806 	spin_lock_bh(&man->lock);
807 	drm_mm_remove_node(&header->node);
808 	spin_unlock_bh(&man->lock);
809 
810 	return ret;
811 }
812 
813 /**
814  * vmw_cmdbuf_space_inline - Set up a command buffer header with
815  * inline command buffer space.
816  *
817  * @man: The command buffer manager.
818  * @header: Pointer to the header to set up.
819  * @size: The requested size of the buffer space.
820  */
821 static int vmw_cmdbuf_space_inline(struct vmw_cmdbuf_man *man,
822 				   struct vmw_cmdbuf_header *header,
823 				   int size)
824 {
825 	struct vmw_cmdbuf_dheader *dheader;
826 	SVGACBHeader *cb_hdr;
827 
828 	if (WARN_ON_ONCE(size > VMW_CMDBUF_INLINE_SIZE))
829 		return -ENOMEM;
830 
831 	dheader = dma_pool_alloc(man->dheaders, GFP_KERNEL,
832 				 &header->handle);
833 	if (!dheader)
834 		return -ENOMEM;
835 
836 	header->inline_space = true;
837 	header->size = VMW_CMDBUF_INLINE_SIZE;
838 	cb_hdr = &dheader->cb_header;
839 	header->cb_header = cb_hdr;
840 	header->cmd = dheader->cmd;
841 	memset(dheader, 0, sizeof(*dheader));
842 	cb_hdr->status = SVGA_CB_STATUS_NONE;
843 	cb_hdr->flags = SVGA_CB_FLAG_NONE;
844 	cb_hdr->ptr.pa = (u64)header->handle +
845 		(u64)offsetof(struct vmw_cmdbuf_dheader, cmd);
846 
847 	return 0;
848 }
849 
850 /**
851  * vmw_cmdbuf_alloc - Allocate a command buffer header complete with
852  * command buffer space.
853  *
854  * @man: The command buffer manager.
855  * @size: The requested size of the buffer space.
856  * @interruptible: Whether to sleep interruptible while waiting for space.
857  * @p_header: points to a header pointer to populate on successful return.
858  *
859  * Returns a pointer to command buffer space if successful. Otherwise
860  * returns an error pointer. The header pointer returned in @p_header should
861  * be used for upcoming calls to vmw_cmdbuf_reserve() and vmw_cmdbuf_commit().
862  */
863 void *vmw_cmdbuf_alloc(struct vmw_cmdbuf_man *man,
864 		       size_t size, bool interruptible,
865 		       struct vmw_cmdbuf_header **p_header)
866 {
867 	struct vmw_cmdbuf_header *header;
868 	int ret = 0;
869 
870 	*p_header = NULL;
871 
872 	header = kzalloc(sizeof(*header), GFP_KERNEL);
873 	if (!header)
874 		return ERR_PTR(-ENOMEM);
875 
876 	if (size <= VMW_CMDBUF_INLINE_SIZE)
877 		ret = vmw_cmdbuf_space_inline(man, header, size);
878 	else
879 		ret = vmw_cmdbuf_space_pool(man, header, size, interruptible);
880 
881 	if (ret) {
882 		kfree(header);
883 		return ERR_PTR(ret);
884 	}
885 
886 	header->man = man;
887 	INIT_LIST_HEAD(&header->list);
888 	header->cb_header->status = SVGA_CB_STATUS_NONE;
889 	*p_header = header;
890 
891 	return header->cmd;
892 }
893 
894 /**
895  * vmw_cmdbuf_reserve_cur - Reserve space for commands in the current
896  * command buffer.
897  *
898  * @man: The command buffer manager.
899  * @size: The requested size of the commands.
900  * @ctx_id: The context id if any. Otherwise set to SVGA3D_REG_INVALID.
901  * @interruptible: Whether to sleep interruptible while waiting for space.
902  *
903  * Returns a pointer to command buffer space if successful. Otherwise
904  * returns an error pointer.
905  */
906 static void *vmw_cmdbuf_reserve_cur(struct vmw_cmdbuf_man *man,
907 				    size_t size,
908 				    int ctx_id,
909 				    bool interruptible)
910 {
911 	struct vmw_cmdbuf_header *cur;
912 	void *ret;
913 
914 	if (vmw_cmdbuf_cur_lock(man, interruptible))
915 		return ERR_PTR(-ERESTARTSYS);
916 
917 	cur = man->cur;
918 	if (cur && (size + man->cur_pos > cur->size ||
919 		    ((cur->cb_header->flags & SVGA_CB_FLAG_DX_CONTEXT) &&
920 		     ctx_id != cur->cb_header->dxContext)))
921 		__vmw_cmdbuf_cur_flush(man);
922 
923 	if (!man->cur) {
924 		ret = vmw_cmdbuf_alloc(man,
925 				       max_t(size_t, size, man->default_size),
926 				       interruptible, &man->cur);
927 		if (IS_ERR(ret)) {
928 			vmw_cmdbuf_cur_unlock(man);
929 			return ret;
930 		}
931 
932 		cur = man->cur;
933 	}
934 
935 	if (ctx_id != SVGA3D_INVALID_ID) {
936 		cur->cb_header->flags |= SVGA_CB_FLAG_DX_CONTEXT;
937 		cur->cb_header->dxContext = ctx_id;
938 	}
939 
940 	cur->reserved = size;
941 
942 	return (void *) (man->cur->cmd + man->cur_pos);
943 }
944 
945 /**
946  * vmw_cmdbuf_commit_cur - Commit commands in the current command buffer.
947  *
948  * @man: The command buffer manager.
949  * @size: The size of the commands actually written.
950  * @flush: Whether to flush the command buffer immediately.
951  */
952 static void vmw_cmdbuf_commit_cur(struct vmw_cmdbuf_man *man,
953 				  size_t size, bool flush)
954 {
955 	struct vmw_cmdbuf_header *cur = man->cur;
956 
957 	WARN_ON(!mutex_is_locked(&man->cur_mutex));
958 
959 	WARN_ON(size > cur->reserved);
960 	man->cur_pos += size;
961 	if (!size)
962 		cur->cb_header->flags &= ~SVGA_CB_FLAG_DX_CONTEXT;
963 	if (flush)
964 		__vmw_cmdbuf_cur_flush(man);
965 	vmw_cmdbuf_cur_unlock(man);
966 }
967 
968 /**
969  * vmw_cmdbuf_reserve - Reserve space for commands in a command buffer.
970  *
971  * @man: The command buffer manager.
972  * @size: The requested size of the commands.
973  * @ctx_id: The context id if any. Otherwise set to SVGA3D_REG_INVALID.
974  * @interruptible: Whether to sleep interruptible while waiting for space.
975  * @header: Header of the command buffer. NULL if the current command buffer
976  * should be used.
977  *
978  * Returns a pointer to command buffer space if successful. Otherwise
979  * returns an error pointer.
980  */
981 void *vmw_cmdbuf_reserve(struct vmw_cmdbuf_man *man, size_t size,
982 			 int ctx_id, bool interruptible,
983 			 struct vmw_cmdbuf_header *header)
984 {
985 	if (!header)
986 		return vmw_cmdbuf_reserve_cur(man, size, ctx_id, interruptible);
987 
988 	if (size > header->size)
989 		return ERR_PTR(-EINVAL);
990 
991 	if (ctx_id != SVGA3D_INVALID_ID) {
992 		header->cb_header->flags |= SVGA_CB_FLAG_DX_CONTEXT;
993 		header->cb_header->dxContext = ctx_id;
994 	}
995 
996 	header->reserved = size;
997 	return header->cmd;
998 }
999 
1000 /**
1001  * vmw_cmdbuf_commit - Commit commands in a command buffer.
1002  *
1003  * @man: The command buffer manager.
1004  * @size: The size of the commands actually written.
1005  * @header: Header of the command buffer. NULL if the current command buffer
1006  * should be used.
1007  * @flush: Whether to flush the command buffer immediately.
1008  */
1009 void vmw_cmdbuf_commit(struct vmw_cmdbuf_man *man, size_t size,
1010 		       struct vmw_cmdbuf_header *header, bool flush)
1011 {
1012 	if (!header) {
1013 		vmw_cmdbuf_commit_cur(man, size, flush);
1014 		return;
1015 	}
1016 
1017 	(void) vmw_cmdbuf_cur_lock(man, false);
1018 	__vmw_cmdbuf_cur_flush(man);
1019 	WARN_ON(size > header->reserved);
1020 	man->cur = header;
1021 	man->cur_pos = size;
1022 	if (!size)
1023 		header->cb_header->flags &= ~SVGA_CB_FLAG_DX_CONTEXT;
1024 	if (flush)
1025 		__vmw_cmdbuf_cur_flush(man);
1026 	vmw_cmdbuf_cur_unlock(man);
1027 }
1028 
1029 /**
1030  * vmw_cmdbuf_tasklet_schedule - Schedule the interrupt handler bottom half.
1031  *
1032  * @man: The command buffer manager.
1033  */
1034 void vmw_cmdbuf_tasklet_schedule(struct vmw_cmdbuf_man *man)
1035 {
1036 	if (!man)
1037 		return;
1038 
1039 	tasklet_schedule(&man->tasklet);
1040 }
1041 
1042 /**
1043  * vmw_cmdbuf_send_device_command - Send a command through the device context.
1044  *
1045  * @man: The command buffer manager.
1046  * @command: Pointer to the command to send.
1047  * @size: Size of the command.
1048  *
1049  * Synchronously sends a device context command.
1050  */
1051 static int vmw_cmdbuf_send_device_command(struct vmw_cmdbuf_man *man,
1052 					  const void *command,
1053 					  size_t size)
1054 {
1055 	struct vmw_cmdbuf_header *header;
1056 	int status;
1057 	void *cmd = vmw_cmdbuf_alloc(man, size, false, &header);
1058 
1059 	if (IS_ERR(cmd))
1060 		return PTR_ERR(cmd);
1061 
1062 	memcpy(cmd, command, size);
1063 	header->cb_header->length = size;
1064 	header->cb_context = SVGA_CB_CONTEXT_DEVICE;
1065 	spin_lock_bh(&man->lock);
1066 	status = vmw_cmdbuf_header_submit(header);
1067 	spin_unlock_bh(&man->lock);
1068 	vmw_cmdbuf_header_free(header);
1069 
1070 	if (status != SVGA_CB_STATUS_COMPLETED) {
1071 		DRM_ERROR("Device context command failed with status %d\n",
1072 			  status);
1073 		return -EINVAL;
1074 	}
1075 
1076 	return 0;
1077 }
1078 
1079 /**
1080  * vmw_cmdbuf_startstop - Send a start / stop command through the device
1081  * context.
1082  *
1083  * @man: The command buffer manager.
1084  * @enable: Whether to enable or disable the context.
1085  *
1086  * Synchronously sends a device start / stop context command.
1087  */
1088 static int vmw_cmdbuf_startstop(struct vmw_cmdbuf_man *man,
1089 				bool enable)
1090 {
1091 	struct {
1092 		uint32 id;
1093 		SVGADCCmdStartStop body;
1094 	} __packed cmd;
1095 
1096 	cmd.id = SVGA_DC_CMD_START_STOP_CONTEXT;
1097 	cmd.body.enable = (enable) ? 1 : 0;
1098 	cmd.body.context = SVGA_CB_CONTEXT_0;
1099 
1100 	return vmw_cmdbuf_send_device_command(man, &cmd, sizeof(cmd));
1101 }
1102 
1103 /**
1104  * vmw_cmdbuf_set_pool_size - Set command buffer manager sizes
1105  *
1106  * @man: The command buffer manager.
1107  * @size: The size of the main space pool.
1108  * @default_size: The default size of the command buffer for small kernel
1109  * submissions.
1110  *
1111  * Set the size and allocate the main command buffer space pool,
1112  * as well as the default size of the command buffer for
1113  * small kernel submissions. If successful, this enables large command
1114  * submissions. Note that this function requires that rudimentary command
1115  * submission is already available and that the MOB memory manager is alive.
1116  * Returns 0 on success. Negative error code on failure.
1117  */
1118 int vmw_cmdbuf_set_pool_size(struct vmw_cmdbuf_man *man,
1119 			     size_t size, size_t default_size)
1120 {
1121 	struct vmw_private *dev_priv = man->dev_priv;
1122 	bool dummy;
1123 	int ret;
1124 
1125 	if (man->has_pool)
1126 		return -EINVAL;
1127 
1128 	/* First, try to allocate a huge chunk of DMA memory */
1129 	size = PAGE_ALIGN(size);
1130 	man->map = dma_alloc_coherent(&dev_priv->dev->pdev->dev, size,
1131 				      &man->handle, GFP_KERNEL);
1132 	if (man->map) {
1133 		man->using_mob = false;
1134 	} else {
1135 		/*
1136 		 * DMA memory failed. If we can have command buffers in a
1137 		 * MOB, try to use that instead. Note that this will
1138 		 * actually call into the already enabled manager, when
1139 		 * binding the MOB.
1140 		 */
1141 		if (!(dev_priv->capabilities & SVGA_CAP_DX))
1142 			return -ENOMEM;
1143 
1144 		ret = ttm_bo_create(&dev_priv->bdev, size, ttm_bo_type_device,
1145 				    &vmw_mob_ne_placement, 0, false, NULL,
1146 				    &man->cmd_space);
1147 		if (ret)
1148 			return ret;
1149 
1150 		man->using_mob = true;
1151 		ret = ttm_bo_kmap(man->cmd_space, 0, size >> PAGE_SHIFT,
1152 				  &man->map_obj);
1153 		if (ret)
1154 			goto out_no_map;
1155 
1156 		man->map = ttm_kmap_obj_virtual(&man->map_obj, &dummy);
1157 	}
1158 
1159 	man->size = size;
1160 	drm_mm_init(&man->mm, 0, size >> PAGE_SHIFT);
1161 
1162 	man->has_pool = true;
1163 	man->default_size = default_size;
1164 	DRM_INFO("Using command buffers with %s pool.\n",
1165 		 (man->using_mob) ? "MOB" : "DMA");
1166 
1167 	return 0;
1168 
1169 out_no_map:
1170 	if (man->using_mob)
1171 		ttm_bo_unref(&man->cmd_space);
1172 
1173 	return ret;
1174 }
1175 
1176 /**
1177  * vmw_cmdbuf_man_create: Create a command buffer manager and enable it for
1178  * inline command buffer submissions only.
1179  *
1180  * @dev_priv: Pointer to device private structure.
1181  *
1182  * Returns a pointer to a cummand buffer manager to success or error pointer
1183  * on failure. The command buffer manager will be enabled for submissions of
1184  * size VMW_CMDBUF_INLINE_SIZE only.
1185  */
1186 struct vmw_cmdbuf_man *vmw_cmdbuf_man_create(struct vmw_private *dev_priv)
1187 {
1188 	struct vmw_cmdbuf_man *man;
1189 	struct vmw_cmdbuf_context *ctx;
1190 	int i;
1191 	int ret;
1192 
1193 	if (!(dev_priv->capabilities & SVGA_CAP_COMMAND_BUFFERS))
1194 		return ERR_PTR(-ENOSYS);
1195 
1196 	man = kzalloc(sizeof(*man), GFP_KERNEL);
1197 	if (!man)
1198 		return ERR_PTR(-ENOMEM);
1199 
1200 	man->headers = dma_pool_create("vmwgfx cmdbuf",
1201 				       &dev_priv->dev->pdev->dev,
1202 				       sizeof(SVGACBHeader),
1203 				       64, PAGE_SIZE);
1204 	if (!man->headers) {
1205 		ret = -ENOMEM;
1206 		goto out_no_pool;
1207 	}
1208 
1209 	man->dheaders = dma_pool_create("vmwgfx inline cmdbuf",
1210 					&dev_priv->dev->pdev->dev,
1211 					sizeof(struct vmw_cmdbuf_dheader),
1212 					64, PAGE_SIZE);
1213 	if (!man->dheaders) {
1214 		ret = -ENOMEM;
1215 		goto out_no_dpool;
1216 	}
1217 
1218 	for_each_cmdbuf_ctx(man, i, ctx)
1219 		vmw_cmdbuf_ctx_init(ctx);
1220 
1221 	INIT_LIST_HEAD(&man->error);
1222 	spin_lock_init(&man->lock);
1223 	mutex_init(&man->cur_mutex);
1224 	mutex_init(&man->space_mutex);
1225 	tasklet_init(&man->tasklet, vmw_cmdbuf_man_tasklet,
1226 		     (unsigned long) man);
1227 	man->default_size = VMW_CMDBUF_INLINE_SIZE;
1228 	init_waitqueue_head(&man->alloc_queue);
1229 	init_waitqueue_head(&man->idle_queue);
1230 	man->dev_priv = dev_priv;
1231 	man->max_hw_submitted = SVGA_CB_MAX_QUEUED_PER_CONTEXT - 1;
1232 	INIT_WORK(&man->work, &vmw_cmdbuf_work_func);
1233 	vmw_generic_waiter_add(dev_priv, SVGA_IRQFLAG_ERROR,
1234 			       &dev_priv->error_waiters);
1235 	ret = vmw_cmdbuf_startstop(man, true);
1236 	if (ret) {
1237 		DRM_ERROR("Failed starting command buffer context 0.\n");
1238 		vmw_cmdbuf_man_destroy(man);
1239 		return ERR_PTR(ret);
1240 	}
1241 
1242 	return man;
1243 
1244 out_no_dpool:
1245 	dma_pool_destroy(man->headers);
1246 out_no_pool:
1247 	kfree(man);
1248 
1249 	return ERR_PTR(ret);
1250 }
1251 
1252 /**
1253  * vmw_cmdbuf_remove_pool - Take down the main buffer space pool.
1254  *
1255  * @man: Pointer to a command buffer manager.
1256  *
1257  * This function removes the main buffer space pool, and should be called
1258  * before MOB memory management is removed. When this function has been called,
1259  * only small command buffer submissions of size VMW_CMDBUF_INLINE_SIZE or
1260  * less are allowed, and the default size of the command buffer for small kernel
1261  * submissions is also set to this size.
1262  */
1263 void vmw_cmdbuf_remove_pool(struct vmw_cmdbuf_man *man)
1264 {
1265 	if (!man->has_pool)
1266 		return;
1267 
1268 	man->has_pool = false;
1269 	man->default_size = VMW_CMDBUF_INLINE_SIZE;
1270 	(void) vmw_cmdbuf_idle(man, false, 10*HZ);
1271 	if (man->using_mob) {
1272 		(void) ttm_bo_kunmap(&man->map_obj);
1273 		ttm_bo_unref(&man->cmd_space);
1274 	} else {
1275 		dma_free_coherent(&man->dev_priv->dev->pdev->dev,
1276 				  man->size, man->map, man->handle);
1277 	}
1278 }
1279 
1280 /**
1281  * vmw_cmdbuf_man_destroy - Take down a command buffer manager.
1282  *
1283  * @man: Pointer to a command buffer manager.
1284  *
1285  * This function idles and then destroys a command buffer manager.
1286  */
1287 void vmw_cmdbuf_man_destroy(struct vmw_cmdbuf_man *man)
1288 {
1289 	WARN_ON_ONCE(man->has_pool);
1290 	(void) vmw_cmdbuf_idle(man, false, 10*HZ);
1291 	if (vmw_cmdbuf_startstop(man, false))
1292 		DRM_ERROR("Failed stopping command buffer context 0.\n");
1293 
1294 	vmw_generic_waiter_remove(man->dev_priv, SVGA_IRQFLAG_ERROR,
1295 				  &man->dev_priv->error_waiters);
1296 	tasklet_kill(&man->tasklet);
1297 	(void) cancel_work_sync(&man->work);
1298 	dma_pool_destroy(man->dheaders);
1299 	dma_pool_destroy(man->headers);
1300 	mutex_destroy(&man->cur_mutex);
1301 	mutex_destroy(&man->space_mutex);
1302 	kfree(man);
1303 }
1304