Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git] / drivers / gpu / drm / nouveau / nvkm / engine / fifo / changk104.h
blob1208e3d9dbe283da18ad25435272815bf0084b6f
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __GK104_FIFO_CHAN_H__
3 #define __GK104_FIFO_CHAN_H__
4 #define gk104_fifo_chan(p) container_of((p), struct gk104_fifo_chan, base)
5 #include "chan.h"
6 #include "gk104.h"
8 struct gk104_fifo_chan {
9 struct nvkm_fifo_chan base;
10 struct gk104_fifo *fifo;
11 int runl;
13 struct list_head head;
14 bool killed;
16 struct {
17 struct nvkm_gpuobj *inst;
18 struct nvkm_vma *vma;
19 } engn[NVKM_SUBDEV_NR];
22 int gk104_fifo_gpfifo_new(struct nvkm_fifo *, const struct nvkm_oclass *,
23 void *data, u32 size, struct nvkm_object **);
25 extern const struct nvkm_fifo_chan_oclass gk104_fifo_gpfifo_oclass;
26 extern const struct nvkm_fifo_chan_oclass gk110_fifo_gpfifo_oclass;
27 extern const struct nvkm_fifo_chan_oclass gm200_fifo_gpfifo_oclass;
28 extern const struct nvkm_fifo_chan_oclass gp100_fifo_gpfifo_oclass;
29 #endif