drm: nova-drm: add initial driver skeleton
authorDanilo Krummrich <dakr@kernel.org>
Thu, 24 Apr 2025 16:02:50 +0000 (18:02 +0200)
committerDanilo Krummrich <dakr@kernel.org>
Mon, 12 May 2025 18:48:15 +0000 (20:48 +0200)
commitcdeaeb9dd762d7711241a62459dfb730b2cd0281
treeeb1f96b9c4aa55c1abe9893b0653f2a1949b6e4b
parente041d81a03777702249f8de16db70fdabdd1ab5f
drm: nova-drm: add initial driver skeleton

Add the initial nova-drm driver skeleton.

nova-drm is connected to nova-core through the auxiliary bus and
implements the DRM parts of the nova driver stack.

For now, it implements the fundamental DRM abstractions, i.e. creates a
DRM device and registers it, exposing a three sample IOCTLs.

  DRM_IOCTL_NOVA_GETPARAM
    - provides the PCI bar size from the bar that maps the GPUs VRAM
      from nova-core

  DRM_IOCTL_NOVA_GEM_CREATE
    - creates a new dummy DRM GEM object and returns a handle

  DRM_IOCTL_NOVA_GEM_INFO
    - provides metadata for the DRM GEM object behind a given handle

I implemented a small userspace test suite [1] that utilizes this
interface.

Link: https://gitlab.freedesktop.org/dakr/drm-test
Reviewed-by: Maxime Ripard <mripard@kernel.org>
Acked-by: Dave Airlie <airlied@redhat.com>
Link: https://lore.kernel.org/r/20250424160452.8070-3-dakr@kernel.org
[ Kconfig: depend on DRM=y rather than just DRM. - Danilo ]
Signed-off-by: Danilo Krummrich <dakr@kernel.org>
12 files changed:
MAINTAINERS
drivers/gpu/drm/Kconfig
drivers/gpu/drm/Makefile
drivers/gpu/drm/nova/Kconfig [new file with mode: 0644]
drivers/gpu/drm/nova/Makefile [new file with mode: 0644]
drivers/gpu/drm/nova/driver.rs [new file with mode: 0644]
drivers/gpu/drm/nova/file.rs [new file with mode: 0644]
drivers/gpu/drm/nova/gem.rs [new file with mode: 0644]
drivers/gpu/drm/nova/nova.rs [new file with mode: 0644]
drivers/gpu/drm/nova/uapi.rs [new file with mode: 0644]
include/uapi/drm/nova_drm.h [new file with mode: 0644]
rust/uapi/uapi_helper.h