From: kernel test robot <lkp@intel.com>
To: Timur Tabi <ttabi@nvidia.com>, Danilo Krummrich <dakr@kernel.org>,
Alexandre Courbot <acourbot@nvidia.com>,
Joel Fernandes <joelagnelf@nvidia.com>,
John Hubbard <jhubbard@nvidia.com>,
nouveau@lists.freedesktop.org, rust-for-linux@vger.kernel.org
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [PATCH v5 11/11] gpu: nova-core: add PIO support for loading firmware images
Date: Sat, 3 Jan 2026 13:53:34 +0100 [thread overview]
Message-ID: <202601031330.EOufCyjz-lkp@intel.com> (raw)
In-Reply-To: <20260103045934.64521-12-ttabi@nvidia.com>
Hi Timur,
kernel test robot noticed the following build errors:
[auto build test ERROR on 7acc70476f14661149774ab88d3fe23d83ba4249]
url: https://github.com/intel-lab-lkp/linux/commits/Timur-Tabi/gpu-nova-core-rename-Imem-to-ImemSecure/20260103-130228
base: 7acc70476f14661149774ab88d3fe23d83ba4249
patch link: https://lore.kernel.org/r/20260103045934.64521-12-ttabi%40nvidia.com
patch subject: [PATCH v5 11/11] gpu: nova-core: add PIO support for loading firmware images
config: x86_64-rhel-9.4-rust (https://download.01.org/0day-ci/archive/20260103/202601031330.EOufCyjz-lkp@intel.com/config)
compiler: clang version 20.1.8 (https://github.com/llvm/llvm-project 87f0227cb60147a26a1eeb4fb06e3b505e9c7261)
rustc: rustc 1.88.0 (6b00bc388 2025-06-23)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260103/202601031330.EOufCyjz-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202601031330.EOufCyjz-lkp@intel.com/
All errors (new ones prefixed by >>):
PATH=/opt/cross/clang-20/bin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
INFO PATH=/opt/cross/rustc-1.88.0-bindgen-0.72.1/cargo/bin:/opt/cross/clang-20/bin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
/usr/bin/timeout -k 100 12h /usr/bin/make KCFLAGS= -fno-crash-diagnostics -Wno-error=return-type -Wreturn-type -funsigned-char -Wundef W=1 --keep-going LLVM=1 -j32 -C source O=/kbuild/obj/consumer/x86_64-rhel-9.4-rust ARCH=x86_64 SHELL=/bin/bash rustfmtcheck
make: Entering directory '/kbuild/src/consumer'
make[1]: Entering directory '/kbuild/obj/consumer/x86_64-rhel-9.4-rust'
>> Diff in drivers/gpu/nova-core/falcon/hal/ga102.rs:13:
use crate::{
driver::Bar0,
falcon::{
+ hal::LoadMethod,
Falcon,
FalconBromParams,
FalconEngine,
Diff in drivers/gpu/nova-core/falcon/hal/ga102.rs:19:
FalconModSelAlgo,
- hal::LoadMethod,
PeregrineCoreSelect, //
},
regs,
>> Diff in drivers/gpu/nova-core/falcon/hal/tu102.rs:12:
use crate::{
driver::Bar0,
falcon::{
+ hal::LoadMethod, //
Falcon,
FalconBromParams,
FalconEngine,
Diff in drivers/gpu/nova-core/falcon/hal/tu102.rs:18:
- hal::LoadMethod, //
},
regs, //
};
Diff in drivers/gpu/nova-core/falcon.rs:674:
/// Perform a DMA load into `IMEM` and `DMEM` of `fw`, and prepare the falcon to run it.
pub(crate) fn dma_load<F: FalconFirmware<Target = E>>(&self, bar: &Bar0, fw: &F) -> Result {
-
// The Non-Secure section only exists on firmware used by Turing and GA100, and
// those platforms do not use DMA.
if fw.imem_ns_load_params().is_some() {
>> Diff in drivers/gpu/nova-core/firmware/fwsec.rs:516:
// console error message on other platforms, only try to load it if it's
// supposed to be there.
let gbl_fw = if chipset < Chipset::GA102 {
- Some(super::request_firmware(dev, chipset, "gen_bootloader", FIRMWARE_VERSION)?)
+ Some(super::request_firmware(
+ dev,
+ chipset,
+ "gen_bootloader",
+ FIRMWARE_VERSION,
+ )?)
} else {
None
};
>> Diff in drivers/gpu/nova-core/firmware/fwsec.rs:516:
// console error message on other platforms, only try to load it if it's
// supposed to be there.
let gbl_fw = if chipset < Chipset::GA102 {
- Some(super::request_firmware(dev, chipset, "gen_bootloader", FIRMWARE_VERSION)?)
+ Some(super::request_firmware(
+ dev,
+ chipset,
+ "gen_bootloader",
+ FIRMWARE_VERSION,
+ )?)
} else {
None
};
>> Diff in drivers/gpu/nova-core/falcon/hal/ga102.rs:13:
use crate::{
driver::Bar0,
falcon::{
+ hal::LoadMethod,
Falcon,
FalconBromParams,
FalconEngine,
Diff in drivers/gpu/nova-core/falcon/hal/ga102.rs:19:
FalconModSelAlgo,
- hal::LoadMethod,
PeregrineCoreSelect, //
},
regs,
>> Diff in drivers/gpu/nova-core/falcon/hal/tu102.rs:12:
use crate::{
driver::Bar0,
falcon::{
+ hal::LoadMethod, //
Falcon,
FalconBromParams,
FalconEngine,
Diff in drivers/gpu/nova-core/falcon/hal/tu102.rs:18:
- hal::LoadMethod, //
},
regs, //
};
Diff in drivers/gpu/nova-core/falcon.rs:674:
/// Perform a DMA load into `IMEM` and `DMEM` of `fw`, and prepare the falcon to run it.
pub(crate) fn dma_load<F: FalconFirmware<Target = E>>(&self, bar: &Bar0, fw: &F) -> Result {
-
// The Non-Secure section only exists on firmware used by Turing and GA100, and
// those platforms do not use DMA.
if fw.imem_ns_load_params().is_some() {
>> Diff in drivers/gpu/nova-core/firmware/fwsec.rs:516:
// console error message on other platforms, only try to load it if it's
// supposed to be there.
let gbl_fw = if chipset < Chipset::GA102 {
- Some(super::request_firmware(dev, chipset, "gen_bootloader", FIRMWARE_VERSION)?)
+ Some(super::request_firmware(
+ dev,
+ chipset,
+ "gen_bootloader",
+ FIRMWARE_VERSION,
+ )?)
} else {
None
};
>> Diff in drivers/gpu/nova-core/falcon/hal/ga102.rs:13:
use crate::{
driver::Bar0,
falcon::{
+ hal::LoadMethod,
Falcon,
FalconBromParams,
FalconEngine,
Diff in drivers/gpu/nova-core/falcon/hal/ga102.rs:19:
FalconModSelAlgo,
- hal::LoadMethod,
PeregrineCoreSelect, //
},
regs,
>> Diff in drivers/gpu/nova-core/falcon/hal/tu102.rs:12:
use crate::{
driver::Bar0,
falcon::{
+ hal::LoadMethod, //
Falcon,
FalconBromParams,
FalconEngine,
Diff in drivers/gpu/nova-core/falcon/hal/tu102.rs:18:
- hal::LoadMethod, //
},
regs, //
};
>> Diff in drivers/gpu/nova-core/falcon/hal/ga102.rs:13:
use crate::{
driver::Bar0,
falcon::{
+ hal::LoadMethod,
Falcon,
FalconBromParams,
FalconEngine,
Diff in drivers/gpu/nova-core/falcon/hal/ga102.rs:19:
FalconModSelAlgo,
- hal::LoadMethod,
PeregrineCoreSelect, //
},
regs,
>> Diff in drivers/gpu/nova-core/falcon/hal/tu102.rs:12:
use crate::{
driver::Bar0,
falcon::{
+ hal::LoadMethod, //
Falcon,
FalconBromParams,
FalconEngine,
Diff in drivers/gpu/nova-core/falcon/hal/tu102.rs:18:
- hal::LoadMethod, //
},
regs, //
};
make[2]: *** [Makefile:1871: rustfmt] Error 123
make[2]: Target 'rustfmtcheck' not remade because of errors.
make[1]: Leaving directory '/kbuild/obj/consumer/x86_64-rhel-9.4-rust'
make[1]: *** [Makefile:248: __sub-make] Error 2
make[1]: Target 'rustfmtcheck' not remade because of errors.
make: *** [Makefile:248: __sub-make] Error 2
make: Target 'rustfmtcheck' not remade because of errors.
make: Leaving directory '/kbuild/src/consumer'
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2026-01-03 12:54 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-03 4:59 [PATCH v5 00/11] gpu: nova-core: add Turing support Timur Tabi
2026-01-03 4:59 ` [PATCH v5 01/11] gpu: nova-core: rename Imem to ImemSecure Timur Tabi
2026-01-03 4:59 ` [PATCH v5 02/11] gpu: nova-core: add ImemNonSecure section infrastructure Timur Tabi
2026-01-03 4:59 ` [PATCH v5 03/11] gpu: nova-core: support header parsing on Turing/GA100 Timur Tabi
2026-01-03 4:59 ` [PATCH v5 04/11] gpu: nova-core: add support for Turing/GA100 fwsignature Timur Tabi
2026-01-03 4:59 ` [PATCH v5 05/11] gpu: nova-core: add NV_PFALCON_FALCON_DMATRFCMD::with_falcon_mem() Timur Tabi
2026-01-03 4:59 ` [PATCH v5 06/11] gpu: nova-core: move some functions into the HAL Timur Tabi
2026-01-03 4:59 ` [PATCH v5 07/11] gpu: nova-core: Add basic Turing HAL Timur Tabi
2026-01-03 4:59 ` [PATCH v5 08/11] gpu: nova-core: add Falcon HAL method supports_dma() Timur Tabi
2026-01-09 0:25 ` John Hubbard
2026-01-03 4:59 ` [PATCH v5 09/11] gpu: nova-core: add FalconUCodeDescV2 support Timur Tabi
2026-01-09 2:53 ` John Hubbard
2026-01-09 18:11 ` Timur Tabi
2026-01-09 18:59 ` John Hubbard
2026-01-09 19:13 ` John Hubbard
2026-01-13 1:08 ` John Hubbard
2026-01-13 0:00 ` Joel Fernandes
2026-01-14 0:56 ` Timur Tabi
2026-01-14 0:59 ` Joel Fernandes
2026-01-03 4:59 ` [PATCH v5 10/11] gpu: nova-core: align LibosMemoryRegionInitArgument size to page size Timur Tabi
2026-01-09 3:15 ` John Hubbard
2026-01-03 4:59 ` [PATCH v5 11/11] gpu: nova-core: add PIO support for loading firmware images Timur Tabi
2026-01-03 12:53 ` kernel test robot [this message]
2026-01-05 23:44 ` [PATCH v5 00/11] gpu: nova-core: add Turing support Timur Tabi
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=202601031330.EOufCyjz-lkp@intel.com \
--to=lkp@intel.com \
--cc=acourbot@nvidia.com \
--cc=dakr@kernel.org \
--cc=jhubbard@nvidia.com \
--cc=joelagnelf@nvidia.com \
--cc=nouveau@lists.freedesktop.org \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=rust-for-linux@vger.kernel.org \
--cc=ttabi@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