]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/gpu/drm/nouveau/include/nvkm/subdev/mmu.h
drm/nouveau/mmu/gk104: fork from gf100
[mirror_ubuntu-bionic-kernel.git] / drivers / gpu / drm / nouveau / include / nvkm / subdev / mmu.h
CommitLineData
42594600
BS
1#ifndef __NVKM_MMU_H__
2#define __NVKM_MMU_H__
3863c9bc 3#include <core/subdev.h>
02a841d4 4#include <core/mm.h>
4246b92c 5struct nvkm_gpuobj;
42594600 6struct nvkm_mem;
a11c3198 7
42594600 8struct nvkm_vm_pgt {
d0659d32 9 struct nvkm_memory *mem[2];
3ee01281 10 u32 refcount[2];
a11c3198
BS
11};
12
42594600 13struct nvkm_vm_pgd {
a11c3198 14 struct list_head head;
42594600 15 struct nvkm_gpuobj *obj;
a11c3198 16};
3863c9bc 17
42594600 18struct nvkm_vma {
42594600
BS
19 struct nvkm_vm *vm;
20 struct nvkm_mm_node *node;
9ce523cc
BS
21 union {
22 u64 offset;
23 u64 addr;
24 };
a11c3198
BS
25 u32 access;
26};
27
42594600
BS
28struct nvkm_vm {
29 struct nvkm_mmu *mmu;
1de68568
BS
30
31 struct mutex mutex;
42594600 32 struct nvkm_mm mm;
e0bacd2f 33 struct kref refcount;
a11c3198
BS
34
35 struct list_head pgd_list;
68f3f702 36 atomic_t engref[NVKM_SUBDEV_NR];
a11c3198 37
42594600 38 struct nvkm_vm_pgt *pgt;
a11c3198
BS
39 u32 fpde;
40 u32 lpde;
3863c9bc
BS
41};
42
42594600 43int nvkm_vm_new(struct nvkm_device *, u64 offset, u64 length, u64 mm_offset,
1de68568 44 struct lock_class_key *, struct nvkm_vm **);
42594600 45int nvkm_vm_ref(struct nvkm_vm *, struct nvkm_vm **, struct nvkm_gpuobj *pgd);
d8e83994 46int nvkm_vm_boot(struct nvkm_vm *, u64 size);
42594600
BS
47int nvkm_vm_get(struct nvkm_vm *, u64 size, u32 page_shift, u32 access,
48 struct nvkm_vma *);
49void nvkm_vm_put(struct nvkm_vma *);
50void nvkm_vm_map(struct nvkm_vma *, struct nvkm_mem *);
51void nvkm_vm_map_at(struct nvkm_vma *, u64 offset, struct nvkm_mem *);
52void nvkm_vm_unmap(struct nvkm_vma *);
53void nvkm_vm_unmap_at(struct nvkm_vma *, u64 offset, u64 length);
c9582455
BS
54
55struct nvkm_mmu {
56 const struct nvkm_mmu_func *func;
57 struct nvkm_subdev subdev;
58
59 u64 limit;
60 u8 dma_bits;
61 u8 lpg_shift;
0b11b30d
BS
62
63 struct nvkm_vmm *vmm;
c9582455
BS
64};
65
66int nv04_mmu_new(struct nvkm_device *, int, struct nvkm_mmu **);
67int nv41_mmu_new(struct nvkm_device *, int, struct nvkm_mmu **);
68int nv44_mmu_new(struct nvkm_device *, int, struct nvkm_mmu **);
69int nv50_mmu_new(struct nvkm_device *, int, struct nvkm_mmu **);
0f43715f 70int g84_mmu_new(struct nvkm_device *, int, struct nvkm_mmu **);
c9582455 71int gf100_mmu_new(struct nvkm_device *, int, struct nvkm_mmu **);
db018585 72int gk104_mmu_new(struct nvkm_device *, int, struct nvkm_mmu **);
a11c3198 73#endif