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#include <drm/ttm/ttm_bo_driver.h>
33#include <linux/sched/mm.h>
34
35#include "amdgpu_sync.h"
36#include "amdgpu_ring.h"
37#include "amdgpu_ids.h"
38
39struct amdgpu_bo_va;
40struct amdgpu_job;
41struct amdgpu_bo_list_entry;
42
43/*
44 * GPUVM handling
45 */
46
47/* Maximum number of PTEs the hardware can write with one command */
48#define AMDGPU_VM_MAX_UPDATE_SIZE 0x3FFFF
49
50/* number of entries in page table */
51#define AMDGPU_VM_PTE_COUNT(adev) (1 << (adev)->vm_manager.block_size)
52
53#define AMDGPU_PTE_VALID (1ULL << 0)
54#define AMDGPU_PTE_SYSTEM (1ULL << 1)
55#define AMDGPU_PTE_SNOOPED (1ULL << 2)
56
57/* RV+ */
58#define AMDGPU_PTE_TMZ (1ULL << 3)
59
60/* VI only */
61#define AMDGPU_PTE_EXECUTABLE (1ULL << 4)
62
63#define AMDGPU_PTE_READABLE (1ULL << 5)
64#define AMDGPU_PTE_WRITEABLE (1ULL << 6)
65
66#define AMDGPU_PTE_FRAG(x) ((x & 0x1fULL) << 7)
67
68/* TILED for VEGA10, reserved for older ASICs */
69#define AMDGPU_PTE_PRT (1ULL << 51)
70
71/* PDE is handled as PTE for VEGA10 */
72#define AMDGPU_PDE_PTE (1ULL << 54)
73
74#define AMDGPU_PTE_LOG (1ULL << 55)
75
76/* PTE is handled as PDE for VEGA10 (Translate Further) */
77#define AMDGPU_PTE_TF (1ULL << 56)
78
79/* PDE Block Fragment Size for VEGA10 */
80#define AMDGPU_PDE_BFS(a) ((uint64_t)a << 59)
81
82
83/* For GFX9 */
84#define AMDGPU_PTE_MTYPE_VG10(a) ((uint64_t)(a) << 57)
85#define AMDGPU_PTE_MTYPE_VG10_MASK AMDGPU_PTE_MTYPE_VG10(3ULL)
86
87#define AMDGPU_MTYPE_NC 0
88#define AMDGPU_MTYPE_CC 2
89
90#define AMDGPU_PTE_DEFAULT_ATC (AMDGPU_PTE_SYSTEM \
91 | AMDGPU_PTE_SNOOPED \
92 | AMDGPU_PTE_EXECUTABLE \
93 | AMDGPU_PTE_READABLE \
94 | AMDGPU_PTE_WRITEABLE \
95 | AMDGPU_PTE_MTYPE_VG10(AMDGPU_MTYPE_CC))
96
97/* gfx10 */
98#define AMDGPU_PTE_MTYPE_NV10(a) ((uint64_t)(a) << 48)
99#define AMDGPU_PTE_MTYPE_NV10_MASK AMDGPU_PTE_MTYPE_NV10(7ULL)
100
101/* How to programm VM fault handling */
102#define AMDGPU_VM_FAULT_STOP_NEVER 0
103#define AMDGPU_VM_FAULT_STOP_FIRST 1
104#define AMDGPU_VM_FAULT_STOP_ALWAYS 2
105
106/* Reserve 4MB VRAM for page tables */
107#define AMDGPU_VM_RESERVED_VRAM (4ULL << 20)
108
109/* max number of VMHUB */
110#define AMDGPU_MAX_VMHUBS 3
111#define AMDGPU_GFXHUB_0 0
112#define AMDGPU_MMHUB_0 1
113#define AMDGPU_MMHUB_1 2
114
115/* hardcode that limit for now */
116#define AMDGPU_VA_RESERVED_SIZE (1ULL << 20)
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 amdgpu_vm_bo_base *next;
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
157 /* array of page tables, one for each directory entry */
158 struct amdgpu_vm_pt *entries;
159};
160
161/* provided by hw blocks that can write ptes, e.g., sdma */
162struct amdgpu_vm_pte_funcs {
163 /* number of dw to reserve per operation */
164 unsigned copy_pte_num_dw;
165
166 /* copy pte entries from GART */
167 void (*copy_pte)(struct amdgpu_ib *ib,
168 uint64_t pe, uint64_t src,
169 unsigned count);
170
171 /* write pte one entry at a time with addr mapping */
172 void (*write_pte)(struct amdgpu_ib *ib, uint64_t pe,
173 uint64_t value, unsigned count,
174 uint32_t incr);
175 /* for linear pte/pde updates without addr mapping */
176 void (*set_pte_pde)(struct amdgpu_ib *ib,
177 uint64_t pe,
178 uint64_t addr, unsigned count,
179 uint32_t incr, uint64_t flags);
180};
181
182struct amdgpu_task_info {
183 char process_name[TASK_COMM_LEN];
184 char task_name[TASK_COMM_LEN];
185 pid_t pid;
186 pid_t tgid;
187};
188
189/**
190 * struct amdgpu_vm_update_params
191 *
192 * Encapsulate some VM table update parameters to reduce
193 * the number of function parameters
194 *
195 */
196struct amdgpu_vm_update_params {
197
198 /**
199 * @adev: amdgpu device we do this update for
200 */
201 struct amdgpu_device *adev;
202
203 /**
204 * @vm: optional amdgpu_vm we do this update for
205 */
206 struct amdgpu_vm *vm;
207
208 /**
209 * @immediate: if changes should be made immediately
210 */
211 bool immediate;
212
213 /**
214 * @unlocked: true if the root BO is not locked
215 */
216 bool unlocked;
217
218 /**
219 * @pages_addr:
220 *
221 * DMA addresses to use for mapping
222 */
223 dma_addr_t *pages_addr;
224
225 /**
226 * @job: job to used for hw submission
227 */
228 struct amdgpu_job *job;
229
230 /**
231 * @num_dw_left: number of dw left for the IB
232 */
233 unsigned int num_dw_left;
234};
235
236struct amdgpu_vm_update_funcs {
237 int (*map_table)(struct amdgpu_bo *bo);
238 int (*prepare)(struct amdgpu_vm_update_params *p, struct dma_resv *resv,
239 enum amdgpu_sync_mode sync_mode);
240 int (*update)(struct amdgpu_vm_update_params *p,
241 struct amdgpu_bo *bo, uint64_t pe, uint64_t addr,
242 unsigned count, uint32_t incr, uint64_t flags);
243 int (*commit)(struct amdgpu_vm_update_params *p,
244 struct dma_fence **fence);
245};
246
247struct amdgpu_vm {
248 /* tree of virtual addresses mapped */
249 struct rb_root_cached va;
250
251 /* Lock to prevent eviction while we are updating page tables
252 * use vm_eviction_lock/unlock(vm)
253 */
254 struct mutex eviction_lock;
255 bool evicting;
256 unsigned int saved_flags;
257
258 /* BOs who needs a validation */
259 struct list_head evicted;
260
261 /* PT BOs which relocated and their parent need an update */
262 struct list_head relocated;
263
264 /* per VM BOs moved, but not yet updated in the PT */
265 struct list_head moved;
266
267 /* All BOs of this VM not currently in the state machine */
268 struct list_head idle;
269
270 /* regular invalidated BOs, but not yet updated in the PT */
271 struct list_head invalidated;
272 spinlock_t invalidated_lock;
273
274 /* BO mappings freed, but not yet updated in the PT */
275 struct list_head freed;
276
277 /* contains the page directory */
278 struct amdgpu_vm_pt root;
279 struct dma_fence *last_update;
280
281 /* Scheduler entities for page table updates */
282 struct drm_sched_entity immediate;
283 struct drm_sched_entity delayed;
284
285 /* Last unlocked submission to the scheduler entities */
286 struct dma_fence *last_unlocked;
287
288 unsigned int pasid;
289 /* dedicated to vm */
290 struct amdgpu_vmid *reserved_vmid[AMDGPU_MAX_VMHUBS];
291
292 /* Flag to indicate if VM tables are updated by CPU or GPU (SDMA) */
293 bool use_cpu_for_update;
294
295 /* Functions to use for VM table updates */
296 const struct amdgpu_vm_update_funcs *update_funcs;
297
298 /* Flag to indicate ATS support from PTE for GFX9 */
299 bool pte_support_ats;
300
301 /* Up to 128 pending retry page faults */
302 DECLARE_KFIFO(faults, u64, 128);
303
304 /* Points to the KFD process VM info */
305 struct amdkfd_process_info *process_info;
306
307 /* List node in amdkfd_process_info.vm_list_head */
308 struct list_head vm_list_node;
309
310 /* Valid while the PD is reserved or fenced */
311 uint64_t pd_phys_addr;
312
313 /* Some basic info about the task */
314 struct amdgpu_task_info task_info;
315
316 /* Store positions of group of BOs */
317 struct ttm_lru_bulk_move lru_bulk_move;
318 /* mark whether can do the bulk move */
319 bool bulk_moveable;
320 /* Flag to indicate if VM is used for compute */
321 bool is_compute_context;
322};
323
324struct amdgpu_vm_manager {
325 /* Handling of VMIDs */
326 struct amdgpu_vmid_mgr id_mgr[AMDGPU_MAX_VMHUBS];
327 unsigned int first_kfd_vmid;
328
329 /* Handling of VM fences */
330 u64 fence_context;
331 unsigned seqno[AMDGPU_MAX_RINGS];
332
333 uint64_t max_pfn;
334 uint32_t num_level;
335 uint32_t block_size;
336 uint32_t fragment_size;
337 enum amdgpu_vm_level root_level;
338 /* vram base address for page table entry */
339 u64 vram_base_offset;
340 /* vm pte handling */
341 const struct amdgpu_vm_pte_funcs *vm_pte_funcs;
342 struct drm_gpu_scheduler *vm_pte_scheds[AMDGPU_MAX_RINGS];
343 unsigned vm_pte_num_scheds;
344 struct amdgpu_ring *page_fault;
345
346 /* partial resident texture handling */
347 spinlock_t prt_lock;
348 atomic_t num_prt_users;
349
350 /* controls how VM page tables are updated for Graphics and Compute.
351 * BIT0[= 0] Graphics updated by SDMA [= 1] by CPU
352 * BIT1[= 0] Compute updated by SDMA [= 1] by CPU
353 */
354 int vm_update_mode;
355
356 /* PASID to VM mapping, will be used in interrupt context to
357 * look up VM of a page fault
358 */
359 struct idr pasid_idr;
360 spinlock_t pasid_lock;
361};
362
363#define amdgpu_vm_copy_pte(adev, ib, pe, src, count) ((adev)->vm_manager.vm_pte_funcs->copy_pte((ib), (pe), (src), (count)))
364#define amdgpu_vm_write_pte(adev, ib, pe, value, count, incr) ((adev)->vm_manager.vm_pte_funcs->write_pte((ib), (pe), (value), (count), (incr)))
365#define amdgpu_vm_set_pte_pde(adev, ib, pe, addr, count, incr, flags) ((adev)->vm_manager.vm_pte_funcs->set_pte_pde((ib), (pe), (addr), (count), (incr), (flags)))
366
367extern const struct amdgpu_vm_update_funcs amdgpu_vm_cpu_funcs;
368extern const struct amdgpu_vm_update_funcs amdgpu_vm_sdma_funcs;
369
370void amdgpu_vm_manager_init(struct amdgpu_device *adev);
371void amdgpu_vm_manager_fini(struct amdgpu_device *adev);
372
373long amdgpu_vm_wait_idle(struct amdgpu_vm *vm, long timeout);
374int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm,
375 int vm_context, unsigned int pasid);
376int amdgpu_vm_make_compute(struct amdgpu_device *adev, struct amdgpu_vm *vm, unsigned int pasid);
377void amdgpu_vm_release_compute(struct amdgpu_device *adev, struct amdgpu_vm *vm);
378void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm);
379void amdgpu_vm_get_pd_bo(struct amdgpu_vm *vm,
380 struct list_head *validated,
381 struct amdgpu_bo_list_entry *entry);
382bool amdgpu_vm_ready(struct amdgpu_vm *vm);
383int amdgpu_vm_validate_pt_bos(struct amdgpu_device *adev, struct amdgpu_vm *vm,
384 int (*callback)(void *p, struct amdgpu_bo *bo),
385 void *param);
386int amdgpu_vm_flush(struct amdgpu_ring *ring, struct amdgpu_job *job, bool need_pipe_sync);
387int amdgpu_vm_update_pdes(struct amdgpu_device *adev,
388 struct amdgpu_vm *vm, bool immediate);
389int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
390 struct amdgpu_vm *vm,
391 struct dma_fence **fence);
392int amdgpu_vm_handle_moved(struct amdgpu_device *adev,
393 struct amdgpu_vm *vm);
394int amdgpu_vm_bo_update(struct amdgpu_device *adev,
395 struct amdgpu_bo_va *bo_va,
396 bool clear);
397bool amdgpu_vm_evictable(struct amdgpu_bo *bo);
398void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
399 struct amdgpu_bo *bo, bool evicted);
400uint64_t amdgpu_vm_map_gart(const dma_addr_t *pages_addr, uint64_t addr);
401struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm,
402 struct amdgpu_bo *bo);
403struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
404 struct amdgpu_vm *vm,
405 struct amdgpu_bo *bo);
406int amdgpu_vm_bo_map(struct amdgpu_device *adev,
407 struct amdgpu_bo_va *bo_va,
408 uint64_t addr, uint64_t offset,
409 uint64_t size, uint64_t flags);
410int amdgpu_vm_bo_replace_map(struct amdgpu_device *adev,
411 struct amdgpu_bo_va *bo_va,
412 uint64_t addr, uint64_t offset,
413 uint64_t size, uint64_t flags);
414int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
415 struct amdgpu_bo_va *bo_va,
416 uint64_t addr);
417int amdgpu_vm_bo_clear_mappings(struct amdgpu_device *adev,
418 struct amdgpu_vm *vm,
419 uint64_t saddr, uint64_t size);
420struct amdgpu_bo_va_mapping *amdgpu_vm_bo_lookup_mapping(struct amdgpu_vm *vm,
421 uint64_t addr);
422void amdgpu_vm_bo_trace_cs(struct amdgpu_vm *vm, struct ww_acquire_ctx *ticket);
423void amdgpu_vm_bo_rmv(struct amdgpu_device *adev,
424 struct amdgpu_bo_va *bo_va);
425void amdgpu_vm_adjust_size(struct amdgpu_device *adev, uint32_t min_vm_size,
426 uint32_t fragment_size_default, unsigned max_level,
427 unsigned max_bits);
428int amdgpu_vm_ioctl(struct drm_device *dev, void *data, struct drm_file *filp);
429bool amdgpu_vm_need_pipeline_sync(struct amdgpu_ring *ring,
430 struct amdgpu_job *job);
431void amdgpu_vm_check_compute_bug(struct amdgpu_device *adev);
432
433void amdgpu_vm_get_task_info(struct amdgpu_device *adev, unsigned int pasid,
434 struct amdgpu_task_info *task_info);
435bool amdgpu_vm_handle_fault(struct amdgpu_device *adev, unsigned int pasid,
436 uint64_t addr);
437
438void amdgpu_vm_set_task_info(struct amdgpu_vm *vm);
439
440void amdgpu_vm_move_to_lru_tail(struct amdgpu_device *adev,
441 struct amdgpu_vm *vm);
442void amdgpu_vm_del_from_lru_notify(struct ttm_buffer_object *bo);
443
444#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/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#include <drm/ttm/ttm_bo_driver.h>
33#include <linux/sched/mm.h>
34
35#include "amdgpu_sync.h"
36#include "amdgpu_ring.h"
37#include "amdgpu_ids.h"
38
39struct amdgpu_bo_va;
40struct amdgpu_job;
41struct amdgpu_bo_list_entry;
42struct amdgpu_bo_vm;
43
44/*
45 * GPUVM handling
46 */
47
48/* Maximum number of PTEs the hardware can write with one command */
49#define AMDGPU_VM_MAX_UPDATE_SIZE 0x3FFFF
50
51/* number of entries in page table */
52#define AMDGPU_VM_PTE_COUNT(adev) (1 << (adev)->vm_manager.block_size)
53
54#define AMDGPU_PTE_VALID (1ULL << 0)
55#define AMDGPU_PTE_SYSTEM (1ULL << 1)
56#define AMDGPU_PTE_SNOOPED (1ULL << 2)
57
58/* RV+ */
59#define AMDGPU_PTE_TMZ (1ULL << 3)
60
61/* VI only */
62#define AMDGPU_PTE_EXECUTABLE (1ULL << 4)
63
64#define AMDGPU_PTE_READABLE (1ULL << 5)
65#define AMDGPU_PTE_WRITEABLE (1ULL << 6)
66
67#define AMDGPU_PTE_FRAG(x) ((x & 0x1fULL) << 7)
68
69/* TILED for VEGA10, reserved for older ASICs */
70#define AMDGPU_PTE_PRT (1ULL << 51)
71
72/* PDE is handled as PTE for VEGA10 */
73#define AMDGPU_PDE_PTE (1ULL << 54)
74
75#define AMDGPU_PTE_LOG (1ULL << 55)
76
77/* PTE is handled as PDE for VEGA10 (Translate Further) */
78#define AMDGPU_PTE_TF (1ULL << 56)
79
80/* MALL noalloc for sienna_cichlid, reserved for older ASICs */
81#define AMDGPU_PTE_NOALLOC (1ULL << 58)
82
83/* PDE Block Fragment Size for VEGA10 */
84#define AMDGPU_PDE_BFS(a) ((uint64_t)a << 59)
85
86
87/* For GFX9 */
88#define AMDGPU_PTE_MTYPE_VG10(a) ((uint64_t)(a) << 57)
89#define AMDGPU_PTE_MTYPE_VG10_MASK AMDGPU_PTE_MTYPE_VG10(3ULL)
90
91#define AMDGPU_MTYPE_NC 0
92#define AMDGPU_MTYPE_CC 2
93
94#define AMDGPU_PTE_DEFAULT_ATC (AMDGPU_PTE_SYSTEM \
95 | AMDGPU_PTE_SNOOPED \
96 | AMDGPU_PTE_EXECUTABLE \
97 | AMDGPU_PTE_READABLE \
98 | AMDGPU_PTE_WRITEABLE \
99 | AMDGPU_PTE_MTYPE_VG10(AMDGPU_MTYPE_CC))
100
101/* gfx10 */
102#define AMDGPU_PTE_MTYPE_NV10(a) ((uint64_t)(a) << 48)
103#define AMDGPU_PTE_MTYPE_NV10_MASK AMDGPU_PTE_MTYPE_NV10(7ULL)
104
105/* How to program VM fault handling */
106#define AMDGPU_VM_FAULT_STOP_NEVER 0
107#define AMDGPU_VM_FAULT_STOP_FIRST 1
108#define AMDGPU_VM_FAULT_STOP_ALWAYS 2
109
110/* Reserve 4MB VRAM for page tables */
111#define AMDGPU_VM_RESERVED_VRAM (8ULL << 20)
112
113/* max number of VMHUB */
114#define AMDGPU_MAX_VMHUBS 3
115#define AMDGPU_GFXHUB_0 0
116#define AMDGPU_MMHUB_0 1
117#define AMDGPU_MMHUB_1 2
118
119/* Reserve 2MB at top/bottom of address space for kernel use */
120#define AMDGPU_VA_RESERVED_SIZE (2ULL << 20)
121
122/* max vmids dedicated for process */
123#define AMDGPU_VM_MAX_RESERVED_VMID 1
124
125/* See vm_update_mode */
126#define AMDGPU_VM_USE_CPU_FOR_GFX (1 << 0)
127#define AMDGPU_VM_USE_CPU_FOR_COMPUTE (1 << 1)
128
129/* VMPT level enumerate, and the hiberachy is:
130 * PDB2->PDB1->PDB0->PTB
131 */
132enum amdgpu_vm_level {
133 AMDGPU_VM_PDB2,
134 AMDGPU_VM_PDB1,
135 AMDGPU_VM_PDB0,
136 AMDGPU_VM_PTB
137};
138
139/* base structure for tracking BO usage in a VM */
140struct amdgpu_vm_bo_base {
141 /* constant after initialization */
142 struct amdgpu_vm *vm;
143 struct amdgpu_bo *bo;
144
145 /* protected by bo being reserved */
146 struct amdgpu_vm_bo_base *next;
147
148 /* protected by spinlock */
149 struct list_head vm_status;
150
151 /* protected by the BO being reserved */
152 bool moved;
153};
154
155/* provided by hw blocks that can write ptes, e.g., sdma */
156struct amdgpu_vm_pte_funcs {
157 /* number of dw to reserve per operation */
158 unsigned copy_pte_num_dw;
159
160 /* copy pte entries from GART */
161 void (*copy_pte)(struct amdgpu_ib *ib,
162 uint64_t pe, uint64_t src,
163 unsigned count);
164
165 /* write pte one entry at a time with addr mapping */
166 void (*write_pte)(struct amdgpu_ib *ib, uint64_t pe,
167 uint64_t value, unsigned count,
168 uint32_t incr);
169 /* for linear pte/pde updates without addr mapping */
170 void (*set_pte_pde)(struct amdgpu_ib *ib,
171 uint64_t pe,
172 uint64_t addr, unsigned count,
173 uint32_t incr, uint64_t flags);
174};
175
176struct amdgpu_task_info {
177 char process_name[TASK_COMM_LEN];
178 char task_name[TASK_COMM_LEN];
179 pid_t pid;
180 pid_t tgid;
181};
182
183/**
184 * struct amdgpu_vm_update_params
185 *
186 * Encapsulate some VM table update parameters to reduce
187 * the number of function parameters
188 *
189 */
190struct amdgpu_vm_update_params {
191
192 /**
193 * @adev: amdgpu device we do this update for
194 */
195 struct amdgpu_device *adev;
196
197 /**
198 * @vm: optional amdgpu_vm we do this update for
199 */
200 struct amdgpu_vm *vm;
201
202 /**
203 * @immediate: if changes should be made immediately
204 */
205 bool immediate;
206
207 /**
208 * @unlocked: true if the root BO is not locked
209 */
210 bool unlocked;
211
212 /**
213 * @pages_addr:
214 *
215 * DMA addresses to use for mapping
216 */
217 dma_addr_t *pages_addr;
218
219 /**
220 * @job: job to used for hw submission
221 */
222 struct amdgpu_job *job;
223
224 /**
225 * @num_dw_left: number of dw left for the IB
226 */
227 unsigned int num_dw_left;
228
229 /**
230 * @table_freed: return true if page table is freed when updating
231 */
232 bool table_freed;
233};
234
235struct amdgpu_vm_update_funcs {
236 int (*map_table)(struct amdgpu_bo_vm *bo);
237 int (*prepare)(struct amdgpu_vm_update_params *p, struct dma_resv *resv,
238 enum amdgpu_sync_mode sync_mode);
239 int (*update)(struct amdgpu_vm_update_params *p,
240 struct amdgpu_bo_vm *bo, uint64_t pe, uint64_t addr,
241 unsigned count, uint32_t incr, uint64_t flags);
242 int (*commit)(struct amdgpu_vm_update_params *p,
243 struct dma_fence **fence);
244};
245
246struct amdgpu_vm {
247 /* tree of virtual addresses mapped */
248 struct rb_root_cached va;
249
250 /* Lock to prevent eviction while we are updating page tables
251 * use vm_eviction_lock/unlock(vm)
252 */
253 struct mutex eviction_lock;
254 bool evicting;
255 unsigned int saved_flags;
256
257 /* BOs who needs a validation */
258 struct list_head evicted;
259
260 /* PT BOs which relocated and their parent need an update */
261 struct list_head relocated;
262
263 /* per VM BOs moved, but not yet updated in the PT */
264 struct list_head moved;
265
266 /* All BOs of this VM not currently in the state machine */
267 struct list_head idle;
268
269 /* regular invalidated BOs, but not yet updated in the PT */
270 struct list_head invalidated;
271 spinlock_t invalidated_lock;
272
273 /* BO mappings freed, but not yet updated in the PT */
274 struct list_head freed;
275
276 /* BOs which are invalidated, has been updated in the PTs */
277 struct list_head done;
278
279 /* contains the page directory */
280 struct amdgpu_vm_bo_base root;
281 struct dma_fence *last_update;
282
283 /* Scheduler entities for page table updates */
284 struct drm_sched_entity immediate;
285 struct drm_sched_entity delayed;
286
287 /* Last unlocked submission to the scheduler entities */
288 struct dma_fence *last_unlocked;
289
290 unsigned int pasid;
291 /* dedicated to vm */
292 struct amdgpu_vmid *reserved_vmid[AMDGPU_MAX_VMHUBS];
293
294 /* Flag to indicate if VM tables are updated by CPU or GPU (SDMA) */
295 bool use_cpu_for_update;
296
297 /* Functions to use for VM table updates */
298 const struct amdgpu_vm_update_funcs *update_funcs;
299
300 /* Flag to indicate ATS support from PTE for GFX9 */
301 bool pte_support_ats;
302
303 /* Up to 128 pending retry page faults */
304 DECLARE_KFIFO(faults, u64, 128);
305
306 /* Points to the KFD process VM info */
307 struct amdkfd_process_info *process_info;
308
309 /* List node in amdkfd_process_info.vm_list_head */
310 struct list_head vm_list_node;
311
312 /* Valid while the PD is reserved or fenced */
313 uint64_t pd_phys_addr;
314
315 /* Some basic info about the task */
316 struct amdgpu_task_info task_info;
317
318 /* Store positions of group of BOs */
319 struct ttm_lru_bulk_move lru_bulk_move;
320 /* mark whether can do the bulk move */
321 bool bulk_moveable;
322 /* Flag to indicate if VM is used for compute */
323 bool is_compute_context;
324};
325
326struct amdgpu_vm_manager {
327 /* Handling of VMIDs */
328 struct amdgpu_vmid_mgr id_mgr[AMDGPU_MAX_VMHUBS];
329 unsigned int first_kfd_vmid;
330 bool concurrent_flush;
331
332 /* Handling of VM fences */
333 u64 fence_context;
334 unsigned seqno[AMDGPU_MAX_RINGS];
335
336 uint64_t max_pfn;
337 uint32_t num_level;
338 uint32_t block_size;
339 uint32_t fragment_size;
340 enum amdgpu_vm_level root_level;
341 /* vram base address for page table entry */
342 u64 vram_base_offset;
343 /* vm pte handling */
344 const struct amdgpu_vm_pte_funcs *vm_pte_funcs;
345 struct drm_gpu_scheduler *vm_pte_scheds[AMDGPU_MAX_RINGS];
346 unsigned vm_pte_num_scheds;
347 struct amdgpu_ring *page_fault;
348
349 /* partial resident texture handling */
350 spinlock_t prt_lock;
351 atomic_t num_prt_users;
352
353 /* controls how VM page tables are updated for Graphics and Compute.
354 * BIT0[= 0] Graphics updated by SDMA [= 1] by CPU
355 * BIT1[= 0] Compute updated by SDMA [= 1] by CPU
356 */
357 int vm_update_mode;
358
359 /* PASID to VM mapping, will be used in interrupt context to
360 * look up VM of a page fault
361 */
362 struct idr pasid_idr;
363 spinlock_t pasid_lock;
364};
365
366struct amdgpu_bo_va_mapping;
367
368#define amdgpu_vm_copy_pte(adev, ib, pe, src, count) ((adev)->vm_manager.vm_pte_funcs->copy_pte((ib), (pe), (src), (count)))
369#define amdgpu_vm_write_pte(adev, ib, pe, value, count, incr) ((adev)->vm_manager.vm_pte_funcs->write_pte((ib), (pe), (value), (count), (incr)))
370#define amdgpu_vm_set_pte_pde(adev, ib, pe, addr, count, incr, flags) ((adev)->vm_manager.vm_pte_funcs->set_pte_pde((ib), (pe), (addr), (count), (incr), (flags)))
371
372extern const struct amdgpu_vm_update_funcs amdgpu_vm_cpu_funcs;
373extern const struct amdgpu_vm_update_funcs amdgpu_vm_sdma_funcs;
374
375void amdgpu_vm_manager_init(struct amdgpu_device *adev);
376void amdgpu_vm_manager_fini(struct amdgpu_device *adev);
377
378long amdgpu_vm_wait_idle(struct amdgpu_vm *vm, long timeout);
379int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm, u32 pasid);
380int amdgpu_vm_make_compute(struct amdgpu_device *adev, struct amdgpu_vm *vm, u32 pasid);
381void amdgpu_vm_release_compute(struct amdgpu_device *adev, struct amdgpu_vm *vm);
382void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm);
383void amdgpu_vm_get_pd_bo(struct amdgpu_vm *vm,
384 struct list_head *validated,
385 struct amdgpu_bo_list_entry *entry);
386bool amdgpu_vm_ready(struct amdgpu_vm *vm);
387int amdgpu_vm_validate_pt_bos(struct amdgpu_device *adev, struct amdgpu_vm *vm,
388 int (*callback)(void *p, struct amdgpu_bo *bo),
389 void *param);
390int amdgpu_vm_flush(struct amdgpu_ring *ring, struct amdgpu_job *job, bool need_pipe_sync);
391int amdgpu_vm_update_pdes(struct amdgpu_device *adev,
392 struct amdgpu_vm *vm, bool immediate);
393int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
394 struct amdgpu_vm *vm,
395 struct dma_fence **fence);
396int amdgpu_vm_handle_moved(struct amdgpu_device *adev,
397 struct amdgpu_vm *vm);
398int amdgpu_vm_bo_update_mapping(struct amdgpu_device *adev,
399 struct amdgpu_device *bo_adev,
400 struct amdgpu_vm *vm, bool immediate,
401 bool unlocked, struct dma_resv *resv,
402 uint64_t start, uint64_t last,
403 uint64_t flags, uint64_t offset,
404 struct ttm_resource *res,
405 dma_addr_t *pages_addr,
406 struct dma_fence **fence, bool *free_table);
407int amdgpu_vm_bo_update(struct amdgpu_device *adev,
408 struct amdgpu_bo_va *bo_va,
409 bool clear);
410bool amdgpu_vm_evictable(struct amdgpu_bo *bo);
411void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
412 struct amdgpu_bo *bo, bool evicted);
413uint64_t amdgpu_vm_map_gart(const dma_addr_t *pages_addr, uint64_t addr);
414struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm,
415 struct amdgpu_bo *bo);
416struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
417 struct amdgpu_vm *vm,
418 struct amdgpu_bo *bo);
419int amdgpu_vm_bo_map(struct amdgpu_device *adev,
420 struct amdgpu_bo_va *bo_va,
421 uint64_t addr, uint64_t offset,
422 uint64_t size, uint64_t flags);
423int amdgpu_vm_bo_replace_map(struct amdgpu_device *adev,
424 struct amdgpu_bo_va *bo_va,
425 uint64_t addr, uint64_t offset,
426 uint64_t size, uint64_t flags);
427int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
428 struct amdgpu_bo_va *bo_va,
429 uint64_t addr);
430int amdgpu_vm_bo_clear_mappings(struct amdgpu_device *adev,
431 struct amdgpu_vm *vm,
432 uint64_t saddr, uint64_t size);
433struct amdgpu_bo_va_mapping *amdgpu_vm_bo_lookup_mapping(struct amdgpu_vm *vm,
434 uint64_t addr);
435void amdgpu_vm_bo_trace_cs(struct amdgpu_vm *vm, struct ww_acquire_ctx *ticket);
436void amdgpu_vm_bo_rmv(struct amdgpu_device *adev,
437 struct amdgpu_bo_va *bo_va);
438void amdgpu_vm_adjust_size(struct amdgpu_device *adev, uint32_t min_vm_size,
439 uint32_t fragment_size_default, unsigned max_level,
440 unsigned max_bits);
441int amdgpu_vm_ioctl(struct drm_device *dev, void *data, struct drm_file *filp);
442bool amdgpu_vm_need_pipeline_sync(struct amdgpu_ring *ring,
443 struct amdgpu_job *job);
444void amdgpu_vm_check_compute_bug(struct amdgpu_device *adev);
445
446void amdgpu_vm_get_task_info(struct amdgpu_device *adev, u32 pasid,
447 struct amdgpu_task_info *task_info);
448bool amdgpu_vm_handle_fault(struct amdgpu_device *adev, u32 pasid,
449 uint64_t addr);
450
451void amdgpu_vm_set_task_info(struct amdgpu_vm *vm);
452
453void amdgpu_vm_move_to_lru_tail(struct amdgpu_device *adev,
454 struct amdgpu_vm *vm);
455void amdgpu_vm_del_from_lru_notify(struct ttm_buffer_object *bo);
456void amdgpu_vm_get_memory(struct amdgpu_vm *vm, uint64_t *vram_mem,
457 uint64_t *gtt_mem, uint64_t *cpu_mem);
458
459#if defined(CONFIG_DEBUG_FS)
460void amdgpu_debugfs_vm_bo_info(struct amdgpu_vm *vm, struct seq_file *m);
461#endif
462
463#endif