diff options
| author | Alistair Popple <apopple@nvidia.com> | 2025-11-10 22:34:19 +0900 |
|---|---|---|
| committer | Alexandre Courbot <acourbot@nvidia.com> | 2025-11-14 20:25:57 +0900 |
| commit | edcb134264f7db95295a9f0feb7a8b3acde72a08 (patch) | |
| tree | fa72470abe8c3886ffb2e0416e8f70a7206ec8eb /drivers/gpu/nova-core/gsp/cmdq.rs | |
| parent | 4fd4acd973ec6c734e928d19aaa649d4268303a1 (diff) | |
gpu: nova-core: gsp: Add SetSystemInfo command
Add support for sending the SetSystemInfo command, which provides
required hardware information to the GSP and is critical to its
initialization.
Signed-off-by: Alistair Popple <apopple@nvidia.com>
Signed-off-by: Alexandre Courbot <acourbot@nvidia.com>
Message-ID: <20251110-gsp_boot-v9-11-8ae4058e3c0e@nvidia.com>
Diffstat (limited to 'drivers/gpu/nova-core/gsp/cmdq.rs')
| -rw-r--r-- | drivers/gpu/nova-core/gsp/cmdq.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/nova-core/gsp/cmdq.rs b/drivers/gpu/nova-core/gsp/cmdq.rs index 295903c28922..c0f3218f2980 100644 --- a/drivers/gpu/nova-core/gsp/cmdq.rs +++ b/drivers/gpu/nova-core/gsp/cmdq.rs @@ -489,7 +489,6 @@ impl Cmdq { /// written to by its [`CommandToGsp::init_variable_payload`] method. /// /// Error codes returned by the command initializers are propagated as-is. - #[expect(unused)] pub(crate) fn send_command<M>(&mut self, bar: &Bar0, command: M) -> Result where M: CommandToGsp, |