]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
gpu: nova-core: avoid probing non-display/compute PCI functions
authorJohn Hubbard <jhubbard@nvidia.com>
Fri, 29 Aug 2025 22:36:30 +0000 (15:36 -0700)
committerDanilo Krummrich <dakr@kernel.org>
Mon, 1 Sep 2025 18:10:17 +0000 (20:10 +0200)
commit6783d3b08595e932938a244e97d92cda0c0833a1
tree21a762e64f4a40492b3544c7fc6ca8d8d998a8f7
parentdd3933e9b572aed775fd632ed6124aa67457de72
gpu: nova-core: avoid probing non-display/compute PCI functions

NovaCore has so far been too imprecise about figuring out if .probe()
has found a supported PCI PF (Physical Function). By that I mean:
.probe() sets up BAR0 (which involves a lot of very careful devres and
Device<Bound> details behind the scenes). And then if it is dealing with
a non-supported device such as the .1 audio PF on many GPUs, it fails
out due to an unexpected BAR0 size. We have been fortunate that the BAR0
sizes are different.

Really, we should be filtering on PCI class ID instead. These days I
think we can confidently pick out Nova's supported PF's via PCI class
ID. And if not, then we'll revisit.

The approach here is to filter on "Display VGA" or "Display 3D", which
is how PCI class IDs express "this is a modern GPU's PF".

Cc: Danilo Krummrich <dakr@kernel.org>
Cc: Elle Rhumsaa <elle@weathered-steel.dev>
Reviewed-by: Alexandre Courbot <acourbot@nvidia.com>
Signed-off-by: John Hubbard <jhubbard@nvidia.com>
Link: https://lore.kernel.org/r/20250829223632.144030-5-jhubbard@nvidia.com
Signed-off-by: Danilo Krummrich <dakr@kernel.org>
drivers/gpu/nova-core/driver.rs