xref: /openbmc/qemu/hw/usb/Kconfig (revision b097ba37)
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    select SCSI
56
57config USB_STORAGE_UAS
58    bool
59    default y
60    depends on USB
61    select SCSI
62
63config USB_AUDIO
64    bool
65    default y
66    depends on USB
67
68config USB_SERIAL
69    bool
70    default y
71    depends on USB
72
73config USB_NETWORK
74    bool
75    default y
76    depends on USB
77
78config USB_BLUETOOTH
79    bool
80    default y
81    depends on USB
82
83config USB_SMARTCARD
84    bool
85    default y
86    depends on USB
87
88config USB_STORAGE_MTP
89    bool
90    default y
91    depends on USB
92