iommu.lists.linux-foundation.org archive mirror
 help / color / mirror / Atom feed
From: Rohit Agarwal <quic_rohiagar@quicinc.com>
To: agross@kernel.org, andersson@kernel.org,
	konrad.dybcio@linaro.org, robh+dt@kernel.org,
	krzysztof.kozlowski+dt@linaro.org, conor+dt@kernel.org,
	tglx@linutronix.de, maz@kernel.org, will@kernel.org,
	robin.murphy@arm.com, joro@8bytes.org, robimarko@gmail.com,
	quic_gurus@quicinc.com
Cc: linux-arm-msm@vger.kernel.org, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org, iommu@lists.linux.dev,
	Rohit Agarwal <quic_rohiagar@quicinc.com>
Subject: [PATCH 0/8] Add devicetree support for SDX75 Modem and IDP
Date: Fri, 19 May 2023 14:39:02 +0530	[thread overview]
Message-ID: <1684487350-30476-1-git-send-email-quic_rohiagar@quicinc.com> (raw)

Hi,

This series adds devicetree support for Qualcomm SDX75 platform and IDP
board. This series functionally depends on GCC and RPMh Clock support
series [1], and pinctrl support for SDX75 [2] which are under review.

With this current devicetree support, the IDP can boot into initramfsshell.

[1] https://lore.kernel.org/lkml/20230419133013.2563-3-quic_tdas@quicinc.com/
[2] https://lore.kernel.org/all/1684409015-25196-1-git-send-email-quic_rohiagar@quicinc.com/

Thanks,
Rohit.


Imran Shaik (1):
  arm64: dts: qcom: Add support for GCC and RPMHCC for SDX75

Rohit Agarwal (7):
  dt-bindings: arm: qcom: Document SDX75 platform and boards
  dt-bindings: firmware: scm: Add compatible for SDX75
  dt-bindings: interrupt-controller: Add SDX75 PDC compatible
  dt-bindings: arm-smmu: Add SDX75 SMMU compatible
  arm64: dts: qcom: Add SDX75 platform and IDP board support
  arm64: dts: qcom: Add QUPv3 UART console node for SDX75
  arm64: dts: qcom: Enable the QUPv3 UART console for SDX75

 Documentation/devicetree/bindings/arm/qcom.yaml    |   7 +
 .../devicetree/bindings/firmware/qcom,scm.yaml     |   1 +
 .../bindings/interrupt-controller/qcom,pdc.yaml    |   1 +
 .../devicetree/bindings/iommu/arm,smmu.yaml        |   1 +
 arch/arm64/boot/dts/qcom/Makefile                  |   1 +
 arch/arm64/boot/dts/qcom/sdx75-idp.dts             |  34 ++
 arch/arm64/boot/dts/qcom/sdx75.dtsi                | 618 +++++++++++++++++++++
 7 files changed, 663 insertions(+)
 create mode 100644 arch/arm64/boot/dts/qcom/sdx75-idp.dts
 create mode 100644 arch/arm64/boot/dts/qcom/sdx75.dtsi

-- 
2.7.4


             reply	other threads:[~2023-05-19  9:09 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-19  9:09 Rohit Agarwal [this message]
2023-05-19  9:09 ` [PATCH 1/8] dt-bindings: arm: qcom: Document SDX75 platform and boards Rohit Agarwal
2023-05-19 15:57   ` Conor Dooley
2023-05-19  9:09 ` [PATCH 2/8] dt-bindings: firmware: scm: Add compatible for SDX75 Rohit Agarwal
2023-05-19 16:00   ` Conor Dooley
2023-05-19  9:09 ` [PATCH 3/8] dt-bindings: interrupt-controller: Add SDX75 PDC compatible Rohit Agarwal
2023-05-19 15:58   ` Conor Dooley
2023-05-19  9:09 ` [PATCH 4/8] dt-bindings: arm-smmu: Add SDX75 SMMU compatible Rohit Agarwal
2023-05-19 16:00   ` Conor Dooley
2023-05-19  9:09 ` [PATCH 5/8] arm64: dts: qcom: Add SDX75 platform and IDP board support Rohit Agarwal
2023-05-19 17:28   ` Konrad Dybcio
2023-05-30 11:40     ` Rohit Agarwal
2023-05-30 17:49       ` Konrad Dybcio
2023-06-05  6:58         ` Rohit Agarwal
2023-05-19  9:09 ` [PATCH 6/8] arm64: dts: qcom: Add support for GCC and RPMHCC for SDX75 Rohit Agarwal
2023-05-20 10:08   ` kernel test robot
2023-05-26 20:59     ` Bjorn Andersson
2023-05-19  9:09 ` [PATCH 7/8] arm64: dts: qcom: Add QUPv3 UART console node " Rohit Agarwal
2023-05-19  9:09 ` [PATCH 8/8] arm64: dts: qcom: Enable the QUPv3 UART console " Rohit Agarwal
2023-06-05 16:35 ` [PATCH 0/8] Add devicetree support for SDX75 Modem and IDP Will Deacon

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=1684487350-30476-1-git-send-email-quic_rohiagar@quicinc.com \
    --to=quic_rohiagar@quicinc.com \
    --cc=agross@kernel.org \
    --cc=andersson@kernel.org \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=iommu@lists.linux.dev \
    --cc=joro@8bytes.org \
    --cc=konrad.dybcio@linaro.org \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=maz@kernel.org \
    --cc=quic_gurus@quicinc.com \
    --cc=robh+dt@kernel.org \
    --cc=robimarko@gmail.com \
    --cc=robin.murphy@arm.com \
    --cc=tglx@linutronix.de \
    --cc=will@kernel.org \
    /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).