* [PATCH V9 00/10] Add-Synopsys-DesignWare-HS-USB-OTG-driver
@ 2011-02-07 22:48 tmarri
0 siblings, 0 replies; 2+ messages in thread
From: tmarri @ 2011-02-07 22:48 UTC (permalink / raw)
To: linux-usb, linuxppc-dev; +Cc: tmarri, greg
From: Tirumala Marri <tmarri@apm.com>
v9:
1. Move the source under usb/otg/dwc.
2. Rename the source files with out dwc_otg prefix.
3. Remove unused read/write modify functions.
4. Including changes related to register base print.
v8:
1. Add set_wedge to usb_ep_ops.
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:Synopsys DWC OTG driver enable gadget support
USB ppc4xx: Add Synopsys DWC OTG driver kernel configuration and
Makefile
drivers/Makefile | 2 +
drivers/usb/Kconfig | 3 +-
drivers/usb/gadget/Kconfig | 22 +
drivers/usb/gadget/gadget_chips.h | 9 +
drivers/usb/otg/dwc/Kconfig | 96 ++
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 | 1179 ++++++++++++++++++
drivers/usb/otg/dwc/cil_intr.c | 616 +++++++++
drivers/usb/otg/dwc/driver.h | 76 ++
drivers/usb/otg/dwc/hcd.c | 2467 +++++++++++++++++++++++++++++++++++++
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 | 1765 ++++++++++++++++++++++++++
drivers/usb/otg/dwc/pcd.h | 139 +++
drivers/usb/otg/dwc/pcd_intr.c | 2311 ++++++++++++++++++++++++++++++++++
drivers/usb/otg/dwc/regs.h | 1325 ++++++++++++++++++++
20 files changed, 14183 insertions(+), 1 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
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH V9 00/10] Add-Synopsys-DesignWare-HS-USB-OTG-driver
@ 2011-02-07 22:53 tmarri
0 siblings, 0 replies; 2+ messages in thread
From: tmarri @ 2011-02-07 22:53 UTC (permalink / raw)
To: linux-usb, linuxppc-dev; +Cc: tmarri, greg
From: Tirumala Marri <tmarri@apm.com>
v9:
1. Move the source under usb/otg/dwc.
2. Rename the source files with out dwc_otg prefix.
3. Remove unused read/write modify functions.
4. Including changes related to register base print.
v8:
1. Add set_wedge to usb_ep_ops.
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:Synopsys DWC OTG driver enable gadget support
USB ppc4xx: Add Synopsys DWC OTG driver kernel configuration and
Makefile
drivers/Makefile | 2 +
drivers/usb/Kconfig | 3 +-
drivers/usb/gadget/Kconfig | 22 +
drivers/usb/gadget/gadget_chips.h | 9 +
drivers/usb/otg/dwc/Kconfig | 96 ++
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 | 1179 ++++++++++++++++++
drivers/usb/otg/dwc/cil_intr.c | 616 +++++++++
drivers/usb/otg/dwc/driver.h | 76 ++
drivers/usb/otg/dwc/hcd.c | 2467 +++++++++++++++++++++++++++++++++++++
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 | 1765 ++++++++++++++++++++++++++
drivers/usb/otg/dwc/pcd.h | 139 +++
drivers/usb/otg/dwc/pcd_intr.c | 2311 ++++++++++++++++++++++++++++++++++
drivers/usb/otg/dwc/regs.h | 1325 ++++++++++++++++++++
20 files changed, 14183 insertions(+), 1 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
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-02-07 22:53 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-07 22:48 [PATCH V9 00/10] Add-Synopsys-DesignWare-HS-USB-OTG-driver tmarri
-- strict thread matches above, loose matches on Subject: below --
2011-02-07 22:53 tmarri
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).