mirror of
https://github.com/linux-msm/laptops-kernel.git
synced 2026-08-13 14:19:53 -07:00
Add the MCTP (Management Component Transport Protocol) and NVDM (NVIDIA Data Model) wire-format types used for communication between the kernel driver and GPU firmware processors. This includes typed MCTP transport headers, NVDM message headers, and NVDM message type identifiers. Both the FSP boot path and the upcoming GSP RPC message queue share this protocol layer. Signed-off-by: John Hubbard <jhubbard@nvidia.com> Reviewed-by: Eliot Courtney <ecourtney@nvidia.com> Link: https://patch.msgid.link/20260603-b4-blackwell-v13-3-d9f3a06939e0@nvidia.com Signed-off-by: Alexandre Courbot <acourbot@nvidia.com>
80 lines
1.9 KiB
Rust
80 lines
1.9 KiB
Rust
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
//! Nova Core GPU Driver
|
|
|
|
use kernel::{
|
|
debugfs,
|
|
driver::Registration,
|
|
pci,
|
|
prelude::*,
|
|
InPlaceModule, //
|
|
};
|
|
|
|
#[macro_use]
|
|
mod bitfield;
|
|
|
|
mod driver;
|
|
mod falcon;
|
|
mod fb;
|
|
mod firmware;
|
|
mod fsp;
|
|
mod gpu;
|
|
mod gsp;
|
|
mod mctp;
|
|
#[macro_use]
|
|
mod num;
|
|
mod regs;
|
|
mod sbuffer;
|
|
mod vbios;
|
|
|
|
pub(crate) const MODULE_NAME: &core::ffi::CStr = <LocalModule as kernel::ModuleMetadata>::NAME;
|
|
|
|
// TODO: Move this into per-module data once that exists.
|
|
static mut DEBUGFS_ROOT: Option<debugfs::Dir> = None;
|
|
|
|
/// Guard that clears `DEBUGFS_ROOT` when dropped.
|
|
struct DebugfsRootGuard;
|
|
|
|
impl Drop for DebugfsRootGuard {
|
|
fn drop(&mut self) {
|
|
// SAFETY: This guard is dropped after `_driver` (due to field order),
|
|
// so the driver is unregistered and no probe() can be running.
|
|
unsafe { DEBUGFS_ROOT = None };
|
|
}
|
|
}
|
|
|
|
#[pin_data]
|
|
struct NovaCoreModule {
|
|
// Fields are dropped in declaration order, so `_driver` is dropped first,
|
|
// then `_debugfs_guard` clears `DEBUGFS_ROOT`.
|
|
#[pin]
|
|
_driver: Registration<pci::Adapter<driver::NovaCoreDriver>>,
|
|
_debugfs_guard: DebugfsRootGuard,
|
|
}
|
|
|
|
impl InPlaceModule for NovaCoreModule {
|
|
fn init(module: &'static kernel::ThisModule) -> impl PinInit<Self, Error> {
|
|
let dir = debugfs::Dir::new(kernel::c_str!("nova-core"));
|
|
|
|
// SAFETY: We are the only driver code running during init, so there
|
|
// cannot be any concurrent access to `DEBUGFS_ROOT`.
|
|
unsafe { DEBUGFS_ROOT = Some(dir) };
|
|
|
|
try_pin_init!(Self {
|
|
_driver <- Registration::new(MODULE_NAME, module),
|
|
_debugfs_guard: DebugfsRootGuard,
|
|
})
|
|
}
|
|
}
|
|
|
|
module! {
|
|
type: NovaCoreModule,
|
|
name: "nova-core",
|
|
authors: ["Danilo Krummrich"],
|
|
description: "Nova Core GPU driver",
|
|
license: "GPL v2",
|
|
firmware: [],
|
|
}
|
|
|
|
kernel::module_firmware!(firmware::ModInfoBuilder);
|