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