Loading...
1/*
2 * Copyright 2016 Advanced Micro Devices, Inc.
3 *
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:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
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.
21 *
22 * Authors: Christian König
23 */
24#ifndef __AMDGPU_VM_H__
25#define __AMDGPU_VM_H__
26
27#include <linux/idr.h>
28#include <linux/kfifo.h>
29#include <linux/rbtree.h>
30#include <drm/gpu_scheduler.h>
31#include <drm/drm_file.h>
32
33#include "amdgpu_sync.h"
34#include "amdgpu_ring.h"
35#include "amdgpu_ids.h"
36
37struct amdgpu_bo_va;
38struct amdgpu_job;
39struct amdgpu_bo_list_entry;
40
41/*
42 * GPUVM handling
43 */
44
45/* Maximum number of PTEs the hardware can write with one command */
46#define AMDGPU_VM_MAX_UPDATE_SIZE 0x3FFFF
47
48/* number of entries in page table */
49#define AMDGPU_VM_PTE_COUNT(adev) (1 << (adev)->vm_manager.block_size)
50
51/* PTBs (Page Table Blocks) need to be aligned to 32K */
52#define AMDGPU_VM_PTB_ALIGN_SIZE 32768
53
54#define AMDGPU_PTE_VALID (1ULL << 0)
55#define AMDGPU_PTE_SYSTEM (1ULL << 1)
56#define AMDGPU_PTE_SNOOPED (1ULL << 2)
57
58/* VI only */
59#define AMDGPU_PTE_EXECUTABLE (1ULL << 4)
60
61#define AMDGPU_PTE_READABLE (1ULL << 5)
62#define AMDGPU_PTE_WRITEABLE (1ULL << 6)
63
64#define AMDGPU_PTE_FRAG(x) ((x & 0x1fULL) << 7)
65
66/* TILED for VEGA10, reserved for older ASICs */
67#define AMDGPU_PTE_PRT (1ULL << 51)
68
69/* PDE is handled as PTE for VEGA10 */
70#define AMDGPU_PDE_PTE (1ULL << 54)
71
72/* PTE is handled as PDE for VEGA10 (Translate Further) */
73#define AMDGPU_PTE_TF (1ULL << 56)
74
75/* PDE Block Fragment Size for VEGA10 */
76#define AMDGPU_PDE_BFS(a) ((uint64_t)a << 59)
77
78/* VEGA10 only */
79#define AMDGPU_PTE_MTYPE(a) ((uint64_t)a << 57)
80#define AMDGPU_PTE_MTYPE_MASK AMDGPU_PTE_MTYPE(3ULL)
81
82/* For Raven */
83#define AMDGPU_MTYPE_CC 2
84
85#define AMDGPU_PTE_DEFAULT_ATC (AMDGPU_PTE_SYSTEM \
86 | AMDGPU_PTE_SNOOPED \
87 | AMDGPU_PTE_EXECUTABLE \
88 | AMDGPU_PTE_READABLE \
89 | AMDGPU_PTE_WRITEABLE \
90 | AMDGPU_PTE_MTYPE(AMDGPU_MTYPE_CC))
91
92/* How to programm VM fault handling */
93#define AMDGPU_VM_FAULT_STOP_NEVER 0
94#define AMDGPU_VM_FAULT_STOP_FIRST 1
95#define AMDGPU_VM_FAULT_STOP_ALWAYS 2
96
97/* max number of VMHUB */
98#define AMDGPU_MAX_VMHUBS 2
99#define AMDGPU_GFXHUB 0
100#define AMDGPU_MMHUB 1
101
102/* hardcode that limit for now */
103#define AMDGPU_VA_RESERVED_SIZE (1ULL << 20)
104
105/* VA hole for 48bit addresses on Vega10 */
106#define AMDGPU_VA_HOLE_START 0x0000800000000000ULL
107#define AMDGPU_VA_HOLE_END 0xffff800000000000ULL
108
109/*
110 * Hardware is programmed as if the hole doesn't exists with start and end
111 * address values.
112 *
113 * This mask is used to remove the upper 16bits of the VA and so come up with
114 * the linear addr value.
115 */
116#define AMDGPU_VA_HOLE_MASK 0x0000ffffffffffffULL
117
118/* max vmids dedicated for process */
119#define AMDGPU_VM_MAX_RESERVED_VMID 1
120
121#define AMDGPU_VM_CONTEXT_GFX 0
122#define AMDGPU_VM_CONTEXT_COMPUTE 1
123
124/* See vm_update_mode */
125#define AMDGPU_VM_USE_CPU_FOR_GFX (1 << 0)
126#define AMDGPU_VM_USE_CPU_FOR_COMPUTE (1 << 1)
127
128/* VMPT level enumerate, and the hiberachy is:
129 * PDB2->PDB1->PDB0->PTB
130 */
131enum amdgpu_vm_level {
132 AMDGPU_VM_PDB2,
133 AMDGPU_VM_PDB1,
134 AMDGPU_VM_PDB0,
135 AMDGPU_VM_PTB
136};
137
138/* base structure for tracking BO usage in a VM */
139struct amdgpu_vm_bo_base {
140 /* constant after initialization */
141 struct amdgpu_vm *vm;
142 struct amdgpu_bo *bo;
143
144 /* protected by bo being reserved */
145 struct list_head bo_list;
146
147 /* protected by spinlock */
148 struct list_head vm_status;
149
150 /* protected by the BO being reserved */
151 bool moved;
152};
153
154struct amdgpu_vm_pt {
155 struct amdgpu_vm_bo_base base;
156 bool huge;
157
158 /* array of page tables, one for each directory entry */
159 struct amdgpu_vm_pt *entries;
160};
161
162#define AMDGPU_VM_FAULT(pasid, addr) (((u64)(pasid) << 48) | (addr))
163#define AMDGPU_VM_FAULT_PASID(fault) ((u64)(fault) >> 48)
164#define AMDGPU_VM_FAULT_ADDR(fault) ((u64)(fault) & 0xfffffffff000ULL)
165
166struct amdgpu_vm {
167 /* tree of virtual addresses mapped */
168 struct rb_root_cached va;
169
170 /* protecting invalidated */
171 spinlock_t status_lock;
172
173 /* BOs who needs a validation */
174 struct list_head evicted;
175
176 /* PT BOs which relocated and their parent need an update */
177 struct list_head relocated;
178
179 /* BOs moved, but not yet updated in the PT */
180 struct list_head moved;
181
182 /* BO mappings freed, but not yet updated in the PT */
183 struct list_head freed;
184
185 /* contains the page directory */
186 struct amdgpu_vm_pt root;
187 struct dma_fence *last_update;
188
189 /* protecting freed */
190 spinlock_t freed_lock;
191
192 /* Scheduler entity for page table updates */
193 struct drm_sched_entity entity;
194
195 unsigned int pasid;
196 /* dedicated to vm */
197 struct amdgpu_vmid *reserved_vmid[AMDGPU_MAX_VMHUBS];
198
199 /* Flag to indicate if VM tables are updated by CPU or GPU (SDMA) */
200 bool use_cpu_for_update;
201
202 /* Flag to indicate ATS support from PTE for GFX9 */
203 bool pte_support_ats;
204
205 /* Up to 128 pending retry page faults */
206 DECLARE_KFIFO(faults, u64, 128);
207
208 /* Limit non-retry fault storms */
209 unsigned int fault_credit;
210
211 /* Points to the KFD process VM info */
212 struct amdkfd_process_info *process_info;
213
214 /* List node in amdkfd_process_info.vm_list_head */
215 struct list_head vm_list_node;
216
217 /* Valid while the PD is reserved or fenced */
218 uint64_t pd_phys_addr;
219};
220
221struct amdgpu_vm_manager {
222 /* Handling of VMIDs */
223 struct amdgpu_vmid_mgr id_mgr[AMDGPU_MAX_VMHUBS];
224
225 /* Handling of VM fences */
226 u64 fence_context;
227 unsigned seqno[AMDGPU_MAX_RINGS];
228
229 uint64_t max_pfn;
230 uint32_t num_level;
231 uint32_t block_size;
232 uint32_t fragment_size;
233 enum amdgpu_vm_level root_level;
234 /* vram base address for page table entry */
235 u64 vram_base_offset;
236 /* vm pte handling */
237 const struct amdgpu_vm_pte_funcs *vm_pte_funcs;
238 struct amdgpu_ring *vm_pte_rings[AMDGPU_MAX_RINGS];
239 unsigned vm_pte_num_rings;
240 atomic_t vm_pte_next_ring;
241
242 /* partial resident texture handling */
243 spinlock_t prt_lock;
244 atomic_t num_prt_users;
245
246 /* controls how VM page tables are updated for Graphics and Compute.
247 * BIT0[= 0] Graphics updated by SDMA [= 1] by CPU
248 * BIT1[= 0] Compute updated by SDMA [= 1] by CPU
249 */
250 int vm_update_mode;
251
252 /* PASID to VM mapping, will be used in interrupt context to
253 * look up VM of a page fault
254 */
255 struct idr pasid_idr;
256 spinlock_t pasid_lock;
257};
258
259void amdgpu_vm_manager_init(struct amdgpu_device *adev);
260void amdgpu_vm_manager_fini(struct amdgpu_device *adev);
261int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm,
262 int vm_context, unsigned int pasid);
263int amdgpu_vm_make_compute(struct amdgpu_device *adev, struct amdgpu_vm *vm);
264void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm);
265bool amdgpu_vm_pasid_fault_credit(struct amdgpu_device *adev,
266 unsigned int pasid);
267void amdgpu_vm_get_pd_bo(struct amdgpu_vm *vm,
268 struct list_head *validated,
269 struct amdgpu_bo_list_entry *entry);
270bool amdgpu_vm_ready(struct amdgpu_vm *vm);
271int amdgpu_vm_validate_pt_bos(struct amdgpu_device *adev, struct amdgpu_vm *vm,
272 int (*callback)(void *p, struct amdgpu_bo *bo),
273 void *param);
274int amdgpu_vm_alloc_pts(struct amdgpu_device *adev,
275 struct amdgpu_vm *vm,
276 uint64_t saddr, uint64_t size);
277int amdgpu_vm_flush(struct amdgpu_ring *ring, struct amdgpu_job *job, bool need_pipe_sync);
278int amdgpu_vm_update_directories(struct amdgpu_device *adev,
279 struct amdgpu_vm *vm);
280int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
281 struct amdgpu_vm *vm,
282 struct dma_fence **fence);
283int amdgpu_vm_handle_moved(struct amdgpu_device *adev,
284 struct amdgpu_vm *vm);
285int amdgpu_vm_bo_update(struct amdgpu_device *adev,
286 struct amdgpu_bo_va *bo_va,
287 bool clear);
288void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
289 struct amdgpu_bo *bo, bool evicted);
290struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm,
291 struct amdgpu_bo *bo);
292struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
293 struct amdgpu_vm *vm,
294 struct amdgpu_bo *bo);
295int amdgpu_vm_bo_map(struct amdgpu_device *adev,
296 struct amdgpu_bo_va *bo_va,
297 uint64_t addr, uint64_t offset,
298 uint64_t size, uint64_t flags);
299int amdgpu_vm_bo_replace_map(struct amdgpu_device *adev,
300 struct amdgpu_bo_va *bo_va,
301 uint64_t addr, uint64_t offset,
302 uint64_t size, uint64_t flags);
303int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
304 struct amdgpu_bo_va *bo_va,
305 uint64_t addr);
306int amdgpu_vm_bo_clear_mappings(struct amdgpu_device *adev,
307 struct amdgpu_vm *vm,
308 uint64_t saddr, uint64_t size);
309struct amdgpu_bo_va_mapping *amdgpu_vm_bo_lookup_mapping(struct amdgpu_vm *vm,
310 uint64_t addr);
311void amdgpu_vm_bo_rmv(struct amdgpu_device *adev,
312 struct amdgpu_bo_va *bo_va);
313void amdgpu_vm_adjust_size(struct amdgpu_device *adev, uint32_t vm_size,
314 uint32_t fragment_size_default, unsigned max_level,
315 unsigned max_bits);
316int amdgpu_vm_ioctl(struct drm_device *dev, void *data, struct drm_file *filp);
317bool amdgpu_vm_need_pipeline_sync(struct amdgpu_ring *ring,
318 struct amdgpu_job *job);
319void amdgpu_vm_check_compute_bug(struct amdgpu_device *adev);
320
321#endif
1/*
2 * Copyright 2016 Advanced Micro Devices, Inc.
3 *
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:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
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.
21 *
22 * Authors: Christian König
23 */
24#ifndef __AMDGPU_VM_H__
25#define __AMDGPU_VM_H__
26
27#include <linux/rbtree.h>
28
29#include "gpu_scheduler.h"
30#include "amdgpu_sync.h"
31#include "amdgpu_ring.h"
32
33struct amdgpu_bo_va;
34struct amdgpu_job;
35struct amdgpu_bo_list_entry;
36
37/*
38 * GPUVM handling
39 */
40
41/* maximum number of VMIDs */
42#define AMDGPU_NUM_VM 16
43
44/* Maximum number of PTEs the hardware can write with one command */
45#define AMDGPU_VM_MAX_UPDATE_SIZE 0x3FFFF
46
47/* number of entries in page table */
48#define AMDGPU_VM_PTE_COUNT (1 << amdgpu_vm_block_size)
49
50/* PTBs (Page Table Blocks) need to be aligned to 32K */
51#define AMDGPU_VM_PTB_ALIGN_SIZE 32768
52
53/* LOG2 number of continuous pages for the fragment field */
54#define AMDGPU_LOG2_PAGES_PER_FRAG 4
55
56#define AMDGPU_PTE_VALID (1 << 0)
57#define AMDGPU_PTE_SYSTEM (1 << 1)
58#define AMDGPU_PTE_SNOOPED (1 << 2)
59
60/* VI only */
61#define AMDGPU_PTE_EXECUTABLE (1 << 4)
62
63#define AMDGPU_PTE_READABLE (1 << 5)
64#define AMDGPU_PTE_WRITEABLE (1 << 6)
65
66#define AMDGPU_PTE_FRAG(x) ((x & 0x1f) << 7)
67
68/* How to programm VM fault handling */
69#define AMDGPU_VM_FAULT_STOP_NEVER 0
70#define AMDGPU_VM_FAULT_STOP_FIRST 1
71#define AMDGPU_VM_FAULT_STOP_ALWAYS 2
72
73struct amdgpu_vm_pt {
74 struct amdgpu_bo *bo;
75 uint64_t addr;
76};
77
78struct amdgpu_vm {
79 /* tree of virtual addresses mapped */
80 struct rb_root va;
81
82 /* protecting invalidated */
83 spinlock_t status_lock;
84
85 /* BOs moved, but not yet updated in the PT */
86 struct list_head invalidated;
87
88 /* BOs cleared in the PT because of a move */
89 struct list_head cleared;
90
91 /* BO mappings freed, but not yet updated in the PT */
92 struct list_head freed;
93
94 /* contains the page directory */
95 struct amdgpu_bo *page_directory;
96 unsigned max_pde_used;
97 struct dma_fence *page_directory_fence;
98 uint64_t last_eviction_counter;
99
100 /* array of page tables, one for each page directory entry */
101 struct amdgpu_vm_pt *page_tables;
102
103 /* for id and flush management per ring */
104 struct amdgpu_vm_id *ids[AMDGPU_MAX_RINGS];
105
106 /* protecting freed */
107 spinlock_t freed_lock;
108
109 /* Scheduler entity for page table updates */
110 struct amd_sched_entity entity;
111
112 /* client id */
113 u64 client_id;
114};
115
116struct amdgpu_vm_id {
117 struct list_head list;
118 struct dma_fence *first;
119 struct amdgpu_sync active;
120 struct dma_fence *last_flush;
121 atomic64_t owner;
122
123 uint64_t pd_gpu_addr;
124 /* last flushed PD/PT update */
125 struct dma_fence *flushed_updates;
126
127 uint32_t current_gpu_reset_count;
128
129 uint32_t gds_base;
130 uint32_t gds_size;
131 uint32_t gws_base;
132 uint32_t gws_size;
133 uint32_t oa_base;
134 uint32_t oa_size;
135};
136
137struct amdgpu_vm_manager {
138 /* Handling of VMIDs */
139 struct mutex lock;
140 unsigned num_ids;
141 struct list_head ids_lru;
142 struct amdgpu_vm_id ids[AMDGPU_NUM_VM];
143
144 /* Handling of VM fences */
145 u64 fence_context;
146 unsigned seqno[AMDGPU_MAX_RINGS];
147
148 uint32_t max_pfn;
149 /* vram base address for page table entry */
150 u64 vram_base_offset;
151 /* is vm enabled? */
152 bool enabled;
153 /* vm pte handling */
154 const struct amdgpu_vm_pte_funcs *vm_pte_funcs;
155 struct amdgpu_ring *vm_pte_rings[AMDGPU_MAX_RINGS];
156 unsigned vm_pte_num_rings;
157 atomic_t vm_pte_next_ring;
158 /* client id counter */
159 atomic64_t client_counter;
160};
161
162void amdgpu_vm_manager_init(struct amdgpu_device *adev);
163void amdgpu_vm_manager_fini(struct amdgpu_device *adev);
164int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm);
165void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm);
166void amdgpu_vm_get_pd_bo(struct amdgpu_vm *vm,
167 struct list_head *validated,
168 struct amdgpu_bo_list_entry *entry);
169int amdgpu_vm_validate_pt_bos(struct amdgpu_device *adev, struct amdgpu_vm *vm,
170 int (*callback)(void *p, struct amdgpu_bo *bo),
171 void *param);
172void amdgpu_vm_move_pt_bos_in_lru(struct amdgpu_device *adev,
173 struct amdgpu_vm *vm);
174int amdgpu_vm_grab_id(struct amdgpu_vm *vm, struct amdgpu_ring *ring,
175 struct amdgpu_sync *sync, struct dma_fence *fence,
176 struct amdgpu_job *job);
177int amdgpu_vm_flush(struct amdgpu_ring *ring, struct amdgpu_job *job);
178void amdgpu_vm_reset_id(struct amdgpu_device *adev, unsigned vm_id);
179int amdgpu_vm_update_page_directory(struct amdgpu_device *adev,
180 struct amdgpu_vm *vm);
181int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
182 struct amdgpu_vm *vm);
183int amdgpu_vm_clear_invalids(struct amdgpu_device *adev, struct amdgpu_vm *vm,
184 struct amdgpu_sync *sync);
185int amdgpu_vm_bo_update(struct amdgpu_device *adev,
186 struct amdgpu_bo_va *bo_va,
187 bool clear);
188void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
189 struct amdgpu_bo *bo);
190struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm,
191 struct amdgpu_bo *bo);
192struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
193 struct amdgpu_vm *vm,
194 struct amdgpu_bo *bo);
195int amdgpu_vm_bo_map(struct amdgpu_device *adev,
196 struct amdgpu_bo_va *bo_va,
197 uint64_t addr, uint64_t offset,
198 uint64_t size, uint32_t flags);
199int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
200 struct amdgpu_bo_va *bo_va,
201 uint64_t addr);
202void amdgpu_vm_bo_rmv(struct amdgpu_device *adev,
203 struct amdgpu_bo_va *bo_va);
204
205#endif