On Wed, 2025-12-31 at 11:15 -0800, John Hubbard wrote:
> --- a/drivers/gpu/nova-core/firmware/gsp.rs
> +++ b/drivers/gpu/nova-core/firmware/gsp.rs
> @@ -163,6 +163,9 @@ pub(crate) fn new<'a, 'b>(
> let fw_section = elf::elf64_section(fw.data(),
> ".fwimage").ok_or(EINVAL)?;
>
> let sigs_section = match chipset.arch() {
> + Architecture::Turing if chipset == Chipset::TU116 || chipset ==
> Chipset::TU117 => {
> + ".fwsignature_tu11x"
> + }
> Architecture::Turing => ".fwsignature_tu10x",
> // GA100 uses the same firmware as Turing
> Architecture::Ampere if chipset == Chipset::GA100 =>
> ".fwsignature_tu10x",
>
> You can merge that in somewhere, or let me know if you prefer a formal
> patch from me, whatever is easiest for you.
Interesting, thanks. I will merge it into my patchset.