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