xref: /linux/drivers/gpu/nova-core/gsp.rs (revision 3e5c9681bf86461d26e9db85eeb9b8cbaa256e6a)
1 // SPDX-License-Identifier: GPL-2.0
2 
3 mod boot;
4 
5 use kernel::prelude::*;
6 
7 /// GSP runtime data.
8 ///
9 /// This is an empty pinned placeholder for now.
10 #[pin_data]
11 pub(crate) struct Gsp {}
12 
13 impl Gsp {
14     pub(crate) fn new() -> impl PinInit<Self> {
15         pin_init!(Self {})
16     }
17 }
18