From: Timur Tabi <ttabi@nvidia.com>
To: "nouveau@lists.freedesktop.org" <nouveau@lists.freedesktop.org>,
Joel Fernandes <joelagnelf@nvidia.com>,
"dakr@kernel.org" <dakr@kernel.org>,
"lyude@redhat.com" <lyude@redhat.com>,
Alexandre Courbot <acourbot@nvidia.com>,
John Hubbard <jhubbard@nvidia.com>,
"rust-for-linux@vger.kernel.org" <rust-for-linux@vger.kernel.org>
Subject: Re: [PATCH v2 12/13] gpu: nova-core: add PIO support for loading firmware images
Date: Tue, 2 Dec 2025 22:51:18 +0000 [thread overview]
Message-ID: <aba0e260e8a2909c3c66a1aca07574c9192b0dbd.camel@nvidia.com> (raw)
In-Reply-To: <581a1e44-e6a7-4ce1-8254-a92392d80cbd@nvidia.com>
On Tue, 2025-12-02 at 16:23 -0500, Joel Fernandes wrote:
>
>
> On 12/1/2025 6:39 PM, Timur Tabi wrote:
> >
> > +
> > + /// See nvkm_falcon_pio_wr - takes a byte array instead of a FalconFirmware
> > + fn pio_wr_bytes(
> > + &self,
> > + bar: &Bar0,
> > + img: &[u8],
> > + mem_base: u16,
> > + target_mem: FalconMem,
> > + port: u8,
> > + tag: u16
> > + ) {
> > + let port = usize::from(port);
> > +
> > + match target_mem {
> > + FalconMem::ImemSecure | FalconMem::ImemNonSecure => {
> > + regs::NV_PFALCON_FALCON_IMEMC::default()
> > + .set_secure(target_mem == FalconMem::ImemSecure)
> > + .set_aincw(true)
> > + .set_offs(mem_base)
> > + .write(bar, &E::ID, port);
> > +
> > + let mut tag = tag;
> > + for block in img.chunks(256) {
> > + regs::NV_PFALCON_FALCON_IMEMT::default()
> > + .set_tag(tag)
> > + .write(bar, &E::ID, port);
> > + for word in block.chunks(4) {
> > + let w = u32::from_le_bytes(word.try_into().unwrap());
>
> If img.size is not a multiple of 4 bytes, this can panic right?
I think so. I just noticed that I used chunks(4) here and chunks_exact(4) in the Dmem loop below.
I need to make it consistent.
chunks(4) will return &[u8; 3] if the buffer is shy one byte. chunks_exact(4) will simply skip the
last 3 bytes.
The problem is that it is an error for these images to not be a multiple of 4. Such an image is
just not valid.
So it's a lot simpler to just reject these misaligned images. The previous version of this function
did return a Result, maybe I should put that back. It just seems wasteful to test for misalignment
on every pass of the loop.
What we really need is for from_le_bytes() to be less picky about the slice size. If I give it
&[u8; 3], then it should be able to handle that.
> Even if it is unlikely, unwrap() is quite frowned up due to possibility of
> panic. I'd recommend something like the following since the function cannot
> return an error:
>
> let w = if let Ok(bytes) = word.try_into() {
> u32::from_le_bytes(bytes)
> } else {
> // can print a warning here too if needed.
> let mut buf = [0u8; 4];
> buf[..word.len()].copy_from_slice(word);
> u32::from_le_bytes(buf)
> };
Wouldn't it be simpler to use chunks_exact() and then remainder()? That way, we wouldn't need a
test inside the loop?
> Btw, I wish we could encode the slice length constraint in the slice type itself
> (i.e., the slice length ought to be a certain multiple). But I think there's no
> way to do that without introducing a new type.
Wouldn't it be a run-time constraint anyway? With the exception of the BootloaderDmemDescV2 write,
all of the calls to pio_wr_bytes() have lengths only known at runtime.
next prev parent reply other threads:[~2025-12-02 22:51 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-01 23:39 [PATCH v2 00/13] gpu: nova-core: add Turing support Timur Tabi
2025-12-01 23:39 ` [PATCH v2 01/13] gpu: nova-core: rename Imem to ImemSecure Timur Tabi
2025-12-01 23:39 ` [PATCH v2 02/13] gpu: nova-core: add ImemNonSecure section infrastructure Timur Tabi
2025-12-01 23:39 ` [PATCH v2 03/13] gpu: nova-core: support header parsing on Turing/GA100 Timur Tabi
2025-12-01 23:39 ` [PATCH v2 04/13] gpu: nova-core: add support for Turing/GA100 fwsignature Timur Tabi
2025-12-01 23:39 ` [PATCH v2 05/13] gpu: nova-core: add NV_PFALCON_FALCON_DMATRFCMD::with_falcon_mem() Timur Tabi
2025-12-01 23:39 ` [PATCH v2 06/13] gpu: nova-core: add Turing boot registers Timur Tabi
2025-12-01 23:39 ` [PATCH v2 07/13] gpu: nova-core: move some functions into the HAL Timur Tabi
2025-12-01 23:39 ` [PATCH v2 08/13] gpu: nova-core: Add basic Turing HAL Timur Tabi
2025-12-01 23:39 ` [PATCH v2 09/13] gpu: nova-core: add Falcon HAL method supports_dma() Timur Tabi
2025-12-01 23:39 ` [PATCH v2 10/13] gpu: nova-core: add FalconUCodeDescV2 support Timur Tabi
2025-12-01 23:39 ` [PATCH v2 11/13] gpu: nova-core: align LibosMemoryRegionInitArgument size to page size Timur Tabi
2025-12-01 23:39 ` [PATCH v2 12/13] gpu: nova-core: add PIO support for loading firmware images Timur Tabi
2025-12-02 21:23 ` Joel Fernandes
2025-12-02 22:51 ` Timur Tabi [this message]
2025-12-02 23:20 ` Joel Fernandes
2025-12-02 23:40 ` John Hubbard
2025-12-02 23:48 ` Timur Tabi
2025-12-03 0:35 ` John Hubbard
2025-12-03 0:42 ` Timur Tabi
2025-12-03 0:45 ` John Hubbard
2025-12-03 2:14 ` Joel Fernandes
2025-12-03 2:21 ` John Hubbard
2025-12-02 21:28 ` Joel Fernandes
2025-12-01 23:39 ` [PATCH v2 13/13] [RFC] gpu: nova: implement trait object FalconUCodeDescriptor Timur Tabi
2025-12-02 3:00 ` John Hubbard
2025-12-02 2:55 ` [PATCH v2 00/13] gpu: nova-core: add Turing support John Hubbard
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=aba0e260e8a2909c3c66a1aca07574c9192b0dbd.camel@nvidia.com \
--to=ttabi@nvidia.com \
--cc=acourbot@nvidia.com \
--cc=dakr@kernel.org \
--cc=jhubbard@nvidia.com \
--cc=joelagnelf@nvidia.com \
--cc=lyude@redhat.com \
--cc=nouveau@lists.freedesktop.org \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).