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