From: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
To: Markus Schneider-Pargmann <msp@baylibre.com>,
Michael Turquette <mturquette@baylibre.com>,
Stephen Boyd <sboyd@kernel.org>, Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
Matthias Brugger <matthias.bgg@gmail.com>,
Fabien Parent <parent.f@gmail.com>,
AngeloGioacchino Del Regno
<angelogioacchino.delregno@collabora.com>
Cc: linux-clk@vger.kernel.org, devicetree@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-mediatek@lists.infradead.org, linux-kernel@vger.kernel.org,
Fabien Parent <fparent@baylibre.com>
Subject: Re: [PATCH v3 1/4] dt-bindings: clock: mediatek: add bindings for MT8365 SoC
Date: Thu, 11 Aug 2022 11:50:05 +0300 [thread overview]
Message-ID: <efe20cbf-485c-548c-933c-ffddb6c81d02@linaro.org> (raw)
In-Reply-To: <20220811084433.2598575-2-msp@baylibre.com>
On 11/08/2022 11:44, Markus Schneider-Pargmann wrote:
> From: Fabien Parent <fparent@baylibre.com>
>
> Add the clock bindings for the MediaTek MT8365 SoC.
>
> Signed-off-by: Fabien Parent <fparent@baylibre.com>
> Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> Signed-off-by: Markus Schneider-Pargmann <msp@baylibre.com>
> ---
> .../bindings/clock/mediatek,mt8365-clock.yaml | 42 ++
> .../clock/mediatek,mt8365-sys-clock.yaml | 47 +++
> .../dt-bindings/clock/mediatek,mt8365-clk.h | 374 ++++++++++++++++++
> 3 files changed, 463 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/clock/mediatek,mt8365-clock.yaml
> create mode 100644 Documentation/devicetree/bindings/clock/mediatek,mt8365-sys-clock.yaml
> create mode 100644 include/dt-bindings/clock/mediatek,mt8365-clk.h
>
> diff --git a/Documentation/devicetree/bindings/clock/mediatek,mt8365-clock.yaml b/Documentation/devicetree/bindings/clock/mediatek,mt8365-clock.yaml
> new file mode 100644
> index 000000000000..31cd248e772b
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/clock/mediatek,mt8365-clock.yaml
> @@ -0,0 +1,42 @@
> +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: "http://devicetree.org/schemas/clock/mediatek,mt8365-clock.yaml#"
> +$schema: "http://devicetree.org/meta-schemas/core.yaml#"
No quotes needed in both lines.
> +
> +title: MediaTek Functional Clock Controller for MT8365
> +
> +maintainers:
> + - Fabien Parent <fparent@baylibre.com>
Are you sure this is correct and working email? Let's try not to add
non-existing emails to Git maintainers. It's a bit of pain to fix it
later. :/
> +
> +properties:
> + compatible:
> + items:
> + - enum:
> + - mediatek,mt8365-apu
> + - mediatek,mt8365-imgsys
> + - mediatek,mt8365-mfgcfg
> + - mediatek,mt8365-vdecsys
> + - mediatek,mt8365-vencsys
> + - const: syscon
> +
> + reg:
> + maxItems: 1
> +
> + '#clock-cells':
> + const: 1
> +
> +required:
> + - compatible
> + - reg
> + - '#clock-cells'
> +
> +additionalProperties: false
> +
> +examples:
> + - |
> + apu: clock-controller@19020000 {
> + compatible = "mediatek,mt8365-apu", "syscon";
> + reg = <0x19020000 0x1000>;
> + #clock-cells = <1>;
> + };
> diff --git a/Documentation/devicetree/bindings/clock/mediatek,mt8365-sys-clock.yaml b/Documentation/devicetree/bindings/clock/mediatek,mt8365-sys-clock.yaml
> new file mode 100644
> index 000000000000..4292a2fd1489
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/clock/mediatek,mt8365-sys-clock.yaml
> @@ -0,0 +1,47 @@
> +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: "http://devicetree.org/schemas/clock/mediatek,mt8365-sys-clock.yaml#"
> +$schema: "http://devicetree.org/meta-schemas/core.yaml#"
No quotes.
> +
> +title: MediaTek System Clock Controller for MT8365
> +
> +maintainers:
> + - Fabien Parent <fparent@baylibre.com>
Ekh...
> +
> +description:
> + The apmixedsys module provides most of PLLs which generated from SoC 26m.
> + The topckgen provides dividers and muxes which provides the clock source to other IP blocks.
> + The infracfg_ao and pericfg_ao provides clock gate in peripheral and infrastructure IP blocks.
> +
> +properties:
> + compatible:
> + items:
> + - enum:
> + - mediatek,mt8365-topckgen
> + - mediatek,mt8365-infracfg
> + - mediatek,mt8365-apmixedsys
> + - mediatek,mt8365-pericfg
> + - mediatek,mt8365-mcucfg
> + - const: syscon
> +
> + reg:
> + maxItems: 1
> +
> + '#clock-cells':
> + const: 1
> +
> +required:
> + - compatible
> + - reg
> + - '#clock-cells'
> +
> +additionalProperties: false
> +
> +examples:
> + - |
> + topckgen: clock-controller@10000000 {
> + compatible = "mediatek,mt8365-topckgen", "syscon";
> + reg = <0x10000000 0x1000>;
> + #clock-cells = <1>;
> + };
> diff --git a/include/dt-bindings/clock/mediatek,mt8365-clk.h b/include/dt-bindings/clock/mediatek,mt8365-clk.h
> new file mode 100644
> index 000000000000..aa8a0366caae
> --- /dev/null
> +++ b/include/dt-bindings/clock/mediatek,mt8365-clk.h
> @@ -0,0 +1,374 @@
> +/* SPDX-License-Identifier: GPL-2.0
Can you dual-license it?
> + *
> + * Copyright (c) 2022 MediaTek Inc.
Best regards,
Krzysztof
next prev parent reply other threads:[~2022-08-11 8:50 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-11 8:44 [PATCH v3 0/4] clk: mediatek: Add mt8365 support Markus Schneider-Pargmann
2022-08-11 8:44 ` [PATCH v3 1/4] dt-bindings: clock: mediatek: add bindings for MT8365 SoC Markus Schneider-Pargmann
2022-08-11 8:50 ` Krzysztof Kozlowski [this message]
2022-08-11 9:02 ` Markus Schneider-Pargmann
2022-08-11 8:44 ` [PATCH v3 2/4] clk: mediatek: Provide mtk_devm_alloc_clk_data Markus Schneider-Pargmann
2022-08-11 8:44 ` [PATCH v3 3/4] clk: mediatek: Export required common code symbols Markus Schneider-Pargmann
2022-08-11 8:44 ` [PATCH v3 4/4] clk: mediatek: add driver for MT8365 SoC Markus Schneider-Pargmann
2022-08-11 8:53 ` Krzysztof Kozlowski
2022-08-11 9:07 ` Markus Schneider-Pargmann
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=efe20cbf-485c-548c-933c-ffddb6c81d02@linaro.org \
--to=krzysztof.kozlowski@linaro.org \
--cc=angelogioacchino.delregno@collabora.com \
--cc=devicetree@vger.kernel.org \
--cc=fparent@baylibre.com \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=matthias.bgg@gmail.com \
--cc=msp@baylibre.com \
--cc=mturquette@baylibre.com \
--cc=parent.f@gmail.com \
--cc=robh+dt@kernel.org \
--cc=sboyd@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;
as well as URLs for NNTP newsgroup(s).