search for: r535_gsp_msg_dump

Displaying 2 results from an estimated 2 matches for "r535_gsp_msg_dump".

2024 Dec 11
1
[PATCH v3 02/15] nvkm: rename "repc" to "gsp_rpc_len" on the GSP message recv path
...vkm_gsp *gsp, u32 repc, int *ptime) > +r535_gsp_msgq_recv(struct nvkm_gsp *gsp, u32 gsp_rpc_len, int *ptime) > { > - return r535_gsp_msgq_wait(gsp, repc, NULL, ptime); > + return r535_gsp_msgq_wait(gsp, gsp_rpc_len, NULL, ptime); > } > > static int > @@ -317,7 +322,7 @@ r535_gsp_msg_dump(struct nvkm_gsp *gsp, struct nvfw_gsp_rpc *msg, int lvl) > } > > static struct nvfw_gsp_rpc * > -r535_gsp_msg_recv(struct nvkm_gsp *gsp, int fn, u32 repc) > +r535_gsp_msg_recv(struct nvkm_gsp *gsp, int fn, u32 gsp_rpc_len) > { > struct nvkm_subdev *subdev = &gsp->...
2024 Oct 31
16
[PATCH v3 00/15] NVKM GSP RPC kernel docs, cleanups and fixes
Hi folks: Here is the leftover of the previous spin of NVKM GSP RPC fixes, which is handling the return of large GSP message. PATCH 1 and 2 in the previous spin were merged [1], and this spin is based on top of PATCH 1 and PATCH 2 in the previous spin. Besides the support of the large GSP message, kernel doc and many cleanups are introduced according to the comments in the previous spin [2].