Kconfig 986 B

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