From: Tirumala Marri <tmarri@xxxxxxx> v11: 1. Kconfig corrections. 2. Changed the order of patch generation to follow dependencies. v10: 1. Change address argument type from u32 to ulong to make it arch independent. 2. Cleaning unnecessary changes from Kconfig. Tirumala Marri (10): USB/ppc4xx: Add Synopsys DWC OTG Register definitions USB/ppc4xx: Add Synopsys DWC OTG driver framework USB/ppc4xx: Add Synopsys DWC OTG Core Interface Layer (CIL) USB/ppc4xx: Add Synopsys DWC OTG HCD function USB/ppc4xx: Add Synopsys DWC OTG HCD interrupt function USB/ppc4xx: Add Synopsys DWC OTG HCD queue function USB/ppc4xx: Add Synopsys DWC OTG PCD function USB ppc4xx: Add Synopsys DWC OTG PCD interrupt function USB ppc4xx: Add Synopsys DWC OTG driver kernel configuration and Makefile USB/ppc4xx:Synopsys DWC OTG driver enable gadget support drivers/Makefile | 1 + drivers/usb/Kconfig | 2 + drivers/usb/gadget/Kconfig | 11 + drivers/usb/gadget/gadget_chips.h | 9 + drivers/usb/otg/dwc/Kconfig | 88 ++ drivers/usb/otg/dwc/Makefile | 19 + drivers/usb/otg/dwc/apmppc.c | 414 +++++++ drivers/usb/otg/dwc/cil.c | 972 +++++++++++++++ drivers/usb/otg/dwc/cil.h | 1177 ++++++++++++++++++ drivers/usb/otg/dwc/cil_intr.c | 616 +++++++++ drivers/usb/otg/dwc/driver.h | 76 ++ drivers/usb/otg/dwc/hcd.c | 2465 +++++++++++++++++++++++++++++++++++++ drivers/usb/otg/dwc/hcd.h | 416 +++++++ drivers/usb/otg/dwc/hcd_intr.c | 1477 ++++++++++++++++++++++ drivers/usb/otg/dwc/hcd_queue.c | 696 +++++++++++ drivers/usb/otg/dwc/param.c | 180 +++ drivers/usb/otg/dwc/pcd.c | 1766 ++++++++++++++++++++++++++ drivers/usb/otg/dwc/pcd.h | 139 +++ drivers/usb/otg/dwc/pcd_intr.c | 2311 ++++++++++++++++++++++++++++++++++ drivers/usb/otg/dwc/regs.h | 1326 ++++++++++++++++++++ 20 files changed, 14161 insertions(+), 0 deletions(-) create mode 100644 drivers/usb/otg/dwc/Kconfig create mode 100644 drivers/usb/otg/dwc/Makefile create mode 100644 drivers/usb/otg/dwc/apmppc.c create mode 100644 drivers/usb/otg/dwc/cil.c create mode 100644 drivers/usb/otg/dwc/cil.h create mode 100644 drivers/usb/otg/dwc/cil_intr.c create mode 100644 drivers/usb/otg/dwc/driver.h create mode 100644 drivers/usb/otg/dwc/hcd.c create mode 100644 drivers/usb/otg/dwc/hcd.h create mode 100644 drivers/usb/otg/dwc/hcd_intr.c create mode 100644 drivers/usb/otg/dwc/hcd_queue.c create mode 100644 drivers/usb/otg/dwc/param.c create mode 100644 drivers/usb/otg/dwc/pcd.c create mode 100644 drivers/usb/otg/dwc/pcd.h create mode 100644 drivers/usb/otg/dwc/pcd_intr.c create mode 100644 drivers/usb/otg/dwc/regs.h -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html