All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ulf Hansson <ulf.hansson@linaro.org>
To: Chris Packham <chris.packham@alliedtelesis.co.nz>
Cc: robh+dt@kernel.org, krzk+dt@kernel.org, andrew@lunn.ch,
	gregory.clement@bootlin.com, sebastian.hesselbarth@gmail.com,
	adrian.hunter@intel.com, nico@fluxnic.net,
	linux-mmc@vger.kernel.org, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v2 4/4] dt-bindings: mmc: convert sdhci-dove to JSON schema
Date: Thu, 21 Apr 2022 15:54:52 +0200	[thread overview]
Message-ID: <CAPDyKFq0HzTAMs6TGyisUs4Yv5mtCAvpv_B8y_FzhbF-ctn7-w@mail.gmail.com> (raw)
In-Reply-To: <20220419024611.1327525-5-chris.packham@alliedtelesis.co.nz>

On Tue, 19 Apr 2022 at 04:46, Chris Packham
<chris.packham@alliedtelesis.co.nz> wrote:
>
> Convert the sdhci-dove binding to JSON schema. The optional clocks
> property was not in the original binding document but has been in the
> dove.dtsi since commit 5b03df9ace68 ("ARM: dove: switch to DT clock
> providers").
>
> Signed-off-by: Chris Packham <chris.packham@alliedtelesis.co.nz>

Applied for next, thanks!

Kind regards
Uffe


> ---
>
> Notes:
>     Changes in v2:
>     - Add clocks property
>     - interrupts.maxItems = 2
>     - Update maintainers based on ./scripts/get_maintainer.pl -f drivers/mmc/host/sdhci-dove.c
>
>  .../bindings/mmc/marvell,dove-sdhci.yaml      | 44 +++++++++++++++++++
>  .../devicetree/bindings/mmc/sdhci-dove.txt    | 14 ------
>  2 files changed, 44 insertions(+), 14 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/mmc/marvell,dove-sdhci.yaml
>  delete mode 100644 Documentation/devicetree/bindings/mmc/sdhci-dove.txt
>
> diff --git a/Documentation/devicetree/bindings/mmc/marvell,dove-sdhci.yaml b/Documentation/devicetree/bindings/mmc/marvell,dove-sdhci.yaml
> new file mode 100644
> index 000000000000..7c9c652ad59c
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/mmc/marvell,dove-sdhci.yaml
> @@ -0,0 +1,44 @@
> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/mmc/marvell,dove-sdhci.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Marvell sdhci-dove controller
> +
> +maintainers:
> +  - Adrian Hunter <adrian.hunter@intel.com>
> +  - Ulf Hansson <ulf.hansson@linaro.org>
> +
> +allOf:
> +  - $ref: mmc-controller.yaml#
> +
> +properties:
> +  compatible:
> +    const: marvell,dove-sdhci
> +
> +  reg:
> +    maxItems: 1
> +
> +  interrupts:
> +    minItems: 1
> +    maxItems: 2
> +
> +  clocks:
> +    maxItems: 1
> +
> +required:
> +  - compatible
> +  - reg
> +  - interrupts
> +
> +unevaluatedProperties: false
> +
> +examples:
> +  - |
> +    sdio0: mmc@92000 {
> +      compatible = "marvell,dove-sdhci";
> +      reg = <0x92000 0x100>;
> +      interrupts = <35>;
> +      clocks = <&gate_clk 9>;
> +    };
> diff --git a/Documentation/devicetree/bindings/mmc/sdhci-dove.txt b/Documentation/devicetree/bindings/mmc/sdhci-dove.txt
> deleted file mode 100644
> index ae9aab9abcd7..000000000000
> --- a/Documentation/devicetree/bindings/mmc/sdhci-dove.txt
> +++ /dev/null
> @@ -1,14 +0,0 @@
> -* Marvell sdhci-dove controller
> -
> -This file documents differences between the core properties in mmc.txt
> -and the properties used by the sdhci-pxav2 and sdhci-pxav3 drivers.
> -
> -- compatible: Should be "marvell,dove-sdhci".
> -
> -Example:
> -
> -sdio0: sdio@92000 {
> -       compatible = "marvell,dove-sdhci";
> -       reg = <0x92000 0x100>;
> -       interrupts = <35>;
> -};
> --
> 2.35.1
>

WARNING: multiple messages have this Message-ID (diff)
From: Ulf Hansson <ulf.hansson@linaro.org>
To: Chris Packham <chris.packham@alliedtelesis.co.nz>
Cc: robh+dt@kernel.org, krzk+dt@kernel.org, andrew@lunn.ch,
	 gregory.clement@bootlin.com, sebastian.hesselbarth@gmail.com,
	 adrian.hunter@intel.com, nico@fluxnic.net,
	linux-mmc@vger.kernel.org,  devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org,
	 linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v2 4/4] dt-bindings: mmc: convert sdhci-dove to JSON schema
Date: Thu, 21 Apr 2022 15:54:52 +0200	[thread overview]
Message-ID: <CAPDyKFq0HzTAMs6TGyisUs4Yv5mtCAvpv_B8y_FzhbF-ctn7-w@mail.gmail.com> (raw)
In-Reply-To: <20220419024611.1327525-5-chris.packham@alliedtelesis.co.nz>

