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