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 select USB 36 37config USB_XHCI_PCI 38 bool 39 default y if PCI_DEVICES 40 depends on PCI 41 select USB_XHCI 42 43config USB_XHCI_NEC 44 bool 45 default y if PCI_DEVICES 46 select USB_XHCI_PCI 47 48config USB_XHCI_SYSBUS 49 bool 50 default y 51 select USB_XHCI 52 53config USB_MUSB 54 bool 55 select USB 56 57config USB_DWC2 58 bool 59 select USB 60 61config TUSB6010 62 bool 63 select USB_MUSB 64 65config USB_TABLET_WACOM 66 bool 67 default y 68 depends on USB 69 70config USB_STORAGE_BOT 71 bool 72 default y 73 depends on USB 74 select SCSI 75 76config USB_STORAGE_UAS 77 bool 78 default y 79 depends on USB 80 select SCSI 81 82config USB_AUDIO 83 bool 84 default y 85 depends on USB 86 87config USB_SERIAL 88 bool 89 default y 90 depends on USB 91 92config USB_NETWORK 93 bool 94 default y 95 depends on USB 96 97config USB_SMARTCARD 98 bool 99 default y 100 depends on USB 101 102config USB_STORAGE_MTP 103 bool 104 default y 105 depends on USB 106 107config USB_U2F 108 bool 109 default y 110 depends on USB 111 112config IMX_USBPHY 113 bool 114 default y 115 depends on USB 116