summaryrefslogtreecommitdiff
path: root/drivers/gpu/nova-core/gsp/hal/ga102.rs
blob: ceb3eb39d138b3dfc3c18baaca65ce29f75ea6b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: GPL-2.0
// SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.

use crate::gsp::hal::{
    tu102::Tu102,
    GspHal, //
};

/// The GA102 HAL is like the TU102 one, except it doesn't use the bootloader.
const GA102: Tu102 = Tu102 {
    needs_fwsec_bootloader: false,
};

pub(super) const GA102_HAL: &dyn GspHal = &GA102;