2 * Copyright 2017 Red Hat Inc.
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:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
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.
22 #include "nouveau_vmm.h"
23 #include "nouveau_drv.h"
24 #include "nouveau_bo.h"
25 #include "nouveau_mem.h"
28 nouveau_vma_unmap(struct nouveau_vma
*vma
)
31 nvif_vmm_unmap(&vma
->vmm
->vmm
, vma
->addr
);
37 nouveau_vma_map(struct nouveau_vma
*vma
, struct nouveau_mem
*mem
)
39 struct nvif_vma tmp
= { .addr
= vma
->addr
};
40 int ret
= nouveau_mem_map(mem
, &vma
->vmm
->vmm
, &tmp
);
48 nouveau_vma_find(struct nouveau_bo
*nvbo
, struct nouveau_vmm
*vmm
)
50 struct nouveau_vma
*vma
;
52 list_for_each_entry(vma
, &nvbo
->vma_list
, head
) {
61 nouveau_vma_del(struct nouveau_vma
**pvma
)
63 struct nouveau_vma
*vma
= *pvma
;
64 if (vma
&& --vma
->refs
<= 0) {
65 if (likely(vma
->addr
!= ~0ULL)) {
66 struct nvif_vma tmp
= { .addr
= vma
->addr
, .size
= 1 };
67 nvif_vmm_put(&vma
->vmm
->vmm
, &tmp
);
76 nouveau_vma_new(struct nouveau_bo
*nvbo
, struct nouveau_vmm
*vmm
,
77 struct nouveau_vma
**pvma
)
79 struct nouveau_mem
*mem
= nouveau_mem(&nvbo
->bo
.mem
);
80 struct nouveau_vma
*vma
;
84 if ((vma
= *pvma
= nouveau_vma_find(nvbo
, vmm
))) {
89 if (!(vma
= *pvma
= kmalloc(sizeof(*vma
), GFP_KERNEL
)))
96 list_add_tail(&vma
->head
, &nvbo
->vma_list
);
98 if (nvbo
->bo
.mem
.mem_type
!= TTM_PL_SYSTEM
&&
99 mem
->mem
.page
== nvbo
->page
) {
100 ret
= nvif_vmm_get(&vmm
->vmm
, LAZY
, false, mem
->mem
.page
, 0,
101 mem
->mem
.size
, &tmp
);
105 vma
->addr
= tmp
.addr
;
106 ret
= nouveau_vma_map(vma
, mem
);
108 ret
= nvif_vmm_get(&vmm
->vmm
, PTES
, false, mem
->mem
.page
, 0,
109 mem
->mem
.size
, &tmp
);
110 vma
->addr
= tmp
.addr
;
115 nouveau_vma_del(pvma
);
120 nouveau_vmm_fini(struct nouveau_vmm
*vmm
)
122 nvif_vmm_fini(&vmm
->vmm
);
127 nouveau_vmm_init(struct nouveau_cli
*cli
, s32 oclass
, struct nouveau_vmm
*vmm
)
129 int ret
= nvif_vmm_init(&cli
->mmu
, oclass
, PAGE_SIZE
, 0, NULL
, 0,