devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Konrad Dybcio <konradybcio@kernel.org>
To: Danila Tikhonov <danila@jiaxyga.com>,
	robh@kernel.org, krzk+dt@kernel.org, conor+dt@kernel.org,
	andersson@kernel.org, konradybcio@kernel.org,
	davem@davemloft.net, edumazet@google.com, kuba@kernel.org,
	pabeni@redhat.com, rafael@kernel.org, viresh.kumar@linaro.org,
	kees@kernel.org, tony.luck@intel.com, gpiccoli@igalia.com,
	ulf.hansson@linaro.org, andre.przywara@arm.com,
	quic_rjendra@quicinc.com, davidwronek@gmail.com,
	neil.armstrong@linaro.org, heiko.stuebner@cherry.de,
	rafal@milecki.pl, macromorgan@hotmail.com,
	linus.walleij@linaro.org, lpieralisi@kernel.org,
	dmitry.baryshkov@linaro.org, fekz115@gmail.com
Cc: devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-arm-msm@vger.kernel.org, netdev@vger.kernel.org,
	linux-pm@vger.kernel.org, linux-hardening@vger.kernel.org
Subject: Re: [PATCH v2 08/11] arm64: dts: qcom: Add SM7325 device tree
Date: Tue, 27 Aug 2024 12:45:06 +0200	[thread overview]
Message-ID: <36e775f9-b17f-4979-91a8-227931f6c4ea@kernel.org> (raw)
In-Reply-To: <16b934a2-790a-4ac4-8ff5-40371bba17fc@jiaxyga.com>

On 21.08.2024 12:53 AM, Danila Tikhonov wrote:
> On 8/20/24 03:48, Konrad Dybcio wrote:
>> On 8.08.2024 8:40 PM, Danila Tikhonov wrote:
>>> From: Eugene Lepshy <fekz115@gmail.com>
>>>
>>> The Snapdragon 778G (SM7325) / 778G+ (SM7325-AE) / 782G (SM7325-AF)
>>> is software-wise very similar to the Snapdragon 7c+ Gen 3 (SC7280).
>>>
>>> It uses the Kryo670.
>>>
>>> Signed-off-by: Eugene Lepshy <fekz115@gmail.com>
>>> Signed-off-by: Danila Tikhonov <danila@jiaxyga.com>
>>> Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
>>> ---
>>>   arch/arm64/boot/dts/qcom/sm7325.dtsi | 17 +++++++++++++++++
>>>   1 file changed, 17 insertions(+)
>>>   create mode 100644 arch/arm64/boot/dts/qcom/sm7325.dtsi
>>>
>>> diff --git a/arch/arm64/boot/dts/qcom/sm7325.dtsi b/arch/arm64/boot/dts/qcom/sm7325.dtsi
>>> new file mode 100644
>>> index 000000000000..5b4574484412
>>> --- /dev/null
>>> +++ b/arch/arm64/boot/dts/qcom/sm7325.dtsi
>>> @@ -0,0 +1,17 @@
>>> +// SPDX-License-Identifier: BSD-3-Clause
>>> +/*
>>> + * Copyright (c) 2024, Eugene Lepshy <fekz115@gmail.com>
>>> + * Copyright (c) 2024, Danila Tikhonov <danila@jiaxyga.com>
>>> + */
>>> +
>>> +#include "sc7280.dtsi"
>>> +
>>> +/* SM7325 uses Kryo 670 */
>>> +&CPU0 { compatible = "qcom,kryo670"; };
>>> +&CPU1 { compatible = "qcom,kryo670"; };
>>> +&CPU2 { compatible = "qcom,kryo670"; };
>>> +&CPU3 { compatible = "qcom,kryo670"; };
>>> +&CPU4 { compatible = "qcom,kryo670"; };
>>> +&CPU5 { compatible = "qcom,kryo670"; };
>>> +&CPU6 { compatible = "qcom,kryo670"; };
>>> +&CPU7 { compatible = "qcom,kryo670"; };
>> This is a meaningless marketing name. As you mentioned in your
>> reply, cpu0-3 and cpu4-7 are wholly different (maybe cpu7 even
>> has a different MIDR part num?), we should do something about it :/
>>
>> Please post the output of `dmesg | grep "Booted secondary processor"`
>>
>> Konrad
> Sure:
> [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x412fd050]
> [    0.020670] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]
> [    0.036781] CPU2: Booted secondary processor 0x0000000200 [0x412fd050]
> [    0.052717] CPU3: Booted secondary processor 0x0000000300 [0x412fd050]
> [    0.070194] CPU4: Booted secondary processor 0x0000000400 [0x411fd411]
> [    0.089236] CPU5: Booted secondary processor 0x0000000500 [0x411fd411]
> [    0.109298] CPU6: Booted secondary processor 0x0000000600 [0x411fd411]
> [    0.126140] CPU7: Booted secondary processor 0x0000000700 [0x411fd411]

