linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
From: Fushen Chen <fchen@apm.com>
To: linux-usb@vger.kernel.org
Cc: linuxppc-dev@ozlabs.org, gregkh@suse.de, Fushen Chen <fchen@apm.com>
Subject: [PATCH V5 0/9] *** Add Synopsys DesignWare HS USB OTG driver ***
Date: Wed, 20 Oct 2010 17:42:43 -0700	[thread overview]
Message-ID: <12876217721253-git-send-email-fchen@apm.com> (raw)

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

             reply	other threads:[~2010-10-21  0:59 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-10-21  0:42 Fushen Chen [this message]
2010-10-21  0:42 ` [PATCH V5 1/9] Add Synopsys DesignWare HS USB OTG Control and Status Register (CSR) Fushen Chen
2010-10-21  0:42   ` [PATCH V5 2/9] Add Synopsys DesignWare HS USB OTG driver framework Fushen Chen
2010-10-21  0:42     ` [PATCH V5 3/9] Add Synopsys DesignWare HS USB OTG Core Interface Layer (CIL) Fushen Chen
2010-10-21  0:42       ` [PATCH V5 4/9] Add Synopsys DesignWare HS USB OTG HCD function Fushen Chen
2010-10-21  0:42         ` [PATCH V5 5/9] Add Synopsys DesignWare HS USB OTG HCD interrupt function Fushen Chen
2010-10-21  0:42           ` [PATCH V5 6/9] Add Synopsys DesignWare HS USB OTG HCD queue function Fushen Chen
2010-10-21  0:42             ` [PATCH V5 7/9] Add Synopsys DesignWare HS USB OTG PCD function Fushen Chen
2010-10-21  0:42               ` [PATCH V5 8/9] Add Synopsys DesignWare HS USB OTG PCD interrupt function Fushen Chen
2010-10-21  0:42                 ` [PATCH V5 9/9] Add Synopsys DesignWare HS USB OTG driver kernel configuration and Makefile Fushen Chen
2010-10-21 17:49                   ` David Daney
2010-10-21  6:18     ` [PATCH V5 2/9] Add Synopsys DesignWare HS USB OTG driver framework Felipe Balbi
2010-10-21  9:12     ` Alan Cox
2010-10-21  6:10   ` [PATCH V5 1/9] Add Synopsys DesignWare HS USB OTG Control and Status Register (CSR) Felipe Balbi
2010-10-21  9:06   ` Alan Cox

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=12876217721253-git-send-email-fchen@apm.com \
    --to=fchen@apm.com \
    --cc=gregkh@suse.de \
    --cc=linux-usb@vger.kernel.org \
    --cc=linuxppc-dev@ozlabs.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).