mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-07-23 19:08:15 -04:00
Generalize Registration<T> to Registration<F: ForLt> and Device::registration_data<F: ForLt>() to return Pin<&F::Of<'_>>. The stored 'static lifetime is shortened to the borrow lifetime of &self via ForLt::cast_ref; ForLt's covariance guarantee makes this sound. Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Reviewed-by: Alexandre Courbot <acourbot@nvidia.com> Reviewed-by: Eliot Courtney <ecourtney@nvidia.com> Reviewed-by: Gary Guo <gary@garyguo.net> Link: https://patch.msgid.link/20260525202921.124698-24-dakr@kernel.org [ Use PhantomData<F::Of<'a>> instead of PhantomData<(fn(&'a ()) -> &'a (), F)>], which also gets us rid of #[allow(clippy::type_complexity)]. - Danilo ] Signed-off-by: Danilo Krummrich <dakr@kernel.org>
123 lines
3.5 KiB
Rust
123 lines
3.5 KiB
Rust
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
use kernel::{
|
|
auxiliary,
|
|
device::Core,
|
|
dma::Device,
|
|
dma::DmaMask,
|
|
pci,
|
|
pci::{
|
|
Class,
|
|
ClassMask,
|
|
Vendor, //
|
|
},
|
|
prelude::*,
|
|
sizes::SZ_16M,
|
|
sync::{
|
|
atomic::{
|
|
Atomic,
|
|
Relaxed, //
|
|
},
|
|
Arc,
|
|
},
|
|
types::ForLt,
|
|
};
|
|
|
|
use crate::gpu::Gpu;
|
|
|
|
/// Counter for generating unique auxiliary device IDs.
|
|
static AUXILIARY_ID_COUNTER: Atomic<u32> = Atomic::new(0);
|
|
|
|
#[pin_data]
|
|
pub(crate) struct NovaCore<'bound> {
|
|
#[pin]
|
|
pub(crate) gpu: Gpu,
|
|
#[allow(clippy::type_complexity)]
|
|
_reg: auxiliary::Registration<'bound, ForLt!(())>,
|
|
}
|
|
|
|
pub(crate) struct NovaCoreDriver;
|
|
|
|
const BAR0_SIZE: usize = SZ_16M;
|
|
|
|
// For now we only support Ampere which can use up to 47-bit DMA addresses.
|
|
//
|
|
// TODO: Add an abstraction for this to support newer GPUs which may support
|
|
// larger DMA addresses. Limiting these GPUs to smaller address widths won't
|
|
// have any adverse affects, unless installed on systems which require larger
|
|
// DMA addresses. These systems should be quite rare.
|
|
const GPU_DMA_BITS: u32 = 47;
|
|
|
|
pub(crate) type Bar0 = pci::Bar<'static, BAR0_SIZE>;
|
|
|
|
kernel::pci_device_table!(
|
|
PCI_TABLE,
|
|
MODULE_PCI_TABLE,
|
|
<NovaCoreDriver as pci::Driver>::IdInfo,
|
|
[
|
|
// Modern NVIDIA GPUs will show up as either VGA or 3D controllers.
|
|
(
|
|
pci::DeviceId::from_class_and_vendor(
|
|
Class::DISPLAY_VGA,
|
|
ClassMask::ClassSubclass,
|
|
Vendor::NVIDIA
|
|
),
|
|
()
|
|
),
|
|
(
|
|
pci::DeviceId::from_class_and_vendor(
|
|
Class::DISPLAY_3D,
|
|
ClassMask::ClassSubclass,
|
|
Vendor::NVIDIA
|
|
),
|
|
()
|
|
),
|
|
]
|
|
);
|
|
|
|
impl pci::Driver for NovaCoreDriver {
|
|
type IdInfo = ();
|
|
type Data<'bound> = NovaCore<'bound>;
|
|
const ID_TABLE: pci::IdTable<Self::IdInfo> = &PCI_TABLE;
|
|
|
|
fn probe<'bound>(
|
|
pdev: &'bound pci::Device<Core<'_>>,
|
|
_info: &'bound Self::IdInfo,
|
|
) -> impl PinInit<Self::Data<'bound>, Error> + 'bound {
|
|
pin_init::pin_init_scope(move || {
|
|
dev_dbg!(pdev, "Probe Nova Core GPU driver.\n");
|
|
|
|
pdev.enable_device_mem()?;
|
|
pdev.set_master();
|
|
|
|
// SAFETY: No concurrent DMA allocations or mappings can be made because
|
|
// the device is still being probed and therefore isn't being used by
|
|
// other threads of execution.
|
|
unsafe { pdev.dma_set_mask_and_coherent(DmaMask::new::<GPU_DMA_BITS>())? };
|
|
|
|
let bar = Arc::new(
|
|
pdev.iomap_region_sized::<BAR0_SIZE>(0, c"nova-core/bar0")?
|
|
.into_devres()?,
|
|
GFP_KERNEL,
|
|
)?;
|
|
|
|
Ok(try_pin_init!(NovaCore {
|
|
gpu <- Gpu::new(pdev, bar.clone(), bar.access(pdev.as_ref())?),
|
|
_reg: auxiliary::Registration::new(
|
|
pdev.as_ref(),
|
|
c"nova-drm",
|
|
// TODO[XARR]: Use XArray or perhaps IDA for proper ID allocation/recycling. For
|
|
// now, use a simple atomic counter that never recycles IDs.
|
|
AUXILIARY_ID_COUNTER.fetch_add(1, Relaxed),
|
|
crate::MODULE_NAME,
|
|
(),
|
|
)?,
|
|
}))
|
|
})
|
|
}
|
|
|
|
fn unbind<'bound>(pdev: &'bound pci::Device<Core<'_>>, this: Pin<&Self::Data<'bound>>) {
|
|
this.gpu.unbind(pdev.as_ref());
|
|
}
|
|
}
|