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 8if USB && MEDIA_SUPPORT 9 10menuconfig MEDIA_USB_SUPPORT 11 bool "Media USB Adapters" 12 help 13 Enable media drivers for USB bus. 14 If you have such devices, say Y. 15 16if MEDIA_USB_SUPPORT 17 18if MEDIA_CAMERA_SUPPORT 19 comment "Webcam devices" 20source "drivers/media/usb/uvc/Kconfig" 21source "drivers/media/usb/gspca/Kconfig" 22source "drivers/media/usb/pwc/Kconfig" 23source "drivers/media/usb/cpia2/Kconfig" 24source "drivers/media/usb/zr364xx/Kconfig" 25source "drivers/media/usb/stkwebcam/Kconfig" 26source "drivers/media/usb/s2255/Kconfig" 27source "drivers/media/usb/usbtv/Kconfig" 28endif 29 30if MEDIA_ANALOG_TV_SUPPORT 31 comment "Analog TV USB devices" 32source "drivers/media/usb/pvrusb2/Kconfig" 33source "drivers/media/usb/hdpvr/Kconfig" 34source "drivers/media/usb/stk1160/Kconfig" 35source "drivers/media/usb/go7007/Kconfig" 36endif 37 38if (MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT) 39 comment "Analog/digital TV USB devices" 40source "drivers/media/usb/au0828/Kconfig" 41source "drivers/media/usb/cx231xx/Kconfig" 42source "drivers/media/usb/tm6000/Kconfig" 43endif 44 45 46if I2C && MEDIA_DIGITAL_TV_SUPPORT 47 comment "Digital TV USB devices" 48source "drivers/media/usb/dvb-usb/Kconfig" 49source "drivers/media/usb/dvb-usb-v2/Kconfig" 50source "drivers/media/usb/ttusb-budget/Kconfig" 51source "drivers/media/usb/ttusb-dec/Kconfig" 52source "drivers/media/usb/siano/Kconfig" 53source "drivers/media/usb/b2c2/Kconfig" 54source "drivers/media/usb/as102/Kconfig" 55endif 56 57if (MEDIA_CAMERA_SUPPORT || MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT) 58 comment "Webcam, TV (analog/digital) USB devices" 59source "drivers/media/usb/em28xx/Kconfig" 60endif 61 62if MEDIA_SDR_SUPPORT 63 comment "Software defined radio USB devices" 64source "drivers/media/usb/airspy/Kconfig" 65source "drivers/media/usb/hackrf/Kconfig" 66source "drivers/media/usb/msi2500/Kconfig" 67endif 68 69endif #MEDIA_USB_SUPPORT 70endif #USB 71