1config USB 2 bool 3 4config USB_UHCI 5 bool 6 default y if PCI_DEVICES 7 depends on PCI 8 select USB 9 10config USB_OHCI 11 bool 12 select USB 13 14config USB_OHCI_PCI 15 bool 16 default y if PCI_DEVICES 17 depends on PCI 18 select USB_OHCI 19 20config USB_EHCI 21 bool 22 select USB 23 24config USB_EHCI_PCI 25 bool 26 default y if PCI_DEVICES 27 select USB_EHCI 28 29config USB_EHCI_SYSBUS 30 bool 31 select USB_EHCI 32 33config USB_XHCI 34 bool 35 default y if PCI_DEVICES 36 depends on PCI 37 select USB 38 39config USB_XHCI_PCI 40 bool 41 default y if PCI_DEVICES 42 depends on PCI 43 select USB_XHCI 44 45config USB_XHCI_NEC 46 bool 47 default y if PCI_DEVICES 48 depends on PCI 49 select USB_XHCI 50 51config USB_MUSB 52 bool 53 select USB 54 55config USB_DWC2 56 bool 57 select USB 58 59config TUSB6010 60 bool 61 select USB_MUSB 62 63config USB_TABLET_WACOM 64 bool 65 default y 66 depends on USB 67 68config USB_STORAGE_BOT 69 bool 70 default y 71 depends on USB 72 select SCSI 73 74config USB_STORAGE_UAS 75 bool 76 default y 77 depends on USB 78 select SCSI 79 80config USB_AUDIO 81 bool 82 default y 83 depends on USB 84 85config USB_SERIAL 86 bool 87 default y 88 depends on USB 89 90config USB_NETWORK 91 bool 92 default y 93 depends on USB 94 95config USB_SMARTCARD 96 bool 97 default y 98 depends on USB 99 100config USB_STORAGE_MTP 101 bool 102 default y 103 depends on USB 104 105config USB_U2F 106 bool 107 default y 108 depends on USB 109 110config IMX_USBPHY 111 bool 112 default y 113 depends on USB 114