blob: 2c8e27370284d53f3b4a440e637ba93759c7a49c [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"
33
34void amdgpu_gem_object_free(struct drm_gem_object *gobj)
35{
36 struct amdgpu_bo *robj = gem_to_amdgpu_bo(gobj);
37
38 if (robj) {
Christian König9298e522015-06-03 21:31:20 +020039 amdgpu_mn_unregister(robj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -040040 amdgpu_bo_unref(&robj);
41 }
42}
43
44int amdgpu_gem_object_create(struct amdgpu_device *adev, unsigned long size,
Christian Könige1eb899b42017-08-25 09:14:43 +020045 int alignment, u32 initial_domain,
Christian Königeab3de22018-03-14 14:48:17 -050046 u64 flags, enum ttm_bo_type type,
Christian Könige1eb899b42017-08-25 09:14:43 +020047 struct reservation_object *resv,
48 struct drm_gem_object **obj)
Alex Deucherd38ceaf2015-04-20 16:55:21 -040049{
Christian Könige1eb899b42017-08-25 09:14:43 +020050 struct amdgpu_bo *bo;
Chunming Zhou3216c6b2018-04-16 18:27:50 +080051 struct amdgpu_bo_param bp;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040052 int r;
53
Chunming Zhou3216c6b2018-04-16 18:27:50 +080054 memset(&bp, 0, sizeof(bp));
Alex Deucherd38ceaf2015-04-20 16:55:21 -040055 *obj = NULL;
56 /* At least align on page size */
57 if (alignment < PAGE_SIZE) {
58 alignment = PAGE_SIZE;
59 }
60
Chunming Zhou3216c6b2018-04-16 18:27:50 +080061 bp.size = size;
62 bp.byte_align = alignment;
63 bp.type = type;
64 bp.resv = resv;
Chunming Zhouaa2b2e22018-04-17 11:52:53 +080065 bp.preferred_domain = initial_domain;
Christian König08082102018-04-10 13:42:38 +020066retry:
Chunming Zhou3216c6b2018-04-16 18:27:50 +080067 bp.flags = flags;
68 bp.domain = initial_domain;
69 r = amdgpu_bo_create(adev, &bp, &bo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -040070 if (r) {
Christian König08082102018-04-10 13:42:38 +020071 if (r != -ERESTARTSYS) {
72 if (flags & AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED) {
73 flags &= ~AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED;
74 goto retry;
75 }
76
77 if (initial_domain == AMDGPU_GEM_DOMAIN_VRAM) {
78 initial_domain |= AMDGPU_GEM_DOMAIN_GTT;
79 goto retry;
80 }
81 DRM_DEBUG("Failed to allocate GEM object (%ld, %d, %u, %d)\n",
82 size, initial_domain, alignment, r);
83 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -040084 return r;
85 }
Christian Könige1eb899b42017-08-25 09:14:43 +020086 *obj = &bo->gem_base;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040087
Alex Deucherd38ceaf2015-04-20 16:55:21 -040088 return 0;
89}
90
Christian König418aa0c2016-02-15 16:59:57 +010091void amdgpu_gem_force_release(struct amdgpu_device *adev)
Alex Deucherd38ceaf2015-04-20 16:55:21 -040092{
Christian König418aa0c2016-02-15 16:59:57 +010093 struct drm_device *ddev = adev->ddev;
94 struct drm_file *file;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040095
Daniel Vetter1d2ac402016-04-26 19:29:41 +020096 mutex_lock(&ddev->filelist_mutex);
Christian König418aa0c2016-02-15 16:59:57 +010097
98 list_for_each_entry(file, &ddev->filelist, lhead) {
99 struct drm_gem_object *gobj;
100 int handle;
101
102 WARN_ONCE(1, "Still active user space clients!\n");
103 spin_lock(&file->table_lock);
104 idr_for_each_entry(&file->object_idr, gobj, handle) {
105 WARN_ONCE(1, "And also active allocations!\n");
Cihangir Akturkf62facc2017-08-03 14:58:16 +0300106 drm_gem_object_put_unlocked(gobj);
Christian König418aa0c2016-02-15 16:59:57 +0100107 }
108 idr_destroy(&file->object_idr);
109 spin_unlock(&file->table_lock);
110 }
111
Daniel Vetter1d2ac402016-04-26 19:29:41 +0200112 mutex_unlock(&ddev->filelist_mutex);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400113}
114
115/*
116 * Call from drm_gem_handle_create which appear in both new and open ioctl
117 * case.
118 */
Christian Königa7d64de2016-09-15 14:58:48 +0200119int amdgpu_gem_object_open(struct drm_gem_object *obj,
120 struct drm_file *file_priv)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400121{
Christian König765e7fb2016-09-15 15:06:50 +0200122 struct amdgpu_bo *abo = gem_to_amdgpu_bo(obj);
Christian Königa7d64de2016-09-15 14:58:48 +0200123 struct amdgpu_device *adev = amdgpu_ttm_adev(abo->tbo.bdev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400124 struct amdgpu_fpriv *fpriv = file_priv->driver_priv;
125 struct amdgpu_vm *vm = &fpriv->vm;
126 struct amdgpu_bo_va *bo_va;
Christian König4f5839c2017-08-29 16:07:31 +0200127 struct mm_struct *mm;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400128 int r;
Christian König4f5839c2017-08-29 16:07:31 +0200129
130 mm = amdgpu_ttm_tt_get_usermm(abo->tbo.ttm);
131 if (mm && mm != current->mm)
132 return -EPERM;
133
Christian Könige1eb899b42017-08-25 09:14:43 +0200134 if (abo->flags & AMDGPU_GEM_CREATE_VM_ALWAYS_VALID &&
135 abo->tbo.resv != vm->root.base.bo->tbo.resv)
136 return -EPERM;
137
Christian König765e7fb2016-09-15 15:06:50 +0200138 r = amdgpu_bo_reserve(abo, false);
Chunming Zhoue98c1b02015-11-13 15:22:04 +0800139 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400140 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400141
Christian König765e7fb2016-09-15 15:06:50 +0200142 bo_va = amdgpu_vm_bo_find(vm, abo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400143 if (!bo_va) {
Christian König765e7fb2016-09-15 15:06:50 +0200144 bo_va = amdgpu_vm_bo_add(adev, vm, abo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400145 } else {
146 ++bo_va->ref_count;
147 }
Christian König765e7fb2016-09-15 15:06:50 +0200148 amdgpu_bo_unreserve(abo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400149 return 0;
150}
151
152void amdgpu_gem_object_close(struct drm_gem_object *obj,
153 struct drm_file *file_priv)
154{
Christian Königb5a5ec52016-03-08 17:47:46 +0100155 struct amdgpu_bo *bo = gem_to_amdgpu_bo(obj);
Christian Königa7d64de2016-09-15 14:58:48 +0200156 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400157 struct amdgpu_fpriv *fpriv = file_priv->driver_priv;
158 struct amdgpu_vm *vm = &fpriv->vm;
Christian Königb5a5ec52016-03-08 17:47:46 +0100159
160 struct amdgpu_bo_list_entry vm_pd;
Christian Könige1eb899b42017-08-25 09:14:43 +0200161 struct list_head list, duplicates;
Christian Königb5a5ec52016-03-08 17:47:46 +0100162 struct ttm_validate_buffer tv;
163 struct ww_acquire_ctx ticket;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400164 struct amdgpu_bo_va *bo_va;
165 int r;
Christian Königb5a5ec52016-03-08 17:47:46 +0100166
167 INIT_LIST_HEAD(&list);
Christian Könige1eb899b42017-08-25 09:14:43 +0200168 INIT_LIST_HEAD(&duplicates);
Christian Königb5a5ec52016-03-08 17:47:46 +0100169
170 tv.bo = &bo->tbo;
171 tv.shared = true;
172 list_add(&tv.head, &list);
173
174 amdgpu_vm_get_pd_bo(vm, &list, &vm_pd);
175
Christian Könige1eb899b42017-08-25 09:14:43 +0200176 r = ttm_eu_reserve_buffers(&ticket, &list, false, &duplicates);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400177 if (r) {
178 dev_err(adev->dev, "leaking bo va because "
179 "we fail to reserve bo (%d)\n", r);
180 return;
181 }
Christian Königb5a5ec52016-03-08 17:47:46 +0100182 bo_va = amdgpu_vm_bo_find(vm, bo);
Christian König5a0f3b52017-04-21 10:05:56 +0200183 if (bo_va && --bo_va->ref_count == 0) {
184 amdgpu_vm_bo_rmv(adev, bo_va);
185
Christian König3f3333f2017-08-03 14:02:13 +0200186 if (amdgpu_vm_ready(vm)) {
Christian König5a0f3b52017-04-21 10:05:56 +0200187 struct dma_fence *fence = NULL;
Nicolai Hähnle23e05632017-03-23 19:34:11 +0100188
189 r = amdgpu_vm_clear_freed(adev, vm, &fence);
190 if (unlikely(r)) {
191 dev_err(adev->dev, "failed to clear page "
192 "tables on GEM object close (%d)\n", r);
193 }
194
195 if (fence) {
196 amdgpu_bo_fence(bo, fence, true);
197 dma_fence_put(fence);
198 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400199 }
200 }
Christian Königb5a5ec52016-03-08 17:47:46 +0100201 ttm_eu_backoff_reservation(&ticket, &list);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400202}
203
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400204/*
205 * GEM ioctls.
206 */
207int amdgpu_gem_create_ioctl(struct drm_device *dev, void *data,
208 struct drm_file *filp)
209{
210 struct amdgpu_device *adev = dev->dev_private;
Christian Könige1eb899b42017-08-25 09:14:43 +0200211 struct amdgpu_fpriv *fpriv = filp->driver_priv;
212 struct amdgpu_vm *vm = &fpriv->vm;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400213 union drm_amdgpu_gem_create *args = data;
Christian König6ac7def2017-08-23 20:11:25 +0200214 uint64_t flags = args->in.domain_flags;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400215 uint64_t size = args->in.bo_size;
Christian Könige1eb899b42017-08-25 09:14:43 +0200216 struct reservation_object *resv = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400217 struct drm_gem_object *gobj;
218 uint32_t handle;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400219 int r;
220
Alex Deucher834e0f82017-03-08 17:40:17 -0500221 /* reject invalid gem flags */
Christian König6ac7def2017-08-23 20:11:25 +0200222 if (flags & ~(AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED |
223 AMDGPU_GEM_CREATE_NO_CPU_ACCESS |
224 AMDGPU_GEM_CREATE_CPU_GTT_USWC |
Christian Könige1eb899b42017-08-25 09:14:43 +0200225 AMDGPU_GEM_CREATE_VRAM_CLEARED |
Andres Rodriguez177ae092017-09-15 20:44:06 -0400226 AMDGPU_GEM_CREATE_VM_ALWAYS_VALID |
227 AMDGPU_GEM_CREATE_EXPLICIT_SYNC))
228
Christian Königa022c542017-05-08 15:14:54 +0200229 return -EINVAL;
230
Alex Deucher834e0f82017-03-08 17:40:17 -0500231 /* reject invalid gem domains */
Chunming Zhou3f188452018-04-17 18:34:40 +0800232 if (args->in.domains & ~AMDGPU_GEM_DOMAIN_MASK)
Christian Königa022c542017-05-08 15:14:54 +0200233 return -EINVAL;
Alex Deucher834e0f82017-03-08 17:40:17 -0500234
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400235 /* create a gem object to contain this object in */
236 if (args->in.domains & (AMDGPU_GEM_DOMAIN_GDS |
237 AMDGPU_GEM_DOMAIN_GWS | AMDGPU_GEM_DOMAIN_OA)) {
Christian König6ac7def2017-08-23 20:11:25 +0200238 flags |= AMDGPU_GEM_CREATE_NO_CPU_ACCESS;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400239 if (args->in.domains == AMDGPU_GEM_DOMAIN_GDS)
240 size = size << AMDGPU_GDS_SHIFT;
241 else if (args->in.domains == AMDGPU_GEM_DOMAIN_GWS)
242 size = size << AMDGPU_GWS_SHIFT;
243 else if (args->in.domains == AMDGPU_GEM_DOMAIN_OA)
244 size = size << AMDGPU_OA_SHIFT;
Christian Königa022c542017-05-08 15:14:54 +0200245 else
246 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400247 }
248 size = roundup(size, PAGE_SIZE);
249
Christian Könige1eb899b42017-08-25 09:14:43 +0200250 if (flags & AMDGPU_GEM_CREATE_VM_ALWAYS_VALID) {
251 r = amdgpu_bo_reserve(vm->root.base.bo, false);
252 if (r)
253 return r;
254
255 resv = vm->root.base.bo->tbo.resv;
256 }
257
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400258 r = amdgpu_gem_object_create(adev, size, args->in.alignment,
259 (u32)(0xffffffff & args->in.domains),
Christian Könige1eb899b42017-08-25 09:14:43 +0200260 flags, false, resv, &gobj);
261 if (flags & AMDGPU_GEM_CREATE_VM_ALWAYS_VALID) {
262 if (!r) {
263 struct amdgpu_bo *abo = gem_to_amdgpu_bo(gobj);
264
265 abo->parent = amdgpu_bo_ref(vm->root.base.bo);
266 }
267 amdgpu_bo_unreserve(vm->root.base.bo);
268 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400269 if (r)
Christian Königa022c542017-05-08 15:14:54 +0200270 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400271
272 r = drm_gem_handle_create(filp, gobj, &handle);
273 /* drop reference from allocate - handle holds it now */
Cihangir Akturkf62facc2017-08-03 14:58:16 +0300274 drm_gem_object_put_unlocked(gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400275 if (r)
Christian Königa022c542017-05-08 15:14:54 +0200276 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400277
278 memset(args, 0, sizeof(*args));
279 args->out.handle = handle;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400280 return 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400281}
282
283int amdgpu_gem_userptr_ioctl(struct drm_device *dev, void *data,
284 struct drm_file *filp)
285{
Christian König19be5572017-04-12 14:24:39 +0200286 struct ttm_operation_ctx ctx = { true, false };
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400287 struct amdgpu_device *adev = dev->dev_private;
288 struct drm_amdgpu_gem_userptr *args = data;
289 struct drm_gem_object *gobj;
290 struct amdgpu_bo *bo;
291 uint32_t handle;
292 int r;
293
294 if (offset_in_page(args->addr | args->size))
295 return -EINVAL;
296
297 /* reject unknown flag values */
298 if (args->flags & ~(AMDGPU_GEM_USERPTR_READONLY |
299 AMDGPU_GEM_USERPTR_ANONONLY | AMDGPU_GEM_USERPTR_VALIDATE |
300 AMDGPU_GEM_USERPTR_REGISTER))
301 return -EINVAL;
302
Christian König358c2582016-03-11 15:29:27 +0100303 if (!(args->flags & AMDGPU_GEM_USERPTR_READONLY) &&
304 !(args->flags & AMDGPU_GEM_USERPTR_REGISTER)) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400305
Christian König358c2582016-03-11 15:29:27 +0100306 /* if we want to write to it we must install a MMU notifier */
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400307 return -EACCES;
308 }
309
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400310 /* create a gem object to contain this object in */
Christian Könige1eb899b42017-08-25 09:14:43 +0200311 r = amdgpu_gem_object_create(adev, args->size, 0, AMDGPU_GEM_DOMAIN_CPU,
312 0, 0, NULL, &gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400313 if (r)
Christian Königa022c542017-05-08 15:14:54 +0200314 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400315
316 bo = gem_to_amdgpu_bo(gobj);
Kent Russell6d7d9c52017-08-08 07:58:01 -0400317 bo->preferred_domains = AMDGPU_GEM_DOMAIN_GTT;
Christian König1ea863f2015-12-18 22:13:12 +0100318 bo->allowed_domains = AMDGPU_GEM_DOMAIN_GTT;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400319 r = amdgpu_ttm_tt_set_userptr(bo->tbo.ttm, args->addr, args->flags);
320 if (r)
321 goto release_object;
322
323 if (args->flags & AMDGPU_GEM_USERPTR_REGISTER) {
324 r = amdgpu_mn_register(bo, args->addr);
325 if (r)
326 goto release_object;
327 }
328
329 if (args->flags & AMDGPU_GEM_USERPTR_VALIDATE) {
Christian König2f568db2016-02-23 12:36:59 +0100330 r = amdgpu_ttm_tt_get_user_pages(bo->tbo.ttm,
331 bo->tbo.ttm->pages);
332 if (r)
Xiangliang.Yud5a480b2017-10-20 17:21:40 +0800333 goto release_object;
Christian König2f568db2016-02-23 12:36:59 +0100334
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400335 r = amdgpu_bo_reserve(bo, true);
Christian König2f568db2016-02-23 12:36:59 +0100336 if (r)
337 goto free_pages;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400338
339 amdgpu_ttm_placement_from_domain(bo, AMDGPU_GEM_DOMAIN_GTT);
Christian König19be5572017-04-12 14:24:39 +0200340 r = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400341 amdgpu_bo_unreserve(bo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400342 if (r)
Christian König2f568db2016-02-23 12:36:59 +0100343 goto free_pages;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400344 }
345
346 r = drm_gem_handle_create(filp, gobj, &handle);
347 /* drop reference from allocate - handle holds it now */
Cihangir Akturkf62facc2017-08-03 14:58:16 +0300348 drm_gem_object_put_unlocked(gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400349 if (r)
Christian Königa022c542017-05-08 15:14:54 +0200350 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400351
352 args->handle = handle;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400353 return 0;
354
Christian König2f568db2016-02-23 12:36:59 +0100355free_pages:
Mel Gormanc6f92f92017-11-15 17:37:55 -0800356 release_pages(bo->tbo.ttm->pages, bo->tbo.ttm->num_pages);
Christian König2f568db2016-02-23 12:36:59 +0100357
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400358release_object:
Cihangir Akturkf62facc2017-08-03 14:58:16 +0300359 drm_gem_object_put_unlocked(gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400360
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400361 return r;
362}
363
364int amdgpu_mode_dumb_mmap(struct drm_file *filp,
365 struct drm_device *dev,
366 uint32_t handle, uint64_t *offset_p)
367{
368 struct drm_gem_object *gobj;
369 struct amdgpu_bo *robj;
370
Chris Wilsona8ad0bd2016-05-09 11:04:54 +0100371 gobj = drm_gem_object_lookup(filp, handle);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400372 if (gobj == NULL) {
373 return -ENOENT;
374 }
375 robj = gem_to_amdgpu_bo(gobj);
Christian Königcc325d12016-02-08 11:08:35 +0100376 if (amdgpu_ttm_tt_get_usermm(robj->tbo.ttm) ||
Christian König271c8122015-05-13 14:30:53 +0200377 (robj->flags & AMDGPU_GEM_CREATE_NO_CPU_ACCESS)) {
Cihangir Akturkf62facc2017-08-03 14:58:16 +0300378 drm_gem_object_put_unlocked(gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400379 return -EPERM;
380 }
381 *offset_p = amdgpu_bo_mmap_offset(robj);
Cihangir Akturkf62facc2017-08-03 14:58:16 +0300382 drm_gem_object_put_unlocked(gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400383 return 0;
384}
385
386int amdgpu_gem_mmap_ioctl(struct drm_device *dev, void *data,
387 struct drm_file *filp)
388{
389 union drm_amdgpu_gem_mmap *args = data;
390 uint32_t handle = args->in.handle;
391 memset(args, 0, sizeof(*args));
392 return amdgpu_mode_dumb_mmap(filp, dev, handle, &args->out.addr_ptr);
393}
394
395/**
396 * amdgpu_gem_timeout - calculate jiffies timeout from absolute value
397 *
398 * @timeout_ns: timeout in ns
399 *
400 * Calculate the timeout in jiffies from an absolute timeout in ns.
401 */
402unsigned long amdgpu_gem_timeout(uint64_t timeout_ns)
403{
404 unsigned long timeout_jiffies;
405 ktime_t timeout;
406
407 /* clamp timeout if it's to large */
408 if (((int64_t)timeout_ns) < 0)
409 return MAX_SCHEDULE_TIMEOUT;
410
Christian König0f117702015-07-08 16:58:48 +0200411 timeout = ktime_sub(ns_to_ktime(timeout_ns), ktime_get());
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400412 if (ktime_to_ns(timeout) < 0)
413 return 0;
414
415 timeout_jiffies = nsecs_to_jiffies(ktime_to_ns(timeout));
416 /* clamp timeout to avoid unsigned-> signed overflow */
417 if (timeout_jiffies > MAX_SCHEDULE_TIMEOUT )
418 return MAX_SCHEDULE_TIMEOUT - 1;
419
420 return timeout_jiffies;
421}
422
423int amdgpu_gem_wait_idle_ioctl(struct drm_device *dev, void *data,
424 struct drm_file *filp)
425{
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400426 union drm_amdgpu_gem_wait_idle *args = data;
427 struct drm_gem_object *gobj;
428 struct amdgpu_bo *robj;
429 uint32_t handle = args->in.handle;
430 unsigned long timeout = amdgpu_gem_timeout(args->in.timeout);
431 int r = 0;
432 long ret;
433
Chris Wilsona8ad0bd2016-05-09 11:04:54 +0100434 gobj = drm_gem_object_lookup(filp, handle);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400435 if (gobj == NULL) {
436 return -ENOENT;
437 }
438 robj = gem_to_amdgpu_bo(gobj);
Chris Wilson0fea2ed2016-08-29 08:08:24 +0100439 ret = reservation_object_wait_timeout_rcu(robj->tbo.resv, true, true,
440 timeout);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400441
442 /* ret == 0 means not signaled,
443 * ret > 0 means signaled
444 * ret < 0 means interrupted before timeout
445 */
446 if (ret >= 0) {
447 memset(args, 0, sizeof(*args));
448 args->out.status = (ret == 0);
449 } else
450 r = ret;
451
Cihangir Akturkf62facc2017-08-03 14:58:16 +0300452 drm_gem_object_put_unlocked(gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400453 return r;
454}
455
456int amdgpu_gem_metadata_ioctl(struct drm_device *dev, void *data,
457 struct drm_file *filp)
458{
459 struct drm_amdgpu_gem_metadata *args = data;
460 struct drm_gem_object *gobj;
461 struct amdgpu_bo *robj;
462 int r = -1;
463
464 DRM_DEBUG("%d \n", args->handle);
Chris Wilsona8ad0bd2016-05-09 11:04:54 +0100465 gobj = drm_gem_object_lookup(filp, args->handle);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400466 if (gobj == NULL)
467 return -ENOENT;
468 robj = gem_to_amdgpu_bo(gobj);
469
470 r = amdgpu_bo_reserve(robj, false);
471 if (unlikely(r != 0))
472 goto out;
473
474 if (args->op == AMDGPU_GEM_METADATA_OP_GET_METADATA) {
475 amdgpu_bo_get_tiling_flags(robj, &args->data.tiling_info);
476 r = amdgpu_bo_get_metadata(robj, args->data.data,
477 sizeof(args->data.data),
478 &args->data.data_size_bytes,
479 &args->data.flags);
480 } else if (args->op == AMDGPU_GEM_METADATA_OP_SET_METADATA) {
Dan Carpenter0913eab2015-09-23 14:00:35 +0300481 if (args->data.data_size_bytes > sizeof(args->data.data)) {
482 r = -EINVAL;
483 goto unreserve;
484 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400485 r = amdgpu_bo_set_tiling_flags(robj, args->data.tiling_info);
486 if (!r)
487 r = amdgpu_bo_set_metadata(robj, args->data.data,
488 args->data.data_size_bytes,
489 args->data.flags);
490 }
491
Dan Carpenter0913eab2015-09-23 14:00:35 +0300492unreserve:
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400493 amdgpu_bo_unreserve(robj);
494out:
Cihangir Akturkf62facc2017-08-03 14:58:16 +0300495 drm_gem_object_put_unlocked(gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400496 return r;
497}
498
499/**
500 * amdgpu_gem_va_update_vm -update the bo_va in its VM
501 *
502 * @adev: amdgpu_device pointer
Christian Königdc54d3d2017-03-13 10:13:38 +0100503 * @vm: vm to update
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400504 * @bo_va: bo_va to update
Christian König2ffdaaf2017-01-27 15:58:43 +0100505 * @list: validation list
Christian Königdc54d3d2017-03-13 10:13:38 +0100506 * @operation: map, unmap or clear
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400507 *
Christian König2ffdaaf2017-01-27 15:58:43 +0100508 * Update the bo_va directly after setting its address. Errors are not
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400509 * vital here, so they are not reported back to userspace.
510 */
511static void amdgpu_gem_va_update_vm(struct amdgpu_device *adev,
Christian Königdc54d3d2017-03-13 10:13:38 +0100512 struct amdgpu_vm *vm,
Christian Königf7da30d2016-09-28 12:03:04 +0200513 struct amdgpu_bo_va *bo_va,
Christian König2ffdaaf2017-01-27 15:58:43 +0100514 struct list_head *list,
Christian Königf7da30d2016-09-28 12:03:04 +0200515 uint32_t operation)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400516{
Christian König3f3333f2017-08-03 14:02:13 +0200517 int r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400518
Christian König3f3333f2017-08-03 14:02:13 +0200519 if (!amdgpu_vm_ready(vm))
520 return;
Chunming Zhoue410b5c2015-12-07 15:02:52 +0800521
Nicolai Hähnlef3467812017-03-23 19:36:31 +0100522 r = amdgpu_vm_clear_freed(adev, vm, NULL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400523 if (r)
Christian König2ffdaaf2017-01-27 15:58:43 +0100524 goto error;
monk.liu194a3362015-07-22 13:29:28 +0800525
Christian König80f95c52017-03-13 10:13:39 +0100526 if (operation == AMDGPU_VA_OP_MAP ||
Gustavo A. R. Silva93bab702018-02-14 23:20:00 -0600527 operation == AMDGPU_VA_OP_REPLACE) {
Flora Cui05dcb5c2016-09-22 11:34:47 +0800528 r = amdgpu_vm_bo_update(adev, bo_va, false);
Gustavo A. R. Silva93bab702018-02-14 23:20:00 -0600529 if (r)
530 goto error;
531 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400532
Christian König0abc6872017-09-01 20:37:57 +0200533 r = amdgpu_vm_update_directories(adev, vm);
Christian König0abc6872017-09-01 20:37:57 +0200534
Christian König2ffdaaf2017-01-27 15:58:43 +0100535error:
Christian König68fdd3d2015-06-16 14:50:02 +0200536 if (r && r != -ERESTARTSYS)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400537 DRM_ERROR("Couldn't update BO_VA (%d)\n", r);
538}
539
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400540int amdgpu_gem_va_ioctl(struct drm_device *dev, void *data,
541 struct drm_file *filp)
542{
Junwei Zhangb85891b2017-01-16 13:59:01 +0800543 const uint32_t valid_flags = AMDGPU_VM_DELAY_UPDATE |
544 AMDGPU_VM_PAGE_READABLE | AMDGPU_VM_PAGE_WRITEABLE |
Alex Xie66e02bc2017-02-14 12:04:52 -0500545 AMDGPU_VM_PAGE_EXECUTABLE | AMDGPU_VM_MTYPE_MASK;
Junwei Zhangb85891b2017-01-16 13:59:01 +0800546 const uint32_t prt_flags = AMDGPU_VM_DELAY_UPDATE |
547 AMDGPU_VM_PAGE_PRT;
548
Christian König34b5f6a2015-06-08 15:03:00 +0200549 struct drm_amdgpu_gem_va *args = data;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400550 struct drm_gem_object *gobj;
551 struct amdgpu_device *adev = dev->dev_private;
552 struct amdgpu_fpriv *fpriv = filp->driver_priv;
Christian König765e7fb2016-09-15 15:06:50 +0200553 struct amdgpu_bo *abo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400554 struct amdgpu_bo_va *bo_va;
Christian Königb88c8792016-09-28 16:33:01 +0200555 struct amdgpu_bo_list_entry vm_pd;
556 struct ttm_validate_buffer tv;
Chunming Zhou49b02b12015-11-13 14:18:38 +0800557 struct ww_acquire_ctx ticket;
Christian Könige1eb899b42017-08-25 09:14:43 +0200558 struct list_head list, duplicates;
Alex Xie54635452017-02-14 12:22:57 -0500559 uint64_t va_flags;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400560 int r = 0;
561
Christian König34b5f6a2015-06-08 15:03:00 +0200562 if (args->va_address < AMDGPU_VA_RESERVED_SIZE) {
Christian König4b7f0842017-11-13 13:58:17 +0100563 dev_dbg(&dev->pdev->dev,
Christian Königff4cd382017-11-06 15:25:37 +0100564 "va_address 0x%LX is in reserved area 0x%LX\n",
565 args->va_address, AMDGPU_VA_RESERVED_SIZE);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400566 return -EINVAL;
567 }
568
Christian Königbb7939b2017-11-06 15:37:01 +0100569 if (args->va_address >= AMDGPU_VA_HOLE_START &&
570 args->va_address < AMDGPU_VA_HOLE_END) {
571 dev_dbg(&dev->pdev->dev,
572 "va_address 0x%LX is in VA hole 0x%LX-0x%LX\n",
573 args->va_address, AMDGPU_VA_HOLE_START,
574 AMDGPU_VA_HOLE_END);
575 return -EINVAL;
576 }
577
578 args->va_address &= AMDGPU_VA_HOLE_MASK;
579
Junwei Zhangb85891b2017-01-16 13:59:01 +0800580 if ((args->flags & ~valid_flags) && (args->flags & ~prt_flags)) {
Christian König4b7f0842017-11-13 13:58:17 +0100581 dev_dbg(&dev->pdev->dev, "invalid flags combination 0x%08X\n",
Junwei Zhangb85891b2017-01-16 13:59:01 +0800582 args->flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400583 return -EINVAL;
584 }
585
Christian König34b5f6a2015-06-08 15:03:00 +0200586 switch (args->operation) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400587 case AMDGPU_VA_OP_MAP:
588 case AMDGPU_VA_OP_UNMAP:
Christian Königdc54d3d2017-03-13 10:13:38 +0100589 case AMDGPU_VA_OP_CLEAR:
Christian König80f95c52017-03-13 10:13:39 +0100590 case AMDGPU_VA_OP_REPLACE:
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400591 break;
592 default:
Christian König4b7f0842017-11-13 13:58:17 +0100593 dev_dbg(&dev->pdev->dev, "unsupported operation %d\n",
Christian König34b5f6a2015-06-08 15:03:00 +0200594 args->operation);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400595 return -EINVAL;
596 }
597
Chunming Zhou49b02b12015-11-13 14:18:38 +0800598 INIT_LIST_HEAD(&list);
Christian Könige1eb899b42017-08-25 09:14:43 +0200599 INIT_LIST_HEAD(&duplicates);
Christian Königdc54d3d2017-03-13 10:13:38 +0100600 if ((args->operation != AMDGPU_VA_OP_CLEAR) &&
601 !(args->flags & AMDGPU_VM_PAGE_PRT)) {
Junwei Zhangb85891b2017-01-16 13:59:01 +0800602 gobj = drm_gem_object_lookup(filp, args->handle);
603 if (gobj == NULL)
604 return -ENOENT;
605 abo = gem_to_amdgpu_bo(gobj);
606 tv.bo = &abo->tbo;
607 tv.shared = false;
608 list_add(&tv.head, &list);
609 } else {
610 gobj = NULL;
611 abo = NULL;
612 }
Chunming Zhou49b02b12015-11-13 14:18:38 +0800613
Christian Königb88c8792016-09-28 16:33:01 +0200614 amdgpu_vm_get_pd_bo(&fpriv->vm, &list, &vm_pd);
Christian Königb5a5ec52016-03-08 17:47:46 +0100615
Christian Könige1eb899b42017-08-25 09:14:43 +0200616 r = ttm_eu_reserve_buffers(&ticket, &list, true, &duplicates);
Junwei Zhangb85891b2017-01-16 13:59:01 +0800617 if (r)
618 goto error_unref;
Christian König34b5f6a2015-06-08 15:03:00 +0200619
Junwei Zhangb85891b2017-01-16 13:59:01 +0800620 if (abo) {
621 bo_va = amdgpu_vm_bo_find(&fpriv->vm, abo);
622 if (!bo_va) {
623 r = -ENOENT;
624 goto error_backoff;
625 }
Christian Königdc54d3d2017-03-13 10:13:38 +0100626 } else if (args->operation != AMDGPU_VA_OP_CLEAR) {
Junwei Zhangb85891b2017-01-16 13:59:01 +0800627 bo_va = fpriv->prt_va;
Christian Königdc54d3d2017-03-13 10:13:38 +0100628 } else {
629 bo_va = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400630 }
631
Christian König34b5f6a2015-06-08 15:03:00 +0200632 switch (args->operation) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400633 case AMDGPU_VA_OP_MAP:
Christian Königec681542017-08-01 10:51:43 +0200634 r = amdgpu_vm_alloc_pts(adev, bo_va->base.vm, args->va_address,
Christian König663e4572017-03-13 10:13:37 +0100635 args->map_size);
636 if (r)
637 goto error_backoff;
Alex Xie54635452017-02-14 12:22:57 -0500638
Christian König132f34e2018-01-12 15:26:08 +0100639 va_flags = amdgpu_gmc_get_pte_flags(adev, args->flags);
Christian König34b5f6a2015-06-08 15:03:00 +0200640 r = amdgpu_vm_bo_map(adev, bo_va, args->va_address,
641 args->offset_in_bo, args->map_size,
Christian König9f7eb532015-05-18 16:05:57 +0200642 va_flags);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400643 break;
644 case AMDGPU_VA_OP_UNMAP:
Christian König34b5f6a2015-06-08 15:03:00 +0200645 r = amdgpu_vm_bo_unmap(adev, bo_va, args->va_address);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400646 break;
Christian Königdc54d3d2017-03-13 10:13:38 +0100647
648 case AMDGPU_VA_OP_CLEAR:
649 r = amdgpu_vm_bo_clear_mappings(adev, &fpriv->vm,
650 args->va_address,
651 args->map_size);
652 break;
Christian König80f95c52017-03-13 10:13:39 +0100653 case AMDGPU_VA_OP_REPLACE:
Christian Königec681542017-08-01 10:51:43 +0200654 r = amdgpu_vm_alloc_pts(adev, bo_va->base.vm, args->va_address,
Christian König80f95c52017-03-13 10:13:39 +0100655 args->map_size);
656 if (r)
657 goto error_backoff;
658
Christian König132f34e2018-01-12 15:26:08 +0100659 va_flags = amdgpu_gmc_get_pte_flags(adev, args->flags);
Christian König80f95c52017-03-13 10:13:39 +0100660 r = amdgpu_vm_bo_replace_map(adev, bo_va, args->va_address,
661 args->offset_in_bo, args->map_size,
662 va_flags);
663 break;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400664 default:
665 break;
666 }
Junwei Zhangb85891b2017-01-16 13:59:01 +0800667 if (!r && !(args->flags & AMDGPU_VM_DELAY_UPDATE) && !amdgpu_vm_debug)
Christian Königdc54d3d2017-03-13 10:13:38 +0100668 amdgpu_gem_va_update_vm(adev, &fpriv->vm, bo_va, &list,
669 args->operation);
Junwei Zhangb85891b2017-01-16 13:59:01 +0800670
671error_backoff:
Christian König2ffdaaf2017-01-27 15:58:43 +0100672 ttm_eu_backoff_reservation(&ticket, &list);
Chunming Zhoue98c1b02015-11-13 15:22:04 +0800673
Junwei Zhangb85891b2017-01-16 13:59:01 +0800674error_unref:
Cihangir Akturkf62facc2017-08-03 14:58:16 +0300675 drm_gem_object_put_unlocked(gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400676 return r;
677}
678
679int amdgpu_gem_op_ioctl(struct drm_device *dev, void *data,
680 struct drm_file *filp)
681{
Christian Könige1eb899b42017-08-25 09:14:43 +0200682 struct amdgpu_device *adev = dev->dev_private;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400683 struct drm_amdgpu_gem_op *args = data;
684 struct drm_gem_object *gobj;
685 struct amdgpu_bo *robj;
686 int r;
687
Chris Wilsona8ad0bd2016-05-09 11:04:54 +0100688 gobj = drm_gem_object_lookup(filp, args->handle);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400689 if (gobj == NULL) {
690 return -ENOENT;
691 }
692 robj = gem_to_amdgpu_bo(gobj);
693
694 r = amdgpu_bo_reserve(robj, false);
695 if (unlikely(r))
696 goto out;
697
698 switch (args->op) {
699 case AMDGPU_GEM_OP_GET_GEM_CREATE_INFO: {
700 struct drm_amdgpu_gem_create_in info;
Christian König7ecc2452017-07-26 17:02:52 +0200701 void __user *out = u64_to_user_ptr(args->value);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400702
703 info.bo_size = robj->gem_base.size;
704 info.alignment = robj->tbo.mem.page_alignment << PAGE_SHIFT;
Kent Russell6d7d9c52017-08-08 07:58:01 -0400705 info.domains = robj->preferred_domains;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400706 info.domain_flags = robj->flags;
Christian König4c28fb02015-08-28 17:27:54 +0200707 amdgpu_bo_unreserve(robj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400708 if (copy_to_user(out, &info, sizeof(info)))
709 r = -EFAULT;
710 break;
711 }
Marek Olšákd8f65a22015-05-27 14:30:38 +0200712 case AMDGPU_GEM_OP_SET_PLACEMENT:
Christopher James Halse Rogers803d89a2017-04-03 13:31:22 +1000713 if (robj->prime_shared_count && (args->value & AMDGPU_GEM_DOMAIN_VRAM)) {
714 r = -EINVAL;
715 amdgpu_bo_unreserve(robj);
716 break;
717 }
Christian Königcc325d12016-02-08 11:08:35 +0100718 if (amdgpu_ttm_tt_get_usermm(robj->tbo.ttm)) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400719 r = -EPERM;
Christian König4c28fb02015-08-28 17:27:54 +0200720 amdgpu_bo_unreserve(robj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400721 break;
722 }
Kent Russell6d7d9c52017-08-08 07:58:01 -0400723 robj->preferred_domains = args->value & (AMDGPU_GEM_DOMAIN_VRAM |
Christian König1ea863f2015-12-18 22:13:12 +0100724 AMDGPU_GEM_DOMAIN_GTT |
725 AMDGPU_GEM_DOMAIN_CPU);
Kent Russell6d7d9c52017-08-08 07:58:01 -0400726 robj->allowed_domains = robj->preferred_domains;
Christian König1ea863f2015-12-18 22:13:12 +0100727 if (robj->allowed_domains == AMDGPU_GEM_DOMAIN_VRAM)
728 robj->allowed_domains |= AMDGPU_GEM_DOMAIN_GTT;
729
Christian Könige1eb899b42017-08-25 09:14:43 +0200730 if (robj->flags & AMDGPU_GEM_CREATE_VM_ALWAYS_VALID)
731 amdgpu_vm_bo_invalidate(adev, robj, true);
732
Christian König4c28fb02015-08-28 17:27:54 +0200733 amdgpu_bo_unreserve(robj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400734 break;
735 default:
Christian König4c28fb02015-08-28 17:27:54 +0200736 amdgpu_bo_unreserve(robj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400737 r = -EINVAL;
738 }
739
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400740out:
Cihangir Akturkf62facc2017-08-03 14:58:16 +0300741 drm_gem_object_put_unlocked(gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400742 return r;
743}
744
745int amdgpu_mode_dumb_create(struct drm_file *file_priv,
746 struct drm_device *dev,
747 struct drm_mode_create_dumb *args)
748{
749 struct amdgpu_device *adev = dev->dev_private;
750 struct drm_gem_object *gobj;
751 uint32_t handle;
752 int r;
753
Laurent Pinchart8e911ab2016-10-18 01:41:17 +0300754 args->pitch = amdgpu_align_pitch(adev, args->width,
755 DIV_ROUND_UP(args->bpp, 8), 0);
Dan Carpenter54ef0b52015-09-23 14:00:59 +0300756 args->size = (u64)args->pitch * args->height;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400757 args->size = ALIGN(args->size, PAGE_SIZE);
758
759 r = amdgpu_gem_object_create(adev, args->size, 0,
760 AMDGPU_GEM_DOMAIN_VRAM,
Alex Deucher857d9132015-08-27 00:14:16 -0400761 AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED,
Christian Könige1eb899b42017-08-25 09:14:43 +0200762 false, NULL, &gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400763 if (r)
764 return -ENOMEM;
765
766 r = drm_gem_handle_create(file_priv, gobj, &handle);
767 /* drop reference from allocate - handle holds it now */
Cihangir Akturkf62facc2017-08-03 14:58:16 +0300768 drm_gem_object_put_unlocked(gobj);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400769 if (r) {
770 return r;
771 }
772 args->handle = handle;
773 return 0;
774}
775
776#if defined(CONFIG_DEBUG_FS)
Christian König6b155d62018-05-11 23:14:29 +0800777
778#define amdgpu_debugfs_gem_bo_print_flag(m, bo, flag) \
779 if (bo->flags & (AMDGPU_GEM_CREATE_ ## flag)) { \
780 seq_printf((m), " " #flag); \
781 }
782
Christian König7ea23562016-02-15 15:23:00 +0100783static int amdgpu_debugfs_gem_bo_info(int id, void *ptr, void *data)
784{
785 struct drm_gem_object *gobj = ptr;
786 struct amdgpu_bo *bo = gem_to_amdgpu_bo(gobj);
787 struct seq_file *m = data;
788
Christian Königb1f223c2018-03-25 10:10:25 +0200789 struct dma_buf_attachment *attachment;
790 struct dma_buf *dma_buf;
Christian König7ea23562016-02-15 15:23:00 +0100791 unsigned domain;
792 const char *placement;
793 unsigned pin_count;
794
795 domain = amdgpu_mem_type_to_domain(bo->tbo.mem.mem_type);
796 switch (domain) {
797 case AMDGPU_GEM_DOMAIN_VRAM:
798 placement = "VRAM";
799 break;
800 case AMDGPU_GEM_DOMAIN_GTT:
801 placement = " GTT";
802 break;
803 case AMDGPU_GEM_DOMAIN_CPU:
804 default:
805 placement = " CPU";
806 break;
807 }
Christian Königb8e0e6e2017-06-26 15:19:30 +0200808 seq_printf(m, "\t0x%08x: %12ld byte %s",
809 id, amdgpu_bo_size(bo), placement);
810
Mark Rutland6aa7de02017-10-23 14:07:29 -0700811 pin_count = READ_ONCE(bo->pin_count);
Christian König7ea23562016-02-15 15:23:00 +0100812 if (pin_count)
813 seq_printf(m, " pin count %d", pin_count);
Christian Königb1f223c2018-03-25 10:10:25 +0200814
815 dma_buf = READ_ONCE(bo->gem_base.dma_buf);
816 attachment = READ_ONCE(bo->gem_base.import_attach);
817
818 if (attachment)
819 seq_printf(m, " imported from %p", dma_buf);
820 else if (dma_buf)
821 seq_printf(m, " exported as %p", dma_buf);
822
Christian König6b155d62018-05-11 23:14:29 +0800823 amdgpu_debugfs_gem_bo_print_flag(m, bo, CPU_ACCESS_REQUIRED);
824 amdgpu_debugfs_gem_bo_print_flag(m, bo, NO_CPU_ACCESS);
825 amdgpu_debugfs_gem_bo_print_flag(m, bo, CPU_GTT_USWC);
826 amdgpu_debugfs_gem_bo_print_flag(m, bo, VRAM_CLEARED);
827 amdgpu_debugfs_gem_bo_print_flag(m, bo, SHADOW);
828 amdgpu_debugfs_gem_bo_print_flag(m, bo, VRAM_CONTIGUOUS);
829 amdgpu_debugfs_gem_bo_print_flag(m, bo, VM_ALWAYS_VALID);
830 amdgpu_debugfs_gem_bo_print_flag(m, bo, EXPLICIT_SYNC);
831
Christian König7ea23562016-02-15 15:23:00 +0100832 seq_printf(m, "\n");
833
834 return 0;
835}
836
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400837static int amdgpu_debugfs_gem_info(struct seq_file *m, void *data)
838{
839 struct drm_info_node *node = (struct drm_info_node *)m->private;
840 struct drm_device *dev = node->minor->dev;
Christian König7ea23562016-02-15 15:23:00 +0100841 struct drm_file *file;
842 int r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400843
Daniel Vetter1d2ac402016-04-26 19:29:41 +0200844 r = mutex_lock_interruptible(&dev->filelist_mutex);
Christian König7ea23562016-02-15 15:23:00 +0100845 if (r)
846 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400847
Christian König7ea23562016-02-15 15:23:00 +0100848 list_for_each_entry(file, &dev->filelist, lhead) {
849 struct task_struct *task;
Christian Königb22e3ce2016-02-15 12:41:37 +0100850
Christian König7ea23562016-02-15 15:23:00 +0100851 /*
852 * Although we have a valid reference on file->pid, that does
853 * not guarantee that the task_struct who called get_pid() is
854 * still alive (e.g. get_pid(current) => fork() => exit()).
855 * Therefore, we need to protect this ->comm access using RCU.
856 */
857 rcu_read_lock();
858 task = pid_task(file->pid, PIDTYPE_PID);
859 seq_printf(m, "pid %8d command %s:\n", pid_nr(file->pid),
860 task ? task->comm : "<unknown>");
861 rcu_read_unlock();
862
863 spin_lock(&file->table_lock);
864 idr_for_each(&file->object_idr, amdgpu_debugfs_gem_bo_info, m);
865 spin_unlock(&file->table_lock);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400866 }
Christian König7ea23562016-02-15 15:23:00 +0100867
Daniel Vetter1d2ac402016-04-26 19:29:41 +0200868 mutex_unlock(&dev->filelist_mutex);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400869 return 0;
870}
871
Nils Wallménius06ab6832016-05-02 12:46:15 -0400872static const struct drm_info_list amdgpu_debugfs_gem_list[] = {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400873 {"amdgpu_gem_info", &amdgpu_debugfs_gem_info, 0, NULL},
874};
875#endif
876
Alex Deucher75758252017-12-14 15:23:14 -0500877int amdgpu_debugfs_gem_init(struct amdgpu_device *adev)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400878{
879#if defined(CONFIG_DEBUG_FS)
880 return amdgpu_debugfs_add_files(adev, amdgpu_debugfs_gem_list, 1);
881#endif
882 return 0;
883}