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