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