1config VIDEO_CADENCE 2 bool "Cadence Video Devices" 3 help 4 If you have a media device designed by Cadence, say Y. 5 6 Note that this option doesn't include new drivers in the kernel: 7 saying N will just cause Kconfig to skip all the questions about 8 Cadence media devices. 9 10if VIDEO_CADENCE 11 12config VIDEO_CADENCE_CSI2RX 13 tristate "Cadence MIPI-CSI2 RX Controller" 14 depends on MEDIA_CONTROLLER 15 depends on VIDEO_V4L2_SUBDEV_API 16 select V4L2_FWNODE 17 help 18 Support for the Cadence MIPI CSI2 Receiver controller. 19 20 To compile this driver as a module, choose M here: the module will be 21 called cdns-csi2rx. 22 23config VIDEO_CADENCE_CSI2TX 24 tristate "Cadence MIPI-CSI2 TX Controller" 25 depends on MEDIA_CONTROLLER 26 depends on VIDEO_V4L2_SUBDEV_API 27 select V4L2_FWNODE 28 help 29 Support for the Cadence MIPI CSI2 Transceiver controller. 30 31 To compile this driver as a module, choose M here: the module will be 32 called cdns-csi2tx. 33 34endif 35