Kconfig 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. config DRM_ROCKCHIP
  2. tristate "DRM Support for Rockchip"
  3. depends on DRM && ROCKCHIP_IOMMU
  4. select DRM_GEM_CMA_HELPER
  5. select DRM_KMS_HELPER
  6. select DRM_PANEL
  7. select VIDEOMODE_HELPERS
  8. select DRM_ANALOGIX_DP if ROCKCHIP_ANALOGIX_DP
  9. select DRM_DW_HDMI if ROCKCHIP_DW_HDMI
  10. select DRM_MIPI_DSI if ROCKCHIP_DW_MIPI_DSI
  11. select SND_SOC_HDMI_CODEC if ROCKCHIP_CDN_DP && SND_SOC
  12. help
  13. Choose this option if you have a Rockchip soc chipset.
  14. This driver provides kernel mode setting and buffer
  15. management to userspace. This driver does not provide
  16. 2D or 3D acceleration; acceleration is performed by other
  17. IP found on the SoC.
  18. if DRM_ROCKCHIP
  19. config ROCKCHIP_ANALOGIX_DP
  20. bool "Rockchip specific extensions for Analogix DP driver"
  21. help
  22. This selects support for Rockchip SoC specific extensions
  23. for the Analogix Core DP driver. If you want to enable DP
  24. on RK3288 based SoC, you should selet this option.
  25. config ROCKCHIP_CDN_DP
  26. bool "Rockchip cdn DP"
  27. depends on EXTCON=y || (EXTCON=m && DRM_ROCKCHIP=m)
  28. help
  29. This selects support for Rockchip SoC specific extensions
  30. for the cdn DP driver. If you want to enable Dp on
  31. RK3399 based SoC, you should select this
  32. option.
  33. config ROCKCHIP_DW_HDMI
  34. bool "Rockchip specific extensions for Synopsys DW HDMI"
  35. help
  36. This selects support for Rockchip SoC specific extensions
  37. for the Synopsys DesignWare HDMI driver. If you want to
  38. enable HDMI on RK3288 based SoC, you should selet this
  39. option.
  40. config ROCKCHIP_DW_MIPI_DSI
  41. bool "Rockchip specific extensions for Synopsys DW MIPI DSI"
  42. help
  43. This selects support for Rockchip SoC specific extensions
  44. for the Synopsys DesignWare HDMI driver. If you want to
  45. enable MIPI DSI on RK3288 based SoC, you should selet this
  46. option.
  47. config ROCKCHIP_INNO_HDMI
  48. bool "Rockchip specific extensions for Innosilicon HDMI"
  49. help
  50. This selects support for Rockchip SoC specific extensions
  51. for the Innosilicon HDMI driver. If you want to enable
  52. HDMI on RK3036 based SoC, you should select this option.
  53. config ROCKCHIP_LVDS
  54. bool "Rockchip LVDS support"
  55. depends on DRM_ROCKCHIP
  56. depends on PINCTRL && OF
  57. help
  58. Choose this option to enable support for Rockchip LVDS controllers.
  59. Rockchip rk3288 SoC has LVDS TX Controller can be used, and it
  60. support LVDS, rgb, dual LVDS output mode. say Y to enable its
  61. driver.
  62. endif