xref: /linux/drivers/gpu/drm/nouveau/nvkm/engine/sec2/priv.h (revision f86fd32d)
1 /* SPDX-License-Identifier: MIT */
2 #ifndef __NVKM_SEC2_PRIV_H__
3 #define __NVKM_SEC2_PRIV_H__
4 #include <engine/sec2.h>
5 
6 struct nvkm_sec2_func {
7 	const struct nvkm_falcon_func *flcn;
8 	u8 unit_acr;
9 	void (*intr)(struct nvkm_sec2 *);
10 	int (*initmsg)(struct nvkm_sec2 *);
11 };
12 
13 void gp102_sec2_intr(struct nvkm_sec2 *);
14 int gp102_sec2_initmsg(struct nvkm_sec2 *);
15 
16 struct nvkm_sec2_fwif {
17 	int version;
18 	int (*load)(struct nvkm_sec2 *, int ver, const struct nvkm_sec2_fwif *);
19 	const struct nvkm_sec2_func *func;
20 	const struct nvkm_acr_lsf_func *acr;
21 };
22 
23 int gp102_sec2_load(struct nvkm_sec2 *, int, const struct nvkm_sec2_fwif *);
24 extern const struct nvkm_sec2_func gp102_sec2;
25 extern const struct nvkm_acr_lsf_func gp102_sec2_acr_1;
26 
27 int nvkm_sec2_new_(const struct nvkm_sec2_fwif *, struct nvkm_device *,
28 		   int, u32 addr, struct nvkm_sec2 **);
29 #endif
30