mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00

There can be multiple cases of handling the GSP RPC messages, which are the reply of GSP RPC commands according to the requirement of the callers and the nature of the GSP RPC commands. The current supported reply policies are "callers don't care" and "receive the entire message" according to the requirement of the callers. To introduce a new policy, factor out the current RPC command reply polices. Also, centralize the handling of the reply in a single function. Factor out NVKM_GSP_RPC_REPLY_NOWAIT as "callers don't care" and NVKM_GSP_RPC_REPLY_RECV as "receive the entire message". Introduce a kernel doc to document the policies. Factor out r535_gsp_rpc_handle_reply(). No functional change is intended for small GSP RPC commands. For large GSP commands, the caller decides the policy of how to handle the returned GSP RPC message. Cc: Ben Skeggs <bskeggs@nvidia.com> Cc: Alexandre Courbot <acourbot@nvidia.com> Signed-off-by: Zhi Wang <zhiw@nvidia.com> Signed-off-by: Danilo Krummrich <dakr@kernel.org> Link: https://patchwork.freedesktop.org/patch/msgid/20250227013554.8269-2-zhiw@nvidia.com
32 lines
1.1 KiB
ReStructuredText
32 lines
1.1 KiB
ReStructuredText
.. SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
|
|
===============================
|
|
drm/nouveau NVIDIA GPU Driver
|
|
===============================
|
|
|
|
The drm/nouveau driver provides support for a wide range of NVIDIA GPUs,
|
|
covering GeForce, Quadro, and Tesla series, from the NV04 architecture up
|
|
to the latest Turing, Ampere, Ada families.
|
|
|
|
NVKM: NVIDIA Kernel Manager
|
|
===========================
|
|
|
|
The NVKM component serves as the core abstraction layer within the nouveau
|
|
driver, responsible for managing NVIDIA GPU hardware at the kernel level.
|
|
NVKM provides a unified interface for handling various GPU architectures.
|
|
|
|
It enables resource management, power control, memory handling, and command
|
|
submission required for the proper functioning of NVIDIA GPUs under the
|
|
nouveau driver.
|
|
|
|
NVKM plays a critical role in abstracting hardware complexities and
|
|
providing a consistent API to upper layers of the driver stack.
|
|
|
|
GSP Support
|
|
------------------------
|
|
|
|
.. kernel-doc:: drivers/gpu/drm/nouveau/nvkm/subdev/gsp/r535.c
|
|
:doc: GSP message queue element
|
|
|
|
.. kernel-doc:: drivers/gpu/drm/nouveau/include/nvkm/subdev/gsp.h
|
|
:doc: GSP message handling policy
|