devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Luca Weiss <luca@z3ntu.xyz>
To: linux-arm-msm@vger.kernel.org
Cc: ~postmarketos/upstreaming@lists.sr.ht,
	phone-devel@vger.kernel.org, Luca Weiss <luca@z3ntu.xyz>,
	Amit Kucheria <amitk@kernel.org>,
	Bartosz Dudziak <bartosz.dudziak@snejp.pl>,
	Bjorn Andersson <bjorn.andersson@linaro.org>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Hector Martin <marcan@marcan.st>,
	Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>,
	Manu Gautam <mgautam@codeaurora.org>,
	Mark Brown <broonie@kernel.org>,
	Maxime Ripard <maxime@cerno.tech>, Rob Herring <robh@kernel.org>,
	Robin Murphy <robin.murphy@arm.com>,
	Stephan Gerhold <stephan@gerhold.net>,
	Stephen Boyd <sboyd@codeaurora.org>,
	Sudeep Holla <sudeep.holla@arm.com>,
	Viresh Kumar <viresh.kumar@linaro.org>,
	Zhang Rui <rui.zhang@intel.com>,
	devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-pm@vger.kernel.org, linux-remoteproc@vger.kernel.org,
	linux-usb@vger.kernel.org
Subject: [PATCH v2 00/10] Initial MSM8953 & Fairphone 3 support
Date: Sun, 20 Feb 2022 21:18:53 +0100	[thread overview]
Message-ID: <20220220201909.445468-1-luca@z3ntu.xyz> (raw)

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


             reply	other threads:[~2022-02-20 20:19 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-20 20:18 Luca Weiss [this message]
2022-02-20 20:18 ` [PATCH v2 01/10] dt-bindings: mfd: qcom,tcsr: Document msm8953 compatible Luca Weiss
2022-02-21  8:48   ` Lee Jones
2022-02-21 21:01     ` Luca Weiss
2022-02-22  7:53       ` Lee Jones
2022-02-20 20:18 ` [PATCH v2 02/10] dt-bindings: thermal: tsens: Add " Luca Weiss
2022-02-24 20:10   ` Bjorn Andersson
2022-02-25 11:39     ` Daniel Lezcano
2022-02-20 20:18 ` [PATCH v2 03/10] dt-bindings: usb: qcom,dwc3: " Luca Weiss
2022-02-24 20:11   ` Bjorn Andersson
2022-02-25  9:11     ` Greg Kroah-Hartman
2022-02-20 20:18 ` [PATCH v2 04/10] dt-bindings: arm: cpus: Add Kryo 250 CPUs Luca Weiss
2022-02-20 20:18 ` [PATCH v2 06/10] arm64: dts: qcom: Add MSM8953 device tree Luca Weiss
2022-02-20 20:19 ` [PATCH v2 07/10] arm64: dts: qcom: Add PM8953 PMIC Luca Weiss
2022-02-20 20:19 ` [PATCH v2 08/10] arm64: dts: qcom: Add SDM632 device tree Luca Weiss
2022-02-20 20:19 ` [PATCH v2 09/10] dt-bindings: arm: qcom: Document sdm632 and fairphone,fp3 board Luca Weiss
2022-02-20 20:19 ` [PATCH v2 10/10] arm64: dts: qcom: sdm632: Add device tree for Fairphone 3 Luca Weiss
2022-02-24 20:54 ` (subset) [PATCH v2 00/10] Initial MSM8953 & Fairphone 3 support Bjorn Andersson

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=20220220201909.445468-1-luca@z3ntu.xyz \
    --to=luca@z3ntu.xyz \
    --cc=amitk@kernel.org \
    --cc=bartosz.dudziak@snejp.pl \
    --cc=bjorn.andersson@linaro.org \
    --cc=broonie@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=linux-remoteproc@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=lorenzo.pieralisi@arm.com \
    --cc=marcan@marcan.st \
    --cc=maxime@cerno.tech \
    --cc=mgautam@codeaurora.org \
    --cc=phone-devel@vger.kernel.org \
    --cc=robh@kernel.org \
    --cc=robin.murphy@arm.com \
    --cc=rui.zhang@intel.com \
    --cc=sboyd@codeaurora.org \
    --cc=stephan@gerhold.net \
    --cc=sudeep.holla@arm.com \
    --cc=viresh.kumar@linaro.org \
    --cc=~postmarketos/upstreaming@lists.sr.ht \
    /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;
as well as URLs for NNTP newsgroup(s).