From: Conor Dooley <conor@kernel.org>
To: Yu-Chun Lin <eleanor.lin@realtek.com>
Cc: afaerber@suse.de, robh@kernel.org, krzk+dt@kernel.org,
conor+dt@kernel.org, lee@kernel.org, james.tai@realtek.com,
linux-arm-kernel@lists.infradead.org,
linux-realtek-soc@lists.infradead.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
cy.huang@realtek.com, stanley_chang@realtek.com
Subject: Re: [PATCH v2 2/3] dt-bindings: mfd: Add Realtek MISC system controller
Date: Thu, 13 Nov 2025 19:31:13 +0000 [thread overview]
Message-ID: <20251113-ritzy-excluding-e2067916896e@spud> (raw)
In-Reply-To: <20251113123009.26568-3-eleanor.lin@realtek.com>
[-- Attachment #1: Type: text/plain, Size: 2834 bytes --]
On Thu, Nov 13, 2025 at 08:30:08PM +0800, Yu-Chun Lin wrote:
> Add DT binding schema for Realtek system controller.
>
> Signed-off-by: Yu-Chun Lin <eleanor.lin@realtek.com>
> ---
> .../devicetree/bindings/mfd/realtek,misc.yaml | 72 +++++++++++++++++++
> 1 file changed, 72 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/mfd/realtek,misc.yaml
>
> diff --git a/Documentation/devicetree/bindings/mfd/realtek,misc.yaml b/Documentation/devicetree/bindings/mfd/realtek,misc.yaml
> new file mode 100644
> index 000000000000..4f4a9ae250be
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/mfd/realtek,misc.yaml
> @@ -0,0 +1,72 @@
> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/mfd/realtek,misc.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Realtek MISC System Controller
> +
> +description:
> + The Realtek MISC System Controller is a register area that contains
> + miscellaneous system registers for the SoC and serves as a parent node
> + for other functions.
> +
> +maintainers:
> + - James Tai <james.tai@realtek.com>
> + - Yu-Chun Lin <eleanor.lin@realtek.com>
> +
> +properties:
> + compatible:
> + items:
> + - enum:
> + - realtek,misc
You need a soc-specific compatible. It's hard to believe that every
realtek device will have the exact same miscellaneous register region ;)
> + - const: syscon
> + - const: simple-mfd
> +
> + reg:
> + maxItems: 1
> +
> + ranges:
> + maxItems: 1
> +
> + '#address-cells':
> + const: 1
> +
> + '#size-cells':
> + const: 1
> +
> +patternProperties:
> + "^serial@[0-9a-f]+$":
> + type: object
> + description: UART controllers inside MISC area
How many of these actually are there?
If they're always dw uarts, please add a reference to that schema.
pw-bot: changes-requested
> +
> +required:
> + - compatible
> + - reg
> + - ranges
> + - '#address-cells'
> + - '#size-cells'
> +
> +additionalProperties: false
> +
> +examples:
> + - |
> + #include <dt-bindings/interrupt-controller/arm-gic.h>
> +
> + syscon@7000 {
> + compatible = "realtek,misc", "syscon", "simple-mfd";
> + reg = <0x7000 0x1000>;
> + ranges = <0x0 0x7000 0x1000>;
> + #address-cells = <1>;
> + #size-cells = <1>;
> +
> + uart0: serial@800 {
> + compatible = "snps,dw-apb-uart";
> + reg = <0x800 0x100>;
> + clock-frequency = <432000000>;
> + interrupts = <GIC_SPI 68 IRQ_TYPE_LEVEL_HIGH>;
> + reg-io-width = <4>;
> + reg-shift = <2>;
> + status = "disabled";
> + };
> + };
> --
> 2.34.1
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
next prev parent reply other threads:[~2025-11-13 19:31 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-13 12:30 [PATCH v2 0/3] arm64: dts: Add support for Kent SoC family Yu-Chun Lin
2025-11-13 12:30 ` [PATCH v2 1/3] dt-bindings: arm: realtek: Add Kent Soc family compatibles Yu-Chun Lin
2025-11-13 19:28 ` Conor Dooley
2025-11-17 10:55 ` Yu-Chun Lin
2025-11-17 14:36 ` Conor Dooley
2025-11-13 12:30 ` [PATCH v2 2/3] dt-bindings: mfd: Add Realtek MISC system controller Yu-Chun Lin
2025-11-13 19:31 ` Conor Dooley [this message]
2025-11-13 19:36 ` Krzysztof Kozlowski
2025-11-17 11:03 ` Yu-Chun Lin [林祐君]
2025-11-17 11:10 ` Krzysztof Kozlowski
2025-11-17 12:41 ` Yu-Chun Lin [林祐君]
2025-11-17 13:31 ` Krzysztof Kozlowski
2025-11-19 6:46 ` Yu-Chun Lin [林祐君]
2025-11-13 12:30 ` [PATCH v2 3/3] arm64: dts: realtek: Add Kent SoC and EVB device trees Yu-Chun Lin
2025-11-13 19:39 ` Krzysztof Kozlowski
2025-11-13 19:50 ` Krzysztof Kozlowski
2025-11-17 12:43 ` 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=20251113-ritzy-excluding-e2067916896e@spud \
--to=conor@kernel.org \
--cc=afaerber@suse.de \
--cc=conor+dt@kernel.org \
--cc=cy.huang@realtek.com \
--cc=devicetree@vger.kernel.org \
--cc=eleanor.lin@realtek.com \
--cc=james.tai@realtek.com \
--cc=krzk+dt@kernel.org \
--cc=lee@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-realtek-soc@lists.infradead.org \
--cc=robh@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;
as well as URLs for NNTP newsgroup(s).