tyr.rs 497 B

12345678910111213141516171819202122
  1. // SPDX-License-Identifier: GPL-2.0 or MIT
  2. //! Arm Mali Tyr DRM driver.
  3. //!
  4. //! The name "Tyr" is inspired by Norse mythology, reflecting Arm's tradition of
  5. //! naming their GPUs after Nordic mythological figures and places.
  6. use crate::driver::TyrDriver;
  7. mod driver;
  8. mod file;
  9. mod gem;
  10. mod gpu;
  11. mod regs;
  12. kernel::module_platform_driver! {
  13. type: TyrDriver,
  14. name: "tyr",
  15. authors: ["The Tyr driver authors"],
  16. description: "Arm Mali Tyr DRM driver",
  17. license: "Dual MIT/GPL",
  18. }