Kconfig 2.3 KB

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