All of lore.kernel.org
 help / color / mirror / Atom feed
From: Stephen Boyd <sboyd@kernel.org>
To: Felix Fietkau <nbd@nbd.name>,
	Michael Turquette <mturquette@baylibre.com>,
	Rob Herring <robh+dt@kernel.org>
Cc: john@phrozen.org, linux-arm-kernel@lists.infradead.org,
	Rob Herring <robh@kernel.org>,
	linux-clk@vger.kernel.org, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH v7 06/14] dt-bindings: Add en7523-scu device tree binding documentation
Date: Wed, 05 Jan 2022 17:30:58 -0800	[thread overview]
Message-ID: <20220106013100.842FCC36AEB@smtp.kernel.org> (raw)
In-Reply-To: <20211217112345.14029-7-nbd@nbd.name>

Quoting Felix Fietkau (2021-12-17 03:23:36)
> diff --git a/Documentation/devicetree/bindings/clock/airoha,en7523-scu.yaml b/Documentation/devicetree/bindings/clock/airoha,en7523-scu.yaml
> new file mode 100644
> index 000000000000..79660f8126fa
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/clock/airoha,en7523-scu.yaml
> @@ -0,0 +1,58 @@
> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/clock/airoha,en7523-scu.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: EN7523 Clock Device Tree Bindings
> +
> +maintainers:
> +  - Felix Fietkau <nbd@nbd.name>
> +  - John Crispin <nbd@nbd.name>
> +
> +description: |
> +  This node defines the System Control Unit of the EN7523 SoC,
> +  a collection of registers configuring many different aspects of the SoC.
> +
> +  The clock driver uses it to read and configure settings of the
> +  PLL controller, which provides clocks for the CPU, the bus and
> +  other SoC internal peripherals.
> +
> +  Each clock is assigned an identifier and client nodes use this identifier
> +  to specify which clock they consume.
> +
> +  All these identifiers can be found in:
> +  [1]: <include/dt-bindings/clock/en7523-clk.h>.
> +
> +  The clocks are provided inside a system controller node.
> +
> +properties:
> +  compatible:
> +    items:
> +      - const: airoha,en7523-scu
> +
> +  reg:
> +    maxItems: 2
> +
> +  "#clock-cells":
> +    description:
> +      The first cell indicates the clock number, see [1] for available
> +      clocks.
> +    const: 1
> +
> +required:
> +  - compatible
> +  - reg
> +  - '#clock-cells'
> +

Any input clocks?

> +additionalProperties: false
> +
> +examples:
> +  - |
> +    #include <dt-bindings/clock/en7523-clk.h>
> +    scu: scu@1fa20000 {

Maybe that should be system-controller@1fa20000 instead?

> +      compatible = "airoha,en7523-scu";
> +      reg = <0x1fa20000 0x400>,
> +            <0x1fb00000 0x1000>;
> +      #clock-cells = <1>;
> +    };

WARNING: multiple messages have this Message-ID (diff)
From: Stephen Boyd <sboyd@kernel.org>
To: Felix Fietkau <nbd@nbd.name>,
	Michael Turquette <mturquette@baylibre.com>,
	Rob Herring <robh+dt@kernel.org>
Cc: john@phrozen.org, linux-arm-kernel@lists.infradead.org,
	Rob Herring <robh@kernel.org>,
	linux-clk@vger.kernel.org, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH v7 06/14] dt-bindings: Add en7523-scu device tree binding documentation
Date: Wed, 05 Jan 2022 17:30:58 -0800	[thread overview]
Message-ID: <20220106013100.842FCC36AEB@smtp.kernel.org> (raw)
In-Reply-To: <20211217112345.14029-7-nbd@nbd.name>

Quoting Felix Fietkau (2021-12-17 03:23:36)
> diff --git a/Documentation/devicetree/bindings/clock/airoha,en7523-scu.yaml b/Documentation/devicetree/bindings/clock/airoha,en7523-scu.yaml
> new file mode 100644
> index 000000000000..79660f8126fa
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/clock/airoha,en7523-scu.yaml
> @@ -0,0 +1,58 @@
> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/clock/airoha,en7523-scu.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: EN7523 Clock Device Tree Bindings
> +
> +maintainers:
> +  - Felix Fietkau <nbd@nbd.name>
> +  - John Crispin <nbd@nbd.name>
> +
> +description: |
> +  This node defines the System Control Unit of the EN7523 SoC,
> +  a collection of registers configuring many different aspects of the SoC.
> +
> +  The clock driver uses it to read and configure settings of the
> +  PLL controller, which provides clocks for the CPU, the bus and
> +  other SoC internal peripherals.
> +
> +  Each clock is assigned an identifier and client nodes use this identifier
> +  to specify which clock they consume.
> +
> +  All these identifiers can be found in:
> +  [1]: <include/dt-bindings/clock/en7523-clk.h>.
> +
> +  The clocks are provided inside a system controller node.
> +
> +properties:
> +  compatible:
> +    items:
> +      - const: airoha,en7523-scu
> +
> +  reg:
> +    maxItems: 2
> +
> +  "#clock-cells":
> +    description:
> +      The first cell indicates the clock number, see [1] for available
> +      clocks.
> +    const: 1
> +
> +required:
> +  - compatible
> +  - reg
> +  - '#clock-cells'
> +

