blob: 44230165e1819b697eea4598ec50a9899d54e8ba [file] [log] [blame]
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001/*
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#include <drm/drmP.h>
27
28#include "amdgpu.h"
Samuel Li09052fc2017-12-08 16:18:59 -050029#include "amdgpu_display.h"
Alex Deucherd38ceaf2015-04-20 16:55:21 -040030#include <drm/amdgpu_drm.h>
31#include <linux/dma-buf.h>
32
Christian König9021d2e2018-02-19 11:29:35 +010033static const struct dma_buf_ops amdgpu_dmabuf_ops;
34
Alex Deucherd38ceaf2015-04-20 16:55:21 -040035struct sg_table *amdgpu_gem_prime_get_sg_table(struct drm_gem_object *obj)
36{
37 struct amdgpu_bo *bo = gem_to_amdgpu_bo(obj);
38 int npages = bo->tbo.num_pages;
39
40 return drm_prime_pages_to_sg(bo->tbo.ttm->pages, npages);
41}
42
43void *amdgpu_gem_prime_vmap(struct drm_gem_object *obj)
44{
45 struct amdgpu_bo *bo = gem_to_amdgpu_bo(obj);
46 int ret;
47
48 ret = ttm_bo_kmap(&bo->tbo, 0, bo->tbo.num_pages,
49 &bo->dma_buf_vmap);
50 if (ret)
51 return ERR_PTR(ret);
52
53 return bo->dma_buf_vmap.virtual;
54}
55
56void amdgpu_gem_prime_vunmap(struct drm_gem_object *obj, void *vaddr)
57{
58 struct amdgpu_bo *bo = gem_to_amdgpu_bo(obj);
59
60 ttm_bo_kunmap(&bo->dma_buf_vmap);
61}
62
Samuel Lidfced2e2017-08-22 15:25:33 -040063int amdgpu_gem_prime_mmap(struct drm_gem_object *obj, struct vm_area_struct *vma)
64{
65 struct amdgpu_bo *bo = gem_to_amdgpu_bo(obj);
66 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
67 unsigned asize = amdgpu_bo_size(bo);
68 int ret;
69
70 if (!vma->vm_file)
71 return -ENODEV;
72
73 if (adev == NULL)
74 return -ENODEV;
75
76 /* Check for valid size. */
77 if (asize < vma->vm_end - vma->vm_start)
78 return -EINVAL;
79
80 if (amdgpu_ttm_tt_get_usermm(bo->tbo.ttm) ||
81 (bo->flags & AMDGPU_GEM_CREATE_NO_CPU_ACCESS)) {
82 return -EPERM;
83 }
84 vma->vm_pgoff += amdgpu_bo_mmap_offset(bo) >> PAGE_SHIFT;
85
86 /* prime mmap does not need to check access, so allow here */
87 ret = drm_vma_node_allow(&obj->vma_node, vma->vm_file->private_data);
88 if (ret)
89 return ret;
90
91 ret = ttm_bo_mmap(vma->vm_file, vma, &adev->mman.bdev);
92 drm_vma_node_revoke(&obj->vma_node, vma->vm_file->private_data);
93
94 return ret;
95}
96
Christian König4d9c5142016-05-03 18:46:19 +020097struct drm_gem_object *
98amdgpu_gem_prime_import_sg_table(struct drm_device *dev,
99 struct dma_buf_attachment *attach,
100 struct sg_table *sg)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400101{
Christian König72d76682015-09-03 17:34:59 +0200102 struct reservation_object *resv = attach->dmabuf->resv;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400103 struct amdgpu_device *adev = dev->dev_private;
104 struct amdgpu_bo *bo;
105 int ret;
106
Christian König72d76682015-09-03 17:34:59 +0200107 ww_mutex_lock(&resv->lock, NULL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400108 ret = amdgpu_bo_create(adev, attach->dmabuf->size, PAGE_SIZE, false,
Christian Könige3364df2018-02-20 19:42:40 +0100109 AMDGPU_GEM_DOMAIN_CPU, 0, sg, resv, &bo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400110 if (ret)
Christian König59dd4772018-02-20 19:51:02 +0100111 goto error;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400112
Christian Könige3364df2018-02-20 19:42:40 +0100113 bo->allowed_domains = AMDGPU_GEM_DOMAIN_GTT;
114 bo->preferred_domains = AMDGPU_GEM_DOMAIN_GTT;
Christian König59dd4772018-02-20 19:51:02 +0100115 if (attach->dmabuf->ops != &amdgpu_dmabuf_ops)
116 bo->prime_shared_count = 1;
117
118 ww_mutex_unlock(&resv->lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400119 return &bo->gem_base;
Christian König59dd4772018-02-20 19:51:02 +0100120
121error:
122 ww_mutex_unlock(&resv->lock);
123 return ERR_PTR(ret);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400124}
125
Christian König5a137612018-02-16 13:16:11 +0100126static int amdgpu_gem_map_attach(struct dma_buf *dma_buf,
127 struct device *target_dev,
128 struct dma_buf_attachment *attach)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400129{
Christian König5a137612018-02-16 13:16:11 +0100130 struct drm_gem_object *obj = dma_buf->priv;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400131 struct amdgpu_bo *bo = gem_to_amdgpu_bo(obj);
Christian König5a137612018-02-16 13:16:11 +0100132 long r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400133
Christian König5a137612018-02-16 13:16:11 +0100134 r = drm_gem_map_attach(dma_buf, target_dev, attach);
135 if (r)
136 return r;
137
138 r = amdgpu_bo_reserve(bo, false);
139 if (unlikely(r != 0))
140 goto error_detach;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400141
Christian König9021d2e2018-02-19 11:29:35 +0100142
143 if (dma_buf->ops != &amdgpu_dmabuf_ops) {
144 /*
145 * Wait for all shared fences to complete before we switch to future
146 * use of exclusive fence on this prime shared bo.
147 */
148 r = reservation_object_wait_timeout_rcu(bo->tbo.resv,
149 true, false,
150 MAX_SCHEDULE_TIMEOUT);
151 if (unlikely(r < 0)) {
152 DRM_DEBUG_PRIME("Fence wait failed: %li\n", r);
153 goto error_unreserve;
154 }
Mario Kleiner8e94a462016-11-09 02:25:15 +0100155 }
156
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400157 /* pin buffer into GTT */
Christian König5a137612018-02-16 13:16:11 +0100158 r = amdgpu_bo_pin(bo, AMDGPU_GEM_DOMAIN_GTT, NULL);
Christian König9021d2e2018-02-19 11:29:35 +0100159 if (r)
160 goto error_unreserve;
161
162 if (dma_buf->ops != &amdgpu_dmabuf_ops)
Mario Kleiner8e94a462016-11-09 02:25:15 +0100163 bo->prime_shared_count++;
164
Christian König5a137612018-02-16 13:16:11 +0100165error_unreserve:
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400166 amdgpu_bo_unreserve(bo);
Christian König5a137612018-02-16 13:16:11 +0100167
168error_detach:
169 if (r)
170 drm_gem_map_detach(dma_buf, attach);
171 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400172}
173
Christian König5a137612018-02-16 13:16:11 +0100174static void amdgpu_gem_map_detach(struct dma_buf *dma_buf,
175 struct dma_buf_attachment *attach)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400176{
Christian König5a137612018-02-16 13:16:11 +0100177 struct drm_gem_object *obj = dma_buf->priv;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400178 struct amdgpu_bo *bo = gem_to_amdgpu_bo(obj);
179 int ret = 0;
180
Michel Dänzerc81a1a72017-04-28 17:28:14 +0900181 ret = amdgpu_bo_reserve(bo, true);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400182 if (unlikely(ret != 0))
Christian König5a137612018-02-16 13:16:11 +0100183 goto error;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400184
185 amdgpu_bo_unpin(bo);
Christian König9021d2e2018-02-19 11:29:35 +0100186 if (dma_buf->ops != &amdgpu_dmabuf_ops && bo->prime_shared_count)
Mario Kleiner8e94a462016-11-09 02:25:15 +0100187 bo->prime_shared_count--;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400188 amdgpu_bo_unreserve(bo);
Christian König5a137612018-02-16 13:16:11 +0100189
190error:
191 drm_gem_map_detach(dma_buf, attach);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400192}
193
194struct reservation_object *amdgpu_gem_prime_res_obj(struct drm_gem_object *obj)
195{
196 struct amdgpu_bo *bo = gem_to_amdgpu_bo(obj);
197
198 return bo->tbo.resv;
199}
200
Samuel Li09052fc2017-12-08 16:18:59 -0500201static int amdgpu_gem_begin_cpu_access(struct dma_buf *dma_buf,
202 enum dma_data_direction direction)
203{
204 struct amdgpu_bo *bo = gem_to_amdgpu_bo(dma_buf->priv);
205 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
206 struct ttm_operation_ctx ctx = { true, false };
207 u32 domain = amdgpu_display_framebuffer_domains(adev);
208 int ret;
209 bool reads = (direction == DMA_BIDIRECTIONAL ||
210 direction == DMA_FROM_DEVICE);
211
212 if (!reads || !(domain & AMDGPU_GEM_DOMAIN_GTT))
213 return 0;
214
215 /* move to gtt */
216 ret = amdgpu_bo_reserve(bo, false);
217 if (unlikely(ret != 0))
218 return ret;
219
220 if (!bo->pin_count && (bo->allowed_domains & AMDGPU_GEM_DOMAIN_GTT)) {
221 amdgpu_ttm_placement_from_domain(bo, AMDGPU_GEM_DOMAIN_GTT);
222 ret = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
223 }
224
225 amdgpu_bo_unreserve(bo);
226 return ret;
227}
228
229static const struct dma_buf_ops amdgpu_dmabuf_ops = {
Christian König5a137612018-02-16 13:16:11 +0100230 .attach = amdgpu_gem_map_attach,
231 .detach = amdgpu_gem_map_detach,
Samuel Li09052fc2017-12-08 16:18:59 -0500232 .map_dma_buf = drm_gem_map_dma_buf,
233 .unmap_dma_buf = drm_gem_unmap_dma_buf,
234 .release = drm_gem_dmabuf_release,
235 .begin_cpu_access = amdgpu_gem_begin_cpu_access,
236 .map = drm_gem_dmabuf_kmap,
237 .map_atomic = drm_gem_dmabuf_kmap_atomic,
238 .unmap = drm_gem_dmabuf_kunmap,
239 .unmap_atomic = drm_gem_dmabuf_kunmap_atomic,
240 .mmap = drm_gem_dmabuf_mmap,
241 .vmap = drm_gem_dmabuf_vmap,
242 .vunmap = drm_gem_dmabuf_vunmap,
243};
244
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400245struct dma_buf *amdgpu_gem_prime_export(struct drm_device *dev,
246 struct drm_gem_object *gobj,
247 int flags)
248{
249 struct amdgpu_bo *bo = gem_to_amdgpu_bo(gobj);
Christian König4b277242017-11-13 17:20:50 +0100250 struct dma_buf *buf;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400251
Christian Könige1eb899b42017-08-25 09:14:43 +0200252 if (amdgpu_ttm_tt_get_usermm(bo->tbo.ttm) ||
253 bo->flags & AMDGPU_GEM_CREATE_VM_ALWAYS_VALID)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400254 return ERR_PTR(-EPERM);
255
Christian König4b277242017-11-13 17:20:50 +0100256 buf = drm_gem_prime_export(dev, gobj, flags);
Samuel Li09052fc2017-12-08 16:18:59 -0500257 if (!IS_ERR(buf)) {
Christian König4b277242017-11-13 17:20:50 +0100258 buf->file->f_mapping = dev->anon_inode->i_mapping;
Samuel Li09052fc2017-12-08 16:18:59 -0500259 buf->ops = &amdgpu_dmabuf_ops;
260 }
261
Christian König4b277242017-11-13 17:20:50 +0100262 return buf;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400263}
Samuel Li09052fc2017-12-08 16:18:59 -0500264
265struct drm_gem_object *amdgpu_gem_prime_import(struct drm_device *dev,
266 struct dma_buf *dma_buf)
267{
268 struct drm_gem_object *obj;
269
270 if (dma_buf->ops == &amdgpu_dmabuf_ops) {
271 obj = dma_buf->priv;
272 if (obj->dev == dev) {
273 /*
274 * Importing dmabuf exported from out own gem increases
275 * refcount on gem itself instead of f_count of dmabuf.
276 */
277 drm_gem_object_get(obj);
278 return obj;
279 }
280 }
281
282 return drm_gem_prime_import(dev, dma_buf);
283}