From: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
To: Konrad Dybcio <konrad.dybcio@linaro.org>,
Andy Gross <agross@kernel.org>,
Bjorn Andersson <andersson@kernel.org>,
Rob Clark <robdclark@gmail.com>, Sean Paul <sean@poorly.run>,
Abhinav Kumar <quic_abhinavk@quicinc.com>,
Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
Cc: Stephen Boyd <swboyd@chromium.org>,
David Airlie <airlied@gmail.com>, Daniel Vetter <daniel@ffwll.ch>,
linux-arm-msm@vger.kernel.org, devicetree@vger.kernel.org,
dri-devel@lists.freedesktop.org, freedreno@lists.freedesktop.org
Subject: Re: [PATCH 3/4] ARM: dts: qcom: apq8074-dragonboard: enable adsp and MSS
Date: Mon, 8 May 2023 21:01:58 +0300 [thread overview]
Message-ID: <c4775bde-9594-ab35-6765-5d2fe3e9f3b3@linaro.org> (raw)
In-Reply-To: <7b90ed61-7789-275d-a743-6065ab6ecdbb@linaro.org>
On 08/05/2023 13:49, Dmitry Baryshkov wrote:
> On 08/05/2023 13:38, Konrad Dybcio wrote:
>>
>>
>> On 8.05.2023 12:33, Dmitry Baryshkov wrote:
>>> On 08/05/2023 11:33, Konrad Dybcio wrote:
>>>>
>>>>
>>>> On 7.05.2023 21:07, Dmitry Baryshkov wrote:
>>>>> Enable ADSP and Modem DSPs on APQ8074 dragonboard. The MSS region
>>>>> differs from the one defined in the msm8974, so it overriden locally.
>>>>>
>>>>> The modem is specified use mba.mbn instead of mbn.b00 (for the sake of
>>>>> similarity with other platforms). This requires a patch for remoteproc
>>>>> to be applied [1].
>>>>>
>>>>> [1]
>>>>> https://lore.kernel.org/all/20230507172041.2320279-1-dmitry.baryshkov@linaro.org/
>>>>>
>>>>> Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
>>>>> ---
>>>>> .../arm/boot/dts/qcom-apq8074-dragonboard.dts | 28
>>>>> +++++++++++++++++++
>>>>> 1 file changed, 28 insertions(+)
>>>>>
>>>>> diff --git a/arch/arm/boot/dts/qcom-apq8074-dragonboard.dts
>>>>> b/arch/arm/boot/dts/qcom-apq8074-dragonboard.dts
>>>>> index 6b047c679370..c893afc00eb4 100644
>>>>> --- a/arch/arm/boot/dts/qcom-apq8074-dragonboard.dts
>>>>> +++ b/arch/arm/boot/dts/qcom-apq8074-dragonboard.dts
>>>>> @@ -4,6 +4,8 @@
>>>>> #include "qcom-pm8841.dtsi"
>>>>> #include "qcom-pm8941.dtsi"
>>>>> +/delete-node/ &mpss_region;
>>>>> +
>>>>> / {
>>>>> model = "Qualcomm APQ8074 Dragonboard";
>>>>> compatible = "qcom,apq8074-dragonboard", "qcom,apq8074";
>>>>> @@ -17,6 +19,13 @@ aliases {
>>>>> chosen {
>>>>> stdout-path = "serial0:115200n8";
>>>>> };
>>>>> +
>>>>> + reserved-memory {
>>>>> + mpss_region: mpss@ac00000 {
>>>>> + reg = <0x0ac00000 0x2500000>;
>>>>> + no-map;
>>>>> + };
>>>>> + };
>>>>> };
>>>>> &blsp1_uart2 {
>>>>> @@ -39,6 +48,25 @@ eeprom: eeprom@52 {
>>>>> };
>>>>> };
>>>>> +&remoteproc_adsp {
>>>>> + cx-supply = <&pm8841_s2>;
>>>>> +
>>>>> + firmware-name = "qcom/apq8074/adsp.mbn";
>>>>> +
>>>>> + status = "okay";
>>>>> +};
>>>>> +
>>>>> +&remoteproc_mss {
>>>>> + cx-supply = <&pm8841_s2>;
>>>>> + mss-supply = <&pm8841_s3>;
>>>>> + mx-supply = <&pm8841_s1>;
>>>>> + pll-supply = <&pm8941_l12>;
>>>> High time to move this to rpmpd!
>>>> I won't object to adding this though, as it obviously works
>>>> and is already used on other boards..
>>>
>>> I think the problem is that they are not level-voted on this
>>> platform, so they are regulators, not PDs.
>> They're corner-voted.
>
> Hmm. Indeed. In msm8974-regulators I see both voltage and corner entries
> for these regulators.
Checked. Only CX and GFX (yes, MX not included) are enabled as corners
in vendor dtsi. So this probably doesn't gain us a lot.
>
>>
>> Konrad
>>>
>>>>
>>>>> +
>>>>> + firmware-name = "qcom/apq8074/mba.mbn", "qcom/apq8074/modem.mbn";
>>>> Could you please keep it one entry per line?
>>>
>>> Sure.
>>>
>>>>
>>>> Otherwise,
>>>>
>>>> Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>
>>>>
>>>> Konrad
>>>>> +
>>>>> + status = "okay";
>>>>> +};
>>>>> +
>>>>> &rpm_requests {
>>>>> regulators-0 {
>>>>> compatible = "qcom,rpm-pm8841-regulators";
>>>
>
--
With best wishes
Dmitry
next prev parent reply other threads:[~2023-05-08 18:02 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-07 19:07 [PATCH 0/4] ARM: dts: qcom: apq8074-dragonboard enable DSI and remoteproc Dmitry Baryshkov
2023-05-07 19:07 ` [PATCH 1/4] ARM: dts: qcom: msm8974: add ocmem clock to GPU Dmitry Baryshkov
2023-05-08 8:30 ` Konrad Dybcio
2023-05-08 10:24 ` Dmitry Baryshkov
2023-05-08 10:28 ` Konrad Dybcio
2023-05-08 10:32 ` Dmitry Baryshkov
2023-05-08 10:37 ` Konrad Dybcio
2023-05-07 19:07 ` [PATCH 2/4] ARM: dts: qcom: apq8074-dragonboard: Set DMA as remotely controlled Dmitry Baryshkov
2023-05-08 8:32 ` Konrad Dybcio
2023-05-08 10:38 ` Dmitry Baryshkov
2023-05-07 19:07 ` [PATCH 3/4] ARM: dts: qcom: apq8074-dragonboard: enable adsp and MSS Dmitry Baryshkov
2023-05-08 8:33 ` Konrad Dybcio
2023-05-08 10:33 ` Dmitry Baryshkov
2023-05-08 10:38 ` Konrad Dybcio
2023-05-08 10:49 ` Dmitry Baryshkov
2023-05-08 18:01 ` Dmitry Baryshkov [this message]
2023-05-08 23:38 ` Dmitry Baryshkov
2023-05-09 8:13 ` Konrad Dybcio
2023-05-07 19:07 ` [PATCH 4/4] ARM: dts: qcom: apq8074-dragonboard: enable DSI panel Dmitry Baryshkov
2023-05-08 8:34 ` Konrad Dybcio
2023-05-08 10:33 ` Dmitry Baryshkov
2023-05-27 1:07 ` (subset) [PATCH 0/4] ARM: dts: qcom: apq8074-dragonboard enable DSI and remoteproc 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=c4775bde-9594-ab35-6765-5d2fe3e9f3b3@linaro.org \
--to=dmitry.baryshkov@linaro.org \
--cc=agross@kernel.org \
--cc=airlied@gmail.com \
--cc=andersson@kernel.org \
--cc=daniel@ffwll.ch \
--cc=devicetree@vger.kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=freedreno@lists.freedesktop.org \
--cc=konrad.dybcio@linaro.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=quic_abhinavk@quicinc.com \
--cc=robdclark@gmail.com \
--cc=robh+dt@kernel.org \
--cc=sean@poorly.run \
--cc=swboyd@chromium.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).