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