1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/pagemap.h>
3 #include <linux/slab.h>
5 #include "nouveau_drv.h"
6 #include "nouveau_mem.h"
7 #include "nouveau_ttm.h"
9 struct nouveau_sgdma_be
{
10 /* this has to be the first field so populate/unpopulated in
11 * nouve_bo.c works properly, otherwise have to move them here
13 struct ttm_dma_tt ttm
;
14 struct nouveau_mem
*mem
;
18 nouveau_sgdma_destroy(struct ttm_tt
*ttm
)
20 struct nouveau_sgdma_be
*nvbe
= (struct nouveau_sgdma_be
*)ttm
;
23 ttm_dma_tt_fini(&nvbe
->ttm
);
29 nv04_sgdma_bind(struct ttm_tt
*ttm
, struct ttm_mem_reg
*reg
)
31 struct nouveau_sgdma_be
*nvbe
= (struct nouveau_sgdma_be
*)ttm
;
32 struct nouveau_mem
*mem
= nouveau_mem(reg
);
35 ret
= nouveau_mem_host(reg
, &nvbe
->ttm
);
39 ret
= nouveau_mem_map(mem
, &mem
->cli
->vmm
.vmm
, &mem
->vma
[0]);
41 nouveau_mem_fini(mem
);
50 nv04_sgdma_unbind(struct ttm_tt
*ttm
)
52 struct nouveau_sgdma_be
*nvbe
= (struct nouveau_sgdma_be
*)ttm
;
53 nouveau_mem_fini(nvbe
->mem
);
57 static struct ttm_backend_func nv04_sgdma_backend
= {
58 .bind
= nv04_sgdma_bind
,
59 .unbind
= nv04_sgdma_unbind
,
60 .destroy
= nouveau_sgdma_destroy
64 nv50_sgdma_bind(struct ttm_tt
*ttm
, struct ttm_mem_reg
*reg
)
66 struct nouveau_sgdma_be
*nvbe
= (struct nouveau_sgdma_be
*)ttm
;
67 struct nouveau_mem
*mem
= nouveau_mem(reg
);
70 ret
= nouveau_mem_host(reg
, &nvbe
->ttm
);
78 static struct ttm_backend_func nv50_sgdma_backend
= {
79 .bind
= nv50_sgdma_bind
,
80 .unbind
= nv04_sgdma_unbind
,
81 .destroy
= nouveau_sgdma_destroy
85 nouveau_sgdma_create_ttm(struct ttm_buffer_object
*bo
, uint32_t page_flags
)
87 struct nouveau_drm
*drm
= nouveau_bdev(bo
->bdev
);
88 struct nouveau_sgdma_be
*nvbe
;
90 nvbe
= kzalloc(sizeof(*nvbe
), GFP_KERNEL
);
94 if (drm
->client
.device
.info
.family
< NV_DEVICE_INFO_V0_TESLA
)
95 nvbe
->ttm
.ttm
.func
= &nv04_sgdma_backend
;
97 nvbe
->ttm
.ttm
.func
= &nv50_sgdma_backend
;
99 if (ttm_dma_tt_init(&nvbe
->ttm
, bo
, page_flags
))
101 * A failing ttm_dma_tt_init() will call ttm_tt_destroy()
102 * and thus our nouveau_sgdma_destroy() hook, so we don't need
106 return &nvbe
->ttm
.ttm
;