Kconfig 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. config DRM_SUN4I
  2. tristate "DRM Support for Allwinner A10 Display Engine"
  3. depends on DRM && (ARM || ARM64) && COMMON_CLK
  4. depends on ARCH_SUNXI || COMPILE_TEST
  5. select DRM_GEM_CMA_HELPER
  6. select DRM_KMS_HELPER
  7. select DRM_KMS_CMA_HELPER
  8. select DRM_PANEL
  9. select REGMAP_MMIO
  10. select VIDEOMODE_HELPERS
  11. help
  12. Choose this option if you have an Allwinner SoC with a
  13. Display Engine. If M is selected the module will be called
  14. sun4i-drm.
  15. if DRM_SUN4I
  16. config DRM_SUN4I_HDMI
  17. tristate "Allwinner A10 HDMI Controller Support"
  18. default DRM_SUN4I
  19. help
  20. Choose this option if you have an Allwinner SoC with an HDMI
  21. controller.
  22. config DRM_SUN4I_HDMI_CEC
  23. bool "Allwinner A10 HDMI CEC Support"
  24. depends on DRM_SUN4I_HDMI
  25. select CEC_CORE
  26. select CEC_PIN
  27. help
  28. Choose this option if you have an Allwinner SoC with an HDMI
  29. controller and want to use CEC.
  30. config DRM_SUN4I_BACKEND
  31. tristate "Support for Allwinner A10 Display Engine Backend"
  32. default DRM_SUN4I
  33. help
  34. Choose this option if you have an Allwinner SoC with the
  35. original Allwinner Display Engine, which has a backend to
  36. do some alpha blending and feed graphics to TCON. If M is
  37. selected the module will be called sun4i-backend.
  38. config DRM_SUN6I_DSI
  39. tristate "Allwinner A31 MIPI-DSI Controller Support"
  40. default MACH_SUN8I
  41. select CRC_CCITT
  42. select DRM_MIPI_DSI
  43. help
  44. Choose this option if you want have an Allwinner SoC with
  45. MIPI-DSI support. If M is selected the module will be called
  46. sun6i-dsi
  47. config DRM_SUN8I_DW_HDMI
  48. tristate "Support for Allwinner version of DesignWare HDMI"
  49. depends on DRM_SUN4I
  50. select DRM_DW_HDMI
  51. help
  52. Choose this option if you have an Allwinner SoC with the
  53. DesignWare HDMI controller with custom HDMI PHY. If M is
  54. selected the module will be called sun8i_dw_hdmi.
  55. config DRM_SUN8I_MIXER
  56. tristate "Support for Allwinner Display Engine 2.0 Mixer"
  57. default MACH_SUN8I
  58. help
  59. Choose this option if you have an Allwinner SoC with the
  60. Allwinner Display Engine 2.0, which has a mixer to do some
  61. graphics mixture and feed graphics to TCON, If M is
  62. selected the module will be called sun8i-mixer.
  63. config DRM_SUN8I_TCON_TOP
  64. tristate
  65. default DRM_SUN4I if DRM_SUN8I_MIXER!=n
  66. help
  67. TCON TOP is responsible for configuring display pipeline for
  68. HTMI, TVE and LCD.
  69. endif