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 | */ |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 28 | #include <linux/dma-fence-array.h> |
Christian König | a9f87f6 | 2017-03-30 14:03:59 +0200 | [diff] [blame] | 29 | #include <linux/interval_tree_generic.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 | #include "amdgpu_trace.h" |
| 34 | |
| 35 | /* |
| 36 | * GPUVM |
| 37 | * GPUVM is similar to the legacy gart on older asics, however |
| 38 | * rather than there being a single global gart table |
| 39 | * for the entire GPU, there are multiple VM page tables active |
| 40 | * at any given time. The VM page tables can contain a mix |
| 41 | * vram pages and system memory pages and system memory pages |
| 42 | * can be mapped as snooped (cached system pages) or unsnooped |
| 43 | * (uncached system pages). |
| 44 | * Each VM has an ID associated with it and there is a page table |
| 45 | * associated with each VMID. When execting a command buffer, |
| 46 | * the kernel tells the the ring what VMID to use for that command |
| 47 | * buffer. VMIDs are allocated dynamically as commands are submitted. |
| 48 | * The userspace drivers maintain their own address space and the kernel |
| 49 | * sets up their pages tables accordingly when they submit their |
| 50 | * command buffers and a VMID is assigned. |
| 51 | * Cayman/Trinity support up to 8 active VMs at any given time; |
| 52 | * SI supports 16. |
| 53 | */ |
| 54 | |
Christian König | a9f87f6 | 2017-03-30 14:03:59 +0200 | [diff] [blame] | 55 | #define START(node) ((node)->start) |
| 56 | #define LAST(node) ((node)->last) |
| 57 | |
| 58 | INTERVAL_TREE_DEFINE(struct amdgpu_bo_va_mapping, rb, uint64_t, __subtree_last, |
| 59 | START, LAST, static, amdgpu_vm_it) |
| 60 | |
| 61 | #undef START |
| 62 | #undef LAST |
| 63 | |
Harish Kasiviswanathan | f4833c4 | 2016-04-21 10:40:18 -0400 | [diff] [blame] | 64 | /* Local structure. Encapsulate some VM table update parameters to reduce |
| 65 | * the number of function parameters |
| 66 | */ |
Christian König | 29efc4f | 2016-08-04 14:52:50 +0200 | [diff] [blame] | 67 | struct amdgpu_pte_update_params { |
Christian König | 27c5f36 | 2016-08-04 15:02:49 +0200 | [diff] [blame] | 68 | /* amdgpu device we do this update for */ |
| 69 | struct amdgpu_device *adev; |
Christian König | 49ac8a2 | 2016-10-13 15:09:08 +0200 | [diff] [blame] | 70 | /* optional amdgpu_vm we do this update for */ |
| 71 | struct amdgpu_vm *vm; |
Harish Kasiviswanathan | f4833c4 | 2016-04-21 10:40:18 -0400 | [diff] [blame] | 72 | /* address where to copy page table entries from */ |
| 73 | uint64_t src; |
Harish Kasiviswanathan | f4833c4 | 2016-04-21 10:40:18 -0400 | [diff] [blame] | 74 | /* indirect buffer to fill with commands */ |
| 75 | struct amdgpu_ib *ib; |
Christian König | afef8b8 | 2016-08-12 13:29:18 +0200 | [diff] [blame] | 76 | /* Function which actually does the update */ |
| 77 | void (*func)(struct amdgpu_pte_update_params *params, uint64_t pe, |
| 78 | uint64_t addr, unsigned count, uint32_t incr, |
Chunming Zhou | 6b77760 | 2016-09-21 16:19:19 +0800 | [diff] [blame] | 79 | uint64_t flags); |
Chunming Zhou | 4c7e885 | 2016-08-15 11:46:21 +0800 | [diff] [blame] | 80 | /* indicate update pt or its shadow */ |
| 81 | bool shadow; |
Harish Kasiviswanathan | f4833c4 | 2016-04-21 10:40:18 -0400 | [diff] [blame] | 82 | }; |
| 83 | |
Christian König | 284710f | 2017-01-30 11:09:31 +0100 | [diff] [blame] | 84 | /* Helper to disable partial resident texture feature from a fence callback */ |
| 85 | struct amdgpu_prt_cb { |
| 86 | struct amdgpu_device *adev; |
| 87 | struct dma_fence_cb cb; |
| 88 | }; |
| 89 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 90 | /** |
Christian König | 72a7ec5 | 2016-10-19 11:03:57 +0200 | [diff] [blame] | 91 | * amdgpu_vm_num_entries - return the number of entries in a PD/PT |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 92 | * |
| 93 | * @adev: amdgpu_device pointer |
| 94 | * |
Christian König | 72a7ec5 | 2016-10-19 11:03:57 +0200 | [diff] [blame] | 95 | * Calculate the number of entries in a page directory or page table. |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 96 | */ |
Christian König | 72a7ec5 | 2016-10-19 11:03:57 +0200 | [diff] [blame] | 97 | static unsigned amdgpu_vm_num_entries(struct amdgpu_device *adev, |
| 98 | unsigned level) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 99 | { |
Christian König | 72a7ec5 | 2016-10-19 11:03:57 +0200 | [diff] [blame] | 100 | if (level == 0) |
| 101 | /* For the root directory */ |
| 102 | return adev->vm_manager.max_pfn >> |
Zhang, Jerry | 36b32a6 | 2017-03-29 16:08:32 +0800 | [diff] [blame] | 103 | (adev->vm_manager.block_size * |
| 104 | adev->vm_manager.num_level); |
Christian König | 72a7ec5 | 2016-10-19 11:03:57 +0200 | [diff] [blame] | 105 | else if (level == adev->vm_manager.num_level) |
| 106 | /* For the page tables on the leaves */ |
Zhang, Jerry | 36b32a6 | 2017-03-29 16:08:32 +0800 | [diff] [blame] | 107 | return AMDGPU_VM_PTE_COUNT(adev); |
Christian König | 72a7ec5 | 2016-10-19 11:03:57 +0200 | [diff] [blame] | 108 | else |
| 109 | /* Everything in between */ |
Zhang, Jerry | 36b32a6 | 2017-03-29 16:08:32 +0800 | [diff] [blame] | 110 | return 1 << adev->vm_manager.block_size; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 111 | } |
| 112 | |
| 113 | /** |
Christian König | 72a7ec5 | 2016-10-19 11:03:57 +0200 | [diff] [blame] | 114 | * amdgpu_vm_bo_size - returns the size of the BOs in bytes |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 115 | * |
| 116 | * @adev: amdgpu_device pointer |
| 117 | * |
Christian König | 72a7ec5 | 2016-10-19 11:03:57 +0200 | [diff] [blame] | 118 | * Calculate the size of the BO for a page directory or page table in bytes. |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 119 | */ |
Christian König | 72a7ec5 | 2016-10-19 11:03:57 +0200 | [diff] [blame] | 120 | static unsigned amdgpu_vm_bo_size(struct amdgpu_device *adev, unsigned level) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 121 | { |
Christian König | 72a7ec5 | 2016-10-19 11:03:57 +0200 | [diff] [blame] | 122 | return AMDGPU_GPU_PAGE_ALIGN(amdgpu_vm_num_entries(adev, level) * 8); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 123 | } |
| 124 | |
| 125 | /** |
Christian König | 56467eb | 2015-12-11 15:16:32 +0100 | [diff] [blame] | 126 | * amdgpu_vm_get_pd_bo - add the VM PD to a validation list |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 127 | * |
| 128 | * @vm: vm providing the BOs |
Christian König | 3c0eea6 | 2015-12-11 14:39:05 +0100 | [diff] [blame] | 129 | * @validated: head of validation list |
Christian König | 56467eb | 2015-12-11 15:16:32 +0100 | [diff] [blame] | 130 | * @entry: entry to add |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 131 | * |
| 132 | * Add the page directory to the list of BOs to |
Christian König | 56467eb | 2015-12-11 15:16:32 +0100 | [diff] [blame] | 133 | * validate for command submission. |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 134 | */ |
Christian König | 56467eb | 2015-12-11 15:16:32 +0100 | [diff] [blame] | 135 | void amdgpu_vm_get_pd_bo(struct amdgpu_vm *vm, |
| 136 | struct list_head *validated, |
| 137 | struct amdgpu_bo_list_entry *entry) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 138 | { |
Christian König | 67003a1 | 2016-10-12 14:46:26 +0200 | [diff] [blame] | 139 | entry->robj = vm->root.bo; |
Christian König | 56467eb | 2015-12-11 15:16:32 +0100 | [diff] [blame] | 140 | entry->priority = 0; |
Christian König | 67003a1 | 2016-10-12 14:46:26 +0200 | [diff] [blame] | 141 | entry->tv.bo = &entry->robj->tbo; |
Christian König | 56467eb | 2015-12-11 15:16:32 +0100 | [diff] [blame] | 142 | entry->tv.shared = true; |
Christian König | 2f568db | 2016-02-23 12:36:59 +0100 | [diff] [blame] | 143 | entry->user_pages = NULL; |
Christian König | 56467eb | 2015-12-11 15:16:32 +0100 | [diff] [blame] | 144 | list_add(&entry->tv.head, validated); |
| 145 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 146 | |
Christian König | 56467eb | 2015-12-11 15:16:32 +0100 | [diff] [blame] | 147 | /** |
Christian König | 670fecc | 2016-10-12 15:36:57 +0200 | [diff] [blame] | 148 | * amdgpu_vm_validate_layer - validate a single page table level |
| 149 | * |
| 150 | * @parent: parent page table level |
| 151 | * @validate: callback to do the validation |
| 152 | * @param: parameter for the validation callback |
| 153 | * |
| 154 | * Validate the page table BOs on command submission if neccessary. |
| 155 | */ |
| 156 | static int amdgpu_vm_validate_level(struct amdgpu_vm_pt *parent, |
| 157 | int (*validate)(void *, struct amdgpu_bo *), |
| 158 | void *param) |
| 159 | { |
| 160 | unsigned i; |
| 161 | int r; |
| 162 | |
| 163 | if (!parent->entries) |
| 164 | return 0; |
| 165 | |
| 166 | for (i = 0; i <= parent->last_entry_used; ++i) { |
| 167 | struct amdgpu_vm_pt *entry = &parent->entries[i]; |
| 168 | |
| 169 | if (!entry->bo) |
| 170 | continue; |
| 171 | |
| 172 | r = validate(param, entry->bo); |
| 173 | if (r) |
| 174 | return r; |
| 175 | |
| 176 | /* |
| 177 | * Recurse into the sub directory. This is harmless because we |
| 178 | * have only a maximum of 5 layers. |
| 179 | */ |
| 180 | r = amdgpu_vm_validate_level(entry, validate, param); |
| 181 | if (r) |
| 182 | return r; |
| 183 | } |
| 184 | |
| 185 | return r; |
| 186 | } |
| 187 | |
| 188 | /** |
Christian König | f7da30d | 2016-09-28 12:03:04 +0200 | [diff] [blame] | 189 | * amdgpu_vm_validate_pt_bos - validate the page table BOs |
Christian König | 56467eb | 2015-12-11 15:16:32 +0100 | [diff] [blame] | 190 | * |
Christian König | 5a712a8 | 2016-06-21 16:28:15 +0200 | [diff] [blame] | 191 | * @adev: amdgpu device pointer |
Christian König | 56467eb | 2015-12-11 15:16:32 +0100 | [diff] [blame] | 192 | * @vm: vm providing the BOs |
Christian König | f7da30d | 2016-09-28 12:03:04 +0200 | [diff] [blame] | 193 | * @validate: callback to do the validation |
| 194 | * @param: parameter for the validation callback |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 195 | * |
Christian König | f7da30d | 2016-09-28 12:03:04 +0200 | [diff] [blame] | 196 | * Validate the page table BOs on command submission if neccessary. |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 197 | */ |
Christian König | f7da30d | 2016-09-28 12:03:04 +0200 | [diff] [blame] | 198 | int amdgpu_vm_validate_pt_bos(struct amdgpu_device *adev, struct amdgpu_vm *vm, |
| 199 | int (*validate)(void *p, struct amdgpu_bo *bo), |
| 200 | void *param) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 201 | { |
Christian König | 5a712a8 | 2016-06-21 16:28:15 +0200 | [diff] [blame] | 202 | uint64_t num_evictions; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 203 | |
Christian König | 5a712a8 | 2016-06-21 16:28:15 +0200 | [diff] [blame] | 204 | /* We only need to validate the page tables |
| 205 | * if they aren't already valid. |
| 206 | */ |
| 207 | num_evictions = atomic64_read(&adev->num_evictions); |
| 208 | if (num_evictions == vm->last_eviction_counter) |
Christian König | f7da30d | 2016-09-28 12:03:04 +0200 | [diff] [blame] | 209 | return 0; |
Christian König | 5a712a8 | 2016-06-21 16:28:15 +0200 | [diff] [blame] | 210 | |
Christian König | 670fecc | 2016-10-12 15:36:57 +0200 | [diff] [blame] | 211 | return amdgpu_vm_validate_level(&vm->root, validate, param); |
Christian König | eceb8a1 | 2016-01-11 15:35:21 +0100 | [diff] [blame] | 212 | } |
| 213 | |
| 214 | /** |
Christian König | d711e13 | 2016-10-13 10:20:53 +0200 | [diff] [blame] | 215 | * amdgpu_vm_move_level_in_lru - move one level of PT BOs to the LRU tail |
| 216 | * |
| 217 | * @adev: amdgpu device instance |
| 218 | * @vm: vm providing the BOs |
| 219 | * |
| 220 | * Move the PT BOs to the tail of the LRU. |
| 221 | */ |
| 222 | static void amdgpu_vm_move_level_in_lru(struct amdgpu_vm_pt *parent) |
| 223 | { |
| 224 | unsigned i; |
| 225 | |
| 226 | if (!parent->entries) |
| 227 | return; |
| 228 | |
| 229 | for (i = 0; i <= parent->last_entry_used; ++i) { |
| 230 | struct amdgpu_vm_pt *entry = &parent->entries[i]; |
| 231 | |
| 232 | if (!entry->bo) |
| 233 | continue; |
| 234 | |
| 235 | ttm_bo_move_to_lru_tail(&entry->bo->tbo); |
| 236 | amdgpu_vm_move_level_in_lru(entry); |
| 237 | } |
| 238 | } |
| 239 | |
| 240 | /** |
Christian König | eceb8a1 | 2016-01-11 15:35:21 +0100 | [diff] [blame] | 241 | * amdgpu_vm_move_pt_bos_in_lru - move the PT BOs to the LRU tail |
| 242 | * |
| 243 | * @adev: amdgpu device instance |
| 244 | * @vm: vm providing the BOs |
| 245 | * |
| 246 | * Move the PT BOs to the tail of the LRU. |
| 247 | */ |
| 248 | void amdgpu_vm_move_pt_bos_in_lru(struct amdgpu_device *adev, |
| 249 | struct amdgpu_vm *vm) |
| 250 | { |
| 251 | struct ttm_bo_global *glob = adev->mman.bdev.glob; |
Christian König | eceb8a1 | 2016-01-11 15:35:21 +0100 | [diff] [blame] | 252 | |
| 253 | spin_lock(&glob->lru_lock); |
Christian König | d711e13 | 2016-10-13 10:20:53 +0200 | [diff] [blame] | 254 | amdgpu_vm_move_level_in_lru(&vm->root); |
Christian König | eceb8a1 | 2016-01-11 15:35:21 +0100 | [diff] [blame] | 255 | spin_unlock(&glob->lru_lock); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 256 | } |
| 257 | |
Christian König | f566ceb | 2016-10-27 20:04:38 +0200 | [diff] [blame] | 258 | /** |
| 259 | * amdgpu_vm_alloc_levels - allocate the PD/PT levels |
| 260 | * |
| 261 | * @adev: amdgpu_device pointer |
| 262 | * @vm: requested vm |
| 263 | * @saddr: start of the address range |
| 264 | * @eaddr: end of the address range |
| 265 | * |
| 266 | * Make sure the page directories and page tables are allocated |
| 267 | */ |
| 268 | static int amdgpu_vm_alloc_levels(struct amdgpu_device *adev, |
| 269 | struct amdgpu_vm *vm, |
| 270 | struct amdgpu_vm_pt *parent, |
| 271 | uint64_t saddr, uint64_t eaddr, |
| 272 | unsigned level) |
| 273 | { |
| 274 | unsigned shift = (adev->vm_manager.num_level - level) * |
Zhang, Jerry | 36b32a6 | 2017-03-29 16:08:32 +0800 | [diff] [blame] | 275 | adev->vm_manager.block_size; |
Christian König | f566ceb | 2016-10-27 20:04:38 +0200 | [diff] [blame] | 276 | unsigned pt_idx, from, to; |
| 277 | int r; |
| 278 | |
| 279 | if (!parent->entries) { |
| 280 | unsigned num_entries = amdgpu_vm_num_entries(adev, level); |
| 281 | |
| 282 | parent->entries = drm_calloc_large(num_entries, |
| 283 | sizeof(struct amdgpu_vm_pt)); |
| 284 | if (!parent->entries) |
| 285 | return -ENOMEM; |
| 286 | memset(parent->entries, 0 , sizeof(struct amdgpu_vm_pt)); |
| 287 | } |
| 288 | |
Felix Kuehling | 1866bac | 2017-03-28 20:36:12 -0400 | [diff] [blame] | 289 | from = saddr >> shift; |
| 290 | to = eaddr >> shift; |
| 291 | if (from >= amdgpu_vm_num_entries(adev, level) || |
| 292 | to >= amdgpu_vm_num_entries(adev, level)) |
| 293 | return -EINVAL; |
Christian König | f566ceb | 2016-10-27 20:04:38 +0200 | [diff] [blame] | 294 | |
| 295 | if (to > parent->last_entry_used) |
| 296 | parent->last_entry_used = to; |
| 297 | |
| 298 | ++level; |
Felix Kuehling | 1866bac | 2017-03-28 20:36:12 -0400 | [diff] [blame] | 299 | saddr = saddr & ((1 << shift) - 1); |
| 300 | eaddr = eaddr & ((1 << shift) - 1); |
Christian König | f566ceb | 2016-10-27 20:04:38 +0200 | [diff] [blame] | 301 | |
| 302 | /* walk over the address space and allocate the page tables */ |
| 303 | for (pt_idx = from; pt_idx <= to; ++pt_idx) { |
| 304 | struct reservation_object *resv = vm->root.bo->tbo.resv; |
| 305 | struct amdgpu_vm_pt *entry = &parent->entries[pt_idx]; |
| 306 | struct amdgpu_bo *pt; |
| 307 | |
| 308 | if (!entry->bo) { |
| 309 | r = amdgpu_bo_create(adev, |
| 310 | amdgpu_vm_bo_size(adev, level), |
| 311 | AMDGPU_GPU_PAGE_SIZE, true, |
| 312 | AMDGPU_GEM_DOMAIN_VRAM, |
| 313 | AMDGPU_GEM_CREATE_NO_CPU_ACCESS | |
| 314 | AMDGPU_GEM_CREATE_SHADOW | |
| 315 | AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS | |
| 316 | AMDGPU_GEM_CREATE_VRAM_CLEARED, |
| 317 | NULL, resv, &pt); |
| 318 | if (r) |
| 319 | return r; |
| 320 | |
| 321 | /* Keep a reference to the root directory to avoid |
| 322 | * freeing them up in the wrong order. |
| 323 | */ |
| 324 | pt->parent = amdgpu_bo_ref(vm->root.bo); |
| 325 | |
| 326 | entry->bo = pt; |
| 327 | entry->addr = 0; |
| 328 | } |
| 329 | |
| 330 | if (level < adev->vm_manager.num_level) { |
Felix Kuehling | 1866bac | 2017-03-28 20:36:12 -0400 | [diff] [blame] | 331 | uint64_t sub_saddr = (pt_idx == from) ? saddr : 0; |
| 332 | uint64_t sub_eaddr = (pt_idx == to) ? eaddr : |
| 333 | ((1 << shift) - 1); |
| 334 | r = amdgpu_vm_alloc_levels(adev, vm, entry, sub_saddr, |
| 335 | sub_eaddr, level); |
Christian König | f566ceb | 2016-10-27 20:04:38 +0200 | [diff] [blame] | 336 | if (r) |
| 337 | return r; |
| 338 | } |
| 339 | } |
| 340 | |
| 341 | return 0; |
| 342 | } |
| 343 | |
Christian König | 663e457 | 2017-03-13 10:13:37 +0100 | [diff] [blame] | 344 | /** |
| 345 | * amdgpu_vm_alloc_pts - Allocate page tables. |
| 346 | * |
| 347 | * @adev: amdgpu_device pointer |
| 348 | * @vm: VM to allocate page tables for |
| 349 | * @saddr: Start address which needs to be allocated |
| 350 | * @size: Size from start address we need. |
| 351 | * |
| 352 | * Make sure the page tables are allocated. |
| 353 | */ |
| 354 | int amdgpu_vm_alloc_pts(struct amdgpu_device *adev, |
| 355 | struct amdgpu_vm *vm, |
| 356 | uint64_t saddr, uint64_t size) |
| 357 | { |
Felix Kuehling | 22770e5 | 2017-03-28 20:24:53 -0400 | [diff] [blame] | 358 | uint64_t last_pfn; |
Christian König | 663e457 | 2017-03-13 10:13:37 +0100 | [diff] [blame] | 359 | uint64_t eaddr; |
Christian König | 663e457 | 2017-03-13 10:13:37 +0100 | [diff] [blame] | 360 | |
| 361 | /* validate the parameters */ |
| 362 | if (saddr & AMDGPU_GPU_PAGE_MASK || size & AMDGPU_GPU_PAGE_MASK) |
| 363 | return -EINVAL; |
| 364 | |
| 365 | eaddr = saddr + size - 1; |
| 366 | last_pfn = eaddr / AMDGPU_GPU_PAGE_SIZE; |
| 367 | if (last_pfn >= adev->vm_manager.max_pfn) { |
Felix Kuehling | 22770e5 | 2017-03-28 20:24:53 -0400 | [diff] [blame] | 368 | dev_err(adev->dev, "va above limit (0x%08llX >= 0x%08llX)\n", |
Christian König | 663e457 | 2017-03-13 10:13:37 +0100 | [diff] [blame] | 369 | last_pfn, adev->vm_manager.max_pfn); |
| 370 | return -EINVAL; |
| 371 | } |
| 372 | |
| 373 | saddr /= AMDGPU_GPU_PAGE_SIZE; |
| 374 | eaddr /= AMDGPU_GPU_PAGE_SIZE; |
| 375 | |
Christian König | f566ceb | 2016-10-27 20:04:38 +0200 | [diff] [blame] | 376 | return amdgpu_vm_alloc_levels(adev, vm, &vm->root, saddr, eaddr, 0); |
Christian König | 663e457 | 2017-03-13 10:13:37 +0100 | [diff] [blame] | 377 | } |
| 378 | |
Christian König | 641e940 | 2017-04-03 13:59:25 +0200 | [diff] [blame] | 379 | /** |
| 380 | * amdgpu_vm_had_gpu_reset - check if reset occured since last use |
| 381 | * |
| 382 | * @adev: amdgpu_device pointer |
| 383 | * @id: VMID structure |
| 384 | * |
| 385 | * Check if GPU reset occured since last use of the VMID. |
| 386 | */ |
| 387 | static bool amdgpu_vm_had_gpu_reset(struct amdgpu_device *adev, |
| 388 | struct amdgpu_vm_id *id) |
Chunming Zhou | 192b7dc | 2016-06-29 14:01:15 +0800 | [diff] [blame] | 389 | { |
| 390 | return id->current_gpu_reset_count != |
Christian König | 641e940 | 2017-04-03 13:59:25 +0200 | [diff] [blame] | 391 | atomic_read(&adev->gpu_reset_counter); |
Chunming Zhou | 192b7dc | 2016-06-29 14:01:15 +0800 | [diff] [blame] | 392 | } |
| 393 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 394 | /** |
| 395 | * amdgpu_vm_grab_id - allocate the next free VMID |
| 396 | * |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 397 | * @vm: vm to allocate id for |
Christian König | 7f8a529 | 2015-07-20 16:09:40 +0200 | [diff] [blame] | 398 | * @ring: ring we want to submit job to |
| 399 | * @sync: sync object where we add dependencies |
Christian König | 94dd0a4 | 2016-01-18 17:01:42 +0100 | [diff] [blame] | 400 | * @fence: fence protecting ID from reuse |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 401 | * |
Christian König | 7f8a529 | 2015-07-20 16:09:40 +0200 | [diff] [blame] | 402 | * Allocate an id for the vm, adding fences to the sync obj as necessary. |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 403 | */ |
Christian König | 7f8a529 | 2015-07-20 16:09:40 +0200 | [diff] [blame] | 404 | int amdgpu_vm_grab_id(struct amdgpu_vm *vm, struct amdgpu_ring *ring, |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 405 | struct amdgpu_sync *sync, struct dma_fence *fence, |
Chunming Zhou | fd53be3 | 2016-07-01 17:59:01 +0800 | [diff] [blame] | 406 | struct amdgpu_job *job) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 407 | { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 408 | struct amdgpu_device *adev = ring->adev; |
Christian König | 2e81984 | 2017-03-30 16:50:47 +0200 | [diff] [blame] | 409 | unsigned vmhub = ring->funcs->vmhub; |
Christian König | 7645670 | 2017-04-06 17:52:39 +0200 | [diff] [blame] | 410 | struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub]; |
Christian König | 090b767 | 2016-07-08 10:21:02 +0200 | [diff] [blame] | 411 | uint64_t fence_context = adev->fence_context + ring->idx; |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 412 | struct dma_fence *updates = sync->last_vm_update; |
Christian König | 8d76001e | 2016-05-23 16:00:32 +0200 | [diff] [blame] | 413 | struct amdgpu_vm_id *id, *idle; |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 414 | struct dma_fence **fences; |
Christian König | 1fbb2e9 | 2016-06-01 10:47:36 +0200 | [diff] [blame] | 415 | unsigned i; |
| 416 | int r = 0; |
| 417 | |
Christian König | 7645670 | 2017-04-06 17:52:39 +0200 | [diff] [blame] | 418 | fences = kmalloc_array(sizeof(void *), id_mgr->num_ids, GFP_KERNEL); |
Christian König | 1fbb2e9 | 2016-06-01 10:47:36 +0200 | [diff] [blame] | 419 | if (!fences) |
| 420 | return -ENOMEM; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 421 | |
Christian König | 7645670 | 2017-04-06 17:52:39 +0200 | [diff] [blame] | 422 | mutex_lock(&id_mgr->lock); |
Christian König | 94dd0a4 | 2016-01-18 17:01:42 +0100 | [diff] [blame] | 423 | |
Christian König | 36fd7c5 | 2016-05-23 15:30:08 +0200 | [diff] [blame] | 424 | /* Check if we have an idle VMID */ |
Christian König | 1fbb2e9 | 2016-06-01 10:47:36 +0200 | [diff] [blame] | 425 | i = 0; |
Christian König | 7645670 | 2017-04-06 17:52:39 +0200 | [diff] [blame] | 426 | list_for_each_entry(idle, &id_mgr->ids_lru, list) { |
Christian König | 1fbb2e9 | 2016-06-01 10:47:36 +0200 | [diff] [blame] | 427 | fences[i] = amdgpu_sync_peek_fence(&idle->active, ring); |
| 428 | if (!fences[i]) |
Christian König | 36fd7c5 | 2016-05-23 15:30:08 +0200 | [diff] [blame] | 429 | break; |
Christian König | 1fbb2e9 | 2016-06-01 10:47:36 +0200 | [diff] [blame] | 430 | ++i; |
Christian König | 36fd7c5 | 2016-05-23 15:30:08 +0200 | [diff] [blame] | 431 | } |
Christian König | bcb1ba3 | 2016-03-08 15:40:11 +0100 | [diff] [blame] | 432 | |
Christian König | 1fbb2e9 | 2016-06-01 10:47:36 +0200 | [diff] [blame] | 433 | /* If we can't find a idle VMID to use, wait till one becomes available */ |
Christian König | 7645670 | 2017-04-06 17:52:39 +0200 | [diff] [blame] | 434 | if (&idle->list == &id_mgr->ids_lru) { |
Christian König | 1fbb2e9 | 2016-06-01 10:47:36 +0200 | [diff] [blame] | 435 | u64 fence_context = adev->vm_manager.fence_context + ring->idx; |
| 436 | unsigned seqno = ++adev->vm_manager.seqno[ring->idx]; |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 437 | struct dma_fence_array *array; |
Christian König | 1fbb2e9 | 2016-06-01 10:47:36 +0200 | [diff] [blame] | 438 | unsigned j; |
Christian König | 8d76001e | 2016-05-23 16:00:32 +0200 | [diff] [blame] | 439 | |
Christian König | 1fbb2e9 | 2016-06-01 10:47:36 +0200 | [diff] [blame] | 440 | for (j = 0; j < i; ++j) |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 441 | dma_fence_get(fences[j]); |
Christian König | 8d76001e | 2016-05-23 16:00:32 +0200 | [diff] [blame] | 442 | |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 443 | array = dma_fence_array_create(i, fences, fence_context, |
Christian König | 1fbb2e9 | 2016-06-01 10:47:36 +0200 | [diff] [blame] | 444 | seqno, true); |
| 445 | if (!array) { |
| 446 | for (j = 0; j < i; ++j) |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 447 | dma_fence_put(fences[j]); |
Christian König | 1fbb2e9 | 2016-06-01 10:47:36 +0200 | [diff] [blame] | 448 | kfree(fences); |
| 449 | r = -ENOMEM; |
| 450 | goto error; |
| 451 | } |
Christian König | 8d76001e | 2016-05-23 16:00:32 +0200 | [diff] [blame] | 452 | |
Christian König | 8d76001e | 2016-05-23 16:00:32 +0200 | [diff] [blame] | 453 | |
Christian König | 1fbb2e9 | 2016-06-01 10:47:36 +0200 | [diff] [blame] | 454 | r = amdgpu_sync_fence(ring->adev, sync, &array->base); |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 455 | dma_fence_put(&array->base); |
Christian König | 1fbb2e9 | 2016-06-01 10:47:36 +0200 | [diff] [blame] | 456 | if (r) |
| 457 | goto error; |
Christian König | 8d76001e | 2016-05-23 16:00:32 +0200 | [diff] [blame] | 458 | |
Christian König | 7645670 | 2017-04-06 17:52:39 +0200 | [diff] [blame] | 459 | mutex_unlock(&id_mgr->lock); |
Christian König | 1fbb2e9 | 2016-06-01 10:47:36 +0200 | [diff] [blame] | 460 | return 0; |
Christian König | 8d76001e | 2016-05-23 16:00:32 +0200 | [diff] [blame] | 461 | |
Christian König | 1fbb2e9 | 2016-06-01 10:47:36 +0200 | [diff] [blame] | 462 | } |
| 463 | kfree(fences); |
Christian König | 8d76001e | 2016-05-23 16:00:32 +0200 | [diff] [blame] | 464 | |
Christian König | 87c910d | 2017-03-30 16:56:20 +0200 | [diff] [blame] | 465 | job->vm_needs_flush = false; |
Christian König | 1fbb2e9 | 2016-06-01 10:47:36 +0200 | [diff] [blame] | 466 | /* Check if we can use a VMID already assigned to this VM */ |
Christian König | 7645670 | 2017-04-06 17:52:39 +0200 | [diff] [blame] | 467 | list_for_each_entry_reverse(id, &id_mgr->ids_lru, list) { |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 468 | struct dma_fence *flushed; |
Christian König | 87c910d | 2017-03-30 16:56:20 +0200 | [diff] [blame] | 469 | bool needs_flush = false; |
Christian König | 8d76001e | 2016-05-23 16:00:32 +0200 | [diff] [blame] | 470 | |
Christian König | 1fbb2e9 | 2016-06-01 10:47:36 +0200 | [diff] [blame] | 471 | /* Check all the prerequisites to using this VMID */ |
Christian König | 641e940 | 2017-04-03 13:59:25 +0200 | [diff] [blame] | 472 | if (amdgpu_vm_had_gpu_reset(adev, id)) |
Chunming Zhou | 6adb051 | 2016-06-27 17:06:01 +0800 | [diff] [blame] | 473 | continue; |
Christian König | 1fbb2e9 | 2016-06-01 10:47:36 +0200 | [diff] [blame] | 474 | |
| 475 | if (atomic64_read(&id->owner) != vm->client_id) |
| 476 | continue; |
| 477 | |
Chunming Zhou | fd53be3 | 2016-07-01 17:59:01 +0800 | [diff] [blame] | 478 | if (job->vm_pd_addr != id->pd_gpu_addr) |
Christian König | 1fbb2e9 | 2016-06-01 10:47:36 +0200 | [diff] [blame] | 479 | continue; |
| 480 | |
Christian König | 87c910d | 2017-03-30 16:56:20 +0200 | [diff] [blame] | 481 | if (!id->last_flush || |
| 482 | (id->last_flush->context != fence_context && |
| 483 | !dma_fence_is_signaled(id->last_flush))) |
| 484 | needs_flush = true; |
Christian König | 1fbb2e9 | 2016-06-01 10:47:36 +0200 | [diff] [blame] | 485 | |
| 486 | flushed = id->flushed_updates; |
Christian König | 87c910d | 2017-03-30 16:56:20 +0200 | [diff] [blame] | 487 | if (updates && (!flushed || dma_fence_is_later(updates, flushed))) |
| 488 | needs_flush = true; |
| 489 | |
| 490 | /* Concurrent flushes are only possible starting with Vega10 */ |
| 491 | if (adev->asic_type < CHIP_VEGA10 && needs_flush) |
Christian König | 1fbb2e9 | 2016-06-01 10:47:36 +0200 | [diff] [blame] | 492 | continue; |
| 493 | |
Christian König | 3dab83b | 2016-06-01 13:31:17 +0200 | [diff] [blame] | 494 | /* Good we can use this VMID. Remember this submission as |
| 495 | * user of the VMID. |
| 496 | */ |
Christian König | 1fbb2e9 | 2016-06-01 10:47:36 +0200 | [diff] [blame] | 497 | r = amdgpu_sync_fence(ring->adev, &id->active, fence); |
| 498 | if (r) |
| 499 | goto error; |
Christian König | 8d76001e | 2016-05-23 16:00:32 +0200 | [diff] [blame] | 500 | |
Christian König | 87c910d | 2017-03-30 16:56:20 +0200 | [diff] [blame] | 501 | if (updates && (!flushed || dma_fence_is_later(updates, flushed))) { |
| 502 | dma_fence_put(id->flushed_updates); |
| 503 | id->flushed_updates = dma_fence_get(updates); |
| 504 | } |
Christian König | 8d76001e | 2016-05-23 16:00:32 +0200 | [diff] [blame] | 505 | |
Christian König | 87c910d | 2017-03-30 16:56:20 +0200 | [diff] [blame] | 506 | if (needs_flush) |
| 507 | goto needs_flush; |
| 508 | else |
| 509 | goto no_flush_needed; |
Christian König | 8d76001e | 2016-05-23 16:00:32 +0200 | [diff] [blame] | 510 | |
Christian König | 4f618e7 | 2017-04-06 15:18:21 +0200 | [diff] [blame] | 511 | }; |
Chunming Zhou | 8e9fbeb | 2016-03-17 11:41:37 +0800 | [diff] [blame] | 512 | |
Christian König | 1fbb2e9 | 2016-06-01 10:47:36 +0200 | [diff] [blame] | 513 | /* Still no ID to use? Then use the idle one found earlier */ |
| 514 | id = idle; |
| 515 | |
| 516 | /* Remember this submission as user of the VMID */ |
| 517 | r = amdgpu_sync_fence(ring->adev, &id->active, fence); |
Christian König | 832a902 | 2016-02-15 12:33:02 +0100 | [diff] [blame] | 518 | if (r) |
| 519 | goto error; |
Christian König | 4ff37a8 | 2016-02-26 16:18:26 +0100 | [diff] [blame] | 520 | |
Christian König | 87c910d | 2017-03-30 16:56:20 +0200 | [diff] [blame] | 521 | id->pd_gpu_addr = job->vm_pd_addr; |
| 522 | dma_fence_put(id->flushed_updates); |
| 523 | id->flushed_updates = dma_fence_get(updates); |
| 524 | id->current_gpu_reset_count = atomic_read(&adev->gpu_reset_counter); |
| 525 | atomic64_set(&id->owner, vm->client_id); |
| 526 | |
| 527 | needs_flush: |
| 528 | job->vm_needs_flush = true; |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 529 | dma_fence_put(id->last_flush); |
Christian König | 41d9eb2 | 2016-03-01 16:46:18 +0100 | [diff] [blame] | 530 | id->last_flush = NULL; |
| 531 | |
Christian König | 87c910d | 2017-03-30 16:56:20 +0200 | [diff] [blame] | 532 | no_flush_needed: |
Christian König | 7645670 | 2017-04-06 17:52:39 +0200 | [diff] [blame] | 533 | list_move_tail(&id->list, &id_mgr->ids_lru); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 534 | |
Christian König | 7645670 | 2017-04-06 17:52:39 +0200 | [diff] [blame] | 535 | job->vm_id = id - id_mgr->ids; |
Christian König | c5296d1 | 2017-04-07 15:31:13 +0200 | [diff] [blame] | 536 | trace_amdgpu_vm_grab_id(vm, ring, job); |
Christian König | 832a902 | 2016-02-15 12:33:02 +0100 | [diff] [blame] | 537 | |
| 538 | error: |
Christian König | 7645670 | 2017-04-06 17:52:39 +0200 | [diff] [blame] | 539 | mutex_unlock(&id_mgr->lock); |
Christian König | a9a78b3 | 2016-01-21 10:19:11 +0100 | [diff] [blame] | 540 | return r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 541 | } |
| 542 | |
Chunming Zhou | 1e9ef26 | 2017-04-20 16:18:48 +0800 | [diff] [blame^] | 543 | static void amdgpu_vm_free_reserved_vmid(struct amdgpu_device *adev, |
| 544 | struct amdgpu_vm *vm, |
| 545 | unsigned vmhub) |
| 546 | { |
| 547 | struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub]; |
| 548 | |
| 549 | mutex_lock(&id_mgr->lock); |
| 550 | if (vm->reserved_vmid[vmhub]) { |
| 551 | list_add(&vm->reserved_vmid[vmhub]->list, |
| 552 | &id_mgr->ids_lru); |
| 553 | vm->reserved_vmid[vmhub] = NULL; |
| 554 | } |
| 555 | mutex_unlock(&id_mgr->lock); |
| 556 | } |
| 557 | |
| 558 | static int amdgpu_vm_alloc_reserved_vmid(struct amdgpu_device *adev, |
| 559 | struct amdgpu_vm *vm, |
| 560 | unsigned vmhub) |
| 561 | { |
| 562 | struct amdgpu_vm_id_manager *id_mgr; |
| 563 | struct amdgpu_vm_id *idle; |
| 564 | int r = 0; |
| 565 | |
| 566 | id_mgr = &adev->vm_manager.id_mgr[vmhub]; |
| 567 | mutex_lock(&id_mgr->lock); |
| 568 | if (vm->reserved_vmid[vmhub]) |
| 569 | goto unlock; |
| 570 | /* Select the first entry VMID */ |
| 571 | idle = list_first_entry(&id_mgr->ids_lru, struct amdgpu_vm_id, list); |
| 572 | list_del_init(&idle->list); |
| 573 | vm->reserved_vmid[vmhub] = idle; |
| 574 | mutex_unlock(&id_mgr->lock); |
| 575 | |
| 576 | return 0; |
| 577 | unlock: |
| 578 | mutex_unlock(&id_mgr->lock); |
| 579 | return r; |
| 580 | } |
| 581 | |
Alex Deucher | 93dcc37 | 2016-06-17 17:05:15 -0400 | [diff] [blame] | 582 | static bool amdgpu_vm_ring_has_compute_vm_bug(struct amdgpu_ring *ring) |
| 583 | { |
| 584 | struct amdgpu_device *adev = ring->adev; |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 585 | const struct amdgpu_ip_block *ip_block; |
Alex Deucher | 93dcc37 | 2016-06-17 17:05:15 -0400 | [diff] [blame] | 586 | |
Christian König | 21cd942 | 2016-10-05 15:36:39 +0200 | [diff] [blame] | 587 | if (ring->funcs->type != AMDGPU_RING_TYPE_COMPUTE) |
Alex Deucher | 93dcc37 | 2016-06-17 17:05:15 -0400 | [diff] [blame] | 588 | /* only compute rings */ |
| 589 | return false; |
| 590 | |
| 591 | ip_block = amdgpu_get_ip_block(adev, AMD_IP_BLOCK_TYPE_GFX); |
| 592 | if (!ip_block) |
| 593 | return false; |
| 594 | |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 595 | if (ip_block->version->major <= 7) { |
Alex Deucher | 93dcc37 | 2016-06-17 17:05:15 -0400 | [diff] [blame] | 596 | /* gfx7 has no workaround */ |
| 597 | return true; |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 598 | } else if (ip_block->version->major == 8) { |
Alex Deucher | 93dcc37 | 2016-06-17 17:05:15 -0400 | [diff] [blame] | 599 | if (adev->gfx.mec_fw_version >= 673) |
| 600 | /* gfx8 is fixed in MEC firmware 673 */ |
| 601 | return false; |
| 602 | else |
| 603 | return true; |
| 604 | } |
| 605 | return false; |
| 606 | } |
| 607 | |
Alex Xie | e60f8db | 2017-03-09 11:36:26 -0500 | [diff] [blame] | 608 | static u64 amdgpu_vm_adjust_mc_addr(struct amdgpu_device *adev, u64 mc_addr) |
| 609 | { |
| 610 | u64 addr = mc_addr; |
| 611 | |
Christian König | f75e237 | 2017-03-30 15:55:07 +0200 | [diff] [blame] | 612 | if (adev->gart.gart_funcs->adjust_mc_addr) |
| 613 | addr = adev->gart.gart_funcs->adjust_mc_addr(adev, addr); |
Alex Xie | e60f8db | 2017-03-09 11:36:26 -0500 | [diff] [blame] | 614 | |
| 615 | return addr; |
| 616 | } |
| 617 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 618 | /** |
| 619 | * amdgpu_vm_flush - hardware flush the vm |
| 620 | * |
| 621 | * @ring: ring to use for flush |
Christian König | cffadc8 | 2016-03-01 13:34:49 +0100 | [diff] [blame] | 622 | * @vm_id: vmid number to use |
Christian König | 4ff37a8 | 2016-02-26 16:18:26 +0100 | [diff] [blame] | 623 | * @pd_addr: address of the page directory |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 624 | * |
Christian König | 4ff37a8 | 2016-02-26 16:18:26 +0100 | [diff] [blame] | 625 | * Emit a VM flush when it is necessary. |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 626 | */ |
Chunming Zhou | fd53be3 | 2016-07-01 17:59:01 +0800 | [diff] [blame] | 627 | int amdgpu_vm_flush(struct amdgpu_ring *ring, struct amdgpu_job *job) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 628 | { |
Christian König | 971fe9a9 | 2016-03-01 15:09:25 +0100 | [diff] [blame] | 629 | struct amdgpu_device *adev = ring->adev; |
Christian König | 7645670 | 2017-04-06 17:52:39 +0200 | [diff] [blame] | 630 | unsigned vmhub = ring->funcs->vmhub; |
| 631 | struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub]; |
| 632 | struct amdgpu_vm_id *id = &id_mgr->ids[job->vm_id]; |
Christian König | d564a06 | 2016-03-01 15:51:53 +0100 | [diff] [blame] | 633 | bool gds_switch_needed = ring->funcs->emit_gds_switch && ( |
Chunming Zhou | fd53be3 | 2016-07-01 17:59:01 +0800 | [diff] [blame] | 634 | id->gds_base != job->gds_base || |
| 635 | id->gds_size != job->gds_size || |
| 636 | id->gws_base != job->gws_base || |
| 637 | id->gws_size != job->gws_size || |
| 638 | id->oa_base != job->oa_base || |
| 639 | id->oa_size != job->oa_size); |
Christian König | f7d015b | 2017-04-03 14:28:26 +0200 | [diff] [blame] | 640 | bool vm_flush_needed = job->vm_needs_flush || |
| 641 | amdgpu_vm_ring_has_compute_vm_bug(ring); |
Christian König | c0e5193 | 2017-04-03 14:16:07 +0200 | [diff] [blame] | 642 | unsigned patch_offset = 0; |
Christian König | 41d9eb2 | 2016-03-01 16:46:18 +0100 | [diff] [blame] | 643 | int r; |
Christian König | d564a06 | 2016-03-01 15:51:53 +0100 | [diff] [blame] | 644 | |
Christian König | f7d015b | 2017-04-03 14:28:26 +0200 | [diff] [blame] | 645 | if (amdgpu_vm_had_gpu_reset(adev, id)) { |
| 646 | gds_switch_needed = true; |
| 647 | vm_flush_needed = true; |
| 648 | } |
Christian König | 971fe9a9 | 2016-03-01 15:09:25 +0100 | [diff] [blame] | 649 | |
Christian König | f7d015b | 2017-04-03 14:28:26 +0200 | [diff] [blame] | 650 | if (!vm_flush_needed && !gds_switch_needed) |
| 651 | return 0; |
Christian König | 41d9eb2 | 2016-03-01 16:46:18 +0100 | [diff] [blame] | 652 | |
Christian König | c0e5193 | 2017-04-03 14:16:07 +0200 | [diff] [blame] | 653 | if (ring->funcs->init_cond_exec) |
| 654 | patch_offset = amdgpu_ring_init_cond_exec(ring); |
Christian König | 41d9eb2 | 2016-03-01 16:46:18 +0100 | [diff] [blame] | 655 | |
Chunming Zhou | 30514de | 2017-05-09 13:39:40 +0800 | [diff] [blame] | 656 | if (ring->funcs->emit_pipeline_sync && !job->need_pipeline_sync) |
Christian König | c0e5193 | 2017-04-03 14:16:07 +0200 | [diff] [blame] | 657 | amdgpu_ring_emit_pipeline_sync(ring); |
Christian König | 3dab83b | 2016-06-01 13:31:17 +0200 | [diff] [blame] | 658 | |
Christian König | f7d015b | 2017-04-03 14:28:26 +0200 | [diff] [blame] | 659 | if (ring->funcs->emit_vm_flush && vm_flush_needed) { |
Christian König | c0e5193 | 2017-04-03 14:16:07 +0200 | [diff] [blame] | 660 | u64 pd_addr = amdgpu_vm_adjust_mc_addr(adev, job->vm_pd_addr); |
| 661 | struct dma_fence *fence; |
Monk Liu | e9d672b | 2017-03-15 12:18:57 +0800 | [diff] [blame] | 662 | |
Christian König | 5f1bcf5 | 2017-04-07 17:43:19 +0200 | [diff] [blame] | 663 | trace_amdgpu_vm_flush(ring, job->vm_id, pd_addr); |
Christian König | c0e5193 | 2017-04-03 14:16:07 +0200 | [diff] [blame] | 664 | amdgpu_ring_emit_vm_flush(ring, job->vm_id, pd_addr); |
Monk Liu | e9d672b | 2017-03-15 12:18:57 +0800 | [diff] [blame] | 665 | |
Christian König | c0e5193 | 2017-04-03 14:16:07 +0200 | [diff] [blame] | 666 | r = amdgpu_fence_emit(ring, &fence); |
| 667 | if (r) |
| 668 | return r; |
Monk Liu | e9d672b | 2017-03-15 12:18:57 +0800 | [diff] [blame] | 669 | |
Christian König | 7645670 | 2017-04-06 17:52:39 +0200 | [diff] [blame] | 670 | mutex_lock(&id_mgr->lock); |
Christian König | c0e5193 | 2017-04-03 14:16:07 +0200 | [diff] [blame] | 671 | dma_fence_put(id->last_flush); |
| 672 | id->last_flush = fence; |
Christian König | 7645670 | 2017-04-06 17:52:39 +0200 | [diff] [blame] | 673 | mutex_unlock(&id_mgr->lock); |
Christian König | c0e5193 | 2017-04-03 14:16:07 +0200 | [diff] [blame] | 674 | } |
Monk Liu | e9d672b | 2017-03-15 12:18:57 +0800 | [diff] [blame] | 675 | |
Chunming Zhou | ca7962d | 2017-05-11 18:22:17 +0800 | [diff] [blame] | 676 | if (ring->funcs->emit_gds_switch && gds_switch_needed) { |
Christian König | c0e5193 | 2017-04-03 14:16:07 +0200 | [diff] [blame] | 677 | id->gds_base = job->gds_base; |
| 678 | id->gds_size = job->gds_size; |
| 679 | id->gws_base = job->gws_base; |
| 680 | id->gws_size = job->gws_size; |
| 681 | id->oa_base = job->oa_base; |
| 682 | id->oa_size = job->oa_size; |
| 683 | amdgpu_ring_emit_gds_switch(ring, job->vm_id, job->gds_base, |
| 684 | job->gds_size, job->gws_base, |
| 685 | job->gws_size, job->oa_base, |
| 686 | job->oa_size); |
| 687 | } |
| 688 | |
| 689 | if (ring->funcs->patch_cond_exec) |
| 690 | amdgpu_ring_patch_cond_exec(ring, patch_offset); |
| 691 | |
| 692 | /* the double SWITCH_BUFFER here *cannot* be skipped by COND_EXEC */ |
| 693 | if (ring->funcs->emit_switch_buffer) { |
| 694 | amdgpu_ring_emit_switch_buffer(ring); |
| 695 | amdgpu_ring_emit_switch_buffer(ring); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 696 | } |
Christian König | 41d9eb2 | 2016-03-01 16:46:18 +0100 | [diff] [blame] | 697 | return 0; |
Christian König | 971fe9a9 | 2016-03-01 15:09:25 +0100 | [diff] [blame] | 698 | } |
| 699 | |
| 700 | /** |
| 701 | * amdgpu_vm_reset_id - reset VMID to zero |
| 702 | * |
| 703 | * @adev: amdgpu device structure |
| 704 | * @vm_id: vmid number to use |
| 705 | * |
| 706 | * Reset saved GDW, GWS and OA to force switch on next flush. |
| 707 | */ |
Christian König | 7645670 | 2017-04-06 17:52:39 +0200 | [diff] [blame] | 708 | void amdgpu_vm_reset_id(struct amdgpu_device *adev, unsigned vmhub, |
| 709 | unsigned vmid) |
Christian König | 971fe9a9 | 2016-03-01 15:09:25 +0100 | [diff] [blame] | 710 | { |
Christian König | 7645670 | 2017-04-06 17:52:39 +0200 | [diff] [blame] | 711 | struct amdgpu_vm_id_manager *id_mgr = &adev->vm_manager.id_mgr[vmhub]; |
| 712 | struct amdgpu_vm_id *id = &id_mgr->ids[vmid]; |
Christian König | 971fe9a9 | 2016-03-01 15:09:25 +0100 | [diff] [blame] | 713 | |
Christian König | 32601d4 | 2017-05-10 20:06:58 +0200 | [diff] [blame] | 714 | atomic64_set(&id->owner, 0); |
Christian König | bcb1ba3 | 2016-03-08 15:40:11 +0100 | [diff] [blame] | 715 | id->gds_base = 0; |
| 716 | id->gds_size = 0; |
| 717 | id->gws_base = 0; |
| 718 | id->gws_size = 0; |
| 719 | id->oa_base = 0; |
| 720 | id->oa_size = 0; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 721 | } |
| 722 | |
| 723 | /** |
Christian König | 32601d4 | 2017-05-10 20:06:58 +0200 | [diff] [blame] | 724 | * amdgpu_vm_reset_all_id - reset VMID to zero |
| 725 | * |
| 726 | * @adev: amdgpu device structure |
| 727 | * |
| 728 | * Reset VMID to force flush on next use |
| 729 | */ |
| 730 | void amdgpu_vm_reset_all_ids(struct amdgpu_device *adev) |
| 731 | { |
| 732 | unsigned i, j; |
| 733 | |
| 734 | for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) { |
| 735 | struct amdgpu_vm_id_manager *id_mgr = |
| 736 | &adev->vm_manager.id_mgr[i]; |
| 737 | |
| 738 | for (j = 1; j < id_mgr->num_ids; ++j) |
| 739 | amdgpu_vm_reset_id(adev, i, j); |
| 740 | } |
| 741 | } |
| 742 | |
| 743 | /** |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 744 | * amdgpu_vm_bo_find - find the bo_va for a specific vm & bo |
| 745 | * |
| 746 | * @vm: requested vm |
| 747 | * @bo: requested buffer object |
| 748 | * |
Christian König | 8843dbb | 2016-01-26 12:17:11 +0100 | [diff] [blame] | 749 | * Find @bo inside the requested vm. |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 750 | * Search inside the @bos vm list for the requested vm |
| 751 | * Returns the found bo_va or NULL if none is found |
| 752 | * |
| 753 | * Object has to be reserved! |
| 754 | */ |
| 755 | struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm, |
| 756 | struct amdgpu_bo *bo) |
| 757 | { |
| 758 | struct amdgpu_bo_va *bo_va; |
| 759 | |
| 760 | list_for_each_entry(bo_va, &bo->va, bo_list) { |
| 761 | if (bo_va->vm == vm) { |
| 762 | return bo_va; |
| 763 | } |
| 764 | } |
| 765 | return NULL; |
| 766 | } |
| 767 | |
| 768 | /** |
Christian König | afef8b8 | 2016-08-12 13:29:18 +0200 | [diff] [blame] | 769 | * amdgpu_vm_do_set_ptes - helper to call the right asic function |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 770 | * |
Christian König | 29efc4f | 2016-08-04 14:52:50 +0200 | [diff] [blame] | 771 | * @params: see amdgpu_pte_update_params definition |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 772 | * @pe: addr of the page entry |
| 773 | * @addr: dst addr to write into pe |
| 774 | * @count: number of page entries to update |
| 775 | * @incr: increase next addr by incr bytes |
| 776 | * @flags: hw access flags |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 777 | * |
| 778 | * Traces the parameters and calls the right asic functions |
| 779 | * to setup the page table using the DMA. |
| 780 | */ |
Christian König | afef8b8 | 2016-08-12 13:29:18 +0200 | [diff] [blame] | 781 | static void amdgpu_vm_do_set_ptes(struct amdgpu_pte_update_params *params, |
| 782 | uint64_t pe, uint64_t addr, |
| 783 | unsigned count, uint32_t incr, |
Chunming Zhou | 6b77760 | 2016-09-21 16:19:19 +0800 | [diff] [blame] | 784 | uint64_t flags) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 785 | { |
Christian König | ec2f05f | 2016-09-25 16:11:52 +0200 | [diff] [blame] | 786 | trace_amdgpu_vm_set_ptes(pe, addr, count, incr, flags); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 787 | |
Christian König | afef8b8 | 2016-08-12 13:29:18 +0200 | [diff] [blame] | 788 | if (count < 3) { |
Christian König | de9ea7b | 2016-08-12 11:33:30 +0200 | [diff] [blame] | 789 | amdgpu_vm_write_pte(params->adev, params->ib, pe, |
| 790 | addr | flags, count, incr); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 791 | |
| 792 | } else { |
Christian König | 27c5f36 | 2016-08-04 15:02:49 +0200 | [diff] [blame] | 793 | amdgpu_vm_set_pte_pde(params->adev, params->ib, pe, addr, |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 794 | count, incr, flags); |
| 795 | } |
| 796 | } |
| 797 | |
| 798 | /** |
Christian König | afef8b8 | 2016-08-12 13:29:18 +0200 | [diff] [blame] | 799 | * amdgpu_vm_do_copy_ptes - copy the PTEs from the GART |
| 800 | * |
| 801 | * @params: see amdgpu_pte_update_params definition |
| 802 | * @pe: addr of the page entry |
| 803 | * @addr: dst addr to write into pe |
| 804 | * @count: number of page entries to update |
| 805 | * @incr: increase next addr by incr bytes |
| 806 | * @flags: hw access flags |
| 807 | * |
| 808 | * Traces the parameters and calls the DMA function to copy the PTEs. |
| 809 | */ |
| 810 | static void amdgpu_vm_do_copy_ptes(struct amdgpu_pte_update_params *params, |
| 811 | uint64_t pe, uint64_t addr, |
| 812 | unsigned count, uint32_t incr, |
Chunming Zhou | 6b77760 | 2016-09-21 16:19:19 +0800 | [diff] [blame] | 813 | uint64_t flags) |
Christian König | afef8b8 | 2016-08-12 13:29:18 +0200 | [diff] [blame] | 814 | { |
Christian König | ec2f05f | 2016-09-25 16:11:52 +0200 | [diff] [blame] | 815 | uint64_t src = (params->src + (addr >> 12) * 8); |
Christian König | afef8b8 | 2016-08-12 13:29:18 +0200 | [diff] [blame] | 816 | |
Christian König | ec2f05f | 2016-09-25 16:11:52 +0200 | [diff] [blame] | 817 | |
| 818 | trace_amdgpu_vm_copy_ptes(pe, src, count); |
| 819 | |
| 820 | amdgpu_vm_copy_pte(params->adev, params->ib, pe, src, count); |
Christian König | afef8b8 | 2016-08-12 13:29:18 +0200 | [diff] [blame] | 821 | } |
| 822 | |
| 823 | /** |
Christian König | b07c9d2 | 2015-11-30 13:26:07 +0100 | [diff] [blame] | 824 | * amdgpu_vm_map_gart - Resolve gart mapping of addr |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 825 | * |
Christian König | b07c9d2 | 2015-11-30 13:26:07 +0100 | [diff] [blame] | 826 | * @pages_addr: optional DMA address to use for lookup |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 827 | * @addr: the unmapped addr |
| 828 | * |
| 829 | * Look up the physical address of the page that the pte resolves |
Christian König | b07c9d2 | 2015-11-30 13:26:07 +0100 | [diff] [blame] | 830 | * to and return the pointer for the page table entry. |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 831 | */ |
Christian König | de9ea7b | 2016-08-12 11:33:30 +0200 | [diff] [blame] | 832 | static uint64_t amdgpu_vm_map_gart(const dma_addr_t *pages_addr, uint64_t addr) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 833 | { |
| 834 | uint64_t result; |
| 835 | |
Christian König | de9ea7b | 2016-08-12 11:33:30 +0200 | [diff] [blame] | 836 | /* page table offset */ |
| 837 | result = pages_addr[addr >> PAGE_SHIFT]; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 838 | |
Christian König | de9ea7b | 2016-08-12 11:33:30 +0200 | [diff] [blame] | 839 | /* in case cpu page size != gpu page size*/ |
| 840 | result |= addr & (~PAGE_MASK); |
Christian König | b07c9d2 | 2015-11-30 13:26:07 +0100 | [diff] [blame] | 841 | |
| 842 | result &= 0xFFFFFFFFFFFFF000ULL; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 843 | |
| 844 | return result; |
| 845 | } |
| 846 | |
Christian König | f8991ba | 2016-09-16 15:36:49 +0200 | [diff] [blame] | 847 | /* |
Christian König | 194d216 | 2016-10-12 15:13:52 +0200 | [diff] [blame] | 848 | * amdgpu_vm_update_level - update a single level in the hierarchy |
Christian König | f8991ba | 2016-09-16 15:36:49 +0200 | [diff] [blame] | 849 | * |
| 850 | * @adev: amdgpu_device pointer |
| 851 | * @vm: requested vm |
Christian König | 194d216 | 2016-10-12 15:13:52 +0200 | [diff] [blame] | 852 | * @parent: parent directory |
Christian König | f8991ba | 2016-09-16 15:36:49 +0200 | [diff] [blame] | 853 | * |
Christian König | 194d216 | 2016-10-12 15:13:52 +0200 | [diff] [blame] | 854 | * Makes sure all entries in @parent are up to date. |
Christian König | f8991ba | 2016-09-16 15:36:49 +0200 | [diff] [blame] | 855 | * Returns 0 for success, error for failure. |
| 856 | */ |
Christian König | 194d216 | 2016-10-12 15:13:52 +0200 | [diff] [blame] | 857 | static int amdgpu_vm_update_level(struct amdgpu_device *adev, |
| 858 | struct amdgpu_vm *vm, |
| 859 | struct amdgpu_vm_pt *parent, |
| 860 | unsigned level) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 861 | { |
Christian König | f8991ba | 2016-09-16 15:36:49 +0200 | [diff] [blame] | 862 | struct amdgpu_bo *shadow; |
Christian König | 2d55e45 | 2016-02-08 17:37:38 +0100 | [diff] [blame] | 863 | struct amdgpu_ring *ring; |
Christian König | f8991ba | 2016-09-16 15:36:49 +0200 | [diff] [blame] | 864 | uint64_t pd_addr, shadow_addr; |
Christian König | 194d216 | 2016-10-12 15:13:52 +0200 | [diff] [blame] | 865 | uint32_t incr = amdgpu_vm_bo_size(adev, level + 1); |
Christian König | f8991ba | 2016-09-16 15:36:49 +0200 | [diff] [blame] | 866 | uint64_t last_pde = ~0, last_pt = ~0, last_shadow = ~0; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 867 | unsigned count = 0, pt_idx, ndw; |
Christian König | d71518b | 2016-02-01 12:20:25 +0100 | [diff] [blame] | 868 | struct amdgpu_job *job; |
Christian König | 29efc4f | 2016-08-04 14:52:50 +0200 | [diff] [blame] | 869 | struct amdgpu_pte_update_params params; |
Dave Airlie | 220196b | 2016-10-28 11:33:52 +1000 | [diff] [blame] | 870 | struct dma_fence *fence = NULL; |
Chunming Zhou | d5fc5e8 | 2015-07-21 16:52:10 +0800 | [diff] [blame] | 871 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 872 | int r; |
| 873 | |
Christian König | 194d216 | 2016-10-12 15:13:52 +0200 | [diff] [blame] | 874 | if (!parent->entries) |
| 875 | return 0; |
Christian König | 2d55e45 | 2016-02-08 17:37:38 +0100 | [diff] [blame] | 876 | ring = container_of(vm->entity.sched, struct amdgpu_ring, sched); |
| 877 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 878 | /* padding, etc. */ |
| 879 | ndw = 64; |
| 880 | |
| 881 | /* assume the worst case */ |
Christian König | 194d216 | 2016-10-12 15:13:52 +0200 | [diff] [blame] | 882 | ndw += parent->last_entry_used * 6; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 883 | |
Christian König | 194d216 | 2016-10-12 15:13:52 +0200 | [diff] [blame] | 884 | pd_addr = amdgpu_bo_gpu_offset(parent->bo); |
| 885 | |
| 886 | shadow = parent->bo->shadow; |
Christian König | f8991ba | 2016-09-16 15:36:49 +0200 | [diff] [blame] | 887 | if (shadow) { |
| 888 | r = amdgpu_ttm_bind(&shadow->tbo, &shadow->tbo.mem); |
| 889 | if (r) |
| 890 | return r; |
| 891 | shadow_addr = amdgpu_bo_gpu_offset(shadow); |
| 892 | ndw *= 2; |
| 893 | } else { |
| 894 | shadow_addr = 0; |
| 895 | } |
| 896 | |
Christian König | d71518b | 2016-02-01 12:20:25 +0100 | [diff] [blame] | 897 | r = amdgpu_job_alloc_with_ib(adev, ndw * 4, &job); |
| 898 | if (r) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 899 | return r; |
Christian König | d71518b | 2016-02-01 12:20:25 +0100 | [diff] [blame] | 900 | |
Christian König | 27c5f36 | 2016-08-04 15:02:49 +0200 | [diff] [blame] | 901 | memset(¶ms, 0, sizeof(params)); |
| 902 | params.adev = adev; |
Christian König | 29efc4f | 2016-08-04 14:52:50 +0200 | [diff] [blame] | 903 | params.ib = &job->ibs[0]; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 904 | |
Christian König | 194d216 | 2016-10-12 15:13:52 +0200 | [diff] [blame] | 905 | /* walk over the address space and update the directory */ |
| 906 | for (pt_idx = 0; pt_idx <= parent->last_entry_used; ++pt_idx) { |
| 907 | struct amdgpu_bo *bo = parent->entries[pt_idx].bo; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 908 | uint64_t pde, pt; |
| 909 | |
| 910 | if (bo == NULL) |
| 911 | continue; |
| 912 | |
Christian König | 0fc8683 | 2016-09-16 11:46:23 +0200 | [diff] [blame] | 913 | if (bo->shadow) { |
Christian König | f8991ba | 2016-09-16 15:36:49 +0200 | [diff] [blame] | 914 | struct amdgpu_bo *pt_shadow = bo->shadow; |
Christian König | 0fc8683 | 2016-09-16 11:46:23 +0200 | [diff] [blame] | 915 | |
Christian König | f8991ba | 2016-09-16 15:36:49 +0200 | [diff] [blame] | 916 | r = amdgpu_ttm_bind(&pt_shadow->tbo, |
| 917 | &pt_shadow->tbo.mem); |
Christian König | 0fc8683 | 2016-09-16 11:46:23 +0200 | [diff] [blame] | 918 | if (r) |
| 919 | return r; |
| 920 | } |
| 921 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 922 | pt = amdgpu_bo_gpu_offset(bo); |
Christian König | 194d216 | 2016-10-12 15:13:52 +0200 | [diff] [blame] | 923 | if (parent->entries[pt_idx].addr == pt) |
Christian König | f8991ba | 2016-09-16 15:36:49 +0200 | [diff] [blame] | 924 | continue; |
| 925 | |
Christian König | 194d216 | 2016-10-12 15:13:52 +0200 | [diff] [blame] | 926 | parent->entries[pt_idx].addr = pt; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 927 | |
| 928 | pde = pd_addr + pt_idx * 8; |
| 929 | if (((last_pde + 8 * count) != pde) || |
Christian König | 96105e5 | 2016-08-12 12:59:59 +0200 | [diff] [blame] | 930 | ((last_pt + incr * count) != pt) || |
| 931 | (count == AMDGPU_VM_MAX_UPDATE_SIZE)) { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 932 | |
| 933 | if (count) { |
Alex Xie | e60f8db | 2017-03-09 11:36:26 -0500 | [diff] [blame] | 934 | uint64_t pt_addr = |
| 935 | amdgpu_vm_adjust_mc_addr(adev, last_pt); |
| 936 | |
Christian König | f8991ba | 2016-09-16 15:36:49 +0200 | [diff] [blame] | 937 | if (shadow) |
| 938 | amdgpu_vm_do_set_ptes(¶ms, |
| 939 | last_shadow, |
Alex Xie | e60f8db | 2017-03-09 11:36:26 -0500 | [diff] [blame] | 940 | pt_addr, count, |
Christian König | f8991ba | 2016-09-16 15:36:49 +0200 | [diff] [blame] | 941 | incr, |
| 942 | AMDGPU_PTE_VALID); |
| 943 | |
Christian König | afef8b8 | 2016-08-12 13:29:18 +0200 | [diff] [blame] | 944 | amdgpu_vm_do_set_ptes(¶ms, last_pde, |
Alex Xie | e60f8db | 2017-03-09 11:36:26 -0500 | [diff] [blame] | 945 | pt_addr, count, incr, |
Christian König | afef8b8 | 2016-08-12 13:29:18 +0200 | [diff] [blame] | 946 | AMDGPU_PTE_VALID); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 947 | } |
| 948 | |
| 949 | count = 1; |
| 950 | last_pde = pde; |
Christian König | f8991ba | 2016-09-16 15:36:49 +0200 | [diff] [blame] | 951 | last_shadow = shadow_addr + pt_idx * 8; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 952 | last_pt = pt; |
| 953 | } else { |
| 954 | ++count; |
| 955 | } |
| 956 | } |
| 957 | |
Christian König | f8991ba | 2016-09-16 15:36:49 +0200 | [diff] [blame] | 958 | if (count) { |
Alex Xie | e60f8db | 2017-03-09 11:36:26 -0500 | [diff] [blame] | 959 | uint64_t pt_addr = amdgpu_vm_adjust_mc_addr(adev, last_pt); |
| 960 | |
Christian König | 67003a1 | 2016-10-12 14:46:26 +0200 | [diff] [blame] | 961 | if (vm->root.bo->shadow) |
Alex Xie | e60f8db | 2017-03-09 11:36:26 -0500 | [diff] [blame] | 962 | amdgpu_vm_do_set_ptes(¶ms, last_shadow, pt_addr, |
Christian König | f8991ba | 2016-09-16 15:36:49 +0200 | [diff] [blame] | 963 | count, incr, AMDGPU_PTE_VALID); |
| 964 | |
Alex Xie | e60f8db | 2017-03-09 11:36:26 -0500 | [diff] [blame] | 965 | amdgpu_vm_do_set_ptes(¶ms, last_pde, pt_addr, |
Christian König | afef8b8 | 2016-08-12 13:29:18 +0200 | [diff] [blame] | 966 | count, incr, AMDGPU_PTE_VALID); |
Chunming Zhou | d5fc5e8 | 2015-07-21 16:52:10 +0800 | [diff] [blame] | 967 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 968 | |
Christian König | f8991ba | 2016-09-16 15:36:49 +0200 | [diff] [blame] | 969 | if (params.ib->length_dw == 0) { |
| 970 | amdgpu_job_free(job); |
Christian König | 194d216 | 2016-10-12 15:13:52 +0200 | [diff] [blame] | 971 | } else { |
| 972 | amdgpu_ring_pad_ib(ring, params.ib); |
| 973 | amdgpu_sync_resv(adev, &job->sync, parent->bo->tbo.resv, |
Christian König | f8991ba | 2016-09-16 15:36:49 +0200 | [diff] [blame] | 974 | AMDGPU_FENCE_OWNER_VM); |
Christian König | 194d216 | 2016-10-12 15:13:52 +0200 | [diff] [blame] | 975 | if (shadow) |
| 976 | amdgpu_sync_resv(adev, &job->sync, shadow->tbo.resv, |
| 977 | AMDGPU_FENCE_OWNER_VM); |
Christian König | f8991ba | 2016-09-16 15:36:49 +0200 | [diff] [blame] | 978 | |
Christian König | 194d216 | 2016-10-12 15:13:52 +0200 | [diff] [blame] | 979 | WARN_ON(params.ib->length_dw > ndw); |
| 980 | r = amdgpu_job_submit(job, ring, &vm->entity, |
| 981 | AMDGPU_FENCE_OWNER_VM, &fence); |
| 982 | if (r) |
| 983 | goto error_free; |
Christian König | f8991ba | 2016-09-16 15:36:49 +0200 | [diff] [blame] | 984 | |
Christian König | 194d216 | 2016-10-12 15:13:52 +0200 | [diff] [blame] | 985 | amdgpu_bo_fence(parent->bo, fence, true); |
| 986 | dma_fence_put(vm->last_dir_update); |
| 987 | vm->last_dir_update = dma_fence_get(fence); |
| 988 | dma_fence_put(fence); |
| 989 | } |
| 990 | /* |
| 991 | * Recurse into the subdirectories. This recursion is harmless because |
| 992 | * we only have a maximum of 5 layers. |
| 993 | */ |
| 994 | for (pt_idx = 0; pt_idx <= parent->last_entry_used; ++pt_idx) { |
| 995 | struct amdgpu_vm_pt *entry = &parent->entries[pt_idx]; |
| 996 | |
| 997 | if (!entry->bo) |
| 998 | continue; |
| 999 | |
| 1000 | r = amdgpu_vm_update_level(adev, vm, entry, level + 1); |
| 1001 | if (r) |
| 1002 | return r; |
| 1003 | } |
Christian König | f8991ba | 2016-09-16 15:36:49 +0200 | [diff] [blame] | 1004 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1005 | return 0; |
Chunming Zhou | d5fc5e8 | 2015-07-21 16:52:10 +0800 | [diff] [blame] | 1006 | |
| 1007 | error_free: |
Christian König | d71518b | 2016-02-01 12:20:25 +0100 | [diff] [blame] | 1008 | amdgpu_job_free(job); |
Chunming Zhou | 4af9f07 | 2015-08-03 12:57:31 +0800 | [diff] [blame] | 1009 | return r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1010 | } |
| 1011 | |
Christian König | 194d216 | 2016-10-12 15:13:52 +0200 | [diff] [blame] | 1012 | /* |
| 1013 | * amdgpu_vm_update_directories - make sure that all directories are valid |
| 1014 | * |
| 1015 | * @adev: amdgpu_device pointer |
| 1016 | * @vm: requested vm |
| 1017 | * |
| 1018 | * Makes sure all directories are up to date. |
| 1019 | * Returns 0 for success, error for failure. |
| 1020 | */ |
| 1021 | int amdgpu_vm_update_directories(struct amdgpu_device *adev, |
| 1022 | struct amdgpu_vm *vm) |
| 1023 | { |
| 1024 | return amdgpu_vm_update_level(adev, vm, &vm->root, 0); |
| 1025 | } |
| 1026 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1027 | /** |
Christian König | 4e2cb64 | 2016-10-25 15:52:28 +0200 | [diff] [blame] | 1028 | * amdgpu_vm_find_pt - find the page table for an address |
| 1029 | * |
| 1030 | * @p: see amdgpu_pte_update_params definition |
| 1031 | * @addr: virtual address in question |
| 1032 | * |
| 1033 | * Find the page table BO for a virtual address, return NULL when none found. |
| 1034 | */ |
| 1035 | static struct amdgpu_bo *amdgpu_vm_get_pt(struct amdgpu_pte_update_params *p, |
| 1036 | uint64_t addr) |
| 1037 | { |
| 1038 | struct amdgpu_vm_pt *entry = &p->vm->root; |
| 1039 | unsigned idx, level = p->adev->vm_manager.num_level; |
| 1040 | |
| 1041 | while (entry->entries) { |
Zhang, Jerry | 36b32a6 | 2017-03-29 16:08:32 +0800 | [diff] [blame] | 1042 | idx = addr >> (p->adev->vm_manager.block_size * level--); |
Christian König | 4e2cb64 | 2016-10-25 15:52:28 +0200 | [diff] [blame] | 1043 | idx %= amdgpu_bo_size(entry->bo) / 8; |
| 1044 | entry = &entry->entries[idx]; |
| 1045 | } |
| 1046 | |
| 1047 | if (level) |
| 1048 | return NULL; |
| 1049 | |
| 1050 | return entry->bo; |
| 1051 | } |
| 1052 | |
| 1053 | /** |
Christian König | 92696dd | 2016-08-05 13:56:35 +0200 | [diff] [blame] | 1054 | * amdgpu_vm_update_ptes - make sure that page tables are valid |
| 1055 | * |
| 1056 | * @params: see amdgpu_pte_update_params definition |
| 1057 | * @vm: requested vm |
| 1058 | * @start: start of GPU address range |
| 1059 | * @end: end of GPU address range |
| 1060 | * @dst: destination address to map to, the next dst inside the function |
| 1061 | * @flags: mapping flags |
| 1062 | * |
| 1063 | * Update the page tables in the range @start - @end. |
| 1064 | */ |
| 1065 | static void amdgpu_vm_update_ptes(struct amdgpu_pte_update_params *params, |
Christian König | 92696dd | 2016-08-05 13:56:35 +0200 | [diff] [blame] | 1066 | uint64_t start, uint64_t end, |
Chunming Zhou | 6b77760 | 2016-09-21 16:19:19 +0800 | [diff] [blame] | 1067 | uint64_t dst, uint64_t flags) |
Christian König | 92696dd | 2016-08-05 13:56:35 +0200 | [diff] [blame] | 1068 | { |
Zhang, Jerry | 36b32a6 | 2017-03-29 16:08:32 +0800 | [diff] [blame] | 1069 | struct amdgpu_device *adev = params->adev; |
| 1070 | const uint64_t mask = AMDGPU_VM_PTE_COUNT(adev) - 1; |
Christian König | 92696dd | 2016-08-05 13:56:35 +0200 | [diff] [blame] | 1071 | |
| 1072 | uint64_t cur_pe_start, cur_nptes, cur_dst; |
| 1073 | uint64_t addr; /* next GPU address to be updated */ |
Christian König | 92696dd | 2016-08-05 13:56:35 +0200 | [diff] [blame] | 1074 | struct amdgpu_bo *pt; |
| 1075 | unsigned nptes; /* next number of ptes to be updated */ |
| 1076 | uint64_t next_pe_start; |
| 1077 | |
| 1078 | /* initialize the variables */ |
| 1079 | addr = start; |
Christian König | 4e2cb64 | 2016-10-25 15:52:28 +0200 | [diff] [blame] | 1080 | pt = amdgpu_vm_get_pt(params, addr); |
Felix Kuehling | 1866bac | 2017-03-28 20:36:12 -0400 | [diff] [blame] | 1081 | if (!pt) { |
| 1082 | pr_err("PT not found, aborting update_ptes\n"); |
Christian König | 4e2cb64 | 2016-10-25 15:52:28 +0200 | [diff] [blame] | 1083 | return; |
Felix Kuehling | 1866bac | 2017-03-28 20:36:12 -0400 | [diff] [blame] | 1084 | } |
Christian König | 4e2cb64 | 2016-10-25 15:52:28 +0200 | [diff] [blame] | 1085 | |
Chunming Zhou | 4c7e885 | 2016-08-15 11:46:21 +0800 | [diff] [blame] | 1086 | if (params->shadow) { |
| 1087 | if (!pt->shadow) |
| 1088 | return; |
Christian König | 914b4dc | 2016-09-28 12:27:37 +0200 | [diff] [blame] | 1089 | pt = pt->shadow; |
Chunming Zhou | 4c7e885 | 2016-08-15 11:46:21 +0800 | [diff] [blame] | 1090 | } |
Christian König | 92696dd | 2016-08-05 13:56:35 +0200 | [diff] [blame] | 1091 | if ((addr & ~mask) == (end & ~mask)) |
| 1092 | nptes = end - addr; |
| 1093 | else |
Zhang, Jerry | 36b32a6 | 2017-03-29 16:08:32 +0800 | [diff] [blame] | 1094 | nptes = AMDGPU_VM_PTE_COUNT(adev) - (addr & mask); |
Christian König | 92696dd | 2016-08-05 13:56:35 +0200 | [diff] [blame] | 1095 | |
| 1096 | cur_pe_start = amdgpu_bo_gpu_offset(pt); |
| 1097 | cur_pe_start += (addr & mask) * 8; |
| 1098 | cur_nptes = nptes; |
| 1099 | cur_dst = dst; |
| 1100 | |
| 1101 | /* for next ptb*/ |
| 1102 | addr += nptes; |
| 1103 | dst += nptes * AMDGPU_GPU_PAGE_SIZE; |
| 1104 | |
| 1105 | /* walk over the address space and update the page tables */ |
| 1106 | while (addr < end) { |
Christian König | 4e2cb64 | 2016-10-25 15:52:28 +0200 | [diff] [blame] | 1107 | pt = amdgpu_vm_get_pt(params, addr); |
Felix Kuehling | 1866bac | 2017-03-28 20:36:12 -0400 | [diff] [blame] | 1108 | if (!pt) { |
| 1109 | pr_err("PT not found, aborting update_ptes\n"); |
Christian König | 4e2cb64 | 2016-10-25 15:52:28 +0200 | [diff] [blame] | 1110 | return; |
Felix Kuehling | 1866bac | 2017-03-28 20:36:12 -0400 | [diff] [blame] | 1111 | } |
Christian König | 4e2cb64 | 2016-10-25 15:52:28 +0200 | [diff] [blame] | 1112 | |
Chunming Zhou | 4c7e885 | 2016-08-15 11:46:21 +0800 | [diff] [blame] | 1113 | if (params->shadow) { |
| 1114 | if (!pt->shadow) |
| 1115 | return; |
Christian König | 914b4dc | 2016-09-28 12:27:37 +0200 | [diff] [blame] | 1116 | pt = pt->shadow; |
Chunming Zhou | 4c7e885 | 2016-08-15 11:46:21 +0800 | [diff] [blame] | 1117 | } |
Christian König | 92696dd | 2016-08-05 13:56:35 +0200 | [diff] [blame] | 1118 | |
| 1119 | if ((addr & ~mask) == (end & ~mask)) |
| 1120 | nptes = end - addr; |
| 1121 | else |
Zhang, Jerry | 36b32a6 | 2017-03-29 16:08:32 +0800 | [diff] [blame] | 1122 | nptes = AMDGPU_VM_PTE_COUNT(adev) - (addr & mask); |
Christian König | 92696dd | 2016-08-05 13:56:35 +0200 | [diff] [blame] | 1123 | |
| 1124 | next_pe_start = amdgpu_bo_gpu_offset(pt); |
| 1125 | next_pe_start += (addr & mask) * 8; |
| 1126 | |
Christian König | 96105e5 | 2016-08-12 12:59:59 +0200 | [diff] [blame] | 1127 | if ((cur_pe_start + 8 * cur_nptes) == next_pe_start && |
| 1128 | ((cur_nptes + nptes) <= AMDGPU_VM_MAX_UPDATE_SIZE)) { |
Christian König | 92696dd | 2016-08-05 13:56:35 +0200 | [diff] [blame] | 1129 | /* The next ptb is consecutive to current ptb. |
Christian König | afef8b8 | 2016-08-12 13:29:18 +0200 | [diff] [blame] | 1130 | * Don't call the update function now. |
Christian König | 92696dd | 2016-08-05 13:56:35 +0200 | [diff] [blame] | 1131 | * Will update two ptbs together in future. |
| 1132 | */ |
| 1133 | cur_nptes += nptes; |
| 1134 | } else { |
Christian König | afef8b8 | 2016-08-12 13:29:18 +0200 | [diff] [blame] | 1135 | params->func(params, cur_pe_start, cur_dst, cur_nptes, |
| 1136 | AMDGPU_GPU_PAGE_SIZE, flags); |
Christian König | 92696dd | 2016-08-05 13:56:35 +0200 | [diff] [blame] | 1137 | |
| 1138 | cur_pe_start = next_pe_start; |
| 1139 | cur_nptes = nptes; |
| 1140 | cur_dst = dst; |
| 1141 | } |
| 1142 | |
| 1143 | /* for next ptb*/ |
| 1144 | addr += nptes; |
| 1145 | dst += nptes * AMDGPU_GPU_PAGE_SIZE; |
| 1146 | } |
| 1147 | |
Christian König | afef8b8 | 2016-08-12 13:29:18 +0200 | [diff] [blame] | 1148 | params->func(params, cur_pe_start, cur_dst, cur_nptes, |
| 1149 | AMDGPU_GPU_PAGE_SIZE, flags); |
Christian König | 92696dd | 2016-08-05 13:56:35 +0200 | [diff] [blame] | 1150 | } |
| 1151 | |
| 1152 | /* |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1153 | * amdgpu_vm_frag_ptes - add fragment information to PTEs |
| 1154 | * |
Christian König | 29efc4f | 2016-08-04 14:52:50 +0200 | [diff] [blame] | 1155 | * @params: see amdgpu_pte_update_params definition |
Christian König | 92696dd | 2016-08-05 13:56:35 +0200 | [diff] [blame] | 1156 | * @vm: requested vm |
| 1157 | * @start: first PTE to handle |
| 1158 | * @end: last PTE to handle |
| 1159 | * @dst: addr those PTEs should point to |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1160 | * @flags: hw mapping flags |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1161 | */ |
Christian König | 27c5f36 | 2016-08-04 15:02:49 +0200 | [diff] [blame] | 1162 | static void amdgpu_vm_frag_ptes(struct amdgpu_pte_update_params *params, |
Christian König | 92696dd | 2016-08-05 13:56:35 +0200 | [diff] [blame] | 1163 | uint64_t start, uint64_t end, |
Chunming Zhou | 6b77760 | 2016-09-21 16:19:19 +0800 | [diff] [blame] | 1164 | uint64_t dst, uint64_t flags) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1165 | { |
| 1166 | /** |
| 1167 | * The MC L1 TLB supports variable sized pages, based on a fragment |
| 1168 | * field in the PTE. When this field is set to a non-zero value, page |
| 1169 | * granularity is increased from 4KB to (1 << (12 + frag)). The PTE |
| 1170 | * flags are considered valid for all PTEs within the fragment range |
| 1171 | * and corresponding mappings are assumed to be physically contiguous. |
| 1172 | * |
| 1173 | * The L1 TLB can store a single PTE for the whole fragment, |
| 1174 | * significantly increasing the space available for translation |
| 1175 | * caching. This leads to large improvements in throughput when the |
| 1176 | * TLB is under pressure. |
| 1177 | * |
| 1178 | * The L2 TLB distributes small and large fragments into two |
| 1179 | * asymmetric partitions. The large fragment cache is significantly |
| 1180 | * larger. Thus, we try to use large fragments wherever possible. |
| 1181 | * Userspace can support this by aligning virtual base address and |
| 1182 | * allocation size to the fragment size. |
| 1183 | */ |
| 1184 | |
Christian König | 8036617 | 2016-10-04 13:39:43 +0200 | [diff] [blame] | 1185 | /* SI and newer are optimized for 64KB */ |
| 1186 | uint64_t frag_flags = AMDGPU_PTE_FRAG(AMDGPU_LOG2_PAGES_PER_FRAG); |
| 1187 | uint64_t frag_align = 1 << AMDGPU_LOG2_PAGES_PER_FRAG; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1188 | |
Christian König | 92696dd | 2016-08-05 13:56:35 +0200 | [diff] [blame] | 1189 | uint64_t frag_start = ALIGN(start, frag_align); |
| 1190 | uint64_t frag_end = end & ~(frag_align - 1); |
Christian König | 31f6c1f | 2016-01-26 12:37:49 +0100 | [diff] [blame] | 1191 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1192 | /* system pages are non continuously */ |
Christian König | b7fc2cb | 2016-08-11 16:44:15 +0200 | [diff] [blame] | 1193 | if (params->src || !(flags & AMDGPU_PTE_VALID) || |
Christian König | 92696dd | 2016-08-05 13:56:35 +0200 | [diff] [blame] | 1194 | (frag_start >= frag_end)) { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1195 | |
Christian König | 49ac8a2 | 2016-10-13 15:09:08 +0200 | [diff] [blame] | 1196 | amdgpu_vm_update_ptes(params, start, end, dst, flags); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1197 | return; |
| 1198 | } |
| 1199 | |
| 1200 | /* handle the 4K area at the beginning */ |
Christian König | 92696dd | 2016-08-05 13:56:35 +0200 | [diff] [blame] | 1201 | if (start != frag_start) { |
Christian König | 49ac8a2 | 2016-10-13 15:09:08 +0200 | [diff] [blame] | 1202 | amdgpu_vm_update_ptes(params, start, frag_start, |
Christian König | 92696dd | 2016-08-05 13:56:35 +0200 | [diff] [blame] | 1203 | dst, flags); |
| 1204 | dst += (frag_start - start) * AMDGPU_GPU_PAGE_SIZE; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1205 | } |
| 1206 | |
| 1207 | /* handle the area in the middle */ |
Christian König | 49ac8a2 | 2016-10-13 15:09:08 +0200 | [diff] [blame] | 1208 | amdgpu_vm_update_ptes(params, frag_start, frag_end, dst, |
Christian König | 8036617 | 2016-10-04 13:39:43 +0200 | [diff] [blame] | 1209 | flags | frag_flags); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1210 | |
| 1211 | /* handle the 4K area at the end */ |
Christian König | 92696dd | 2016-08-05 13:56:35 +0200 | [diff] [blame] | 1212 | if (frag_end != end) { |
| 1213 | dst += (frag_end - frag_start) * AMDGPU_GPU_PAGE_SIZE; |
Christian König | 49ac8a2 | 2016-10-13 15:09:08 +0200 | [diff] [blame] | 1214 | amdgpu_vm_update_ptes(params, frag_end, end, dst, flags); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1215 | } |
| 1216 | } |
| 1217 | |
| 1218 | /** |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1219 | * amdgpu_vm_bo_update_mapping - update a mapping in the vm page table |
| 1220 | * |
| 1221 | * @adev: amdgpu_device pointer |
Christian König | 3cabaa5 | 2016-06-06 10:17:58 +0200 | [diff] [blame] | 1222 | * @exclusive: fence we need to sync to |
Christian König | fa3ab3c | 2016-03-18 21:00:35 +0100 | [diff] [blame] | 1223 | * @src: address where to copy page table entries from |
| 1224 | * @pages_addr: DMA addresses to use for mapping |
Christian König | a14faa6 | 2016-01-25 14:27:31 +0100 | [diff] [blame] | 1225 | * @vm: requested vm |
| 1226 | * @start: start of mapped range |
| 1227 | * @last: last mapped entry |
| 1228 | * @flags: flags for the entries |
| 1229 | * @addr: addr to set the area to |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1230 | * @fence: optional resulting fence |
| 1231 | * |
Christian König | a14faa6 | 2016-01-25 14:27:31 +0100 | [diff] [blame] | 1232 | * Fill in the page table entries between @start and @last. |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1233 | * Returns 0 for success, -EINVAL for failure. |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1234 | */ |
| 1235 | static int amdgpu_vm_bo_update_mapping(struct amdgpu_device *adev, |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 1236 | struct dma_fence *exclusive, |
Christian König | fa3ab3c | 2016-03-18 21:00:35 +0100 | [diff] [blame] | 1237 | uint64_t src, |
| 1238 | dma_addr_t *pages_addr, |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1239 | struct amdgpu_vm *vm, |
Christian König | a14faa6 | 2016-01-25 14:27:31 +0100 | [diff] [blame] | 1240 | uint64_t start, uint64_t last, |
Chunming Zhou | 6b77760 | 2016-09-21 16:19:19 +0800 | [diff] [blame] | 1241 | uint64_t flags, uint64_t addr, |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 1242 | struct dma_fence **fence) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1243 | { |
Christian König | 2d55e45 | 2016-02-08 17:37:38 +0100 | [diff] [blame] | 1244 | struct amdgpu_ring *ring; |
Christian König | a1e08d3 | 2016-01-26 11:40:46 +0100 | [diff] [blame] | 1245 | void *owner = AMDGPU_FENCE_OWNER_VM; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1246 | unsigned nptes, ncmds, ndw; |
Christian König | d71518b | 2016-02-01 12:20:25 +0100 | [diff] [blame] | 1247 | struct amdgpu_job *job; |
Christian König | 29efc4f | 2016-08-04 14:52:50 +0200 | [diff] [blame] | 1248 | struct amdgpu_pte_update_params params; |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 1249 | struct dma_fence *f = NULL; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1250 | int r; |
| 1251 | |
Christian König | afef8b8 | 2016-08-12 13:29:18 +0200 | [diff] [blame] | 1252 | memset(¶ms, 0, sizeof(params)); |
| 1253 | params.adev = adev; |
Christian König | 49ac8a2 | 2016-10-13 15:09:08 +0200 | [diff] [blame] | 1254 | params.vm = vm; |
Christian König | afef8b8 | 2016-08-12 13:29:18 +0200 | [diff] [blame] | 1255 | params.src = src; |
| 1256 | |
Christian König | 2d55e45 | 2016-02-08 17:37:38 +0100 | [diff] [blame] | 1257 | ring = container_of(vm->entity.sched, struct amdgpu_ring, sched); |
Christian König | 27c5f36 | 2016-08-04 15:02:49 +0200 | [diff] [blame] | 1258 | |
Christian König | a1e08d3 | 2016-01-26 11:40:46 +0100 | [diff] [blame] | 1259 | /* sync to everything on unmapping */ |
| 1260 | if (!(flags & AMDGPU_PTE_VALID)) |
| 1261 | owner = AMDGPU_FENCE_OWNER_UNDEFINED; |
| 1262 | |
Christian König | a14faa6 | 2016-01-25 14:27:31 +0100 | [diff] [blame] | 1263 | nptes = last - start + 1; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1264 | |
| 1265 | /* |
| 1266 | * reserve space for one command every (1 << BLOCK_SIZE) |
| 1267 | * entries or 2k dwords (whatever is smaller) |
| 1268 | */ |
Zhang, Jerry | 36b32a6 | 2017-03-29 16:08:32 +0800 | [diff] [blame] | 1269 | ncmds = (nptes >> min(adev->vm_manager.block_size, 11u)) + 1; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1270 | |
| 1271 | /* padding, etc. */ |
| 1272 | ndw = 64; |
| 1273 | |
Christian König | b0456f9 | 2016-08-11 14:06:54 +0200 | [diff] [blame] | 1274 | if (src) { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1275 | /* only copy commands needed */ |
| 1276 | ndw += ncmds * 7; |
| 1277 | |
Christian König | afef8b8 | 2016-08-12 13:29:18 +0200 | [diff] [blame] | 1278 | params.func = amdgpu_vm_do_copy_ptes; |
| 1279 | |
Christian König | b0456f9 | 2016-08-11 14:06:54 +0200 | [diff] [blame] | 1280 | } else if (pages_addr) { |
| 1281 | /* copy commands needed */ |
| 1282 | ndw += ncmds * 7; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1283 | |
Christian König | b0456f9 | 2016-08-11 14:06:54 +0200 | [diff] [blame] | 1284 | /* and also PTEs */ |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1285 | ndw += nptes * 2; |
| 1286 | |
Christian König | afef8b8 | 2016-08-12 13:29:18 +0200 | [diff] [blame] | 1287 | params.func = amdgpu_vm_do_copy_ptes; |
| 1288 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1289 | } else { |
| 1290 | /* set page commands needed */ |
| 1291 | ndw += ncmds * 10; |
| 1292 | |
| 1293 | /* two extra commands for begin/end of fragment */ |
| 1294 | ndw += 2 * 10; |
Christian König | afef8b8 | 2016-08-12 13:29:18 +0200 | [diff] [blame] | 1295 | |
| 1296 | params.func = amdgpu_vm_do_set_ptes; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1297 | } |
| 1298 | |
Christian König | d71518b | 2016-02-01 12:20:25 +0100 | [diff] [blame] | 1299 | r = amdgpu_job_alloc_with_ib(adev, ndw * 4, &job); |
| 1300 | if (r) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1301 | return r; |
Christian König | d71518b | 2016-02-01 12:20:25 +0100 | [diff] [blame] | 1302 | |
Christian König | 29efc4f | 2016-08-04 14:52:50 +0200 | [diff] [blame] | 1303 | params.ib = &job->ibs[0]; |
Chunming Zhou | d5fc5e8 | 2015-07-21 16:52:10 +0800 | [diff] [blame] | 1304 | |
Christian König | b0456f9 | 2016-08-11 14:06:54 +0200 | [diff] [blame] | 1305 | if (!src && pages_addr) { |
| 1306 | uint64_t *pte; |
| 1307 | unsigned i; |
| 1308 | |
| 1309 | /* Put the PTEs at the end of the IB. */ |
| 1310 | i = ndw - nptes * 2; |
| 1311 | pte= (uint64_t *)&(job->ibs->ptr[i]); |
| 1312 | params.src = job->ibs->gpu_addr + i * 4; |
| 1313 | |
| 1314 | for (i = 0; i < nptes; ++i) { |
| 1315 | pte[i] = amdgpu_vm_map_gart(pages_addr, addr + i * |
| 1316 | AMDGPU_GPU_PAGE_SIZE); |
| 1317 | pte[i] |= flags; |
| 1318 | } |
Christian König | d7a4ac6 | 2016-09-25 11:54:00 +0200 | [diff] [blame] | 1319 | addr = 0; |
Christian König | b0456f9 | 2016-08-11 14:06:54 +0200 | [diff] [blame] | 1320 | } |
| 1321 | |
Christian König | 3cabaa5 | 2016-06-06 10:17:58 +0200 | [diff] [blame] | 1322 | r = amdgpu_sync_fence(adev, &job->sync, exclusive); |
| 1323 | if (r) |
| 1324 | goto error_free; |
| 1325 | |
Christian König | 67003a1 | 2016-10-12 14:46:26 +0200 | [diff] [blame] | 1326 | r = amdgpu_sync_resv(adev, &job->sync, vm->root.bo->tbo.resv, |
Christian König | a1e08d3 | 2016-01-26 11:40:46 +0100 | [diff] [blame] | 1327 | owner); |
| 1328 | if (r) |
| 1329 | goto error_free; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1330 | |
Christian König | 67003a1 | 2016-10-12 14:46:26 +0200 | [diff] [blame] | 1331 | r = reservation_object_reserve_shared(vm->root.bo->tbo.resv); |
Christian König | a1e08d3 | 2016-01-26 11:40:46 +0100 | [diff] [blame] | 1332 | if (r) |
| 1333 | goto error_free; |
| 1334 | |
Chunming Zhou | 4c7e885 | 2016-08-15 11:46:21 +0800 | [diff] [blame] | 1335 | params.shadow = true; |
Christian König | 49ac8a2 | 2016-10-13 15:09:08 +0200 | [diff] [blame] | 1336 | amdgpu_vm_frag_ptes(¶ms, start, last + 1, addr, flags); |
Chunming Zhou | 4c7e885 | 2016-08-15 11:46:21 +0800 | [diff] [blame] | 1337 | params.shadow = false; |
Christian König | 49ac8a2 | 2016-10-13 15:09:08 +0200 | [diff] [blame] | 1338 | amdgpu_vm_frag_ptes(¶ms, start, last + 1, addr, flags); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1339 | |
Christian König | 29efc4f | 2016-08-04 14:52:50 +0200 | [diff] [blame] | 1340 | amdgpu_ring_pad_ib(ring, params.ib); |
| 1341 | WARN_ON(params.ib->length_dw > ndw); |
Christian König | 2bd9ccf | 2016-02-01 12:53:58 +0100 | [diff] [blame] | 1342 | r = amdgpu_job_submit(job, ring, &vm->entity, |
| 1343 | AMDGPU_FENCE_OWNER_VM, &f); |
Chunming Zhou | 4af9f07 | 2015-08-03 12:57:31 +0800 | [diff] [blame] | 1344 | if (r) |
| 1345 | goto error_free; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1346 | |
Christian König | 67003a1 | 2016-10-12 14:46:26 +0200 | [diff] [blame] | 1347 | amdgpu_bo_fence(vm->root.bo, f, true); |
Christian König | 284710f | 2017-01-30 11:09:31 +0100 | [diff] [blame] | 1348 | dma_fence_put(*fence); |
| 1349 | *fence = f; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1350 | return 0; |
Chunming Zhou | d5fc5e8 | 2015-07-21 16:52:10 +0800 | [diff] [blame] | 1351 | |
| 1352 | error_free: |
Christian König | d71518b | 2016-02-01 12:20:25 +0100 | [diff] [blame] | 1353 | amdgpu_job_free(job); |
Chunming Zhou | 4af9f07 | 2015-08-03 12:57:31 +0800 | [diff] [blame] | 1354 | return r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1355 | } |
| 1356 | |
| 1357 | /** |
Christian König | a14faa6 | 2016-01-25 14:27:31 +0100 | [diff] [blame] | 1358 | * amdgpu_vm_bo_split_mapping - split a mapping into smaller chunks |
| 1359 | * |
| 1360 | * @adev: amdgpu_device pointer |
Christian König | 3cabaa5 | 2016-06-06 10:17:58 +0200 | [diff] [blame] | 1361 | * @exclusive: fence we need to sync to |
Christian König | 8358dce | 2016-03-30 10:50:25 +0200 | [diff] [blame] | 1362 | * @gtt_flags: flags as they are used for GTT |
| 1363 | * @pages_addr: DMA addresses to use for mapping |
Christian König | a14faa6 | 2016-01-25 14:27:31 +0100 | [diff] [blame] | 1364 | * @vm: requested vm |
| 1365 | * @mapping: mapped range and flags to use for the update |
Christian König | 8358dce | 2016-03-30 10:50:25 +0200 | [diff] [blame] | 1366 | * @flags: HW flags for the mapping |
Christian König | 63e0ba4 | 2016-08-16 17:38:37 +0200 | [diff] [blame] | 1367 | * @nodes: array of drm_mm_nodes with the MC addresses |
Christian König | a14faa6 | 2016-01-25 14:27:31 +0100 | [diff] [blame] | 1368 | * @fence: optional resulting fence |
| 1369 | * |
| 1370 | * Split the mapping into smaller chunks so that each update fits |
| 1371 | * into a SDMA IB. |
| 1372 | * Returns 0 for success, -EINVAL for failure. |
| 1373 | */ |
| 1374 | static int amdgpu_vm_bo_split_mapping(struct amdgpu_device *adev, |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 1375 | struct dma_fence *exclusive, |
Chunming Zhou | 6b77760 | 2016-09-21 16:19:19 +0800 | [diff] [blame] | 1376 | uint64_t gtt_flags, |
Christian König | 8358dce | 2016-03-30 10:50:25 +0200 | [diff] [blame] | 1377 | dma_addr_t *pages_addr, |
Christian König | a14faa6 | 2016-01-25 14:27:31 +0100 | [diff] [blame] | 1378 | struct amdgpu_vm *vm, |
| 1379 | struct amdgpu_bo_va_mapping *mapping, |
Chunming Zhou | 6b77760 | 2016-09-21 16:19:19 +0800 | [diff] [blame] | 1380 | uint64_t flags, |
Christian König | 63e0ba4 | 2016-08-16 17:38:37 +0200 | [diff] [blame] | 1381 | struct drm_mm_node *nodes, |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 1382 | struct dma_fence **fence) |
Christian König | a14faa6 | 2016-01-25 14:27:31 +0100 | [diff] [blame] | 1383 | { |
Christian König | a9f87f6 | 2017-03-30 14:03:59 +0200 | [diff] [blame] | 1384 | uint64_t pfn, src = 0, start = mapping->start; |
Christian König | a14faa6 | 2016-01-25 14:27:31 +0100 | [diff] [blame] | 1385 | int r; |
| 1386 | |
| 1387 | /* normally,bo_va->flags only contians READABLE and WIRTEABLE bit go here |
| 1388 | * but in case of something, we filter the flags in first place |
| 1389 | */ |
| 1390 | if (!(mapping->flags & AMDGPU_PTE_READABLE)) |
| 1391 | flags &= ~AMDGPU_PTE_READABLE; |
| 1392 | if (!(mapping->flags & AMDGPU_PTE_WRITEABLE)) |
| 1393 | flags &= ~AMDGPU_PTE_WRITEABLE; |
| 1394 | |
Alex Xie | 15b31c5 | 2017-03-03 16:47:11 -0500 | [diff] [blame] | 1395 | flags &= ~AMDGPU_PTE_EXECUTABLE; |
| 1396 | flags |= mapping->flags & AMDGPU_PTE_EXECUTABLE; |
| 1397 | |
Alex Xie | b0fd18b | 2017-03-03 16:49:39 -0500 | [diff] [blame] | 1398 | flags &= ~AMDGPU_PTE_MTYPE_MASK; |
| 1399 | flags |= (mapping->flags & AMDGPU_PTE_MTYPE_MASK); |
| 1400 | |
Zhang, Jerry | d0766e9 | 2017-04-19 09:53:29 +0800 | [diff] [blame] | 1401 | if ((mapping->flags & AMDGPU_PTE_PRT) && |
| 1402 | (adev->asic_type >= CHIP_VEGA10)) { |
| 1403 | flags |= AMDGPU_PTE_PRT; |
| 1404 | flags &= ~AMDGPU_PTE_VALID; |
| 1405 | } |
| 1406 | |
Christian König | a14faa6 | 2016-01-25 14:27:31 +0100 | [diff] [blame] | 1407 | trace_amdgpu_vm_bo_update(mapping); |
| 1408 | |
Christian König | 63e0ba4 | 2016-08-16 17:38:37 +0200 | [diff] [blame] | 1409 | pfn = mapping->offset >> PAGE_SHIFT; |
| 1410 | if (nodes) { |
| 1411 | while (pfn >= nodes->size) { |
| 1412 | pfn -= nodes->size; |
| 1413 | ++nodes; |
| 1414 | } |
Christian König | fa3ab3c | 2016-03-18 21:00:35 +0100 | [diff] [blame] | 1415 | } |
Christian König | a14faa6 | 2016-01-25 14:27:31 +0100 | [diff] [blame] | 1416 | |
Christian König | 63e0ba4 | 2016-08-16 17:38:37 +0200 | [diff] [blame] | 1417 | do { |
| 1418 | uint64_t max_entries; |
| 1419 | uint64_t addr, last; |
Christian König | a14faa6 | 2016-01-25 14:27:31 +0100 | [diff] [blame] | 1420 | |
Christian König | 63e0ba4 | 2016-08-16 17:38:37 +0200 | [diff] [blame] | 1421 | if (nodes) { |
| 1422 | addr = nodes->start << PAGE_SHIFT; |
| 1423 | max_entries = (nodes->size - pfn) * |
| 1424 | (PAGE_SIZE / AMDGPU_GPU_PAGE_SIZE); |
| 1425 | } else { |
| 1426 | addr = 0; |
| 1427 | max_entries = S64_MAX; |
| 1428 | } |
Christian König | a14faa6 | 2016-01-25 14:27:31 +0100 | [diff] [blame] | 1429 | |
Christian König | 63e0ba4 | 2016-08-16 17:38:37 +0200 | [diff] [blame] | 1430 | if (pages_addr) { |
| 1431 | if (flags == gtt_flags) |
| 1432 | src = adev->gart.table_addr + |
| 1433 | (addr >> AMDGPU_GPU_PAGE_SHIFT) * 8; |
| 1434 | else |
| 1435 | max_entries = min(max_entries, 16ull * 1024ull); |
| 1436 | addr = 0; |
| 1437 | } else if (flags & AMDGPU_PTE_VALID) { |
| 1438 | addr += adev->vm_manager.vram_base_offset; |
| 1439 | } |
| 1440 | addr += pfn << PAGE_SHIFT; |
| 1441 | |
Christian König | a9f87f6 | 2017-03-30 14:03:59 +0200 | [diff] [blame] | 1442 | last = min((uint64_t)mapping->last, start + max_entries - 1); |
Christian König | 3cabaa5 | 2016-06-06 10:17:58 +0200 | [diff] [blame] | 1443 | r = amdgpu_vm_bo_update_mapping(adev, exclusive, |
| 1444 | src, pages_addr, vm, |
Christian König | a14faa6 | 2016-01-25 14:27:31 +0100 | [diff] [blame] | 1445 | start, last, flags, addr, |
| 1446 | fence); |
| 1447 | if (r) |
| 1448 | return r; |
| 1449 | |
Christian König | 63e0ba4 | 2016-08-16 17:38:37 +0200 | [diff] [blame] | 1450 | pfn += last - start + 1; |
| 1451 | if (nodes && nodes->size == pfn) { |
| 1452 | pfn = 0; |
| 1453 | ++nodes; |
| 1454 | } |
Christian König | a14faa6 | 2016-01-25 14:27:31 +0100 | [diff] [blame] | 1455 | start = last + 1; |
Christian König | 63e0ba4 | 2016-08-16 17:38:37 +0200 | [diff] [blame] | 1456 | |
Christian König | a9f87f6 | 2017-03-30 14:03:59 +0200 | [diff] [blame] | 1457 | } while (unlikely(start != mapping->last + 1)); |
Christian König | a14faa6 | 2016-01-25 14:27:31 +0100 | [diff] [blame] | 1458 | |
| 1459 | return 0; |
| 1460 | } |
| 1461 | |
| 1462 | /** |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1463 | * amdgpu_vm_bo_update - update all BO mappings in the vm page table |
| 1464 | * |
| 1465 | * @adev: amdgpu_device pointer |
| 1466 | * @bo_va: requested BO and VM object |
Christian König | 99e124f | 2016-08-16 14:43:17 +0200 | [diff] [blame] | 1467 | * @clear: if true clear the entries |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1468 | * |
| 1469 | * Fill in the page table entries for @bo_va. |
| 1470 | * Returns 0 for success, -EINVAL for failure. |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1471 | */ |
| 1472 | int amdgpu_vm_bo_update(struct amdgpu_device *adev, |
| 1473 | struct amdgpu_bo_va *bo_va, |
Christian König | 99e124f | 2016-08-16 14:43:17 +0200 | [diff] [blame] | 1474 | bool clear) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1475 | { |
| 1476 | struct amdgpu_vm *vm = bo_va->vm; |
| 1477 | struct amdgpu_bo_va_mapping *mapping; |
Christian König | 8358dce | 2016-03-30 10:50:25 +0200 | [diff] [blame] | 1478 | dma_addr_t *pages_addr = NULL; |
Chunming Zhou | 6b77760 | 2016-09-21 16:19:19 +0800 | [diff] [blame] | 1479 | uint64_t gtt_flags, flags; |
Christian König | 99e124f | 2016-08-16 14:43:17 +0200 | [diff] [blame] | 1480 | struct ttm_mem_reg *mem; |
Christian König | 63e0ba4 | 2016-08-16 17:38:37 +0200 | [diff] [blame] | 1481 | struct drm_mm_node *nodes; |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 1482 | struct dma_fence *exclusive; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1483 | int r; |
| 1484 | |
Christian König | a5f6b5b | 2017-01-30 11:01:38 +0100 | [diff] [blame] | 1485 | if (clear || !bo_va->bo) { |
Christian König | 99e124f | 2016-08-16 14:43:17 +0200 | [diff] [blame] | 1486 | mem = NULL; |
Christian König | 63e0ba4 | 2016-08-16 17:38:37 +0200 | [diff] [blame] | 1487 | nodes = NULL; |
Christian König | 99e124f | 2016-08-16 14:43:17 +0200 | [diff] [blame] | 1488 | exclusive = NULL; |
| 1489 | } else { |
Christian König | 8358dce | 2016-03-30 10:50:25 +0200 | [diff] [blame] | 1490 | struct ttm_dma_tt *ttm; |
| 1491 | |
Christian König | 99e124f | 2016-08-16 14:43:17 +0200 | [diff] [blame] | 1492 | mem = &bo_va->bo->tbo.mem; |
Christian König | 63e0ba4 | 2016-08-16 17:38:37 +0200 | [diff] [blame] | 1493 | nodes = mem->mm_node; |
| 1494 | if (mem->mem_type == TTM_PL_TT) { |
Christian König | 8358dce | 2016-03-30 10:50:25 +0200 | [diff] [blame] | 1495 | ttm = container_of(bo_va->bo->tbo.ttm, struct |
| 1496 | ttm_dma_tt, ttm); |
| 1497 | pages_addr = ttm->dma_address; |
Christian König | 9ab2146 | 2015-11-30 14:19:26 +0100 | [diff] [blame] | 1498 | } |
Christian König | 3cabaa5 | 2016-06-06 10:17:58 +0200 | [diff] [blame] | 1499 | exclusive = reservation_object_get_excl(bo_va->bo->tbo.resv); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1500 | } |
| 1501 | |
Christian König | a5f6b5b | 2017-01-30 11:01:38 +0100 | [diff] [blame] | 1502 | if (bo_va->bo) { |
| 1503 | flags = amdgpu_ttm_tt_pte_flags(adev, bo_va->bo->tbo.ttm, mem); |
| 1504 | gtt_flags = (amdgpu_ttm_is_bound(bo_va->bo->tbo.ttm) && |
| 1505 | adev == amdgpu_ttm_adev(bo_va->bo->tbo.bdev)) ? |
| 1506 | flags : 0; |
| 1507 | } else { |
| 1508 | flags = 0x0; |
| 1509 | gtt_flags = ~0x0; |
| 1510 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1511 | |
Christian König | 7fc1195 | 2015-07-30 11:53:42 +0200 | [diff] [blame] | 1512 | spin_lock(&vm->status_lock); |
| 1513 | if (!list_empty(&bo_va->vm_status)) |
| 1514 | list_splice_init(&bo_va->valids, &bo_va->invalids); |
| 1515 | spin_unlock(&vm->status_lock); |
| 1516 | |
| 1517 | list_for_each_entry(mapping, &bo_va->invalids, list) { |
Christian König | 3cabaa5 | 2016-06-06 10:17:58 +0200 | [diff] [blame] | 1518 | r = amdgpu_vm_bo_split_mapping(adev, exclusive, |
| 1519 | gtt_flags, pages_addr, vm, |
Christian König | 63e0ba4 | 2016-08-16 17:38:37 +0200 | [diff] [blame] | 1520 | mapping, flags, nodes, |
Christian König | 8358dce | 2016-03-30 10:50:25 +0200 | [diff] [blame] | 1521 | &bo_va->last_pt_update); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1522 | if (r) |
| 1523 | return r; |
| 1524 | } |
| 1525 | |
Christian König | d6c10f6 | 2015-09-28 12:00:23 +0200 | [diff] [blame] | 1526 | if (trace_amdgpu_vm_bo_mapping_enabled()) { |
| 1527 | list_for_each_entry(mapping, &bo_va->valids, list) |
| 1528 | trace_amdgpu_vm_bo_mapping(mapping); |
| 1529 | |
| 1530 | list_for_each_entry(mapping, &bo_va->invalids, list) |
| 1531 | trace_amdgpu_vm_bo_mapping(mapping); |
| 1532 | } |
| 1533 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1534 | spin_lock(&vm->status_lock); |
monk.liu | 6d1d0ef | 2015-08-14 13:36:41 +0800 | [diff] [blame] | 1535 | list_splice_init(&bo_va->invalids, &bo_va->valids); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1536 | list_del_init(&bo_va->vm_status); |
Christian König | 99e124f | 2016-08-16 14:43:17 +0200 | [diff] [blame] | 1537 | if (clear) |
Christian König | 7fc1195 | 2015-07-30 11:53:42 +0200 | [diff] [blame] | 1538 | list_add(&bo_va->vm_status, &vm->cleared); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1539 | spin_unlock(&vm->status_lock); |
| 1540 | |
| 1541 | return 0; |
| 1542 | } |
| 1543 | |
| 1544 | /** |
Christian König | 284710f | 2017-01-30 11:09:31 +0100 | [diff] [blame] | 1545 | * amdgpu_vm_update_prt_state - update the global PRT state |
| 1546 | */ |
| 1547 | static void amdgpu_vm_update_prt_state(struct amdgpu_device *adev) |
| 1548 | { |
| 1549 | unsigned long flags; |
| 1550 | bool enable; |
| 1551 | |
| 1552 | spin_lock_irqsave(&adev->vm_manager.prt_lock, flags); |
Christian König | 451bc8e | 2017-02-14 16:02:52 +0100 | [diff] [blame] | 1553 | enable = !!atomic_read(&adev->vm_manager.num_prt_users); |
Christian König | 284710f | 2017-01-30 11:09:31 +0100 | [diff] [blame] | 1554 | adev->gart.gart_funcs->set_prt(adev, enable); |
| 1555 | spin_unlock_irqrestore(&adev->vm_manager.prt_lock, flags); |
| 1556 | } |
| 1557 | |
| 1558 | /** |
Christian König | 4388fc2 | 2017-03-13 10:13:36 +0100 | [diff] [blame] | 1559 | * amdgpu_vm_prt_get - add a PRT user |
Christian König | 451bc8e | 2017-02-14 16:02:52 +0100 | [diff] [blame] | 1560 | */ |
| 1561 | static void amdgpu_vm_prt_get(struct amdgpu_device *adev) |
| 1562 | { |
Christian König | 4388fc2 | 2017-03-13 10:13:36 +0100 | [diff] [blame] | 1563 | if (!adev->gart.gart_funcs->set_prt) |
| 1564 | return; |
| 1565 | |
Christian König | 451bc8e | 2017-02-14 16:02:52 +0100 | [diff] [blame] | 1566 | if (atomic_inc_return(&adev->vm_manager.num_prt_users) == 1) |
| 1567 | amdgpu_vm_update_prt_state(adev); |
| 1568 | } |
| 1569 | |
| 1570 | /** |
Christian König | 0b15f2f | 2017-02-14 15:47:03 +0100 | [diff] [blame] | 1571 | * amdgpu_vm_prt_put - drop a PRT user |
| 1572 | */ |
| 1573 | static void amdgpu_vm_prt_put(struct amdgpu_device *adev) |
| 1574 | { |
Christian König | 451bc8e | 2017-02-14 16:02:52 +0100 | [diff] [blame] | 1575 | if (atomic_dec_return(&adev->vm_manager.num_prt_users) == 0) |
Christian König | 0b15f2f | 2017-02-14 15:47:03 +0100 | [diff] [blame] | 1576 | amdgpu_vm_update_prt_state(adev); |
| 1577 | } |
| 1578 | |
| 1579 | /** |
Christian König | 451bc8e | 2017-02-14 16:02:52 +0100 | [diff] [blame] | 1580 | * amdgpu_vm_prt_cb - callback for updating the PRT status |
Christian König | 284710f | 2017-01-30 11:09:31 +0100 | [diff] [blame] | 1581 | */ |
| 1582 | static void amdgpu_vm_prt_cb(struct dma_fence *fence, struct dma_fence_cb *_cb) |
| 1583 | { |
| 1584 | struct amdgpu_prt_cb *cb = container_of(_cb, struct amdgpu_prt_cb, cb); |
| 1585 | |
Christian König | 0b15f2f | 2017-02-14 15:47:03 +0100 | [diff] [blame] | 1586 | amdgpu_vm_prt_put(cb->adev); |
Christian König | 284710f | 2017-01-30 11:09:31 +0100 | [diff] [blame] | 1587 | kfree(cb); |
| 1588 | } |
| 1589 | |
| 1590 | /** |
Christian König | 451bc8e | 2017-02-14 16:02:52 +0100 | [diff] [blame] | 1591 | * amdgpu_vm_add_prt_cb - add callback for updating the PRT status |
| 1592 | */ |
| 1593 | static void amdgpu_vm_add_prt_cb(struct amdgpu_device *adev, |
| 1594 | struct dma_fence *fence) |
| 1595 | { |
Christian König | 4388fc2 | 2017-03-13 10:13:36 +0100 | [diff] [blame] | 1596 | struct amdgpu_prt_cb *cb; |
Christian König | 451bc8e | 2017-02-14 16:02:52 +0100 | [diff] [blame] | 1597 | |
Christian König | 4388fc2 | 2017-03-13 10:13:36 +0100 | [diff] [blame] | 1598 | if (!adev->gart.gart_funcs->set_prt) |
| 1599 | return; |
| 1600 | |
| 1601 | cb = kmalloc(sizeof(struct amdgpu_prt_cb), GFP_KERNEL); |
Christian König | 451bc8e | 2017-02-14 16:02:52 +0100 | [diff] [blame] | 1602 | if (!cb) { |
| 1603 | /* Last resort when we are OOM */ |
| 1604 | if (fence) |
| 1605 | dma_fence_wait(fence, false); |
| 1606 | |
Dan Carpenter | 486a68f | 2017-04-03 21:41:39 +0300 | [diff] [blame] | 1607 | amdgpu_vm_prt_put(adev); |
Christian König | 451bc8e | 2017-02-14 16:02:52 +0100 | [diff] [blame] | 1608 | } else { |
| 1609 | cb->adev = adev; |
| 1610 | if (!fence || dma_fence_add_callback(fence, &cb->cb, |
| 1611 | amdgpu_vm_prt_cb)) |
| 1612 | amdgpu_vm_prt_cb(fence, &cb->cb); |
| 1613 | } |
| 1614 | } |
| 1615 | |
| 1616 | /** |
Christian König | 284710f | 2017-01-30 11:09:31 +0100 | [diff] [blame] | 1617 | * amdgpu_vm_free_mapping - free a mapping |
| 1618 | * |
| 1619 | * @adev: amdgpu_device pointer |
| 1620 | * @vm: requested vm |
| 1621 | * @mapping: mapping to be freed |
| 1622 | * @fence: fence of the unmap operation |
| 1623 | * |
| 1624 | * Free a mapping and make sure we decrease the PRT usage count if applicable. |
| 1625 | */ |
| 1626 | static void amdgpu_vm_free_mapping(struct amdgpu_device *adev, |
| 1627 | struct amdgpu_vm *vm, |
| 1628 | struct amdgpu_bo_va_mapping *mapping, |
| 1629 | struct dma_fence *fence) |
| 1630 | { |
Christian König | 451bc8e | 2017-02-14 16:02:52 +0100 | [diff] [blame] | 1631 | if (mapping->flags & AMDGPU_PTE_PRT) |
| 1632 | amdgpu_vm_add_prt_cb(adev, fence); |
Christian König | 284710f | 2017-01-30 11:09:31 +0100 | [diff] [blame] | 1633 | kfree(mapping); |
| 1634 | } |
| 1635 | |
| 1636 | /** |
Christian König | 451bc8e | 2017-02-14 16:02:52 +0100 | [diff] [blame] | 1637 | * amdgpu_vm_prt_fini - finish all prt mappings |
| 1638 | * |
| 1639 | * @adev: amdgpu_device pointer |
| 1640 | * @vm: requested vm |
| 1641 | * |
| 1642 | * Register a cleanup callback to disable PRT support after VM dies. |
| 1643 | */ |
| 1644 | static void amdgpu_vm_prt_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm) |
| 1645 | { |
Christian König | 67003a1 | 2016-10-12 14:46:26 +0200 | [diff] [blame] | 1646 | struct reservation_object *resv = vm->root.bo->tbo.resv; |
Christian König | 451bc8e | 2017-02-14 16:02:52 +0100 | [diff] [blame] | 1647 | struct dma_fence *excl, **shared; |
| 1648 | unsigned i, shared_count; |
| 1649 | int r; |
| 1650 | |
| 1651 | r = reservation_object_get_fences_rcu(resv, &excl, |
| 1652 | &shared_count, &shared); |
| 1653 | if (r) { |
| 1654 | /* Not enough memory to grab the fence list, as last resort |
| 1655 | * block for all the fences to complete. |
| 1656 | */ |
| 1657 | reservation_object_wait_timeout_rcu(resv, true, false, |
| 1658 | MAX_SCHEDULE_TIMEOUT); |
| 1659 | return; |
| 1660 | } |
| 1661 | |
| 1662 | /* Add a callback for each fence in the reservation object */ |
| 1663 | amdgpu_vm_prt_get(adev); |
| 1664 | amdgpu_vm_add_prt_cb(adev, excl); |
| 1665 | |
| 1666 | for (i = 0; i < shared_count; ++i) { |
| 1667 | amdgpu_vm_prt_get(adev); |
| 1668 | amdgpu_vm_add_prt_cb(adev, shared[i]); |
| 1669 | } |
| 1670 | |
| 1671 | kfree(shared); |
| 1672 | } |
| 1673 | |
| 1674 | /** |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1675 | * amdgpu_vm_clear_freed - clear freed BOs in the PT |
| 1676 | * |
| 1677 | * @adev: amdgpu_device pointer |
| 1678 | * @vm: requested vm |
Nicolai Hähnle | f346781 | 2017-03-23 19:36:31 +0100 | [diff] [blame] | 1679 | * @fence: optional resulting fence (unchanged if no work needed to be done |
| 1680 | * or if an error occurred) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1681 | * |
| 1682 | * Make sure all freed BOs are cleared in the PT. |
| 1683 | * Returns 0 for success. |
| 1684 | * |
| 1685 | * PTs have to be reserved and mutex must be locked! |
| 1686 | */ |
| 1687 | int amdgpu_vm_clear_freed(struct amdgpu_device *adev, |
Nicolai Hähnle | f346781 | 2017-03-23 19:36:31 +0100 | [diff] [blame] | 1688 | struct amdgpu_vm *vm, |
| 1689 | struct dma_fence **fence) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1690 | { |
| 1691 | struct amdgpu_bo_va_mapping *mapping; |
Nicolai Hähnle | f346781 | 2017-03-23 19:36:31 +0100 | [diff] [blame] | 1692 | struct dma_fence *f = NULL; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1693 | int r; |
| 1694 | |
| 1695 | while (!list_empty(&vm->freed)) { |
| 1696 | mapping = list_first_entry(&vm->freed, |
| 1697 | struct amdgpu_bo_va_mapping, list); |
| 1698 | list_del(&mapping->list); |
Christian König | e17841b | 2016-03-08 17:52:01 +0100 | [diff] [blame] | 1699 | |
Christian König | fc6aa33 | 2017-04-19 14:41:19 +0200 | [diff] [blame] | 1700 | r = amdgpu_vm_bo_update_mapping(adev, NULL, 0, NULL, vm, |
| 1701 | mapping->start, mapping->last, |
| 1702 | 0, 0, &f); |
Nicolai Hähnle | f346781 | 2017-03-23 19:36:31 +0100 | [diff] [blame] | 1703 | amdgpu_vm_free_mapping(adev, vm, mapping, f); |
Christian König | 284710f | 2017-01-30 11:09:31 +0100 | [diff] [blame] | 1704 | if (r) { |
Nicolai Hähnle | f346781 | 2017-03-23 19:36:31 +0100 | [diff] [blame] | 1705 | dma_fence_put(f); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1706 | return r; |
Christian König | 284710f | 2017-01-30 11:09:31 +0100 | [diff] [blame] | 1707 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1708 | } |
Nicolai Hähnle | f346781 | 2017-03-23 19:36:31 +0100 | [diff] [blame] | 1709 | |
| 1710 | if (fence && f) { |
| 1711 | dma_fence_put(*fence); |
| 1712 | *fence = f; |
| 1713 | } else { |
| 1714 | dma_fence_put(f); |
| 1715 | } |
| 1716 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1717 | return 0; |
| 1718 | |
| 1719 | } |
| 1720 | |
| 1721 | /** |
| 1722 | * amdgpu_vm_clear_invalids - clear invalidated BOs in the PT |
| 1723 | * |
| 1724 | * @adev: amdgpu_device pointer |
| 1725 | * @vm: requested vm |
| 1726 | * |
| 1727 | * Make sure all invalidated BOs are cleared in the PT. |
| 1728 | * Returns 0 for success. |
| 1729 | * |
| 1730 | * PTs have to be reserved and mutex must be locked! |
| 1731 | */ |
| 1732 | int amdgpu_vm_clear_invalids(struct amdgpu_device *adev, |
monk.liu | cfe2c97 | 2015-05-26 15:01:54 +0800 | [diff] [blame] | 1733 | struct amdgpu_vm *vm, struct amdgpu_sync *sync) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1734 | { |
monk.liu | cfe2c97 | 2015-05-26 15:01:54 +0800 | [diff] [blame] | 1735 | struct amdgpu_bo_va *bo_va = NULL; |
Christian König | 91e1a52 | 2015-07-06 22:06:40 +0200 | [diff] [blame] | 1736 | int r = 0; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1737 | |
| 1738 | spin_lock(&vm->status_lock); |
| 1739 | while (!list_empty(&vm->invalidated)) { |
| 1740 | bo_va = list_first_entry(&vm->invalidated, |
| 1741 | struct amdgpu_bo_va, vm_status); |
| 1742 | spin_unlock(&vm->status_lock); |
Christian König | 32b41ac | 2016-03-08 18:03:27 +0100 | [diff] [blame] | 1743 | |
Christian König | 99e124f | 2016-08-16 14:43:17 +0200 | [diff] [blame] | 1744 | r = amdgpu_vm_bo_update(adev, bo_va, true); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1745 | if (r) |
| 1746 | return r; |
| 1747 | |
| 1748 | spin_lock(&vm->status_lock); |
| 1749 | } |
| 1750 | spin_unlock(&vm->status_lock); |
| 1751 | |
monk.liu | cfe2c97 | 2015-05-26 15:01:54 +0800 | [diff] [blame] | 1752 | if (bo_va) |
Chunming Zhou | bb1e38a4 | 2015-08-03 18:19:38 +0800 | [diff] [blame] | 1753 | r = amdgpu_sync_fence(adev, sync, bo_va->last_pt_update); |
Christian König | 91e1a52 | 2015-07-06 22:06:40 +0200 | [diff] [blame] | 1754 | |
| 1755 | return r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1756 | } |
| 1757 | |
| 1758 | /** |
| 1759 | * amdgpu_vm_bo_add - add a bo to a specific vm |
| 1760 | * |
| 1761 | * @adev: amdgpu_device pointer |
| 1762 | * @vm: requested vm |
| 1763 | * @bo: amdgpu buffer object |
| 1764 | * |
Christian König | 8843dbb | 2016-01-26 12:17:11 +0100 | [diff] [blame] | 1765 | * Add @bo into the requested vm. |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1766 | * Add @bo to the list of bos associated with the vm |
| 1767 | * Returns newly added bo_va or NULL for failure |
| 1768 | * |
| 1769 | * Object has to be reserved! |
| 1770 | */ |
| 1771 | struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev, |
| 1772 | struct amdgpu_vm *vm, |
| 1773 | struct amdgpu_bo *bo) |
| 1774 | { |
| 1775 | struct amdgpu_bo_va *bo_va; |
| 1776 | |
| 1777 | bo_va = kzalloc(sizeof(struct amdgpu_bo_va), GFP_KERNEL); |
| 1778 | if (bo_va == NULL) { |
| 1779 | return NULL; |
| 1780 | } |
| 1781 | bo_va->vm = vm; |
| 1782 | bo_va->bo = bo; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1783 | bo_va->ref_count = 1; |
| 1784 | INIT_LIST_HEAD(&bo_va->bo_list); |
Christian König | 7fc1195 | 2015-07-30 11:53:42 +0200 | [diff] [blame] | 1785 | INIT_LIST_HEAD(&bo_va->valids); |
| 1786 | INIT_LIST_HEAD(&bo_va->invalids); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1787 | INIT_LIST_HEAD(&bo_va->vm_status); |
Christian König | 32b41ac | 2016-03-08 18:03:27 +0100 | [diff] [blame] | 1788 | |
Christian König | a5f6b5b | 2017-01-30 11:01:38 +0100 | [diff] [blame] | 1789 | if (bo) |
| 1790 | list_add_tail(&bo_va->bo_list, &bo->va); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1791 | |
| 1792 | return bo_va; |
| 1793 | } |
| 1794 | |
| 1795 | /** |
| 1796 | * amdgpu_vm_bo_map - map bo inside a vm |
| 1797 | * |
| 1798 | * @adev: amdgpu_device pointer |
| 1799 | * @bo_va: bo_va to store the address |
| 1800 | * @saddr: where to map the BO |
| 1801 | * @offset: requested offset in the BO |
| 1802 | * @flags: attributes of pages (read/write/valid/etc.) |
| 1803 | * |
| 1804 | * Add a mapping of the BO at the specefied addr into the VM. |
| 1805 | * Returns 0 for success, error for failure. |
| 1806 | * |
Chunming Zhou | 49b02b1 | 2015-11-13 14:18:38 +0800 | [diff] [blame] | 1807 | * Object has to be reserved and unreserved outside! |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1808 | */ |
| 1809 | int amdgpu_vm_bo_map(struct amdgpu_device *adev, |
| 1810 | struct amdgpu_bo_va *bo_va, |
| 1811 | uint64_t saddr, uint64_t offset, |
Christian König | 268c300 | 2017-01-18 14:49:43 +0100 | [diff] [blame] | 1812 | uint64_t size, uint64_t flags) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1813 | { |
Christian König | a9f87f6 | 2017-03-30 14:03:59 +0200 | [diff] [blame] | 1814 | struct amdgpu_bo_va_mapping *mapping, *tmp; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1815 | struct amdgpu_vm *vm = bo_va->vm; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1816 | uint64_t eaddr; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1817 | |
Christian König | 0be52de | 2015-05-18 14:37:27 +0200 | [diff] [blame] | 1818 | /* validate the parameters */ |
| 1819 | if (saddr & AMDGPU_GPU_PAGE_MASK || offset & AMDGPU_GPU_PAGE_MASK || |
Chunming Zhou | 49b02b1 | 2015-11-13 14:18:38 +0800 | [diff] [blame] | 1820 | size == 0 || size & AMDGPU_GPU_PAGE_MASK) |
Christian König | 0be52de | 2015-05-18 14:37:27 +0200 | [diff] [blame] | 1821 | return -EINVAL; |
Christian König | 0be52de | 2015-05-18 14:37:27 +0200 | [diff] [blame] | 1822 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1823 | /* make sure object fit at this offset */ |
Felix Kuehling | 005ae95 | 2015-11-23 17:43:48 -0500 | [diff] [blame] | 1824 | eaddr = saddr + size - 1; |
Christian König | a5f6b5b | 2017-01-30 11:01:38 +0100 | [diff] [blame] | 1825 | if (saddr >= eaddr || |
| 1826 | (bo_va->bo && offset + size > amdgpu_bo_size(bo_va->bo))) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1827 | return -EINVAL; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1828 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1829 | saddr /= AMDGPU_GPU_PAGE_SIZE; |
| 1830 | eaddr /= AMDGPU_GPU_PAGE_SIZE; |
| 1831 | |
Christian König | a9f87f6 | 2017-03-30 14:03:59 +0200 | [diff] [blame] | 1832 | tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr); |
| 1833 | if (tmp) { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1834 | /* bo and tmp overlap, invalid addr */ |
| 1835 | dev_err(adev->dev, "bo %p va 0x%010Lx-0x%010Lx conflict with " |
Christian König | a9f87f6 | 2017-03-30 14:03:59 +0200 | [diff] [blame] | 1836 | "0x%010Lx-0x%010Lx\n", bo_va->bo, saddr, eaddr, |
| 1837 | tmp->start, tmp->last + 1); |
Christian König | 663e457 | 2017-03-13 10:13:37 +0100 | [diff] [blame] | 1838 | return -EINVAL; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1839 | } |
| 1840 | |
| 1841 | mapping = kmalloc(sizeof(*mapping), GFP_KERNEL); |
Christian König | 663e457 | 2017-03-13 10:13:37 +0100 | [diff] [blame] | 1842 | if (!mapping) |
| 1843 | return -ENOMEM; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1844 | |
| 1845 | INIT_LIST_HEAD(&mapping->list); |
Christian König | a9f87f6 | 2017-03-30 14:03:59 +0200 | [diff] [blame] | 1846 | mapping->start = saddr; |
| 1847 | mapping->last = eaddr; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1848 | mapping->offset = offset; |
| 1849 | mapping->flags = flags; |
| 1850 | |
Christian König | 7fc1195 | 2015-07-30 11:53:42 +0200 | [diff] [blame] | 1851 | list_add(&mapping->list, &bo_va->invalids); |
Christian König | a9f87f6 | 2017-03-30 14:03:59 +0200 | [diff] [blame] | 1852 | amdgpu_vm_it_insert(mapping, &vm->va); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1853 | |
Christian König | 4388fc2 | 2017-03-13 10:13:36 +0100 | [diff] [blame] | 1854 | if (flags & AMDGPU_PTE_PRT) |
| 1855 | amdgpu_vm_prt_get(adev); |
| 1856 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1857 | return 0; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1858 | } |
| 1859 | |
| 1860 | /** |
Christian König | 80f95c5 | 2017-03-13 10:13:39 +0100 | [diff] [blame] | 1861 | * amdgpu_vm_bo_replace_map - map bo inside a vm, replacing existing mappings |
| 1862 | * |
| 1863 | * @adev: amdgpu_device pointer |
| 1864 | * @bo_va: bo_va to store the address |
| 1865 | * @saddr: where to map the BO |
| 1866 | * @offset: requested offset in the BO |
| 1867 | * @flags: attributes of pages (read/write/valid/etc.) |
| 1868 | * |
| 1869 | * Add a mapping of the BO at the specefied addr into the VM. Replace existing |
| 1870 | * mappings as we do so. |
| 1871 | * Returns 0 for success, error for failure. |
| 1872 | * |
| 1873 | * Object has to be reserved and unreserved outside! |
| 1874 | */ |
| 1875 | int amdgpu_vm_bo_replace_map(struct amdgpu_device *adev, |
| 1876 | struct amdgpu_bo_va *bo_va, |
| 1877 | uint64_t saddr, uint64_t offset, |
| 1878 | uint64_t size, uint64_t flags) |
| 1879 | { |
| 1880 | struct amdgpu_bo_va_mapping *mapping; |
| 1881 | struct amdgpu_vm *vm = bo_va->vm; |
| 1882 | uint64_t eaddr; |
| 1883 | int r; |
| 1884 | |
| 1885 | /* validate the parameters */ |
| 1886 | if (saddr & AMDGPU_GPU_PAGE_MASK || offset & AMDGPU_GPU_PAGE_MASK || |
| 1887 | size == 0 || size & AMDGPU_GPU_PAGE_MASK) |
| 1888 | return -EINVAL; |
| 1889 | |
| 1890 | /* make sure object fit at this offset */ |
| 1891 | eaddr = saddr + size - 1; |
| 1892 | if (saddr >= eaddr || |
| 1893 | (bo_va->bo && offset + size > amdgpu_bo_size(bo_va->bo))) |
| 1894 | return -EINVAL; |
| 1895 | |
| 1896 | /* Allocate all the needed memory */ |
| 1897 | mapping = kmalloc(sizeof(*mapping), GFP_KERNEL); |
| 1898 | if (!mapping) |
| 1899 | return -ENOMEM; |
| 1900 | |
| 1901 | r = amdgpu_vm_bo_clear_mappings(adev, bo_va->vm, saddr, size); |
| 1902 | if (r) { |
| 1903 | kfree(mapping); |
| 1904 | return r; |
| 1905 | } |
| 1906 | |
| 1907 | saddr /= AMDGPU_GPU_PAGE_SIZE; |
| 1908 | eaddr /= AMDGPU_GPU_PAGE_SIZE; |
| 1909 | |
Christian König | a9f87f6 | 2017-03-30 14:03:59 +0200 | [diff] [blame] | 1910 | mapping->start = saddr; |
| 1911 | mapping->last = eaddr; |
Christian König | 80f95c5 | 2017-03-13 10:13:39 +0100 | [diff] [blame] | 1912 | mapping->offset = offset; |
| 1913 | mapping->flags = flags; |
| 1914 | |
| 1915 | list_add(&mapping->list, &bo_va->invalids); |
Christian König | a9f87f6 | 2017-03-30 14:03:59 +0200 | [diff] [blame] | 1916 | amdgpu_vm_it_insert(mapping, &vm->va); |
Christian König | 80f95c5 | 2017-03-13 10:13:39 +0100 | [diff] [blame] | 1917 | |
| 1918 | if (flags & AMDGPU_PTE_PRT) |
| 1919 | amdgpu_vm_prt_get(adev); |
| 1920 | |
| 1921 | return 0; |
| 1922 | } |
| 1923 | |
| 1924 | /** |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1925 | * amdgpu_vm_bo_unmap - remove bo mapping from vm |
| 1926 | * |
| 1927 | * @adev: amdgpu_device pointer |
| 1928 | * @bo_va: bo_va to remove the address from |
| 1929 | * @saddr: where to the BO is mapped |
| 1930 | * |
| 1931 | * Remove a mapping of the BO at the specefied addr from the VM. |
| 1932 | * Returns 0 for success, error for failure. |
| 1933 | * |
Chunming Zhou | 49b02b1 | 2015-11-13 14:18:38 +0800 | [diff] [blame] | 1934 | * Object has to be reserved and unreserved outside! |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1935 | */ |
| 1936 | int amdgpu_vm_bo_unmap(struct amdgpu_device *adev, |
| 1937 | struct amdgpu_bo_va *bo_va, |
| 1938 | uint64_t saddr) |
| 1939 | { |
| 1940 | struct amdgpu_bo_va_mapping *mapping; |
| 1941 | struct amdgpu_vm *vm = bo_va->vm; |
Christian König | 7fc1195 | 2015-07-30 11:53:42 +0200 | [diff] [blame] | 1942 | bool valid = true; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1943 | |
Christian König | 6c7fc50 | 2015-06-05 20:56:17 +0200 | [diff] [blame] | 1944 | saddr /= AMDGPU_GPU_PAGE_SIZE; |
Christian König | 32b41ac | 2016-03-08 18:03:27 +0100 | [diff] [blame] | 1945 | |
Christian König | 7fc1195 | 2015-07-30 11:53:42 +0200 | [diff] [blame] | 1946 | list_for_each_entry(mapping, &bo_va->valids, list) { |
Christian König | a9f87f6 | 2017-03-30 14:03:59 +0200 | [diff] [blame] | 1947 | if (mapping->start == saddr) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1948 | break; |
| 1949 | } |
| 1950 | |
Christian König | 7fc1195 | 2015-07-30 11:53:42 +0200 | [diff] [blame] | 1951 | if (&mapping->list == &bo_va->valids) { |
| 1952 | valid = false; |
| 1953 | |
| 1954 | list_for_each_entry(mapping, &bo_va->invalids, list) { |
Christian König | a9f87f6 | 2017-03-30 14:03:59 +0200 | [diff] [blame] | 1955 | if (mapping->start == saddr) |
Christian König | 7fc1195 | 2015-07-30 11:53:42 +0200 | [diff] [blame] | 1956 | break; |
| 1957 | } |
| 1958 | |
Christian König | 32b41ac | 2016-03-08 18:03:27 +0100 | [diff] [blame] | 1959 | if (&mapping->list == &bo_va->invalids) |
Christian König | 7fc1195 | 2015-07-30 11:53:42 +0200 | [diff] [blame] | 1960 | return -ENOENT; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1961 | } |
Christian König | 32b41ac | 2016-03-08 18:03:27 +0100 | [diff] [blame] | 1962 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1963 | list_del(&mapping->list); |
Christian König | a9f87f6 | 2017-03-30 14:03:59 +0200 | [diff] [blame] | 1964 | amdgpu_vm_it_remove(mapping, &vm->va); |
Christian König | 93e3e43 | 2015-06-09 16:58:33 +0200 | [diff] [blame] | 1965 | trace_amdgpu_vm_bo_unmap(bo_va, mapping); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1966 | |
Christian König | e17841b | 2016-03-08 17:52:01 +0100 | [diff] [blame] | 1967 | if (valid) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1968 | list_add(&mapping->list, &vm->freed); |
Christian König | e17841b | 2016-03-08 17:52:01 +0100 | [diff] [blame] | 1969 | else |
Christian König | 284710f | 2017-01-30 11:09:31 +0100 | [diff] [blame] | 1970 | amdgpu_vm_free_mapping(adev, vm, mapping, |
| 1971 | bo_va->last_pt_update); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1972 | |
| 1973 | return 0; |
| 1974 | } |
| 1975 | |
| 1976 | /** |
Christian König | dc54d3d | 2017-03-13 10:13:38 +0100 | [diff] [blame] | 1977 | * amdgpu_vm_bo_clear_mappings - remove all mappings in a specific range |
| 1978 | * |
| 1979 | * @adev: amdgpu_device pointer |
| 1980 | * @vm: VM structure to use |
| 1981 | * @saddr: start of the range |
| 1982 | * @size: size of the range |
| 1983 | * |
| 1984 | * Remove all mappings in a range, split them as appropriate. |
| 1985 | * Returns 0 for success, error for failure. |
| 1986 | */ |
| 1987 | int amdgpu_vm_bo_clear_mappings(struct amdgpu_device *adev, |
| 1988 | struct amdgpu_vm *vm, |
| 1989 | uint64_t saddr, uint64_t size) |
| 1990 | { |
| 1991 | struct amdgpu_bo_va_mapping *before, *after, *tmp, *next; |
Christian König | dc54d3d | 2017-03-13 10:13:38 +0100 | [diff] [blame] | 1992 | LIST_HEAD(removed); |
| 1993 | uint64_t eaddr; |
| 1994 | |
| 1995 | eaddr = saddr + size - 1; |
| 1996 | saddr /= AMDGPU_GPU_PAGE_SIZE; |
| 1997 | eaddr /= AMDGPU_GPU_PAGE_SIZE; |
| 1998 | |
| 1999 | /* Allocate all the needed memory */ |
| 2000 | before = kzalloc(sizeof(*before), GFP_KERNEL); |
| 2001 | if (!before) |
| 2002 | return -ENOMEM; |
Junwei Zhang | 27f6d61 | 2017-03-16 16:09:24 +0800 | [diff] [blame] | 2003 | INIT_LIST_HEAD(&before->list); |
Christian König | dc54d3d | 2017-03-13 10:13:38 +0100 | [diff] [blame] | 2004 | |
| 2005 | after = kzalloc(sizeof(*after), GFP_KERNEL); |
| 2006 | if (!after) { |
| 2007 | kfree(before); |
| 2008 | return -ENOMEM; |
| 2009 | } |
Junwei Zhang | 27f6d61 | 2017-03-16 16:09:24 +0800 | [diff] [blame] | 2010 | INIT_LIST_HEAD(&after->list); |
Christian König | dc54d3d | 2017-03-13 10:13:38 +0100 | [diff] [blame] | 2011 | |
| 2012 | /* Now gather all removed mappings */ |
Christian König | a9f87f6 | 2017-03-30 14:03:59 +0200 | [diff] [blame] | 2013 | tmp = amdgpu_vm_it_iter_first(&vm->va, saddr, eaddr); |
| 2014 | while (tmp) { |
Christian König | dc54d3d | 2017-03-13 10:13:38 +0100 | [diff] [blame] | 2015 | /* Remember mapping split at the start */ |
Christian König | a9f87f6 | 2017-03-30 14:03:59 +0200 | [diff] [blame] | 2016 | if (tmp->start < saddr) { |
| 2017 | before->start = tmp->start; |
| 2018 | before->last = saddr - 1; |
Christian König | dc54d3d | 2017-03-13 10:13:38 +0100 | [diff] [blame] | 2019 | before->offset = tmp->offset; |
| 2020 | before->flags = tmp->flags; |
| 2021 | list_add(&before->list, &tmp->list); |
| 2022 | } |
| 2023 | |
| 2024 | /* Remember mapping split at the end */ |
Christian König | a9f87f6 | 2017-03-30 14:03:59 +0200 | [diff] [blame] | 2025 | if (tmp->last > eaddr) { |
| 2026 | after->start = eaddr + 1; |
| 2027 | after->last = tmp->last; |
Christian König | dc54d3d | 2017-03-13 10:13:38 +0100 | [diff] [blame] | 2028 | after->offset = tmp->offset; |
Christian König | a9f87f6 | 2017-03-30 14:03:59 +0200 | [diff] [blame] | 2029 | after->offset += after->start - tmp->start; |
Christian König | dc54d3d | 2017-03-13 10:13:38 +0100 | [diff] [blame] | 2030 | after->flags = tmp->flags; |
| 2031 | list_add(&after->list, &tmp->list); |
| 2032 | } |
| 2033 | |
| 2034 | list_del(&tmp->list); |
| 2035 | list_add(&tmp->list, &removed); |
Christian König | a9f87f6 | 2017-03-30 14:03:59 +0200 | [diff] [blame] | 2036 | |
| 2037 | tmp = amdgpu_vm_it_iter_next(tmp, saddr, eaddr); |
Christian König | dc54d3d | 2017-03-13 10:13:38 +0100 | [diff] [blame] | 2038 | } |
| 2039 | |
| 2040 | /* And free them up */ |
| 2041 | list_for_each_entry_safe(tmp, next, &removed, list) { |
Christian König | a9f87f6 | 2017-03-30 14:03:59 +0200 | [diff] [blame] | 2042 | amdgpu_vm_it_remove(tmp, &vm->va); |
Christian König | dc54d3d | 2017-03-13 10:13:38 +0100 | [diff] [blame] | 2043 | list_del(&tmp->list); |
| 2044 | |
Christian König | a9f87f6 | 2017-03-30 14:03:59 +0200 | [diff] [blame] | 2045 | if (tmp->start < saddr) |
| 2046 | tmp->start = saddr; |
| 2047 | if (tmp->last > eaddr) |
| 2048 | tmp->last = eaddr; |
Christian König | dc54d3d | 2017-03-13 10:13:38 +0100 | [diff] [blame] | 2049 | |
| 2050 | list_add(&tmp->list, &vm->freed); |
| 2051 | trace_amdgpu_vm_bo_unmap(NULL, tmp); |
| 2052 | } |
| 2053 | |
Junwei Zhang | 27f6d61 | 2017-03-16 16:09:24 +0800 | [diff] [blame] | 2054 | /* Insert partial mapping before the range */ |
| 2055 | if (!list_empty(&before->list)) { |
Christian König | a9f87f6 | 2017-03-30 14:03:59 +0200 | [diff] [blame] | 2056 | amdgpu_vm_it_insert(before, &vm->va); |
Christian König | dc54d3d | 2017-03-13 10:13:38 +0100 | [diff] [blame] | 2057 | if (before->flags & AMDGPU_PTE_PRT) |
| 2058 | amdgpu_vm_prt_get(adev); |
| 2059 | } else { |
| 2060 | kfree(before); |
| 2061 | } |
| 2062 | |
| 2063 | /* Insert partial mapping after the range */ |
Junwei Zhang | 27f6d61 | 2017-03-16 16:09:24 +0800 | [diff] [blame] | 2064 | if (!list_empty(&after->list)) { |
Christian König | a9f87f6 | 2017-03-30 14:03:59 +0200 | [diff] [blame] | 2065 | amdgpu_vm_it_insert(after, &vm->va); |
Christian König | dc54d3d | 2017-03-13 10:13:38 +0100 | [diff] [blame] | 2066 | if (after->flags & AMDGPU_PTE_PRT) |
| 2067 | amdgpu_vm_prt_get(adev); |
| 2068 | } else { |
| 2069 | kfree(after); |
| 2070 | } |
| 2071 | |
| 2072 | return 0; |
| 2073 | } |
| 2074 | |
| 2075 | /** |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2076 | * amdgpu_vm_bo_rmv - remove a bo to a specific vm |
| 2077 | * |
| 2078 | * @adev: amdgpu_device pointer |
| 2079 | * @bo_va: requested bo_va |
| 2080 | * |
Christian König | 8843dbb | 2016-01-26 12:17:11 +0100 | [diff] [blame] | 2081 | * Remove @bo_va->bo from the requested vm. |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2082 | * |
| 2083 | * Object have to be reserved! |
| 2084 | */ |
| 2085 | void amdgpu_vm_bo_rmv(struct amdgpu_device *adev, |
| 2086 | struct amdgpu_bo_va *bo_va) |
| 2087 | { |
| 2088 | struct amdgpu_bo_va_mapping *mapping, *next; |
| 2089 | struct amdgpu_vm *vm = bo_va->vm; |
| 2090 | |
| 2091 | list_del(&bo_va->bo_list); |
| 2092 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2093 | spin_lock(&vm->status_lock); |
| 2094 | list_del(&bo_va->vm_status); |
| 2095 | spin_unlock(&vm->status_lock); |
| 2096 | |
Christian König | 7fc1195 | 2015-07-30 11:53:42 +0200 | [diff] [blame] | 2097 | list_for_each_entry_safe(mapping, next, &bo_va->valids, list) { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2098 | list_del(&mapping->list); |
Christian König | a9f87f6 | 2017-03-30 14:03:59 +0200 | [diff] [blame] | 2099 | amdgpu_vm_it_remove(mapping, &vm->va); |
Christian König | 93e3e43 | 2015-06-09 16:58:33 +0200 | [diff] [blame] | 2100 | trace_amdgpu_vm_bo_unmap(bo_va, mapping); |
Christian König | 7fc1195 | 2015-07-30 11:53:42 +0200 | [diff] [blame] | 2101 | list_add(&mapping->list, &vm->freed); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2102 | } |
Christian König | 7fc1195 | 2015-07-30 11:53:42 +0200 | [diff] [blame] | 2103 | list_for_each_entry_safe(mapping, next, &bo_va->invalids, list) { |
| 2104 | list_del(&mapping->list); |
Christian König | a9f87f6 | 2017-03-30 14:03:59 +0200 | [diff] [blame] | 2105 | amdgpu_vm_it_remove(mapping, &vm->va); |
Christian König | 284710f | 2017-01-30 11:09:31 +0100 | [diff] [blame] | 2106 | amdgpu_vm_free_mapping(adev, vm, mapping, |
| 2107 | bo_va->last_pt_update); |
Christian König | 7fc1195 | 2015-07-30 11:53:42 +0200 | [diff] [blame] | 2108 | } |
Christian König | 32b41ac | 2016-03-08 18:03:27 +0100 | [diff] [blame] | 2109 | |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 2110 | dma_fence_put(bo_va->last_pt_update); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2111 | kfree(bo_va); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2112 | } |
| 2113 | |
| 2114 | /** |
| 2115 | * amdgpu_vm_bo_invalidate - mark the bo as invalid |
| 2116 | * |
| 2117 | * @adev: amdgpu_device pointer |
| 2118 | * @vm: requested vm |
| 2119 | * @bo: amdgpu buffer object |
| 2120 | * |
Christian König | 8843dbb | 2016-01-26 12:17:11 +0100 | [diff] [blame] | 2121 | * Mark @bo as invalid. |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2122 | */ |
| 2123 | void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev, |
| 2124 | struct amdgpu_bo *bo) |
| 2125 | { |
| 2126 | struct amdgpu_bo_va *bo_va; |
| 2127 | |
| 2128 | list_for_each_entry(bo_va, &bo->va, bo_list) { |
Christian König | 7fc1195 | 2015-07-30 11:53:42 +0200 | [diff] [blame] | 2129 | spin_lock(&bo_va->vm->status_lock); |
| 2130 | if (list_empty(&bo_va->vm_status)) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2131 | list_add(&bo_va->vm_status, &bo_va->vm->invalidated); |
Christian König | 7fc1195 | 2015-07-30 11:53:42 +0200 | [diff] [blame] | 2132 | spin_unlock(&bo_va->vm->status_lock); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2133 | } |
| 2134 | } |
| 2135 | |
Junwei Zhang | bab4fee | 2017-04-05 13:54:56 +0800 | [diff] [blame] | 2136 | static uint32_t amdgpu_vm_get_block_size(uint64_t vm_size) |
| 2137 | { |
| 2138 | /* Total bits covered by PD + PTs */ |
| 2139 | unsigned bits = ilog2(vm_size) + 18; |
| 2140 | |
| 2141 | /* Make sure the PD is 4K in size up to 8GB address space. |
| 2142 | Above that split equal between PD and PTs */ |
| 2143 | if (vm_size <= 8) |
| 2144 | return (bits - 9); |
| 2145 | else |
| 2146 | return ((bits + 3) / 2); |
| 2147 | } |
| 2148 | |
| 2149 | /** |
| 2150 | * amdgpu_vm_adjust_size - adjust vm size and block size |
| 2151 | * |
| 2152 | * @adev: amdgpu_device pointer |
| 2153 | * @vm_size: the default vm size if it's set auto |
| 2154 | */ |
| 2155 | void amdgpu_vm_adjust_size(struct amdgpu_device *adev, uint64_t vm_size) |
| 2156 | { |
| 2157 | /* adjust vm size firstly */ |
| 2158 | if (amdgpu_vm_size == -1) |
| 2159 | adev->vm_manager.vm_size = vm_size; |
| 2160 | else |
| 2161 | adev->vm_manager.vm_size = amdgpu_vm_size; |
| 2162 | |
| 2163 | /* block size depends on vm size */ |
| 2164 | if (amdgpu_vm_block_size == -1) |
| 2165 | adev->vm_manager.block_size = |
| 2166 | amdgpu_vm_get_block_size(adev->vm_manager.vm_size); |
| 2167 | else |
| 2168 | adev->vm_manager.block_size = amdgpu_vm_block_size; |
| 2169 | |
| 2170 | DRM_INFO("vm size is %llu GB, block size is %u-bit\n", |
| 2171 | adev->vm_manager.vm_size, adev->vm_manager.block_size); |
| 2172 | } |
| 2173 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2174 | /** |
| 2175 | * amdgpu_vm_init - initialize a vm instance |
| 2176 | * |
| 2177 | * @adev: amdgpu_device pointer |
| 2178 | * @vm: requested vm |
| 2179 | * |
Christian König | 8843dbb | 2016-01-26 12:17:11 +0100 | [diff] [blame] | 2180 | * Init @vm fields. |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2181 | */ |
| 2182 | int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm) |
| 2183 | { |
| 2184 | const unsigned align = min(AMDGPU_VM_PTB_ALIGN_SIZE, |
Zhang, Jerry | 36b32a6 | 2017-03-29 16:08:32 +0800 | [diff] [blame] | 2185 | AMDGPU_VM_PTE_COUNT(adev) * 8); |
Christian König | 2d55e45 | 2016-02-08 17:37:38 +0100 | [diff] [blame] | 2186 | unsigned ring_instance; |
| 2187 | struct amdgpu_ring *ring; |
Christian König | 2bd9ccf | 2016-02-01 12:53:58 +0100 | [diff] [blame] | 2188 | struct amd_sched_rq *rq; |
Chunming Zhou | 36bbf3b | 2017-04-20 16:17:34 +0800 | [diff] [blame] | 2189 | int r, i; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2190 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2191 | vm->va = RB_ROOT; |
Chunming Zhou | 031e298 | 2016-04-25 10:19:13 +0800 | [diff] [blame] | 2192 | vm->client_id = atomic64_inc_return(&adev->vm_manager.client_counter); |
Chunming Zhou | 36bbf3b | 2017-04-20 16:17:34 +0800 | [diff] [blame] | 2193 | for (i = 0; i < AMDGPU_MAX_VMHUBS; i++) |
| 2194 | vm->reserved_vmid[i] = NULL; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2195 | spin_lock_init(&vm->status_lock); |
| 2196 | INIT_LIST_HEAD(&vm->invalidated); |
Christian König | 7fc1195 | 2015-07-30 11:53:42 +0200 | [diff] [blame] | 2197 | INIT_LIST_HEAD(&vm->cleared); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2198 | INIT_LIST_HEAD(&vm->freed); |
Christian König | 2025021 | 2016-03-08 17:58:35 +0100 | [diff] [blame] | 2199 | |
Christian König | 2bd9ccf | 2016-02-01 12:53:58 +0100 | [diff] [blame] | 2200 | /* create scheduler entity for page table updates */ |
Christian König | 2d55e45 | 2016-02-08 17:37:38 +0100 | [diff] [blame] | 2201 | |
| 2202 | ring_instance = atomic_inc_return(&adev->vm_manager.vm_pte_next_ring); |
| 2203 | ring_instance %= adev->vm_manager.vm_pte_num_rings; |
| 2204 | ring = adev->vm_manager.vm_pte_rings[ring_instance]; |
Christian König | 2bd9ccf | 2016-02-01 12:53:58 +0100 | [diff] [blame] | 2205 | rq = &ring->sched.sched_rq[AMD_SCHED_PRIORITY_KERNEL]; |
| 2206 | r = amd_sched_entity_init(&ring->sched, &vm->entity, |
| 2207 | rq, amdgpu_sched_jobs); |
| 2208 | if (r) |
Christian König | f566ceb | 2016-10-27 20:04:38 +0200 | [diff] [blame] | 2209 | return r; |
Christian König | 2bd9ccf | 2016-02-01 12:53:58 +0100 | [diff] [blame] | 2210 | |
Christian König | a24960f | 2016-10-12 13:20:52 +0200 | [diff] [blame] | 2211 | vm->last_dir_update = NULL; |
Bas Nieuwenhuizen | 05906de | 2015-08-14 20:08:40 +0200 | [diff] [blame] | 2212 | |
Christian König | f566ceb | 2016-10-27 20:04:38 +0200 | [diff] [blame] | 2213 | r = amdgpu_bo_create(adev, amdgpu_vm_bo_size(adev, 0), align, true, |
Alex Deucher | 857d913 | 2015-08-27 00:14:16 -0400 | [diff] [blame] | 2214 | AMDGPU_GEM_DOMAIN_VRAM, |
Chunming Zhou | 1baa439 | 2016-08-04 13:59:32 +0800 | [diff] [blame] | 2215 | AMDGPU_GEM_CREATE_NO_CPU_ACCESS | |
Christian König | 03f48dd | 2016-08-15 17:00:22 +0200 | [diff] [blame] | 2216 | AMDGPU_GEM_CREATE_SHADOW | |
Christian König | 617859e | 2016-11-17 15:40:02 +0100 | [diff] [blame] | 2217 | AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS | |
| 2218 | AMDGPU_GEM_CREATE_VRAM_CLEARED, |
Christian König | 67003a1 | 2016-10-12 14:46:26 +0200 | [diff] [blame] | 2219 | NULL, NULL, &vm->root.bo); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2220 | if (r) |
Christian König | 2bd9ccf | 2016-02-01 12:53:58 +0100 | [diff] [blame] | 2221 | goto error_free_sched_entity; |
| 2222 | |
Christian König | 67003a1 | 2016-10-12 14:46:26 +0200 | [diff] [blame] | 2223 | r = amdgpu_bo_reserve(vm->root.bo, false); |
Christian König | 2bd9ccf | 2016-02-01 12:53:58 +0100 | [diff] [blame] | 2224 | if (r) |
Christian König | 67003a1 | 2016-10-12 14:46:26 +0200 | [diff] [blame] | 2225 | goto error_free_root; |
Christian König | 2bd9ccf | 2016-02-01 12:53:58 +0100 | [diff] [blame] | 2226 | |
Christian König | 5a712a8 | 2016-06-21 16:28:15 +0200 | [diff] [blame] | 2227 | vm->last_eviction_counter = atomic64_read(&adev->num_evictions); |
Christian König | 67003a1 | 2016-10-12 14:46:26 +0200 | [diff] [blame] | 2228 | amdgpu_bo_unreserve(vm->root.bo); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2229 | |
| 2230 | return 0; |
Christian König | 2bd9ccf | 2016-02-01 12:53:58 +0100 | [diff] [blame] | 2231 | |
Christian König | 67003a1 | 2016-10-12 14:46:26 +0200 | [diff] [blame] | 2232 | error_free_root: |
| 2233 | amdgpu_bo_unref(&vm->root.bo->shadow); |
| 2234 | amdgpu_bo_unref(&vm->root.bo); |
| 2235 | vm->root.bo = NULL; |
Christian König | 2bd9ccf | 2016-02-01 12:53:58 +0100 | [diff] [blame] | 2236 | |
| 2237 | error_free_sched_entity: |
| 2238 | amd_sched_entity_fini(&ring->sched, &vm->entity); |
| 2239 | |
| 2240 | return r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2241 | } |
| 2242 | |
| 2243 | /** |
Christian König | f566ceb | 2016-10-27 20:04:38 +0200 | [diff] [blame] | 2244 | * amdgpu_vm_free_levels - free PD/PT levels |
| 2245 | * |
| 2246 | * @level: PD/PT starting level to free |
| 2247 | * |
| 2248 | * Free the page directory or page table level and all sub levels. |
| 2249 | */ |
| 2250 | static void amdgpu_vm_free_levels(struct amdgpu_vm_pt *level) |
| 2251 | { |
| 2252 | unsigned i; |
| 2253 | |
| 2254 | if (level->bo) { |
| 2255 | amdgpu_bo_unref(&level->bo->shadow); |
| 2256 | amdgpu_bo_unref(&level->bo); |
| 2257 | } |
| 2258 | |
| 2259 | if (level->entries) |
| 2260 | for (i = 0; i <= level->last_entry_used; i++) |
| 2261 | amdgpu_vm_free_levels(&level->entries[i]); |
| 2262 | |
| 2263 | drm_free_large(level->entries); |
| 2264 | } |
| 2265 | |
| 2266 | /** |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2267 | * amdgpu_vm_fini - tear down a vm instance |
| 2268 | * |
| 2269 | * @adev: amdgpu_device pointer |
| 2270 | * @vm: requested vm |
| 2271 | * |
Christian König | 8843dbb | 2016-01-26 12:17:11 +0100 | [diff] [blame] | 2272 | * Tear down @vm. |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2273 | * Unbind the VM and remove all bos from the vm bo list |
| 2274 | */ |
| 2275 | void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm) |
| 2276 | { |
| 2277 | struct amdgpu_bo_va_mapping *mapping, *tmp; |
Christian König | 4388fc2 | 2017-03-13 10:13:36 +0100 | [diff] [blame] | 2278 | bool prt_fini_needed = !!adev->gart.gart_funcs->set_prt; |
Chunming Zhou | 36bbf3b | 2017-04-20 16:17:34 +0800 | [diff] [blame] | 2279 | int i; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2280 | |
Christian König | 2d55e45 | 2016-02-08 17:37:38 +0100 | [diff] [blame] | 2281 | amd_sched_entity_fini(vm->entity.sched, &vm->entity); |
Christian König | 2bd9ccf | 2016-02-01 12:53:58 +0100 | [diff] [blame] | 2282 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2283 | if (!RB_EMPTY_ROOT(&vm->va)) { |
| 2284 | dev_err(adev->dev, "still active bo inside vm\n"); |
| 2285 | } |
Christian König | a9f87f6 | 2017-03-30 14:03:59 +0200 | [diff] [blame] | 2286 | rbtree_postorder_for_each_entry_safe(mapping, tmp, &vm->va, rb) { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2287 | list_del(&mapping->list); |
Christian König | a9f87f6 | 2017-03-30 14:03:59 +0200 | [diff] [blame] | 2288 | amdgpu_vm_it_remove(mapping, &vm->va); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2289 | kfree(mapping); |
| 2290 | } |
| 2291 | list_for_each_entry_safe(mapping, tmp, &vm->freed, list) { |
Christian König | 4388fc2 | 2017-03-13 10:13:36 +0100 | [diff] [blame] | 2292 | if (mapping->flags & AMDGPU_PTE_PRT && prt_fini_needed) { |
Christian König | 451bc8e | 2017-02-14 16:02:52 +0100 | [diff] [blame] | 2293 | amdgpu_vm_prt_fini(adev, vm); |
Christian König | 4388fc2 | 2017-03-13 10:13:36 +0100 | [diff] [blame] | 2294 | prt_fini_needed = false; |
Christian König | 451bc8e | 2017-02-14 16:02:52 +0100 | [diff] [blame] | 2295 | } |
Christian König | 284710f | 2017-01-30 11:09:31 +0100 | [diff] [blame] | 2296 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2297 | list_del(&mapping->list); |
Christian König | 451bc8e | 2017-02-14 16:02:52 +0100 | [diff] [blame] | 2298 | amdgpu_vm_free_mapping(adev, vm, mapping, NULL); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2299 | } |
| 2300 | |
Christian König | f566ceb | 2016-10-27 20:04:38 +0200 | [diff] [blame] | 2301 | amdgpu_vm_free_levels(&vm->root); |
Christian König | a24960f | 2016-10-12 13:20:52 +0200 | [diff] [blame] | 2302 | dma_fence_put(vm->last_dir_update); |
Chunming Zhou | 1e9ef26 | 2017-04-20 16:18:48 +0800 | [diff] [blame^] | 2303 | for (i = 0; i < AMDGPU_MAX_VMHUBS; i++) |
| 2304 | amdgpu_vm_free_reserved_vmid(adev, vm, i); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2305 | } |
Christian König | ea89f8c | 2015-11-15 20:52:06 +0100 | [diff] [blame] | 2306 | |
| 2307 | /** |
Christian König | a9a78b3 | 2016-01-21 10:19:11 +0100 | [diff] [blame] | 2308 | * amdgpu_vm_manager_init - init the VM manager |
| 2309 | * |
| 2310 | * @adev: amdgpu_device pointer |
| 2311 | * |
| 2312 | * Initialize the VM manager structures |
| 2313 | */ |
| 2314 | void amdgpu_vm_manager_init(struct amdgpu_device *adev) |
| 2315 | { |
Christian König | 7645670 | 2017-04-06 17:52:39 +0200 | [diff] [blame] | 2316 | unsigned i, j; |
Christian König | a9a78b3 | 2016-01-21 10:19:11 +0100 | [diff] [blame] | 2317 | |
Christian König | 7645670 | 2017-04-06 17:52:39 +0200 | [diff] [blame] | 2318 | for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) { |
| 2319 | struct amdgpu_vm_id_manager *id_mgr = |
| 2320 | &adev->vm_manager.id_mgr[i]; |
Christian König | a9a78b3 | 2016-01-21 10:19:11 +0100 | [diff] [blame] | 2321 | |
Christian König | 7645670 | 2017-04-06 17:52:39 +0200 | [diff] [blame] | 2322 | mutex_init(&id_mgr->lock); |
| 2323 | INIT_LIST_HEAD(&id_mgr->ids_lru); |
| 2324 | |
| 2325 | /* skip over VMID 0, since it is the system VM */ |
| 2326 | for (j = 1; j < id_mgr->num_ids; ++j) { |
| 2327 | amdgpu_vm_reset_id(adev, i, j); |
| 2328 | amdgpu_sync_create(&id_mgr->ids[i].active); |
| 2329 | list_add_tail(&id_mgr->ids[j].list, &id_mgr->ids_lru); |
| 2330 | } |
Christian König | 971fe9a9 | 2016-03-01 15:09:25 +0100 | [diff] [blame] | 2331 | } |
Christian König | 2d55e45 | 2016-02-08 17:37:38 +0100 | [diff] [blame] | 2332 | |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 2333 | adev->vm_manager.fence_context = |
| 2334 | dma_fence_context_alloc(AMDGPU_MAX_RINGS); |
Christian König | 1fbb2e9 | 2016-06-01 10:47:36 +0200 | [diff] [blame] | 2335 | for (i = 0; i < AMDGPU_MAX_RINGS; ++i) |
| 2336 | adev->vm_manager.seqno[i] = 0; |
| 2337 | |
Christian König | 2d55e45 | 2016-02-08 17:37:38 +0100 | [diff] [blame] | 2338 | atomic_set(&adev->vm_manager.vm_pte_next_ring, 0); |
Christian König | b1c8a81 | 2016-05-04 10:34:03 +0200 | [diff] [blame] | 2339 | atomic64_set(&adev->vm_manager.client_counter, 0); |
Christian König | 284710f | 2017-01-30 11:09:31 +0100 | [diff] [blame] | 2340 | spin_lock_init(&adev->vm_manager.prt_lock); |
Christian König | 451bc8e | 2017-02-14 16:02:52 +0100 | [diff] [blame] | 2341 | atomic_set(&adev->vm_manager.num_prt_users, 0); |
Christian König | a9a78b3 | 2016-01-21 10:19:11 +0100 | [diff] [blame] | 2342 | } |
| 2343 | |
| 2344 | /** |
Christian König | ea89f8c | 2015-11-15 20:52:06 +0100 | [diff] [blame] | 2345 | * amdgpu_vm_manager_fini - cleanup VM manager |
| 2346 | * |
| 2347 | * @adev: amdgpu_device pointer |
| 2348 | * |
| 2349 | * Cleanup the VM manager and free resources. |
| 2350 | */ |
| 2351 | void amdgpu_vm_manager_fini(struct amdgpu_device *adev) |
| 2352 | { |
Christian König | 7645670 | 2017-04-06 17:52:39 +0200 | [diff] [blame] | 2353 | unsigned i, j; |
Christian König | ea89f8c | 2015-11-15 20:52:06 +0100 | [diff] [blame] | 2354 | |
Christian König | 7645670 | 2017-04-06 17:52:39 +0200 | [diff] [blame] | 2355 | for (i = 0; i < AMDGPU_MAX_VMHUBS; ++i) { |
| 2356 | struct amdgpu_vm_id_manager *id_mgr = |
| 2357 | &adev->vm_manager.id_mgr[i]; |
Christian König | bcb1ba3 | 2016-03-08 15:40:11 +0100 | [diff] [blame] | 2358 | |
Christian König | 7645670 | 2017-04-06 17:52:39 +0200 | [diff] [blame] | 2359 | mutex_destroy(&id_mgr->lock); |
| 2360 | for (j = 0; j < AMDGPU_NUM_VM; ++j) { |
| 2361 | struct amdgpu_vm_id *id = &id_mgr->ids[j]; |
| 2362 | |
| 2363 | amdgpu_sync_free(&id->active); |
| 2364 | dma_fence_put(id->flushed_updates); |
| 2365 | dma_fence_put(id->last_flush); |
| 2366 | } |
Christian König | bcb1ba3 | 2016-03-08 15:40:11 +0100 | [diff] [blame] | 2367 | } |
Christian König | ea89f8c | 2015-11-15 20:52:06 +0100 | [diff] [blame] | 2368 | } |
Chunming Zhou | cfbcacf | 2017-04-24 11:09:04 +0800 | [diff] [blame] | 2369 | |
| 2370 | int amdgpu_vm_ioctl(struct drm_device *dev, void *data, struct drm_file *filp) |
| 2371 | { |
| 2372 | union drm_amdgpu_vm *args = data; |
Chunming Zhou | 1e9ef26 | 2017-04-20 16:18:48 +0800 | [diff] [blame^] | 2373 | struct amdgpu_device *adev = dev->dev_private; |
| 2374 | struct amdgpu_fpriv *fpriv = filp->driver_priv; |
| 2375 | int r; |
Chunming Zhou | cfbcacf | 2017-04-24 11:09:04 +0800 | [diff] [blame] | 2376 | |
| 2377 | switch (args->in.op) { |
| 2378 | case AMDGPU_VM_OP_RESERVE_VMID: |
Chunming Zhou | 1e9ef26 | 2017-04-20 16:18:48 +0800 | [diff] [blame^] | 2379 | /* current, we only have requirement to reserve vmid from gfxhub */ |
| 2380 | r = amdgpu_vm_alloc_reserved_vmid(adev, &fpriv->vm, |
| 2381 | AMDGPU_GFXHUB); |
| 2382 | if (r) |
| 2383 | return r; |
| 2384 | break; |
Chunming Zhou | cfbcacf | 2017-04-24 11:09:04 +0800 | [diff] [blame] | 2385 | case AMDGPU_VM_OP_UNRESERVE_VMID: |
Chunming Zhou | 1e9ef26 | 2017-04-20 16:18:48 +0800 | [diff] [blame^] | 2386 | amdgpu_vm_free_reserved_vmid(adev, &fpriv->vm, AMDGPU_GFXHUB); |
Chunming Zhou | cfbcacf | 2017-04-24 11:09:04 +0800 | [diff] [blame] | 2387 | break; |
| 2388 | default: |
| 2389 | return -EINVAL; |
| 2390 | } |
| 2391 | |
| 2392 | return 0; |
| 2393 | } |