From: "Friday Yang (杨阳)" <Friday.Yang@mediatek.com>
To: "robh@kernel.org" <robh@kernel.org>,
"matthias.bgg@gmail.com" <matthias.bgg@gmail.com>,
"conor+dt@kernel.org" <conor+dt@kernel.org>,
"krzk@kernel.org" <krzk@kernel.org>,
AngeloGioacchino Del Regno
<angelogioacchino.delregno@collabora.com>
Cc: "p.zabel@pengutronix.de" <p.zabel@pengutronix.de>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"Yong Wu (吴勇)" <Yong.Wu@mediatek.com>,
"linux-mediatek@lists.infradead.org"
<linux-mediatek@lists.infradead.org>,
Project_Global_Chrome_Upstream_Group
<Project_Global_Chrome_Upstream_Group@mediatek.com>,
"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
"linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH 1/4] dt-bindings: memory: mediatek: Add mt8188 SMI reset control binding
Date: Thu, 24 Oct 2024 01:28:42 +0000 [thread overview]
Message-ID: <02881ae482cfe256b40955c81929a5f5ea72142b.camel@mediatek.com> (raw)
In-Reply-To: <ef942c52-9a07-4f32-92b8-cd96021ac451@kernel.org>
On Wed, 2024-08-21 at 10:54 +0200, Krzysztof Kozlowski wrote:
>
> External email : Please do not click links or open attachments until
> you have verified the sender or the content.
> On 21/08/2024 10:26, friday.yang wrote:
> > To support SMI clamp and reset operation in genpd callback, add
> > SMI LARB reset register offset and mask related information in
> > the bindings. Add index in mt8188-resets.h to query the register
> > offset and mask in the SMI reset control driver.
> >
> > Signed-off-by: friday.yang <friday.yang@mediatek.com>
>
> User proper full name instead of login.
>
Thanks for your comments and sorry for replying so late.
I will fix it to Friday Yang <friday.yang@mediatek.com>.
>
> Please use subject prefixes matching the subsystem. You can get them
> for
> example with `git log --oneline -- DIRECTORY_OR_FILE` on the
> directory
> your patch is touching. For bindings, the preferred subjects are
> explained here:
>
https://www.kernel.org/doc/html/latest/devicetree/bindings/submitting-patches.html#i-for-patch-submitters
>
I have already used this command `git log --oneline Documentation/devicetree/bindings/reset/`If you think it is inappropriate, how about this one?
'dt-bindings: reset: mediatek,mt8188-smi: Add SMI reset control binding
for MT8188'
> > ---
> > .../bindings/reset/mediatek,smi-reset.yaml | 46
> +++++++++++++++++++
> > include/dt-bindings/reset/mt8188-resets.h | 11 +++++
> > 2 files changed, 57 insertions(+)
> > create mode 100644
> Documentation/devicetree/bindings/reset/mediatek,smi-reset.yaml
> >
> > diff --git a/Documentation/devicetree/bindings/reset/mediatek,smi-
> reset.yaml b/Documentation/devicetree/bindings/reset/mediatek,smi-
> reset.yaml
> > new file mode 100644
> > index 000000000000..66ac121d2396
> > --- /dev/null
> > +++ b/Documentation/devicetree/bindings/reset/mediatek,smi-
> reset.yaml
> > @@ -0,0 +1,46 @@
> > +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> > +# Copyright (c) 2024 MediaTek Inc.
> > +%YAML 1.2
> > +---
> > +$id: http://devicetree.org/schemas/reset/mediatek,smi-reset.yaml#
> > +$schema: http://devicetree.org/meta-schemas/core.yaml#
> > +
> > +title: MediaTek SMI Reset Controller
> > +
> > +maintainers:
> > + - Friday Yang <friday.yang@mediatek.com>
> > +
> > +description: |
> > + This reset controller node is used to perform reset management
> > + of SMI larbs on MediaTek platform. It is used to implement
> various
> > + reset functions required when SMI larbs apply clamp operation.
> > +
> > + For list of all valid reset indices see
> > + <dt-bindings/reset/mt8188-resets.h> for MT8188.
> > +
> > +properties:
> > + compatible:
> > + enum:
> > + - mediatek,smi-reset-mt8188
>
> Wrong placement of soc. It's mediatek,mt8189-whatever
>
Thanks, I will fix it to 'mediatek,mt8188-smi-reset'.
> > +
> > + "#reset-cells":
> > + const: 1
> > +
> > + mediatek,larb-rst-syscon:
> > + $ref: /schemas/types.yaml#/definitions/phandle
> > + description: phandle of the SMI larb's reset controller
> syscon.
>
> Explain what is it used for.
>
I will add the descriton like this, is this clear for you?
When SMI larb power on/off, we need larb clamp and reset to avoid bus
glitch, this is to improve bus protect.
The reset controller node is used to update regmap to implement larb
reset function.
> > +
> > +required:
> > + - compatible
> > + - "#reset-cells"
> > + - mediatek,larb-rst-syscon
> > +
> > +additionalProperties: false
> > +
> > +examples:
> > + - |
> > + imgsys1_dip_top_rst: reset-controller {
>
> Drop label
I see marvell,berlin2-reset.yaml, which also have a label.
Do you mean we should remove imgsys1_dip_top_rst, just use
'reset-controller' here.
>
> > + compatible = "mediatek,smi-reset-mt8188";
>
> Use 4 spaces for example indentation.
>
OK, I will use spaces instead of tab.
> > + #reset-cells = <1>;
> > + mediatek,larb-rst-syscon = <&imgsys1_dip_top>;
> > + };
>
>
> Best regards,
> Krzysztof
>
next prev parent reply other threads:[~2024-10-24 1:28 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-21 8:26 [PATCH 0/4] Add SMI clamp and reset friday.yang
2024-08-21 8:26 ` [PATCH 1/4] dt-bindings: memory: mediatek: Add mt8188 SMI reset control binding friday.yang
2024-08-21 8:54 ` Krzysztof Kozlowski
2024-10-24 1:28 ` Friday Yang (杨阳) [this message]
2024-08-21 9:28 ` Krzysztof Kozlowski
2024-08-22 8:05 ` Krzysztof Kozlowski
2024-08-21 8:26 ` [PATCH 2/4] dt-bindings: memory: mediatek: Add smi-sub-common property for reset friday.yang
2024-08-21 8:55 ` Krzysztof Kozlowski
2024-10-24 1:28 ` Friday Yang (杨阳)
2024-10-24 6:38 ` Krzysztof Kozlowski
2024-10-25 9:32 ` Friday Yang (杨阳)
2024-10-24 11:59 ` AngeloGioacchino Del Regno
2024-10-25 9:33 ` Friday Yang (杨阳)
2024-08-21 8:26 ` [PATCH 3/4] memory: mtk-smi: mt8188: Add SMI clamp function friday.yang
2024-08-21 9:00 ` Krzysztof Kozlowski
2024-10-24 1:29 ` Friday Yang (杨阳)
2024-10-24 11:56 ` AngeloGioacchino Del Regno
2024-10-25 9:33 ` Friday Yang (杨阳)
2024-10-29 6:32 ` Krzysztof Kozlowski
2024-08-21 8:26 ` [PATCH 4/4] reset: mediatek: Add reset control driver for SMI friday.yang
2024-08-21 8:58 ` Krzysztof Kozlowski
2024-10-24 1:29 ` Friday Yang (杨阳)
2024-10-29 6:35 ` Krzysztof Kozlowski
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=02881ae482cfe256b40955c81929a5f5ea72142b.camel@mediatek.com \
--to=friday.yang@mediatek.com \
--cc=Project_Global_Chrome_Upstream_Group@mediatek.com \
--cc=Yong.Wu@mediatek.com \
--cc=angelogioacchino.delregno@collabora.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=krzk@kernel.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=p.zabel@pengutronix.de \
--cc=robh@kernel.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