All of lore.kernel.org
 help / color / mirror / Atom feed
From: Rob Herring <robh@kernel.org>
To: Grygorii Strashko <grygorii.strashko@ti.com>
Cc: "David S. Miller" <davem@davemloft.net>,
	netdev@vger.kernel.org, Sekhar Nori <nsekhar@ti.com>,
	linux-kernel@vger.kernel.org, devicetree@vger.kernel.org
Subject: Re: [RFC PATCH] dt-bindings: net: davinci-mdio: convert bindings to json-schema
Date: Tue, 29 Oct 2019 14:27:04 -0500	[thread overview]
Message-ID: <20191029192704.GA24097@bogus> (raw)
In-Reply-To: <20191024104730.17708-1-grygorii.strashko@ti.com>

On Thu, Oct 24, 2019 at 01:47:30PM +0300, Grygorii Strashko wrote:
> Now that we have the DT validation in place, let's convert the device tree
> bindings for the TI SoC Davinci/OMAP/Keystone2 MDIO Controllerr over to a
> YAML schemas.
> 
> Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>
> ---
> This my first attempt to work with YAML schemas, hence RFC.

No problems validating this schema, but the example in mdio.yaml isn't 
happy:

/builds/robherring/linux-dt-review/Documentation/devicetree/bindings/net/mdio.example.dt.yaml: 
mdio@5c030000: 'bus_freq' is a required property

> 
>  .../bindings/net/ti,davinci-mdio.yaml         | 64 +++++++++++++++++++
>  1 file changed, 64 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/net/ti,davinci-mdio.yaml

Convert implies deleting the old binding...

> 
> diff --git a/Documentation/devicetree/bindings/net/ti,davinci-mdio.yaml b/Documentation/devicetree/bindings/net/ti,davinci-mdio.yaml
> new file mode 100644
> index 000000000000..e51054d2e0fa
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/net/ti,davinci-mdio.yaml
> @@ -0,0 +1,64 @@
> +# SPDX-License-Identifier: GPL-2.0
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/net/ti,davinci-mdio.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: TI SoC Davinci/Keystone2 MDIO Controller
> +
> +maintainers:
> +  - Grygorii Strashko <grygorii.strashko@ti.com>
> +
> +description:
> +  TI SoC Davinci/Keystone2 MDIO Controller Device Tree Bindings
> +
> +allOf:
> +  - $ref: "mdio.yaml#"
> +
> +properties:
> +  compatible:
> +    oneOf:
> +       - const: ti,davinci_mdio
> +       - items:
> +         - const: ti,keystone_mdio
> +         - const: ti,davinci_mdio
> +       - items:
> +         - const: ti,cpsw-mdio
> +         - const: ti,davinci_mdio
> +       - items:
> +         - const: ti,am4372-mdio
> +         - const: ti,cpsw-mdio
> +         - const: ti,davinci_mdio
> +
> +  reg:
> +    maxItems: 1
> +
> +  bus_freq:
> +      maximum: 2500000
> +      description:
> +        Mdio Bus frequency
> +
> +  ti,hwmods:
> +    description: TI hwmod name
> +    deprecated: true
> +    allOf:
> +      - $ref: /schemas/types.yaml#/definitions/string-array
> +      - items:
> +          const: davinci_mdio
> +
> +required:
> +  - compatible
> +  - reg
> +  - bus_freq
> +  - "#address-cells"
> +  - "#size-cells"
> +
> +examples:
> +  - |
> +    davinci_mdio: mdio@4a101000 {
> +         compatible = "ti,davinci_mdio";
> +         #address-cells = <1>;
> +         #size-cells = <0>;
> +         reg = <0x4A101000 0x1000>;

Lowercase hex please.

> +         bus_freq = <1000000>;
> +    };
> -- 
> 2.17.1
> 

      reply	other threads:[~2019-10-29 19:27 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-24 10:47 [RFC PATCH] dt-bindings: net: davinci-mdio: convert bindings to json-schema Grygorii Strashko
2019-10-29 19:27 ` Rob Herring [this message]

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=20191029192704.GA24097@bogus \
    --to=robh@kernel.org \
    --cc=davem@davemloft.net \
    --cc=devicetree@vger.kernel.org \
    --cc=grygorii.strashko@ti.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=nsekhar@ti.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 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.