Kconfig 2.9 KB

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