From: "Alexandre Courbot" <acourbot@nvidia.com>
To: "John Hubbard" <jhubbard@nvidia.com>
Cc: "Danilo Krummrich" <dakr@kernel.org>,
"Timur Tabi" <ttabi@nvidia.com>,
"Alistair Popple" <apopple@nvidia.com>,
"Eliot Courtney" <ecourtney@nvidia.com>,
"Zhi Wang" <zhiw@nvidia.com>, "David Airlie" <airlied@gmail.com>,
"Simona Vetter" <simona@ffwll.ch>,
"Bjorn Helgaas" <bhelgaas@google.com>,
"Miguel Ojeda" <ojeda@kernel.org>,
"Alex Gaynor" <alex.gaynor@gmail.com>,
"Boqun Feng" <boqun.feng@gmail.com>,
"Gary Guo" <gary@garyguo.net>,
"Björn Roy Baron" <bjorn3_gh@protonmail.com>,
"Benno Lossin" <lossin@kernel.org>,
"Andreas Hindborg" <a.hindborg@kernel.org>,
"Alice Ryhl" <aliceryhl@google.com>,
"Trevor Gross" <tmgross@umich.edu>,
nova-gpu@lists.linux.dev, LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v4 16/17] gpu: nova-core: add KUnit tests for the interrupt tree and HALs
Date: Mon, 21 Sep 2026 15:47:04 +0900 [thread overview]
Message-ID: <DLKSJVIXKYR9.1JVN5EFQ5FUOC@nvidia.com> (raw)
In-Reply-To: <20260912044400.677097-17-jhubbard@nvidia.com>
On Sat Sep 12, 2026 at 5:43 AM BST, John Hubbard wrote:
<...>
> diff --git a/drivers/gpu/nova-core/falcon/hal.rs b/drivers/gpu/nova-core/falcon/hal.rs
> index 3f1f509eccbd..70bddcaf4266 100644
> --- a/drivers/gpu/nova-core/falcon/hal.rs
> +++ b/drivers/gpu/nova-core/falcon/hal.rs
> @@ -171,3 +171,51 @@ pub(super) fn falcon_hal<E: FalconEngine + 'static>(
>
> Ok(hal)
> }
> +
> +#[kunit_tests(nova_core_falcon_hal)]
> +mod tests {
> + use super::*;
> +
> + /// Turing falcons have no retrigger register. GA100 and every later chipset have it.
> + #[test]
> + fn intr_retrigger_gate_per_arch() {
> + for chipset in [Chipset::TU102, Chipset::TU116] {
> + assert!(!falcon_intr_hal(chipset).has_intr_retrigger());
> + }
> +
> + for chipset in [
> + Chipset::GA100,
> + Chipset::GA102,
> + Chipset::AD102,
> + Chipset::GH100,
> + Chipset::GB100,
> + Chipset::GB202,
> + ] {
> + assert!(falcon_intr_hal(chipset).has_intr_retrigger());
> + }
> + }
> +
> + /// The RISC-V routing offsets change at GA102, so GA100 still uses the Turing ones.
> + #[test]
> + fn riscv_routing_offsets_split_at_ga102() {
> + for chipset in [Chipset::TU102, Chipset::TU116, Chipset::GA100] {
> + assert_eq!(
> + falcon_intr_hal(chipset).riscv_routing(),
> + RiscvRouting::Tu102
> + );
> + }
> +
> + for chipset in [
> + Chipset::GA102,
> + Chipset::AD102,
> + Chipset::GH100,
> + Chipset::GB100,
> + Chipset::GB202,
> + ] {
> + assert_eq!(
> + falcon_intr_hal(chipset).riscv_routing(),
> + RiscvRouting::Ga102
> + );
> + }
> + }
Unfortunately these tests will happily keep passing it we add an
architecture and forget to update the test. And anyway I think we want
to remove `RiscvRouting`, so that leaves us with nothing to test
against.
Which is honestly not much of a problem, since all these tests do it
checking that we did not make a mistake when assigning the HAL of each
chipset. Unit tests are more to ensure that some algorithm performs as
expected, here it's basically a low-value typo check. I think we can do
without such tests.
> +}
> diff --git a/drivers/gpu/nova-core/irq/hal.rs b/drivers/gpu/nova-core/irq/hal.rs
> index ede9a10ccda6..03852918013d 100644
> --- a/drivers/gpu/nova-core/irq/hal.rs
> +++ b/drivers/gpu/nova-core/irq/hal.rs
> @@ -88,3 +88,67 @@ pub(super) fn cpu_interrupt_hal(chipset: Chipset) -> &'static dyn CpuInterruptHa
> }
> }
> }
> +
> +#[kunit_tests(nova_core_gin_hal)]
> +mod tests {
> + use super::*;
> +
> + use crate::gpu::Chipset;
> +
> + /// Turing through Ada implement an 8-leaf tree.
> + #[test]
> + fn pre_hopper_tree_size() {
> + for chipset in [Chipset::TU102, Chipset::GA102, Chipset::AD102] {
> + assert_eq!(cpu_interrupt_hal(chipset).leaf_count(), LeafCount::Eight);
> + }
> + }
> +
> + /// Hopper and later implement a 16-leaf tree.
> + #[test]
> + fn hopper_plus_tree_size() {
> + for chipset in [Chipset::GH100, Chipset::GB100, Chipset::GB202] {
> + assert_eq!(cpu_interrupt_hal(chipset).leaf_count(), LeafCount::Sixteen);
> + }
> + }
Same here, these two tests should be merged into one so we can catch the
case where we add a new architecture and overlook updating the test. But
here again I question their usefulness since they only restate something
that is already clearly laid out in the code.
> +
> + /// MSI rearms through the configuration-space mirror only before Hopper. Hopper and later
> + /// cycle the `TOP` enables of every serviced subtree.
> + #[test]
> + fn msi_rearm_method_per_arch() {
> + for chipset in [Chipset::TU102, Chipset::GA102, Chipset::AD102] {
> + let hal = cpu_interrupt_hal(chipset);
> + assert_eq!(
> + hal.pci_irq_rearm_method(MsiType::Msi),
> + PciIrqRearmMethod::ConfigMirrorEoi
> + );
> + }
> +
> + for chipset in [Chipset::GH100, Chipset::GB100, Chipset::GB202] {
> + let hal = cpu_interrupt_hal(chipset);
> + assert_eq!(
> + hal.pci_irq_rearm_method(MsiType::Msi),
> + PciIrqRearmMethod::TopEnableCycleServiced
> + );
> + }
> + }
> +
> + /// MSI-X rearms one subtree on every architecture, since each subtree has its own table
> + /// entry.
> + #[test]
> + fn msix_rearms_one_subtree_on_every_arch() {
> + for chipset in [
> + Chipset::TU102,
> + Chipset::GA102,
> + Chipset::AD102,
> + Chipset::GH100,
> + Chipset::GB100,
> + Chipset::GB202,
> + ] {
> + let hal = cpu_interrupt_hal(chipset);
> + assert_eq!(
> + hal.pci_irq_rearm_method(MsiType::MsiX),
> + PciIrqRearmMethod::TopEnableCycleSubtree
> + );
> + }
> + }
Same issue here. The rest of the tests look like they are actually
testing functionality, so they are ok to keep.
next prev parent reply other threads:[~2026-09-21 6:47 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-12 4:43 [PATCH v4 00/17] nova-core: GPU interrupt support and GSP event delivery John Hubbard
2026-09-12 4:43 ` [PATCH v4 01/17] rust: pci: declare IrqType and IrqTypes with impl_flags John Hubbard
2026-09-12 4:43 ` [PATCH v4 02/17] rust: sync: completion: add wait_for_completion_timeout() John Hubbard
2026-09-12 4:43 ` [PATCH v4 03/17] gpu: nova-core: add the GIN vector, leaf and subtree types John Hubbard
2026-09-21 6:34 ` Alexandre Courbot
2026-09-12 4:43 ` [PATCH v4 04/17] gpu: nova-core: add the GIN CPU interrupt tree and MSI EOI registers John Hubbard
2026-09-12 4:43 ` [PATCH v4 05/17] gpu: nova-core: add the per-architecture GIN CPU interrupt HAL John Hubbard
2026-09-12 4:43 ` [PATCH v4 06/17] gpu: nova-core: add the GIN interrupt tree and allocate its vectors John Hubbard
2026-09-21 6:35 ` Alexandre Courbot
2026-09-12 4:43 ` [PATCH v4 07/17] gpu: nova-core: wait for GFW boot in probe, not in the Gpu constructor John Hubbard
2026-09-21 6:35 ` Alexandre Courbot
2026-09-12 4:43 ` [PATCH v4 08/17] gpu: nova-core: add an interrupt delivery self-test John Hubbard
2026-09-21 6:35 ` Alexandre Courbot
2026-09-12 4:43 ` [PATCH v4 09/17] gpu: nova-core: log GSP events instead of discarding them John Hubbard
2026-09-12 4:43 ` [PATCH v4 10/17] gpu: nova-core: stop re-parsing a bad GSP message John Hubbard
2026-09-21 6:32 ` Alexandre Courbot
2026-09-12 4:43 ` [PATCH v4 11/17] gpu: nova-core: return ENOMSG for an unmatched " John Hubbard
2026-09-12 4:43 ` [PATCH v4 12/17] gpu: nova-core: bound a GSP wait by a single deadline John Hubbard
2026-09-12 4:43 ` [PATCH v4 13/17] gpu: nova-core: add a GSP message queue drain John Hubbard
2026-09-12 4:43 ` [PATCH v4 14/17] gpu: nova-core: add the falcon interrupt registers and their HAL John Hubbard
2026-09-21 6:37 ` Alexandre Courbot
2026-09-12 4:43 ` [PATCH v4 15/17] gpu: nova-core: service GSP events from the SWGEN0 interrupt John Hubbard
2026-09-21 6:46 ` Alexandre Courbot
2026-09-21 7:20 ` Alexandre Courbot
2026-09-12 4:43 ` [PATCH v4 16/17] gpu: nova-core: add KUnit tests for the interrupt tree and HALs John Hubbard
2026-09-21 6:47 ` Alexandre Courbot [this message]
2026-09-12 4:44 ` [PATCH v4 17/17] gpu: nova-core: document the GIN interrupt controller and GSP events John Hubbard
2026-09-21 6:59 ` [PATCH v4 00/17] nova-core: GPU interrupt support and GSP event delivery Alexandre Courbot
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=DLKSJVIXKYR9.1JVN5EFQ5FUOC@nvidia.com \
--to=acourbot@nvidia.com \
--cc=a.hindborg@kernel.org \
--cc=airlied@gmail.com \
--cc=alex.gaynor@gmail.com \
--cc=aliceryhl@google.com \
--cc=apopple@nvidia.com \
--cc=bhelgaas@google.com \
--cc=bjorn3_gh@protonmail.com \
--cc=boqun.feng@gmail.com \
--cc=dakr@kernel.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=ojeda@kernel.org \
--cc=simona@ffwll.ch \
--cc=tmgross@umich.edu \
--cc=ttabi@nvidia.com \
--cc=zhiw@nvidia.com \
/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
all inboxes | Powered by JetHome®