From: Alistair Popple <apopple@nvidia.com>
To: Danilo Krummrich <dakr@kernel.org>
Cc: nova-gpu <nova-gpu@lists.linux.dev>,
Alice Ryhl <aliceryhl@google.com>,
David Airlie <airlied@gmail.com>,
Alexandre Courbot <acourbot@nvidia.com>,
Benno Lossin <lossin@kernel.org>, Gary Guo <gary@garyguo.net>,
Eliot Courtney <ecourtney@nvidia.com>,
John Hubbard <jhubbard@nvidia.com>,
linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org,
rust-for-linux@vger.kernel.org
Subject: Re: [PATCH v4 4/7] drm: nova: Add a GPU info ioctl
Date: Fri, 21 Aug 2026 15:10:01 +1000 [thread overview]
Message-ID: <aofWfMSZtV-bNYrr@nvdebian.thelocal> (raw)
In-Reply-To: <DKRHW6G6P4K5.15H1A4DGR6672@kernel.org>
On 2026-08-18 at 06:18 +1000, Danilo Krummrich <dakr@kernel.org> wrote...
> On Tue Aug 11, 2026 at 7:06 AM CEST, Alistair Popple wrote:
> > diff --git a/include/uapi/drm/nova_drm.h b/include/uapi/drm/nova_drm.h
> > index ea7665383644..2604e4d2698b 100644
> > --- a/include/uapi/drm/nova_drm.h
> > +++ b/include/uapi/drm/nova_drm.h
> > @@ -118,9 +118,34 @@ struct drm_nova_gem_info {
> > __u64 size;
> > };
> >
> > +/**
> > + * struct drm_nova_gpu_info - query DRM GPU info.
> > + */
> > +struct drm_nova_gpu_info {
> > + /**
> > + * @size: The amount of space allocated by userspace for this structure.
> > + * The kernel will return the amount of data it did/could actually write.
> > + * User space can use this to determine how much of the struct is valid
> > + * when running against an older kernel.
> > + */
> > + __u64 size;
> > +
> > + /**
> > + * @chipid: GPU chip identifier. See &enum drm_nova_chipid for currently
> > + * known chip identifiers.
> > + */
> > + __u32 chipid;
> > +
> > + /**
> > + * @pad: 32 bit padding, must be 0.
> > + */
> > + __u32 pad;
> > +};
>
> I think we should add the indirection we discussed in [1], i.e. have an
> indirection via
>
> struct drm_nova_info {
> __u32 id;
> __u32 size;
> __u64 info;
> /* Revserved fields, just in case? */
> };
>
> so we can easily add new info structures, or extend an existing one with a v2
> without having to create new ioctls for this purpose.
Sorry, I should have called this difference out more explicitly.
Basically I ended up doing it this way because it didn't make much sense to me
putting an ioctl interface within an ioctl interface when DRM ioctl handling
can already deal with matching numbers and truncating/extending the struct as
required. It just leads to more code comparing ID's, etc and I'm not really sure
what the advantage is. Are we concerned about running out of ioctls if we have
to add other types of info struct?
Doing this as top-level ioctl makes the strace decoders simpler and means we can
just rely on the existing DRM ioctl handling to get everything right rather than
duplicating that in nova-drm. Or is there some other advantage to [1] that I've
missed that isn't solved here?
Thanks for looking.
- Alistair
>
> [1] https://lore.kernel.org/nova-gpu/DKC6T1DQX2L3.HTHPB2L167TC@kernel.org/
>
> > #define DRM_NOVA_GETPARAM 0x00
> > #define DRM_NOVA_GEM_CREATE 0x01
> > #define DRM_NOVA_GEM_INFO 0x02
> > +#define DRM_NOVA_GPU_INFO 0x03
> >
> > /* Note: this is an enum so that it can be resolved by Rust bindgen. */
> > enum {
> > @@ -130,6 +155,8 @@ enum {
> > struct drm_nova_gem_create),
> > DRM_IOCTL_NOVA_GEM_INFO = DRM_IOWR(DRM_COMMAND_BASE + DRM_NOVA_GEM_INFO,
> > struct drm_nova_gem_info),
> > + DRM_IOCTL_NOVA_GPU_INFO = DRM_IOWR(DRM_COMMAND_BASE + DRM_NOVA_GPU_INFO,
> > + struct drm_nova_gpu_info),
> > };
> >
> > #if defined(__cplusplus)
> > --
> > 2.54.0
>
next prev parent reply other threads:[~2026-08-21 5:10 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-11 5:06 [PATCH v4 0/7] gpu: nova: Export parameters from nova-core to nova-drm Alistair Popple
2026-08-11 5:06 ` [PATCH v4 1/7] gpu: nova-core: Add public driver API to nova-core Alistair Popple
2026-08-11 5:06 ` [PATCH v4 2/7] drm: nova: Add DRM registration data Alistair Popple
2026-08-11 5:06 ` [PATCH v4 3/7] drm: nova: Add chipid enum to nova-drm UAPI Alistair Popple
2026-08-11 5:06 ` [PATCH v4 4/7] drm: nova: Add a GPU info ioctl Alistair Popple
2026-08-17 20:18 ` Danilo Krummrich
2026-08-21 5:10 ` Alistair Popple [this message]
2026-08-11 5:06 ` [PATCH v4 5/7] drm: nova: Add usable VRAM size to " Alistair Popple
2026-08-11 5:06 ` [PATCH v4 6/7] drm: nova: Use nova-core to read VRAM_BAR_SIZE parameter Alistair Popple
2026-08-17 20:11 ` Danilo Krummrich
2026-08-21 5:13 ` Alistair Popple
2026-08-11 5:06 ` [PATCH v4 7/7] drm: nova: Expose a render node Alistair Popple
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=aofWfMSZtV-bNYrr@nvdebian.thelocal \
--to=apopple@nvidia.com \
--cc=acourbot@nvidia.com \
--cc=airlied@gmail.com \
--cc=aliceryhl@google.com \
--cc=dakr@kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=ecourtney@nvidia.com \
--cc=gary@garyguo.net \
--cc=jhubbard@nvidia.com \
--cc=linux-kernel@vger.kernel.org \
--cc=lossin@kernel.org \
--cc=nova-gpu@lists.linux.dev \
--cc=rust-for-linux@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.