1 /* SPDX-License-Identifier: MIT */
2 #ifndef __NVKM_CE_PRIV_H__
3 #define __NVKM_CE_PRIV_H__
4 #include <engine/ce.h>
5 
6 void gt215_ce_intr(struct nvkm_falcon *, struct nvkm_chan *);
7 void gk104_ce_intr(struct nvkm_engine *);
8 void gp100_ce_intr(struct nvkm_engine *);
9 
10 extern const struct nvkm_object_func gv100_ce_cclass;
11 
12 int ga100_ce_oneinit(struct nvkm_engine *);
13 int ga100_ce_init(struct nvkm_engine *);
14 int ga100_ce_fini(struct nvkm_engine *, bool);
15 int ga100_ce_nonstall(struct nvkm_engine *);
16 #endif
17