All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v8 0/5] scsi: ufs: add ufs driver code for Hisilicon Hi3660 SoC
@ 2018-02-13 10:14 ` Li Wei
  0 siblings, 0 replies; 59+ messages in thread
From: Li Wei @ 2018-02-13 10:14 UTC (permalink / raw)
  To: robh+dt, mark.rutland, xuwei5, catalin.marinas, will.deacon,
	vinholikatti, jejb, martin.petersen, khilman, arnd,
	gregory.clement, thomas.petazzoni, yamada.masahiro, riku.voipio,
	treding, krzk, eric, devicetree, linux-kernel, linux-arm-kernel,
	linux-scsi
  Cc: zangleigang, gengjianfeng, guodong.xu, zhangfei.gao, fengbaopeng,
	liwei213

This patchset adds driver support for UFS for Hi3660 SoC. It is verified on HiKey960 board.

Li Wei (5):
  scsi: ufs: add Hisilicon ufs driver code
  dt-bindings: scsi: ufs: add document for hisi-ufs
  arm64: dts: add ufs dts node
  arm64: defconfig: enable configs for Hisilicon ufs
  arm64: defconfig: enable f2fs and squashfs

 Documentation/devicetree/bindings/ufs/ufs-hisi.txt |  37 ++
 arch/arm64/boot/dts/hisilicon/hi3660.dtsi          |  19 +
 arch/arm64/configs/defconfig                       |  11 +
 drivers/scsi/ufs/Kconfig                           |   9 +
 drivers/scsi/ufs/Makefile                          |   1 +
 drivers/scsi/ufs/ufs-hisi.c                        | 623 +++++++++++++++++++++
 drivers/scsi/ufs/ufs-hisi.h                        | 116 ++++
 7 files changed, 816 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/ufs/ufs-hisi.txt
 create mode 100644 drivers/scsi/ufs/ufs-hisi.c
 create mode 100644 drivers/scsi/ufs/ufs-hisi.h

-- 
Major changes in v7:
 - solve review comments from Philippe Ombredanne.
   *use the new SPDX license ids instead of the GNU General Public License.

Major changes in v8:
 - solve review comments from zhangfei.
   *Add Version history.
 - solve review comments from Rob Herring.
   *remove freq-table-hz.
 -  solve review comments from Riku Voipio.
   *Add MODULE_DEVICE_TABLE for ufs driver.
2.15.0

^ permalink raw reply	[flat|nested] 59+ messages in thread

end of thread, other threads:[~2018-03-29  1:00 UTC | newest]

Thread overview: 59+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-13 10:14 [PATCH v8 0/5] scsi: ufs: add ufs driver code for Hisilicon Hi3660 SoC Li Wei
2018-02-13 10:14 ` Li Wei
2018-02-13 10:14 ` Li Wei
2018-02-13 10:14 ` [PATCH v8 1/5] scsi: ufs: add Hisilicon ufs driver code Li Wei
2018-02-13 10:14   ` Li Wei
2018-02-13 10:14   ` Li Wei
2018-02-13 10:14 ` [PATCH v8 2/5] dt-bindings: scsi: ufs: add document for hisi-ufs Li Wei
2018-02-13 10:14   ` Li Wei
2018-02-13 10:14   ` Li Wei
2018-02-19  3:03   ` Rob Herring
2018-02-19  3:03     ` Rob Herring
2018-02-19  3:03     ` Rob Herring
2018-02-19  9:57   ` Arnd Bergmann
2018-02-19  9:57     ` Arnd Bergmann
2018-02-19  9:57     ` Arnd Bergmann
2018-02-23  8:35     ` 答复: " liwei (CM)
2018-02-23  8:35       ` liwei (CM)
2018-02-23  8:35       ` liwei (CM)
2018-03-14  2:17     ` liwei (CM)
2018-03-14  2:17       ` liwei (CM)
2018-03-14  2:17       ` liwei (CM)
2018-03-23  2:22     ` liwei (CM)
2018-03-23  2:22       ` liwei (CM)
2018-03-23  2:22       ` liwei (CM)
2018-03-26  9:14       ` Arnd Bergmann
2018-03-26  9:14         ` Arnd Bergmann
2018-03-26 10:26         ` 答复: " liwei (CM)
2018-03-26 10:26           ` liwei (CM)
2018-03-26 10:26           ` liwei (CM)
2018-03-26 10:41           ` Arnd Bergmann
2018-03-26 10:41             ` Arnd Bergmann
2018-03-26 12:01             ` 答复: " liwei (CM)
2018-03-26 12:01               ` liwei (CM)
2018-03-26 12:01               ` liwei (CM)
2018-03-27  6:15             ` liwei (CM)
2018-03-27  6:15               ` liwei (CM)
2018-03-27  6:15               ` liwei (CM)
2018-03-28 12:49               ` Arnd Bergmann
2018-03-28 12:49                 ` Arnd Bergmann
2018-03-29  1:00                 ` 答复: " liwei (CM)
2018-03-29  1:00                   ` liwei (CM)
2018-03-29  1:00                   ` liwei (CM)
2018-02-13 10:14 ` [PATCH v8 3/5] arm64: dts: add ufs dts node Li Wei
2018-02-13 10:14   ` Li Wei
2018-02-13 10:14   ` Li Wei
2018-03-08 16:57   ` Wei Xu
2018-03-08 16:57     ` Wei Xu
2018-03-08 16:57     ` Wei Xu
2018-02-13 10:14 ` [PATCH v8 4/5] arm64: defconfig: enable configs for Hisilicon ufs Li Wei
2018-02-13 10:14   ` Li Wei
2018-02-13 10:14   ` Li Wei
2018-02-13 10:14 ` [PATCH v8 5/5] arm64: defconfig: enable f2fs and squashfs Li Wei
2018-02-13 10:14   ` Li Wei
2018-02-13 10:14   ` Li Wei
2018-02-15 23:51 ` [PATCH v8 0/5] scsi: ufs: add ufs driver code for Hisilicon Hi3660 SoC Martin K. Petersen
2018-02-15 23:51   ` Martin K. Petersen
2018-02-15 23:51   ` Martin K. Petersen
2018-02-23  7:47   ` 答复: " liwei (CM)
2018-02-23  7:47     ` liwei (CM)

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.