mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-30 08:45:18 -04:00
Currently Nova code uses `&'a Bar0` a lot. This is `&'a Mmio`, where `Mmio` represents an owned MMIO region; this type only exists as a target for `Deref` so `Bar` and `IoMem` can share code and should be avoided to be named directly. The upcoming I/O projection series would make `Io` trait much simpler to implement, and thus the owned MMIO type would be removed in favour of direct `Io` implementation on `Bar` and `IoMem`. Add lifetime parameter to `Bar0<'a>` and change it to be alias of `&'a pci::Bar<'a, ..>`. This also prepares Nova core so that when I/O projection series land, this could be changed to using a MMIO view type directly which avoids double indirection. Signed-off-by: Gary Guo <gary@garyguo.net> Acked-by: Alexandre Courbot <acourbot@nvidia.com> Reviewed-by: Eliot Courtney <ecourtney@nvidia.com> Link: https://patch.msgid.link/20260602170416.2268531-1-gary@kernel.org [ Rebase onto latest drm-rust-next (Blackwell enablement). - Danilo ] Signed-off-by: Danilo Krummrich <dakr@kernel.org>
40 lines
945 B
Rust
40 lines
945 B
Rust
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
use core::ops::Range;
|
|
|
|
use kernel::{
|
|
dma::DmaMask,
|
|
prelude::*, //
|
|
};
|
|
|
|
use crate::{
|
|
driver::Bar0,
|
|
gpu::{
|
|
Architecture,
|
|
Chipset, //
|
|
},
|
|
};
|
|
|
|
mod gh100;
|
|
mod tu102;
|
|
|
|
pub(crate) trait GpuHal {
|
|
/// Waits for GFW_BOOT completion if required by this hardware family.
|
|
fn wait_gfw_boot_completion(&self, bar: Bar0<'_>) -> Result;
|
|
|
|
/// Returns the DMA mask for the current architecture.
|
|
fn dma_mask(&self) -> DmaMask;
|
|
|
|
/// Returns the address range of the PCI config mirror space.
|
|
fn pci_config_mirror_range(&self) -> Range<u32>;
|
|
}
|
|
|
|
pub(super) fn gpu_hal(chipset: Chipset) -> &'static dyn GpuHal {
|
|
match chipset.arch() {
|
|
Architecture::Turing | Architecture::Ampere | Architecture::Ada => tu102::TU102_HAL,
|
|
Architecture::Hopper | Architecture::BlackwellGB10x | Architecture::BlackwellGB20x => {
|
|
gh100::GH100_HAL
|
|
}
|
|
}
|
|
}
|