1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef __NVKM_SEC2_H__ 3 #define __NVKM_SEC2_H__ 4 #include <core/engine.h> 5 6 struct nvkm_sec2 { 7 struct nvkm_engine engine; 8 struct nvkm_falcon *falcon; 9 struct nvkm_msgqueue *queue; 10 struct work_struct work; 11 }; 12 13 int gp102_sec2_new(struct nvkm_device *, int, struct nvkm_sec2 **); 14 #endif 15