From: "Gary Guo" <gary@garyguo.net>
To: "Danilo Krummrich" <dakr@kernel.org>,
"Alexandre Courbot" <acourbot@nvidia.com>
Cc: "Gary Guo" <gary@garyguo.net>,
"Alice Ryhl" <aliceryhl@google.com>,
"Daniel Almeida" <daniel.almeida@collabora.com>,
"Miguel Ojeda" <ojeda@kernel.org>,
"Boqun Feng" <boqun@kernel.org>,
"Björn Roy Baron" <bjorn3_gh@protonmail.com>,
"Benno Lossin" <lossin@kernel.org>,
"Andreas Hindborg" <a.hindborg@kernel.org>,
"Trevor Gross" <tmgross@umich.edu>,
"Tamir Duberstein" <tamird@kernel.org>,
"Onur Özkan" <work@onurozkan.dev>,
"David Airlie" <airlied@gmail.com>,
"Simona Vetter" <simona@ffwll.ch>,
"Bjorn Helgaas" <bhelgaas@google.com>,
"Krzysztof Wilczyński" <kwilczynski@kernel.org>,
driver-core@lists.linux.dev, rust-for-linux@vger.kernel.org,
linux-kernel@vger.kernel.org, nova-gpu@lists.linux.dev,
dri-devel@lists.freedesktop.org, linux-pci@vger.kernel.org
Subject: Re: [PATCH 08/10] gpu: nova-core: use projection for PFALCON and PFALCON2 registers
Date: Tue, 28 Jul 2026 19:26:06 +0100 [thread overview]
Message-ID: <DKAEZ4LDA10F.1RFA9JKBGY2CF@garyguo.net> (raw)
In-Reply-To: <DKAD64Q7CEQD.Z15OS6MRHEKE@kernel.org>
On Tue Jul 28, 2026 at 6:01 PM BST, Danilo Krummrich wrote:
> On Tue Jul 28, 2026 at 5:09 PM CEST, Alexandre Courbot wrote:
>> Great, keeping this commit purely mechanical sounds good to me if you
>> prefer it that way (although one can argue that the refactor itself is
>> also mostly mechanical as the end result shouldn't be more complex).
>
> I don't really see much value in this intermediate change; it's not really less
> invasive than to do the refactor I think, so let's do that.
>
>>>> And I suspect that once this is generalized, `Falcon` won't even need to
>>>> store a reference to the `Bar0` (and potentially poke the I/O of other
>>>> engines) anymore.
>>>>
>>>> Actually I would like to push that even further and replace the
>>>> `pfalcon()` and `pfalcon2()` trait methods by associated constants used
>>>> to construct the projected view in `Falcon::new`, since the projections
>>>> are all constructed the same way, but doing so requires
>>>> `generic_const_exprs`. :/
>
> Yes, that'd be best.
>
>>>> We could make it work by moving the `OFFSET` generic argument of
>>>> `subregion` into a regular argument and enforcing its invariants using
>>>> `build_assert!`, but that would require `subregion` to be
>>>> `#[inline(always)]`. I don't know if there is another trick we can use,
>>>> if not otherwise I guess the trait methods are ok, especially if they
>>>> are only called once in the constructor.
>
> I think this is fine if, as Alex says as well, we expose it as another variant
> of subregion(). (In general, I'd like to avoid introducing more build_assert!()
> if there's not much value though.)
>
> In the nova-core case it would be a specific workaround for generic_const_exprs
> not being stable, so a separate subregion() variant that is specifically
> targeted at this seems fine.
>
>>> This was definitely one option that I have considered, however as `NEW_SIZE`
>>> still needs to be generic so we're not entirely turbofish-free. But if making
>>> `offset` become an effective const parameter helps nova impl, it might make
>>> sense to use `build_assert!` for this.
>
> As mentioned I'd like to avoid additional build_assert!() if not needed, the
> turbofish doesn't hurt too much here.
>
>> Maybe we can have another variant of `subregion` that operates that way,
>> but your call. I don't see any obvious flaw with the current
>> implementation, it's just that the `FalconEngine` methods should not be
>> useful outside of the constructor eventually, so it seems a bit
>> superfluous to have them visible to the whole crate.
>
> I may have a slight preference for a separate subregion() variant for the
> purpose of working around generic_const_exprs, as it probably is a bit closer to
> the final solution, but trait methods are fine with me too.
I am not sure that's the final solution that I want. I want arg-position
const-generics which would syntactically look more similar to `build_assert!`.
Personally I think most issues with `build_assert!` can be fixed by having
lints, which is on my radar.
Best,
Gary
next prev parent reply other threads:[~2026-07-28 18:26 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-21 16:54 [PATCH 00/10] rust: io: make register bases typed and remove relative registers Gary Guo
2026-07-21 16:54 ` [PATCH 01/10] rust: io: register: allow explicit base type specification Gary Guo
2026-07-21 16:58 ` sashiko-bot
2026-07-24 6:38 ` Alexandre Courbot
2026-07-24 13:22 ` Gary Guo
2026-07-27 5:27 ` Eliot Courtney
2026-07-27 8:14 ` Alexandre Courbot
2026-07-28 19:12 ` John Hubbard
2026-07-21 16:54 ` [PATCH 02/10] gpu: nova-core: specify base type for registers Gary Guo
2026-07-21 16:59 ` sashiko-bot
2026-07-28 6:47 ` Alexandre Courbot
2026-07-21 16:54 ` [PATCH 03/10] drm/tyr: " Gary Guo
2026-07-21 17:10 ` sashiko-bot
2026-07-21 16:54 ` [PATCH 04/10] samples: rust: pci: " Gary Guo
2026-07-21 17:03 ` sashiko-bot
2026-07-21 16:54 ` [PATCH 05/10] rust: io: register: make register have a typed base Gary Guo
2026-07-21 17:00 ` sashiko-bot
2026-07-21 16:54 ` [PATCH 06/10] rust: io: add static `cast()` method for views Gary Guo
2026-07-21 17:08 ` sashiko-bot
2026-07-21 16:54 ` [PATCH 07/10] rust: io: add subregion method with compile-time check Gary Guo
2026-07-21 17:05 ` sashiko-bot
2026-07-28 7:21 ` Alexandre Courbot
2026-07-21 16:54 ` [PATCH 08/10] gpu: nova-core: use projection for PFALCON and PFALCON2 registers Gary Guo
2026-07-21 17:00 ` sashiko-bot
2026-07-28 6:45 ` Alexandre Courbot
2026-07-28 10:24 ` Gary Guo
2026-07-28 15:09 ` Alexandre Courbot
2026-07-28 17:01 ` Danilo Krummrich
2026-07-28 18:26 ` Gary Guo [this message]
2026-07-28 18:56 ` Danilo Krummrich
2026-07-28 19:03 ` Gary Guo
2026-07-28 19:30 ` Miguel Ojeda
2026-07-28 20:07 ` Danilo Krummrich
2026-07-29 10:24 ` Gary Guo
2026-07-29 19:28 ` Danilo Krummrich
2026-07-29 19:51 ` Gary Guo
2026-07-21 16:54 ` [PATCH 09/10] gpu: nova-core: convert hshub0 from relative register to projection Gary Guo
2026-07-21 17:18 ` sashiko-bot
2026-07-21 16:54 ` [PATCH 10/10] rust: io: register: remove relative registers Gary Guo
2026-07-21 17:08 ` sashiko-bot
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=DKAEZ4LDA10F.1RFA9JKBGY2CF@garyguo.net \
--to=gary@garyguo.net \
--cc=a.hindborg@kernel.org \
--cc=acourbot@nvidia.com \
--cc=airlied@gmail.com \
--cc=aliceryhl@google.com \
--cc=bhelgaas@google.com \
--cc=bjorn3_gh@protonmail.com \
--cc=boqun@kernel.org \
--cc=dakr@kernel.org \
--cc=daniel.almeida@collabora.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=driver-core@lists.linux.dev \
--cc=kwilczynski@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=lossin@kernel.org \
--cc=nova-gpu@lists.linux.dev \
--cc=ojeda@kernel.org \
--cc=rust-for-linux@vger.kernel.org \
--cc=simona@ffwll.ch \
--cc=tamird@kernel.org \
--cc=tmgross@umich.edu \
--cc=work@onurozkan.dev \
/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.