Kconfig 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. config DRM_EXYNOS
  3. tristate "DRM Support for Samsung SoC Exynos Series"
  4. depends on OF && DRM && COMMON_CLK
  5. depends on ARCH_S3C64XX || ARCH_S5PV210 || ARCH_EXYNOS || COMPILE_TEST
  6. depends on MMU
  7. select DRM_DISPLAY_HELPER if DRM_EXYNOS_DP
  8. select DRM_KMS_HELPER
  9. select VIDEOMODE_HELPERS
  10. select FB_DMAMEM_HELPERS if DRM_FBDEV_EMULATION
  11. select SND_SOC_HDMI_CODEC if SND_SOC
  12. help
  13. Choose this option if you have a Samsung SoC Exynos chipset.
  14. If M is selected the module will be called exynosdrm.
  15. if DRM_EXYNOS
  16. comment "CRTCs"
  17. config DRM_EXYNOS_FIMD
  18. bool "FIMD"
  19. depends on !FB_S3C
  20. select MFD_SYSCON
  21. help
  22. Choose this option if you want to use Exynos FIMD for DRM.
  23. config DRM_EXYNOS5433_DECON
  24. bool "DECON on Exynos5433"
  25. help
  26. Choose this option if you want to use Exynos5433 DECON for DRM.
  27. config DRM_EXYNOS7_DECON
  28. bool "DECON on Exynos7"
  29. depends on !FB_S3C
  30. help
  31. Choose this option if you want to use Exynos DECON for DRM.
  32. config DRM_EXYNOS_MIXER
  33. bool "Mixer"
  34. help
  35. Choose this option if you want to use Exynos Mixer for DRM.
  36. config DRM_EXYNOS_VIDI
  37. bool "Virtual Display"
  38. help
  39. Choose this option if you want to use Exynos VIDI for DRM.
  40. comment "Encoders and Bridges"
  41. config DRM_EXYNOS_DPI
  42. bool "Parallel output"
  43. depends on DRM_EXYNOS_FIMD
  44. select DRM_PANEL
  45. default n
  46. help
  47. This enables support for Exynos parallel output.
  48. config DRM_EXYNOS_DSI
  49. bool "MIPI-DSI host"
  50. depends on DRM_EXYNOS_FIMD || DRM_EXYNOS5433_DECON || DRM_EXYNOS7_DECON
  51. select DRM_MIPI_DSI
  52. select DRM_PANEL
  53. select DRM_SAMSUNG_DSIM
  54. default n
  55. help
  56. This enables support for Exynos MIPI-DSI device.
  57. config DRM_EXYNOS_DP
  58. bool "Exynos specific extensions for Analogix DP driver"
  59. depends on DRM_EXYNOS_FIMD || DRM_EXYNOS7_DECON
  60. select DRM_ANALOGIX_DP
  61. select DRM_DISPLAY_DP_HELPER
  62. default DRM_EXYNOS
  63. select DRM_PANEL
  64. help
  65. This enables support for DP device.
  66. config DRM_EXYNOS_HDMI
  67. bool "HDMI"
  68. depends on DRM_EXYNOS_MIXER || DRM_EXYNOS5433_DECON
  69. select CEC_CORE if CEC_NOTIFIER
  70. help
  71. Choose this option if you want to use Exynos HDMI for DRM.
  72. config DRM_EXYNOS_MIC
  73. bool "Mobile Image Compressor"
  74. depends on DRM_EXYNOS5433_DECON
  75. help
  76. Choose this option if you want to use Exynos MIC for DRM.
  77. comment "Sub-drivers"
  78. config DRM_EXYNOS_G2D
  79. bool "G2D"
  80. depends on VIDEO_SAMSUNG_S5P_G2D=n || COMPILE_TEST
  81. help
  82. Choose this option if you want to use Exynos G2D for DRM.
  83. config DRM_EXYNOS_IPP
  84. bool
  85. config DRM_EXYNOS_FIMC
  86. bool "FIMC"
  87. select DRM_EXYNOS_IPP
  88. help
  89. Choose this option if you want to use Exynos FIMC for DRM.
  90. config DRM_EXYNOS_ROTATOR
  91. bool "Rotator"
  92. select DRM_EXYNOS_IPP
  93. help
  94. Choose this option if you want to use Exynos Rotator for DRM.
  95. config DRM_EXYNOS_SCALER
  96. bool "Scaler"
  97. select DRM_EXYNOS_IPP
  98. help
  99. Choose this option if you want to use Exynos Scaler for DRM.
  100. config DRM_EXYNOS_GSC
  101. bool "GScaler"
  102. depends on VIDEO_SAMSUNG_EXYNOS_GSC=n || COMPILE_TEST
  103. select DRM_EXYNOS_IPP
  104. help
  105. Choose this option if you want to use Exynos GSC for DRM.
  106. endif