1# SPDX-License-Identifier: GPL-2.0-only 2 3# This Kconfig option is also used by the legacy av7110 driver 4config TTPCI_EEPROM 5 tristate 6 depends on I2C 7 8# Should match the hybrid card list below 9config MEDIA_HYBRID_USB 10 bool 11 depends on VIDEO_AU0828 || VIDEO_CX231XX || VIDEO_TM6000 || VIDEO_PVRUSB2 12 default y 13 14if USB && MEDIA_SUPPORT 15 16menuconfig MEDIA_USB_SUPPORT 17 bool "Media USB Adapters" 18 help 19 Enable media drivers for USB bus. 20 If you have such devices, say Y. 21 22if MEDIA_USB_SUPPORT 23 24if MEDIA_CAMERA_SUPPORT 25 comment "Webcam devices" 26source "drivers/media/usb/uvc/Kconfig" 27source "drivers/media/usb/gspca/Kconfig" 28source "drivers/media/usb/pwc/Kconfig" 29source "drivers/media/usb/cpia2/Kconfig" 30source "drivers/media/usb/zr364xx/Kconfig" 31source "drivers/media/usb/stkwebcam/Kconfig" 32source "drivers/media/usb/s2255/Kconfig" 33source "drivers/media/usb/usbtv/Kconfig" 34endif 35 36if MEDIA_ANALOG_TV_SUPPORT 37 comment "Analog TV USB devices" 38source "drivers/media/usb/hdpvr/Kconfig" 39source "drivers/media/usb/stk1160/Kconfig" 40source "drivers/media/usb/go7007/Kconfig" 41endif 42 43if (MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT) 44 comment "Analog/digital TV USB devices" 45source "drivers/media/usb/au0828/Kconfig" 46source "drivers/media/usb/cx231xx/Kconfig" 47source "drivers/media/usb/pvrusb2/Kconfig" 48source "drivers/media/usb/tm6000/Kconfig" 49endif 50 51 52if I2C && MEDIA_DIGITAL_TV_SUPPORT 53 comment "Digital TV USB devices" 54source "drivers/media/usb/dvb-usb/Kconfig" 55source "drivers/media/usb/dvb-usb-v2/Kconfig" 56source "drivers/media/usb/ttusb-budget/Kconfig" 57source "drivers/media/usb/ttusb-dec/Kconfig" 58source "drivers/media/usb/siano/Kconfig" 59source "drivers/media/usb/b2c2/Kconfig" 60source "drivers/media/usb/as102/Kconfig" 61endif 62 63if (MEDIA_CAMERA_SUPPORT || MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT) 64 comment "Webcam, TV (analog/digital) USB devices" 65source "drivers/media/usb/em28xx/Kconfig" 66endif 67 68if MEDIA_SDR_SUPPORT 69 comment "Software defined radio USB devices" 70source "drivers/media/usb/airspy/Kconfig" 71source "drivers/media/usb/hackrf/Kconfig" 72source "drivers/media/usb/msi2500/Kconfig" 73endif 74 75if MEDIA_CEC_SUPPORT 76 comment "USB HDMI CEC adapters" 77source "drivers/media/usb/pulse8-cec/Kconfig" 78source "drivers/media/usb/rainshadow-cec/Kconfig" 79endif 80 81endif #MEDIA_USB_SUPPORT 82endif #USB 83