sec2.h 324 B

1234567891011121314
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __NVKM_SEC2_H__
  3. #define __NVKM_SEC2_H__
  4. #include <core/engine.h>
  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. int gp102_sec2_new(struct nvkm_device *, int, struct nvkm_sec2 **);
  12. #endif