linux-usb.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 00/10] Initial MSM8953 & Fairphone 3 support
@ 2022-02-20 20:18 Luca Weiss
  2022-02-20 20:18 ` [PATCH v2 03/10] dt-bindings: usb: qcom,dwc3: Add msm8953 compatible Luca Weiss
  2022-02-24 20:54 ` (subset) [PATCH v2 00/10] Initial MSM8953 & Fairphone 3 support Bjorn Andersson
  0 siblings, 2 replies; 5+ messages in thread
From: Luca Weiss @ 2022-02-20 20:18 UTC (permalink / raw)
  To: linux-arm-msm
  Cc: ~postmarketos/upstreaming, phone-devel, Luca Weiss,
	Amit Kucheria, Bartosz Dudziak, Bjorn Andersson,
	Greg Kroah-Hartman, Hector Martin, Lorenzo Pieralisi,
	Manu Gautam, Mark Brown, Maxime Ripard, Rob Herring,
	Robin Murphy, Stephan Gerhold, Stephen Boyd, Sudeep Holla,
	Viresh Kumar, Zhang Rui, devicetree, linux-kernel, linux-pm,
	linux-remoteproc, linux-usb

This series adds initial support for MSM8953 (and SDM632 which is based
on MSM8953) and the Fairphone 3 smartphone.

Only relatively basic functionality is supported like storage, volume
keys and USB.

There is currently close-to-mainline support for other components for
this SoC including GPU, WiFi and audio, this series adds only basic
support so that the other components can start getting upstreamed
easier.

Changes in v2:
- rebase on linux-next and drop already applied patches
- drop msm8953-pm8953.dtsi patch: integrate changes into FP3 patch
- for individual patches for other changes

Luca Weiss (7):
  dt-bindings: mfd: qcom,tcsr: Document msm8953 compatible
  dt-bindings: thermal: tsens: Add msm8953 compatible
  dt-bindings: usb: qcom,dwc3: Add msm8953 compatible
  dt-bindings: arm: cpus: Add Kryo 250 CPUs
  rpmsg: smd: allow opening rpm_requests even if already opened
  dt-bindings: arm: qcom: Document sdm632 and fairphone,fp3 board
  arm64: dts: qcom: sdm632: Add device tree for Fairphone 3

Vladimir Lypak (3):
  arm64: dts: qcom: Add MSM8953 device tree
  arm64: dts: qcom: Add PM8953 PMIC
  arm64: dts: qcom: Add SDM632 device tree

 .../devicetree/bindings/arm/cpus.yaml         |    1 +
 .../devicetree/bindings/arm/qcom.yaml         |    6 +
 .../devicetree/bindings/mfd/qcom,tcsr.txt     |    1 +
 .../bindings/thermal/qcom-tsens.yaml          |    1 +
 .../devicetree/bindings/usb/qcom,dwc3.yaml    |    1 +
 arch/arm64/boot/dts/qcom/Makefile             |    1 +
 arch/arm64/boot/dts/qcom/msm8953.dtsi         | 1326 +++++++++++++++++
 arch/arm64/boot/dts/qcom/pm8953.dtsi          |   90 ++
 .../boot/dts/qcom/sdm632-fairphone-fp3.dts    |  183 +++
 arch/arm64/boot/dts/qcom/sdm632.dtsi          |   81 +
 drivers/rpmsg/qcom_smd.c                      |    5 +-
 11 files changed, 1695 insertions(+), 1 deletion(-)
 create mode 100644 arch/arm64/boot/dts/qcom/msm8953.dtsi
 create mode 100644 arch/arm64/boot/dts/qcom/pm8953.dtsi
 create mode 100644 arch/arm64/boot/dts/qcom/sdm632-fairphone-fp3.dts
 create mode 100644 arch/arm64/boot/dts/qcom/sdm632.dtsi

-- 
2.35.1


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

* [PATCH v2 03/10] dt-bindings: usb: qcom,dwc3: Add msm8953 compatible
  2022-02-20 20:18 [PATCH v2 00/10] Initial MSM8953 & Fairphone 3 support Luca Weiss
