Kconfig 2.9 KB

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