xref: /openbmc/linux/drivers/gpu/drm/nouveau/nvkm/subdev/acr/priv.h (revision 2541626cfb794e57ba0575a6920826f591f7ced0)
1 #ifndef __NVKM_ACR_PRIV_H__
2 #define __NVKM_ACR_PRIV_H__
3 #include <subdev/acr.h>
4 struct lsb_header_tail;
5 
6 struct nvkm_acr_fwif {
7 	int version;
8 	int (*load)(struct nvkm_acr *, int version,
9 		    const struct nvkm_acr_fwif *);
10 	const struct nvkm_acr_func *func;
11 };
12 
13 int gm200_acr_nofw(struct nvkm_acr *, int, const struct nvkm_acr_fwif *);
14 int gm20b_acr_load(struct nvkm_acr *, int, const struct nvkm_acr_fwif *);
15 int gp102_acr_load(struct nvkm_acr *, int, const struct nvkm_acr_fwif *);
16 
17 struct nvkm_acr_lsf;
18 struct nvkm_acr_func {
19 	const struct nvkm_acr_hsf_fwif *load;
20 	const struct nvkm_acr_hsf_fwif *ahesasc;
21 	const struct nvkm_acr_hsf_fwif *asb;
22 	const struct nvkm_acr_hsf_fwif *unload;
23 	int (*wpr_parse)(struct nvkm_acr *);
24 	u32 (*wpr_layout)(struct nvkm_acr *);
25 	int (*wpr_alloc)(struct nvkm_acr *, u32 wpr_size);
26 	int (*wpr_build)(struct nvkm_acr *, struct nvkm_acr_lsf *rtos);
27 	void (*wpr_patch)(struct nvkm_acr *, s64 adjust);
28 	void (*wpr_check)(struct nvkm_acr *, u64 *start, u64 *limit);
29 	int (*init)(struct nvkm_acr *);
30 	void (*fini)(struct nvkm_acr *);
31 	u64 bootstrap_falcons;
32 };
33 
34 extern const struct nvkm_acr_func gm200_acr;
35 int gm200_acr_wpr_parse(struct nvkm_acr *);
36 u32 gm200_acr_wpr_layout(struct nvkm_acr *);
37 int gm200_acr_wpr_build(struct nvkm_acr *, struct nvkm_acr_lsf *);
38 void gm200_acr_wpr_patch(struct nvkm_acr *, s64);
39 void gm200_acr_wpr_check(struct nvkm_acr *, u64 *, u64 *);
40 void gm200_acr_wpr_build_lsb_tail(struct nvkm_acr_lsfw *,
41 				  struct lsb_header_tail *);
42 int gm200_acr_init(struct nvkm_acr *);
43 
44 int gm20b_acr_wpr_alloc(struct nvkm_acr *, u32 wpr_size);
45 
46 int gp102_acr_wpr_parse(struct nvkm_acr *);
47 u32 gp102_acr_wpr_layout(struct nvkm_acr *);
48 int gp102_acr_wpr_alloc(struct nvkm_acr *, u32 wpr_size);
49 int gp102_acr_wpr_build(struct nvkm_acr *, struct nvkm_acr_lsf *);
50 int gp102_acr_wpr_build_lsb(struct nvkm_acr *, struct nvkm_acr_lsfw *);
51 void gp102_acr_wpr_patch(struct nvkm_acr *, s64);
52 
53 struct nvkm_acr_hsfw {
54 	struct nvkm_falcon_fw fw;
55 
56 	enum nvkm_acr_hsf_id {
57 		NVKM_ACR_HSF_PMU,
58 		NVKM_ACR_HSF_SEC2,
59 		NVKM_ACR_HSF_GSP,
60 	} falcon_id;
61 	u32 boot_mbox0;
62 	u32 intr_clear;
63 
64 	struct list_head head;
65 };
66 
67 int nvkm_acr_hsfw_boot(struct nvkm_acr *, const char *name);
68 
69 struct nvkm_acr_hsf_fwif {
70 	int version;
71 	int (*load)(struct nvkm_acr *, const char *bl, const char *fw,
72 		    const char *name, int version,
73 		    const struct nvkm_acr_hsf_fwif *);
74 	const struct nvkm_falcon_fw_func *func;
75 
76 	enum nvkm_acr_hsf_id falcon_id;
77 	u32 boot_mbox0;
78 	u32 intr_clear;
79 };
80 
81 
82 int gm200_acr_hsfw_ctor(struct nvkm_acr *, const char *, const char *, const char *, int,
83 			const struct nvkm_acr_hsf_fwif *);
84 int gm200_acr_hsfw_load_bld(struct nvkm_falcon_fw *);
85 extern const struct nvkm_falcon_fw_func gm200_acr_unload_0;
86 
87 extern const struct nvkm_falcon_fw_func gm20b_acr_load_0;
88 
89 int gp102_acr_load_setup(struct nvkm_falcon_fw *);
90 
91 extern const struct nvkm_falcon_fw_func gp108_acr_load_0;
92 
93 extern const struct nvkm_falcon_fw_func gp108_acr_hsfw_0;
94 int gp108_acr_hsfw_load_bld(struct nvkm_falcon_fw *);
95 
96 int nvkm_acr_new_(const struct nvkm_acr_fwif *, struct nvkm_device *, enum nvkm_subdev_type,
97 		  int inst, struct nvkm_acr **);
98 
99 struct nvkm_acr_lsf {
100 	const struct nvkm_acr_lsf_func *func;
101 	struct nvkm_falcon *falcon;
102 	enum nvkm_acr_lsf_id id;
103 	struct list_head head;
104 };
105 
106 struct nvkm_acr_lsfw *nvkm_acr_lsfw_add(const struct nvkm_acr_lsf_func *,
107 					struct nvkm_acr *, struct nvkm_falcon *,
108 					enum nvkm_acr_lsf_id);
109 void nvkm_acr_lsfw_del(struct nvkm_acr_lsfw *);
110 void nvkm_acr_lsfw_del_all(struct nvkm_acr *);
111 #endif
112