xref: /linux/drivers/gpu/drm/tyr/tyr.rs (revision 3a2c4d55e32ad65efebdb6de44eef3bfa08bb49d)
1 // SPDX-License-Identifier: GPL-2.0 or MIT
2 
3 //! Arm Mali Tyr DRM driver.
4 //!
5 //! The name "Tyr" is inspired by Norse mythology, reflecting Arm's tradition of
6 //! naming their GPUs after Nordic mythological figures and places.
7 
8 use crate::driver::TyrPlatformDriver;
9 
10 mod driver;
11 mod file;
12 mod fw;
13 mod gem;
14 mod gpu;
15 mod mmu;
16 mod regs;
17 mod slot;
18 mod vm;
19 
20 kernel::module_platform_driver! {
21     type: TyrPlatformDriver,
22     name: "tyr",
23     authors: ["The Tyr driver authors"],
24     description: "Arm Mali Tyr DRM driver",
25     license: "Dual MIT/GPL",
26 }
27