Kconfig 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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 (PLAT_S5P || ARCH_EXYNOS) && PM_RUNTIME
  11. default n
  12. ---help---
  13. Say Y here to enable selecting the TV output devices for
  14. Samsung S5P platform.
  15. if VIDEO_SAMSUNG_S5P_TV
  16. config VIDEO_SAMSUNG_S5P_HDMI
  17. tristate "Samsung HDMI Driver"
  18. depends on VIDEO_V4L2
  19. depends on VIDEO_SAMSUNG_S5P_TV
  20. select VIDEO_SAMSUNG_S5P_HDMIPHY
  21. help
  22. Say Y here if you want support for the HDMI output
  23. interface in S5P Samsung SoC. The driver can be compiled
  24. as module. It is an auxiliary driver, that exposes a V4L2
  25. subdev for use by other drivers. This driver requires
  26. hdmiphy driver to work correctly.
  27. config VIDEO_SAMSUNG_S5P_HDMI_DEBUG
  28. bool "Enable debug for HDMI Driver"
  29. depends on VIDEO_SAMSUNG_S5P_HDMI
  30. default n
  31. help
  32. Enables debugging for HDMI driver.
  33. config VIDEO_SAMSUNG_S5P_HDMIPHY
  34. tristate "Samsung HDMIPHY Driver"
  35. depends on VIDEO_DEV && VIDEO_V4L2 && I2C
  36. depends on VIDEO_SAMSUNG_S5P_TV
  37. help
  38. Say Y here if you want support for the physical HDMI
  39. interface in S5P Samsung SoC. The driver can be compiled
  40. as module. It is an I2C driver, that exposes a V4L2
  41. subdev for use by other drivers.
  42. config VIDEO_SAMSUNG_S5P_SII9234
  43. tristate "Samsung SII9234 Driver"
  44. depends on VIDEO_DEV && VIDEO_V4L2 && I2C
  45. depends on VIDEO_SAMSUNG_S5P_TV
  46. help
  47. Say Y here if you want support for the MHL interface
  48. in S5P Samsung SoC. The driver can be compiled
  49. as module. It is an I2C driver, that exposes a V4L2
  50. subdev for use by other drivers.
  51. config VIDEO_SAMSUNG_S5P_SDO
  52. tristate "Samsung Analog TV Driver"
  53. depends on VIDEO_DEV && VIDEO_V4L2
  54. depends on VIDEO_SAMSUNG_S5P_TV
  55. help
  56. Say Y here if you want support for the analog TV output
  57. interface in S5P Samsung SoC. The driver can be compiled
  58. as module. It is an auxiliary driver, that exposes a V4L2
  59. subdev for use by other drivers. This driver requires
  60. hdmiphy driver to work correctly.
  61. config VIDEO_SAMSUNG_S5P_MIXER
  62. tristate "Samsung Mixer and Video Processor Driver"
  63. depends on VIDEO_DEV && VIDEO_V4L2
  64. depends on VIDEO_SAMSUNG_S5P_TV
  65. select VIDEOBUF2_DMA_CONTIG
  66. help
  67. Say Y here if you want support for the Mixer in Samsung S5P SoCs.
  68. This device produce image data to one of output interfaces.
  69. config VIDEO_SAMSUNG_S5P_MIXER_DEBUG
  70. bool "Enable debug for Mixer Driver"
  71. depends on VIDEO_SAMSUNG_S5P_MIXER
  72. default n
  73. help
  74. Enables debugging for Mixer driver.
  75. endif # VIDEO_SAMSUNG_S5P_TV