Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
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
8use crate::driver::TyrDriver;
9
10mod driver;
11mod file;
12mod gem;
13mod gpu;
14mod regs;
15
16kernel::module_platform_driver! {
17 type: TyrDriver,
18 name: "tyr",
19 authors: ["The Tyr driver authors"],
20 description: "Arm Mali Tyr DRM driver",
21 license: "Dual MIT/GPL",
22}