0x41 is Arm Ltd

0xd41 is CA78, 0xd05 is CA55

Konrad

  reply	other threads:[~2024-08-27 10:45 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-08-08 18:40 [PATCH v2 00/11] Add Nothing Phone (1) support Danila Tikhonov
2024-08-08 18:40 ` [PATCH v2 01/11] dt-bindings: arm: qcom,ids: Add IDs for SM7325 family Danila Tikhonov
2024-08-08 18:40 ` [PATCH v2 02/11] soc: qcom: socinfo: Add Soc " Danila Tikhonov
2024-08-08 18:40 ` [PATCH v2 03/11] cpufreq: Add SM7325 to cpufreq-dt-platdev blocklist Danila Tikhonov
2024-08-16  2:59   ` Viresh Kumar
2024-08-08 18:40 ` [PATCH v2 04/11] soc: qcom: pd_mapper: Add SM7325 compatible Danila Tikhonov
2024-08-08 18:40 ` [PATCH v2 05/11] dt-bindings: soc: qcom: qcom,pmic-glink: Document " Danila Tikhonov
2024-08-09  6:10   ` Krzysztof Kozlowski
2024-08-08 18:40 ` [PATCH v2 06/11] dt-bindings: nfc: nxp,nci: Document PN553 compatible Danila Tikhonov
2024-08-09  5:39   ` Krzysztof Kozlowski
2024-08-09 17:38     ` Danila Tikhonov
2024-08-13 19:33     ` Rob Herring
2024-08-14  6:00       ` Krzysztof Kozlowski
2024-08-13 19:33   ` Rob Herring (Arm)
2024-08-08 18:40 ` [PATCH v2 07/11] dt-bindings: arm: cpus: Add qcom kryo670 compatible Danila Tikhonov
2024-08-08 18:40 ` [PATCH v2 08/11] arm64: dts: qcom: Add SM7325 device tree Danila Tikhonov
2024-08-08 21:38   ` Rob Herring
2024-08-17 18:09     ` Danila Tikhonov
2024-08-18 19:33     ` Danila Tikhonov
2024-08-20  0:48   ` Konrad Dybcio
2024-08-20 22:53     ` Danila Tikhonov
2024-08-27 10:45       ` Konrad Dybcio [this message]
2024-08-08 18:40 ` [PATCH v2 09/11] dt-bindings: vendor-prefixes: Add Nothing Technology Limited Danila Tikhonov
2024-08-08 18:40 ` [PATCH v2 10/11] dt-bindings: arm: qcom: Add SM7325 Nothing Phone 1 Danila Tikhonov
2024-08-08 18:40 ` [PATCH v2 11/11] arm64: dts: qcom: sm7325: Add device-tree for " Danila Tikhonov
2024-08-12 15:09 ` [PATCH v2 00/11] Add Nothing Phone (1) support Rob Herring (Arm)
2024-08-15 21:56 ` (subset) " 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=36e775f9-b17f-4979-91a8-227931f6c4ea@kernel.org \
    --to=konradybcio@kernel.org \
    --cc=andersson@kernel.org \
    --cc=andre.przywara@arm.com \
    --cc=conor+dt@kernel.org \
    --cc=danila@jiaxyga.com \
    --cc=davem@davemloft.net \
    --cc=davidwronek@gmail.com \
    --cc=devicetree@vger.kernel.org \
    --cc=dmitry.baryshkov@linaro.org \
    --cc=edumazet@google.com \
    --cc=fekz115@gmail.com \
    --cc=gpiccoli@igalia.com \
    --cc=heiko.stuebner@cherry.de \
    --cc=kees@kernel.org \
    --cc=krzk+dt@kernel.org \
    --cc=kuba@kernel.org \
    --cc=linus.walleij@linaro.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-hardening@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=lpieralisi@kernel.org \
    --cc=macromorgan@hotmail.com \
    --cc=neil.armstrong@linaro.org \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=quic_rjendra@quicinc.com \
    --cc=rafael@kernel.org \
    --cc=rafal@milecki.pl \
    --cc=robh@kernel.org \
    --cc=tony.luck@intel.com \
    --cc=ulf.hansson@linaro.org \
    --cc=viresh.kumar@linaro.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).