[RFC 02/29] nvkm/vgpu: attach to nvkm as a nvkm client
Greg KH
gregkh at linuxfoundation.org
Thu Sep 26 09:21:41 UTC 2024
On Sun, Sep 22, 2024 at 05:49:24AM -0700, Zhi Wang wrote:
> nvkm is a HW abstraction layer(HAL) that initializes the HW and
> allows its clients to manipulate the GPU functions regardless of the
> generations of GPU HW. On the top layer, it provides generic APIs for a
> client to connect to NVKM, enumerate the GPU functions, and manipulate
> the GPU HW.
>
> To reach nvkm, the client needs to connect to NVKM layer by layer: driver
> layer, client layer, and eventually, the device layer, which provides all
> the access routines to GPU functions. After a client attaches to NVKM,
> it initializes the HW and is able to serve the clients.
>
> Attach to nvkm as a nvkm client.
>
> Cc: Neo Jia <cjia at nvidia.com>
> Signed-off-by: Zhi Wang <zhiw at nvidia.com>
> ---
> .../nouveau/include/nvkm/vgpu_mgr/vgpu_mgr.h | 8 ++++
> .../gpu/drm/nouveau/nvkm/vgpu_mgr/vgpu_mgr.c | 48 ++++++++++++++++++-
> 2 files changed, 55 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/nouveau/include/nvkm/vgpu_mgr/vgpu_mgr.h b/drivers/gpu/drm/nouveau/include/nvkm/vgpu_mgr/vgpu_mgr.h
> index 3163fff1085b..9e10e18306b0 100644
> --- a/drivers/gpu/drm/nouveau/include/nvkm/vgpu_mgr/vgpu_mgr.h
> +++ b/drivers/gpu/drm/nouveau/include/nvkm/vgpu_mgr/vgpu_mgr.h
> @@ -7,6 +7,14 @@
> struct nvkm_vgpu_mgr {
> bool enabled;
> struct nvkm_device *nvkm_dev;
> +
> + const struct nvif_driver *driver;
Meta-comment, why is this attempting to act like a "driver" and yet not
tieing into the driver model code at all? Please fix that up, it's not
ok to add more layers on top of a broken one like this. We have
infrastructure for this type of thing, please don't route around it.
thanks,
greg k-h
More information about the Nouveau
mailing list