linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Masahiro Yamada <yamada.masahiro@socionext.com>
To: arm-soc <arm@kernel.org>, Olof Johansson <olof@lixom.net>,
	Arnd Bergmann <arnd@arndb.de>
Cc: linux-arm-kernel <linux-arm-kernel@lists.infradead.org>,
	DTML <devicetree@vger.kernel.org>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	Rob Herring <robh+dt@kernel.org>,
	Mark Rutland <mark.rutland@arm.com>
Subject: Re: [PATCH v3 1/2] dt-bindings: uniphier: add bindings for UniPhier SoC family
Date: Tue, 27 Nov 2018 00:50:15 +0900	[thread overview]
Message-ID: <CAK7LNAQi6TT86260vy_5iLJuH9cxBnXYzW7dsEU_cmDTrGADxg@mail.gmail.com> (raw)
In-Reply-To: <1539945019-24950-2-git-send-email-yamada.masahiro@socionext.com>

On Fri, Oct 19, 2018 at 7:32 PM Masahiro Yamada
<yamada.masahiro@socionext.com> wrote:
>
> Document the list of SoCs and boards of UniPhier platform.
>
> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
> Reviewed-by: Rob Herring <robh@kernel.org>
> ---

Applied to linux-uniphier.


> Changes in v3:
>   - Capitalize 'Board' consistently
>   - Add Rob's Reviewed-by
>
> Changes in v2:
>   Changes suggested by Rob.
>   - Move the file to
>     Documentation/devicetree/bindings/arm/socionext/uniphier.txt
>   - Group boards by each SoC
>   Previous post:
>   v1: https://patchwork.ozlabs.org/patch/842010/
>
>  .../devicetree/bindings/arm/socionext/uniphier.txt | 47 ++++++++++++++++++++++
>  MAINTAINERS                                        |  1 +
>  2 files changed, 48 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/arm/socionext/uniphier.txt
>
> diff --git a/Documentation/devicetree/bindings/arm/socionext/uniphier.txt b/Documentation/devicetree/bindings/arm/socionext/uniphier.txt
> new file mode 100644
> index 0000000..b3ed103
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/arm/socionext/uniphier.txt
> @@ -0,0 +1,47 @@
> +Socionext UniPhier SoC family
> +-----------------------------
> +
> +Required properties in the root node:
> +  - compatible: should contain board and SoC compatible strings
> +
> +SoC and board compatible strings:
> +  (sorted chronologically)
> +
> +  - LD4 SoC:  "socionext,uniphier-ld4"
> +      - Reference Board: "socionext,uniphier-ld4-ref"
> +
> +  - Pro4 SoC: "socionext,uniphier-pro4"
> +      - Reference Board: "socionext,uniphier-pro4-ref"
> +      - Ace Board:       "socionext,uniphier-pro4-ace"
> +      - Sanji Board:     "socionext,uniphier-pro4-sanji"
> +
> +  - sLD8 SoC: "socionext,uniphier-sld8"
> +      - Reference Board: "socionext,uniphier-sld8-ref"
> +
> +  - PXs2 SoC: "socionext,uniphier-pxs2"
> +      - Gentil Board:    "socionext,uniphier-pxs2-gentil"
> +      - Vodka Board:     "socionext,uniphier-pxs2-vodka"
> +
> +  - LD6b SoC: "socionext,uniphier-ld6b"
> +      - Reference Board: "socionext,uniphier-ld6b-ref"
> +
> +  - LD11 SoC: "socionext,uniphier-ld11"
> +      - Reference Board: "socionext,uniphier-ld11-ref"
> +      - Global Board:    "socionext,uniphier-ld11-global"
> +
> +  - LD20 SoC: "socionext,uniphier-ld20"
> +      - Reference Board: "socionext,uniphier-ld20-ref"
> +      - Global Board:    "socionext,uniphier-ld20-global"
> +
> +  - PXs3 SoC: "socionext,uniphier-pxs3"
> +      - Reference Board: "socionext,uniphier-pxs3-ref"
> +
> +Example:
> +
> +/dts-v1/;
> +
> +/ {
> +       compatible = "socionext,uniphier-ld20-ref", "socionext,uniphier-ld20";
> +
> +       ...
> +};
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 5e6a1da..87b2c2c 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -2183,6 +2183,7 @@ M:        Masahiro Yamada <yamada.masahiro@socionext.com>
>  L:     linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
>  T:     git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
>  S:     Maintained
> +F:     Documentation/devicetree/bindings/arm/socionext/uniphier.txt
>  F:     Documentation/devicetree/bindings/gpio/gpio-uniphier.txt
>  F:     Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.txt
>  F:     arch/arm/boot/dts/uniphier*
> --
> 2.7.4
>


-- 
Best Regards
Masahiro Yamada

  reply	other threads:[~2018-11-26 15:50 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-10-19 10:30 [PATCH v3 0/2] dt-bindings: uniphier: two trivial DT bindings patches Masahiro Yamada
2018-10-19 10:30 ` [PATCH v3 1/2] dt-bindings: uniphier: add bindings for UniPhier SoC family Masahiro Yamada
2018-11-26 15:50   ` Masahiro Yamada [this message]
2018-10-19 10:30 ` [PATCH v3 2/2] dt-bindings: uniphier: move cache-uniphier.txt to vendor directory Masahiro Yamada
2018-11-26 15:50   ` Masahiro Yamada
2018-11-02 18:33 ` [PATCH v3 0/2] dt-bindings: uniphier: two trivial DT bindings patches Olof Johansson

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=CAK7LNAQi6TT86260vy_5iLJuH9cxBnXYzW7dsEU_cmDTrGADxg@mail.gmail.com \
    --to=yamada.masahiro@socionext.com \
    --cc=arm@kernel.org \
    --cc=arnd@arndb.de \
    --cc=devicetree@vger.kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=olof@lixom.net \
    --cc=robh+dt@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).