xref: /qemu/hw/usb/Kconfig (revision 8ac65578)
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    default y if PCI_DEVICES
23    depends on PCI
24    select USB
25
26config USB_EHCI_SYSBUS
27    bool
28    select USB
29
30config USB_XHCI
31    bool
32    default y if PCI_DEVICES
33    depends on PCI
34    select USB
35
36config USB_XHCI_NEC
37    bool
38    default y if PCI_DEVICES
39    depends on PCI
40    select USB
41
42config USB_MUSB
43    bool
44    select USB
45
46config TUSB6010
47    bool
48    select USB_MUSB
49
50config USB_TABLET_WACOM
51    bool
52    default y
53    depends on USB
54
55config USB_STORAGE_BOT
56    bool
57    default y
58    depends on USB
59    select SCSI
60
61config USB_STORAGE_UAS
62    bool
63    default y
64    depends on USB
65    select SCSI
66
67config USB_AUDIO
68    bool
69    default y
70    depends on USB
71
72config USB_SERIAL
73    bool
74    default y
75    depends on USB
76
77config USB_NETWORK
78    bool
79    default y
80    depends on USB
81
82config USB_BLUETOOTH
83    bool
84    default y
85    depends on USB
86
87config USB_SMARTCARD
88    bool
89    default y
90    depends on USB
91
92config USB_STORAGE_MTP
93    bool
94    default y
95    depends on USB
96