Merge tag 'armsoc-defconfig' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc
[linux-2.6-microblaze.git] / drivers / usb / dwc2 / Kconfig
1 # SPDX-License-Identifier: GPL-2.0
2
3 config USB_DWC2
4         tristate "DesignWare USB2 DRD Core Support"
5         depends on HAS_DMA
6         depends on USB || USB_GADGET
7         depends on HAS_IOMEM
8         help
9           Say Y here if your system has a Dual Role Hi-Speed USB
10           controller based on the DesignWare HSOTG IP Core.
11
12           For host mode, if you choose to build the driver as dynamically
13           linked modules, the core module will be called dwc2.ko, the PCI
14           bus interface module (if you have a PCI bus system) will be
15           called dwc2_pci.ko, and the platform interface module (for
16           controllers directly connected to the CPU) will be called
17           dwc2_platform.ko. For all modes(host, gadget and dual-role), there
18           will be an additional module named dwc2.ko.
19
20 if USB_DWC2
21
22 choice
23         bool "DWC2 Mode Selection"
24         default USB_DWC2_DUAL_ROLE if (USB && USB_GADGET)
25         default USB_DWC2_HOST if (USB && !USB_GADGET)
26         default USB_DWC2_PERIPHERAL if (!USB && USB_GADGET)
27
28 config USB_DWC2_HOST
29         bool "Host only mode"
30         depends on USB=y || (USB_DWC2=m && USB)
31         help
32           The Designware USB2.0 high-speed host controller
33           integrated into many SoCs. Select this option if you want the
34           driver to operate in Host-only mode.
35
36 comment "Gadget/Dual-role mode requires USB Gadget support to be enabled"
37
38 config USB_DWC2_PERIPHERAL
39         bool "Gadget only mode"
40         depends on USB_GADGET=y || USB_GADGET=USB_DWC2
41         help
42           The Designware USB2.0 high-speed gadget controller
43           integrated into many SoCs. Select this option if you want the
44           driver to operate in Peripheral-only mode. This option requires
45           USB_GADGET to be enabled.
46
47 config USB_DWC2_DUAL_ROLE
48         bool "Dual Role mode"
49         depends on (USB=y && USB_GADGET=y) || (USB_DWC2=m && USB && USB_GADGET)
50         help
51           Select this option if you want the driver to work in a dual-role
52           mode. In this mode both host and gadget features are enabled, and
53           the role will be determined by the cable that gets plugged-in. This
54           option requires USB_GADGET to be enabled.
55 endchoice
56
57 config USB_DWC2_PCI
58         tristate "DWC2 PCI"
59         depends on USB_PCI
60         depends on USB_GADGET || !USB_GADGET
61         default n
62         select NOP_USB_XCEIV
63         help
64           The Designware USB2.0 PCI interface module for controllers
65           connected to a PCI bus.
66
67 config USB_DWC2_DEBUG
68         bool "Enable Debugging Messages"
69         help
70           Say Y here to enable debugging messages in the DWC2 Driver.
71
72 config USB_DWC2_VERBOSE
73         bool "Enable Verbose Debugging Messages"
74         depends on USB_DWC2_DEBUG
75         help
76           Say Y here to enable verbose debugging messages in the DWC2 Driver.
77           WARNING: Enabling this will quickly fill your message log.
78           If in doubt, say N.
79
80 config USB_DWC2_TRACK_MISSED_SOFS
81         bool "Enable Missed SOF Tracking"
82         help
83           Say Y here to enable logging of missed SOF events to the dmesg log.
84           WARNING: This feature is still experimental.
85           If in doubt, say N.
86
87 config USB_DWC2_DEBUG_PERIODIC
88         bool "Enable Debugging Messages For Periodic Transfers"
89         depends on USB_DWC2_DEBUG || USB_DWC2_VERBOSE
90         default y
91         help
92           Say N here to disable (verbose) debugging messages to be
93           logged for periodic transfers. This allows better debugging of
94           non-periodic transfers, but of course the debug logs will be
95           incomplete. Note that this also disables some debug messages
96           for which the transfer type cannot be deduced.
97 endif