@ 2022-02-20 20:18 ` Luca Weiss
  2022-02-24 20:11   ` Bjorn Andersson
  2022-02-24 20:54 ` (subset) [PATCH v2 00/10] Initial MSM8953 & Fairphone 3 support Bjorn Andersson
  1 sibling, 1 reply; 5+ messages in thread
From: Luca Weiss @ 2022-02-20 20:18 UTC (permalink / raw)
  To: linux-arm-msm
  Cc: ~postmarketos/upstreaming, phone-devel, Luca Weiss,
	Konrad Dybcio, Rob Herring, Andy Gross, Bjorn Andersson,
	Greg Kroah-Hartman, Rob Herring, Krzysztof Kozlowski,
	Manu Gautam, linux-usb, devicetree, linux-kernel

Document the compatible string for the DWC3 controller in msm8953.

Signed-off-by: Luca Weiss <luca@z3ntu.xyz>
Acked-by: Konrad Dybcio <konrad.dybcio@somainline.org>
Acked-by: Rob Herring <robh@kernel.org>
---
Changes in v2:
- no changes

 Documentation/devicetree/bindings/usb/qcom,dwc3.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/usb/qcom,dwc3.yaml b/Documentation/devicetree/bindings/usb/qcom,dwc3.yaml
index 2d23a4ff702f..ce252db2aab3 100644
--- a/Documentation/devicetree/bindings/usb/qcom,dwc3.yaml
+++ b/Documentation/devicetree/bindings/usb/qcom,dwc3.yaml
@@ -16,6 +16,7 @@ properties:
           - qcom,ipq4019-dwc3
           - qcom,ipq6018-dwc3
           - qcom,ipq8064-dwc3
+          - qcom,msm8953-dwc3
           - qcom,msm8996-dwc3
           - qcom,msm8998-dwc3
           - qcom,sc7180-dwc3
-- 
2.35.1


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

* Re: [PATCH v2 03/10] dt-bindings: usb: qcom,dwc3: Add msm8953 compatible
  2022-02-20 20:18 ` [PATCH v2 03/10] dt-bindings: usb: qcom,dwc3: Add msm8953 compatible Luca Weiss
@ 2022-02-24 20:11   ` Bjorn Andersson
  2022-02-25  9:11     ` Greg Kroah-Hartman
  0 siblings, 1 reply; 5+ messages in thread
From: Bjorn Andersson @ 2022-02-24 20:11 UTC (permalink / raw)
  To: Luca Weiss, Greg Kroah-Hartman
  Cc: linux-arm-msm, ~postmarketos/upstreaming, phone-devel,
	Konrad Dybcio, Rob Herring, Andy Gross, Rob Herring,
	Krzysztof Kozlowski, Manu Gautam, linux-usb, devicetree,
	linux-kernel

On Sun 20 Feb 14:18 CST 2022, Luca Weiss wrote:

> Document the compatible string for the DWC3 controller in msm8953.
> 
> Signed-off-by: Luca Weiss <luca@z3ntu.xyz>
> Acked-by: Konrad Dybcio <konrad.dybcio@somainline.org>
> Acked-by: Rob Herring <robh@kernel.org>

Greg, can you please pick this patch through the USB tree.

Thanks,
Bjorn

> ---
> Changes in v2:
> - no changes
> 
>  Documentation/devicetree/bindings/usb/qcom,dwc3.yaml | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/Documentation/devicetree/bindings/usb/qcom,dwc3.yaml b/Documentation/devicetree/bindings/usb/qcom,dwc3.yaml
> index 2d23a4ff702f..ce252db2aab3 100644
> --- a/Documentation/devicetree/bindings/usb/qcom,dwc3.yaml
> +++ b/Documentation/devicetree/bindings/usb/qcom,dwc3.yaml
> @@ -16,6 +16,7 @@ properties:
>            - qcom,ipq4019-dwc3
>            - qcom,ipq6018-dwc3
>            - qcom,ipq8064-dwc3
> +          - qcom,msm8953-dwc3
>            - qcom,msm8996-dwc3
>            - qcom,msm8998-dwc3
>            - qcom,sc7180-dwc3
> -- 
> 2.35.1
> 

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

* Re: (subset) [PATCH v2 00/10] Initial MSM8953 & Fairphone 3 support
  2022-02-20 20:18 [PATCH v2 00/10] Initial MSM8953 & Fairphone 3 support Luca Weiss
  2022-02-20 20:18 ` [PATCH v2 03/10] dt-bindings: usb: qcom,dwc3: Add msm8953 compatible Luca Weiss
@ 2022-02-24 20:54 ` Bjorn Andersson
  1 sibling, 0 replies; 5+ messages in thread
