* [PATCH V5 0/9] Add Synopsys DesignWare HS USB OTG driver
@ 2010-10-21 1:06 Fushen Chen
2010-10-21 4:03 ` Greg KH
0 siblings, 1 reply; 3+ messages in thread
From: Fushen Chen @ 2010-10-21 1:06 UTC (permalink / raw)
To: linux-usb; +Cc: linuxppc-dev, gregkh, Fushen Chen
This patch series add Synopsys DesignWare HS USB OTG driver support.
"PATCH V5" has a new license header from Synopsys and APM
Previous versions:
1. Addressed comment from Wolfgang Denk to sync with
git://git.denx.de/linux-2.6-denx.git.
2. Added bug fixes and features from Stefan Roese and Chuck Meade.
3. Removed dts file from this pathch per Sergei Shtylyov suggestion.
We'll submit a separate patch to PowerPC tree.
4. Modified driver to use generic USB OTG enumeration state.
5. Move Makefiles to the last patch per David Daney suggestion.
Fushen Chen (9):
Add Synopsys DesignWare HS USB OTG Control and Status Register (CSR).
Add Synopsys DesignWare HS USB OTG driver framework.
Add Synopsys DesignWare HS USB OTG Core Interface Layer (CIL).
Add Synopsys DesignWare HS USB OTG HCD function.
Add Synopsys DesignWare HS USB OTG HCD interrupt function.
Add Synopsys DesignWare HS USB OTG HCD queue function.
Add Synopsys DesignWare HS USB OTG PCD function.
Add Synopsys DesignWare HS USB OTG PCD interrupt function.
Add Synopsys DesignWare HS USB OTG driver kernel configuration and
Makefile.
drivers/Makefile | 1 +
drivers/usb/Kconfig | 2 +
drivers/usb/dwc_otg/Kconfig | 99 +
drivers/usb/dwc_otg/Makefile | 19 +
drivers/usb/dwc_otg/dwc_otg_apmppc.c | 394 ++++
drivers/usb/dwc_otg/dwc_otg_cil.c | 892 +++++++++
drivers/usb/dwc_otg/dwc_otg_cil.h | 1181 +++++++++++
drivers/usb/dwc_otg/dwc_otg_cil_intr.c | 618 ++++++
drivers/usb/dwc_otg/dwc_otg_driver.h | 78 +
drivers/usb/dwc_otg/dwc_otg_hcd.c | 2400 +++++++++++++++++++++++
drivers/usb/dwc_otg/dwc_otg_hcd.h | 413 ++++
drivers/usb/dwc_otg/dwc_otg_hcd_intr.c | 1465 ++++++++++++++
drivers/usb/dwc_otg/dwc_otg_hcd_queue.c | 697 +++++++
drivers/usb/dwc_otg/dwc_otg_param.c | 730 +++++++
drivers/usb/dwc_otg/dwc_otg_pcd.c | 1733 ++++++++++++++++
drivers/usb/dwc_otg/dwc_otg_pcd.h | 137 ++
drivers/usb/dwc_otg/dwc_otg_pcd_intr.c | 2262 +++++++++++++++++++++
drivers/usb/dwc_otg/dwc_otg_regs.h | 3269 +++++++++++++++++++++++++++++++
18 files changed, 16390 insertions(+), 0 deletions(-)
create mode 100644 drivers/usb/dwc_otg/Kconfig
create mode 100644 drivers/usb/dwc_otg/Makefile
create mode 100644 drivers/usb/dwc_otg/dwc_otg_apmppc.c
create mode 100644 drivers/usb/dwc_otg/dwc_otg_cil.c
create mode 100644 drivers/usb/dwc_otg/dwc_otg_cil.h
create mode 100644 drivers/usb/dwc_otg/dwc_otg_cil_intr.c
create mode 100644 drivers/usb/dwc_otg/dwc_otg_driver.h
create mode 100644 drivers/usb/dwc_otg/dwc_otg_hcd.c
create mode 100644 drivers/usb/dwc_otg/dwc_otg_hcd.h
create mode 100644 drivers/usb/dwc_otg/dwc_otg_hcd_intr.c
create mode 100644 drivers/usb/dwc_otg/dwc_otg_hcd_queue.c
create mode 100644 drivers/usb/dwc_otg/dwc_otg_param.c
create mode 100644 drivers/usb/dwc_otg/dwc_otg_pcd.c
create mode 100644 drivers/usb/dwc_otg/dwc_otg_pcd.h
create mode 100644 drivers/usb/dwc_otg/dwc_otg_pcd_intr.c
create mode 100644 drivers/usb/dwc_otg/dwc_otg_regs.h
--
1.7.3
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH V5 0/9] Add Synopsys DesignWare HS USB OTG driver
2010-10-21 1:06 [PATCH V5 0/9] Add Synopsys DesignWare HS USB OTG driver Fushen Chen
@ 2010-10-21 4:03 ` Greg KH
2010-10-21 16:04 ` fushen chen
0 siblings, 1 reply; 3+ messages in thread
From: Greg KH @ 2010-10-21 4:03 UTC (permalink / raw)
To: Fushen Chen; +Cc: linuxppc-dev, linux-usb, gregkh
On Wed, Oct 20, 2010 at 06:06:34PM -0700, Fushen Chen wrote:
> This patch series add Synopsys DesignWare HS USB OTG driver support.
Unfortunatly this is right at the start of the merge window for me,
which means it is past the window for anything new to go into .37. Can
you resend this after .37-rc1 comes out and I can review it at that
point in time?
thanks,
greg k-h
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH V5 0/9] Add Synopsys DesignWare HS USB OTG driver
2010-10-21 4:03 ` Greg KH
@ 2010-10-21 16:04 ` fushen chen
0 siblings, 0 replies; 3+ messages in thread
From: fushen chen @ 2010-10-21 16:04 UTC (permalink / raw)
To: Greg KH; +Cc: linuxppc-dev, linux-usb, gregkh
On Wed, 2010-10-20 at 21:03 -0700, Greg KH wrote:
> On Wed, Oct 20, 2010 at 06:06:34PM -0700, Fushen Chen wrote:
> > This patch series add Synopsys DesignWare HS USB OTG driver support.
>
> Unfortunatly this is right at the start of the merge window for me,
> which means it is past the window for anything new to go into .37. Can
> you resend this after .37-rc1 comes out and I can review it at that
> point in time?
Sure, I'll make another patch submit.
Thanks,
Fushen
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-10-21 16:05 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-21 1:06 [PATCH V5 0/9] Add Synopsys DesignWare HS USB OTG driver Fushen Chen
2010-10-21 4:03 ` Greg KH
2010-10-21 16:04 ` fushen chen
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).