Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1 | /* |
| 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 Rothwell | 568d7c7 | 2016-03-17 15:30:49 +1100 | [diff] [blame] | 29 | #include <linux/pagemap.h> |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 30 | #include <drm/drmP.h> |
| 31 | #include <drm/amdgpu_drm.h> |
| 32 | #include "amdgpu.h" |
| 33 | |
| 34 | void amdgpu_gem_object_free(struct drm_gem_object *gobj) |
| 35 | { |
| 36 | struct amdgpu_bo *robj = gem_to_amdgpu_bo(gobj); |
| 37 | |
| 38 | if (robj) { |
| 39 | if (robj->gem_base.import_attach) |
| 40 | drm_prime_gem_destroy(&robj->gem_base, robj->tbo.sg); |
Christian König | 9298e52 | 2015-06-03 21:31:20 +0200 | [diff] [blame] | 41 | amdgpu_mn_unregister(robj); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 42 | amdgpu_bo_unref(&robj); |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | int amdgpu_gem_object_create(struct amdgpu_device *adev, unsigned long size, |
Christian König | e1eb899b4 | 2017-08-25 09:14:43 +0200 | [diff] [blame] | 47 | int alignment, u32 initial_domain, |
| 48 | u64 flags, bool kernel, |
| 49 | struct reservation_object *resv, |
| 50 | struct drm_gem_object **obj) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 51 | { |
Christian König | e1eb899b4 | 2017-08-25 09:14:43 +0200 | [diff] [blame] | 52 | struct amdgpu_bo *bo; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 53 | int r; |
| 54 | |
| 55 | *obj = NULL; |
| 56 | /* At least align on page size */ |
| 57 | if (alignment < PAGE_SIZE) { |
| 58 | alignment = PAGE_SIZE; |
| 59 | } |
| 60 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 61 | retry: |
Christian König | 72d7668 | 2015-09-03 17:34:59 +0200 | [diff] [blame] | 62 | r = amdgpu_bo_create(adev, size, alignment, kernel, initial_domain, |
Christian König | e1eb899b4 | 2017-08-25 09:14:43 +0200 | [diff] [blame] | 63 | flags, NULL, resv, 0, &bo); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 64 | if (r) { |
| 65 | if (r != -ERESTARTSYS) { |
Roger He | 8e96e37 | 2017-11-10 20:00:30 +0800 | [diff] [blame^] | 66 | if (flags & AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED) { |
| 67 | flags &= ~AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED; |
| 68 | goto retry; |
| 69 | } |
| 70 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 71 | if (initial_domain == AMDGPU_GEM_DOMAIN_VRAM) { |
| 72 | initial_domain |= AMDGPU_GEM_DOMAIN_GTT; |
| 73 | goto retry; |
| 74 | } |
| 75 | DRM_ERROR("Failed to allocate GEM object (%ld, %d, %u, %d)\n", |
| 76 | size, initial_domain, alignment, r); |
| 77 | } |
| 78 | return r; |
| 79 | } |
Christian König | e1eb899b4 | 2017-08-25 09:14:43 +0200 | [diff] [blame] | 80 | *obj = &bo->gem_base; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 81 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 82 | return 0; |
| 83 | } |
| 84 | |
Christian König | 418aa0c | 2016-02-15 16:59:57 +0100 | [diff] [blame] | 85 | void amdgpu_gem_force_release(struct amdgpu_device *adev) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 86 | { |
Christian König | 418aa0c | 2016-02-15 16:59:57 +0100 | [diff] [blame] | 87 | struct drm_device *ddev = adev->ddev; |
| 88 | struct drm_file *file; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 89 | |
Daniel Vetter | 1d2ac40 | 2016-04-26 19:29:41 +0200 | [diff] [blame] | 90 | mutex_lock(&ddev->filelist_mutex); |
Christian König | 418aa0c | 2016-02-15 16:59:57 +0100 | [diff] [blame] | 91 | |
| 92 | list_for_each_entry(file, &ddev->filelist, lhead) { |
| 93 | struct drm_gem_object *gobj; |
| 94 | int handle; |
| 95 | |
| 96 | WARN_ONCE(1, "Still active user space clients!\n"); |
| 97 | spin_lock(&file->table_lock); |
| 98 | idr_for_each_entry(&file->object_idr, gobj, handle) { |
| 99 | WARN_ONCE(1, "And also active allocations!\n"); |
Cihangir Akturk | f62facc | 2017-08-03 14:58:16 +0300 | [diff] [blame] | 100 | drm_gem_object_put_unlocked(gobj); |
Christian König | 418aa0c | 2016-02-15 16:59:57 +0100 | [diff] [blame] | 101 | } |
| 102 | idr_destroy(&file->object_idr); |
| 103 | spin_unlock(&file->table_lock); |
| 104 | } |
| 105 | |
Daniel Vetter | 1d2ac40 | 2016-04-26 19:29:41 +0200 | [diff] [blame] | 106 | mutex_unlock(&ddev->filelist_mutex); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | /* |
| 110 | * Call from drm_gem_handle_create which appear in both new and open ioctl |
| 111 | * case. |
| 112 | */ |
Christian König | a7d64de | 2016-09-15 14:58:48 +0200 | [diff] [blame] | 113 | int amdgpu_gem_object_open(struct drm_gem_object *obj, |
| 114 | struct drm_file *file_priv) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 115 | { |
Christian König | 765e7fb | 2016-09-15 15:06:50 +0200 | [diff] [blame] | 116 | struct amdgpu_bo *abo = gem_to_amdgpu_bo(obj); |
Christian König | a7d64de | 2016-09-15 14:58:48 +0200 | [diff] [blame] | 117 | struct amdgpu_device *adev = amdgpu_ttm_adev(abo->tbo.bdev); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 118 | struct amdgpu_fpriv *fpriv = file_priv->driver_priv; |
| 119 | struct amdgpu_vm *vm = &fpriv->vm; |
| 120 | struct amdgpu_bo_va *bo_va; |
Christian König | 4f5839c | 2017-08-29 16:07:31 +0200 | [diff] [blame] | 121 | struct mm_struct *mm; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 122 | int r; |
Christian König | 4f5839c | 2017-08-29 16:07:31 +0200 | [diff] [blame] | 123 | |
| 124 | mm = amdgpu_ttm_tt_get_usermm(abo->tbo.ttm); |
| 125 | if (mm && mm != current->mm) |
| 126 | return -EPERM; |
| 127 | |
Christian König | e1eb899b4 | 2017-08-25 09:14:43 +0200 | [diff] [blame] | 128 | if (abo->flags & AMDGPU_GEM_CREATE_VM_ALWAYS_VALID && |
| 129 | abo->tbo.resv != vm->root.base.bo->tbo.resv) |
| 130 | return -EPERM; |
| 131 | |
Christian König | 765e7fb | 2016-09-15 15:06:50 +0200 | [diff] [blame] | 132 | r = amdgpu_bo_reserve(abo, false); |
Chunming Zhou | e98c1b0 | 2015-11-13 15:22:04 +0800 | [diff] [blame] | 133 | if (r) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 134 | return r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 135 | |
Christian König | 765e7fb | 2016-09-15 15:06:50 +0200 | [diff] [blame] | 136 | bo_va = amdgpu_vm_bo_find(vm, abo); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 137 | if (!bo_va) { |
Christian König | 765e7fb | 2016-09-15 15:06:50 +0200 | [diff] [blame] | 138 | bo_va = amdgpu_vm_bo_add(adev, vm, abo); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 139 | } else { |
| 140 | ++bo_va->ref_count; |
| 141 | } |
Christian König | 765e7fb | 2016-09-15 15:06:50 +0200 | [diff] [blame] | 142 | amdgpu_bo_unreserve(abo); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 143 | return 0; |
| 144 | } |
| 145 | |
| 146 | void amdgpu_gem_object_close(struct drm_gem_object *obj, |
| 147 | struct drm_file *file_priv) |
| 148 | { |
Christian König | b5a5ec5 | 2016-03-08 17:47:46 +0100 | [diff] [blame] | 149 | struct amdgpu_bo *bo = gem_to_amdgpu_bo(obj); |
Christian König | a7d64de | 2016-09-15 14:58:48 +0200 | [diff] [blame] | 150 | struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 151 | struct amdgpu_fpriv *fpriv = file_priv->driver_priv; |
| 152 | struct amdgpu_vm *vm = &fpriv->vm; |
Christian König | b5a5ec5 | 2016-03-08 17:47:46 +0100 | [diff] [blame] | 153 | |
| 154 | struct amdgpu_bo_list_entry vm_pd; |
Christian König | e1eb899b4 | 2017-08-25 09:14:43 +0200 | [diff] [blame] | 155 | struct list_head list, duplicates; |
Christian König | b5a5ec5 | 2016-03-08 17:47:46 +0100 | [diff] [blame] | 156 | struct ttm_validate_buffer tv; |
| 157 | struct ww_acquire_ctx ticket; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 158 | struct amdgpu_bo_va *bo_va; |
| 159 | int r; |
Christian König | b5a5ec5 | 2016-03-08 17:47:46 +0100 | [diff] [blame] | 160 | |
| 161 | INIT_LIST_HEAD(&list); |
Christian König | e1eb899b4 | 2017-08-25 09:14:43 +0200 | [diff] [blame] | 162 | INIT_LIST_HEAD(&duplicates); |
Christian König | b5a5ec5 | 2016-03-08 17:47:46 +0100 | [diff] [blame] | 163 | |
| 164 | tv.bo = &bo->tbo; |
| 165 | tv.shared = true; |
| 166 | list_add(&tv.head, &list); |
| 167 | |
| 168 | amdgpu_vm_get_pd_bo(vm, &list, &vm_pd); |
| 169 | |
Christian König | e1eb899b4 | 2017-08-25 09:14:43 +0200 | [diff] [blame] | 170 | r = ttm_eu_reserve_buffers(&ticket, &list, false, &duplicates); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 171 | if (r) { |
| 172 | dev_err(adev->dev, "leaking bo va because " |
| 173 | "we fail to reserve bo (%d)\n", r); |
| 174 | return; |
| 175 | } |
Christian König | b5a5ec5 | 2016-03-08 17:47:46 +0100 | [diff] [blame] | 176 | bo_va = amdgpu_vm_bo_find(vm, bo); |
Christian König | 5a0f3b5 | 2017-04-21 10:05:56 +0200 | [diff] [blame] | 177 | if (bo_va && --bo_va->ref_count == 0) { |
| 178 | amdgpu_vm_bo_rmv(adev, bo_va); |
| 179 | |
Christian König | 3f3333f | 2017-08-03 14:02:13 +0200 | [diff] [blame] | 180 | if (amdgpu_vm_ready(vm)) { |
Christian König | 5a0f3b5 | 2017-04-21 10:05:56 +0200 | [diff] [blame] | 181 | struct dma_fence *fence = NULL; |
Nicolai Hähnle | 23e0563 | 2017-03-23 19:34:11 +0100 | [diff] [blame] | 182 | |
| 183 | r = amdgpu_vm_clear_freed(adev, vm, &fence); |
| 184 | if (unlikely(r)) { |
| 185 | dev_err(adev->dev, "failed to clear page " |
| 186 | "tables on GEM object close (%d)\n", r); |
| 187 | } |
| 188 | |
| 189 | if (fence) { |
| 190 | amdgpu_bo_fence(bo, fence, true); |
| 191 | dma_fence_put(fence); |
| 192 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 193 | } |
| 194 | } |
Christian König | b5a5ec5 | 2016-03-08 17:47:46 +0100 | [diff] [blame] | 195 | ttm_eu_backoff_reservation(&ticket, &list); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 196 | } |
| 197 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 198 | /* |
| 199 | * GEM ioctls. |
| 200 | */ |
| 201 | int amdgpu_gem_create_ioctl(struct drm_device *dev, void *data, |
| 202 | struct drm_file *filp) |
| 203 | { |
| 204 | struct amdgpu_device *adev = dev->dev_private; |
Christian König | e1eb899b4 | 2017-08-25 09:14:43 +0200 | [diff] [blame] | 205 | struct amdgpu_fpriv *fpriv = filp->driver_priv; |
| 206 | struct amdgpu_vm *vm = &fpriv->vm; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 207 | union drm_amdgpu_gem_create *args = data; |
Christian König | 6ac7def | 2017-08-23 20:11:25 +0200 | [diff] [blame] | 208 | uint64_t flags = args->in.domain_flags; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 209 | uint64_t size = args->in.bo_size; |
Christian König | e1eb899b4 | 2017-08-25 09:14:43 +0200 | [diff] [blame] | 210 | struct reservation_object *resv = NULL; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 211 | struct drm_gem_object *gobj; |
| 212 | uint32_t handle; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 213 | int r; |
| 214 | |
Alex Deucher | 834e0f8 | 2017-03-08 17:40:17 -0500 | [diff] [blame] | 215 | /* reject invalid gem flags */ |
Christian König | 6ac7def | 2017-08-23 20:11:25 +0200 | [diff] [blame] | 216 | if (flags & ~(AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED | |
| 217 | AMDGPU_GEM_CREATE_NO_CPU_ACCESS | |
| 218 | AMDGPU_GEM_CREATE_CPU_GTT_USWC | |
Christian König | e1eb899b4 | 2017-08-25 09:14:43 +0200 | [diff] [blame] | 219 | AMDGPU_GEM_CREATE_VRAM_CLEARED | |
Andres Rodriguez | 177ae09 | 2017-09-15 20:44:06 -0400 | [diff] [blame] | 220 | AMDGPU_GEM_CREATE_VM_ALWAYS_VALID | |
| 221 | AMDGPU_GEM_CREATE_EXPLICIT_SYNC)) |
| 222 | |
Christian König | a022c54 | 2017-05-08 15:14:54 +0200 | [diff] [blame] | 223 | return -EINVAL; |
| 224 | |
Alex Deucher | 834e0f8 | 2017-03-08 17:40:17 -0500 | [diff] [blame] | 225 | /* reject invalid gem domains */ |
| 226 | if (args->in.domains & ~(AMDGPU_GEM_DOMAIN_CPU | |
| 227 | AMDGPU_GEM_DOMAIN_GTT | |
| 228 | AMDGPU_GEM_DOMAIN_VRAM | |
| 229 | AMDGPU_GEM_DOMAIN_GDS | |
| 230 | AMDGPU_GEM_DOMAIN_GWS | |
Christian König | a022c54 | 2017-05-08 15:14:54 +0200 | [diff] [blame] | 231 | AMDGPU_GEM_DOMAIN_OA)) |
| 232 | return -EINVAL; |
Alex Deucher | 834e0f8 | 2017-03-08 17:40:17 -0500 | [diff] [blame] | 233 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 234 | /* create a gem object to contain this object in */ |
| 235 | if (args->in.domains & (AMDGPU_GEM_DOMAIN_GDS | |
| 236 | AMDGPU_GEM_DOMAIN_GWS | AMDGPU_GEM_DOMAIN_OA)) { |
Christian König | 6ac7def | 2017-08-23 20:11:25 +0200 | [diff] [blame] | 237 | flags |= AMDGPU_GEM_CREATE_NO_CPU_ACCESS; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 238 | if (args->in.domains == AMDGPU_GEM_DOMAIN_GDS) |
| 239 | size = size << AMDGPU_GDS_SHIFT; |
| 240 | else if (args->in.domains == AMDGPU_GEM_DOMAIN_GWS) |
| 241 | size = size << AMDGPU_GWS_SHIFT; |
| 242 | else if (args->in.domains == AMDGPU_GEM_DOMAIN_OA) |
| 243 | size = size << AMDGPU_OA_SHIFT; |
Christian König | a022c54 | 2017-05-08 15:14:54 +0200 | [diff] [blame] | 244 | else |
| 245 | return -EINVAL; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 246 | } |
| 247 | size = roundup(size, PAGE_SIZE); |
| 248 | |
Christian König | e1eb899b4 | 2017-08-25 09:14:43 +0200 | [diff] [blame] | 249 | if (flags & AMDGPU_GEM_CREATE_VM_ALWAYS_VALID) { |
| 250 | r = amdgpu_bo_reserve(vm->root.base.bo, false); |
| 251 | if (r) |
| 252 | return r; |
| 253 | |
| 254 | resv = vm->root.base.bo->tbo.resv; |
| 255 | } |
| 256 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 257 | r = amdgpu_gem_object_create(adev, size, args->in.alignment, |
| 258 | (u32)(0xffffffff & args->in.domains), |
Christian König | e1eb899b4 | 2017-08-25 09:14:43 +0200 | [diff] [blame] | 259 | flags, false, resv, &gobj); |
| 260 | if (flags & AMDGPU_GEM_CREATE_VM_ALWAYS_VALID) { |
| 261 | if (!r) { |
| 262 | struct amdgpu_bo *abo = gem_to_amdgpu_bo(gobj); |
| 263 | |
| 264 | abo->parent = amdgpu_bo_ref(vm->root.base.bo); |
| 265 | } |
| 266 | amdgpu_bo_unreserve(vm->root.base.bo); |
| 267 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 268 | if (r) |
Christian König | a022c54 | 2017-05-08 15:14:54 +0200 | [diff] [blame] | 269 | return r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 270 | |
| 271 | r = drm_gem_handle_create(filp, gobj, &handle); |
| 272 | /* drop reference from allocate - handle holds it now */ |
Cihangir Akturk | f62facc | 2017-08-03 14:58:16 +0300 | [diff] [blame] | 273 | drm_gem_object_put_unlocked(gobj); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 274 | if (r) |
Christian König | a022c54 | 2017-05-08 15:14:54 +0200 | [diff] [blame] | 275 | return r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 276 | |
| 277 | memset(args, 0, sizeof(*args)); |
| 278 | args->out.handle = handle; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 279 | return 0; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 280 | } |
| 281 | |
| 282 | int amdgpu_gem_userptr_ioctl(struct drm_device *dev, void *data, |
| 283 | struct drm_file *filp) |
| 284 | { |
| 285 | struct amdgpu_device *adev = dev->dev_private; |
| 286 | struct drm_amdgpu_gem_userptr *args = data; |
| 287 | struct drm_gem_object *gobj; |
| 288 | struct amdgpu_bo *bo; |
| 289 | uint32_t handle; |
| 290 | int r; |
| 291 | |
| 292 | if (offset_in_page(args->addr | args->size)) |
| 293 | return -EINVAL; |
| 294 | |
| 295 | /* reject unknown flag values */ |
| 296 | if (args->flags & ~(AMDGPU_GEM_USERPTR_READONLY | |
| 297 | AMDGPU_GEM_USERPTR_ANONONLY | AMDGPU_GEM_USERPTR_VALIDATE | |
| 298 | AMDGPU_GEM_USERPTR_REGISTER)) |
| 299 | return -EINVAL; |
| 300 | |
Christian König | 358c258 | 2016-03-11 15:29:27 +0100 | [diff] [blame] | 301 | if (!(args->flags & AMDGPU_GEM_USERPTR_READONLY) && |
| 302 | !(args->flags & AMDGPU_GEM_USERPTR_REGISTER)) { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 303 | |
Christian König | 358c258 | 2016-03-11 15:29:27 +0100 | [diff] [blame] | 304 | /* if we want to write to it we must install a MMU notifier */ |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 305 | return -EACCES; |
| 306 | } |
| 307 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 308 | /* create a gem object to contain this object in */ |
Christian König | e1eb899b4 | 2017-08-25 09:14:43 +0200 | [diff] [blame] | 309 | r = amdgpu_gem_object_create(adev, args->size, 0, AMDGPU_GEM_DOMAIN_CPU, |
| 310 | 0, 0, NULL, &gobj); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 311 | if (r) |
Christian König | a022c54 | 2017-05-08 15:14:54 +0200 | [diff] [blame] | 312 | return r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 313 | |
| 314 | bo = gem_to_amdgpu_bo(gobj); |
Kent Russell | 6d7d9c5 | 2017-08-08 07:58:01 -0400 | [diff] [blame] | 315 | bo->preferred_domains = AMDGPU_GEM_DOMAIN_GTT; |
Christian König | 1ea863f | 2015-12-18 22:13:12 +0100 | [diff] [blame] | 316 | bo->allowed_domains = AMDGPU_GEM_DOMAIN_GTT; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 317 | r = amdgpu_ttm_tt_set_userptr(bo->tbo.ttm, args->addr, args->flags); |
| 318 | if (r) |
| 319 | goto release_object; |
| 320 | |
| 321 | if (args->flags & AMDGPU_GEM_USERPTR_REGISTER) { |
| 322 | r = amdgpu_mn_register(bo, args->addr); |
| 323 | if (r) |
| 324 | goto release_object; |
| 325 | } |
| 326 | |
| 327 | if (args->flags & AMDGPU_GEM_USERPTR_VALIDATE) { |
Christian König | 2f568db | 2016-02-23 12:36:59 +0100 | [diff] [blame] | 328 | r = amdgpu_ttm_tt_get_user_pages(bo->tbo.ttm, |
| 329 | bo->tbo.ttm->pages); |
| 330 | if (r) |
| 331 | goto unlock_mmap_sem; |
| 332 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 333 | r = amdgpu_bo_reserve(bo, true); |
Christian König | 2f568db | 2016-02-23 12:36:59 +0100 | [diff] [blame] | 334 | if (r) |
| 335 | goto free_pages; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 336 | |
| 337 | amdgpu_ttm_placement_from_domain(bo, AMDGPU_GEM_DOMAIN_GTT); |
| 338 | r = ttm_bo_validate(&bo->tbo, &bo->placement, true, false); |
| 339 | amdgpu_bo_unreserve(bo); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 340 | if (r) |
Christian König | 2f568db | 2016-02-23 12:36:59 +0100 | [diff] [blame] | 341 | goto free_pages; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 342 | } |
| 343 | |
| 344 | r = drm_gem_handle_create(filp, gobj, &handle); |
| 345 | /* drop reference from allocate - handle holds it now */ |
Cihangir Akturk | f62facc | 2017-08-03 14:58:16 +0300 | [diff] [blame] | 346 | drm_gem_object_put_unlocked(gobj); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 347 | if (r) |
Christian König | a022c54 | 2017-05-08 15:14:54 +0200 | [diff] [blame] | 348 | return r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 349 | |
| 350 | args->handle = handle; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 351 | return 0; |
| 352 | |
Christian König | 2f568db | 2016-02-23 12:36:59 +0100 | [diff] [blame] | 353 | free_pages: |
| 354 | release_pages(bo->tbo.ttm->pages, bo->tbo.ttm->num_pages, false); |
| 355 | |
| 356 | unlock_mmap_sem: |
| 357 | up_read(¤t->mm->mmap_sem); |
| 358 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 359 | release_object: |
Cihangir Akturk | f62facc | 2017-08-03 14:58:16 +0300 | [diff] [blame] | 360 | drm_gem_object_put_unlocked(gobj); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 361 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 362 | return r; |
| 363 | } |
| 364 | |
| 365 | int amdgpu_mode_dumb_mmap(struct drm_file *filp, |
| 366 | struct drm_device *dev, |
| 367 | uint32_t handle, uint64_t *offset_p) |
| 368 | { |
| 369 | struct drm_gem_object *gobj; |
| 370 | struct amdgpu_bo *robj; |
| 371 | |
Chris Wilson | a8ad0bd | 2016-05-09 11:04:54 +0100 | [diff] [blame] | 372 | gobj = drm_gem_object_lookup(filp, handle); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 373 | if (gobj == NULL) { |
| 374 | return -ENOENT; |
| 375 | } |
| 376 | robj = gem_to_amdgpu_bo(gobj); |
Christian König | cc325d1 | 2016-02-08 11:08:35 +0100 | [diff] [blame] | 377 | if (amdgpu_ttm_tt_get_usermm(robj->tbo.ttm) || |
Christian König | 271c812 | 2015-05-13 14:30:53 +0200 | [diff] [blame] | 378 | (robj->flags & AMDGPU_GEM_CREATE_NO_CPU_ACCESS)) { |
Cihangir Akturk | f62facc | 2017-08-03 14:58:16 +0300 | [diff] [blame] | 379 | drm_gem_object_put_unlocked(gobj); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 380 | return -EPERM; |
| 381 | } |
| 382 | *offset_p = amdgpu_bo_mmap_offset(robj); |
Cihangir Akturk | f62facc | 2017-08-03 14:58:16 +0300 | [diff] [blame] | 383 | drm_gem_object_put_unlocked(gobj); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 384 | return 0; |
| 385 | } |
| 386 | |
| 387 | int amdgpu_gem_mmap_ioctl(struct drm_device *dev, void *data, |
| 388 | struct drm_file *filp) |
| 389 | { |
| 390 | union drm_amdgpu_gem_mmap *args = data; |
| 391 | uint32_t handle = args->in.handle; |
| 392 | memset(args, 0, sizeof(*args)); |
| 393 | return amdgpu_mode_dumb_mmap(filp, dev, handle, &args->out.addr_ptr); |
| 394 | } |
| 395 | |
| 396 | /** |
| 397 | * amdgpu_gem_timeout - calculate jiffies timeout from absolute value |
| 398 | * |
| 399 | * @timeout_ns: timeout in ns |
| 400 | * |
| 401 | * Calculate the timeout in jiffies from an absolute timeout in ns. |
| 402 | */ |
| 403 | unsigned long amdgpu_gem_timeout(uint64_t timeout_ns) |
| 404 | { |
| 405 | unsigned long timeout_jiffies; |
| 406 | ktime_t timeout; |
| 407 | |
| 408 | /* clamp timeout if it's to large */ |
| 409 | if (((int64_t)timeout_ns) < 0) |
| 410 | return MAX_SCHEDULE_TIMEOUT; |
| 411 | |
Christian König | 0f11770 | 2015-07-08 16:58:48 +0200 | [diff] [blame] | 412 | timeout = ktime_sub(ns_to_ktime(timeout_ns), ktime_get()); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 413 | if (ktime_to_ns(timeout) < 0) |
| 414 | return 0; |
| 415 | |
| 416 | timeout_jiffies = nsecs_to_jiffies(ktime_to_ns(timeout)); |
| 417 | /* clamp timeout to avoid unsigned-> signed overflow */ |
| 418 | if (timeout_jiffies > MAX_SCHEDULE_TIMEOUT ) |
| 419 | return MAX_SCHEDULE_TIMEOUT - 1; |
| 420 | |
| 421 | return timeout_jiffies; |
| 422 | } |
| 423 | |
| 424 | int amdgpu_gem_wait_idle_ioctl(struct drm_device *dev, void *data, |
| 425 | struct drm_file *filp) |
| 426 | { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 427 | union drm_amdgpu_gem_wait_idle *args = data; |
| 428 | struct drm_gem_object *gobj; |
| 429 | struct amdgpu_bo *robj; |
| 430 | uint32_t handle = args->in.handle; |
| 431 | unsigned long timeout = amdgpu_gem_timeout(args->in.timeout); |
| 432 | int r = 0; |
| 433 | long ret; |
| 434 | |
Chris Wilson | a8ad0bd | 2016-05-09 11:04:54 +0100 | [diff] [blame] | 435 | gobj = drm_gem_object_lookup(filp, handle); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 436 | if (gobj == NULL) { |
| 437 | return -ENOENT; |
| 438 | } |
| 439 | robj = gem_to_amdgpu_bo(gobj); |
Chris Wilson | 0fea2ed | 2016-08-29 08:08:24 +0100 | [diff] [blame] | 440 | ret = reservation_object_wait_timeout_rcu(robj->tbo.resv, true, true, |
| 441 | timeout); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 442 | |
| 443 | /* ret == 0 means not signaled, |
| 444 | * ret > 0 means signaled |
| 445 | * ret < 0 means interrupted before timeout |
| 446 | */ |
| 447 | if (ret >= 0) { |
| 448 | memset(args, 0, sizeof(*args)); |
| 449 | args->out.status = (ret == 0); |
| 450 | } else |
| 451 | r = ret; |
| 452 | |
Cihangir Akturk | f62facc | 2017-08-03 14:58:16 +0300 | [diff] [blame] | 453 | drm_gem_object_put_unlocked(gobj); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 454 | return r; |
| 455 | } |
| 456 | |
| 457 | int amdgpu_gem_metadata_ioctl(struct drm_device *dev, void *data, |
| 458 | struct drm_file *filp) |
| 459 | { |
| 460 | struct drm_amdgpu_gem_metadata *args = data; |
| 461 | struct drm_gem_object *gobj; |
| 462 | struct amdgpu_bo *robj; |
| 463 | int r = -1; |
| 464 | |
| 465 | DRM_DEBUG("%d \n", args->handle); |
Chris Wilson | a8ad0bd | 2016-05-09 11:04:54 +0100 | [diff] [blame] | 466 | gobj = drm_gem_object_lookup(filp, args->handle); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 467 | if (gobj == NULL) |
| 468 | return -ENOENT; |
| 469 | robj = gem_to_amdgpu_bo(gobj); |
| 470 | |
| 471 | r = amdgpu_bo_reserve(robj, false); |
| 472 | if (unlikely(r != 0)) |
| 473 | goto out; |
| 474 | |
| 475 | if (args->op == AMDGPU_GEM_METADATA_OP_GET_METADATA) { |
| 476 | amdgpu_bo_get_tiling_flags(robj, &args->data.tiling_info); |
| 477 | r = amdgpu_bo_get_metadata(robj, args->data.data, |
| 478 | sizeof(args->data.data), |
| 479 | &args->data.data_size_bytes, |
| 480 | &args->data.flags); |
| 481 | } else if (args->op == AMDGPU_GEM_METADATA_OP_SET_METADATA) { |
Dan Carpenter | 0913eab | 2015-09-23 14:00:35 +0300 | [diff] [blame] | 482 | if (args->data.data_size_bytes > sizeof(args->data.data)) { |
| 483 | r = -EINVAL; |
| 484 | goto unreserve; |
| 485 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 486 | r = amdgpu_bo_set_tiling_flags(robj, args->data.tiling_info); |
| 487 | if (!r) |
| 488 | r = amdgpu_bo_set_metadata(robj, args->data.data, |
| 489 | args->data.data_size_bytes, |
| 490 | args->data.flags); |
| 491 | } |
| 492 | |
Dan Carpenter | 0913eab | 2015-09-23 14:00:35 +0300 | [diff] [blame] | 493 | unreserve: |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 494 | amdgpu_bo_unreserve(robj); |
| 495 | out: |
Cihangir Akturk | f62facc | 2017-08-03 14:58:16 +0300 | [diff] [blame] | 496 | drm_gem_object_put_unlocked(gobj); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 497 | return r; |
| 498 | } |
| 499 | |
| 500 | /** |
| 501 | * amdgpu_gem_va_update_vm -update the bo_va in its VM |
| 502 | * |
| 503 | * @adev: amdgpu_device pointer |
Christian König | dc54d3d | 2017-03-13 10:13:38 +0100 | [diff] [blame] | 504 | * @vm: vm to update |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 505 | * @bo_va: bo_va to update |
Christian König | 2ffdaaf | 2017-01-27 15:58:43 +0100 | [diff] [blame] | 506 | * @list: validation list |
Christian König | dc54d3d | 2017-03-13 10:13:38 +0100 | [diff] [blame] | 507 | * @operation: map, unmap or clear |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 508 | * |
Christian König | 2ffdaaf | 2017-01-27 15:58:43 +0100 | [diff] [blame] | 509 | * Update the bo_va directly after setting its address. Errors are not |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 510 | * vital here, so they are not reported back to userspace. |
| 511 | */ |
| 512 | static void amdgpu_gem_va_update_vm(struct amdgpu_device *adev, |
Christian König | dc54d3d | 2017-03-13 10:13:38 +0100 | [diff] [blame] | 513 | struct amdgpu_vm *vm, |
Christian König | f7da30d | 2016-09-28 12:03:04 +0200 | [diff] [blame] | 514 | struct amdgpu_bo_va *bo_va, |
Christian König | 2ffdaaf | 2017-01-27 15:58:43 +0100 | [diff] [blame] | 515 | struct list_head *list, |
Christian König | f7da30d | 2016-09-28 12:03:04 +0200 | [diff] [blame] | 516 | uint32_t operation) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 517 | { |
Christian König | 3f3333f | 2017-08-03 14:02:13 +0200 | [diff] [blame] | 518 | int r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 519 | |
Christian König | 3f3333f | 2017-08-03 14:02:13 +0200 | [diff] [blame] | 520 | if (!amdgpu_vm_ready(vm)) |
| 521 | return; |
Chunming Zhou | e410b5c | 2015-12-07 15:02:52 +0800 | [diff] [blame] | 522 | |
Christian König | 194d216 | 2016-10-12 15:13:52 +0200 | [diff] [blame] | 523 | r = amdgpu_vm_update_directories(adev, vm); |
Chunming Zhou | 43c27fb | 2015-11-12 15:33:09 +0800 | [diff] [blame] | 524 | if (r) |
Christian König | 2ffdaaf | 2017-01-27 15:58:43 +0100 | [diff] [blame] | 525 | goto error; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 526 | |
Nicolai Hähnle | f346781 | 2017-03-23 19:36:31 +0100 | [diff] [blame] | 527 | r = amdgpu_vm_clear_freed(adev, vm, NULL); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 528 | if (r) |
Christian König | 2ffdaaf | 2017-01-27 15:58:43 +0100 | [diff] [blame] | 529 | goto error; |
monk.liu | 194a336 | 2015-07-22 13:29:28 +0800 | [diff] [blame] | 530 | |
Christian König | 80f95c5 | 2017-03-13 10:13:39 +0100 | [diff] [blame] | 531 | if (operation == AMDGPU_VA_OP_MAP || |
| 532 | operation == AMDGPU_VA_OP_REPLACE) |
Flora Cui | 05dcb5c | 2016-09-22 11:34:47 +0800 | [diff] [blame] | 533 | r = amdgpu_vm_bo_update(adev, bo_va, false); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 534 | |
Christian König | 2ffdaaf | 2017-01-27 15:58:43 +0100 | [diff] [blame] | 535 | error: |
Christian König | 68fdd3d | 2015-06-16 14:50:02 +0200 | [diff] [blame] | 536 | if (r && r != -ERESTARTSYS) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 537 | DRM_ERROR("Couldn't update BO_VA (%d)\n", r); |
| 538 | } |
| 539 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 540 | int amdgpu_gem_va_ioctl(struct drm_device *dev, void *data, |
| 541 | struct drm_file *filp) |
| 542 | { |
Junwei Zhang | b85891b | 2017-01-16 13:59:01 +0800 | [diff] [blame] | 543 | const uint32_t valid_flags = AMDGPU_VM_DELAY_UPDATE | |
| 544 | AMDGPU_VM_PAGE_READABLE | AMDGPU_VM_PAGE_WRITEABLE | |
Alex Xie | 66e02bc | 2017-02-14 12:04:52 -0500 | [diff] [blame] | 545 | AMDGPU_VM_PAGE_EXECUTABLE | AMDGPU_VM_MTYPE_MASK; |
Junwei Zhang | b85891b | 2017-01-16 13:59:01 +0800 | [diff] [blame] | 546 | const uint32_t prt_flags = AMDGPU_VM_DELAY_UPDATE | |
| 547 | AMDGPU_VM_PAGE_PRT; |
| 548 | |
Christian König | 34b5f6a | 2015-06-08 15:03:00 +0200 | [diff] [blame] | 549 | struct drm_amdgpu_gem_va *args = data; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 550 | struct drm_gem_object *gobj; |
| 551 | struct amdgpu_device *adev = dev->dev_private; |
| 552 | struct amdgpu_fpriv *fpriv = filp->driver_priv; |
Christian König | 765e7fb | 2016-09-15 15:06:50 +0200 | [diff] [blame] | 553 | struct amdgpu_bo *abo; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 554 | struct amdgpu_bo_va *bo_va; |
Christian König | b88c879 | 2016-09-28 16:33:01 +0200 | [diff] [blame] | 555 | struct amdgpu_bo_list_entry vm_pd; |
| 556 | struct ttm_validate_buffer tv; |
Chunming Zhou | 49b02b1 | 2015-11-13 14:18:38 +0800 | [diff] [blame] | 557 | struct ww_acquire_ctx ticket; |
Christian König | e1eb899b4 | 2017-08-25 09:14:43 +0200 | [diff] [blame] | 558 | struct list_head list, duplicates; |
Alex Xie | 5463545 | 2017-02-14 12:22:57 -0500 | [diff] [blame] | 559 | uint64_t va_flags; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 560 | int r = 0; |
| 561 | |
Christian König | 34b5f6a | 2015-06-08 15:03:00 +0200 | [diff] [blame] | 562 | if (args->va_address < AMDGPU_VA_RESERVED_SIZE) { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 563 | dev_err(&dev->pdev->dev, |
Christian König | ff4cd38 | 2017-11-06 15:25:37 +0100 | [diff] [blame] | 564 | "va_address 0x%LX is in reserved area 0x%LX\n", |
| 565 | args->va_address, AMDGPU_VA_RESERVED_SIZE); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 566 | return -EINVAL; |
| 567 | } |
| 568 | |
Junwei Zhang | b85891b | 2017-01-16 13:59:01 +0800 | [diff] [blame] | 569 | if ((args->flags & ~valid_flags) && (args->flags & ~prt_flags)) { |
| 570 | dev_err(&dev->pdev->dev, "invalid flags combination 0x%08X\n", |
| 571 | args->flags); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 572 | return -EINVAL; |
| 573 | } |
| 574 | |
Christian König | 34b5f6a | 2015-06-08 15:03:00 +0200 | [diff] [blame] | 575 | switch (args->operation) { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 576 | case AMDGPU_VA_OP_MAP: |
| 577 | case AMDGPU_VA_OP_UNMAP: |
Christian König | dc54d3d | 2017-03-13 10:13:38 +0100 | [diff] [blame] | 578 | case AMDGPU_VA_OP_CLEAR: |
Christian König | 80f95c5 | 2017-03-13 10:13:39 +0100 | [diff] [blame] | 579 | case AMDGPU_VA_OP_REPLACE: |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 580 | break; |
| 581 | default: |
| 582 | dev_err(&dev->pdev->dev, "unsupported operation %d\n", |
Christian König | 34b5f6a | 2015-06-08 15:03:00 +0200 | [diff] [blame] | 583 | args->operation); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 584 | return -EINVAL; |
| 585 | } |
| 586 | |
Chunming Zhou | 49b02b1 | 2015-11-13 14:18:38 +0800 | [diff] [blame] | 587 | INIT_LIST_HEAD(&list); |
Christian König | e1eb899b4 | 2017-08-25 09:14:43 +0200 | [diff] [blame] | 588 | INIT_LIST_HEAD(&duplicates); |
Christian König | dc54d3d | 2017-03-13 10:13:38 +0100 | [diff] [blame] | 589 | if ((args->operation != AMDGPU_VA_OP_CLEAR) && |
| 590 | !(args->flags & AMDGPU_VM_PAGE_PRT)) { |
Junwei Zhang | b85891b | 2017-01-16 13:59:01 +0800 | [diff] [blame] | 591 | gobj = drm_gem_object_lookup(filp, args->handle); |
| 592 | if (gobj == NULL) |
| 593 | return -ENOENT; |
| 594 | abo = gem_to_amdgpu_bo(gobj); |
| 595 | tv.bo = &abo->tbo; |
| 596 | tv.shared = false; |
| 597 | list_add(&tv.head, &list); |
| 598 | } else { |
| 599 | gobj = NULL; |
| 600 | abo = NULL; |
| 601 | } |
Chunming Zhou | 49b02b1 | 2015-11-13 14:18:38 +0800 | [diff] [blame] | 602 | |
Christian König | b88c879 | 2016-09-28 16:33:01 +0200 | [diff] [blame] | 603 | amdgpu_vm_get_pd_bo(&fpriv->vm, &list, &vm_pd); |
Christian König | b5a5ec5 | 2016-03-08 17:47:46 +0100 | [diff] [blame] | 604 | |
Christian König | e1eb899b4 | 2017-08-25 09:14:43 +0200 | [diff] [blame] | 605 | r = ttm_eu_reserve_buffers(&ticket, &list, true, &duplicates); |
Junwei Zhang | b85891b | 2017-01-16 13:59:01 +0800 | [diff] [blame] | 606 | if (r) |
| 607 | goto error_unref; |
Christian König | 34b5f6a | 2015-06-08 15:03:00 +0200 | [diff] [blame] | 608 | |
Junwei Zhang | b85891b | 2017-01-16 13:59:01 +0800 | [diff] [blame] | 609 | if (abo) { |
| 610 | bo_va = amdgpu_vm_bo_find(&fpriv->vm, abo); |
| 611 | if (!bo_va) { |
| 612 | r = -ENOENT; |
| 613 | goto error_backoff; |
| 614 | } |
Christian König | dc54d3d | 2017-03-13 10:13:38 +0100 | [diff] [blame] | 615 | } else if (args->operation != AMDGPU_VA_OP_CLEAR) { |
Junwei Zhang | b85891b | 2017-01-16 13:59:01 +0800 | [diff] [blame] | 616 | bo_va = fpriv->prt_va; |
Christian König | dc54d3d | 2017-03-13 10:13:38 +0100 | [diff] [blame] | 617 | } else { |
| 618 | bo_va = NULL; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 619 | } |
| 620 | |
Christian König | 34b5f6a | 2015-06-08 15:03:00 +0200 | [diff] [blame] | 621 | switch (args->operation) { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 622 | case AMDGPU_VA_OP_MAP: |
Christian König | ec68154 | 2017-08-01 10:51:43 +0200 | [diff] [blame] | 623 | r = amdgpu_vm_alloc_pts(adev, bo_va->base.vm, args->va_address, |
Christian König | 663e457 | 2017-03-13 10:13:37 +0100 | [diff] [blame] | 624 | args->map_size); |
| 625 | if (r) |
| 626 | goto error_backoff; |
Alex Xie | 5463545 | 2017-02-14 12:22:57 -0500 | [diff] [blame] | 627 | |
Christian König | 663e457 | 2017-03-13 10:13:37 +0100 | [diff] [blame] | 628 | va_flags = amdgpu_vm_get_pte_flags(adev, args->flags); |
Christian König | 34b5f6a | 2015-06-08 15:03:00 +0200 | [diff] [blame] | 629 | r = amdgpu_vm_bo_map(adev, bo_va, args->va_address, |
| 630 | args->offset_in_bo, args->map_size, |
Christian König | 9f7eb53 | 2015-05-18 16:05:57 +0200 | [diff] [blame] | 631 | va_flags); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 632 | break; |
| 633 | case AMDGPU_VA_OP_UNMAP: |
Christian König | 34b5f6a | 2015-06-08 15:03:00 +0200 | [diff] [blame] | 634 | r = amdgpu_vm_bo_unmap(adev, bo_va, args->va_address); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 635 | break; |
Christian König | dc54d3d | 2017-03-13 10:13:38 +0100 | [diff] [blame] | 636 | |
| 637 | case AMDGPU_VA_OP_CLEAR: |
| 638 | r = amdgpu_vm_bo_clear_mappings(adev, &fpriv->vm, |
| 639 | args->va_address, |
| 640 | args->map_size); |
| 641 | break; |
Christian König | 80f95c5 | 2017-03-13 10:13:39 +0100 | [diff] [blame] | 642 | case AMDGPU_VA_OP_REPLACE: |
Christian König | ec68154 | 2017-08-01 10:51:43 +0200 | [diff] [blame] | 643 | r = amdgpu_vm_alloc_pts(adev, bo_va->base.vm, args->va_address, |
Christian König | 80f95c5 | 2017-03-13 10:13:39 +0100 | [diff] [blame] | 644 | args->map_size); |
| 645 | if (r) |
| 646 | goto error_backoff; |
| 647 | |
| 648 | va_flags = amdgpu_vm_get_pte_flags(adev, args->flags); |
| 649 | r = amdgpu_vm_bo_replace_map(adev, bo_va, args->va_address, |
| 650 | args->offset_in_bo, args->map_size, |
| 651 | va_flags); |
| 652 | break; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 653 | default: |
| 654 | break; |
| 655 | } |
Junwei Zhang | b85891b | 2017-01-16 13:59:01 +0800 | [diff] [blame] | 656 | if (!r && !(args->flags & AMDGPU_VM_DELAY_UPDATE) && !amdgpu_vm_debug) |
Christian König | dc54d3d | 2017-03-13 10:13:38 +0100 | [diff] [blame] | 657 | amdgpu_gem_va_update_vm(adev, &fpriv->vm, bo_va, &list, |
| 658 | args->operation); |
Junwei Zhang | b85891b | 2017-01-16 13:59:01 +0800 | [diff] [blame] | 659 | |
| 660 | error_backoff: |
Christian König | 2ffdaaf | 2017-01-27 15:58:43 +0100 | [diff] [blame] | 661 | ttm_eu_backoff_reservation(&ticket, &list); |
Chunming Zhou | e98c1b0 | 2015-11-13 15:22:04 +0800 | [diff] [blame] | 662 | |
Junwei Zhang | b85891b | 2017-01-16 13:59:01 +0800 | [diff] [blame] | 663 | error_unref: |
Cihangir Akturk | f62facc | 2017-08-03 14:58:16 +0300 | [diff] [blame] | 664 | drm_gem_object_put_unlocked(gobj); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 665 | return r; |
| 666 | } |
| 667 | |
| 668 | int amdgpu_gem_op_ioctl(struct drm_device *dev, void *data, |
| 669 | struct drm_file *filp) |
| 670 | { |
Christian König | e1eb899b4 | 2017-08-25 09:14:43 +0200 | [diff] [blame] | 671 | struct amdgpu_device *adev = dev->dev_private; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 672 | struct drm_amdgpu_gem_op *args = data; |
| 673 | struct drm_gem_object *gobj; |
| 674 | struct amdgpu_bo *robj; |
| 675 | int r; |
| 676 | |
Chris Wilson | a8ad0bd | 2016-05-09 11:04:54 +0100 | [diff] [blame] | 677 | gobj = drm_gem_object_lookup(filp, args->handle); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 678 | if (gobj == NULL) { |
| 679 | return -ENOENT; |
| 680 | } |
| 681 | robj = gem_to_amdgpu_bo(gobj); |
| 682 | |
| 683 | r = amdgpu_bo_reserve(robj, false); |
| 684 | if (unlikely(r)) |
| 685 | goto out; |
| 686 | |
| 687 | switch (args->op) { |
| 688 | case AMDGPU_GEM_OP_GET_GEM_CREATE_INFO: { |
| 689 | struct drm_amdgpu_gem_create_in info; |
Christian König | 7ecc245 | 2017-07-26 17:02:52 +0200 | [diff] [blame] | 690 | void __user *out = u64_to_user_ptr(args->value); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 691 | |
| 692 | info.bo_size = robj->gem_base.size; |
| 693 | info.alignment = robj->tbo.mem.page_alignment << PAGE_SHIFT; |
Kent Russell | 6d7d9c5 | 2017-08-08 07:58:01 -0400 | [diff] [blame] | 694 | info.domains = robj->preferred_domains; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 695 | info.domain_flags = robj->flags; |
Christian König | 4c28fb0 | 2015-08-28 17:27:54 +0200 | [diff] [blame] | 696 | amdgpu_bo_unreserve(robj); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 697 | if (copy_to_user(out, &info, sizeof(info))) |
| 698 | r = -EFAULT; |
| 699 | break; |
| 700 | } |
Marek Olšák | d8f65a2 | 2015-05-27 14:30:38 +0200 | [diff] [blame] | 701 | case AMDGPU_GEM_OP_SET_PLACEMENT: |
Christopher James Halse Rogers | 803d89a | 2017-04-03 13:31:22 +1000 | [diff] [blame] | 702 | if (robj->prime_shared_count && (args->value & AMDGPU_GEM_DOMAIN_VRAM)) { |
| 703 | r = -EINVAL; |
| 704 | amdgpu_bo_unreserve(robj); |
| 705 | break; |
| 706 | } |
Christian König | cc325d1 | 2016-02-08 11:08:35 +0100 | [diff] [blame] | 707 | if (amdgpu_ttm_tt_get_usermm(robj->tbo.ttm)) { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 708 | r = -EPERM; |
Christian König | 4c28fb0 | 2015-08-28 17:27:54 +0200 | [diff] [blame] | 709 | amdgpu_bo_unreserve(robj); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 710 | break; |
| 711 | } |
Kent Russell | 6d7d9c5 | 2017-08-08 07:58:01 -0400 | [diff] [blame] | 712 | robj->preferred_domains = args->value & (AMDGPU_GEM_DOMAIN_VRAM | |
Christian König | 1ea863f | 2015-12-18 22:13:12 +0100 | [diff] [blame] | 713 | AMDGPU_GEM_DOMAIN_GTT | |
| 714 | AMDGPU_GEM_DOMAIN_CPU); |
Kent Russell | 6d7d9c5 | 2017-08-08 07:58:01 -0400 | [diff] [blame] | 715 | robj->allowed_domains = robj->preferred_domains; |
Christian König | 1ea863f | 2015-12-18 22:13:12 +0100 | [diff] [blame] | 716 | if (robj->allowed_domains == AMDGPU_GEM_DOMAIN_VRAM) |
| 717 | robj->allowed_domains |= AMDGPU_GEM_DOMAIN_GTT; |
| 718 | |
Christian König | e1eb899b4 | 2017-08-25 09:14:43 +0200 | [diff] [blame] | 719 | if (robj->flags & AMDGPU_GEM_CREATE_VM_ALWAYS_VALID) |
| 720 | amdgpu_vm_bo_invalidate(adev, robj, true); |
| 721 | |
Christian König | 4c28fb0 | 2015-08-28 17:27:54 +0200 | [diff] [blame] | 722 | amdgpu_bo_unreserve(robj); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 723 | break; |
| 724 | default: |
Christian König | 4c28fb0 | 2015-08-28 17:27:54 +0200 | [diff] [blame] | 725 | amdgpu_bo_unreserve(robj); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 726 | r = -EINVAL; |
| 727 | } |
| 728 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 729 | out: |
Cihangir Akturk | f62facc | 2017-08-03 14:58:16 +0300 | [diff] [blame] | 730 | drm_gem_object_put_unlocked(gobj); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 731 | return r; |
| 732 | } |
| 733 | |
| 734 | int amdgpu_mode_dumb_create(struct drm_file *file_priv, |
| 735 | struct drm_device *dev, |
| 736 | struct drm_mode_create_dumb *args) |
| 737 | { |
| 738 | struct amdgpu_device *adev = dev->dev_private; |
| 739 | struct drm_gem_object *gobj; |
| 740 | uint32_t handle; |
| 741 | int r; |
| 742 | |
Laurent Pinchart | 8e911ab | 2016-10-18 01:41:17 +0300 | [diff] [blame] | 743 | args->pitch = amdgpu_align_pitch(adev, args->width, |
| 744 | DIV_ROUND_UP(args->bpp, 8), 0); |
Dan Carpenter | 54ef0b5 | 2015-09-23 14:00:59 +0300 | [diff] [blame] | 745 | args->size = (u64)args->pitch * args->height; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 746 | args->size = ALIGN(args->size, PAGE_SIZE); |
| 747 | |
| 748 | r = amdgpu_gem_object_create(adev, args->size, 0, |
| 749 | AMDGPU_GEM_DOMAIN_VRAM, |
Alex Deucher | 857d913 | 2015-08-27 00:14:16 -0400 | [diff] [blame] | 750 | AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED, |
Christian König | e1eb899b4 | 2017-08-25 09:14:43 +0200 | [diff] [blame] | 751 | false, NULL, &gobj); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 752 | if (r) |
| 753 | return -ENOMEM; |
| 754 | |
| 755 | r = drm_gem_handle_create(file_priv, gobj, &handle); |
| 756 | /* drop reference from allocate - handle holds it now */ |
Cihangir Akturk | f62facc | 2017-08-03 14:58:16 +0300 | [diff] [blame] | 757 | drm_gem_object_put_unlocked(gobj); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 758 | if (r) { |
| 759 | return r; |
| 760 | } |
| 761 | args->handle = handle; |
| 762 | return 0; |
| 763 | } |
| 764 | |
| 765 | #if defined(CONFIG_DEBUG_FS) |
Christian König | 7ea2356 | 2016-02-15 15:23:00 +0100 | [diff] [blame] | 766 | static int amdgpu_debugfs_gem_bo_info(int id, void *ptr, void *data) |
| 767 | { |
| 768 | struct drm_gem_object *gobj = ptr; |
| 769 | struct amdgpu_bo *bo = gem_to_amdgpu_bo(gobj); |
| 770 | struct seq_file *m = data; |
| 771 | |
| 772 | unsigned domain; |
| 773 | const char *placement; |
| 774 | unsigned pin_count; |
Christian König | b8e0e6e | 2017-06-26 15:19:30 +0200 | [diff] [blame] | 775 | uint64_t offset; |
Christian König | 7ea2356 | 2016-02-15 15:23:00 +0100 | [diff] [blame] | 776 | |
| 777 | domain = amdgpu_mem_type_to_domain(bo->tbo.mem.mem_type); |
| 778 | switch (domain) { |
| 779 | case AMDGPU_GEM_DOMAIN_VRAM: |
| 780 | placement = "VRAM"; |
| 781 | break; |
| 782 | case AMDGPU_GEM_DOMAIN_GTT: |
| 783 | placement = " GTT"; |
| 784 | break; |
| 785 | case AMDGPU_GEM_DOMAIN_CPU: |
| 786 | default: |
| 787 | placement = " CPU"; |
| 788 | break; |
| 789 | } |
Christian König | b8e0e6e | 2017-06-26 15:19:30 +0200 | [diff] [blame] | 790 | seq_printf(m, "\t0x%08x: %12ld byte %s", |
| 791 | id, amdgpu_bo_size(bo), placement); |
| 792 | |
| 793 | offset = ACCESS_ONCE(bo->tbo.mem.start); |
| 794 | if (offset != AMDGPU_BO_INVALID_OFFSET) |
| 795 | seq_printf(m, " @ 0x%010Lx", offset); |
Christian König | 7ea2356 | 2016-02-15 15:23:00 +0100 | [diff] [blame] | 796 | |
| 797 | pin_count = ACCESS_ONCE(bo->pin_count); |
| 798 | if (pin_count) |
| 799 | seq_printf(m, " pin count %d", pin_count); |
| 800 | seq_printf(m, "\n"); |
| 801 | |
| 802 | return 0; |
| 803 | } |
| 804 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 805 | static int amdgpu_debugfs_gem_info(struct seq_file *m, void *data) |
| 806 | { |
| 807 | struct drm_info_node *node = (struct drm_info_node *)m->private; |
| 808 | struct drm_device *dev = node->minor->dev; |
Christian König | 7ea2356 | 2016-02-15 15:23:00 +0100 | [diff] [blame] | 809 | struct drm_file *file; |
| 810 | int r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 811 | |
Daniel Vetter | 1d2ac40 | 2016-04-26 19:29:41 +0200 | [diff] [blame] | 812 | r = mutex_lock_interruptible(&dev->filelist_mutex); |
Christian König | 7ea2356 | 2016-02-15 15:23:00 +0100 | [diff] [blame] | 813 | if (r) |
| 814 | return r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 815 | |
Christian König | 7ea2356 | 2016-02-15 15:23:00 +0100 | [diff] [blame] | 816 | list_for_each_entry(file, &dev->filelist, lhead) { |
| 817 | struct task_struct *task; |
Christian König | b22e3ce | 2016-02-15 12:41:37 +0100 | [diff] [blame] | 818 | |
Christian König | 7ea2356 | 2016-02-15 15:23:00 +0100 | [diff] [blame] | 819 | /* |
| 820 | * Although we have a valid reference on file->pid, that does |
| 821 | * not guarantee that the task_struct who called get_pid() is |
| 822 | * still alive (e.g. get_pid(current) => fork() => exit()). |
| 823 | * Therefore, we need to protect this ->comm access using RCU. |
| 824 | */ |
| 825 | rcu_read_lock(); |
| 826 | task = pid_task(file->pid, PIDTYPE_PID); |
| 827 | seq_printf(m, "pid %8d command %s:\n", pid_nr(file->pid), |
| 828 | task ? task->comm : "<unknown>"); |
| 829 | rcu_read_unlock(); |
| 830 | |
| 831 | spin_lock(&file->table_lock); |
| 832 | idr_for_each(&file->object_idr, amdgpu_debugfs_gem_bo_info, m); |
| 833 | spin_unlock(&file->table_lock); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 834 | } |
Christian König | 7ea2356 | 2016-02-15 15:23:00 +0100 | [diff] [blame] | 835 | |
Daniel Vetter | 1d2ac40 | 2016-04-26 19:29:41 +0200 | [diff] [blame] | 836 | mutex_unlock(&dev->filelist_mutex); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 837 | return 0; |
| 838 | } |
| 839 | |
Nils Wallménius | 06ab683 | 2016-05-02 12:46:15 -0400 | [diff] [blame] | 840 | static const struct drm_info_list amdgpu_debugfs_gem_list[] = { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 841 | {"amdgpu_gem_info", &amdgpu_debugfs_gem_info, 0, NULL}, |
| 842 | }; |
| 843 | #endif |
| 844 | |
| 845 | int amdgpu_gem_debugfs_init(struct amdgpu_device *adev) |
| 846 | { |
| 847 | #if defined(CONFIG_DEBUG_FS) |
| 848 | return amdgpu_debugfs_add_files(adev, amdgpu_debugfs_gem_list, 1); |
| 849 | #endif |
| 850 | return 0; |
| 851 | } |