Merge tag 'pinctrl-v6.9-2' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw...
[linux-block.git] / drivers / gpu / drm / xe / xe_vm.h
CommitLineData
dd08ebf6
MB
1/* SPDX-License-Identifier: MIT */
2/*
3 * Copyright © 2021 Intel Corporation
4 */
5
6#ifndef _XE_VM_H_
7#define _XE_VM_H_
8
b06d47be 9#include "xe_bo_types.h"
dd08ebf6
MB
10#include "xe_macros.h"
11#include "xe_map.h"
12#include "xe_vm_types.h"
13
14struct drm_device;
15struct drm_printer;
16struct drm_file;
17
18struct ttm_buffer_object;
19struct ttm_validate_buffer;
20
9b9529ce 21struct xe_exec_queue;
dd08ebf6
MB
22struct xe_file;
23struct xe_sync_entry;
d490ecf5 24struct drm_exec;
dd08ebf6
MB
25
26struct xe_vm *xe_vm_create(struct xe_device *xe, u32 flags);
dd08ebf6
MB
27
28struct xe_vm *xe_vm_lookup(struct xe_file *xef, u32 id);
29int xe_vma_cmp_vma_cb(const void *key, const struct rb_node *node);
30
31static inline struct xe_vm *xe_vm_get(struct xe_vm *vm)
32{
b06d47be 33 drm_gpuvm_get(&vm->gpuvm);
dd08ebf6
MB
34 return vm;
35}
36
37static inline void xe_vm_put(struct xe_vm *vm)
38{
b06d47be 39 drm_gpuvm_put(&vm->gpuvm);
dd08ebf6
MB
40}
41
d00e9cc2 42int xe_vm_lock(struct xe_vm *vm, bool intr);
dd08ebf6 43
d00e9cc2 44void xe_vm_unlock(struct xe_vm *vm);
dd08ebf6
MB
45
46static inline bool xe_vm_is_closed(struct xe_vm *vm)
47{
9d858b69 48 /* Only guaranteed not to change when vm->lock is held */
dd08ebf6
MB
49 return !vm->size;
50}
51
9d858b69
MB
52static inline bool xe_vm_is_banned(struct xe_vm *vm)
53{
54 return vm->flags & XE_VM_FLAG_BANNED;
55}
56
57static inline bool xe_vm_is_closed_or_banned(struct xe_vm *vm)
58{
59 lockdep_assert_held(&vm->lock);
60 return xe_vm_is_closed(vm) || xe_vm_is_banned(vm);
61}
62
dd08ebf6 63struct xe_vma *
b06d47be
MB
64xe_vm_find_overlapping_vma(struct xe_vm *vm, u64 start, u64 range);
65
06951c2e
TH
66/**
67 * xe_vm_has_scratch() - Whether the vm is configured for scratch PTEs
68 * @vm: The vm
69 *
70 * Return: whether the vm populates unmapped areas with scratch PTEs
71 */
72static inline bool xe_vm_has_scratch(const struct xe_vm *vm)
73{
74 return vm->flags & XE_VM_FLAG_SCRATCH_PAGE;
75}
76
24f947d5
TH
77/**
78 * gpuvm_to_vm() - Return the embedding xe_vm from a struct drm_gpuvm pointer
79 * @gpuvm: The struct drm_gpuvm pointer
80 *
81 * Return: Pointer to the embedding struct xe_vm.
82 */
83static inline struct xe_vm *gpuvm_to_vm(struct drm_gpuvm *gpuvm)
84{
85 return container_of(gpuvm, struct xe_vm, gpuvm);
86}
87
b06d47be
MB
88static inline struct xe_vm *gpuva_to_vm(struct drm_gpuva *gpuva)
89{
24f947d5 90 return gpuvm_to_vm(gpuva->vm);
b06d47be
MB
91}
92
93static inline struct xe_vma *gpuva_to_vma(struct drm_gpuva *gpuva)
94{
95 return container_of(gpuva, struct xe_vma, gpuva);
96}
97
98static inline struct xe_vma_op *gpuva_op_to_vma_op(struct drm_gpuva_op *op)
99{
100 return container_of(op, struct xe_vma_op, base);
101}
21ed3327
MB
102
103/**
104 * DOC: Provide accessors for vma members to facilitate easy change of
105 * implementation.
106 */
107static inline u64 xe_vma_start(struct xe_vma *vma)
108{
b06d47be 109 return vma->gpuva.va.addr;
21ed3327
MB
110}
111
112static inline u64 xe_vma_size(struct xe_vma *vma)
113{
b06d47be 114 return vma->gpuva.va.range;
21ed3327
MB
115}
116
117static inline u64 xe_vma_end(struct xe_vma *vma)
118{
119 return xe_vma_start(vma) + xe_vma_size(vma);
120}
121
122static inline u64 xe_vma_bo_offset(struct xe_vma *vma)
123{
b06d47be 124 return vma->gpuva.gem.offset;
21ed3327
MB
125}
126
127static inline struct xe_bo *xe_vma_bo(struct xe_vma *vma)
128{
b06d47be
MB
129 return !vma->gpuva.gem.obj ? NULL :
130 container_of(vma->gpuva.gem.obj, struct xe_bo, ttm.base);
21ed3327
MB
131}
132
133static inline struct xe_vm *xe_vma_vm(struct xe_vma *vma)
134{
b06d47be 135 return container_of(vma->gpuva.vm, struct xe_vm, gpuvm);
21ed3327
MB
136}
137
138static inline bool xe_vma_read_only(struct xe_vma *vma)
139{
b06d47be 140 return vma->gpuva.flags & XE_VMA_READ_ONLY;
21ed3327
MB
141}
142
143static inline u64 xe_vma_userptr(struct xe_vma *vma)
144{
b06d47be 145 return vma->gpuva.gem.offset;
21ed3327
MB
146}
147
148static inline bool xe_vma_is_null(struct xe_vma *vma)
149{
b06d47be 150 return vma->gpuva.flags & DRM_GPUVA_SPARSE;
21ed3327
MB
151}
152
153static inline bool xe_vma_has_no_bo(struct xe_vma *vma)
154{
155 return !xe_vma_bo(vma);
156}
157
158static inline bool xe_vma_is_userptr(struct xe_vma *vma)
159{
160 return xe_vma_has_no_bo(vma) && !xe_vma_is_null(vma);
161}
dd08ebf6 162
5bd24e78
TH
163/**
164 * to_userptr_vma() - Return a pointer to an embedding userptr vma
165 * @vma: Pointer to the embedded struct xe_vma
166 *
167 * Return: Pointer to the embedding userptr vma
168 */
169static inline struct xe_userptr_vma *to_userptr_vma(struct xe_vma *vma)
170{
171 xe_assert(xe_vma_vm(vma)->xe, xe_vma_is_userptr(vma));
172 return container_of(vma, struct xe_userptr_vma, vma);
173}
174
876611c2 175u64 xe_vm_pdp4_descriptor(struct xe_vm *vm, struct xe_tile *tile);
dd08ebf6
MB
176
177int xe_vm_create_ioctl(struct drm_device *dev, void *data,
178 struct drm_file *file);
179int xe_vm_destroy_ioctl(struct drm_device *dev, void *data,
180 struct drm_file *file);
181int xe_vm_bind_ioctl(struct drm_device *dev, void *data,
182 struct drm_file *file);
183
184void xe_vm_close_and_put(struct xe_vm *vm);
185
fdb6a053 186static inline bool xe_vm_in_fault_mode(struct xe_vm *vm)
dd08ebf6 187{
fdb6a053 188 return vm->flags & XE_VM_FLAG_FAULT_MODE;
dd08ebf6
MB
189}
190
fdb6a053 191static inline bool xe_vm_in_lr_mode(struct xe_vm *vm)
dd08ebf6 192{
fdb6a053 193 return vm->flags & XE_VM_FLAG_LR_MODE;
dd08ebf6
MB
194}
195
fdb6a053 196static inline bool xe_vm_in_preempt_fence_mode(struct xe_vm *vm)
dd08ebf6 197{
fdb6a053 198 return xe_vm_in_lr_mode(vm) && !xe_vm_in_fault_mode(vm);
dd08ebf6
MB
199}
200
9b9529ce 201int xe_vm_add_compute_exec_queue(struct xe_vm *vm, struct xe_exec_queue *q);
abce4e4b 202void xe_vm_remove_compute_exec_queue(struct xe_vm *vm, struct xe_exec_queue *q);
dd08ebf6
MB
203
204int xe_vm_userptr_pin(struct xe_vm *vm);
205
206int __xe_vm_userptr_needs_repin(struct xe_vm *vm);
207
208int xe_vm_userptr_check_repin(struct xe_vm *vm);
209
a00e7e3f 210int xe_vm_rebind(struct xe_vm *vm, bool rebind_worker);
dd08ebf6
MB
211
212int xe_vm_invalidate_vma(struct xe_vma *vma);
213
342206b7
MB
214static inline void xe_vm_queue_rebind_worker(struct xe_vm *vm)
215{
fdb6a053 216 xe_assert(vm->xe, xe_vm_in_preempt_fence_mode(vm));
342206b7
MB
217 queue_work(vm->xe->ordered_wq, &vm->preempt.rebind_work);
218}
219
8e41443e
TH
220/**
221 * xe_vm_reactivate_rebind() - Reactivate the rebind functionality on compute
222 * vms.
223 * @vm: The vm.
224 *
225 * If the rebind functionality on a compute vm was disabled due
226 * to nothing to execute. Reactivate it and run the rebind worker.
227 * This function should be called after submitting a batch to a compute vm.
228 */
229static inline void xe_vm_reactivate_rebind(struct xe_vm *vm)
230{
fdb6a053 231 if (xe_vm_in_preempt_fence_mode(vm) && vm->preempt.rebind_deactivated) {
8e41443e 232 vm->preempt.rebind_deactivated = false;
342206b7 233 xe_vm_queue_rebind_worker(vm);
8e41443e
TH
234 }
235}
236
5bd24e78 237int xe_vma_userptr_pin_pages(struct xe_userptr_vma *uvma);
dd08ebf6 238
5bd24e78 239int xe_vma_userptr_check_repin(struct xe_userptr_vma *uvma);
dd08ebf6 240
d490ecf5
TH
241bool xe_vm_validate_should_retry(struct drm_exec *exec, int err, ktime_t *end);
242
dd08ebf6
MB
243int xe_analyze_vm(struct drm_printer *p, struct xe_vm *vm, int gt_id);
244
3edd52be
TH
245int xe_vm_lock_vma(struct drm_exec *exec, struct xe_vma *vma);
246
247int xe_vm_validate_rebind(struct xe_vm *vm, struct drm_exec *exec,
248 unsigned int num_fences);
2714d509 249
b06d47be
MB
250/**
251 * xe_vm_resv() - Return's the vm's reservation object
252 * @vm: The vm
253 *
254 * Return: Pointer to the vm's reservation object.
255 */
256static inline struct dma_resv *xe_vm_resv(struct xe_vm *vm)
257{
258 return drm_gpuvm_resv(&vm->gpuvm);
259}
260
261/**
262 * xe_vm_assert_held(vm) - Assert that the vm's reservation object is held.
263 * @vm: The vm
264 */
265#define xe_vm_assert_held(vm) dma_resv_assert_held(xe_vm_resv(vm))
266
dd08ebf6
MB
267#if IS_ENABLED(CONFIG_DRM_XE_DEBUG_VM)
268#define vm_dbg drm_dbg
269#else
270__printf(2, 3)
271static inline void vm_dbg(const struct drm_device *dev,
272 const char *format, ...)
273{ /* noop */ }
274#endif
275#endif
0eb2a18a
ML
276
277struct xe_vm_snapshot *xe_vm_snapshot_capture(struct xe_vm *vm);
278void xe_vm_snapshot_capture_delayed(struct xe_vm_snapshot *snap);
279void xe_vm_snapshot_print(struct xe_vm_snapshot *snap, struct drm_printer *p);
280void xe_vm_snapshot_free(struct xe_vm_snapshot *snap);