Release 4.17 drivers/gpu/drm/nouveau/nvkm/engine/fifo/chan.h
  
  
  
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __NVKM_FIFO_CHAN_H__
#define __NVKM_FIFO_CHAN_H__
#define nvkm_fifo_chan(p) container_of((p), struct nvkm_fifo_chan, object)
#include "priv.h"
struct nvkm_fifo_chan_func {
	
void *(*dtor)(struct nvkm_fifo_chan *);
	
void (*init)(struct nvkm_fifo_chan *);
	
void (*fini)(struct nvkm_fifo_chan *);
	
int (*ntfy)(struct nvkm_fifo_chan *, u32 type, struct nvkm_event **);
	
int  (*engine_ctor)(struct nvkm_fifo_chan *, struct nvkm_engine *,
			    struct nvkm_object *);
	
void (*engine_dtor)(struct nvkm_fifo_chan *, struct nvkm_engine *);
	
int  (*engine_init)(struct nvkm_fifo_chan *, struct nvkm_engine *);
	
int  (*engine_fini)(struct nvkm_fifo_chan *, struct nvkm_engine *,
			    bool suspend);
	
int  (*object_ctor)(struct nvkm_fifo_chan *, struct nvkm_object *);
	
void (*object_dtor)(struct nvkm_fifo_chan *, int);
};
int nvkm_fifo_chan_ctor(const struct nvkm_fifo_chan_func *, struct nvkm_fifo *,
			u32 size, u32 align, bool zero, u64 vm, u64 push,
			u64 engines, int bar, u32 base, u32 user,
			const struct nvkm_oclass *, struct nvkm_fifo_chan *);
struct nvkm_fifo_chan_oclass {
	
int (*ctor)(struct nvkm_fifo *, const struct nvkm_oclass *,
		    void *data, u32 size, struct nvkm_object **);
	
struct nvkm_sclass base;
};
int gf100_fifo_chan_ntfy(struct nvkm_fifo_chan *, u32, struct nvkm_event **);
#endif
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Ben Skeggs | 272 | 99.63% | 4 | 80.00% | 
| Greg Kroah-Hartman | 1 | 0.37% | 1 | 20.00% | 
| Total | 273 | 100.00% | 5 | 100.00% | 
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.