Devicetree
 help / color / mirror / Atom feed
From: Deepti Jaggi <deepti.jaggi@oss.qualcomm.com>
To: Bartosz Golaszewski <brgl@kernel.org>
Cc: linux-arm-msm@vger.kernel.org, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org,
	Prasad Sodagudi <prasad.sodagudi@oss.qualcomm.com>,
	Nikunj Kela <quic_nkela@quicinc.com>,
	Shazad Hussain <shazad.hussain@oss.qualcomm.com>,
	Bjorn Andersson <andersson@kernel.org>,
	Konrad Dybcio <konradybcio@kernel.org>,
	Rob Herring <robh@kernel.org>,
	Krzysztof Kozlowski <krzk+dt@kernel.org>,
	Conor Dooley <conor+dt@kernel.org>,
	Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Subject: Re: [PATCH v5 2/3] arm64: dts: qcom: Introduce sa8255p SoC
Date: Mon, 16 Mar 2026 12:08:27 -0700	[thread overview]
Message-ID: <5761930a-6023-4340-ab84-6f29b710b6fc@oss.qualcomm.com> (raw)
In-Reply-To: <CAMRc=MdWSU82R-tGor5uP=UqosoV6Hjmpn03XdqAgVzhprSGpw@mail.gmail.com>


On 3/11/2026 6:31 AM, Bartosz Golaszewski wrote:
> On Thu, 5 Mar 2026 05:28:29 +0100, Deepti Jaggi
> <deepti.jaggi@oss.qualcomm.com> said:
>> From: Nikunj Kela <quic_nkela@quicinc.com>
>>
>> Introduce base device tree support for sa8255p Qualcomm's automotive
>> infotainment SoC. The base dt file describes core SoC components- CPUs,
>> CPU map, ipcc, QUP,  geni UART, interrupt controller, TLMM, reserved
>> memory, SMMU, firmware scm, scmi, watchdog, SRAM, PSCI, ufs, pcie, pmu
>> nodes and enable booting to shell with ramdisk.
>>
>> The Qualcomm automotive sa8255p SoC utilizes firmware to configure
>> platform resources such as clocks, interconnects, and TLMM. Device drivers
>> request these resources through the SCMI power,reset and performance
>> protocols. Assign each device driver a dedicated SCMI channel and Tx/Rx
>> doorbells to support parallel resource requests and aggregation in the
>> SCMI platform server. Operate the SCMI server stack in an SMP-enabled VM,
>> using the Qualcomm SMC/HVC transport driver for communication.
>>
>> Group resource operations to improve abstraction and reduce the number of
>> SCMI requests. Follow the SCMI-based resource management approach
>> demonstrated by Qualcomm at LinaroConnect 2024.[1]
>>
>> Limit initial support to basic platform resources, serial console, ufs
>> and pcie.Defer enabling USB, and Ethernet to subsequent updates.
>>
>> [1]: https://resources.linaro.org/en/resource/wfnfEwBhRjLV1PEAJoDDte
>>
>> Co-developed-by: Shazad Hussain <shazad.hussain@oss.qualcomm.com>
>> Signed-off-by: Shazad Hussain <shazad.hussain@oss.qualcomm.com>
>> Signed-off-by: Nikunj Kela <quic_nkela@quicinc.com>
>> Co-developed-by: Deepti Jaggi <deepti.jaggi@oss.qualcomm.com>
>> Signed-off-by: Deepti Jaggi <deepti.jaggi@oss.qualcomm.com>
>> ---
> Just some nits, looks good to me.

Thanks for reviewing the series.

>
>>  arch/arm64/boot/dts/qcom/sa8255p.dtsi | 4861 +++++++++++++++++++++++++++++++++
>>  1 file changed, 4861 insertions(+)
>>
>> diff --git a/arch/arm64/boot/dts/qcom/sa8255p.dtsi b/arch/arm64/boot/dts/qcom/sa8255p.dtsi
>> new file mode 100644
>> index 000000000000..4f8529db70f6
>> --- /dev/null
>> +++ b/arch/arm64/boot/dts/qcom/sa8255p.dtsi
>> @@ -0,0 +1,4861 @@
>> +// SPDX-License-Identifier: BSD-3-Clause
>> +/*
>> + * Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.
>> + */
>> +
>> +#include <dt-bindings/interrupt-controller/arm-gic.h>
>> +#include <dt-bindings/mailbox/qcom-ipcc.h>
>> +
>> +/ {
>> +	interrupt-parent = <&intc>;
>> +
>> +	#address-cells = <2>;
>> +	#size-cells = <2>;
>> +
>> +	clocks {
> Stray newline.

Ack

>> +
>> +		bi_tcxo_div2: bi-tcxo-div2-clk {
>> +			compatible = "fixed-factor-clock";
>> +			clocks = <&xo_board_clk>;
>> +			clock-mult = <1>;
>> +			clock-div = <2>;
>> +			#clock-cells = <0>;
>> +		};
>> +
>> +
> [snip]
>
>> +	firmware: firmware {
> You never use this label.

Ack, will drop the label 

> [snip]
>
> Stray newline? Same elsewhere.

Ack , will fix all the stray newlines.

>
> With that:
>
> Reviewed-by: Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com>
Thanks,
Deepti

  reply	other threads:[~2026-03-16 19:09 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-05  4:28 [PATCH v5 0/3] arm64: dts: qcom: Introduce sa8255p platform device tree Deepti Jaggi
2026-03-05  4:28 ` [PATCH v5 1/3] dt-bindings: arm: qcom: add SA8255p Ride board Deepti Jaggi
2026-03-11 13:20   ` Bartosz Golaszewski
2026-03-05  4:28 ` [PATCH v5 2/3] arm64: dts: qcom: Introduce sa8255p SoC Deepti Jaggi
2026-03-11 13:31   ` Bartosz Golaszewski
2026-03-16 19:08     ` Deepti Jaggi [this message]
2026-03-11 13:41   ` Konrad Dybcio
2026-03-15  6:51     ` Shazad Hussain
2026-03-16 23:58     ` Deepti Jaggi
2026-03-23 11:07       ` Konrad Dybcio
2026-03-25  3:40   ` Shawn Guo
2026-03-05  4:28 ` [PATCH v5 3/3] arm64: dts: qcom: sa8255p: Enable sa8255p-ride board support Deepti Jaggi
2026-03-11 13:32   ` Bartosz Golaszewski

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=5761930a-6023-4340-ab84-6f29b710b6fc@oss.qualcomm.com \
    --to=deepti.jaggi@oss.qualcomm.com \
    --cc=andersson@kernel.org \
    --cc=brgl@kernel.org \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=dmitry.baryshkov@oss.qualcomm.com \
    --cc=konradybcio@kernel.org \
    --cc=krzk+dt@kernel.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=prasad.sodagudi@oss.qualcomm.com \
    --cc=quic_nkela@quicinc.com \
    --cc=robh@kernel.org \
    --cc=shazad.hussain@oss.qualcomm.com \
    /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