-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Paul Zimmerman
authored and
Greg Kroah-Hartman
committed
Mar 12, 2013
1 parent
c9fa10e
commit eac0cbf
Showing
5 changed files
with
68 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 5efc75e350ce47c567dd66be61d2af9e9db7cd4a | ||
refs/heads/master: 535f60a405a06b23ed4430d2443b1afb5aa96850 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
config USB_DWC2 | ||
tristate "DesignWare USB2 DRD Core Support" | ||
depends on USB | ||
select USB_OTG_UTILS | ||
help | ||
Say Y or M here if your system has a Dual Role HighSpeed | ||
USB controller based on the DesignWare HSOTG IP Core. | ||
|
||
If you choose to build this driver as dynamically linked | ||
modules, the core module will be called dwc2.ko, and the | ||
PCI bus interface module (if you have a PCI bus system) | ||
will be called dwc2_pci.ko. | ||
|
||
NOTE: This driver at present only implements the Host mode | ||
of the controller. The existing s3c-hsotg driver supports | ||
Peripheral mode, but only for the Samsung S3C platforms. | ||
There are plans to merge the s3c-hsotg driver with this | ||
driver in the near future to create a dual-role driver. | ||
|
||
if USB_DWC2 | ||
|
||
config USB_DWC2_DEBUG | ||
bool "Enable Debugging Messages" | ||
help | ||
Say Y here to enable debugging messages in the DWC2 Driver. | ||
|
||
config USB_DWC2_VERBOSE | ||
bool "Enable Verbose Debugging Messages" | ||
depends on USB_DWC2_DEBUG | ||
help | ||
Say Y here to enable verbose debugging messages in the DWC2 Driver. | ||
WARNING: Enabling this will quickly fill your message log. | ||
If in doubt, say N. | ||
|
||
config USB_DWC2_TRACK_MISSED_SOFS | ||
bool "Enable Missed SOF Tracking" | ||
help | ||
Say Y here to enable logging of missed SOF events to the dmesg log. | ||
If in doubt, say N. | ||
|
||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
ccflags-$(CONFIG_USB_DWC2_DEBUG) += -DDEBUG | ||
ccflags-$(CONFIG_USB_DWC2_VERBOSE) += -DVERBOSE_DEBUG | ||
|
||
obj-$(CONFIG_USB_DWC2) += dwc2.o | ||
|
||
dwc2-y += core.o core_intr.o | ||
|
||
# NOTE: This driver at present only implements the Host mode | ||
# of the controller. The existing s3c-hsotg driver supports | ||
# Peripheral mode, but only for the Samsung S3C platforms. | ||
# There are plans to merge the s3c-hsotg driver with this | ||
# driver in the near future to create a dual-role driver. Once | ||
# that is done, Host mode will become an optional feature that | ||
# is selected with a config option. | ||
|
||
dwc2-y += hcd.o hcd_intr.o | ||
dwc2-y += hcd_queue.o hcd_ddma.o | ||
|
||
ifneq ($(CONFIG_PCI),) | ||
obj-$(CONFIG_USB_DWC2) += dwc2_pci.o | ||
endif | ||
|
||
dwc2_pci-y += pci.o |