Merge branch 'regulator-4.20' into regulator-linus
[linux-2.6-microblaze.git] / drivers / gpu / drm / amd / amdgpu / amdgpu_prime.c
1 /*
2  * Copyright 2012 Advanced Micro Devices, Inc.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20  * OTHER DEALINGS IN THE SOFTWARE.
21  *
22  * based on nouveau_prime.c
23  *
24  * Authors: Alex Deucher
25  */
26
27 /**
28  * DOC: PRIME Buffer Sharing
29  *
30  * The following callback implementations are used for :ref:`sharing GEM buffer
31  * objects between different devices via PRIME <prime_buffer_sharing>`.
32  */
33
34 #include <drm/drmP.h>
35
36 #include "amdgpu.h"
37 #include "amdgpu_display.h"
38 #include "amdgpu_gem.h"
39 #include <drm/amdgpu_drm.h>
40 #include <linux/dma-buf.h>
41
42 static const struct dma_buf_ops amdgpu_dmabuf_ops;
43
44 /**
45  * amdgpu_gem_prime_get_sg_table - &drm_driver.gem_prime_get_sg_table
46  * implementation
47  * @obj: GEM buffer object (BO)
48  *
49  * Returns:
50  * A scatter/gather table for the pinned pages of the BO's memory.
51  */
52 struct sg_table *amdgpu_gem_prime_get_sg_table(struct drm_gem_object *obj)
53 {
54         struct amdgpu_bo *bo = gem_to_amdgpu_bo(obj);
55         int npages = bo->tbo.num_pages;
56
57         return drm_prime_pages_to_sg(bo->tbo.ttm->pages, npages);
58 }
59
60 /**
61  * amdgpu_gem_prime_vmap - &dma_buf_ops.vmap implementation
62  * @obj: GEM BO
63  *
64  * Sets up an in-kernel virtual mapping of the BO's memory.
65  *
66  * Returns:
67  * The virtual address of the mapping or an error pointer.
68  */
69 void *amdgpu_gem_prime_vmap(struct drm_gem_object *obj)
70 {
71         struct amdgpu_bo *bo = gem_to_amdgpu_bo(obj);
72         int ret;
73
74         ret = ttm_bo_kmap(&bo->tbo, 0, bo->tbo.num_pages,
75                           &bo->dma_buf_vmap);
76         if (ret)
77                 return ERR_PTR(ret);
78
79         return bo->dma_buf_vmap.virtual;
80 }
81
82 /**
83  * amdgpu_gem_prime_vunmap - &dma_buf_ops.vunmap implementation
84  * @obj: GEM BO
85  * @vaddr: Virtual address (unused)
86  *
87  * Tears down the in-kernel virtual mapping of the BO's memory.
88  */
89 void amdgpu_gem_prime_vunmap(struct drm_gem_object *obj, void *vaddr)
90 {
91         struct amdgpu_bo *bo = gem_to_amdgpu_bo(obj);
92
93         ttm_bo_kunmap(&bo->dma_buf_vmap);
94 }
95
96 /**
97  * amdgpu_gem_prime_mmap - &drm_driver.gem_prime_mmap implementation
98  * @obj: GEM BO
99  * @vma: Virtual memory area
100  *
101  * Sets up a userspace mapping of the BO's memory in the given
102  * virtual memory area.
103  *
104  * Returns:
105  * 0 on success or a negative error code on failure.
106  */
107 int amdgpu_gem_prime_mmap(struct drm_gem_object *obj, struct vm_area_struct *vma)
108 {
109         struct amdgpu_bo *bo = gem_to_amdgpu_bo(obj);
110         struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
111         unsigned asize = amdgpu_bo_size(bo);
112         int ret;
113
114         if (!vma->vm_file)
115                 return -ENODEV;
116
117         if (adev == NULL)
118                 return -ENODEV;
119
120         /* Check for valid size. */
121         if (asize < vma->vm_end - vma->vm_start)
122                 return -EINVAL;
123
124         if (amdgpu_ttm_tt_get_usermm(bo->tbo.ttm) ||
125             (bo->flags & AMDGPU_GEM_CREATE_NO_CPU_ACCESS)) {
126                 return -EPERM;
127         }
128         vma->vm_pgoff += amdgpu_bo_mmap_offset(bo) >> PAGE_SHIFT;
129
130         /* prime mmap does not need to check access, so allow here */
131         ret = drm_vma_node_allow(&obj->vma_node, vma->vm_file->private_data);
132         if (ret)
133                 return ret;
134
135         ret = ttm_bo_mmap(vma->vm_file, vma, &adev->mman.bdev);
136         drm_vma_node_revoke(&obj->vma_node, vma->vm_file->private_data);
137
138         return ret;
139 }
140
141 /**
142  * amdgpu_gem_prime_import_sg_table - &drm_driver.gem_prime_import_sg_table
143  * implementation
144  * @dev: DRM device
145  * @attach: DMA-buf attachment
146  * @sg: Scatter/gather table
147  *
148  * Imports shared DMA buffer memory exported by another device.
149  *
150  * Returns:
151  * A new GEM BO of the given DRM device, representing the memory
152  * described by the given DMA-buf attachment and scatter/gather table.
153  */
154 struct drm_gem_object *
155 amdgpu_gem_prime_import_sg_table(struct drm_device *dev,
156                                  struct dma_buf_attachment *attach,
157                                  struct sg_table *sg)
158 {
159         struct reservation_object *resv = attach->dmabuf->resv;
160         struct amdgpu_device *adev = dev->dev_private;
161         struct amdgpu_bo *bo;
162         struct amdgpu_bo_param bp;
163         int ret;
164
165         memset(&bp, 0, sizeof(bp));
166         bp.size = attach->dmabuf->size;
167         bp.byte_align = PAGE_SIZE;
168         bp.domain = AMDGPU_GEM_DOMAIN_CPU;
169         bp.flags = 0;
170         bp.type = ttm_bo_type_sg;
171         bp.resv = resv;
172         ww_mutex_lock(&resv->lock, NULL);
173         ret = amdgpu_bo_create(adev, &bp, &bo);
174         if (ret)
175                 goto error;
176
177         bo->tbo.sg = sg;
178         bo->tbo.ttm->sg = sg;
179         bo->allowed_domains = AMDGPU_GEM_DOMAIN_GTT;
180         bo->preferred_domains = AMDGPU_GEM_DOMAIN_GTT;
181         if (attach->dmabuf->ops != &amdgpu_dmabuf_ops)
182                 bo->prime_shared_count = 1;
183
184         ww_mutex_unlock(&resv->lock);
185         return &bo->gem_base;
186
187 error:
188         ww_mutex_unlock(&resv->lock);
189         return ERR_PTR(ret);
190 }
191
192 /**
193  * amdgpu_gem_map_attach - &dma_buf_ops.attach implementation
194  * @dma_buf: Shared DMA buffer
195  * @attach: DMA-buf attachment
196  *
197  * Makes sure that the shared DMA buffer can be accessed by the target device.
198  * For now, simply pins it to the GTT domain, where it should be accessible by
199  * all DMA devices.
200  *
201  * Returns:
202  * 0 on success or a negative error code on failure.
203  */
204 static int amdgpu_gem_map_attach(struct dma_buf *dma_buf,
205                                  struct dma_buf_attachment *attach)
206 {
207         struct drm_gem_object *obj = dma_buf->priv;
208         struct amdgpu_bo *bo = gem_to_amdgpu_bo(obj);
209         struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
210         long r;
211
212         r = drm_gem_map_attach(dma_buf, attach);
213         if (r)
214                 return r;
215
216         r = amdgpu_bo_reserve(bo, false);
217         if (unlikely(r != 0))
218                 goto error_detach;
219
220
221         if (attach->dev->driver != adev->dev->driver) {
222                 /*
223                  * Wait for all shared fences to complete before we switch to future
224                  * use of exclusive fence on this prime shared bo.
225                  */
226                 r = reservation_object_wait_timeout_rcu(bo->tbo.resv,
227                                                         true, false,
228                                                         MAX_SCHEDULE_TIMEOUT);
229                 if (unlikely(r < 0)) {
230                         DRM_DEBUG_PRIME("Fence wait failed: %li\n", r);
231                         goto error_unreserve;
232                 }
233         }
234
235         /* pin buffer into GTT */
236         r = amdgpu_bo_pin(bo, AMDGPU_GEM_DOMAIN_GTT);
237         if (r)
238                 goto error_unreserve;
239
240         if (attach->dev->driver != adev->dev->driver)
241                 bo->prime_shared_count++;
242
243 error_unreserve:
244         amdgpu_bo_unreserve(bo);
245
246 error_detach:
247         if (r)
248                 drm_gem_map_detach(dma_buf, attach);
249         return r;
250 }
251
252 /**
253  * amdgpu_gem_map_detach - &dma_buf_ops.detach implementation
254  * @dma_buf: Shared DMA buffer
255  * @attach: DMA-buf attachment
256  *
257  * This is called when a shared DMA buffer no longer needs to be accessible by
258  * another device. For now, simply unpins the buffer from GTT.
259  */
260 static void amdgpu_gem_map_detach(struct dma_buf *dma_buf,
261                                   struct dma_buf_attachment *attach)
262 {
263         struct drm_gem_object *obj = dma_buf->priv;
264         struct amdgpu_bo *bo = gem_to_amdgpu_bo(obj);
265         struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
266         int ret = 0;
267
268         ret = amdgpu_bo_reserve(bo, true);
269         if (unlikely(ret != 0))
270                 goto error;
271
272         amdgpu_bo_unpin(bo);
273         if (attach->dev->driver != adev->dev->driver && bo->prime_shared_count)
274                 bo->prime_shared_count--;
275         amdgpu_bo_unreserve(bo);
276
277 error:
278         drm_gem_map_detach(dma_buf, attach);
279 }
280
281 /**
282  * amdgpu_gem_prime_res_obj - &drm_driver.gem_prime_res_obj implementation
283  * @obj: GEM BO
284  *
285  * Returns:
286  * The BO's reservation object.
287  */
288 struct reservation_object *amdgpu_gem_prime_res_obj(struct drm_gem_object *obj)
289 {
290         struct amdgpu_bo *bo = gem_to_amdgpu_bo(obj);
291
292         return bo->tbo.resv;
293 }
294
295 /**
296  * amdgpu_gem_begin_cpu_access - &dma_buf_ops.begin_cpu_access implementation
297  * @dma_buf: Shared DMA buffer
298  * @direction: Direction of DMA transfer
299  *
300  * This is called before CPU access to the shared DMA buffer's memory. If it's
301  * a read access, the buffer is moved to the GTT domain if possible, for optimal
302  * CPU read performance.
303  *
304  * Returns:
305  * 0 on success or a negative error code on failure.
306  */
307 static int amdgpu_gem_begin_cpu_access(struct dma_buf *dma_buf,
308                                        enum dma_data_direction direction)
309 {
310         struct amdgpu_bo *bo = gem_to_amdgpu_bo(dma_buf->priv);
311         struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
312         struct ttm_operation_ctx ctx = { true, false };
313         u32 domain = amdgpu_display_supported_domains(adev);
314         int ret;
315         bool reads = (direction == DMA_BIDIRECTIONAL ||
316                       direction == DMA_FROM_DEVICE);
317
318         if (!reads || !(domain & AMDGPU_GEM_DOMAIN_GTT))
319                 return 0;
320
321         /* move to gtt */
322         ret = amdgpu_bo_reserve(bo, false);
323         if (unlikely(ret != 0))
324                 return ret;
325
326         if (!bo->pin_count && (bo->allowed_domains & AMDGPU_GEM_DOMAIN_GTT)) {
327                 amdgpu_bo_placement_from_domain(bo, AMDGPU_GEM_DOMAIN_GTT);
328                 ret = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
329         }
330
331         amdgpu_bo_unreserve(bo);
332         return ret;
333 }
334
335 static const struct dma_buf_ops amdgpu_dmabuf_ops = {
336         .attach = amdgpu_gem_map_attach,
337         .detach = amdgpu_gem_map_detach,
338         .map_dma_buf = drm_gem_map_dma_buf,
339         .unmap_dma_buf = drm_gem_unmap_dma_buf,
340         .release = drm_gem_dmabuf_release,
341         .begin_cpu_access = amdgpu_gem_begin_cpu_access,
342         .map = drm_gem_dmabuf_kmap,
343         .unmap = drm_gem_dmabuf_kunmap,
344         .mmap = drm_gem_dmabuf_mmap,
345         .vmap = drm_gem_dmabuf_vmap,
346         .vunmap = drm_gem_dmabuf_vunmap,
347 };
348
349 /**
350  * amdgpu_gem_prime_export - &drm_driver.gem_prime_export implementation
351  * @dev: DRM device
352  * @gobj: GEM BO
353  * @flags: Flags such as DRM_CLOEXEC and DRM_RDWR.
354  *
355  * The main work is done by the &drm_gem_prime_export helper, which in turn
356  * uses &amdgpu_gem_prime_res_obj.
357  *
358  * Returns:
359  * Shared DMA buffer representing the GEM BO from the given device.
360  */
361 struct dma_buf *amdgpu_gem_prime_export(struct drm_device *dev,
362                                         struct drm_gem_object *gobj,
363                                         int flags)
364 {
365         struct amdgpu_bo *bo = gem_to_amdgpu_bo(gobj);
366         struct dma_buf *buf;
367
368         if (amdgpu_ttm_tt_get_usermm(bo->tbo.ttm) ||
369             bo->flags & AMDGPU_GEM_CREATE_VM_ALWAYS_VALID)
370                 return ERR_PTR(-EPERM);
371
372         buf = drm_gem_prime_export(dev, gobj, flags);
373         if (!IS_ERR(buf)) {
374                 buf->file->f_mapping = dev->anon_inode->i_mapping;
375                 buf->ops = &amdgpu_dmabuf_ops;
376         }
377
378         return buf;
379 }
380
381 /**
382  * amdgpu_gem_prime_import - &drm_driver.gem_prime_import implementation
383  * @dev: DRM device
384  * @dma_buf: Shared DMA buffer
385  *
386  * The main work is done by the &drm_gem_prime_import helper, which in turn
387  * uses &amdgpu_gem_prime_import_sg_table.
388  *
389  * Returns:
390  * GEM BO representing the shared DMA buffer for the given device.
391  */
392 struct drm_gem_object *amdgpu_gem_prime_import(struct drm_device *dev,
393                                             struct dma_buf *dma_buf)
394 {
395         struct drm_gem_object *obj;
396
397         if (dma_buf->ops == &amdgpu_dmabuf_ops) {
398                 obj = dma_buf->priv;
399                 if (obj->dev == dev) {
400                         /*
401                          * Importing dmabuf exported from out own gem increases
402                          * refcount on gem itself instead of f_count of dmabuf.
403                          */
404                         drm_gem_object_get(obj);
405                         return obj;
406                 }
407         }
408
409         return drm_gem_prime_import(dev, dma_buf);
410 }