3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-01 07:42:18 +00:00
Brooklyn/drivers/gpu/drm/nouveau/nvkm/engine/fifo/changf100.h

23 lines
494 B
C
Raw Normal View History

2021-05-26 19:09:36 +00:00
/* SPDX-License-Identifier: MIT */
#ifndef __GF100_FIFO_CHAN_H__
#define __GF100_FIFO_CHAN_H__
#define gf100_fifo_chan(p) container_of((p), struct gf100_fifo_chan, base)
#include "chan.h"
#include "gf100.h"
struct gf100_fifo_chan {
struct nvkm_fifo_chan base;
struct gf100_fifo *fifo;
struct list_head head;
bool killed;
2021-09-23 16:59:15 +00:00
struct {
2021-05-26 19:09:36 +00:00
struct nvkm_gpuobj *inst;
struct nvkm_vma *vma;
2021-09-23 16:59:15 +00:00
} engn[NVKM_SUBDEV_NR];
2021-05-26 19:09:36 +00:00
};
extern const struct nvkm_fifo_chan_oclass gf100_fifo_gpfifo_oclass;
#endif