From: Bjorn Andersson @ 2022-02-24 20:54 UTC (permalink / raw)
  To: Luca Weiss, linux-arm-msm
  Cc: Stephan Gerhold, ~postmarketos/upstreaming, Lorenzo Pieralisi,
	Zhang Rui, Greg Kroah-Hartman, linux-pm, Robin Murphy,
	Mark Brown, Manu Gautam, linux-usb, Bartosz Dudziak,
	Viresh Kumar, Stephen Boyd, linux-kernel, Hector Martin,
	Maxime Ripard, Sudeep Holla, devicetree, Rob Herring,
	linux-remoteproc, phone-devel, Amit Kucheria

On Sun, 20 Feb 2022 21:18:53 +0100, Luca Weiss wrote:
> This series adds initial support for MSM8953 (and SDM632 which is based
> on MSM8953) and the Fairphone 3 smartphone.
> 
> Only relatively basic functionality is supported like storage, volume
> keys and USB.
> 
> There is currently close-to-mainline support for other components for
> this SoC including GPU, WiFi and audio, this series adds only basic
> support so that the other components can start getting upstreamed
> easier.
> 
> [...]

Applied, thanks!

[04/10] dt-bindings: arm: cpus: Add Kryo 250 CPUs
        commit: 08b25f7d99e15f2aa5f4cce3f13ad0c67a4c1e34
[06/10] arm64: dts: qcom: Add MSM8953 device tree
        commit: 9fb08c8019234a0759aab66914f01bc0971e4eed
[07/10] arm64: dts: qcom: Add PM8953 PMIC
        commit: 06ea71e42975cdd43cc1e2dacd3e56c8693ac733
[08/10] arm64: dts: qcom: Add SDM632 device tree
        commit: 24af02271ca7cf095186963002d1d98349d9e5e5
[09/10] dt-bindings: arm: qcom: Document sdm632 and fairphone,fp3 board
        commit: cb898d5e59b41a268dcf4dbef31d651c393dfbae
[10/10] arm64: dts: qcom: sdm632: Add device tree for Fairphone 3
        commit: 308b26cddb04afc7776de1cbbe07172eeccc7c98

Best regards,
-- 
Bjorn Andersson <bjorn.andersson@linaro.org>

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

* Re: [PATCH v2 03/10] dt-bindings: usb: qcom,dwc3: Add msm8953 compatible
  2022-02-24 20:11   ` Bjorn Andersson
@ 2022-02-25  9:11     ` Greg Kroah-Hartman
  0 siblings, 0 replies; 5+ messages in thread
From: Greg Kroah-Hartman @ 2022-02-25  9:11 UTC (permalink / raw)
  To: Bjorn Andersson
  Cc: Luca Weiss, linux-arm-msm, ~postmarketos/upstreaming,
	phone-devel, Konrad Dybcio, Rob Herring, Andy Gross, Rob Herring,
	Krzysztof Kozlowski, Manu Gautam, linux-usb, devicetree,
	linux-kernel

On Thu, Feb 24, 2022 at 02:11:46PM -0600, Bjorn Andersson wrote:
> On Sun 20 Feb 14:18 CST 2022, Luca Weiss wrote:
> 
> > Document the compatible string for the DWC3 controller in msm8953.
> > 
> > Signed-off-by: Luca Weiss <luca@z3ntu.xyz>
> > Acked-by: Konrad Dybcio <konrad.dybcio@somainline.org>
> > Acked-by: Rob Herring <robh@kernel.org>
> 
> Greg, can you please pick this patch through the USB tree.

Will do, thanks.

gre gk-h

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

end of thread, other threads:[~2022-02-25  9:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-20 20:18 [PATCH v2 00/10] Initial MSM8953 & Fairphone 3 support Luca Weiss
2022-02-20 20:18 ` [PATCH v2 03/10] dt-bindings: usb: qcom,dwc3: Add msm8953 compatible Luca Weiss
2022-02-24 20:11   ` Bjorn Andersson
2022-02-25  9:11     ` Greg Kroah-Hartman
2022-02-24 20:54 ` (subset) [PATCH v2 00/10] Initial MSM8953 & Fairphone 3 support 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).