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