Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. menu "Mali GPU OpenGL device driver"
  2. config MALI400
  3. tristate "Mali support"
  4. depends on m
  5. default m
  6. select FB
  7. ---help---
  8. This enables support for the Mali-300, Mali-400, and Mali-450 GPUs.
  9. To compile this driver as a module, choose M here: the module will be
  10. called mali.
  11. choice
  12. prompt "Mali frequency"
  13. default MALI_CLK_333M
  14. depends on ARCH_MESON6
  15. depends on MALI400
  16. config MALI_CLK_400M
  17. bool "Mali clock 400M"
  18. help
  19. Mali clock set to 400M
  20. config MALI_CLK_333M
  21. bool"Mali clock 333M"
  22. help
  23. Mali clock set to 333M
  24. config MALI_CLK_250M
  25. bool"Mali clock 250M"
  26. help
  27. Mali clock set to 250M
  28. endchoice
  29. config MALI400_DEBUG
  30. bool "Enable debug in Mali driver"
  31. depends on MALI400
  32. ---help---
  33. This enabled extra debug checks and messages in the Mali-300/400/450
  34. driver.
  35. config MALI400_PROFILING
  36. bool "Enable Mali profiling"
  37. depends on MALI400 && TRACEPOINTS
  38. ---help---
  39. This enables gator profiling of Mali GPU events.
  40. config MALI400_GPU_UTILIZATION
  41. bool "Enable Mali GPU utilization tracking"
  42. depends on MALI400
  43. ---help---
  44. This enables gathering and processing of the utilization of Mali GPU.
  45. This data can be used as a basis to change GPU operating frequency.
  46. endmenu