ee8f87dcdf21d13ae292b72c642a88e35722cb3d
[linux-2.6-microblaze.git] / drivers / gpu / drm / vmwgfx / vmwgfx_bo.c
1 // SPDX-License-Identifier: GPL-2.0 OR MIT
2 /**************************************************************************
3  *
4  * Copyright © 2011-2023 VMware, Inc., Palo Alto, CA., USA
5  * All Rights Reserved.
6  *
7  * Permission is hereby granted, free of charge, to any person obtaining a
8  * copy of this software and associated documentation files (the
9  * "Software"), to deal in the Software without restriction, including
10  * without limitation the rights to use, copy, modify, merge, publish,
11  * distribute, sub license, and/or sell copies of the Software, and to
12  * permit persons to whom the Software is furnished to do so, subject to
13  * the following conditions:
14  *
15  * The above copyright notice and this permission notice (including the
16  * next paragraph) shall be included in all copies or substantial portions
17  * of the Software.
18  *
19  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21  * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
22  * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
23  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
24  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
25  * USE OR OTHER DEALINGS IN THE SOFTWARE.
26  *
27  **************************************************************************/
28
29 #include "vmwgfx_bo.h"
30 #include "vmwgfx_drv.h"
31
32
33 #include <drm/ttm/ttm_placement.h>
34
35 static void vmw_bo_release(struct vmw_bo *vbo)
36 {
37         vmw_bo_unmap(vbo);
38         drm_gem_object_release(&vbo->tbo.base);
39 }
40
41 /**
42  * vmw_bo_free - vmw_bo destructor
43  *
44  * @bo: Pointer to the embedded struct ttm_buffer_object
45  */
46 static void vmw_bo_free(struct ttm_buffer_object *bo)
47 {
48         struct vmw_bo *vbo = to_vmw_bo(&bo->base);
49
50         WARN_ON(vbo->dirty);
51         WARN_ON(!RB_EMPTY_ROOT(&vbo->res_tree));
52         vmw_bo_release(vbo);
53         kfree(vbo);
54 }
55
56 /**
57  * vmw_bo_pin_in_placement - Validate a buffer to placement.
58  *
59  * @dev_priv:  Driver private.
60  * @buf:  DMA buffer to move.
61  * @placement:  The placement to pin it.
62  * @interruptible:  Use interruptible wait.
63  * Return: Zero on success, Negative error code on failure. In particular
64  * -ERESTARTSYS if interrupted by a signal
65  */
66 static int vmw_bo_pin_in_placement(struct vmw_private *dev_priv,
67                                    struct vmw_bo *buf,
68                                    struct ttm_placement *placement,
69                                    bool interruptible)
70 {
71         struct ttm_operation_ctx ctx = {interruptible, false };
72         struct ttm_buffer_object *bo = &buf->tbo;
73         int ret;
74
75         vmw_execbuf_release_pinned_bo(dev_priv);
76
77         ret = ttm_bo_reserve(bo, interruptible, false, NULL);
78         if (unlikely(ret != 0))
79                 goto err;
80
81         ret = ttm_bo_validate(bo, placement, &ctx);
82         if (!ret)
83                 vmw_bo_pin_reserved(buf, true);
84
85         ttm_bo_unreserve(bo);
86 err:
87         return ret;
88 }
89
90
91 /**
92  * vmw_bo_pin_in_vram_or_gmr - Move a buffer to vram or gmr.
93  *
94  * This function takes the reservation_sem in write mode.
95  * Flushes and unpins the query bo to avoid failures.
96  *
97  * @dev_priv:  Driver private.
98  * @buf:  DMA buffer to move.
99  * @interruptible:  Use interruptible wait.
100  * Return: Zero on success, Negative error code on failure. In particular
101  * -ERESTARTSYS if interrupted by a signal
102  */
103 int vmw_bo_pin_in_vram_or_gmr(struct vmw_private *dev_priv,
104                               struct vmw_bo *buf,
105                               bool interruptible)
106 {
107         struct ttm_operation_ctx ctx = {interruptible, false };
108         struct ttm_buffer_object *bo = &buf->tbo;
109         int ret;
110
111         vmw_execbuf_release_pinned_bo(dev_priv);
112
113         ret = ttm_bo_reserve(bo, interruptible, false, NULL);
114         if (unlikely(ret != 0))
115                 goto err;
116
117         vmw_bo_placement_set(buf,
118                              VMW_BO_DOMAIN_GMR | VMW_BO_DOMAIN_VRAM,
119                              VMW_BO_DOMAIN_GMR);
120         ret = ttm_bo_validate(bo, &buf->placement, &ctx);
121         if (likely(ret == 0) || ret == -ERESTARTSYS)
122                 goto out_unreserve;
123
124         vmw_bo_placement_set(buf,
125                              VMW_BO_DOMAIN_VRAM,
126                              VMW_BO_DOMAIN_VRAM);
127         ret = ttm_bo_validate(bo, &buf->placement, &ctx);
128
129 out_unreserve:
130         if (!ret)
131                 vmw_bo_pin_reserved(buf, true);
132
133         ttm_bo_unreserve(bo);
134 err:
135         return ret;
136 }
137
138
139 /**
140  * vmw_bo_pin_in_vram - Move a buffer to vram.
141  *
142  * This function takes the reservation_sem in write mode.
143  * Flushes and unpins the query bo to avoid failures.
144  *
145  * @dev_priv:  Driver private.
146  * @buf:  DMA buffer to move.
147  * @interruptible:  Use interruptible wait.
148  * Return: Zero on success, Negative error code on failure. In particular
149  * -ERESTARTSYS if interrupted by a signal
150  */
151 int vmw_bo_pin_in_vram(struct vmw_private *dev_priv,
152                        struct vmw_bo *buf,
153                        bool interruptible)
154 {
155         return vmw_bo_pin_in_placement(dev_priv, buf, &vmw_vram_placement,
156                                        interruptible);
157 }
158
159
160 /**
161  * vmw_bo_pin_in_start_of_vram - Move a buffer to start of vram.
162  *
163  * This function takes the reservation_sem in write mode.
164  * Flushes and unpins the query bo to avoid failures.
165  *
166  * @dev_priv:  Driver private.
167  * @buf:  DMA buffer to pin.
168  * @interruptible:  Use interruptible wait.
169  * Return: Zero on success, Negative error code on failure. In particular
170  * -ERESTARTSYS if interrupted by a signal
171  */
172 int vmw_bo_pin_in_start_of_vram(struct vmw_private *dev_priv,
173                                 struct vmw_bo *buf,
174                                 bool interruptible)
175 {
176         struct ttm_operation_ctx ctx = {interruptible, false };
177         struct ttm_buffer_object *bo = &buf->tbo;
178         int ret = 0;
179
180         vmw_execbuf_release_pinned_bo(dev_priv);
181         ret = ttm_bo_reserve(bo, interruptible, false, NULL);
182         if (unlikely(ret != 0))
183                 goto err_unlock;
184
185         /*
186          * Is this buffer already in vram but not at the start of it?
187          * In that case, evict it first because TTM isn't good at handling
188          * that situation.
189          */
190         if (bo->resource->mem_type == TTM_PL_VRAM &&
191             bo->resource->start < PFN_UP(bo->resource->size) &&
192             bo->resource->start > 0 &&
193             buf->tbo.pin_count == 0) {
194                 ctx.interruptible = false;
195                 vmw_bo_placement_set(buf,
196                                      VMW_BO_DOMAIN_SYS,
197                                      VMW_BO_DOMAIN_SYS);
198                 (void)ttm_bo_validate(bo, &buf->placement, &ctx);
199         }
200
201         vmw_bo_placement_set(buf,
202                              VMW_BO_DOMAIN_VRAM,
203                              VMW_BO_DOMAIN_VRAM);
204         buf->places[0].lpfn = PFN_UP(bo->resource->size);
205         ret = ttm_bo_validate(bo, &buf->placement, &ctx);
206
207         /* For some reason we didn't end up at the start of vram */
208         WARN_ON(ret == 0 && bo->resource->start != 0);
209         if (!ret)
210                 vmw_bo_pin_reserved(buf, true);
211
212         ttm_bo_unreserve(bo);
213 err_unlock:
214
215         return ret;
216 }
217
218
219 /**
220  * vmw_bo_unpin - Unpin the buffer given buffer, does not move the buffer.
221  *
222  * This function takes the reservation_sem in write mode.
223  *
224  * @dev_priv:  Driver private.
225  * @buf:  DMA buffer to unpin.
226  * @interruptible:  Use interruptible wait.
227  * Return: Zero on success, Negative error code on failure. In particular
228  * -ERESTARTSYS if interrupted by a signal
229  */
230 int vmw_bo_unpin(struct vmw_private *dev_priv,
231                  struct vmw_bo *buf,
232                  bool interruptible)
233 {
234         struct ttm_buffer_object *bo = &buf->tbo;
235         int ret;
236
237         ret = ttm_bo_reserve(bo, interruptible, false, NULL);
238         if (unlikely(ret != 0))
239                 goto err;
240
241         vmw_bo_pin_reserved(buf, false);
242
243         ttm_bo_unreserve(bo);
244
245 err:
246         return ret;
247 }
248
249 /**
250  * vmw_bo_get_guest_ptr - Get the guest ptr representing the current placement
251  * of a buffer.
252  *
253  * @bo: Pointer to a struct ttm_buffer_object. Must be pinned or reserved.
254  * @ptr: SVGAGuestPtr returning the result.
255  */
256 void vmw_bo_get_guest_ptr(const struct ttm_buffer_object *bo,
257                           SVGAGuestPtr *ptr)
258 {
259         if (bo->resource->mem_type == TTM_PL_VRAM) {
260                 ptr->gmrId = SVGA_GMR_FRAMEBUFFER;
261                 ptr->offset = bo->resource->start << PAGE_SHIFT;
262         } else {
263                 ptr->gmrId = bo->resource->start;
264                 ptr->offset = 0;
265         }
266 }
267
268
269 /**
270  * vmw_bo_pin_reserved - Pin or unpin a buffer object without moving it.
271  *
272  * @vbo: The buffer object. Must be reserved.
273  * @pin: Whether to pin or unpin.
274  *
275  */
276 void vmw_bo_pin_reserved(struct vmw_bo *vbo, bool pin)
277 {
278         struct ttm_operation_ctx ctx = { false, true };
279         struct ttm_place pl;
280         struct ttm_placement placement;
281         struct ttm_buffer_object *bo = &vbo->tbo;
282         uint32_t old_mem_type = bo->resource->mem_type;
283         int ret;
284
285         dma_resv_assert_held(bo->base.resv);
286
287         if (pin == !!bo->pin_count)
288                 return;
289
290         pl.fpfn = 0;
291         pl.lpfn = 0;
292         pl.mem_type = bo->resource->mem_type;
293         pl.flags = bo->resource->placement;
294
295         memset(&placement, 0, sizeof(placement));
296         placement.num_placement = 1;
297         placement.placement = &pl;
298
299         ret = ttm_bo_validate(bo, &placement, &ctx);
300
301         BUG_ON(ret != 0 || bo->resource->mem_type != old_mem_type);
302
303         if (pin)
304                 ttm_bo_pin(bo);
305         else
306                 ttm_bo_unpin(bo);
307 }
308
309 /**
310  * vmw_bo_map_and_cache - Map a buffer object and cache the map
311  *
312  * @vbo: The buffer object to map
313  * Return: A kernel virtual address or NULL if mapping failed.
314  *
315  * This function maps a buffer object into the kernel address space, or
316  * returns the virtual kernel address of an already existing map. The virtual
317  * address remains valid as long as the buffer object is pinned or reserved.
318  * The cached map is torn down on either
319  * 1) Buffer object move
320  * 2) Buffer object swapout
321  * 3) Buffer object destruction
322  *
323  */
324 void *vmw_bo_map_and_cache(struct vmw_bo *vbo)
325 {
326         struct ttm_buffer_object *bo = &vbo->tbo;
327         bool not_used;
328         void *virtual;
329         int ret;
330
331         virtual = ttm_kmap_obj_virtual(&vbo->map, &not_used);
332         if (virtual)
333                 return virtual;
334
335         ret = ttm_bo_kmap(bo, 0, PFN_UP(bo->base.size), &vbo->map);
336         if (ret)
337                 DRM_ERROR("Buffer object map failed: %d.\n", ret);
338
339         return ttm_kmap_obj_virtual(&vbo->map, &not_used);
340 }
341
342
343 /**
344  * vmw_bo_unmap - Tear down a cached buffer object map.
345  *
346  * @vbo: The buffer object whose map we are tearing down.
347  *
348  * This function tears down a cached map set up using
349  * vmw_bo_map_and_cache().
350  */
351 void vmw_bo_unmap(struct vmw_bo *vbo)
352 {
353         if (vbo->map.bo == NULL)
354                 return;
355
356         ttm_bo_kunmap(&vbo->map);
357         vbo->map.bo = NULL;
358 }
359
360
361 /**
362  * vmw_bo_init - Initialize a vmw buffer object
363  *
364  * @dev_priv: Pointer to the device private struct
365  * @vmw_bo: Buffer object to initialize
366  * @params: Parameters used to initialize the buffer object
367  * @destroy: The function used to delete the buffer object
368  * Returns: Zero on success, negative error code on error.
369  *
370  */
371 static int vmw_bo_init(struct vmw_private *dev_priv,
372                        struct vmw_bo *vmw_bo,
373                        struct vmw_bo_params *params,
374                        void (*destroy)(struct ttm_buffer_object *))
375 {
376         struct ttm_operation_ctx ctx = {
377                 .interruptible = params->bo_type != ttm_bo_type_kernel,
378                 .no_wait_gpu = false
379         };
380         struct ttm_device *bdev = &dev_priv->bdev;
381         struct drm_device *vdev = &dev_priv->drm;
382         int ret;
383
384         memset(vmw_bo, 0, sizeof(*vmw_bo));
385
386         BUILD_BUG_ON(TTM_MAX_BO_PRIORITY <= 3);
387         vmw_bo->tbo.priority = 3;
388         vmw_bo->res_tree = RB_ROOT;
389
390         params->size = ALIGN(params->size, PAGE_SIZE);
391         drm_gem_private_object_init(vdev, &vmw_bo->tbo.base, params->size);
392
393         vmw_bo_placement_set(vmw_bo, params->domain, params->busy_domain);
394         ret = ttm_bo_init_reserved(bdev, &vmw_bo->tbo, params->bo_type,
395                                    &vmw_bo->placement, 0, &ctx, NULL,
396                                    NULL, destroy);
397         if (unlikely(ret))
398                 return ret;
399
400         if (params->pin)
401                 ttm_bo_pin(&vmw_bo->tbo);
402         ttm_bo_unreserve(&vmw_bo->tbo);
403
404         return 0;
405 }
406
407 int vmw_bo_create(struct vmw_private *vmw,
408                   struct vmw_bo_params *params,
409                   struct vmw_bo **p_bo)
410 {
411         int ret;
412
413         *p_bo = kmalloc(sizeof(**p_bo), GFP_KERNEL);
414         if (unlikely(!*p_bo)) {
415                 DRM_ERROR("Failed to allocate a buffer.\n");
416                 return -ENOMEM;
417         }
418
419         ret = vmw_bo_init(vmw, *p_bo, params, vmw_bo_free);
420         if (unlikely(ret != 0))
421                 goto out_error;
422
423         return ret;
424 out_error:
425         kfree(*p_bo);
426         *p_bo = NULL;
427         return ret;
428 }
429
430 /**
431  * vmw_user_bo_synccpu_grab - Grab a struct vmw_bo for cpu
432  * access, idling previous GPU operations on the buffer and optionally
433  * blocking it for further command submissions.
434  *
435  * @vmw_bo: Pointer to the buffer object being grabbed for CPU access
436  * @flags: Flags indicating how the grab should be performed.
437  * Return: Zero on success, Negative error code on error. In particular,
438  * -EBUSY will be returned if a dontblock operation is requested and the
439  * buffer object is busy, and -ERESTARTSYS will be returned if a wait is
440  * interrupted by a signal.
441  *
442  * A blocking grab will be automatically released when @tfile is closed.
443  */
444 static int vmw_user_bo_synccpu_grab(struct vmw_bo *vmw_bo,
445                                     uint32_t flags)
446 {
447         bool nonblock = !!(flags & drm_vmw_synccpu_dontblock);
448         struct ttm_buffer_object *bo = &vmw_bo->tbo;
449         int ret;
450
451         if (flags & drm_vmw_synccpu_allow_cs) {
452                 long lret;
453
454                 lret = dma_resv_wait_timeout(bo->base.resv, DMA_RESV_USAGE_READ,
455                                              true, nonblock ? 0 :
456                                              MAX_SCHEDULE_TIMEOUT);
457                 if (!lret)
458                         return -EBUSY;
459                 else if (lret < 0)
460                         return lret;
461                 return 0;
462         }
463
464         ret = ttm_bo_reserve(bo, true, nonblock, NULL);
465         if (unlikely(ret != 0))
466                 return ret;
467
468         ret = ttm_bo_wait(bo, true, nonblock);
469         if (likely(ret == 0))
470                 atomic_inc(&vmw_bo->cpu_writers);
471
472         ttm_bo_unreserve(bo);
473         if (unlikely(ret != 0))
474                 return ret;
475
476         return ret;
477 }
478
479 /**
480  * vmw_user_bo_synccpu_release - Release a previous grab for CPU access,
481  * and unblock command submission on the buffer if blocked.
482  *
483  * @filp: Identifying the caller.
484  * @handle: Handle identifying the buffer object.
485  * @flags: Flags indicating the type of release.
486  */
487 static int vmw_user_bo_synccpu_release(struct drm_file *filp,
488                                        uint32_t handle,
489                                        uint32_t flags)
490 {
491         struct vmw_bo *vmw_bo;
492         int ret = vmw_user_bo_lookup(filp, handle, &vmw_bo);
493
494         if (!ret) {
495                 if (!(flags & drm_vmw_synccpu_allow_cs)) {
496                         atomic_dec(&vmw_bo->cpu_writers);
497                 }
498                 ttm_bo_put(&vmw_bo->tbo);
499         }
500
501         return ret;
502 }
503
504
505 /**
506  * vmw_user_bo_synccpu_ioctl - ioctl function implementing the synccpu
507  * functionality.
508  *
509  * @dev: Identifies the drm device.
510  * @data: Pointer to the ioctl argument.
511  * @file_priv: Identifies the caller.
512  * Return: Zero on success, negative error code on error.
513  *
514  * This function checks the ioctl arguments for validity and calls the
515  * relevant synccpu functions.
516  */
517 int vmw_user_bo_synccpu_ioctl(struct drm_device *dev, void *data,
518                               struct drm_file *file_priv)
519 {
520         struct drm_vmw_synccpu_arg *arg =
521                 (struct drm_vmw_synccpu_arg *) data;
522         struct vmw_bo *vbo;
523         int ret;
524
525         if ((arg->flags & (drm_vmw_synccpu_read | drm_vmw_synccpu_write)) == 0
526             || (arg->flags & ~(drm_vmw_synccpu_read | drm_vmw_synccpu_write |
527                                drm_vmw_synccpu_dontblock |
528                                drm_vmw_synccpu_allow_cs)) != 0) {
529                 DRM_ERROR("Illegal synccpu flags.\n");
530                 return -EINVAL;
531         }
532
533         switch (arg->op) {
534         case drm_vmw_synccpu_grab:
535                 ret = vmw_user_bo_lookup(file_priv, arg->handle, &vbo);
536                 if (unlikely(ret != 0))
537                         return ret;
538
539                 ret = vmw_user_bo_synccpu_grab(vbo, arg->flags);
540                 vmw_bo_unreference(&vbo);
541                 if (unlikely(ret != 0)) {
542                         if (ret == -ERESTARTSYS || ret == -EBUSY)
543                                 return -EBUSY;
544                         DRM_ERROR("Failed synccpu grab on handle 0x%08x.\n",
545                                   (unsigned int) arg->handle);
546                         return ret;
547                 }
548                 break;
549         case drm_vmw_synccpu_release:
550                 ret = vmw_user_bo_synccpu_release(file_priv,
551                                                   arg->handle,
552                                                   arg->flags);
553                 if (unlikely(ret != 0)) {
554                         DRM_ERROR("Failed synccpu release on handle 0x%08x.\n",
555                                   (unsigned int) arg->handle);
556                         return ret;
557                 }
558                 break;
559         default:
560                 DRM_ERROR("Invalid synccpu operation.\n");
561                 return -EINVAL;
562         }
563
564         return 0;
565 }
566
567 /**
568  * vmw_bo_unref_ioctl - Generic handle close ioctl.
569  *
570  * @dev: Identifies the drm device.
571  * @data: Pointer to the ioctl argument.
572  * @file_priv: Identifies the caller.
573  * Return: Zero on success, negative error code on error.
574  *
575  * This function checks the ioctl arguments for validity and closes a
576  * handle to a TTM base object, optionally freeing the object.
577  */
578 int vmw_bo_unref_ioctl(struct drm_device *dev, void *data,
579                        struct drm_file *file_priv)
580 {
581         struct drm_vmw_unref_dmabuf_arg *arg =
582             (struct drm_vmw_unref_dmabuf_arg *)data;
583
584         return drm_gem_handle_delete(file_priv, arg->handle);
585 }
586
587
588 /**
589  * vmw_user_bo_lookup - Look up a vmw user buffer object from a handle.
590  *
591  * @filp: The file the handle is registered with.
592  * @handle: The user buffer object handle
593  * @out: Pointer to a where a pointer to the embedded
594  * struct vmw_bo should be placed.
595  * Return: Zero on success, Negative error code on error.
596  *
597  * The vmw buffer object pointer will be refcounted.
598  */
599 int vmw_user_bo_lookup(struct drm_file *filp,
600                        u32 handle,
601                        struct vmw_bo **out)
602 {
603         struct drm_gem_object *gobj;
604
605         gobj = drm_gem_object_lookup(filp, handle);
606         if (!gobj) {
607                 DRM_ERROR("Invalid buffer object handle 0x%08lx.\n",
608                           (unsigned long)handle);
609                 return -ESRCH;
610         }
611
612         *out = to_vmw_bo(gobj);
613         ttm_bo_get(&(*out)->tbo);
614         drm_gem_object_put(gobj);
615
616         return 0;
617 }
618
619 /**
620  * vmw_bo_fence_single - Utility function to fence a single TTM buffer
621  *                       object without unreserving it.
622  *
623  * @bo:             Pointer to the struct ttm_buffer_object to fence.
624  * @fence:          Pointer to the fence. If NULL, this function will
625  *                  insert a fence into the command stream..
626  *
627  * Contrary to the ttm_eu version of this function, it takes only
628  * a single buffer object instead of a list, and it also doesn't
629  * unreserve the buffer object, which needs to be done separately.
630  */
631 void vmw_bo_fence_single(struct ttm_buffer_object *bo,
632                          struct vmw_fence_obj *fence)
633 {
634         struct ttm_device *bdev = bo->bdev;
635         struct vmw_private *dev_priv = vmw_priv_from_ttm(bdev);
636         int ret;
637
638         if (fence == NULL)
639                 vmw_execbuf_fence_commands(NULL, dev_priv, &fence, NULL);
640         else
641                 dma_fence_get(&fence->base);
642
643         ret = dma_resv_reserve_fences(bo->base.resv, 1);
644         if (!ret)
645                 dma_resv_add_fence(bo->base.resv, &fence->base,
646                                    DMA_RESV_USAGE_KERNEL);
647         else
648                 /* Last resort fallback when we are OOM */
649                 dma_fence_wait(&fence->base, false);
650         dma_fence_put(&fence->base);
651 }
652
653
654 /**
655  * vmw_dumb_create - Create a dumb kms buffer
656  *
657  * @file_priv: Pointer to a struct drm_file identifying the caller.
658  * @dev: Pointer to the drm device.
659  * @args: Pointer to a struct drm_mode_create_dumb structure
660  * Return: Zero on success, negative error code on failure.
661  *
662  * This is a driver callback for the core drm create_dumb functionality.
663  * Note that this is very similar to the vmw_bo_alloc ioctl, except
664  * that the arguments have a different format.
665  */
666 int vmw_dumb_create(struct drm_file *file_priv,
667                     struct drm_device *dev,
668                     struct drm_mode_create_dumb *args)
669 {
670         struct vmw_private *dev_priv = vmw_priv(dev);
671         struct vmw_bo *vbo;
672         int cpp = DIV_ROUND_UP(args->bpp, 8);
673         int ret;
674
675         switch (cpp) {
676         case 1: /* DRM_FORMAT_C8 */
677         case 2: /* DRM_FORMAT_RGB565 */
678         case 4: /* DRM_FORMAT_XRGB8888 */
679                 break;
680         default:
681                 /*
682                  * Dumb buffers don't allow anything else.
683                  * This is tested via IGT's dumb_buffers
684                  */
685                 return -EINVAL;
686         }
687
688         args->pitch = args->width * cpp;
689         args->size = ALIGN(args->pitch * args->height, PAGE_SIZE);
690
691         ret = vmw_gem_object_create_with_handle(dev_priv, file_priv,
692                                                 args->size, &args->handle,
693                                                 &vbo);
694
695         return ret;
696 }
697
698 /**
699  * vmw_bo_swap_notify - swapout notify callback.
700  *
701  * @bo: The buffer object to be swapped out.
702  */
703 void vmw_bo_swap_notify(struct ttm_buffer_object *bo)
704 {
705         /* Kill any cached kernel maps before swapout */
706         vmw_bo_unmap(to_vmw_bo(&bo->base));
707 }
708
709
710 /**
711  * vmw_bo_move_notify - TTM move_notify_callback
712  *
713  * @bo: The TTM buffer object about to move.
714  * @mem: The struct ttm_resource indicating to what memory
715  *       region the move is taking place.
716  *
717  * Detaches cached maps and device bindings that require that the
718  * buffer doesn't move.
719  */
720 void vmw_bo_move_notify(struct ttm_buffer_object *bo,
721                         struct ttm_resource *mem)
722 {
723         struct vmw_bo *vbo = to_vmw_bo(&bo->base);
724
725         /*
726          * Kill any cached kernel maps before move to or from VRAM.
727          * With other types of moves, the underlying pages stay the same,
728          * and the map can be kept.
729          */
730         if (mem->mem_type == TTM_PL_VRAM || bo->resource->mem_type == TTM_PL_VRAM)
731                 vmw_bo_unmap(vbo);
732
733         /*
734          * If we're moving a backup MOB out of MOB placement, then make sure we
735          * read back all resource content first, and unbind the MOB from
736          * the resource.
737          */
738         if (mem->mem_type != VMW_PL_MOB && bo->resource->mem_type == VMW_PL_MOB)
739                 vmw_resource_unbind_list(vbo);
740 }
741
742 static u32
743 set_placement_list(struct ttm_place *pl, u32 domain)
744 {
745         u32 n = 0;
746
747         /*
748          * The placements are ordered according to our preferences
749          */
750         if (domain & VMW_BO_DOMAIN_MOB) {
751                 pl[n].mem_type = VMW_PL_MOB;
752                 pl[n].flags = 0;
753                 pl[n].fpfn = 0;
754                 pl[n].lpfn = 0;
755                 n++;
756         }
757         if (domain & VMW_BO_DOMAIN_GMR) {
758                 pl[n].mem_type = VMW_PL_GMR;
759                 pl[n].flags = 0;
760                 pl[n].fpfn = 0;
761                 pl[n].lpfn = 0;
762                 n++;
763         }
764         if (domain & VMW_BO_DOMAIN_VRAM) {
765                 pl[n].mem_type = TTM_PL_VRAM;
766                 pl[n].flags = 0;
767                 pl[n].fpfn = 0;
768                 pl[n].lpfn = 0;
769                 n++;
770         }
771         if (domain & VMW_BO_DOMAIN_WAITABLE_SYS) {
772                 pl[n].mem_type = VMW_PL_SYSTEM;
773                 pl[n].flags = 0;
774                 pl[n].fpfn = 0;
775                 pl[n].lpfn = 0;
776                 n++;
777         }
778         if (domain & VMW_BO_DOMAIN_SYS) {
779                 pl[n].mem_type = TTM_PL_SYSTEM;
780                 pl[n].flags = 0;
781                 pl[n].fpfn = 0;
782                 pl[n].lpfn = 0;
783                 n++;
784         }
785
786         WARN_ON(!n);
787         if (!n) {
788                 pl[n].mem_type = TTM_PL_SYSTEM;
789                 pl[n].flags = 0;
790                 pl[n].fpfn = 0;
791                 pl[n].lpfn = 0;
792                 n++;
793         }
794         return n;
795 }
796
797 void vmw_bo_placement_set(struct vmw_bo *bo, u32 domain, u32 busy_domain)
798 {
799         struct ttm_device *bdev = bo->tbo.bdev;
800         struct vmw_private *vmw = vmw_priv_from_ttm(bdev);
801         struct ttm_placement *pl = &bo->placement;
802         bool mem_compatible = false;
803         u32 i;
804
805         pl->placement = bo->places;
806         pl->num_placement = set_placement_list(bo->places, domain);
807
808         if (drm_debug_enabled(DRM_UT_DRIVER) && bo->tbo.resource) {
809                 for (i = 0; i < pl->num_placement; ++i) {
810                         if (bo->tbo.resource->mem_type == TTM_PL_SYSTEM ||
811                             bo->tbo.resource->mem_type == pl->placement[i].mem_type)
812                                 mem_compatible = true;
813                 }
814                 if (!mem_compatible)
815                         drm_warn(&vmw->drm,
816                                  "%s: Incompatible transition from "
817                                  "bo->base.resource->mem_type = %u to domain = %u\n",
818                                  __func__, bo->tbo.resource->mem_type, domain);
819         }
820
821         pl->busy_placement = bo->busy_places;
822         pl->num_busy_placement = set_placement_list(bo->busy_places, busy_domain);
823 }
824
825 void vmw_bo_placement_set_default_accelerated(struct vmw_bo *bo)
826 {
827         struct ttm_device *bdev = bo->tbo.bdev;
828         struct vmw_private *vmw = vmw_priv_from_ttm(bdev);
829         u32 domain = VMW_BO_DOMAIN_GMR | VMW_BO_DOMAIN_VRAM;
830
831         if (vmw->has_mob)
832                 domain = VMW_BO_DOMAIN_MOB;
833
834         vmw_bo_placement_set(bo, domain, domain);
835 }