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