xref: /linux/drivers/gpu/nova-core/falcon/sec2.rs (revision 220994d61cebfc04f071d69049127657c7e8191b)
1*69f5cd67SAlexandre Courbot // SPDX-License-Identifier: GPL-2.0
2*69f5cd67SAlexandre Courbot 
3*69f5cd67SAlexandre Courbot use crate::falcon::FalconEngine;
4*69f5cd67SAlexandre Courbot 
5*69f5cd67SAlexandre Courbot /// Type specifying the `Sec2` falcon engine. Cannot be instantiated.
6*69f5cd67SAlexandre Courbot pub(crate) struct Sec2(());
7*69f5cd67SAlexandre Courbot 
8*69f5cd67SAlexandre Courbot impl FalconEngine for Sec2 {
9*69f5cd67SAlexandre Courbot     const BASE: usize = 0x00840000;
10*69f5cd67SAlexandre Courbot }
11