mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Joao Pinto <Joao.Pinto@synopsys.com>
To: vinholikatti@gmail.com, julian.calaby@gmail.com,
	akinobu.mita@gmail.com, hch@infradead.org, arnd@arndb.de,
	mark.rutland@arm.com
Cc: gbroner@codeaurora.org, subhashj@codeaurora.org,
	CARLOS.PALMINHA@synopsys.com, ijc+devicetree@hellion.org.uk,
	linux-kernel@vger.kernel.org, linux-scsi@vger.kernel.org,
	devicetree@vger.kernel.org, Joao Pinto <Joao.Pinto@synopsys.com>
Subject: [PATCH v10 0/6] add support for DWC UFS Controller
Date: Fri,  4 Mar 2016 17:22:13 +0000	[thread overview]
Message-ID: <cover.1457111366.git.jpinto@synopsys.com> (raw)

The work consisted of:
- Fixed typo in ufshcd-pltfrm.c
- Tweak ufshcd.c for UFS 2.0 support
- Implement ufshcd-dwc which contains all DWC HW specific code
- Unipro attributes were added and new registers were added to the driver
- Implement a tc-dwc-g210 containing G210 MPHY specific code
- Implement a tc-dwc-g210 glue platform driver
- Implement a tc-dwc-g210 glue pci driver
- Documentation update

Remark: The individual patches are not atomic, depending on other patches of
the set. The patch set was made like this to improve readability.

Joao Pinto (6):
  fixed typo in ufshcd-pltfrm
  added UFS 2.0 capabilities
  added support for DesignWare Controller
  added support for Synopsys G210 Test Chip
  add TC G210 platform driver
  add TC G210 pci driver

 .../devicetree/bindings/ufs/tc-dwc-g210-pltfrm.txt |  26 ++
 .../devicetree/bindings/ufs/ufshcd-pltfrm.txt      |   4 +-
 MAINTAINERS                                        |   6 +
 drivers/scsi/ufs/Kconfig                           |  25 ++
 drivers/scsi/ufs/Makefile                          |   4 +
 drivers/scsi/ufs/tc-dwc-g210-pci.c                 | 178 ++++++++++++
 drivers/scsi/ufs/tc-dwc-g210-pltfrm.c              | 109 +++++++
 drivers/scsi/ufs/tc-dwc-g210.c                     | 315 +++++++++++++++++++++
 drivers/scsi/ufs/tc-dwc-g210.h                     |  19 ++
 drivers/scsi/ufs/ufshcd-dwc.c                      | 150 ++++++++++
 drivers/scsi/ufs/ufshcd-dwc.h                      |  26 ++
 drivers/scsi/ufs/ufshcd-pltfrm.c                   |   2 +-
 drivers/scsi/ufs/ufshcd.c                          |  29 +-
 drivers/scsi/ufs/ufshcd.h                          |   2 +
 drivers/scsi/ufs/ufshci-dwc.h                      |  42 +++
 drivers/scsi/ufs/ufshci.h                          |   1 +
 drivers/scsi/ufs/unipro.h                          |  39 +++
 17 files changed, 970 insertions(+), 7 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/ufs/tc-dwc-g210-pltfrm.txt
 create mode 100644 drivers/scsi/ufs/tc-dwc-g210-pci.c
 create mode 100644 drivers/scsi/ufs/tc-dwc-g210-pltfrm.c
 create mode 100644 drivers/scsi/ufs/tc-dwc-g210.c
 create mode 100644 drivers/scsi/ufs/tc-dwc-g210.h
 create mode 100644 drivers/scsi/ufs/ufshcd-dwc.c
 create mode 100644 drivers/scsi/ufs/ufshcd-dwc.h
 create mode 100644 drivers/scsi/ufs/ufshci-dwc.h

-- 
1.8.1.5

             reply	other threads:[~2016-03-04 17:21 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-04 17:22 Joao Pinto [this message]
2016-03-04 17:22 ` [PATCH v10 1/6] fixed typo in ufshcd-pltfrm Joao Pinto
2016-03-04 21:21   ` Arnd Bergmann
2016-03-04 17:22 ` [PATCH v10 2/6] added UFS 2.0 capabilities Joao Pinto
2016-03-04 21:08   ` Arnd Bergmann
2016-03-17 11:52   ` Rob Herring
2016-03-17 12:49   ` [RESEND] [PATCH v11 " Rob Herring
2016-03-29 10:41   ` Winkler, Tomas
2016-03-29 11:08     ` Joao Pinto
2016-03-29 11:33       ` Winkler, Tomas
2016-03-29 11:53         ` Joao Pinto
2016-03-04 17:22 ` [PATCH v10 3/6] added support for DesignWare Controller Joao Pinto
2016-03-04 21:09   ` Arnd Bergmann
2016-03-29 12:15   ` [RESEND] [PATCH v11 " Winkler, Tomas
2016-03-30  9:54     ` Joao Pinto
2016-03-04 17:22 ` [PATCH v10 4/6] added support for Synopsys G210 Test Chip Joao Pinto
2016-03-04 21:10   ` Arnd Bergmann
2016-03-04 17:22 ` [PATCH v10 5/6] add TC G210 platform driver Joao Pinto
2016-03-04 21:12   ` Arnd Bergmann
2016-03-07 10:02     ` Joao Pinto
2016-03-04 17:22 ` [PATCH v10 6/6] add TC G210 pci driver Joao Pinto
2016-03-04 21:17   ` Arnd Bergmann
2016-03-07 11:03     ` Joao Pinto
     [not found] ` <f12dcbcb9b83881a5f71460e2d6e1ab0f1e326d8.1457352207.git.jpinto@synopsys.com>
2016-03-07 12:09   ` [PATCH v11 5/6] add TC G210 platform driver Joao Pinto
2016-03-17 14:55     ` Rob Herring
2016-03-07 12:09   ` [PATCH v11 6/6] add-TC-G210-pci-driver Joao Pinto

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=cover.1457111366.git.jpinto@synopsys.com \
    --to=joao.pinto@synopsys.com \
    --cc=CARLOS.PALMINHA@synopsys.com \
    --cc=akinobu.mita@gmail.com \
    --cc=arnd@arndb.de \
    --cc=devicetree@vger.kernel.org \
    --cc=gbroner@codeaurora.org \
    --cc=hch@infradead.org \
    --cc=ijc+devicetree@hellion.org.uk \
    --cc=julian.calaby@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-scsi@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=subhashj@codeaurora.org \
    --cc=vinholikatti@gmail.com \
    /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

Powered by JetHome