Kconfig 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. config DRM_MSM
  2. tristate "MSM DRM"
  3. depends on DRM
  4. depends on ARCH_QCOM || (ARM && COMPILE_TEST)
  5. depends on OF && COMMON_CLK
  6. select REGULATOR
  7. select DRM_KMS_HELPER
  8. select DRM_PANEL
  9. select SHMEM
  10. select TMPFS
  11. default y
  12. help
  13. DRM/KMS driver for MSM/snapdragon.
  14. config DRM_MSM_FBDEV
  15. bool "Enable legacy fbdev support for MSM modesetting driver"
  16. depends on DRM_MSM
  17. select DRM_KMS_FB_HELPER
  18. select FB_SYS_FILLRECT
  19. select FB_SYS_COPYAREA
  20. select FB_SYS_IMAGEBLIT
  21. select FB_SYS_FOPS
  22. default y
  23. help
  24. Choose this option if you have a need for the legacy fbdev
  25. support. Note that this support also provide the linux console
  26. support on top of the MSM modesetting driver.
  27. config DRM_MSM_REGISTER_LOGGING
  28. bool "MSM DRM register logging"
  29. depends on DRM_MSM
  30. default n
  31. help
  32. Compile in support for logging register reads/writes in a format
  33. that can be parsed by envytools demsm tool. If enabled, register
  34. logging can be switched on via msm.reglog=y module param.
  35. config DRM_MSM_DSI
  36. bool "Enable DSI support in MSM DRM driver"
  37. depends on DRM_MSM
  38. select DRM_PANEL
  39. select DRM_MIPI_DSI
  40. default y
  41. help
  42. Choose this option if you have a need for MIPI DSI connector
  43. support.
  44. config DRM_MSM_DSI_PLL
  45. bool "Enable DSI PLL driver in MSM DRM"
  46. depends on DRM_MSM_DSI && COMMON_CLK
  47. default y
  48. help
  49. Choose this option to enable DSI PLL driver which provides DSI
  50. source clocks under common clock framework.