Kconfig 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. # drivers/media/platform/s5p-tv/Kconfig
  2. #
  3. # Copyright (c) 2010-2011 Samsung Electronics Co., Ltd.
  4. # http://www.samsung.com/
  5. # Tomasz Stanislawski <t.stanislaws@samsung.com>
  6. #
  7. # Licensed under GPL
  8. config VIDEO_SAMSUNG_S5P_TV
  9. bool "Samsung TV driver for S5P platform"
  10. depends on PM
  11. depends on ARCH_S5PV210 || ARCH_EXYNOS || COMPILE_TEST
  12. default n
  13. ---help---
  14. Say Y here to enable selecting the TV output devices for
  15. Samsung S5P platform.
  16. if VIDEO_SAMSUNG_S5P_TV
  17. config VIDEO_SAMSUNG_S5P_HDMI
  18. tristate "Samsung HDMI Driver"
  19. depends on VIDEO_V4L2
  20. depends on I2C
  21. depends on VIDEO_SAMSUNG_S5P_TV
  22. select VIDEO_SAMSUNG_S5P_HDMIPHY
  23. help
  24. Say Y here if you want support for the HDMI output
  25. interface in S5P Samsung SoC. The driver can be compiled
  26. as module. It is an auxiliary driver, that exposes a V4L2
  27. subdev for use by other drivers. This driver requires
  28. hdmiphy driver to work correctly.
  29. config VIDEO_SAMSUNG_S5P_HDMI_DEBUG
  30. bool "Enable debug for HDMI Driver"
  31. depends on VIDEO_SAMSUNG_S5P_HDMI
  32. default n
  33. help
  34. Enables debugging for HDMI driver.
  35. config VIDEO_SAMSUNG_S5P_HDMIPHY
  36. tristate "Samsung HDMIPHY Driver"
  37. depends on VIDEO_DEV && VIDEO_V4L2 && I2C
  38. depends on VIDEO_SAMSUNG_S5P_TV
  39. help
  40. Say Y here if you want support for the physical HDMI
  41. interface in S5P Samsung SoC. The driver can be compiled
  42. as module. It is an I2C driver, that exposes a V4L2
  43. subdev for use by other drivers.
  44. config VIDEO_SAMSUNG_S5P_SII9234
  45. tristate "Samsung SII9234 Driver"
  46. depends on VIDEO_DEV && VIDEO_V4L2 && I2C
  47. depends on VIDEO_SAMSUNG_S5P_TV
  48. help
  49. Say Y here if you want support for the MHL interface
  50. in S5P Samsung SoC. The driver can be compiled
  51. as module. It is an I2C driver, that exposes a V4L2
  52. subdev for use by other drivers.
  53. config VIDEO_SAMSUNG_S5P_SDO
  54. tristate "Samsung Analog TV Driver"
  55. depends on VIDEO_DEV && VIDEO_V4L2
  56. depends on VIDEO_SAMSUNG_S5P_TV
  57. help
  58. Say Y here if you want support for the analog TV output
  59. interface in S5P Samsung SoC. The driver can be compiled
  60. as module. It is an auxiliary driver, that exposes a V4L2
  61. subdev for use by other drivers. This driver requires
  62. hdmiphy driver to work correctly.
  63. config VIDEO_SAMSUNG_S5P_MIXER
  64. tristate "Samsung Mixer and Video Processor Driver"
  65. depends on VIDEO_DEV && VIDEO_V4L2
  66. depends on VIDEO_SAMSUNG_S5P_TV
  67. depends on HAS_DMA
  68. select VIDEOBUF2_DMA_CONTIG
  69. help
  70. Say Y here if you want support for the Mixer in Samsung S5P SoCs.
  71. This device produce image data to one of output interfaces.
  72. config VIDEO_SAMSUNG_S5P_MIXER_DEBUG
  73. bool "Enable debug for Mixer Driver"
  74. depends on VIDEO_SAMSUNG_S5P_MIXER
  75. default n
  76. help
  77. Enables debugging for Mixer driver.
  78. endif # VIDEO_SAMSUNG_S5P_TV