Kconfig 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. select QCOM_SCM
  12. default y
  13. help
  14. DRM/KMS driver for MSM/snapdragon.
  15. config DRM_MSM_FBDEV
  16. bool "Enable legacy fbdev support for MSM modesetting driver"
  17. depends on DRM_MSM
  18. select DRM_KMS_FB_HELPER
  19. select FB_SYS_FILLRECT
  20. select FB_SYS_COPYAREA
  21. select FB_SYS_IMAGEBLIT
  22. select FB_SYS_FOPS
  23. default y
  24. help
  25. Choose this option if you have a need for the legacy fbdev
  26. support. Note that this support also provide the linux console
  27. support on top of the MSM modesetting driver.
  28. config DRM_MSM_REGISTER_LOGGING
  29. bool "MSM DRM register logging"
  30. depends on DRM_MSM
  31. default n
  32. help
  33. Compile in support for logging register reads/writes in a format
  34. that can be parsed by envytools demsm tool. If enabled, register
  35. logging can be switched on via msm.reglog=y module param.
  36. config DRM_MSM_DSI
  37. bool "Enable DSI support in MSM DRM driver"
  38. depends on DRM_MSM
  39. select DRM_PANEL
  40. select DRM_MIPI_DSI
  41. default y
  42. help
  43. Choose this option if you have a need for MIPI DSI connector
  44. support.
  45. config DRM_MSM_DSI_PLL
  46. bool "Enable DSI PLL driver in MSM DRM"
  47. depends on DRM_MSM_DSI && COMMON_CLK
  48. default y
  49. help
  50. Choose this option to enable DSI PLL driver which provides DSI
  51. source clocks under common clock framework.
  52. config DRM_MSM_DSI_28NM_PHY
  53. bool "Enable DSI 28nm PHY driver in MSM DRM"
  54. depends on DRM_MSM_DSI
  55. default y
  56. help
  57. Choose this option if the 28nm DSI PHY is used on the platform.
  58. config DRM_MSM_DSI_20NM_PHY
  59. bool "Enable DSI 20nm PHY driver in MSM DRM"
  60. depends on DRM_MSM_DSI
  61. default y
  62. help
  63. Choose this option if the 20nm DSI PHY is used on the platform.