12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- menu "Mali GPU OpenGL device driver"
- config MALI400
- tristate "Mali support"
- depends on m
- default m
- select FB
- ---help---
- This enables support for the Mali-300, Mali-400, and Mali-450 GPUs.
- To compile this driver as a module, choose M here: the module will be
- called mali.
- choice
- prompt "Mali frequency"
- default MALI_CLK_333M
- depends on ARCH_MESON6
- depends on MALI400
-
- config MALI_CLK_400M
- bool "Mali clock 400M"
- help
- Mali clock set to 400M
- config MALI_CLK_333M
- bool"Mali clock 333M"
- help
- Mali clock set to 333M
- config MALI_CLK_250M
- bool"Mali clock 250M"
- help
- Mali clock set to 250M
- endchoice
- config MALI400_DEBUG
- bool "Enable debug in Mali driver"
- depends on MALI400
- ---help---
- This enabled extra debug checks and messages in the Mali-300/400/450
- driver.
- config MALI400_PROFILING
- bool "Enable Mali profiling"
- depends on MALI400 && TRACEPOINTS
- ---help---
- This enables gator profiling of Mali GPU events.
- config MALI400_GPU_UTILIZATION
- bool "Enable Mali GPU utilization tracking"
- depends on MALI400
- ---help---
- This enables gathering and processing of the utilization of Mali GPU.
- This data can be used as a basis to change GPU operating frequency.
-
- endmenu
|