123456789101112131415161718 |
- #ifndef __NVKM_DMA_USER_H__
- #define __NVKM_DMA_USER_H__
- #define nvkm_dmaobj(p) container_of((p), struct nvkm_dmaobj, object)
- #include "priv.h"
- int nvkm_dmaobj_ctor(const struct nvkm_dmaobj_func *, struct nvkm_dma *,
- const struct nvkm_oclass *, void **data, u32 *size,
- struct nvkm_dmaobj *);
- int nv04_dmaobj_new(struct nvkm_dma *, const struct nvkm_oclass *, void *, u32,
- struct nvkm_dmaobj **);
- int nv50_dmaobj_new(struct nvkm_dma *, const struct nvkm_oclass *, void *, u32,
- struct nvkm_dmaobj **);
- int gf100_dmaobj_new(struct nvkm_dma *, const struct nvkm_oclass *, void *, u32,
- struct nvkm_dmaobj **);
- int gf119_dmaobj_new(struct nvkm_dma *, const struct nvkm_oclass *, void *, u32,
- struct nvkm_dmaobj **);
- #endif
|