xref: /linux/drivers/gpu/nova-core/gsp/hal/ga102.rs (revision 3a2c4d55e32ad65efebdb6de44eef3bfa08bb49d)
1 // SPDX-License-Identifier: GPL-2.0
2 // SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
3 
4 use crate::gsp::hal::{
5     tu102::Tu102,
6     GspHal, //
7 };
8 
9 /// The GA102 HAL is like the TU102 one, except it doesn't use the bootloader.
10 const GA102: Tu102 = Tu102 {
11     needs_fwsec_bootloader: false,
12 };
13 
14 pub(super) const GA102_HAL: &dyn GspHal = &GA102;
15