xref: /openbmc/linux/drivers/gpu/drm/nouveau/include/nvkm/engine/sec2.h (revision 4da722ca19f30f7db250db808d1ab1703607a932)
1 #ifndef __NVKM_SEC2_H__
2 #define __NVKM_SEC2_H__
3 #include <core/engine.h>
4 
5 struct nvkm_sec2 {
6 	struct nvkm_engine engine;
7 	struct nvkm_falcon *falcon;
8 	struct nvkm_msgqueue *queue;
9 	struct work_struct work;
10 };
11 
12 int gp102_sec2_new(struct nvkm_device *, int, struct nvkm_sec2 **);
13 #endif
14