diff options
Diffstat (limited to 'drivers/gpu/nvgpu/include')
-rw-r--r-- | drivers/gpu/nvgpu/include/nvgpu/pmuif/gpmuif_acr.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/include/nvgpu/pmuif/gpmuif_acr.h b/drivers/gpu/nvgpu/include/nvgpu/pmuif/gpmuif_acr.h index bc3b1056..c1a4b360 100644 --- a/drivers/gpu/nvgpu/include/nvgpu/pmuif/gpmuif_acr.h +++ b/drivers/gpu/nvgpu/include/nvgpu/pmuif/gpmuif_acr.h | |||
@@ -131,4 +131,29 @@ struct nv_pmu_rpc_struct_acr_init_wpr_region { | |||
131 | u32 scratch[1]; | 131 | u32 scratch[1]; |
132 | }; | 132 | }; |
133 | 133 | ||
134 | /* | ||
135 | * structure that holds data used to | ||
136 | * execute BOOTSTRAP_GR_FALCONS RPC. | ||
137 | */ | ||
138 | struct nv_pmu_rpc_struct_acr_bootstrap_gr_falcons { | ||
139 | /*[IN/OUT] Must be first field in RPC structure */ | ||
140 | struct nv_pmu_rpc_header hdr; | ||
141 | /* [IN] Mask of falcon IDs @ref LSF_FALCON_ID_<XYZ> */ | ||
142 | u32 falcon_id_mask; | ||
143 | /* | ||
144 | * [IN] Boostrapping flags @ref | ||
145 | * PMU_ACR_CMD_BOOTSTRAP_FALCON_FLAGS_<XYZ> | ||
146 | */ | ||
147 | u32 flags; | ||
148 | /* [IN] Indicate whether the particular falon uses VA */ | ||
149 | u32 falcon_va_mask; | ||
150 | /* | ||
151 | * [IN] WPR Base Address in VA. The Inst Block containing | ||
152 | * this VA should be bound to both PMU and GR falcons | ||
153 | * during the falcon boot | ||
154 | */ | ||
155 | struct falc_u64 wpr_base_virtual; | ||
156 | u32 scratch[1]; | ||
157 | }; | ||
158 | |||
134 | #endif /* _GPMUIFACR_H_ */ | 159 | #endif /* _GPMUIFACR_H_ */ |