xref: /openbmc/qemu/hw/usb/Kconfig (revision 557e1d67)
1config USB
2    bool
3
4config USB_UHCI
5    bool
6    select USB
7
8config USB_UHCI_PCI
9    bool
10    default y if PCI_DEVICES
11    depends on PCI
12    select USB_UHCI
13
14config USB_UHCI_SYSBUS
15    bool
16    select USB_UHCI
17
18config USB_OHCI
19    bool
20    select USB
21
22config USB_OHCI_SYSBUS
23    bool
24    select USB_OHCI
25
26config USB_OHCI_PCI
27    bool
28    default y if PCI_DEVICES
29    depends on PCI
30    select USB_OHCI
31
32config USB_EHCI
33    bool
34    select USB
35
36config USB_EHCI_PCI
37    bool
38    default y if PCI_DEVICES
39    select USB_EHCI
40
41config USB_EHCI_SYSBUS
42    bool
43    select USB_EHCI
44
45config USB_XHCI
46    bool
47    select USB
48
49config USB_XHCI_PCI
50    bool
51    default y if PCI_DEVICES || PCIE_DEVICES
52    depends on PCI
53    select USB_XHCI
54
55config USB_XHCI_NEC
56    bool
57    default y if PCI_DEVICES
58    select USB_XHCI_PCI
59
60config USB_XHCI_SYSBUS
61    bool
62    select USB_XHCI
63
64config USB_DWC2
65    bool
66    select USB
67
68config USB_HUB
69    bool
70    default y
71    depends on USB
72
73config USB_HID
74    bool
75    default y
76    depends on USB
77
78config USB_TABLET_WACOM
79    bool
80    default y
81    depends on USB
82
83config USB_STORAGE_CORE
84    bool
85    depends on USB
86    select SCSI
87
88config USB_STORAGE_CLASSIC
89    bool
90    default y
91    depends on USB
92    select USB_STORAGE_CORE
93
94config USB_STORAGE_BOT
95    bool
96    default y
97    depends on USB
98    select USB_STORAGE_CORE
99
100config USB_STORAGE_UAS
101    bool
102    default y
103    depends on USB
104    select SCSI
105
106config USB_AUDIO
107    bool
108    default y
109    depends on USB
110
111config USB_SERIAL
112    bool
113    default y
114    depends on USB
115
116config USB_NETWORK
117    bool
118    default y
119    depends on USB
120
121config USB_SMARTCARD
122    bool
123    default y
124    depends on USB
125
126config USB_STORAGE_MTP
127    bool
128    default y
129    depends on USB
130
131config USB_U2F
132    bool
133    default y
134    depends on USB
135
136config USB_CANOKEY
137    bool
138    default y
139    depends on USB
140
141config IMX_USBPHY
142    bool
143    default y
144    depends on USB
145
146config USB_DWC3
147    bool
148    select USB_XHCI_SYSBUS
149    select REGISTER
150
151config XLNX_USB_SUBSYS
152    bool
153    select USB_DWC3
154