2 * Copyright 2016 Advanced Micro Devices, Inc.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
22 * Authors: Christian König
24 #ifndef __AMDGPU_VM_H__
25 #define __AMDGPU_VM_H__
27 #include <linux/rbtree.h>
29 #include "gpu_scheduler.h"
30 #include "amdgpu_sync.h"
31 #include "amdgpu_ring.h"
35 struct amdgpu_bo_list_entry;
41 /* maximum number of VMIDs */
42 #define AMDGPU_NUM_VM 16
44 /* Maximum number of PTEs the hardware can write with one command */
45 #define AMDGPU_VM_MAX_UPDATE_SIZE 0x3FFFF
47 /* number of entries in page table */
48 #define AMDGPU_VM_PTE_COUNT(adev) (1 << (adev)->vm_manager.block_size)
50 /* PTBs (Page Table Blocks) need to be aligned to 32K */
51 #define AMDGPU_VM_PTB_ALIGN_SIZE 32768
53 /* LOG2 number of continuous pages for the fragment field */
54 #define AMDGPU_LOG2_PAGES_PER_FRAG(adev) \
55 ((adev)->asic_type < CHIP_VEGA10 ? 4 : \
56 (adev)->vm_manager.block_size)
58 #define AMDGPU_PTE_VALID (1ULL << 0)
59 #define AMDGPU_PTE_SYSTEM (1ULL << 1)
60 #define AMDGPU_PTE_SNOOPED (1ULL << 2)
63 #define AMDGPU_PTE_EXECUTABLE (1ULL << 4)
65 #define AMDGPU_PTE_READABLE (1ULL << 5)
66 #define AMDGPU_PTE_WRITEABLE (1ULL << 6)
68 #define AMDGPU_PTE_FRAG(x) ((x & 0x1fULL) << 7)
70 /* TILED for VEGA10, reserved for older ASICs */
71 #define AMDGPU_PTE_PRT (1ULL << 51)
73 /* PDE is handled as PTE for VEGA10 */
74 #define AMDGPU_PDE_PTE (1ULL << 54)
77 #define AMDGPU_PTE_MTYPE(a) ((uint64_t)a << 57)
78 #define AMDGPU_PTE_MTYPE_MASK AMDGPU_PTE_MTYPE(3ULL)
80 /* How to programm VM fault handling */
81 #define AMDGPU_VM_FAULT_STOP_NEVER 0
82 #define AMDGPU_VM_FAULT_STOP_FIRST 1
83 #define AMDGPU_VM_FAULT_STOP_ALWAYS 2
85 /* max number of VMHUB */
86 #define AMDGPU_MAX_VMHUBS 2
87 #define AMDGPU_GFXHUB 0
88 #define AMDGPU_MMHUB 1
90 /* hardcode that limit for now */
91 #define AMDGPU_VA_RESERVED_SIZE (8 << 20)
92 /* max vmids dedicated for process */
93 #define AMDGPU_VM_MAX_RESERVED_VMID 1
95 #define AMDGPU_VM_CONTEXT_GFX 0
96 #define AMDGPU_VM_CONTEXT_COMPUTE 1
98 /* See vm_update_mode */
99 #define AMDGPU_VM_USE_CPU_FOR_GFX (1 << 0)
100 #define AMDGPU_VM_USE_CPU_FOR_COMPUTE (1 << 1)
102 /* base structure for tracking BO usage in a VM */
103 struct amdgpu_vm_bo_base {
104 /* constant after initialization */
105 struct amdgpu_vm *vm;
106 struct amdgpu_bo *bo;
108 /* protected by bo being reserved */
109 struct list_head bo_list;
111 /* protected by spinlock */
112 struct list_head vm_status;
115 struct amdgpu_vm_pt {
116 struct amdgpu_bo *bo;
119 /* array of page tables, one for each directory entry */
120 struct amdgpu_vm_pt *entries;
121 unsigned last_entry_used;
125 /* tree of virtual addresses mapped */
128 /* protecting invalidated */
129 spinlock_t status_lock;
131 /* BOs moved, but not yet updated in the PT */
132 struct list_head invalidated;
134 /* BOs cleared in the PT because of a move */
135 struct list_head cleared;
137 /* BO mappings freed, but not yet updated in the PT */
138 struct list_head freed;
140 /* contains the page directory */
141 struct amdgpu_vm_pt root;
142 struct dma_fence *last_dir_update;
143 uint64_t last_eviction_counter;
145 /* protecting freed */
146 spinlock_t freed_lock;
148 /* Scheduler entity for page table updates */
149 struct amd_sched_entity entity;
153 /* dedicated to vm */
154 struct amdgpu_vm_id *reserved_vmid[AMDGPU_MAX_VMHUBS];
156 /* Flag to indicate if VM tables are updated by CPU or GPU (SDMA) */
157 bool use_cpu_for_update;
159 /* Flag to indicate ATS support from PTE for GFX9 */
160 bool pte_support_ats;
163 struct amdgpu_vm_id {
164 struct list_head list;
165 struct amdgpu_sync active;
166 struct dma_fence *last_flush;
169 uint64_t pd_gpu_addr;
170 /* last flushed PD/PT update */
171 struct dma_fence *flushed_updates;
173 uint32_t current_gpu_reset_count;
183 struct amdgpu_vm_id_manager {
186 struct list_head ids_lru;
187 struct amdgpu_vm_id ids[AMDGPU_NUM_VM];
188 atomic_t reserved_vmid_num;
191 struct amdgpu_vm_manager {
192 /* Handling of VMIDs */
193 struct amdgpu_vm_id_manager id_mgr[AMDGPU_MAX_VMHUBS];
195 /* Handling of VM fences */
197 unsigned seqno[AMDGPU_MAX_RINGS];
203 /* vram base address for page table entry */
204 u64 vram_base_offset;
205 /* vm pte handling */
206 const struct amdgpu_vm_pte_funcs *vm_pte_funcs;
207 struct amdgpu_ring *vm_pte_rings[AMDGPU_MAX_RINGS];
208 unsigned vm_pte_num_rings;
209 atomic_t vm_pte_next_ring;
210 /* client id counter */
211 atomic64_t client_counter;
213 /* partial resident texture handling */
215 atomic_t num_prt_users;
217 /* controls how VM page tables are updated for Graphics and Compute.
218 * BIT0[= 0] Graphics updated by SDMA [= 1] by CPU
219 * BIT1[= 0] Compute updated by SDMA [= 1] by CPU
224 void amdgpu_vm_manager_init(struct amdgpu_device *adev);
225 void amdgpu_vm_manager_fini(struct amdgpu_device *adev);
226 int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm,
228 void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm);
229 void amdgpu_vm_get_pd_bo(struct amdgpu_vm *vm,
230 struct list_head *validated,
231 struct amdgpu_bo_list_entry *entry);
232 int amdgpu_vm_validate_pt_bos(struct amdgpu_device *adev, struct amdgpu_vm *vm,
233 int (*callback)(void *p, struct amdgpu_bo *bo),
235 int amdgpu_vm_alloc_pts(struct amdgpu_device *adev,
236 struct amdgpu_vm *vm,
237 uint64_t saddr, uint64_t size);
238 int amdgpu_vm_grab_id(struct amdgpu_vm *vm, struct amdgpu_ring *ring,
239 struct amdgpu_sync *sync, struct dma_fence *fence,
240 struct amdgpu_job *job);
241 int amdgpu_vm_flush(struct amdgpu_ring *ring, struct amdgpu_job *job, bool need_pipe_sync);
242 void amdgpu_vm_reset_id(struct amdgpu_device *adev, unsigned vmhub,
244 void amdgpu_vm_reset_all_ids(struct amdgpu_device *adev);
245 int amdgpu_vm_update_directories(struct amdgpu_device *adev,
246 struct amdgpu_vm *vm);
247 int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
248 struct amdgpu_vm *vm,
249 struct dma_fence **fence);
250 int amdgpu_vm_clear_invalids(struct amdgpu_device *adev, struct amdgpu_vm *vm,
251 struct amdgpu_sync *sync);
252 int amdgpu_vm_bo_update(struct amdgpu_device *adev,
253 struct amdgpu_bo_va *bo_va,
255 void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
256 struct amdgpu_bo *bo);
257 struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm,
258 struct amdgpu_bo *bo);
259 struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
260 struct amdgpu_vm *vm,
261 struct amdgpu_bo *bo);
262 int amdgpu_vm_bo_map(struct amdgpu_device *adev,
263 struct amdgpu_bo_va *bo_va,
264 uint64_t addr, uint64_t offset,
265 uint64_t size, uint64_t flags);
266 int amdgpu_vm_bo_replace_map(struct amdgpu_device *adev,
267 struct amdgpu_bo_va *bo_va,
268 uint64_t addr, uint64_t offset,
269 uint64_t size, uint64_t flags);
270 int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
271 struct amdgpu_bo_va *bo_va,
273 int amdgpu_vm_bo_clear_mappings(struct amdgpu_device *adev,
274 struct amdgpu_vm *vm,
275 uint64_t saddr, uint64_t size);
276 void amdgpu_vm_bo_rmv(struct amdgpu_device *adev,
277 struct amdgpu_bo_va *bo_va);
278 void amdgpu_vm_adjust_size(struct amdgpu_device *adev, uint64_t vm_size);
279 int amdgpu_vm_ioctl(struct drm_device *dev, void *data, struct drm_file *filp);
280 bool amdgpu_vm_need_pipeline_sync(struct amdgpu_ring *ring,
281 struct amdgpu_job *job);
282 void amdgpu_vm_check_compute_bug(struct amdgpu_device *adev);