From: Krzysztof Kozlowski <krzk@kernel.org>
To: Yu-Chun Lin <eleanor.lin@realtek.com>
Cc: mturquette@baylibre.com, sboyd@kernel.org, robh@kernel.org,
krzk+dt@kernel.org, conor+dt@kernel.org, p.zabel@pengutronix.de,
cylee12@realtek.com, jyanchou@realtek.com,
devicetree@vger.kernel.org, linux-clk@vger.kernel.org,
linux-kernel@vger.kernel.org, james.tai@realtek.com,
cy.huang@realtek.com, stanley_chang@realtek.com
Subject: Re: [PATCH v2 1/9] dt-bindings: clock: Add Realtek RTD1625 Clock & Reset Controller
Date: Wed, 14 Jan 2026 09:46:25 +0100 [thread overview]
Message-ID: <20260114-nice-quick-salmon-cace2f@quoll> (raw)
In-Reply-To: <20260113112333.821-2-eleanor.lin@realtek.com>
On Tue, Jan 13, 2026 at 07:23:24PM +0800, Yu-Chun Lin wrote:
> Add DT binding schema for Realtek RTD1625 clock and reset controller
>
> Co-developed-by: Cheng-Yu Lee <cylee12@realtek.com>
> Signed-off-by: Cheng-Yu Lee <cylee12@realtek.com>
> Signed-off-by: Yu-Chun Lin <eleanor.lin@realtek.com>
> ---
> Changes in v2:
> - Added missing Co-developed-by tag.
> - Shortened binding description.
> - Updated MAINTAINERS entry (BINDINGS -> DRIVERS).
> - Moved software variables to driver.
> ---
> .../bindings/clock/realtek,rtd1625-clk.yaml | 51 ++++++
> MAINTAINERS | 9 +
> .../dt-bindings/clock/realtek,rtd1625-clk.h | 164 ++++++++++++++++++
> 3 files changed, 224 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/clock/realtek,rtd1625-clk.yaml
> create mode 100644 include/dt-bindings/clock/realtek,rtd1625-clk.h
>
> diff --git a/Documentation/devicetree/bindings/clock/realtek,rtd1625-clk.yaml b/Documentation/devicetree/bindings/clock/realtek,rtd1625-clk.yaml
> new file mode 100644
> index 000000000000..26ec7d68b991
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/clock/realtek,rtd1625-clk.yaml
> @@ -0,0 +1,51 @@
> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/clock/realtek,rtd1625-clk.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Realtek RTD1625 Clock & Reset Controller
> +
> +maintainers:
> + - Yu-Chun Lin <eleanor.lin@realtek.com>
> +
> +description: |
> + The Realtek RTD1625 Clock Controller manages and distributes clock
> + signals to various controllers and implements a Reset Controller for the
> + SoC peripherals.
> +
> + Clocks are referenced by unique identifiers, which are defined as
> + preprocessor macros in dt-bindings/clock/realtek,rtd1625-clk.h.
Full path needed.
> +
> +properties:
> + compatible:
> + enum:
> + - realtek,rtd1625-crt-clk
> + - realtek,rtd1625-iso-clk
> + - realtek,rtd1625-iso-s-clk
> +
> + reg:
> + maxItems: 1
> +
> + "#clock-cells":
> + const: 1
> +
> + "#reset-cells":
> + const: 1
> +
> +required:
> + - compatible
> + - reg
> + - "#clock-cells"
> + - "#reset-cells"
> +
> +additionalProperties: false
> +
> +examples:
> + - |
> + clock-controller@98000000 {
> + compatible = "realtek,rtd1625-crt-clk";
> + reg = <98000000 0x1000>;
> + #clock-cells = <1>;
> + #reset-cells = <1>;
> + };
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 12f49de7fe03..66c0f4924c1e 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -21968,6 +21968,15 @@ S: Maintained
> F: Documentation/devicetree/bindings/net/dsa/realtek.yaml
> F: drivers/net/dsa/realtek/*
>
> +REALTEK SOC CLOCK AND RESET DRIVERS
> +M: Cheng-Yu Lee <cylee12@realtek.com>
Just to clarify, because sometimes people add here authors not actual
maintainers, this is a list of active maintainers, so reviewing in
the future will be from both of you.
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>
Best regards,
Krzysztof
next prev parent reply other threads:[~2026-01-14 8:46 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-13 11:23 [PATCH v2 0/9] clk: realtek: Add RTD1625 Clock Support Yu-Chun Lin
2026-01-13 11:23 ` [PATCH v2 1/9] dt-bindings: clock: Add Realtek RTD1625 Clock & Reset Controller Yu-Chun Lin
2026-01-14 8:46 ` Krzysztof Kozlowski [this message]
2026-01-13 11:23 ` [PATCH v2 2/9] clk: realtek: Add basic reset support Yu-Chun Lin
2026-01-13 12:06 ` Philipp Zabel
2026-01-14 8:58 ` Yu-Chun Lin [林祐君]
2026-01-13 11:23 ` [PATCH v2 3/9] clk: realtek: Introduce a common probe() Yu-Chun Lin
2026-01-13 11:23 ` [PATCH v2 4/9] clk: realtek: Add support for phase locked loops (PLLs) Yu-Chun Lin
2026-01-13 11:23 ` [PATCH v2 5/9] clk: realtek: Add support for gate clock Yu-Chun Lin
2026-01-14 6:17 ` kernel test robot
2026-01-13 11:23 ` [PATCH v2 6/9] clk: realtek: Add support for mux clock Yu-Chun Lin
2026-01-13 11:23 ` [PATCH v2 7/9] clk: realtek: Add support for MMC-tuned PLL clocks Yu-Chun Lin
2026-01-13 11:23 ` [PATCH v2 8/9] clk: realtek: Add RTD1625-CRT clock controller driver Yu-Chun Lin
2026-01-13 11:23 ` [PATCH v2 9/9] clk: realtek: Add RTD1625-ISO " Yu-Chun Lin
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=20260114-nice-quick-salmon-cace2f@quoll \
--to=krzk@kernel.org \
--cc=conor+dt@kernel.org \
--cc=cy.huang@realtek.com \
--cc=cylee12@realtek.com \
--cc=devicetree@vger.kernel.org \
--cc=eleanor.lin@realtek.com \
--cc=james.tai@realtek.com \
--cc=jyanchou@realtek.com \
--cc=krzk+dt@kernel.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mturquette@baylibre.com \
--cc=p.zabel@pengutronix.de \
--cc=robh@kernel.org \
--cc=sboyd@kernel.org \
--cc=stanley_chang@realtek.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