blob: 5fb156a01774ea5d245348f6e4341dfba5ca76aa [file] [log] [blame]
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001/*
2 * Copyright 2008 Advanced Micro Devices, Inc.
3 * Copyright 2008 Red Hat Inc.
4 * Copyright 2009 Jerome Glisse.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 * OTHER DEALINGS IN THE SOFTWARE.
23 *
24 * Authors: Dave Airlie
25 * Alex Deucher
26 * Jerome Glisse
27 */
28#include <linux/ktime.h>
Stephen Rothwell568d7c72016-03-17 15:30:49 +110029#include <linux/pagemap.h>
Alex Deucherd38ceaf2015-04-20 16:55:21 -040030#include <drm/drmP.h>
31#include <drm/amdgpu_drm.h>
32#include "amdgpu.h"
Deepak Sharmabda31a22018-05-22 15:31:23 -070033#include "amdgpu_display.h"
Alex Deucherd38ceaf2015-04-20 16:55:21 -040034
35void amdgpu_gem_object_free(struct drm_gem_object *gobj)
36{
37 struct amdgpu_bo *robj = gem_to_amdgpu_bo(gobj);
38
39 if (robj) {
Christian König9298e522015-06-03 21:31:20 +020040 amdgpu_mn_unregister(robj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -040041 amdgpu_bo_unref(&robj);
42 }
43}
44
45int amdgpu_gem_object_create(struct amdgpu_device *adev, unsigned long size,
Christian Könige1eb899b42017-08-25 09:14:43 +020046 int alignment, u32 initial_domain,
Christian Königeab3de22018-03-14 14:48:17 -050047 u64 flags, enum ttm_bo_type type,
Christian Könige1eb899b42017-08-25 09:14:43 +020048 struct reservation_object *resv,
49 struct drm_gem_object **obj)
Alex Deucherd38ceaf2015-04-20 16:55:21 -040050{
Christian Könige1eb899b42017-08-25 09:14:43 +020051 struct amdgpu_bo *bo;
Chunming Zhou3216c6b2018-04-16 18:27:50 +080052 struct amdgpu_bo_param bp;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040053 int r;
54
Chunming Zhou3216c6b2018-04-16 18:27:50 +080055 memset(&bp, 0, sizeof(bp));
Alex Deucherd38ceaf2015-04-20 16:55:21 -040056 *obj = NULL;
57 /* At least align on page size */
58 if (alignment < PAGE_SIZE) {
59 alignment = PAGE_SIZE;
60 }
61
Chunming Zhou3216c6b2018-04-16 18:27:50 +080062 bp.size = size;
63 bp.byte_align = alignment;
64 bp.type = type;
65 bp.resv = resv;
Chunming Zhouaa2b2e22018-04-17 11:52:53 +080066 bp.preferred_domain = initial_domain;
Christian König08082102018-04-10 13:42:38 +020067retry:
Chunming Zhou3216c6b2018-04-16 18:27:50 +080068 bp.flags = flags;
69 bp.domain = initial_domain;
70 r = amdgpu_bo_create(adev, &bp, &bo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -040071 if (r) {
Christian König08082102018-04-10 13:42:38 +020072 if (r != -ERESTARTSYS) {
73 if (flags & AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED) {
74 flags &= ~AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED;
75 goto retry;
76 }
77
78 if (initial_domain == AMDGPU_GEM_DOMAIN_VRAM) {
79 initial_domain |= AMDGPU_GEM_DOMAIN_GTT;
80 goto retry;
81 }
82 DRM_DEBUG("Failed to allocate GEM object (%ld, %d, %u, %d)\n",
83 size, initial_domain, alignment, r);
84 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -040085 return r;
86 }
Christian Könige1eb899b42017-08-25 09:14:43 +020087 *obj = &bo->gem_base;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040088
Alex Deucherd38ceaf2015-04-20 16:55:21 -040089 return 0;
90}
91
Christian König418aa0c2016-02-15 16:59:57 +010092void amdgpu_gem_force_release(struct amdgpu_device *adev)
Alex Deucherd38ceaf2015-04-20 16:55:21 -040093{
Christian König418aa0c2016-02-15 16:59:57 +010094 struct drm_device *ddev = adev->ddev;
95 struct drm_file *file;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040096
Daniel Vetter1d2ac402016-04-26 19:29:41 +020097 mutex_lock(&ddev->filelist_mutex);
Christian König418aa0c2016-02-15 16:59:57 +010098
99 list_for_each_entry(file, &ddev->filelist, lhead) {
100 struct drm_gem_object *gobj;
101 int handle;
102
103 WARN_ONCE(1, "Still active user space clients!\n");
104 spin_lock(&file->table_lock);
105 idr_for_each_entry(&file->object_idr, gobj, handle) {
106 WARN_ONCE(1, "And also active allocations!\n");
Cihangir Akturkf62facc2017-08-03 14:58:16 +0300107 drm_gem_object_put_unlocked(gobj);
Christian König418aa0c2016-02-15 16:59:57 +0100108 }
109 idr_destroy(&file->object_idr);
110 spin_unlock(&file->table_lock);
111 }
112
Daniel Vetter1d2ac402016-04-26 19:29:41 +0200113 mutex_unlock(&ddev->filelist_mutex);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400114}
115
116/*
117 * Call from drm_gem_handle_create which appear in both new and open ioctl
118 * case.
119 */
Christian Königa7d64de2016-09-15 14:58:48 +0200120int amdgpu_gem_object_open(struct drm_gem_object *obj,
121 struct drm_file *file_priv)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400122{
Christian König765e7fb2016-09-15 15:06:50 +0200123 struct amdgpu_bo *abo = gem_to_amdgpu_bo(obj);
Christian Königa7d64de2016-09-15 14:58:48 +0200124 struct amdgpu_device *adev = amdgpu_ttm_adev(abo->tbo.bdev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400125 struct amdgpu_fpriv *fpriv = file_priv->driver_priv;
126 struct amdgpu_vm *vm = &fpriv->vm;
127 struct amdgpu_bo_va *bo_va;
Christian König4f5839c2017-08-29 16:07:31 +0200128 struct mm_struct *mm;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400129 int r;
Christian König4f5839c2017-08-29 16:07:31 +0200130
131 mm = amdgpu_ttm_tt_get_usermm(abo->tbo.ttm);
132 if (mm && mm != current->mm)
133 return -EPERM;
134
Christian Könige1eb899b42017-08-25 09:14:43 +0200135 if (abo->flags & AMDGPU_GEM_CREATE_VM_ALWAYS_VALID &&
136 abo->tbo.resv != vm->root.base.bo->tbo.resv)
137 return -EPERM;
138
Christian König765e7fb2016-09-15 15:06:50 +0200139 r = amdgpu_bo_reserve(abo, false);
Chunming Zhoue98c1b02015-11-13 15:22:04 +0800140 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400141 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400142
Christian König765e7fb2016-09-15 15:06:50 +0200143 bo_va = amdgpu_vm_bo_find(vm, abo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400144 if (!bo_va) {
Christian König765e7fb2016-09-15 15:06:50 +0200145 bo_va = amdgpu_vm_bo_add(adev, vm, abo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400146 } else {
147 ++bo_va->ref_count;
148 }
Christian König765e7fb2016-09-15 15:06:50 +0200149 amdgpu_bo_unreserve(abo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400150 return 0;
151}
152
153void amdgpu_gem_object_close(struct drm_gem_object *obj,
154 struct drm_file *file_priv)
155{
Christian Königb5a5ec52016-03-08 17:47:46 +0100156 struct amdgpu_bo *bo = gem_to_amdgpu_bo(obj);
Christian Königa7d64de2016-09-15 14:58:48 +0200157 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400158 struct amdgpu_fpriv *fpriv = file_priv->driver_priv;
159 struct amdgpu_vm *vm = &fpriv->vm;
Christian Königb5a5ec52016-03-08 17:47:46 +0100160
161 struct amdgpu_bo_list_entry vm_pd;
Christian Könige1eb899b42017-08-25 09:14:43 +0200162 struct list_head list, duplicates;
Christian Königb5a5ec52016-03-08 17:47:46 +0100163 struct ttm_validate_buffer tv;
164 struct ww_acquire_ctx ticket;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400165 struct amdgpu_bo_va *bo_va;
166 int r;
Christian Königb5a5ec52016-03-08 17:47:46 +0100167
168 INIT_LIST_HEAD(&list);
Christian Könige1eb899b42017-08-25 09:14:43 +0200169 INIT_LIST_HEAD(&duplicates);
Christian Königb5a5ec52016-03-08 17:47:46 +0100170
171 tv.bo = &bo->tbo;
172 tv.shared = true;
173 list_add(&tv.head, &list);
174
175 amdgpu_vm_get_pd_bo(vm, &list, &vm_pd);
176
Christian Könige1eb899b42017-08-25 09:14:43 +0200177 r = ttm_eu_reserve_buffers(&ticket, &list, false, &duplicates);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400178 if (r) {
179 dev_err(adev->dev, "leaking bo va because "
180 "we fail to reserve bo (%d)\n", r);
181 return;
182 }
Christian Königb5a5ec52016-03-08 17:47:46 +0100183 bo_va = amdgpu_vm_bo_find(vm, bo);
Christian König5a0f3b52017-04-21 10:05:56 +0200184 if (bo_va && --bo_va->ref_count == 0) {
185 amdgpu_vm_bo_rmv(adev, bo_va);
186
Christian König3f3333f2017-08-03 14:02:13 +0200187 if (amdgpu_vm_ready(vm)) {
Christian König5a0f3b52017-04-21 10:05:56 +0200188 struct dma_fence *fence = NULL;
Nicolai Hähnle23e05632017-03-23 19:34:11 +0100189
190 r = amdgpu_vm_clear_freed(adev, vm, &fence);
191 if (unlikely(r)) {
192 dev_err(adev->dev, "failed to clear page "
193 "tables on GEM object close (%d)\n", r);
194 }
195
196 if (fence) {
197 amdgpu_bo_fence(bo, fence, true);
198 dma_fence_put(fence);
199 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400200 }
201 }
Christian Königb5a5ec52016-03-08 17:47:46 +0100202 ttm_eu_backoff_reservation(&ticket, &list);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400203}
204
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400205/*
206 * GEM ioctls.
207 */
208int amdgpu_gem_create_ioctl(struct drm_device *dev, void *data,
209 struct drm_file *filp)
210{
211 struct amdgpu_device *adev = dev->dev_private;
Christian Könige1eb899b42017-08-25 09:14:43 +0200212 struct amdgpu_fpriv *fpriv = filp->driver_priv;
213 struct amdgpu_vm *vm = &fpriv->vm;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400214 union drm_amdgpu_gem_create *args = data;
Christian König6ac7def2017-08-23 20:11:25 +0200215 uint64_t flags = args->in.domain_flags;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400216 uint64_t size = args->in.bo_size;
Christian Könige1eb899b42017-08-25 09:14:43 +0200217 struct reservation_object *resv = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400218 struct drm_gem_object *gobj;
219 uint32_t handle;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400220 int r;
221
Alex Deucher834e0f82017-03-08 17:40:17 -0500222 /* reject invalid gem flags */
Christian König6ac7def2017-08-23 20:11:25 +0200223 if (flags & ~(AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED |
224 AMDGPU_GEM_CREATE_NO_CPU_ACCESS |
225 AMDGPU_GEM_CREATE_CPU_GTT_USWC |
Christian Könige1eb899b42017-08-25 09:14:43 +0200226 AMDGPU_GEM_CREATE_VRAM_CLEARED |
Andres Rodriguez177ae092017-09-15 20:44:06 -0400227 AMDGPU_GEM_CREATE_VM_ALWAYS_VALID |
228 AMDGPU_GEM_CREATE_EXPLICIT_SYNC))
229
Christian Königa022c542017-05-08 15:14:54 +0200230 return -EINVAL;
231
Alex Deucher834e0f82017-03-08 17:40:17 -0500232 /* reject invalid gem domains */
Chunming Zhou3f188452018-04-17 18:34:40 +0800233 if (args->in.domains & ~AMDGPU_GEM_DOMAIN_MASK)
Christian Königa022c542017-05-08 15:14:54 +0200234 return -EINVAL;
Alex Deucher834e0f82017-03-08 17:40:17 -0500235
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400236 /* create a gem object to contain this object in */
237 if (args->in.domains & (AMDGPU_GEM_DOMAIN_GDS |
238 AMDGPU_GEM_DOMAIN_GWS | AMDGPU_GEM_DOMAIN_OA)) {
Chunming Zhouee5309d2018-05-30 11:12:08 +0800239 if (flags & AMDGPU_GEM_CREATE_VM_ALWAYS_VALID) {
240 /* if gds bo is created from user space, it must be
241 * passed to bo list
242 */
243 DRM_ERROR("GDS bo cannot be per-vm-bo\n");
244 return -EINVAL;
245 }
Christian König6ac7def2017-08-23 20:11:25 +0200246 flags |= AMDGPU_GEM_CREATE_NO_CPU_ACCESS;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400247 if (args->in.domains == AMDGPU_GEM_DOMAIN_GDS)
248 size = size << AMDGPU_GDS_SHIFT;
249 else if (args->in.domains == AMDGPU_GEM_DOMAIN_GWS)
250 size = size << AMDGPU_GWS_SHIFT;
251 else if (args->in.domains == AMDGPU_GEM_DOMAIN_OA)
252 size = size << AMDGPU_OA_SHIFT;
Christian Königa022c542017-05-08 15:14:54 +0200253 else
254 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400255 }
256 size = roundup(size, PAGE_SIZE);
257
Christian Könige1eb899b42017-08-25 09:14:43 +0200258 if (flags & AMDGPU_GEM_CREATE_VM_ALWAYS_VALID) {
259 r = amdgpu_bo_reserve(vm->root.base.bo, false);
260 if (r)
261 return r;
262
263 resv = vm->root.base.bo->tbo.resv;
264 }
265
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400266 r = amdgpu_gem_object_create(adev, size, args->in.alignment,
267 (u32)(0xffffffff & args->in.domains),
Christian Könige1eb899b42017-08-25 09:14:43 +0200268 flags, false, resv, &gobj);
269 if (flags & AMDGPU_GEM_CREATE_VM_ALWAYS_VALID) {
270 if (!r) {
271 struct amdgpu_bo *abo = gem_to_amdgpu_bo(gobj);
272
273 abo->parent = amdgpu_bo_ref(vm->root.base.bo);
274 }
275 amdgpu_bo_unreserve(vm->root.base.bo);
276 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400277 if (r)
Christian Königa022c542017-05-08 15:14:54 +0200278 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400279
280 r = drm_gem_handle_create(filp, gobj, &handle);
281 /* drop reference from allocate - handle holds it now */
Cihangir Akturkf62facc2017-08-03 14:58:16 +0300282 drm_gem_object_put_unlocked(gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400283 if (r)
Christian Königa022c542017-05-08 15:14:54 +0200284 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400285
286 memset(args, 0, sizeof(*args));
287 args->out.handle = handle;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400288 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400289}
290
291int amdgpu_gem_userptr_ioctl(struct drm_device *dev, void *data,
292 struct drm_file *filp)
293{
Christian König19be5572017-04-12 14:24:39 +0200294 struct ttm_operation_ctx ctx = { true, false };
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400295 struct amdgpu_device *adev = dev->dev_private;
296 struct drm_amdgpu_gem_userptr *args = data;
297 struct drm_gem_object *gobj;
298 struct amdgpu_bo *bo;
299 uint32_t handle;
300 int r;
301
302 if (offset_in_page(args->addr | args->size))
303 return -EINVAL;
304
305 /* reject unknown flag values */
306 if (args->flags & ~(AMDGPU_GEM_USERPTR_READONLY |
307 AMDGPU_GEM_USERPTR_ANONONLY | AMDGPU_GEM_USERPTR_VALIDATE |
308 AMDGPU_GEM_USERPTR_REGISTER))
309 return -EINVAL;
310
Christian König358c2582016-03-11 15:29:27 +0100311 if (!(args->flags & AMDGPU_GEM_USERPTR_READONLY) &&
312 !(args->flags & AMDGPU_GEM_USERPTR_REGISTER)) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400313
Christian König358c2582016-03-11 15:29:27 +0100314 /* if we want to write to it we must install a MMU notifier */
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400315 return -EACCES;
316 }
317
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400318 /* create a gem object to contain this object in */
Christian Könige1eb899b42017-08-25 09:14:43 +0200319 r = amdgpu_gem_object_create(adev, args->size, 0, AMDGPU_GEM_DOMAIN_CPU,
320 0, 0, NULL, &gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400321 if (r)
Christian Königa022c542017-05-08 15:14:54 +0200322 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400323
324 bo = gem_to_amdgpu_bo(gobj);
Kent Russell6d7d9c52017-08-08 07:58:01 -0400325 bo->preferred_domains = AMDGPU_GEM_DOMAIN_GTT;
Christian König1ea863f2015-12-18 22:13:12 +0100326 bo->allowed_domains = AMDGPU_GEM_DOMAIN_GTT;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400327 r = amdgpu_ttm_tt_set_userptr(bo->tbo.ttm, args->addr, args->flags);
328 if (r)
329 goto release_object;
330
331 if (args->flags & AMDGPU_GEM_USERPTR_REGISTER) {
332 r = amdgpu_mn_register(bo, args->addr);
333 if (r)
334 goto release_object;
335 }
336
337 if (args->flags & AMDGPU_GEM_USERPTR_VALIDATE) {
Christian König2f568db2016-02-23 12:36:59 +0100338 r = amdgpu_ttm_tt_get_user_pages(bo->tbo.ttm,
339 bo->tbo.ttm->pages);
340 if (r)
Xiangliang.Yud5a480b2017-10-20 17:21:40 +0800341 goto release_object;
Christian König2f568db2016-02-23 12:36:59 +0100342
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400343 r = amdgpu_bo_reserve(bo, true);
Christian König2f568db2016-02-23 12:36:59 +0100344 if (r)
345 goto free_pages;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400346
347 amdgpu_ttm_placement_from_domain(bo, AMDGPU_GEM_DOMAIN_GTT);
Christian König19be5572017-04-12 14:24:39 +0200348 r = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400349 amdgpu_bo_unreserve(bo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400350 if (r)
Christian König2f568db2016-02-23 12:36:59 +0100351 goto free_pages;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400352 }
353
354 r = drm_gem_handle_create(filp, gobj, &handle);
355 /* drop reference from allocate - handle holds it now */
Cihangir Akturkf62facc2017-08-03 14:58:16 +0300356 drm_gem_object_put_unlocked(gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400357 if (r)
Christian Königa022c542017-05-08 15:14:54 +0200358 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400359
360 args->handle = handle;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400361 return 0;
362
Christian König2f568db2016-02-23 12:36:59 +0100363free_pages:
Mel Gormanc6f92f92017-11-15 17:37:55 -0800364 release_pages(bo->tbo.ttm->pages, bo->tbo.ttm->num_pages);
Christian König2f568db2016-02-23 12:36:59 +0100365
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400366release_object:
Cihangir Akturkf62facc2017-08-03 14:58:16 +0300367 drm_gem_object_put_unlocked(gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400368
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400369 return r;
370}
371
372int amdgpu_mode_dumb_mmap(struct drm_file *filp,
373 struct drm_device *dev,
374 uint32_t handle, uint64_t *offset_p)
375{
376 struct drm_gem_object *gobj;
377 struct amdgpu_bo *robj;
378
Chris Wilsona8ad0bd2016-05-09 11:04:54 +0100379 gobj = drm_gem_object_lookup(filp, handle);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400380 if (gobj == NULL) {
381 return -ENOENT;
382 }
383 robj = gem_to_amdgpu_bo(gobj);
Christian Königcc325d12016-02-08 11:08:35 +0100384 if (amdgpu_ttm_tt_get_usermm(robj->tbo.ttm) ||
Christian König271c8122015-05-13 14:30:53 +0200385 (robj->flags & AMDGPU_GEM_CREATE_NO_CPU_ACCESS)) {
Cihangir Akturkf62facc2017-08-03 14:58:16 +0300386 drm_gem_object_put_unlocked(gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400387 return -EPERM;
388 }
389 *offset_p = amdgpu_bo_mmap_offset(robj);
Cihangir Akturkf62facc2017-08-03 14:58:16 +0300390 drm_gem_object_put_unlocked(gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400391 return 0;
392}
393
394int amdgpu_gem_mmap_ioctl(struct drm_device *dev, void *data,
395 struct drm_file *filp)
396{
397 union drm_amdgpu_gem_mmap *args = data;
398 uint32_t handle = args->in.handle;
399 memset(args, 0, sizeof(*args));
400 return amdgpu_mode_dumb_mmap(filp, dev, handle, &args->out.addr_ptr);
401}
402
403/**
404 * amdgpu_gem_timeout - calculate jiffies timeout from absolute value
405 *
406 * @timeout_ns: timeout in ns
407 *
408 * Calculate the timeout in jiffies from an absolute timeout in ns.
409 */
410unsigned long amdgpu_gem_timeout(uint64_t timeout_ns)
411{
412 unsigned long timeout_jiffies;
413 ktime_t timeout;
414
415 /* clamp timeout if it's to large */
416 if (((int64_t)timeout_ns) < 0)
417 return MAX_SCHEDULE_TIMEOUT;
418
Christian König0f117702015-07-08 16:58:48 +0200419 timeout = ktime_sub(ns_to_ktime(timeout_ns), ktime_get());
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400420 if (ktime_to_ns(timeout) < 0)
421 return 0;
422
423 timeout_jiffies = nsecs_to_jiffies(ktime_to_ns(timeout));
424 /* clamp timeout to avoid unsigned-> signed overflow */
425 if (timeout_jiffies > MAX_SCHEDULE_TIMEOUT )
426 return MAX_SCHEDULE_TIMEOUT - 1;
427
428 return timeout_jiffies;
429}
430
431int amdgpu_gem_wait_idle_ioctl(struct drm_device *dev, void *data,
432 struct drm_file *filp)
433{
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400434 union drm_amdgpu_gem_wait_idle *args = data;
435 struct drm_gem_object *gobj;
436 struct amdgpu_bo *robj;
437 uint32_t handle = args->in.handle;
438 unsigned long timeout = amdgpu_gem_timeout(args->in.timeout);
439 int r = 0;
440 long ret;
441
Chris Wilsona8ad0bd2016-05-09 11:04:54 +0100442 gobj = drm_gem_object_lookup(filp, handle);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400443 if (gobj == NULL) {
444 return -ENOENT;
445 }
446 robj = gem_to_amdgpu_bo(gobj);
Chris Wilson0fea2ed2016-08-29 08:08:24 +0100447 ret = reservation_object_wait_timeout_rcu(robj->tbo.resv, true, true,
448 timeout);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400449
450 /* ret == 0 means not signaled,
451 * ret > 0 means signaled
452 * ret < 0 means interrupted before timeout
453 */
454 if (ret >= 0) {
455 memset(args, 0, sizeof(*args));
456 args->out.status = (ret == 0);
457 } else
458 r = ret;
459
Cihangir Akturkf62facc2017-08-03 14:58:16 +0300460 drm_gem_object_put_unlocked(gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400461 return r;
462}
463
464int amdgpu_gem_metadata_ioctl(struct drm_device *dev, void *data,
465 struct drm_file *filp)
466{
467 struct drm_amdgpu_gem_metadata *args = data;
468 struct drm_gem_object *gobj;
469 struct amdgpu_bo *robj;
470 int r = -1;
471
472 DRM_DEBUG("%d \n", args->handle);
Chris Wilsona8ad0bd2016-05-09 11:04:54 +0100473 gobj = drm_gem_object_lookup(filp, args->handle);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400474 if (gobj == NULL)
475 return -ENOENT;
476 robj = gem_to_amdgpu_bo(gobj);
477
478 r = amdgpu_bo_reserve(robj, false);
479 if (unlikely(r != 0))
480 goto out;
481
482 if (args->op == AMDGPU_GEM_METADATA_OP_GET_METADATA) {
483 amdgpu_bo_get_tiling_flags(robj, &args->data.tiling_info);
484 r = amdgpu_bo_get_metadata(robj, args->data.data,
485 sizeof(args->data.data),
486 &args->data.data_size_bytes,
487 &args->data.flags);
488 } else if (args->op == AMDGPU_GEM_METADATA_OP_SET_METADATA) {
Dan Carpenter0913eab2015-09-23 14:00:35 +0300489 if (args->data.data_size_bytes > sizeof(args->data.data)) {
490 r = -EINVAL;
491 goto unreserve;
492 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400493 r = amdgpu_bo_set_tiling_flags(robj, args->data.tiling_info);
494 if (!r)
495 r = amdgpu_bo_set_metadata(robj, args->data.data,
496 args->data.data_size_bytes,
497 args->data.flags);
498 }
499
Dan Carpenter0913eab2015-09-23 14:00:35 +0300500unreserve:
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400501 amdgpu_bo_unreserve(robj);
502out:
Cihangir Akturkf62facc2017-08-03 14:58:16 +0300503 drm_gem_object_put_unlocked(gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400504 return r;
505}
506
507/**
508 * amdgpu_gem_va_update_vm -update the bo_va in its VM
509 *
510 * @adev: amdgpu_device pointer
Christian Königdc54d3d2017-03-13 10:13:38 +0100511 * @vm: vm to update
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400512 * @bo_va: bo_va to update
Christian König2ffdaaf2017-01-27 15:58:43 +0100513 * @list: validation list
Christian Königdc54d3d2017-03-13 10:13:38 +0100514 * @operation: map, unmap or clear
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400515 *
Christian König2ffdaaf2017-01-27 15:58:43 +0100516 * Update the bo_va directly after setting its address. Errors are not
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400517 * vital here, so they are not reported back to userspace.
518 */
519static void amdgpu_gem_va_update_vm(struct amdgpu_device *adev,
Christian Königdc54d3d2017-03-13 10:13:38 +0100520 struct amdgpu_vm *vm,
Christian Königf7da30d2016-09-28 12:03:04 +0200521 struct amdgpu_bo_va *bo_va,
Christian König2ffdaaf2017-01-27 15:58:43 +0100522 struct list_head *list,
Christian Königf7da30d2016-09-28 12:03:04 +0200523 uint32_t operation)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400524{
Christian König3f3333f2017-08-03 14:02:13 +0200525 int r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400526
Christian König3f3333f2017-08-03 14:02:13 +0200527 if (!amdgpu_vm_ready(vm))
528 return;
Chunming Zhoue410b5c2015-12-07 15:02:52 +0800529
Nicolai Hähnlef3467812017-03-23 19:36:31 +0100530 r = amdgpu_vm_clear_freed(adev, vm, NULL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400531 if (r)
Christian König2ffdaaf2017-01-27 15:58:43 +0100532 goto error;
monk.liu194a3362015-07-22 13:29:28 +0800533
Christian König80f95c52017-03-13 10:13:39 +0100534 if (operation == AMDGPU_VA_OP_MAP ||
Gustavo A. R. Silva93bab702018-02-14 23:20:00 -0600535 operation == AMDGPU_VA_OP_REPLACE) {
Flora Cui05dcb5c2016-09-22 11:34:47 +0800536 r = amdgpu_vm_bo_update(adev, bo_va, false);
Gustavo A. R. Silva93bab702018-02-14 23:20:00 -0600537 if (r)
538 goto error;
539 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400540
Christian König0abc6872017-09-01 20:37:57 +0200541 r = amdgpu_vm_update_directories(adev, vm);
Christian König0abc6872017-09-01 20:37:57 +0200542
Christian König2ffdaaf2017-01-27 15:58:43 +0100543error:
Christian König68fdd3d2015-06-16 14:50:02 +0200544 if (r && r != -ERESTARTSYS)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400545 DRM_ERROR("Couldn't update BO_VA (%d)\n", r);
546}
547
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400548int amdgpu_gem_va_ioctl(struct drm_device *dev, void *data,
549 struct drm_file *filp)
550{
Junwei Zhangb85891b2017-01-16 13:59:01 +0800551 const uint32_t valid_flags = AMDGPU_VM_DELAY_UPDATE |
552 AMDGPU_VM_PAGE_READABLE | AMDGPU_VM_PAGE_WRITEABLE |
Alex Xie66e02bc2017-02-14 12:04:52 -0500553 AMDGPU_VM_PAGE_EXECUTABLE | AMDGPU_VM_MTYPE_MASK;
Junwei Zhangb85891b2017-01-16 13:59:01 +0800554 const uint32_t prt_flags = AMDGPU_VM_DELAY_UPDATE |
555 AMDGPU_VM_PAGE_PRT;
556
Christian König34b5f6a2015-06-08 15:03:00 +0200557 struct drm_amdgpu_gem_va *args = data;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400558 struct drm_gem_object *gobj;
559 struct amdgpu_device *adev = dev->dev_private;
560 struct amdgpu_fpriv *fpriv = filp->driver_priv;
Christian König765e7fb2016-09-15 15:06:50 +0200561 struct amdgpu_bo *abo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400562 struct amdgpu_bo_va *bo_va;
Christian Königb88c8792016-09-28 16:33:01 +0200563 struct amdgpu_bo_list_entry vm_pd;
564 struct ttm_validate_buffer tv;
Chunming Zhou49b02b12015-11-13 14:18:38 +0800565 struct ww_acquire_ctx ticket;
Christian Könige1eb899b42017-08-25 09:14:43 +0200566 struct list_head list, duplicates;
Alex Xie54635452017-02-14 12:22:57 -0500567 uint64_t va_flags;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400568 int r = 0;
569
Christian König34b5f6a2015-06-08 15:03:00 +0200570 if (args->va_address < AMDGPU_VA_RESERVED_SIZE) {
Christian König4b7f0842017-11-13 13:58:17 +0100571 dev_dbg(&dev->pdev->dev,
Christian Königff4cd382017-11-06 15:25:37 +0100572 "va_address 0x%LX is in reserved area 0x%LX\n",
573 args->va_address, AMDGPU_VA_RESERVED_SIZE);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400574 return -EINVAL;
575 }
576
Christian Königbb7939b2017-11-06 15:37:01 +0100577 if (args->va_address >= AMDGPU_VA_HOLE_START &&
578 args->va_address < AMDGPU_VA_HOLE_END) {
579 dev_dbg(&dev->pdev->dev,
580 "va_address 0x%LX is in VA hole 0x%LX-0x%LX\n",
581 args->va_address, AMDGPU_VA_HOLE_START,
582 AMDGPU_VA_HOLE_END);
583 return -EINVAL;
584 }
585
586 args->va_address &= AMDGPU_VA_HOLE_MASK;
587
Junwei Zhangb85891b2017-01-16 13:59:01 +0800588 if ((args->flags & ~valid_flags) && (args->flags & ~prt_flags)) {
Christian König4b7f0842017-11-13 13:58:17 +0100589 dev_dbg(&dev->pdev->dev, "invalid flags combination 0x%08X\n",
Junwei Zhangb85891b2017-01-16 13:59:01 +0800590 args->flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400591 return -EINVAL;
592 }
593
Christian König34b5f6a2015-06-08 15:03:00 +0200594 switch (args->operation) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400595 case AMDGPU_VA_OP_MAP:
596 case AMDGPU_VA_OP_UNMAP:
Christian Königdc54d3d2017-03-13 10:13:38 +0100597 case AMDGPU_VA_OP_CLEAR:
Christian König80f95c52017-03-13 10:13:39 +0100598 case AMDGPU_VA_OP_REPLACE:
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400599 break;
600 default:
Christian König4b7f0842017-11-13 13:58:17 +0100601 dev_dbg(&dev->pdev->dev, "unsupported operation %d\n",
Christian König34b5f6a2015-06-08 15:03:00 +0200602 args->operation);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400603 return -EINVAL;
604 }
605
Chunming Zhou49b02b12015-11-13 14:18:38 +0800606 INIT_LIST_HEAD(&list);
Christian Könige1eb899b42017-08-25 09:14:43 +0200607 INIT_LIST_HEAD(&duplicates);
Christian Königdc54d3d2017-03-13 10:13:38 +0100608 if ((args->operation != AMDGPU_VA_OP_CLEAR) &&
609 !(args->flags & AMDGPU_VM_PAGE_PRT)) {
Junwei Zhangb85891b2017-01-16 13:59:01 +0800610 gobj = drm_gem_object_lookup(filp, args->handle);
611 if (gobj == NULL)
612 return -ENOENT;
613 abo = gem_to_amdgpu_bo(gobj);
614 tv.bo = &abo->tbo;
615 tv.shared = false;
616 list_add(&tv.head, &list);
617 } else {
618 gobj = NULL;
619 abo = NULL;
620 }
Chunming Zhou49b02b12015-11-13 14:18:38 +0800621
Christian Königb88c8792016-09-28 16:33:01 +0200622 amdgpu_vm_get_pd_bo(&fpriv->vm, &list, &vm_pd);
Christian Königb5a5ec52016-03-08 17:47:46 +0100623
Christian Könige1eb899b42017-08-25 09:14:43 +0200624 r = ttm_eu_reserve_buffers(&ticket, &list, true, &duplicates);
Junwei Zhangb85891b2017-01-16 13:59:01 +0800625 if (r)
626 goto error_unref;
Christian König34b5f6a2015-06-08 15:03:00 +0200627
Junwei Zhangb85891b2017-01-16 13:59:01 +0800628 if (abo) {
629 bo_va = amdgpu_vm_bo_find(&fpriv->vm, abo);
630 if (!bo_va) {
631 r = -ENOENT;
632 goto error_backoff;
633 }
Christian Königdc54d3d2017-03-13 10:13:38 +0100634 } else if (args->operation != AMDGPU_VA_OP_CLEAR) {
Junwei Zhangb85891b2017-01-16 13:59:01 +0800635 bo_va = fpriv->prt_va;
Christian Königdc54d3d2017-03-13 10:13:38 +0100636 } else {
637 bo_va = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400638 }
639
Christian König34b5f6a2015-06-08 15:03:00 +0200640 switch (args->operation) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400641 case AMDGPU_VA_OP_MAP:
Christian Königec681542017-08-01 10:51:43 +0200642 r = amdgpu_vm_alloc_pts(adev, bo_va->base.vm, args->va_address,
Christian König663e4572017-03-13 10:13:37 +0100643 args->map_size);
644 if (r)
645 goto error_backoff;
Alex Xie54635452017-02-14 12:22:57 -0500646
Christian König132f34e2018-01-12 15:26:08 +0100647 va_flags = amdgpu_gmc_get_pte_flags(adev, args->flags);
Christian König34b5f6a2015-06-08 15:03:00 +0200648 r = amdgpu_vm_bo_map(adev, bo_va, args->va_address,
649 args->offset_in_bo, args->map_size,
Christian König9f7eb532015-05-18 16:05:57 +0200650 va_flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400651 break;
652 case AMDGPU_VA_OP_UNMAP:
Christian König34b5f6a2015-06-08 15:03:00 +0200653 r = amdgpu_vm_bo_unmap(adev, bo_va, args->va_address);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400654 break;
Christian Königdc54d3d2017-03-13 10:13:38 +0100655
656 case AMDGPU_VA_OP_CLEAR:
657 r = amdgpu_vm_bo_clear_mappings(adev, &fpriv->vm,
658 args->va_address,
659 args->map_size);
660 break;
Christian König80f95c52017-03-13 10:13:39 +0100661 case AMDGPU_VA_OP_REPLACE:
Christian Königec681542017-08-01 10:51:43 +0200662 r = amdgpu_vm_alloc_pts(adev, bo_va->base.vm, args->va_address,
Christian König80f95c52017-03-13 10:13:39 +0100663 args->map_size);
664 if (r)
665 goto error_backoff;
666
Christian König132f34e2018-01-12 15:26:08 +0100667 va_flags = amdgpu_gmc_get_pte_flags(adev, args->flags);
Christian König80f95c52017-03-13 10:13:39 +0100668 r = amdgpu_vm_bo_replace_map(adev, bo_va, args->va_address,
669 args->offset_in_bo, args->map_size,
670 va_flags);
671 break;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400672 default:
673 break;
674 }
Junwei Zhangb85891b2017-01-16 13:59:01 +0800675 if (!r && !(args->flags & AMDGPU_VM_DELAY_UPDATE) && !amdgpu_vm_debug)
Christian Königdc54d3d2017-03-13 10:13:38 +0100676 amdgpu_gem_va_update_vm(adev, &fpriv->vm, bo_va, &list,
677 args->operation);
Junwei Zhangb85891b2017-01-16 13:59:01 +0800678
679error_backoff:
Christian König2ffdaaf2017-01-27 15:58:43 +0100680 ttm_eu_backoff_reservation(&ticket, &list);
Chunming Zhoue98c1b02015-11-13 15:22:04 +0800681
Junwei Zhangb85891b2017-01-16 13:59:01 +0800682error_unref:
Cihangir Akturkf62facc2017-08-03 14:58:16 +0300683 drm_gem_object_put_unlocked(gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400684 return r;
685}
686
687int amdgpu_gem_op_ioctl(struct drm_device *dev, void *data,
688 struct drm_file *filp)
689{
Christian Könige1eb899b42017-08-25 09:14:43 +0200690 struct amdgpu_device *adev = dev->dev_private;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400691 struct drm_amdgpu_gem_op *args = data;
692 struct drm_gem_object *gobj;
693 struct amdgpu_bo *robj;
694 int r;
695
Chris Wilsona8ad0bd2016-05-09 11:04:54 +0100696 gobj = drm_gem_object_lookup(filp, args->handle);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400697 if (gobj == NULL) {
698 return -ENOENT;
699 }
700 robj = gem_to_amdgpu_bo(gobj);
701
702 r = amdgpu_bo_reserve(robj, false);
703 if (unlikely(r))
704 goto out;
705
706 switch (args->op) {
707 case AMDGPU_GEM_OP_GET_GEM_CREATE_INFO: {
708 struct drm_amdgpu_gem_create_in info;
Christian König7ecc2452017-07-26 17:02:52 +0200709 void __user *out = u64_to_user_ptr(args->value);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400710
711 info.bo_size = robj->gem_base.size;
712 info.alignment = robj->tbo.mem.page_alignment << PAGE_SHIFT;
Kent Russell6d7d9c52017-08-08 07:58:01 -0400713 info.domains = robj->preferred_domains;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400714 info.domain_flags = robj->flags;
Christian König4c28fb02015-08-28 17:27:54 +0200715 amdgpu_bo_unreserve(robj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400716 if (copy_to_user(out, &info, sizeof(info)))
717 r = -EFAULT;
718 break;
719 }
Marek Olšákd8f65a22015-05-27 14:30:38 +0200720 case AMDGPU_GEM_OP_SET_PLACEMENT:
Christopher James Halse Rogers803d89a2017-04-03 13:31:22 +1000721 if (robj->prime_shared_count && (args->value & AMDGPU_GEM_DOMAIN_VRAM)) {
722 r = -EINVAL;
723 amdgpu_bo_unreserve(robj);
724 break;
725 }
Christian Königcc325d12016-02-08 11:08:35 +0100726 if (amdgpu_ttm_tt_get_usermm(robj->tbo.ttm)) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400727 r = -EPERM;
Christian König4c28fb02015-08-28 17:27:54 +0200728 amdgpu_bo_unreserve(robj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400729 break;
730 }
Kent Russell6d7d9c52017-08-08 07:58:01 -0400731 robj->preferred_domains = args->value & (AMDGPU_GEM_DOMAIN_VRAM |
Christian König1ea863f2015-12-18 22:13:12 +0100732 AMDGPU_GEM_DOMAIN_GTT |
733 AMDGPU_GEM_DOMAIN_CPU);
Kent Russell6d7d9c52017-08-08 07:58:01 -0400734 robj->allowed_domains = robj->preferred_domains;
Christian König1ea863f2015-12-18 22:13:12 +0100735 if (robj->allowed_domains == AMDGPU_GEM_DOMAIN_VRAM)
736 robj->allowed_domains |= AMDGPU_GEM_DOMAIN_GTT;
737
Christian Könige1eb899b42017-08-25 09:14:43 +0200738 if (robj->flags & AMDGPU_GEM_CREATE_VM_ALWAYS_VALID)
739 amdgpu_vm_bo_invalidate(adev, robj, true);
740
Christian König4c28fb02015-08-28 17:27:54 +0200741 amdgpu_bo_unreserve(robj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400742 break;
743 default:
Christian König4c28fb02015-08-28 17:27:54 +0200744 amdgpu_bo_unreserve(robj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400745 r = -EINVAL;
746 }
747
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400748out:
Cihangir Akturkf62facc2017-08-03 14:58:16 +0300749 drm_gem_object_put_unlocked(gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400750 return r;
751}
752
753int amdgpu_mode_dumb_create(struct drm_file *file_priv,
754 struct drm_device *dev,
755 struct drm_mode_create_dumb *args)
756{
757 struct amdgpu_device *adev = dev->dev_private;
758 struct drm_gem_object *gobj;
759 uint32_t handle;
Deepak Sharma84b74602018-05-25 17:12:29 -0700760 u32 domain;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400761 int r;
762
Laurent Pinchart8e911ab2016-10-18 01:41:17 +0300763 args->pitch = amdgpu_align_pitch(adev, args->width,
764 DIV_ROUND_UP(args->bpp, 8), 0);
Dan Carpenter54ef0b52015-09-23 14:00:59 +0300765 args->size = (u64)args->pitch * args->height;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400766 args->size = ALIGN(args->size, PAGE_SIZE);
Deepak Sharma84b74602018-05-25 17:12:29 -0700767 domain = amdgpu_bo_get_preferred_pin_domain(adev,
768 amdgpu_display_supported_domains(adev));
Deepak Sharmabda31a22018-05-22 15:31:23 -0700769 r = amdgpu_gem_object_create(adev, args->size, 0, domain,
Alex Deucher857d9132015-08-27 00:14:16 -0400770 AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED,
Christian Könige1eb899b42017-08-25 09:14:43 +0200771 false, NULL, &gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400772 if (r)
773 return -ENOMEM;
774
775 r = drm_gem_handle_create(file_priv, gobj, &handle);
776 /* drop reference from allocate - handle holds it now */
Cihangir Akturkf62facc2017-08-03 14:58:16 +0300777 drm_gem_object_put_unlocked(gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400778 if (r) {
779 return r;
780 }
781 args->handle = handle;
782 return 0;
783}
784
785#if defined(CONFIG_DEBUG_FS)
Christian König6b155d62018-05-11 23:14:29 +0800786
787#define amdgpu_debugfs_gem_bo_print_flag(m, bo, flag) \
788 if (bo->flags & (AMDGPU_GEM_CREATE_ ## flag)) { \
789 seq_printf((m), " " #flag); \
790 }
791
Christian König7ea23562016-02-15 15:23:00 +0100792static int amdgpu_debugfs_gem_bo_info(int id, void *ptr, void *data)
793{
794 struct drm_gem_object *gobj = ptr;
795 struct amdgpu_bo *bo = gem_to_amdgpu_bo(gobj);
796 struct seq_file *m = data;
797
Christian Königb1f223c2018-03-25 10:10:25 +0200798 struct dma_buf_attachment *attachment;
799 struct dma_buf *dma_buf;
Christian König7ea23562016-02-15 15:23:00 +0100800 unsigned domain;
801 const char *placement;
802 unsigned pin_count;
803
804 domain = amdgpu_mem_type_to_domain(bo->tbo.mem.mem_type);
805 switch (domain) {
806 case AMDGPU_GEM_DOMAIN_VRAM:
807 placement = "VRAM";
808 break;
809 case AMDGPU_GEM_DOMAIN_GTT:
810 placement = " GTT";
811 break;
812 case AMDGPU_GEM_DOMAIN_CPU:
813 default:
814 placement = " CPU";
815 break;
816 }
Christian Königb8e0e6e2017-06-26 15:19:30 +0200817 seq_printf(m, "\t0x%08x: %12ld byte %s",
818 id, amdgpu_bo_size(bo), placement);
819
Mark Rutland6aa7de02017-10-23 14:07:29 -0700820 pin_count = READ_ONCE(bo->pin_count);
Christian König7ea23562016-02-15 15:23:00 +0100821 if (pin_count)
822 seq_printf(m, " pin count %d", pin_count);
Christian Königb1f223c2018-03-25 10:10:25 +0200823
824 dma_buf = READ_ONCE(bo->gem_base.dma_buf);
825 attachment = READ_ONCE(bo->gem_base.import_attach);
826
827 if (attachment)
828 seq_printf(m, " imported from %p", dma_buf);
829 else if (dma_buf)
830 seq_printf(m, " exported as %p", dma_buf);
831
Christian König6b155d62018-05-11 23:14:29 +0800832 amdgpu_debugfs_gem_bo_print_flag(m, bo, CPU_ACCESS_REQUIRED);
833 amdgpu_debugfs_gem_bo_print_flag(m, bo, NO_CPU_ACCESS);
834 amdgpu_debugfs_gem_bo_print_flag(m, bo, CPU_GTT_USWC);
835 amdgpu_debugfs_gem_bo_print_flag(m, bo, VRAM_CLEARED);
836 amdgpu_debugfs_gem_bo_print_flag(m, bo, SHADOW);
837 amdgpu_debugfs_gem_bo_print_flag(m, bo, VRAM_CONTIGUOUS);
838 amdgpu_debugfs_gem_bo_print_flag(m, bo, VM_ALWAYS_VALID);
839 amdgpu_debugfs_gem_bo_print_flag(m, bo, EXPLICIT_SYNC);
840
Christian König7ea23562016-02-15 15:23:00 +0100841 seq_printf(m, "\n");
842
843 return 0;
844}
845
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400846static int amdgpu_debugfs_gem_info(struct seq_file *m, void *data)
847{
848 struct drm_info_node *node = (struct drm_info_node *)m->private;
849 struct drm_device *dev = node->minor->dev;
Christian König7ea23562016-02-15 15:23:00 +0100850 struct drm_file *file;
851 int r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400852
Daniel Vetter1d2ac402016-04-26 19:29:41 +0200853 r = mutex_lock_interruptible(&dev->filelist_mutex);
Christian König7ea23562016-02-15 15:23:00 +0100854 if (r)
855 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400856
Christian König7ea23562016-02-15 15:23:00 +0100857 list_for_each_entry(file, &dev->filelist, lhead) {
858 struct task_struct *task;
Christian Königb22e3ce2016-02-15 12:41:37 +0100859
Christian König7ea23562016-02-15 15:23:00 +0100860 /*
861 * Although we have a valid reference on file->pid, that does
862 * not guarantee that the task_struct who called get_pid() is
863 * still alive (e.g. get_pid(current) => fork() => exit()).
864 * Therefore, we need to protect this ->comm access using RCU.
865 */
866 rcu_read_lock();
867 task = pid_task(file->pid, PIDTYPE_PID);
868 seq_printf(m, "pid %8d command %s:\n", pid_nr(file->pid),
869 task ? task->comm : "<unknown>");
870 rcu_read_unlock();
871
872 spin_lock(&file->table_lock);
873 idr_for_each(&file->object_idr, amdgpu_debugfs_gem_bo_info, m);
874 spin_unlock(&file->table_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400875 }
Christian König7ea23562016-02-15 15:23:00 +0100876
Daniel Vetter1d2ac402016-04-26 19:29:41 +0200877 mutex_unlock(&dev->filelist_mutex);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400878 return 0;
879}
880
Nils Wallménius06ab6832016-05-02 12:46:15 -0400881static const struct drm_info_list amdgpu_debugfs_gem_list[] = {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400882 {"amdgpu_gem_info", &amdgpu_debugfs_gem_info, 0, NULL},
883};
884#endif
885
Alex Deucher75758252017-12-14 15:23:14 -0500886int amdgpu_debugfs_gem_init(struct amdgpu_device *adev)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400887{
888#if defined(CONFIG_DEBUG_FS)
889 return amdgpu_debugfs_add_files(adev, amdgpu_debugfs_gem_list, 1);
890#endif
891 return 0;
892}