Kconfig 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. #
  2. # Platform drivers
  3. # All drivers here are currently for webcam support
  4. menuconfig V4L_PLATFORM_DRIVERS
  5. bool "V4L platform devices"
  6. depends on MEDIA_CAMERA_SUPPORT
  7. default n
  8. ---help---
  9. Say Y here to enable support for platform-specific V4L drivers.
  10. if V4L_PLATFORM_DRIVERS
  11. source "drivers/media/platform/marvell-ccic/Kconfig"
  12. config VIDEO_VIA_CAMERA
  13. tristate "VIAFB camera controller support"
  14. depends on FB_VIA
  15. select VIDEOBUF_DMA_SG
  16. select VIDEO_OV7670
  17. help
  18. Driver support for the integrated camera controller in VIA
  19. Chrome9 chipsets. Currently only tested on OLPC xo-1.5 systems
  20. with ov7670 sensors.
  21. #
  22. # Platform multimedia device configuration
  23. #
  24. source "drivers/media/platform/davinci/Kconfig"
  25. source "drivers/media/platform/omap/Kconfig"
  26. source "drivers/media/platform/blackfin/Kconfig"
  27. config VIDEO_SH_VOU
  28. tristate "SuperH VOU video output driver"
  29. depends on MEDIA_CAMERA_SUPPORT
  30. depends on VIDEO_DEV && ARCH_SHMOBILE && I2C
  31. select VIDEOBUF_DMA_CONTIG
  32. help
  33. Support for the Video Output Unit (VOU) on SuperH SoCs.
  34. config VIDEO_VIU
  35. tristate "Freescale VIU Video Driver"
  36. depends on VIDEO_V4L2 && PPC_MPC512x
  37. select VIDEOBUF_DMA_CONTIG
  38. default y
  39. ---help---
  40. Support for Freescale VIU video driver. This device captures
  41. video data, or overlays video on DIU frame buffer.
  42. Say Y here if you want to enable VIU device on MPC5121e Rev2+.
  43. In doubt, say N.
  44. config VIDEO_TIMBERDALE
  45. tristate "Support for timberdale Video In/LogiWIN"
  46. depends on VIDEO_V4L2 && I2C && DMADEVICES
  47. select DMA_ENGINE
  48. select TIMB_DMA
  49. select VIDEO_ADV7180
  50. select VIDEOBUF_DMA_CONTIG
  51. ---help---
  52. Add support for the Video In peripherial of the timberdale FPGA.
  53. config VIDEO_VINO
  54. tristate "SGI Vino Video For Linux"
  55. depends on I2C && SGI_IP22 && VIDEO_V4L2
  56. select VIDEO_SAA7191 if MEDIA_SUBDRV_AUTOSELECT
  57. help
  58. Say Y here to build in support for the Vino video input system found
  59. on SGI Indy machines.
  60. config VIDEO_M32R_AR
  61. tristate "AR devices"
  62. depends on M32R && VIDEO_V4L2
  63. ---help---
  64. This is a video4linux driver for the Renesas AR (Artificial Retina)
  65. camera module.
  66. config VIDEO_M32R_AR_M64278
  67. tristate "AR device with color module M64278(VGA)"
  68. depends on PLAT_M32700UT
  69. select VIDEO_M32R_AR
  70. ---help---
  71. This is a video4linux driver for the Renesas AR (Artificial
  72. Retina) with M64278E-800 camera module.
  73. This module supports VGA(640x480 pixels) resolutions.
  74. To compile this driver as a module, choose M here: the
  75. module will be called arv.
  76. config VIDEO_OMAP2
  77. tristate "OMAP2 Camera Capture Interface driver"
  78. depends on VIDEO_DEV && ARCH_OMAP2 && VIDEO_V4L2_INT_DEVICE
  79. select VIDEOBUF_DMA_SG
  80. ---help---
  81. This is a v4l2 driver for the TI OMAP2 camera capture interface
  82. config VIDEO_OMAP3
  83. tristate "OMAP 3 Camera support"
  84. depends on OMAP_IOVMM && VIDEO_V4L2 && I2C && VIDEO_V4L2_SUBDEV_API && ARCH_OMAP3
  85. ---help---
  86. Driver for an OMAP 3 camera controller.
  87. config VIDEO_OMAP3_DEBUG
  88. bool "OMAP 3 Camera debug messages"
  89. depends on VIDEO_OMAP3
  90. ---help---
  91. Enable debug messages on OMAP 3 camera controller driver.
  92. config VIDEO_S3C_CAMIF
  93. tristate "Samsung S3C24XX/S3C64XX SoC Camera Interface driver"
  94. depends on VIDEO_V4L2 && I2C && VIDEO_V4L2_SUBDEV_API
  95. depends on (ARCH_S3C64XX || PLAT_S3C24XX) && PM_RUNTIME
  96. select VIDEOBUF2_DMA_CONTIG
  97. ---help---
  98. This is a v4l2 driver for s3c24xx and s3c64xx SoC series camera
  99. host interface (CAMIF).
  100. To compile this driver as a module, choose M here: the module
  101. will be called s3c-camif.
  102. source "drivers/media/platform/soc_camera/Kconfig"
  103. source "drivers/media/platform/exynos4-is/Kconfig"
  104. source "drivers/media/platform/s5p-tv/Kconfig"
  105. endif # V4L_PLATFORM_DRIVERS
  106. menuconfig V4L_MEM2MEM_DRIVERS
  107. bool "Memory-to-memory multimedia devices"
  108. depends on VIDEO_V4L2
  109. depends on MEDIA_CAMERA_SUPPORT
  110. default n
  111. ---help---
  112. Say Y here to enable selecting drivers for V4L devices that
  113. use system memory for both source and destination buffers, as opposed
  114. to capture and output drivers, which use memory buffers for just
  115. one of those.
  116. if V4L_MEM2MEM_DRIVERS
  117. config VIDEO_CODA
  118. tristate "Chips&Media Coda multi-standard codec IP"
  119. depends on VIDEO_DEV && VIDEO_V4L2 && ARCH_MXC
  120. select SRAM
  121. select VIDEOBUF2_DMA_CONTIG
  122. select V4L2_MEM2MEM_DEV
  123. ---help---
  124. Coda is a range of video codec IPs that supports
  125. H.264, MPEG-4, and other video formats.
  126. config VIDEO_MEM2MEM_DEINTERLACE
  127. tristate "Deinterlace support"
  128. depends on VIDEO_DEV && VIDEO_V4L2 && DMA_ENGINE
  129. select VIDEOBUF2_DMA_CONTIG
  130. select V4L2_MEM2MEM_DEV
  131. help
  132. Generic deinterlacing V4L2 driver.
  133. config VIDEO_SAMSUNG_S5P_G2D
  134. tristate "Samsung S5P and EXYNOS4 G2D 2d graphics accelerator driver"
  135. depends on VIDEO_DEV && VIDEO_V4L2 && (PLAT_S5P || ARCH_EXYNOS)
  136. select VIDEOBUF2_DMA_CONTIG
  137. select V4L2_MEM2MEM_DEV
  138. default n
  139. ---help---
  140. This is a v4l2 driver for Samsung S5P and EXYNOS4 G2D
  141. 2d graphics accelerator.
  142. config VIDEO_SAMSUNG_S5P_JPEG
  143. tristate "Samsung S5P/Exynos4 JPEG codec driver"
  144. depends on VIDEO_DEV && VIDEO_V4L2 && (PLAT_S5P || ARCH_EXYNOS)
  145. select VIDEOBUF2_DMA_CONTIG
  146. select V4L2_MEM2MEM_DEV
  147. ---help---
  148. This is a v4l2 driver for Samsung S5P and EXYNOS4 JPEG codec
  149. config VIDEO_SAMSUNG_S5P_MFC
  150. tristate "Samsung S5P MFC Video Codec"
  151. depends on VIDEO_DEV && VIDEO_V4L2 && (PLAT_S5P || ARCH_EXYNOS)
  152. select VIDEOBUF2_DMA_CONTIG
  153. default n
  154. help
  155. MFC 5.1 and 6.x driver for V4L2
  156. config VIDEO_MX2_EMMAPRP
  157. tristate "MX2 eMMa-PrP support"
  158. depends on VIDEO_DEV && VIDEO_V4L2 && SOC_IMX27
  159. select VIDEOBUF2_DMA_CONTIG
  160. select V4L2_MEM2MEM_DEV
  161. help
  162. MX2X chips have a PrP that can be used to process buffers from
  163. memory to memory. Operations include resizing and format
  164. conversion.
  165. config VIDEO_SAMSUNG_EXYNOS_GSC
  166. tristate "Samsung Exynos G-Scaler driver"
  167. depends on VIDEO_DEV && VIDEO_V4L2 && ARCH_EXYNOS5
  168. select VIDEOBUF2_DMA_CONTIG
  169. select V4L2_MEM2MEM_DEV
  170. help
  171. This is a v4l2 driver for Samsung EXYNOS5 SoC G-Scaler.
  172. config VIDEO_SH_VEU
  173. tristate "SuperH VEU mem2mem video processing driver"
  174. depends on VIDEO_DEV && VIDEO_V4L2 && HAS_DMA
  175. select VIDEOBUF2_DMA_CONTIG
  176. select V4L2_MEM2MEM_DEV
  177. help
  178. Support for the Video Engine Unit (VEU) on SuperH and
  179. SH-Mobile SoCs.
  180. config VIDEO_RENESAS_VSP1
  181. tristate "Renesas VSP1 Video Processing Engine"
  182. depends on VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API && HAS_DMA
  183. select VIDEOBUF2_DMA_CONTIG
  184. ---help---
  185. This is a V4L2 driver for the Renesas VSP1 video processing engine.
  186. To compile this driver as a module, choose M here: the module
  187. will be called vsp1.
  188. config VIDEO_TI_VPE
  189. tristate "TI VPE (Video Processing Engine) driver"
  190. depends on VIDEO_DEV && VIDEO_V4L2 && SOC_DRA7XX
  191. select VIDEOBUF2_DMA_CONTIG
  192. select V4L2_MEM2MEM_DEV
  193. default n
  194. ---help---
  195. Support for the TI VPE(Video Processing Engine) block
  196. found on DRA7XX SoC.
  197. config VIDEO_TI_VPE_DEBUG
  198. bool "VPE debug messages"
  199. depends on VIDEO_TI_VPE
  200. ---help---
  201. Enable debug messages on VPE driver.
  202. endif # V4L_MEM2MEM_DRIVERS
  203. menuconfig V4L_TEST_DRIVERS
  204. bool "Media test drivers"
  205. depends on MEDIA_CAMERA_SUPPORT
  206. if V4L_TEST_DRIVERS
  207. config VIDEO_VIVI
  208. tristate "Virtual Video Driver"
  209. depends on VIDEO_DEV && VIDEO_V4L2 && !SPARC32 && !SPARC64
  210. select FONT_SUPPORT
  211. select FONT_8x16
  212. select VIDEOBUF2_VMALLOC
  213. default n
  214. ---help---
  215. Enables a virtual video driver. This device shows a color bar
  216. and a timestamp, as a real device would generate by using V4L2
  217. api.
  218. Say Y here if you want to test video apps or debug V4L devices.
  219. In doubt, say N.
  220. config VIDEO_MEM2MEM_TESTDEV
  221. tristate "Virtual test device for mem2mem framework"
  222. depends on VIDEO_DEV && VIDEO_V4L2
  223. select VIDEOBUF2_VMALLOC
  224. select V4L2_MEM2MEM_DEV
  225. default n
  226. ---help---
  227. This is a virtual test device for the memory-to-memory driver
  228. framework.
  229. endif #V4L_TEST_DRIVERS