blob: c4f5d1ff042e7680a7a775388bd55dd2552272d2 [file] [log] [blame]
Christian König073440d2016-09-28 15:41:50 +02001/*
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 */
Zhang, Jerry36b32a62017-03-29 16:08:32 +080048#define AMDGPU_VM_PTE_COUNT(adev) (1 << (adev)->vm_manager.block_size)
Christian König073440d2016-09-28 15:41:50 +020049
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 */
Christian König6be7adb2017-05-23 18:35:22 +020054#define AMDGPU_LOG2_PAGES_PER_FRAG(adev) \
55 ((adev)->asic_type < CHIP_VEGA10 ? 4 : \
56 (adev)->vm_manager.block_size)
Christian König073440d2016-09-28 15:41:50 +020057
Christian König35ba15f2017-02-13 14:22:58 +010058#define AMDGPU_PTE_VALID (1ULL << 0)
59#define AMDGPU_PTE_SYSTEM (1ULL << 1)
60#define AMDGPU_PTE_SNOOPED (1ULL << 2)
Christian König073440d2016-09-28 15:41:50 +020061
62/* VI only */
Christian König35ba15f2017-02-13 14:22:58 +010063#define AMDGPU_PTE_EXECUTABLE (1ULL << 4)
Christian König073440d2016-09-28 15:41:50 +020064
Christian König35ba15f2017-02-13 14:22:58 +010065#define AMDGPU_PTE_READABLE (1ULL << 5)
66#define AMDGPU_PTE_WRITEABLE (1ULL << 6)
Christian König073440d2016-09-28 15:41:50 +020067
Alex Xie982a1342017-02-15 14:10:19 -050068#define AMDGPU_PTE_FRAG(x) ((x & 0x1fULL) << 7)
Christian König073440d2016-09-28 15:41:50 +020069
Zhang, Jerryd0766e92017-04-19 09:53:29 +080070/* TILED for VEGA10, reserved for older ASICs */
71#define AMDGPU_PTE_PRT (1ULL << 51)
Christian König284710f2017-01-30 11:09:31 +010072
Alex Deucherca020612017-03-03 15:23:14 -050073/* VEGA10 only */
74#define AMDGPU_PTE_MTYPE(a) ((uint64_t)a << 57)
75#define AMDGPU_PTE_MTYPE_MASK AMDGPU_PTE_MTYPE(3ULL)
76
Christian König073440d2016-09-28 15:41:50 +020077/* How to programm VM fault handling */
78#define AMDGPU_VM_FAULT_STOP_NEVER 0
79#define AMDGPU_VM_FAULT_STOP_FIRST 1
80#define AMDGPU_VM_FAULT_STOP_ALWAYS 2
81
Christian Königeb60ef22017-03-30 14:41:19 +020082/* max number of VMHUB */
83#define AMDGPU_MAX_VMHUBS 2
84#define AMDGPU_GFXHUB 0
85#define AMDGPU_MMHUB 1
86
87/* hardcode that limit for now */
88#define AMDGPU_VA_RESERVED_SIZE (8 << 20)
Chunming Zhouc3505772017-04-21 15:51:04 +080089/* max vmids dedicated for process */
90#define AMDGPU_VM_MAX_RESERVED_VMID 1
Christian Königeb60ef22017-03-30 14:41:19 +020091
Harish Kasiviswanathan9a4b7d42017-06-09 11:26:57 -040092#define AMDGPU_VM_CONTEXT_GFX 0
93#define AMDGPU_VM_CONTEXT_COMPUTE 1
94
95/* See vm_update_mode */
96#define AMDGPU_VM_USE_CPU_FOR_GFX (1 << 0)
97#define AMDGPU_VM_USE_CPU_FOR_COMPUTE (1 << 1)
98
99
Christian König073440d2016-09-28 15:41:50 +0200100struct amdgpu_vm_pt {
101 struct amdgpu_bo *bo;
102 uint64_t addr;
Christian König67003a12016-10-12 14:46:26 +0200103
104 /* array of page tables, one for each directory entry */
105 struct amdgpu_vm_pt *entries;
106 unsigned last_entry_used;
Christian König073440d2016-09-28 15:41:50 +0200107};
108
109struct amdgpu_vm {
110 /* tree of virtual addresses mapped */
111 struct rb_root va;
112
113 /* protecting invalidated */
114 spinlock_t status_lock;
115
116 /* BOs moved, but not yet updated in the PT */
117 struct list_head invalidated;
118
119 /* BOs cleared in the PT because of a move */
120 struct list_head cleared;
121
122 /* BO mappings freed, but not yet updated in the PT */
123 struct list_head freed;
124
125 /* contains the page directory */
Christian König67003a12016-10-12 14:46:26 +0200126 struct amdgpu_vm_pt root;
Christian Königa24960f2016-10-12 13:20:52 +0200127 struct dma_fence *last_dir_update;
Christian König073440d2016-09-28 15:41:50 +0200128 uint64_t last_eviction_counter;
129
Christian König073440d2016-09-28 15:41:50 +0200130 /* protecting freed */
131 spinlock_t freed_lock;
132
133 /* Scheduler entity for page table updates */
134 struct amd_sched_entity entity;
135
136 /* client id */
137 u64 client_id;
Chunming Zhou36bbf3b2017-04-20 16:17:34 +0800138 /* dedicated to vm */
139 struct amdgpu_vm_id *reserved_vmid[AMDGPU_MAX_VMHUBS];
Monk Liubd7de272017-01-09 15:23:17 +0800140 /* each VM will map on CSA */
141 struct amdgpu_bo_va *csa_bo_va;
Harish Kasiviswanathan9a4b7d42017-06-09 11:26:57 -0400142
143 /* Flag to indicate if VM tables are updated by CPU or GPU (SDMA) */
144 bool use_cpu_for_update;
Christian König073440d2016-09-28 15:41:50 +0200145};
146
147struct amdgpu_vm_id {
148 struct list_head list;
Christian König073440d2016-09-28 15:41:50 +0200149 struct amdgpu_sync active;
Dave Airlie220196b2016-10-28 11:33:52 +1000150 struct dma_fence *last_flush;
Christian König073440d2016-09-28 15:41:50 +0200151 atomic64_t owner;
152
153 uint64_t pd_gpu_addr;
154 /* last flushed PD/PT update */
Dave Airlie220196b2016-10-28 11:33:52 +1000155 struct dma_fence *flushed_updates;
Christian König073440d2016-09-28 15:41:50 +0200156
157 uint32_t current_gpu_reset_count;
158
159 uint32_t gds_base;
160 uint32_t gds_size;
161 uint32_t gws_base;
162 uint32_t gws_size;
163 uint32_t oa_base;
164 uint32_t oa_size;
165};
166
Christian König76456702017-04-06 17:52:39 +0200167struct amdgpu_vm_id_manager {
168 struct mutex lock;
169 unsigned num_ids;
170 struct list_head ids_lru;
171 struct amdgpu_vm_id ids[AMDGPU_NUM_VM];
Chunming Zhouc3505772017-04-21 15:51:04 +0800172 atomic_t reserved_vmid_num;
Christian König76456702017-04-06 17:52:39 +0200173};
174
Christian König073440d2016-09-28 15:41:50 +0200175struct amdgpu_vm_manager {
176 /* Handling of VMIDs */
Christian König76456702017-04-06 17:52:39 +0200177 struct amdgpu_vm_id_manager id_mgr[AMDGPU_MAX_VMHUBS];
Christian König073440d2016-09-28 15:41:50 +0200178
179 /* Handling of VM fences */
180 u64 fence_context;
181 unsigned seqno[AMDGPU_MAX_RINGS];
182
Felix Kuehling22770e52017-03-28 20:24:53 -0400183 uint64_t max_pfn;
Christian König8437a092016-10-17 15:08:10 +0200184 uint32_t num_level;
Zhang, Jerry36b32a62017-03-29 16:08:32 +0800185 uint64_t vm_size;
186 uint32_t block_size;
Christian König073440d2016-09-28 15:41:50 +0200187 /* vram base address for page table entry */
188 u64 vram_base_offset;
Christian König073440d2016-09-28 15:41:50 +0200189 /* vm pte handling */
190 const struct amdgpu_vm_pte_funcs *vm_pte_funcs;
191 struct amdgpu_ring *vm_pte_rings[AMDGPU_MAX_RINGS];
192 unsigned vm_pte_num_rings;
193 atomic_t vm_pte_next_ring;
194 /* client id counter */
195 atomic64_t client_counter;
Christian König284710f2017-01-30 11:09:31 +0100196
197 /* partial resident texture handling */
198 spinlock_t prt_lock;
Christian König451bc8e2017-02-14 16:02:52 +0100199 atomic_t num_prt_users;
Harish Kasiviswanathan9a4b7d42017-06-09 11:26:57 -0400200
201 /* controls how VM page tables are updated for Graphics and Compute.
202 * BIT0[= 0] Graphics updated by SDMA [= 1] by CPU
203 * BIT1[= 0] Compute updated by SDMA [= 1] by CPU
204 */
205 int vm_update_mode;
Christian König073440d2016-09-28 15:41:50 +0200206};
207
208void amdgpu_vm_manager_init(struct amdgpu_device *adev);
209void amdgpu_vm_manager_fini(struct amdgpu_device *adev);
Harish Kasiviswanathan9a4b7d42017-06-09 11:26:57 -0400210int amdgpu_vm_init(struct amdgpu_device *adev, struct amdgpu_vm *vm,
211 int vm_context);
Christian König073440d2016-09-28 15:41:50 +0200212void amdgpu_vm_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm);
213void amdgpu_vm_get_pd_bo(struct amdgpu_vm *vm,
214 struct list_head *validated,
215 struct amdgpu_bo_list_entry *entry);
216int amdgpu_vm_validate_pt_bos(struct amdgpu_device *adev, struct amdgpu_vm *vm,
217 int (*callback)(void *p, struct amdgpu_bo *bo),
218 void *param);
219void amdgpu_vm_move_pt_bos_in_lru(struct amdgpu_device *adev,
220 struct amdgpu_vm *vm);
Christian König663e4572017-03-13 10:13:37 +0100221int amdgpu_vm_alloc_pts(struct amdgpu_device *adev,
222 struct amdgpu_vm *vm,
223 uint64_t saddr, uint64_t size);
Christian König073440d2016-09-28 15:41:50 +0200224int amdgpu_vm_grab_id(struct amdgpu_vm *vm, struct amdgpu_ring *ring,
Dave Airlie220196b2016-10-28 11:33:52 +1000225 struct amdgpu_sync *sync, struct dma_fence *fence,
Christian König073440d2016-09-28 15:41:50 +0200226 struct amdgpu_job *job);
Monk Liu8fdf0742017-06-06 17:25:13 +0800227int amdgpu_vm_flush(struct amdgpu_ring *ring, struct amdgpu_job *job, bool need_pipe_sync);
Christian König76456702017-04-06 17:52:39 +0200228void amdgpu_vm_reset_id(struct amdgpu_device *adev, unsigned vmhub,
229 unsigned vmid);
Christian König32601d42017-05-10 20:06:58 +0200230void amdgpu_vm_reset_all_ids(struct amdgpu_device *adev);
Christian König194d2162016-10-12 15:13:52 +0200231int amdgpu_vm_update_directories(struct amdgpu_device *adev,
232 struct amdgpu_vm *vm);
Christian König073440d2016-09-28 15:41:50 +0200233int amdgpu_vm_clear_freed(struct amdgpu_device *adev,
Nicolai Hähnlef3467812017-03-23 19:36:31 +0100234 struct amdgpu_vm *vm,
235 struct dma_fence **fence);
Christian König073440d2016-09-28 15:41:50 +0200236int amdgpu_vm_clear_invalids(struct amdgpu_device *adev, struct amdgpu_vm *vm,
237 struct amdgpu_sync *sync);
238int amdgpu_vm_bo_update(struct amdgpu_device *adev,
239 struct amdgpu_bo_va *bo_va,
240 bool clear);
241void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
242 struct amdgpu_bo *bo);
243struct amdgpu_bo_va *amdgpu_vm_bo_find(struct amdgpu_vm *vm,
244 struct amdgpu_bo *bo);
245struct amdgpu_bo_va *amdgpu_vm_bo_add(struct amdgpu_device *adev,
246 struct amdgpu_vm *vm,
247 struct amdgpu_bo *bo);
248int amdgpu_vm_bo_map(struct amdgpu_device *adev,
249 struct amdgpu_bo_va *bo_va,
250 uint64_t addr, uint64_t offset,
Christian König268c3002017-01-18 14:49:43 +0100251 uint64_t size, uint64_t flags);
Christian König80f95c52017-03-13 10:13:39 +0100252int amdgpu_vm_bo_replace_map(struct amdgpu_device *adev,
253 struct amdgpu_bo_va *bo_va,
254 uint64_t addr, uint64_t offset,
255 uint64_t size, uint64_t flags);
Christian König073440d2016-09-28 15:41:50 +0200256int amdgpu_vm_bo_unmap(struct amdgpu_device *adev,
257 struct amdgpu_bo_va *bo_va,
258 uint64_t addr);
Christian Königdc54d3d2017-03-13 10:13:38 +0100259int amdgpu_vm_bo_clear_mappings(struct amdgpu_device *adev,
260 struct amdgpu_vm *vm,
261 uint64_t saddr, uint64_t size);
Christian König073440d2016-09-28 15:41:50 +0200262void amdgpu_vm_bo_rmv(struct amdgpu_device *adev,
263 struct amdgpu_bo_va *bo_va);
Junwei Zhangbab4fee2017-04-05 13:54:56 +0800264void amdgpu_vm_adjust_size(struct amdgpu_device *adev, uint64_t vm_size);
Chunming Zhoucfbcacf2017-04-24 11:09:04 +0800265int amdgpu_vm_ioctl(struct drm_device *dev, void *data, struct drm_file *filp);
Chunming Zhoub9bf33d2017-05-11 14:52:48 -0400266bool amdgpu_vm_need_pipeline_sync(struct amdgpu_ring *ring,
267 struct amdgpu_job *job);
Alex Xiee59c0202017-06-01 09:42:59 -0400268void amdgpu_vm_check_compute_bug(struct amdgpu_device *adev);
Christian König073440d2016-09-28 15:41:50 +0200269
270#endif