gpu: nova-core: gsp: enable FSP boot path

Now that all the elements are in place, enable the FSP boot path so
Hopper and Blackwell can boot.

Reviewed-by: Eliot Courtney <ecourtney@nvidia.com>
Link: https://patch.msgid.link/20260603-b4-blackwell-v13-9-d9f3a06939e0@nvidia.com
Signed-off-by: Alexandre Courbot <acourbot@nvidia.com>
This commit is contained in:
Alexandre Courbot 2026-06-03 16:30:26 +09:00
parent c7fea1f709
commit 723bd79ca9

View File

@ -167,7 +167,7 @@ fn boot<'a>(
);
// Wrap the unload bundle into a drop guard so it is automatically run upon failure.
let _unload_guard =
let unload_guard =
BootUnloadGuard::new(gsp, dev, bar, gsp_falcon, sec2_falcon, Some(unload_bundle));
let mut fsp = Fsp::wait_secure_boot(dev, bar, chipset, fsp_fw)?;
@ -184,7 +184,7 @@ fn boot<'a>(
wait_for_gsp_lockdown_release(dev, bar, gsp_falcon, args.boot_params_dma_handle())?;
Err(ENOTSUPP)
Ok(unload_guard)
}
}