]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - drivers/gpu/drm/nouveau/nvkm/engine/dma/priv.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-bionic-kernel.git] / drivers / gpu / drm / nouveau / nvkm / engine / dma / priv.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __NVKM_DMA_PRIV_H__
3 #define __NVKM_DMA_PRIV_H__
4 #define nvkm_dma(p) container_of((p), struct nvkm_dma, engine)
5 #include <engine/dma.h>
6
7 struct nvkm_dmaobj_func {
8 int (*bind)(struct nvkm_dmaobj *, struct nvkm_gpuobj *, int align,
9 struct nvkm_gpuobj **);
10 };
11
12 int nvkm_dma_new_(const struct nvkm_dma_func *, struct nvkm_device *,
13 int index, struct nvkm_dma **);
14
15 struct nvkm_dma_func {
16 int (*class_new)(struct nvkm_dma *, const struct nvkm_oclass *,
17 void *data, u32 size, struct nvkm_dmaobj **);
18 };
19 #endif