Kconfig 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660
  1. #
  2. # Platform drivers
  3. # Most 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 && I2C && HAS_DMA
  31. depends on ARCH_SHMOBILE || COMPILE_TEST
  32. select VIDEOBUF2_DMA_CONTIG
  33. help
  34. Support for the Video Output Unit (VOU) on SuperH SoCs.
  35. config VIDEO_VIU
  36. tristate "Freescale VIU Video Driver"
  37. depends on VIDEO_V4L2 && PPC_MPC512x
  38. select VIDEOBUF_DMA_CONTIG
  39. default y
  40. ---help---
  41. Support for Freescale VIU video driver. This device captures
  42. video data, or overlays video on DIU frame buffer.
  43. Say Y here if you want to enable VIU device on MPC5121e Rev2+.
  44. In doubt, say N.
  45. config VIDEO_M32R_AR
  46. tristate "AR devices"
  47. depends on VIDEO_V4L2
  48. depends on M32R || COMPILE_TEST
  49. ---help---
  50. This is a video4linux driver for the Renesas AR (Artificial Retina)
  51. camera module.
  52. config VIDEO_M32R_AR_M64278
  53. tristate "AR device with color module M64278(VGA)"
  54. depends on PLAT_M32700UT
  55. select VIDEO_M32R_AR
  56. ---help---
  57. This is a video4linux driver for the Renesas AR (Artificial
  58. Retina) with M64278E-800 camera module.
  59. This module supports VGA(640x480 pixels) resolutions.
  60. To compile this driver as a module, choose M here: the
  61. module will be called arv.
  62. config VIDEO_MUX
  63. tristate "Video Multiplexer"
  64. select MULTIPLEXER
  65. depends on VIDEO_V4L2 && OF && VIDEO_V4L2_SUBDEV_API && MEDIA_CONTROLLER
  66. select REGMAP
  67. help
  68. This driver provides support for N:1 video bus multiplexers.
  69. config VIDEO_OMAP3
  70. tristate "OMAP 3 Camera support"
  71. depends on VIDEO_V4L2 && I2C && VIDEO_V4L2_SUBDEV_API && ARCH_OMAP3
  72. depends on HAS_DMA && OF
  73. depends on OMAP_IOMMU
  74. select ARM_DMA_USE_IOMMU
  75. select VIDEOBUF2_DMA_CONTIG
  76. select MFD_SYSCON
  77. select V4L2_FWNODE
  78. ---help---
  79. Driver for an OMAP 3 camera controller.
  80. config VIDEO_OMAP3_DEBUG
  81. bool "OMAP 3 Camera debug messages"
  82. depends on VIDEO_OMAP3
  83. ---help---
  84. Enable debug messages on OMAP 3 camera controller driver.
  85. config VIDEO_PXA27x
  86. tristate "PXA27x Quick Capture Interface driver"
  87. depends on VIDEO_DEV && VIDEO_V4L2 && HAS_DMA
  88. depends on PXA27x || COMPILE_TEST
  89. select VIDEOBUF2_DMA_SG
  90. select SG_SPLIT
  91. select V4L2_FWNODE
  92. ---help---
  93. This is a v4l2 driver for the PXA27x Quick Capture Interface
  94. config VIDEO_QCOM_CAMSS
  95. tristate "Qualcomm 8x16 V4L2 Camera Subsystem driver"
  96. depends on VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API && HAS_DMA
  97. depends on (ARCH_QCOM && IOMMU_DMA) || COMPILE_TEST
  98. select VIDEOBUF2_DMA_SG
  99. select V4L2_FWNODE
  100. config VIDEO_S3C_CAMIF
  101. tristate "Samsung S3C24XX/S3C64XX SoC Camera Interface driver"
  102. depends on VIDEO_V4L2 && I2C && VIDEO_V4L2_SUBDEV_API
  103. depends on PM
  104. depends on ARCH_S3C64XX || PLAT_S3C24XX || COMPILE_TEST
  105. depends on HAS_DMA
  106. select VIDEOBUF2_DMA_CONTIG
  107. ---help---
  108. This is a v4l2 driver for s3c24xx and s3c64xx SoC series camera
  109. host interface (CAMIF).
  110. To compile this driver as a module, choose M here: the module
  111. will be called s3c-camif.
  112. config VIDEO_STM32_DCMI
  113. tristate "STM32 Digital Camera Memory Interface (DCMI) support"
  114. depends on VIDEO_V4L2 && OF && HAS_DMA
  115. depends on ARCH_STM32 || COMPILE_TEST
  116. select VIDEOBUF2_DMA_CONTIG
  117. select V4L2_FWNODE
  118. ---help---
  119. This module makes the STM32 Digital Camera Memory Interface (DCMI)
  120. available as a v4l2 device.
  121. To compile this driver as a module, choose M here: the module
  122. will be called stm32-dcmi.
  123. source "drivers/media/platform/soc_camera/Kconfig"
  124. source "drivers/media/platform/exynos4-is/Kconfig"
  125. source "drivers/media/platform/am437x/Kconfig"
  126. source "drivers/media/platform/xilinx/Kconfig"
  127. source "drivers/media/platform/rcar-vin/Kconfig"
  128. source "drivers/media/platform/atmel/Kconfig"
  129. config VIDEO_TI_CAL
  130. tristate "TI CAL (Camera Adaptation Layer) driver"
  131. depends on VIDEO_DEV && VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API
  132. depends on SOC_DRA7XX || COMPILE_TEST
  133. depends on HAS_DMA
  134. select VIDEOBUF2_DMA_CONTIG
  135. select V4L2_FWNODE
  136. default n
  137. ---help---
  138. Support for the TI CAL (Camera Adaptation Layer) block
  139. found on DRA72X SoC.
  140. In TI Technical Reference Manual this module is referred as
  141. Camera Interface Subsystem (CAMSS).
  142. endif # V4L_PLATFORM_DRIVERS
  143. menuconfig V4L_MEM2MEM_DRIVERS
  144. bool "Memory-to-memory multimedia devices"
  145. depends on VIDEO_V4L2
  146. depends on MEDIA_CAMERA_SUPPORT
  147. default n
  148. ---help---
  149. Say Y here to enable selecting drivers for V4L devices that
  150. use system memory for both source and destination buffers, as opposed
  151. to capture and output drivers, which use memory buffers for just
  152. one of those.
  153. if V4L_MEM2MEM_DRIVERS
  154. config VIDEO_CODA
  155. tristate "Chips&Media Coda multi-standard codec IP"
  156. depends on VIDEO_DEV && VIDEO_V4L2 && (ARCH_MXC || COMPILE_TEST)
  157. depends on HAS_DMA
  158. select SRAM
  159. select VIDEOBUF2_DMA_CONTIG
  160. select VIDEOBUF2_VMALLOC
  161. select V4L2_MEM2MEM_DEV
  162. select GENERIC_ALLOCATOR
  163. ---help---
  164. Coda is a range of video codec IPs that supports
  165. H.264, MPEG-4, and other video formats.
  166. config VIDEO_IMX_VDOA
  167. def_tristate VIDEO_CODA if SOC_IMX6Q || COMPILE_TEST
  168. config VIDEO_MEDIATEK_JPEG
  169. tristate "Mediatek JPEG Codec driver"
  170. depends on MTK_IOMMU_V2 || COMPILE_TEST
  171. depends on VIDEO_DEV && VIDEO_V4L2
  172. depends on HAS_DMA
  173. select VIDEOBUF2_DMA_CONTIG
  174. select V4L2_MEM2MEM_DEV
  175. ---help---
  176. Mediatek jpeg codec driver provides HW capability to decode
  177. JPEG format
  178. To compile this driver as a module, choose M here: the
  179. module will be called mtk-jpeg
  180. config VIDEO_MEDIATEK_VCU
  181. tristate "Mediatek Video Communication/Controller Unit"
  182. depends on VIDEO_DEV && VIDEO_V4L2
  183. ---help---
  184. This driver provides downloading VCU firmware and
  185. communicating with VPU. This driver for hw video
  186. codec embedded in Mediatek's MT8173 SOCs. It is able
  187. to handle video decoding/encoding in a range of formats.
  188. To compile this driver as a module, choose M here: the
  189. module will be called mtk-vcu.
  190. config VIDEO_MEDIATEK_VCU_WO_FUSE
  191. bool "VCU driver without FUSE"
  192. depends on VIDEO_MEDIATEK_VCU
  193. ---help---
  194. VCU dirver is dependent on FUSE by default, the latency of
  195. ipi send from kernel to FUSE daemon is a little long.
  196. To reduce the latency and remove dependency to FUSE, choose
  197. Y here.
  198. config VB2_MEDIATEK_DMA_CONTIG
  199. bool "MEDIATEK V4L2 driver with DMA CONTIG"
  200. depends on VIDEO_MEDIATEK_VCODEC
  201. default n
  202. ---help---
  203. For SVP, can't access secure memory in normal world.
  204. MEDIATEK V4L2 driver will use proprietary DMA contig
  205. functions to handle DMA and bypass memory access.
  206. To enable proprietary functions, choose Y here.
  207. config VIDEO_MEDIATEK_VPU
  208. tristate "Mediatek Video Processor Unit"
  209. depends on VIDEO_DEV && VIDEO_V4L2 && HAS_DMA
  210. depends on ARCH_MEDIATEK || COMPILE_TEST
  211. ---help---
  212. This driver provides downloading VPU firmware and
  213. communicating with VPU. This driver for hw video
  214. codec embedded in Mediatek's MT8173 SOCs. It is able
  215. to handle video decoding/encoding in a range of formats.
  216. To compile this driver as a module, choose M here: the
  217. module will be called mtk-vpu.
  218. config VIDEO_MEDIATEK_MDP
  219. tristate "Mediatek MDP driver"
  220. depends on MTK_IOMMU || COMPILE_TEST
  221. depends on VIDEO_DEV && VIDEO_V4L2
  222. depends on ARCH_MEDIATEK || COMPILE_TEST
  223. depends on HAS_DMA
  224. select VIDEOBUF2_DMA_CONTIG
  225. select V4L2_MEM2MEM_DEV
  226. select VIDEO_MEDIATEK_VPU
  227. default n
  228. ---help---
  229. It is a v4l2 driver and present in Mediatek MT8173 SoCs.
  230. The driver supports for scaling and color space conversion.
  231. To compile this driver as a module, choose M here: the
  232. module will be called mtk-mdp.
  233. config VIDEO_MEDIATEK_VCODEC
  234. tristate "Mediatek Video Codec driver"
  235. depends on VIDEO_DEV && VIDEO_V4L2 && HAS_DMA
  236. select VIDEOBUF2_DMA_CONTIG
  237. select V4L2_MEM2MEM_DEV
  238. select VIDEO_MEDIATEK_VCU
  239. default n
  240. ---help---
  241. Mediatek video codec driver provides HW capability to
  242. encode and decode in a range of video formats
  243. This driver rely on VCU driver to communicate with VPU.
  244. To compile this driver as a module, choose M here: the
  245. module will be called mtk-vcodec
  246. config VIDEO_MEDIATEK_WARP
  247. tristate "Mediatek warp driver"
  248. depends on MTK_IOMMU || COMPILE_TEST
  249. depends on VIDEO_DEV && VIDEO_V4L2 && HAS_DMA
  250. depends on ARCH_MEDIATEK || COMPILE_TEST
  251. select VIDEOBUF2_DMA_CONTIG
  252. select V4L2_MEM2MEM_DEV
  253. ---help---
  254. This is a V4L2 driver which provides hardware capability to warp
  255. image.
  256. To compile this driver as a module, choose M here: the
  257. module will be called mtk-warp.
  258. config VIDEO_MEM2MEM_DEINTERLACE
  259. tristate "Deinterlace support"
  260. depends on VIDEO_DEV && VIDEO_V4L2 && DMA_ENGINE
  261. depends on HAS_DMA
  262. select VIDEOBUF2_DMA_CONTIG
  263. select V4L2_MEM2MEM_DEV
  264. help
  265. Generic deinterlacing V4L2 driver.
  266. config VIDEO_SAMSUNG_S5P_G2D
  267. tristate "Samsung S5P and EXYNOS4 G2D 2d graphics accelerator driver"
  268. depends on VIDEO_DEV && VIDEO_V4L2
  269. depends on ARCH_S5PV210 || ARCH_EXYNOS || COMPILE_TEST
  270. depends on HAS_DMA
  271. select VIDEOBUF2_DMA_CONTIG
  272. select V4L2_MEM2MEM_DEV
  273. default n
  274. ---help---
  275. This is a v4l2 driver for Samsung S5P and EXYNOS4 G2D
  276. 2d graphics accelerator.
  277. config VIDEO_SAMSUNG_S5P_JPEG
  278. tristate "Samsung S5P/Exynos3250/Exynos4 JPEG codec driver"
  279. depends on VIDEO_DEV && VIDEO_V4L2
  280. depends on ARCH_S5PV210 || ARCH_EXYNOS || COMPILE_TEST
  281. depends on HAS_DMA
  282. select VIDEOBUF2_DMA_CONTIG
  283. select V4L2_MEM2MEM_DEV
  284. ---help---
  285. This is a v4l2 driver for Samsung S5P, EXYNOS3250
  286. and EXYNOS4 JPEG codec
  287. config VIDEO_SAMSUNG_S5P_MFC
  288. tristate "Samsung S5P MFC Video Codec"
  289. depends on VIDEO_DEV && VIDEO_V4L2
  290. depends on ARCH_S5PV210 || ARCH_EXYNOS || COMPILE_TEST
  291. depends on HAS_DMA
  292. select VIDEOBUF2_DMA_CONTIG
  293. default n
  294. help
  295. MFC 5.1 and 6.x driver for V4L2
  296. config VIDEO_MX2_EMMAPRP
  297. tristate "MX2 eMMa-PrP support"
  298. depends on VIDEO_DEV && VIDEO_V4L2
  299. depends on SOC_IMX27 || COMPILE_TEST
  300. depends on HAS_DMA
  301. select VIDEOBUF2_DMA_CONTIG
  302. select V4L2_MEM2MEM_DEV
  303. help
  304. MX2X chips have a PrP that can be used to process buffers from
  305. memory to memory. Operations include resizing and format
  306. conversion.
  307. config VIDEO_SAMSUNG_EXYNOS_GSC
  308. tristate "Samsung Exynos G-Scaler driver"
  309. depends on VIDEO_DEV && VIDEO_V4L2
  310. depends on ARCH_EXYNOS || COMPILE_TEST
  311. depends on HAS_DMA
  312. select VIDEOBUF2_DMA_CONTIG
  313. select V4L2_MEM2MEM_DEV
  314. help
  315. This is a v4l2 driver for Samsung EXYNOS5 SoC G-Scaler.
  316. config VIDEO_STI_BDISP
  317. tristate "STMicroelectronics BDISP 2D blitter driver"
  318. depends on VIDEO_DEV && VIDEO_V4L2
  319. depends on HAS_DMA
  320. depends on ARCH_STI || COMPILE_TEST
  321. select VIDEOBUF2_DMA_CONTIG
  322. select V4L2_MEM2MEM_DEV
  323. help
  324. This v4l2 mem2mem driver is a 2D blitter for STMicroelectronics SoC.
  325. config VIDEO_STI_HVA
  326. tristate "STMicroelectronics HVA multi-format video encoder V4L2 driver"
  327. depends on VIDEO_DEV && VIDEO_V4L2
  328. depends on HAS_DMA
  329. depends on ARCH_STI || COMPILE_TEST
  330. select VIDEOBUF2_DMA_CONTIG
  331. select V4L2_MEM2MEM_DEV
  332. help
  333. This V4L2 driver enables HVA (Hardware Video Accelerator) multi-format
  334. video encoder of STMicroelectronics SoC, allowing hardware encoding of
  335. raw uncompressed formats in various compressed video bitstreams format.
  336. To compile this driver as a module, choose M here:
  337. the module will be called st-hva.
  338. config VIDEO_STI_HVA_DEBUGFS
  339. bool "Export STMicroelectronics HVA internals in debugfs"
  340. depends on VIDEO_STI_HVA
  341. depends on DEBUG_FS
  342. help
  343. Select this to see information about the internal state and the last
  344. operation of STMicroelectronics HVA multi-format video encoder in
  345. debugfs.
  346. Choose N unless you know you need this.
  347. config VIDEO_STI_DELTA
  348. tristate "STMicroelectronics DELTA multi-format video decoder V4L2 driver"
  349. depends on VIDEO_DEV && VIDEO_V4L2
  350. depends on ARCH_STI || COMPILE_TEST
  351. depends on HAS_DMA
  352. help
  353. This V4L2 driver enables DELTA multi-format video decoder
  354. of STMicroelectronics STiH4xx SoC series allowing hardware
  355. decoding of various compressed video bitstream format in
  356. raw uncompressed format.
  357. Use this option to see the decoders available for such
  358. hardware.
  359. Please notice that the driver will only be built if
  360. at least one of the DELTA decoder below is selected.
  361. if VIDEO_STI_DELTA
  362. config VIDEO_STI_DELTA_MJPEG
  363. bool "STMicroelectronics DELTA MJPEG support"
  364. default y
  365. help
  366. Enables DELTA MJPEG hardware support.
  367. To compile this driver as a module, choose M here:
  368. the module will be called st-delta.
  369. config VIDEO_STI_DELTA_DRIVER
  370. tristate
  371. depends on VIDEO_STI_DELTA
  372. depends on VIDEO_STI_DELTA_MJPEG
  373. default VIDEO_STI_DELTA_MJPEG
  374. select VIDEOBUF2_DMA_CONTIG
  375. select V4L2_MEM2MEM_DEV
  376. select RPMSG
  377. endif # VIDEO_STI_DELTA
  378. config VIDEO_SH_VEU
  379. tristate "SuperH VEU mem2mem video processing driver"
  380. depends on VIDEO_DEV && VIDEO_V4L2 && HAS_DMA
  381. select VIDEOBUF2_DMA_CONTIG
  382. select V4L2_MEM2MEM_DEV
  383. help
  384. Support for the Video Engine Unit (VEU) on SuperH and
  385. SH-Mobile SoCs.
  386. config VIDEO_RENESAS_FDP1
  387. tristate "Renesas Fine Display Processor"
  388. depends on VIDEO_DEV && VIDEO_V4L2 && HAS_DMA
  389. depends on ARCH_SHMOBILE || COMPILE_TEST
  390. depends on (!ARCH_RENESAS && !VIDEO_RENESAS_FCP) || VIDEO_RENESAS_FCP
  391. select VIDEOBUF2_DMA_CONTIG
  392. select V4L2_MEM2MEM_DEV
  393. ---help---
  394. This is a V4L2 driver for the Renesas Fine Display Processor
  395. providing colour space conversion, and de-interlacing features.
  396. To compile this driver as a module, choose M here: the module
  397. will be called rcar_fdp1.
  398. config VIDEO_RENESAS_JPU
  399. tristate "Renesas JPEG Processing Unit"
  400. depends on VIDEO_DEV && VIDEO_V4L2 && HAS_DMA
  401. depends on ARCH_RENESAS || COMPILE_TEST
  402. select VIDEOBUF2_DMA_CONTIG
  403. select V4L2_MEM2MEM_DEV
  404. ---help---
  405. This is a V4L2 driver for the Renesas JPEG Processing Unit.
  406. To compile this driver as a module, choose M here: the module
  407. will be called rcar_jpu.
  408. config VIDEO_RENESAS_FCP
  409. tristate "Renesas Frame Compression Processor"
  410. depends on ARCH_RENESAS || COMPILE_TEST
  411. depends on OF
  412. ---help---
  413. This is a driver for the Renesas Frame Compression Processor (FCP).
  414. The FCP is a companion module of video processing modules in the
  415. Renesas R-Car Gen3 SoCs. It handles memory access for the codec,
  416. VSP and FDP modules.
  417. To compile this driver as a module, choose M here: the module
  418. will be called rcar-fcp.
  419. config VIDEO_RENESAS_VSP1
  420. tristate "Renesas VSP1 Video Processing Engine"
  421. depends on VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API && HAS_DMA
  422. depends on (ARCH_RENESAS && OF) || COMPILE_TEST
  423. depends on (!ARM64 && !VIDEO_RENESAS_FCP) || VIDEO_RENESAS_FCP
  424. select VIDEOBUF2_DMA_CONTIG
  425. select VIDEOBUF2_VMALLOC
  426. ---help---
  427. This is a V4L2 driver for the Renesas VSP1 video processing engine.
  428. To compile this driver as a module, choose M here: the module
  429. will be called vsp1.
  430. config VIDEO_TI_VPE
  431. tristate "TI VPE (Video Processing Engine) driver"
  432. depends on VIDEO_DEV && VIDEO_V4L2
  433. depends on SOC_DRA7XX || COMPILE_TEST
  434. depends on HAS_DMA
  435. select VIDEOBUF2_DMA_CONTIG
  436. select V4L2_MEM2MEM_DEV
  437. select VIDEO_TI_VPDMA
  438. select VIDEO_TI_SC
  439. select VIDEO_TI_CSC
  440. default n
  441. ---help---
  442. Support for the TI VPE(Video Processing Engine) block
  443. found on DRA7XX SoC.
  444. config VIDEO_TI_VPE_DEBUG
  445. bool "VPE debug messages"
  446. depends on VIDEO_TI_VPE
  447. ---help---
  448. Enable debug messages on VPE driver.
  449. config VIDEO_QCOM_VENUS
  450. tristate "Qualcomm Venus V4L2 encoder/decoder driver"
  451. depends on VIDEO_DEV && VIDEO_V4L2 && HAS_DMA
  452. depends on (ARCH_QCOM && IOMMU_DMA) || COMPILE_TEST
  453. select QCOM_MDT_LOADER if ARCH_QCOM
  454. select QCOM_SCM if ARCH_QCOM
  455. select VIDEOBUF2_DMA_SG
  456. select V4L2_MEM2MEM_DEV
  457. ---help---
  458. This is a V4L2 driver for Qualcomm Venus video accelerator
  459. hardware. It accelerates encoding and decoding operations
  460. on various Qualcomm SoCs.
  461. To compile this driver as a module choose m here.
  462. endif # V4L_MEM2MEM_DRIVERS
  463. # TI VIDEO PORT Helper Modules
  464. # These will be selected by VPE and VIP
  465. config VIDEO_TI_VPDMA
  466. tristate
  467. config VIDEO_TI_SC
  468. tristate
  469. config VIDEO_TI_CSC
  470. tristate
  471. menuconfig V4L_TEST_DRIVERS
  472. bool "Media test drivers"
  473. depends on MEDIA_CAMERA_SUPPORT
  474. if V4L_TEST_DRIVERS
  475. source "drivers/media/platform/vimc/Kconfig"
  476. source "drivers/media/platform/vivid/Kconfig"
  477. config VIDEO_VIM2M
  478. tristate "Virtual Memory-to-Memory Driver"
  479. depends on VIDEO_DEV && VIDEO_V4L2
  480. select VIDEOBUF2_VMALLOC
  481. select V4L2_MEM2MEM_DEV
  482. default n
  483. ---help---
  484. This is a virtual test device for the memory-to-memory driver
  485. framework.
  486. endif #V4L_TEST_DRIVERS
  487. menuconfig DVB_PLATFORM_DRIVERS
  488. bool "DVB platform devices"
  489. depends on MEDIA_DIGITAL_TV_SUPPORT
  490. default n
  491. ---help---
  492. Say Y here to enable support for platform-specific Digital TV drivers.
  493. if DVB_PLATFORM_DRIVERS
  494. source "drivers/media/platform/sti/c8sectpfe/Kconfig"
  495. endif #DVB_PLATFORM_DRIVERS
  496. menuconfig CEC_PLATFORM_DRIVERS
  497. bool "CEC platform devices"
  498. depends on MEDIA_CEC_SUPPORT
  499. if CEC_PLATFORM_DRIVERS
  500. config VIDEO_MESON_AO_CEC
  501. tristate "Amlogic Meson AO CEC driver"
  502. depends on ARCH_MESON || COMPILE_TEST
  503. select CEC_CORE
  504. select CEC_NOTIFIER
  505. ---help---
  506. This is a driver for Amlogic Meson SoCs AO CEC interface. It uses the
  507. generic CEC framework interface.
  508. CEC bus is present in the HDMI connector and enables communication
  509. between compatible devices.
  510. config VIDEO_SAMSUNG_S5P_CEC
  511. tristate "Samsung S5P CEC driver"
  512. depends on PLAT_S5P || ARCH_EXYNOS || COMPILE_TEST
  513. select CEC_CORE
  514. select CEC_NOTIFIER
  515. ---help---
  516. This is a driver for Samsung S5P HDMI CEC interface. It uses the
  517. generic CEC framework interface.
  518. CEC bus is present in the HDMI connector and enables communication
  519. between compatible devices.
  520. config VIDEO_STI_HDMI_CEC
  521. tristate "STMicroelectronics STiH4xx HDMI CEC driver"
  522. depends on ARCH_STI || COMPILE_TEST
  523. select CEC_CORE
  524. select CEC_NOTIFIER
  525. ---help---
  526. This is a driver for STIH4xx HDMI CEC interface. It uses the
  527. generic CEC framework interface.
  528. CEC bus is present in the HDMI connector and enables communication
  529. between compatible devices.
  530. config VIDEO_STM32_HDMI_CEC
  531. tristate "STMicroelectronics STM32 HDMI CEC driver"
  532. depends on ARCH_STM32 || COMPILE_TEST
  533. select REGMAP
  534. select REGMAP_MMIO
  535. select CEC_CORE
  536. ---help---
  537. This is a driver for STM32 interface. It uses the
  538. generic CEC framework interface.
  539. CEC bus is present in the HDMI connector and enables communication
  540. between compatible devices.
  541. endif #CEC_PLATFORM_DRIVERS
  542. menuconfig SDR_PLATFORM_DRIVERS
  543. bool "SDR platform devices"
  544. depends on MEDIA_SDR_SUPPORT
  545. default n
  546. ---help---
  547. Say Y here to enable support for platform-specific SDR Drivers.
  548. if SDR_PLATFORM_DRIVERS
  549. config VIDEO_RCAR_DRIF
  550. tristate "Renesas Digitial Radio Interface (DRIF)"
  551. depends on VIDEO_V4L2 && HAS_DMA
  552. depends on ARCH_RENESAS || COMPILE_TEST
  553. select VIDEOBUF2_VMALLOC
  554. ---help---
  555. Say Y if you want to enable R-Car Gen3 DRIF support. DRIF is Digital
  556. Radio Interface that interfaces with an RF front end chip. It is a
  557. receiver of digital data which uses DMA to transfer received data to
  558. a configured location for an application to use.
  559. To compile this driver as a module, choose M here; the module
  560. will be called rcar_drif.
  561. endif # SDR_PLATFORM_DRIVERS