From: Jingyi Wang <jingyi.wang@oss.qualcomm.com>
To: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Cc: Bjorn Andersson <andersson@kernel.org>,
Mathieu Poirier <mathieu.poirier@linaro.org>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Manivannan Sadhasivam <mani@kernel.org>,
Konrad Dybcio <konradybcio@kernel.org>,
linux-arm-msm@vger.kernel.org, linux-remoteproc@vger.kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
aiqun.yu@oss.qualcomm.com, tingwei.zhang@oss.qualcomm.com,
trilok.soni@oss.qualcomm.com, yijie.yang@oss.qualcomm.com
Subject: Re: [PATCH 1/6] dt-bindings: remoteproc: qcom,sm8550-pas: Add Kaanapali ADSP
Date: Tue, 30 Sep 2025 10:12:27 +0800 [thread overview]
Message-ID: <0209a062-2763-4e50-adfa-3cbdbb35eaef@oss.qualcomm.com> (raw)
In-Reply-To: <go2koxtabrktc2noyrgehgeddavvsdz6qu6bnwkzqtnb2k4du5@3m5le25bfmpv>
On 9/29/2025 8:22 PM, Dmitry Baryshkov wrote:
> On Mon, Sep 29, 2025 at 06:11:23PM +0800, Jingyi Wang wrote:
>>
>>
>> On 9/29/2025 5:39 PM, Dmitry Baryshkov wrote:
>>> On Mon, Sep 29, 2025 at 02:06:11PM +0800, Jingyi Wang wrote:
>>>>
>>>>
>>>> On 9/25/2025 10:19 AM, Dmitry Baryshkov wrote:
>>>>> On Wed, Sep 24, 2025 at 04:37:22PM -0700, Jingyi Wang wrote:
>>>>>> Document compatible for Qualcomm Kaanapali SoC ADSP PAS which looks fully
>>>>>> compatible with SM8750, which can fallback to SM8550 except for one more
>>>>>> interrupt ("shutdown-ack").
>>>>>>
>>>>>> Signed-off-by: Jingyi Wang <jingyi.wang@oss.qualcomm.com>
>>>>>> ---
>>>>>> Documentation/devicetree/bindings/remoteproc/qcom,sm8550-pas.yaml | 6 +++++-
>>>>>> 1 file changed, 5 insertions(+), 1 deletion(-)
>>>>>>
>>>>>> diff --git a/Documentation/devicetree/bindings/remoteproc/qcom,sm8550-pas.yaml b/Documentation/devicetree/bindings/remoteproc/qcom,sm8550-pas.yaml
>>>>>> index 2dd479cf4821..be9e2a0bc060 100644
>>>>>> --- a/Documentation/devicetree/bindings/remoteproc/qcom,sm8550-pas.yaml
>>>>>> +++ b/Documentation/devicetree/bindings/remoteproc/qcom,sm8550-pas.yaml
>>>>>> @@ -28,7 +28,9 @@ properties:
>>>>>> - qcom,x1e80100-adsp-pas
>>>>>> - qcom,x1e80100-cdsp-pas
>>>>>> - items:
>>>>>> - - const: qcom,sm8750-adsp-pas
>>>>>> + - enum:
>>>>>> + - qcom,kaanapali-adsp-pas
>>>>>> + - qcom,sm8750-adsp-pas
>>>>>> - const: qcom,sm8550-adsp-pas
>>>>>> - items:
>>>>>> - const: qcom,sm8750-cdsp-pas
>>>>>> @@ -95,6 +97,7 @@ allOf:
>>>>>> compatible:
>>>>>> contains:
>>>>>> enum:
>>>>>> + - qcom,kaanapali-adsp-pas
>>>>>
>>>>> This one and the next entry are redundant. Do you see why?
>>>>>
>>>>
>>>> This one describe the interrupt:
>>>>
>>>> - if:
>>>> properties:
>>>> compatible:
>>>> contains:
>>>
>>>> enum:
>>>> - qcom,kaanapali-adsp-pas
>>>> - qcom,sm8750-adsp-pas
>>>
>>> It's still redundant. Don't you see it?
>>>
>>
>> sorry I didn't get your point here, could you explain more?
>
> For you device you have two compat strings, kaanapali and sm8750. This
> schema block is covered by 'if compat contains sm8750', so you don't
> need to add kaanapali to the if-case. You already hit this check thanks
> to the fallback compat.
>
Hi Dimitry,
our device contains sm8550, not sm8750.
Thanks,
Jingyi
>>
>>>> then:
>>>> properties:
>>>> interrupts:
>>>> maxItems: 6
>>>> interrupt-names:
>>>> maxItems: 6
>>>> memory-region:
>>>> maxItems: 2
>>>>
>>>>
>>>>>> - qcom,sm8750-adsp-pas
>>>>>> then:
>>>>>> properties:
>>>>>> @@ -185,6 +188,7 @@ allOf:
>>>>>> compatible:
>>>>>> contains:
>>>>>> enum:
>>>>>> + - qcom,kaanapali-adsp-pas
>>>>
>>>> This one describe the power domain
>>>>
>>>> - if:
>>>> properties:
>>>> compatible:
>>>> contains:
>>>> enum:
>>>> - qcom,kaanapali-adsp-pas
>>>> - qcom,sm8550-adsp-pas
>>>> - qcom,sm8650-adsp-pas
>>>> - qcom,sm8750-adsp-pas
>>>> - qcom,x1e80100-adsp-pas
>>>
>>> Likewise
>>>
>>
>> indeed, here is redundant as "qcom,sm8550-adsp-pas" is added in
>> the dts. I will remove this.
>>
>> Thanks,
>> Jingyi
>>
>>>> then:
>>>> properties:
>>>> power-domains:
>>>> items:
>>>> - description: LCX power domain
>>>> - description: LMX power domain
>>>> power-domain-names:
>>>> items:
>>>> - const: lcx
>>>> - const: lmx
>>>>
>>>>
>>>>>> - qcom,sm8550-adsp-pas
>>>>>> - qcom,sm8650-adsp-pas
>>>>>> - qcom,sm8750-adsp-pas
>>>>>>
>>>>>> --
>>>>>> 2.25.1
>>>>>>
>>>>>
>>>>
>>>> Thanks,
>>>> Jingyi
>>>
>>
>
next prev parent reply other threads:[~2025-09-30 2:12 UTC|newest]
Thread overview: 42+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-24 23:37 [PATCH 0/6] Add initial remoteproc support for Kaanapali SoC Jingyi Wang
2025-09-24 23:37 ` [PATCH 1/6] dt-bindings: remoteproc: qcom,sm8550-pas: Add Kaanapali ADSP Jingyi Wang
2025-09-25 2:19 ` Dmitry Baryshkov
2025-09-29 6:06 ` Jingyi Wang
2025-09-29 9:39 ` Dmitry Baryshkov
2025-09-29 10:11 ` Jingyi Wang
2025-09-29 12:22 ` Dmitry Baryshkov
2025-09-30 2:12 ` Jingyi Wang [this message]
2025-09-30 2:16 ` Dmitry Baryshkov
2025-09-30 2:54 ` Jingyi Wang
2025-09-24 23:37 ` [PATCH 2/6] dt-bindings: remoteproc: qcom,sm8550-pas: Add Kaanapali CDSP Jingyi Wang
2025-09-25 1:48 ` Krzysztof Kozłowski
2025-09-29 6:20 ` Jingyi Wang
2025-09-29 9:34 ` Dmitry Baryshkov
2025-09-29 9:41 ` Jingyi Wang
2025-09-29 10:03 ` Dmitry Baryshkov
2025-10-09 10:29 ` Krzysztof Kozlowski
2025-10-14 2:12 ` Jingyi Wang
2025-10-23 4:07 ` Jingyi Wang
2025-10-23 6:28 ` Krzysztof Kozlowski
2025-10-24 2:10 ` Jingyi Wang
2025-10-24 7:28 ` Krzysztof Kozlowski
2025-10-24 7:42 ` Jingyi Wang
2025-10-24 7:45 ` Krzysztof Kozlowski
2025-09-24 23:37 ` [PATCH 3/6] dt-bindings: remoteproc: qcom,sm8550-pas: Add Kaanapali MPSS Jingyi Wang
2025-10-09 10:30 ` Krzysztof Kozlowski
2025-09-24 23:37 ` [PATCH 4/6] dt-bindings: remoteproc: qcom,pas: Document pas for Kaanapali SoCCP Jingyi Wang
2025-10-09 10:27 ` Krzysztof Kozlowski
2025-10-14 4:28 ` Jingyi Wang
2025-10-14 4:47 ` Krzysztof Kozlowski
2025-10-14 5:30 ` Jingyi Wang
2025-10-14 21:57 ` Krzysztof Kozlowski
2025-09-24 23:37 ` [PATCH 5/6] remoteproc: qcom: pas: Add late attach support for subsystems Jingyi Wang
2025-09-25 3:04 ` Dmitry Baryshkov
2025-09-29 6:42 ` Jingyi Wang
2025-09-29 9:35 ` Dmitry Baryshkov
2025-09-29 10:29 ` Jingyi Wang
2025-09-25 5:56 ` Zhongqiu Han
2025-09-29 6:27 ` Jingyi Wang
2025-09-24 23:37 ` [PATCH 6/6] remoteproc: qcom_q6v5_pas: Add SoCCP node on Kaanapali Jingyi Wang
2025-09-25 11:42 ` Konrad Dybcio
2025-09-29 6:27 ` Jingyi Wang
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=0209a062-2763-4e50-adfa-3cbdbb35eaef@oss.qualcomm.com \
--to=jingyi.wang@oss.qualcomm.com \
--cc=aiqun.yu@oss.qualcomm.com \
--cc=andersson@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=linux-remoteproc@vger.kernel.org \
--cc=mani@kernel.org \
--cc=mathieu.poirier@linaro.org \
--cc=robh@kernel.org \
--cc=tingwei.zhang@oss.qualcomm.com \
--cc=trilok.soni@oss.qualcomm.com \
--cc=yijie.yang@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