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::TyrDriver; 9 10 mod driver; 11 mod file; 12 mod gem; 13 mod gpu; 14 mod regs; 15 16 kernel::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 } 23