From: Rob Herring <robh@kernel.org>
To: "Niklas Söderlund" <niklas.soderlund@ragnatech.se>
Cc: Geert Uytterhoeven <geert+renesas@glider.be>,
Linus Walleij <linus.walleij@linaro.org>,
Chris Brandt <chris.brandt@renesas.com>,
linux-gpio@vger.kernel.org, devicetree@vger.kernel.org,
linux-renesas-soc@vger.kernel.org
Subject: Re: [PATCH] dt-bindings: pinctrl: renesas,rza2-pinctrl: Convert to json-schema
Date: Wed, 15 Jul 2020 14:10:04 -0600 [thread overview]
Message-ID: <20200715201004.GA735389@bogus> (raw)
In-Reply-To: <20200628163902.GI1105424@oden.dyn.berto.se>
On Sun, Jun 28, 2020 at 06:39:02PM +0200, Niklas Söderlund wrote:
> Hi Geert,
>
> Thanks for your work.
>
> On 2020-06-26 16:36:38 +0200, Geert Uytterhoeven wrote:
> > Convert the Renesas RZ/A2 combined Pin and GPIO controller Device Tree
> > binding documentation to json-schema.
> >
> > Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> > ---
> > .../bindings/pinctrl/renesas,rza2-pinctrl.txt | 87 ---------------
> > .../pinctrl/renesas,rza2-pinctrl.yaml | 100 ++++++++++++++++++
> > 2 files changed, 100 insertions(+), 87 deletions(-)
> > delete mode 100644 Documentation/devicetree/bindings/pinctrl/renesas,rza2-pinctrl.txt
> > create mode 100644 Documentation/devicetree/bindings/pinctrl/renesas,rza2-pinctrl.yaml
> >
> > diff --git a/Documentation/devicetree/bindings/pinctrl/renesas,rza2-pinctrl.txt b/Documentation/devicetree/bindings/pinctrl/renesas,rza2-pinctrl.txt
> > deleted file mode 100644
> > index a63ccd476cdaf919..0000000000000000
> > --- a/Documentation/devicetree/bindings/pinctrl/renesas,rza2-pinctrl.txt
> > +++ /dev/null
> > @@ -1,87 +0,0 @@
> > -Renesas RZ/A2 combined Pin and GPIO controller
> > -
> > -The Renesas SoCs of the RZ/A2 series feature a combined Pin and GPIO controller.
> > -Pin multiplexing and GPIO configuration is performed on a per-pin basis.
> > -Each port features up to 8 pins, each of them configurable for GPIO
> > -function (port mode) or in alternate function mode.
> > -Up to 8 different alternate function modes exist for each single pin.
> > -
> > -Pin controller node
> > --------------------
> > -
> > -Required properties:
> > - - compatible: shall be:
> > - - "renesas,r7s9210-pinctrl": for RZ/A2M
> > - - reg
> > - Address base and length of the memory area where the pin controller
> > - hardware is mapped to.
> > - - gpio-controller
> > - This pin controller also controls pins as GPIO
> > - - #gpio-cells
> > - Must be 2
> > - - gpio-ranges
> > - Expresses the total number of GPIO ports/pins in this SoC
> > -
> > -Example: Pin controller node for RZ/A2M SoC (r7s9210)
> > -
> > - pinctrl: pin-controller@fcffe000 {
> > - compatible = "renesas,r7s9210-pinctrl";
> > - reg = <0xfcffe000 0x1000>;
> > -
> > - gpio-controller;
> > - #gpio-cells = <2>;
> > - gpio-ranges = <&pinctrl 0 0 176>;
> > - };
> > -
> > -Sub-nodes
> > ----------
> > -
> > -The child nodes of the pin controller designate pins to be used for
> > -specific peripheral functions or as GPIO.
> > -
> > -- Pin multiplexing sub-nodes:
> > - A pin multiplexing sub-node describes how to configure a set of
> > - (or a single) pin in some desired alternate function mode.
> > - The values for the pinmux properties are a combination of port name, pin
> > - number and the desired function index. Use the RZA2_PINMUX macro located
> > - in include/dt-bindings/pinctrl/r7s9210-pinctrl.h to easily define these.
> > - For assigning GPIO pins, use the macro RZA2_PIN also in r7s9210-pinctrl.h
> > - to express the desired port pin.
> > -
> > - Required properties:
> > - - pinmux:
> > - integer array representing pin number and pin multiplexing configuration.
> > - When a pin has to be configured in alternate function mode, use this
> > - property to identify the pin by its global index, and provide its
> > - alternate function configuration number along with it.
> > - When multiple pins are required to be configured as part of the same
> > - alternate function they shall be specified as members of the same
> > - argument list of a single "pinmux" property.
> > - Helper macros to ease assembling the pin index from its position
> > - (port where it sits on and pin number) and alternate function identifier
> > - are provided by the pin controller header file at:
> > - <dt-bindings/pinctrl/r7s9210-pinctrl.h>
> > - Integers values in "pinmux" argument list are assembled as:
> > - ((PORT * 8 + PIN) | MUX_FUNC << 16)
> > -
> > - Example: Board specific pins configuration
> > -
> > - &pinctrl {
> > - /* Serial Console */
> > - scif4_pins: serial4 {
> > - pinmux = <RZA2_PINMUX(PORT9, 0, 4)>, /* TxD4 */
> > - <RZA2_PINMUX(PORT9, 1, 4)>; /* RxD4 */
> > - };
> > - };
> > -
> > - Example: Assigning a GPIO:
> > -
> > - leds {
> > - status = "okay";
> > - compatible = "gpio-leds";
> > -
> > - led0 {
> > - /* P6_0 */
> > - gpios = <&pinctrl RZA2_PIN(PORT6, 0) GPIO_ACTIVE_HIGH>;
> > - };
> > - };
> > diff --git a/Documentation/devicetree/bindings/pinctrl/renesas,rza2-pinctrl.yaml b/Documentation/devicetree/bindings/pinctrl/renesas,rza2-pinctrl.yaml
> > new file mode 100644
> > index 0000000000000000..b7911a994f3a9f12
> > --- /dev/null
> > +++ b/Documentation/devicetree/bindings/pinctrl/renesas,rza2-pinctrl.yaml
> > @@ -0,0 +1,100 @@
> > +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> > +%YAML 1.2
> > +---
> > +$id: http://devicetree.org/schemas/pinctrl/renesas,rza2-pinctrl.yaml#
> > +$schema: http://devicetree.org/meta-schemas/core.yaml#
> > +
> > +title: Renesas RZ/A2 combined Pin and GPIO controller
> > +
> > +maintainers:
> > + - Chris Brandt <chris.brandt@renesas.com>
> > + - Geert Uytterhoeven <geert+renesas@glider.be>
> > +
> > +description:
> > + The Renesas SoCs of the RZ/A2 series feature a combined Pin and GPIO
> > + controller.
> > + Pin multiplexing and GPIO configuration is performed on a per-pin basis.
> > + Each port features up to 8 pins, each of them configurable for GPIO function
> > + (port mode) or in alternate function mode.
> > + Up to 8 different alternate function modes exist for each single pin.
>
> This paragraph formatting looks odd, but I'm not sure it's intentional
> or not :-) In either case with or without this changed,
If you do want the formatting here maintained, you need a '|'.
next prev parent reply other threads:[~2020-07-15 20:10 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-06-26 14:36 [PATCH] dt-bindings: pinctrl: renesas,rza2-pinctrl: Convert to json-schema Geert Uytterhoeven
2020-06-28 16:39 ` Niklas Söderlund
2020-07-15 20:10 ` Rob Herring [this message]
2020-07-15 20:10 ` Rob Herring
2020-07-16 8:27 ` Geert Uytterhoeven
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=20200715201004.GA735389@bogus \
--to=robh@kernel.org \
--cc=chris.brandt@renesas.com \
--cc=devicetree@vger.kernel.org \
--cc=geert+renesas@glider.be \
--cc=linus.walleij@linaro.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=niklas.soderlund@ragnatech.se \
/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).