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