Any input clocks?

> +additionalProperties: false
> +
> +examples:
> +  - |
> +    #include <dt-bindings/clock/en7523-clk.h>
> +    scu: scu@1fa20000 {

Maybe that should be system-controller@1fa20000 instead?

> +      compatible = "airoha,en7523-scu";
> +      reg = <0x1fa20000 0x400>,
> +            <0x1fb00000 0x1000>;
> +      #clock-cells = <1>;
> +    };

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  reply	other threads:[~2022-01-06  1:31 UTC|newest]

Thread overview: 50+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-17 11:23 [PATCH v7 00/14] Add support for Airoha EN7523 SoC Felix Fietkau
2021-12-17 11:23 ` Felix Fietkau
2021-12-17 11:23 ` [PATCH v7 01/14] dt-bindings: Add vendor prefix for Airoha Felix Fietkau
2021-12-17 11:23   ` Felix Fietkau
2021-12-17 11:23 ` [PATCH v7 02/14] dt-bindings: arm: airoha: Add binding for EN7523 SoC and EVB Felix Fietkau
2021-12-17 11:23   ` Felix Fietkau
2021-12-17 11:23 ` [PATCH v7 03/14] ARM: dts: Add basic support for Airoha EN7523 Felix Fietkau
2021-12-17 11:23   ` Felix Fietkau
2021-12-17 11:23 ` [PATCH v7 04/14] ARM: Add basic support for Airoha EN7523 SoC Felix Fietkau
2021-12-17 11:23   ` Felix Fietkau
2021-12-17 11:23 ` [PATCH v7 05/14] ARM: multi_v7_defconfig: Add " Felix Fietkau
2021-12-17 11:23   ` Felix Fietkau
2021-12-17 11:23 ` [PATCH v7 06/14] dt-bindings: Add en7523-scu device tree binding documentation Felix Fietkau
2021-12-17 11:23   ` Felix Fietkau
2022-01-06  1:30   ` Stephen Boyd [this message]
2022-01-06  1:30     ` Stephen Boyd
2021-12-17 11:23 ` [PATCH v7 07/14] clk: en7523: Add clock driver for Airoha EN7523 SoC Felix Fietkau
2021-12-17 11:23   ` Felix Fietkau
2021-12-18 23:12   ` kernel test robot
2021-12-18 23:12     ` kernel test robot
2021-12-18 23:12     ` kernel test robot
2022-01-06  1:29   ` Stephen Boyd
2022-01-06  1:29     ` Stephen Boyd
2021-12-17 11:23 ` [PATCH v7 08/14] ARM: dts: add clock support for Airoha EN7523 Felix Fietkau
2021-12-17 11:23   ` Felix Fietkau
2021-12-17 11:23 ` [PATCH v7 09/14] dt-bindings: PCI: Add support for Airoha EN7532 Felix Fietkau
2021-12-17 11:23   ` Felix Fietkau
2021-12-17 11:23   ` Felix Fietkau
2021-12-17 16:21   ` Bjorn Helgaas
2021-12-17 16:21     ` Bjorn Helgaas
2021-12-17 16:21     ` Bjorn Helgaas
2021-12-17 11:23 ` [PATCH v7 10/14] PCI: mediatek: Allow selecting controller driver for airoha arch Felix Fietkau
2021-12-17 11:23   ` Felix Fietkau
2021-12-17 11:23   ` Felix Fietkau
2021-12-17 16:25   ` Bjorn Helgaas
2021-12-17 16:25     ` Bjorn Helgaas
2021-12-17 16:25     ` Bjorn Helgaas
2021-12-17 11:23 ` [PATCH v7 11/14] ARM: dts: Add PCIe support for Airoha EN7523 Felix Fietkau
2021-12-17 11:23   ` Felix Fietkau
2021-12-17 11:23   ` Felix Fietkau
2021-12-17 11:23 ` [PATCH v7 12/14] dt-bindings: arm: airoha: Add binding for Airoha GPIO controller Felix Fietkau
2021-12-17 11:23   ` Felix Fietkau
2021-12-17 11:23 ` [PATCH v7 13/14] gpio: Add support for Airoha EN7523 " Felix Fietkau
2021-12-17 11:23   ` Felix Fietkau
2021-12-22  2:06   ` Linus Walleij
2021-12-22  2:06     ` Linus Walleij
2021-12-22  7:56   ` Bartosz Golaszewski
2021-12-22  7:56     ` Bartosz Golaszewski
2021-12-17 11:23 ` [PATCH v7 14/14] ARM: dts: add GPIO support for Airoha EN7523 Felix Fietkau
2021-12-17 11:23   ` Felix Fietkau

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=20220106013100.842FCC36AEB@smtp.kernel.org \
    --to=sboyd@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=john@phrozen.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mturquette@baylibre.com \
    --cc=nbd@nbd.name \
    --cc=robh+dt@kernel.org \
    --cc=robh@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.