1# SPDX-License-Identifier: GPL-2.0-only 2config VIDEO_DM6446_CCDC 3 tristate "TI DM6446 CCDC video capture driver" 4 depends on V4L_PLATFORM_DRIVERS 5 depends on VIDEO_DEV 6 depends on ARCH_DAVINCI || COMPILE_TEST 7 depends on I2C 8 select VIDEOBUF_DMA_CONTIG 9 help 10 Enables DaVinci CCD hw module. DaVinci CCDC hw interfaces 11 with decoder modules such as TVP5146 over BT656 or 12 sensor module such as MT9T001 over a raw interface. This 13 module configures the interface and CCDC/ISIF to do 14 video frame capture from slave decoders. 15 16 This driver is deprecated and is scheduled for removal by 17 the beginning of 2023. See the TODO file for more information. 18 19 To compile this driver as a module, choose M here. There will 20 be two modules called vpfe_capture.ko and dm644x_ccdc.ko 21 22config VIDEO_DM355_CCDC 23 tristate "TI DM355 CCDC video capture driver" 24 depends on V4L_PLATFORM_DRIVERS 25 depends on VIDEO_DEV 26 depends on ARCH_DAVINCI || COMPILE_TEST 27 depends on I2C 28 select VIDEOBUF_DMA_CONTIG 29 help 30 Enables DM355 CCD hw module. DM355 CCDC hw interfaces 31 with decoder modules such as TVP5146 over BT656 or 32 sensor module such as MT9T001 over a raw interface. This 33 module configures the interface and CCDC/ISIF to do 34 video frame capture from a slave decoders 35 36 This driver is deprecated and is scheduled for removal by 37 the beginning of 2023. See the TODO file for more information. 38 39 To compile this driver as a module, choose M here. There will 40 be two modules called vpfe_capture.ko and dm355_ccdc.ko 41 42config VIDEO_DM365_ISIF 43 tristate "TI DM365 ISIF video capture driver" 44 depends on V4L_PLATFORM_DRIVERS 45 depends on VIDEO_DEV 46 depends on ARCH_DAVINCI || COMPILE_TEST 47 depends on I2C 48 select VIDEOBUF_DMA_CONTIG 49 help 50 Enables ISIF hw module. This is the hardware module for 51 configuring ISIF in VPFE to capture Raw Bayer RGB data from 52 a image sensor or YUV data from a YUV source. 53 54 This driver is deprecated and is scheduled for removal by 55 the beginning of 2023. See the TODO file for more information. 56 57 To compile this driver as a module, choose M here. There will 58 be two modules called vpfe_capture.ko and isif.ko 59