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