devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v4 0/8] Add UFS support for SC7180/SM7125
@ 2024-01-21 16:57 David Wronek
  2024-01-21 16:57 ` [PATCH v4 1/8] dt-bindings: crypto: ice: Document SC7180 inline crypto engine David Wronek
                   ` (9 more replies)
  0 siblings, 10 replies; 18+ messages in thread
From: David Wronek @ 2024-01-21 16:57 UTC (permalink / raw)
  To: Bjorn Andersson, Konrad Dybcio, Herbert Xu, David S. Miller,
	Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Manivannan Sadhasivam, Alim Akhtar, Avri Altman, Bart Van Assche,
	Andy Gross, Vinod Koul, Kishon Vijay Abraham I,
	cros-qcom-dts-watchers
  Cc: linux-arm-msm, linux-crypto, devicetree, linux-kernel, linux-scsi,
	linux-phy, ~postmarketos/upstreaming, David Wronek, Rob Herring,
	Krzysztof Kozlowski, Dmitry Baryshkov, Joe Mason

This patchset introduces UFS support for SC7180 and SM7125, as well as
support for the Xiaomi Redmi Note 9S.

To: Bjorn Andersson <andersson@kernel.org>
To: Konrad Dybcio <konrad.dybcio@linaro.org>
To: Herbert Xu <herbert@gondor.apana.org.au>
To: David S. Miller <davem@davemloft.net>
To: Rob Herring <robh+dt@kernel.org>
To: Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
To: Conor Dooley <conor+dt@kernel.org>
To: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
To: Alim Akhtar <alim.akhtar@samsung.com>
To: Avri Altman <avri.altman@wdc.com>
To: Bart Van Assche <bvanassche@acm.org>
To: Andy Gross <agross@kernel.org>
To: Vinod Koul <vkoul@kernel.org>
To: Kishon Vijay Abraham I <kishon@kernel.org>
To:  <cros-qcom-dts-watchers@chromium.org>
Cc:  <linux-arm-msm@vger.kernel.org>
Cc:  <linux-crypto@vger.kernel.org>
Cc:  <devicetree@vger.kernel.org>
Cc:  <linux-kernel@vger.kernel.org>
Cc:  <linux-scsi@vger.kernel.org>
Cc:  <linux-phy@lists.infradead.org>
CC:  <~postmarketos/upstreaming@lists.sr.ht>

Signed-off-by: David Wronek <davidwronek@gmail.com>
---
Changes in v4:
 - Add Reviewed-by tag from Dmitry Baryshkov to fifth patch

Changes in v3:
 - Use SM7150 UFS PHY compatible as a fallback
 - Fix dts style issues
 - Add regulator-allow-set-load and allowed-modes to UFS regulators

Changes in v2:
 - Fix device tree binding for QMP PHY
 - Separate ICE into its own node
 - Fix style problems in sc7180.dtsi

---
David Wronek (7):
      dt-bindings: crypto: ice: Document SC7180 inline crypto engine
      dt-bindings: ufs: qcom: Add SC7180 compatible string
      dt-bindings: phy: Add QMP UFS PHY compatible for SC7180
      dt-bindings: arm: qcom: Add Xiaomi Redmi Note 9S
      phy: qcom: qmp-ufs: Add SC7180 support
      arm64: dts: qcom: sc7180: Add UFS nodes
      arm64: dts: qcom: sm7125-xiaomi-common: Add UFS nodes

Joe Mason (1):
      arm64: dts: qcom: Add support for Xiaomi Redmi Note 9S

 Documentation/devicetree/bindings/arm/qcom.yaml    |  1 +
 .../bindings/crypto/qcom,inline-crypto-engine.yaml |  1 +
 .../bindings/phy/qcom,sc8280xp-qmp-ufs-phy.yaml    |  2 +
 .../devicetree/bindings/ufs/qcom,ufs.yaml          |  2 +
 arch/arm64/boot/dts/qcom/Makefile                  |  1 +
 arch/arm64/boot/dts/qcom/sc7180.dtsi               | 70 ++++++++++++++++++++++
 arch/arm64/boot/dts/qcom/sm7125-xiaomi-common.dtsi | 28 +++++++++
 arch/arm64/boot/dts/qcom/sm7125-xiaomi-curtana.dts | 16 +++++
 drivers/phy/qualcomm/phy-qcom-qmp-ufs.c            |  3 +
 9 files changed, 124 insertions(+)
---
base-commit: ad5c60d66016e544c51ed98635a74073f761f45d
change-id: 20240121-sm7125-upstream-68072e5794bb

Best regards,
-- 
David Wronek <davidwronek@gmail.com>


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

end of thread, other threads:[~2024-03-05 18:53 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-21 16:57 [PATCH v4 0/8] Add UFS support for SC7180/SM7125 David Wronek
2024-01-21 16:57 ` [PATCH v4 1/8] dt-bindings: crypto: ice: Document SC7180 inline crypto engine David Wronek
2024-01-26  9:09   ` Herbert Xu
2024-01-21 16:57 ` [PATCH v4 2/8] dt-bindings: ufs: qcom: Add SC7180 compatible string David Wronek
2024-02-12 22:22   ` Rob Herring
2024-02-13 10:29     ` Dmitry Baryshkov
2024-02-13 18:11       ` Rob Herring
2024-02-14  8:56         ` Krzysztof Kozlowski
2024-03-05 18:53         ` Rob Herring
2024-01-21 16:57 ` [PATCH v4 3/8] dt-bindings: phy: Add QMP UFS PHY compatible for SC7180 David Wronek
2024-02-12 22:21   ` Rob Herring
2024-01-21 16:57 ` [PATCH v4 4/8] dt-bindings: arm: qcom: Add Xiaomi Redmi Note 9S David Wronek
2024-01-21 16:57 ` [PATCH v4 5/8] phy: qcom: qmp-ufs: Add SC7180 support David Wronek
2024-01-21 16:57 ` [PATCH v4 6/8] arm64: dts: qcom: sc7180: Add UFS nodes David Wronek
2024-01-21 16:57 ` [PATCH v4 7/8] arm64: dts: qcom: sm7125-xiaomi-common: " David Wronek
2024-01-21 16:57 ` [PATCH v4 8/8] arm64: dts: qcom: Add support for Xiaomi Redmi Note 9S David Wronek
2024-01-23 14:20 ` (subset) [PATCH v4 0/8] Add UFS support for SC7180/SM7125 Vinod Koul
2024-02-01 21:53 ` Bjorn Andersson

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).