xref: /linux/drivers/gpu/drm/nouveau/include/nvkm/engine/sec2.h (revision e58e871becec2d3b04ed91c0c16fe8deac9c9dfa)
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