]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
staging: Hook the DWC2 driver into the build system
authorPaul Zimmerman <Paul.Zimmerman@synopsys.com>
Tue, 12 Mar 2013 00:48:02 +0000 (17:48 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 12 Mar 2013 01:17:39 +0000 (18:17 -0700)
Add the DWC2 Kconfig and Makefile, and modify the staging Kconfig and
Makefile to include them

Signed-off-by: Paul Zimmerman <paulz@synopsys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/Kconfig
drivers/staging/Makefile
drivers/staging/dwc2/Kconfig [new file with mode: 0644]
drivers/staging/dwc2/Makefile [new file with mode: 0644]

index daeeec17ac9bd881c0defd077ef930f86f4dcbe2..95f911022b708b9df0d6341afb3113e4750cfb3e 100644 (file)
@@ -142,4 +142,6 @@ source "drivers/staging/goldfish/Kconfig"
 
 source "drivers/staging/netlogic/Kconfig"
 
+source "drivers/staging/dwc2/Kconfig"
+
 endif # STAGING
index d3040d7bdded36d0c2facbfa88362cb19f2d4625..1c486cbcbe2c90f4980fcf32f39c2721cfe8ca0a 100644 (file)
@@ -63,3 +63,4 @@ obj-$(CONFIG_SB105X)          += sb105x/
 obj-$(CONFIG_FIREWIRE_SERIAL)  += fwserial/
 obj-$(CONFIG_ZCACHE)           += zcache/
 obj-$(CONFIG_GOLDFISH)         += goldfish/
+obj-$(CONFIG_USB_DWC2)         += dwc2/
diff --git a/drivers/staging/dwc2/Kconfig b/drivers/staging/dwc2/Kconfig
new file mode 100644 (file)
index 0000000..610418a
--- /dev/null
@@ -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
diff --git a/drivers/staging/dwc2/Makefile b/drivers/staging/dwc2/Makefile
new file mode 100644 (file)
index 0000000..6dccf46
--- /dev/null
@@ -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