Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/drivers/gpu/nova-core/falcon/sec2.rs
26481 views
1
// SPDX-License-Identifier: GPL-2.0
2
3
use crate::falcon::FalconEngine;
4
5
/// Type specifying the `Sec2` falcon engine. Cannot be instantiated.
6
pub(crate) struct Sec2(());
7
8
impl FalconEngine for Sec2 {
9
const BASE: usize = 0x00840000;
10
}
11
12