From: Krzysztof Kozlowski <krzk@kernel.org>
To: Nick Hu <nick.hu@sifive.com>
Cc: Cyan Yang <cyan.yang@sifive.com>,
Samuel Holland <samuel.holland@sifive.com>,
devicetree@vger.kernel.org, linux-riscv@lists.infradead.org,
linux-kernel@vger.kernel.org, Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Paul Walmsley <paul.walmsley@sifive.com>
Subject: Re: [PATCH] dt-bindings: power: Add SiFive Domain Management controllers
Date: Fri, 9 May 2025 08:40:28 +0200 [thread overview]
Message-ID: <20250509-small-graceful-limpet-d0ea41@kuoka> (raw)
In-Reply-To: <20250509021605.26764-1-nick.hu@sifive.com>
On Fri, May 09, 2025 at 10:16:04AM GMT, Nick Hu wrote:
> SiFive Domain Management controller includes the following components
> - SiFive Tile Management Controller
> - SiFive Cluster Management Controller
> - SiFive Core Complex Management Controller
>
> These controllers control the clock and power domain of the
> corresponding domain.
>
> Signed-off-by: Nick Hu <nick.hu@sifive.com>
> Reviewed-by: Samuel Holland <samuel.holland@sifive.com>
> ---
> .../devicetree/bindings/power/sifive,tmc.yaml | 89 +++++++++++++++++++
Where is a patch with the driver (user of the binding)?
> 1 file changed, 89 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/power/sifive,tmc.yaml
>
> diff --git a/Documentation/devicetree/bindings/power/sifive,tmc.yaml b/Documentation/devicetree/bindings/power/sifive,tmc.yaml
> new file mode 100644
> index 000000000000..7ed4f290b94b
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/power/sifive,tmc.yaml
> @@ -0,0 +1,89 @@
> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/power/sifive,tmc.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: SiFive Domain Management Controller
> +
> +maintainers:
> + - Cyan Yang <cyan.yang@sifive.com>
> + - Nick Hu <nick.hu@sifive.com>
> + - Samuel Holland <samuel.holland@sifive.com>
> +
> +description: |
> + This is the device tree binding for the following SiFive Domain Management Controllers.
Explain the hardware, not that "binding is a binding for ...".
Also, wrap according to Linux coding style.
> + - Tile Management Controller
> + - TMC0
> + - TMC1
> + - TMC2
> + - TMC3
> + - Subsystem Management Controller
> + - SMC0
> + - SMC1
> + - SMC2
> + - SMC3
> + - Cluster Management Controller
> + - CMC2
> + - CMC3
> + SiFive Domain Management Controllers support the SiFive Quiet Interface
> + Protocol (SQIP) starting from the Version 1. The control method is
> + different from the Version 0, making them incompatible.
> +
> +allOf:
> + - $ref: power-domain.yaml#
> +
> +properties:
> + compatible:
> + oneOf:
> + - items:
> + - {}
> + - pattern: "^sifive,[ts]mc0$"
> + - items:
> + - {}
> + - pattern: "^sifive,[ts]mc3$"
> + - pattern: "^sifive,[ts]mc2$"
> + - pattern: "^sifive,[ts]mc1$"
> + - items:
> + - {}
> + - pattern: "^sifive,[ts]mc2$"
> + - pattern: "^sifive,[ts]mc1$"
> + - items:
> + - {}
> + - pattern: "^sifive,[ts]mc1$"
> + - items:
> + - {}
> + - const: sifive,cmc3
> + - const: sifive,cmc2
> + - items:
> + - {}
> + - const: sifive,cmc2
All of this is just unexpected. Why any compatible should come with
these? You need to use SoC specific compatibles.
> +
> + reg:
> + maxItems: 1
> +
> + sifive,feature-level:
> + description: |
> + Supported power features. This property is absent if the full set of features
> + is supported
Compatible defines this. Drop.
> + $ref: /schemas/types.yaml#/definitions/string
> + enum: ["nopg", "ceasepg", "runonlypg"]
> +
> + "#power-domain-cells":
> + const: 0
> +
> +if:
> + not:
> + properties:
> + compatible:
> + contains:
> + pattern: "^sifive,[tsc]mc3$"
> +then:
> + properties:
> + sifive,feature-level: false
> +
> +required:
> + - compatible
> + - reg
> +
> +additionalProperties: false
Missing example.
Best regards,
Krzysztof
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
next prev parent reply other threads:[~2025-05-09 6:44 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-09 2:16 [PATCH] dt-bindings: power: Add SiFive Domain Management controllers Nick Hu
2025-05-09 6:40 ` Krzysztof Kozlowski [this message]
2025-05-09 15:57 ` Conor Dooley
2025-05-10 14:57 ` Krzysztof Kozlowski
2025-05-12 3:28 ` Nick Hu
2025-05-12 3:26 ` Nick Hu
2025-05-12 3:20 ` Nick Hu
2025-05-12 10:39 ` Krzysztof Kozlowski
2025-05-12 11:00 ` Conor Dooley
2025-05-28 3:15 ` Nick Hu
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=20250509-small-graceful-limpet-d0ea41@kuoka \
--to=krzk@kernel.org \
--cc=conor+dt@kernel.org \
--cc=cyan.yang@sifive.com \
--cc=devicetree@vger.kernel.org \
--cc=krzk+dt@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=nick.hu@sifive.com \
--cc=paul.walmsley@sifive.com \
--cc=robh@kernel.org \
--cc=samuel.holland@sifive.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