Re: [PATCH v4 06/10] dt-bindings: kunit: Add fixed rate clk consumer test

From: Stephen Boyd
Date: Mon Jun 03 2024 - 18:02:18 EST


Quoting Stephen Boyd (2024-04-22 16:23:59)
> diff --git a/Documentation/devicetree/bindings/test/test,clk-fixed-rate.yaml b/Documentation/devicetree/bindings/test/test,clk-fixed-rate.yaml
> new file mode 100644
> index 000000000000..b9f58cba944c
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/test/test,clk-fixed-rate.yaml
> @@ -0,0 +1,35 @@
> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/test/test,clk-fixed-rate.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: KUnit clk fixed rate test clk consumer

Removed KUnit from the title.

> +
> +maintainers:
> + - Stephen Boyd <sboyd@xxxxxxxxxx>
> +
> +description:
> + A clk consumer of a fixed rate clk used to test the fixed rate clk
> + implementation.
> +
> +properties:
> + compatible:
> + const: test,clk-fixed-rate

None of this is really fixed rate clk specific. I'm going to rename this
to "test,single-clk-consumer" so that it can be used anywhere we want to
consume a single clock cell. Someone can introduce a double/multiple
binding as needed.

> +
> + clocks:
> + maxItems: 1
> +
> +required:
> + - compatible
> + - clocks
> +
> +additionalProperties: false
> +
> +examples:
> + - |
> + clock-consumer {
> + compatible = "test,clk-fixed-rate";
> + clocks = <&fixed_clk>;
> + };
> +...