On Tue, 19 Apr 2022 at 04:46, Chris Packham
<chris.packham@alliedtelesis.co.nz> wrote:
>
> Convert the sdhci-dove binding to JSON schema. The optional clocks
> property was not in the original binding document but has been in the
> dove.dtsi since commit 5b03df9ace68 ("ARM: dove: switch to DT clock
> providers").
>
> Signed-off-by: Chris Packham <chris.packham@alliedtelesis.co.nz>

Applied for next, thanks!

Kind regards
Uffe


> ---
>
> Notes:
>     Changes in v2:
>     - Add clocks property
>     - interrupts.maxItems = 2
>     - Update maintainers based on ./scripts/get_maintainer.pl -f drivers/mmc/host/sdhci-dove.c
>
>  .../bindings/mmc/marvell,dove-sdhci.yaml      | 44 +++++++++++++++++++
>  .../devicetree/bindings/mmc/sdhci-dove.txt    | 14 ------
>  2 files changed, 44 insertions(+), 14 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/mmc/marvell,dove-sdhci.yaml
>  delete mode 100644 Documentation/devicetree/bindings/mmc/sdhci-dove.txt
>
> diff --git a/Documentation/devicetree/bindings/mmc/marvell,dove-sdhci.yaml b/Documentation/devicetree/bindings/mmc/marvell,dove-sdhci.yaml
> new file mode 100644
> index 000000000000..7c9c652ad59c
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/mmc/marvell,dove-sdhci.yaml
> @@ -0,0 +1,44 @@
> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/mmc/marvell,dove-sdhci.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Marvell sdhci-dove controller
> +
> +maintainers:
> +  - Adrian Hunter <adrian.hunter@intel.com>
> +  - Ulf Hansson <ulf.hansson@linaro.org>
> +
> +allOf:
> +  - $ref: mmc-controller.yaml#
> +
> +properties:
> +  compatible:
> +    const: marvell,dove-sdhci
> +
> +  reg:
> +    maxItems: 1
> +
> +  interrupts:
> +    minItems: 1
> +    maxItems: 2
> +
> +  clocks:
> +    maxItems: 1
> +
> +required:
> +  - compatible
> +  - reg
> +  - interrupts
> +
> +unevaluatedProperties: false
> +
> +examples:
> +  - |
> +    sdio0: mmc@92000 {
> +      compatible = "marvell,dove-sdhci";
> +      reg = <0x92000 0x100>;
> +      interrupts = <35>;
> +      clocks = <&gate_clk 9>;
> +    };
> diff --git a/Documentation/devicetree/bindings/mmc/sdhci-dove.txt b/Documentation/devicetree/bindings/mmc/sdhci-dove.txt
> deleted file mode 100644
> index ae9aab9abcd7..000000000000
> --- a/Documentation/devicetree/bindings/mmc/sdhci-dove.txt
> +++ /dev/null
> @@ -1,14 +0,0 @@
> -* Marvell sdhci-dove controller
> -
> -This file documents differences between the core properties in mmc.txt
> -and the properties used by the sdhci-pxav2 and sdhci-pxav3 drivers.
> -
> -- compatible: Should be "marvell,dove-sdhci".
> -
> -Example:
> -
> -sdio0: sdio@92000 {
> -       compatible = "marvell,dove-sdhci";
> -       reg = <0x92000 0x100>;
> -       interrupts = <35>;
> -};
> --
> 2.35.1
>

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

  parent reply	other threads:[~2022-04-21 13:55 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-19  2:46 [PATCH v2 0/4] dt-bindings: mmc: Convert orion/dove bindings to JSON schema Chris Packham
2022-04-19  2:46 ` Chris Packham
2022-04-19  2:46 ` [PATCH v2 1/4] ARM: dts: mvebu: Update mvsdio node names to match schema Chris Packham
2022-04-19  2:46   ` Chris Packham
2022-04-19 12:08   ` Andrew Lunn
2022-04-19 12:08     ` Andrew Lunn
2022-04-19  2:46 ` [PATCH v2 2/4] ARM: dts: dove: Update sdio-host " Chris Packham
2022-04-19  2:46   ` Chris Packham
2022-04-19 12:09   ` Andrew Lunn
2022-04-19 12:09     ` Andrew Lunn
2022-04-19  2:46 ` [PATCH v2 3/4] dt-bindings: mmc: convert orion-sdio to JSON schema Chris Packham
2022-04-19  2:46   ` Chris Packham
2022-04-19 12:10   ` Andrew Lunn
2022-04-19 12:10     ` Andrew Lunn
2022-04-21 13:54   ` Ulf Hansson
2022-04-21 13:54     ` Ulf Hansson
2022-04-19  2:46 ` [PATCH v2 4/4] dt-bindings: mmc: convert sdhci-dove " Chris Packham
2022-04-19  2:46   ` Chris Packham
2022-04-19  7:39   ` Krzysztof Kozlowski
2022-04-19  7:39     ` Krzysztof Kozlowski
2022-04-19 12:11   ` Andrew Lunn
2022-04-19 12:11     ` Andrew Lunn
2022-04-21 13:54   ` Ulf Hansson [this message]
2022-04-21 13:54     ` Ulf Hansson

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=CAPDyKFq0HzTAMs6TGyisUs4Yv5mtCAvpv_B8y_FzhbF-ctn7-w@mail.gmail.com \
    --to=ulf.hansson@linaro.org \
    --cc=adrian.hunter@intel.com \
    --cc=andrew@lunn.ch \
    --cc=chris.packham@alliedtelesis.co.nz \
    --cc=devicetree@vger.kernel.org \
    --cc=gregory.clement@bootlin.com \
    --cc=krzk+dt@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mmc@vger.kernel.org \
    --cc=nico@fluxnic.net \
    --cc=robh+dt@kernel.org \
    --cc=sebastian.hesselbarth@gmail.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.