From: "Allen-KH Cheng (程冠勳)" <Allen-KH.Cheng@mediatek.com>
To: "matthias.bgg@gmail.com" <matthias.bgg@gmail.com>,
"ikjn@chromium.org" <ikjn@chromium.org>,
"krzysztof.kozlowski@linaro.org" <krzysztof.kozlowski@linaro.org>,
"sboyd@kernel.org" <sboyd@kernel.org>,
"robh+dt@kernel.org" <robh+dt@kernel.org>,
"krzysztof.kozlowski+dt@linaro.org"
<krzysztof.kozlowski+dt@linaro.org>,
"Chun-Jie Chen (陳浚桀)" <Chun-Jie.Chen@mediatek.com>
Cc: "linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"linux-mediatek@lists.infradead.org"
<linux-mediatek@lists.infradead.org>,
"wenst@chromium.org" <wenst@chromium.org>,
"angelogioacchino.delregno@collabora.com"
<angelogioacchino.delregno@collabora.com>,
Project_Global_Chrome_Upstream_Group
<Project_Global_Chrome_Upstream_Group@mediatek.com>,
"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>
Subject: Re: [PATCH 3/4] dt-bindings: arm: mediatek: Add missing power-domains property
Date: Tue, 20 Dec 2022 12:49:50 +0000 [thread overview]
Message-ID: <f4f9c2cdb60e09b1fc3c07a59b3d02a031a27a32.camel@mediatek.com> (raw)
In-Reply-To: <3bad1a29-6457-8958-64c2-a0002c7959a1@linaro.org>
Hi Krzysztof,
Thanks for the reminder.
On Fri, 2022-12-16 at 11:58 +0100, Krzysztof Kozlowski wrote:
> On 15/12/2022 13:00, Allen-KH Cheng wrote:
> > The "mediatek,mt8192-scp_adsp" binding requires a power domain to
> > be
> > specified.
> >
> > Fixes: 4a803990aeb1 ("dt-bindings: ARM: Mediatek: Add new document
> > bindings of MT8192 clock")
> > Signed-off-by: Allen-KH Cheng <allen-kh.cheng@mediatek.com>
> > ---
> > .../arm/mediatek/mediatek,mt8192-clock.yaml | 17
> > +++++++++++++++++
> > 1 file changed, 17 insertions(+)
> >
> > diff --git
> > a/Documentation/devicetree/bindings/arm/mediatek/mediatek,mt8192-
> > clock.yaml
> > b/Documentation/devicetree/bindings/arm/mediatek/mediatek,mt8192-
> > clock.yaml
> > index b57cc2e69efb..cbedef114103 100644
> > ---
> > a/Documentation/devicetree/bindings/arm/mediatek/mediatek,mt8192-
> > clock.yaml
> > +++
> > b/Documentation/devicetree/bindings/arm/mediatek/mediatek,mt8192-
> > clock.yaml
> > @@ -40,6 +40,9 @@ properties:
> > reg:
> > maxItems: 1
> >
> > + power-domains:
> > + maxItems: 1
> > +
> > '#clock-cells':
> > const: 1
> >
> > @@ -49,11 +52,25 @@ required:
> >
> > additionalProperties: false
> >
> > +allOf:
>
> allOf goes just before additionalProperties.
>
ok, I will fix this.
> > + - if:
> > + properties:
> > + compatible:
> > + contains:
> > + enum:
> > + - mediatek,mt8192-scp_adsp
>
> For the future: please don't use underscores in compatibles.
>
Noted!
Thanks,
Allen
> > + then:
> > + required:
> > + - power-domains
> > +
> > examples:
> > - |
> > + #include <dt-bindings/power/mt8192-power.h>
> > +
> > scp_adsp: clock-controller@10720000 {
> > compatible = "mediatek,mt8192-scp_adsp";
> > reg = <0x10720000 0x1000>;
> > + power-domains = <&spm MT8192_POWER_DOMAIN_ADSP>;
> > #clock-cells = <1>;
> > };
> >
>
> Best regards,
> Krzysztof
>
next prev parent reply other threads:[~2022-12-20 12:50 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-12-15 12:00 [PATCH 0/4] Add ADSP power domains controller support for MT8192 Allen-KH Cheng
2022-12-15 12:00 ` [PATCH 1/4] dt-bindings: power: Add MT8192 ADSP power domain Allen-KH Cheng
2022-12-16 10:56 ` Krzysztof Kozlowski
2022-12-15 12:00 ` [PATCH 2/4] soc: mediatek: pm-domains: Add ADSP power domain data for MT8192 Allen-KH Cheng
2022-12-16 11:15 ` Matthias Brugger
2022-12-20 2:36 ` Allen-KH Cheng (程冠勳)
2022-12-15 12:00 ` [PATCH 3/4] dt-bindings: arm: mediatek: Add missing power-domains property Allen-KH Cheng
2022-12-16 10:58 ` Krzysztof Kozlowski
2022-12-20 12:49 ` Allen-KH Cheng (程冠勳) [this message]
2022-12-15 12:00 ` [PATCH 4/4] arm64: dts: mediatek: Add the missing ADSP power domains controller for MT8192 Allen-KH Cheng
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=f4f9c2cdb60e09b1fc3c07a59b3d02a031a27a32.camel@mediatek.com \
--to=allen-kh.cheng@mediatek.com \
--cc=Chun-Jie.Chen@mediatek.com \
--cc=Project_Global_Chrome_Upstream_Group@mediatek.com \
--cc=angelogioacchino.delregno@collabora.com \
--cc=devicetree@vger.kernel.org \
--cc=ikjn@chromium.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=krzysztof.kozlowski@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=matthias.bgg@gmail.com \
--cc=robh+dt@kernel.org \
--cc=sboyd@kernel.org \
--cc=wenst@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).