All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC PATCH 0/8] dt-bindings: ufs: add common platform bindings + fixes
@ 2022-02-19 18:42 ` Krzysztof Kozlowski
  0 siblings, 0 replies; 30+ messages in thread
From: Krzysztof Kozlowski @ 2022-02-19 18:42 UTC (permalink / raw)
  To: Alim Akhtar, Avri Altman, Rob Herring, Krzysztof Kozlowski,
	Wei Xu, Andy Gross, Bjorn Andersson, Nishanth Menon,
	Vignesh Raghavendra, Tero Kristo, James E.J. Bottomley,
	Martin K. Petersen, Chanho Park, Srinivas Kandagatla, Jan Kotas,
	linux-scsi, devicetree, linux-kernel, linux-arm-kernel,
	linux-samsung-soc, linux-arm-msm

Hi,

Not tested, so please kindly test.

I am sending as RFC to gather some comments.  If it looks good, I will
convert other TXT bindings to DT schema format.

Dependencies
============
1. The DTS patches (5-8) depend on scsi/ufs driver change (patch 4), so
   they should go in a following release, after merging driver.

   This is also might affect out-of-tree users of these DTSes (other
   projects, e.g. U-boot).

Best regards,
Krzysztof

Krzysztof Kozlowski (8):
  dt-bindings: ufs: add common platform bindings
  dt-bindings: ufs: samsung,exynos-ufs: use common bindings
  dt-bindings: ufs: cdns,ufshc: convert to dtschema
  scsi: ufs: deprecate 'freq-table-hz' property
  arm64: dts: hi3670: use 'freq-table' in UFS node
  arm64: dts: exynos: use 'freq-table' in UFS node
  arm64: dts: qcom: use 'freq-table' in UFS node
  arm64: dts: ti: use 'freq-table' in UFS node

 .../devicetree/bindings/ufs/cdns,ufshc.txt    | 32 -------
 .../devicetree/bindings/ufs/cdns,ufshc.yaml   | 56 ++++++++++++
 .../bindings/ufs/samsung,exynos-ufs.yaml      | 10 +--
 .../devicetree/bindings/ufs/ti,j721e-ufs.yaml |  2 +-
 .../devicetree/bindings/ufs/ufs-common.yaml   | 86 +++++++++++++++++++
 .../devicetree/bindings/ufs/ufs-hisi.txt      |  4 +-
 MAINTAINERS                                   |  1 +
 arch/arm64/boot/dts/exynos/exynos7.dtsi       |  3 +-
 arch/arm64/boot/dts/exynos/exynosautov9.dtsi  |  3 +-
 arch/arm64/boot/dts/hisilicon/hi3670.dtsi     |  4 +-
 arch/arm64/boot/dts/qcom/msm8996.dtsi         | 23 +++--
 arch/arm64/boot/dts/qcom/msm8998.dtsi         | 17 ++--
 arch/arm64/boot/dts/qcom/sdm845.dtsi          | 19 ++--
 arch/arm64/boot/dts/qcom/sm8150.dtsi          | 19 ++--
 arch/arm64/boot/dts/qcom/sm8250.dtsi          | 17 ++--
 arch/arm64/boot/dts/qcom/sm8350.dtsi          | 19 ++--
 arch/arm64/boot/dts/qcom/sm8450.dtsi          | 17 ++--
 arch/arm64/boot/dts/ti/k3-j721e-main.dtsi     |  4 +-
 drivers/scsi/ufs/ufshcd-pltfrm.c              | 21 +++--
 19 files changed, 234 insertions(+), 123 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/ufs/cdns,ufshc.txt
 create mode 100644 Documentation/devicetree/bindings/ufs/cdns,ufshc.yaml
 create mode 100644 Documentation/devicetree/bindings/ufs/ufs-common.yaml

-- 
2.32.0


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

end of thread, other threads:[~2022-02-22 14:26 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-19 18:42 [RFC PATCH 0/8] dt-bindings: ufs: add common platform bindings + fixes Krzysztof Kozlowski
2022-02-19 18:42 ` Krzysztof Kozlowski
2022-02-19 18:42 ` [RFC PATCH 1/8] dt-bindings: ufs: add common platform bindings Krzysztof Kozlowski
2022-02-19 18:42   ` Krzysztof Kozlowski
2022-02-19 18:42 ` [RFC PATCH 2/8] dt-bindings: ufs: samsung,exynos-ufs: use common bindings Krzysztof Kozlowski
2022-02-19 18:42   ` [RFC PATCH 2/8] dt-bindings: ufs: samsung, exynos-ufs: " Krzysztof Kozlowski
2022-02-19 18:42 ` [RFC PATCH 3/8] dt-bindings: ufs: cdns,ufshc: convert to dtschema Krzysztof Kozlowski
2022-02-19 18:42   ` Krzysztof Kozlowski
2022-02-20 17:06   ` Krzysztof Kozlowski
2022-02-20 17:06     ` [RFC PATCH 3/8] dt-bindings: ufs: cdns, ufshc: " Krzysztof Kozlowski
2022-02-21  2:36   ` [RFC PATCH 3/8] dt-bindings: ufs: cdns,ufshc: " Rob Herring
2022-02-21  2:36     ` [RFC PATCH 3/8] dt-bindings: ufs: cdns, ufshc: " Rob Herring
2022-02-19 18:42 ` [RFC PATCH 4/8] scsi: ufs: deprecate 'freq-table-hz' property Krzysztof Kozlowski
2022-02-19 18:42   ` Krzysztof Kozlowski
2022-02-19 18:42 ` [RFC PATCH 5/8] arm64: dts: hi3670: use 'freq-table' in UFS node Krzysztof Kozlowski
2022-02-19 18:42   ` Krzysztof Kozlowski
2022-02-19 18:42 ` [RFC PATCH 6/8] arm64: dts: exynos: " Krzysztof Kozlowski
2022-02-19 18:42   ` Krzysztof Kozlowski
2022-02-19 18:44 ` [RFC PATCH 7/8] arm64: dts: qcom: " Krzysztof Kozlowski
2022-02-19 18:44   ` Krzysztof Kozlowski
2022-02-19 18:45 ` [RFC PATCH 8/8] arm64: dts: ti: " Krzysztof Kozlowski
2022-02-19 18:45   ` Krzysztof Kozlowski
2022-02-21 13:13   ` Nishanth Menon
2022-02-21 13:13     ` Nishanth Menon
2022-02-21 13:20     ` Krzysztof Kozlowski
2022-02-21 13:20       ` Krzysztof Kozlowski
2022-02-22 14:07       ` Nishanth Menon
2022-02-22 14:07         ` Nishanth Menon
2022-02-22 14:24         ` Krzysztof Kozlowski
2022-02-22 14:24           ` Krzysztof Kozlowski

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.