From: Alexandre Courbot <gnurou@gmail.com>
To: Feng Kan <fkan@apm.com>
Cc: "devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
Catalin Marinas <catalin.marinas@arm.com>,
Linus Walleij <linus.walleij@linaro.org>,
patches@apm.com, Will Deacon <will.deacon@arm.com>,
"linux-gpio@vger.kernel.org" <linux-gpio@vger.kernel.org>,
"linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH 3/3] Documentation: gpio: Add APM X-Gene SoC GPIO controller DTS binding
Date: Tue, 20 May 2014 15:11:20 +0900 [thread overview]
Message-ID: <CAAVeFuLjv2uu_jm84CwCOMLZwFc3c8Vbof4GW21pLpQdh3syvQ@mail.gmail.com> (raw)
In-Reply-To: <1400263432-922-4-git-send-email-fkan@apm.com>
On Sat, May 17, 2014 at 3:03 AM, Feng Kan <fkan@apm.com> wrote:
> Documentation for APM X-Gene SoC GPIO controller DTS binding.
>
> Signed-off-by: Feng Kan <fkan@apm.com>
> ---
> .../devicetree/bindings/gpio/gpio-xgene.txt | 57 ++++++++++++++++++++++
> 1 file changed, 57 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/gpio/gpio-xgene.txt
>
> diff --git a/Documentation/devicetree/bindings/gpio/gpio-xgene.txt b/Documentation/devicetree/bindings/gpio/gpio-xgene.txt
> new file mode 100644
> index 0000000..e19eb5f
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/gpio/gpio-xgene.txt
> @@ -0,0 +1,57 @@
> +APM X-Gene SoC GPIO controller bindings
> +
> +This is a gpio controller that is part of the flash controller.
> +All registers are 32bit and in little endian format.
> +
> +Required properties:
> +- compatible: "apm,xgene-gpio" for X-Gene GPIO controller
> +- reg: Physical base address and length of the controller's registers
> +
> +The gpio controller has multiple banks, each bank will have 16 or less
> +gpio pins. All cfg field will be little endian and least significant
> +bit indicate lowest number of gpio.
> +
> +Required properties:
> +- #gpio-cells: Should be two.
> + - first cell is the pin number
> + - second cell is used to specify optional parameters (unused)
> +- gpio-controller: Marks the device node as a GPIO controller.
Shouldnt these properties be part of the parent instead of being
repeated for each bank?
> +- bank: This is to specifiy which gpio bank the dts node is describing.
I suspect you could use the reg property for this, as it seems like
you would need it for DT compliance anyway (but I'm not 100% sure
here).
> +
> +Optional properties:
> +- ngpio: Specify the number of GPIOs per bank. It is defaulted to 16
> + if not specified. Number of gpio can't be greater than 16 or
> + 0.
> +- odcfg: This is gpio open drain/normal configuration. It is a 16 bit
> + field, setting 1 will mean the pin is set in open drain
> + configuration, 0 will mean normal configuration. Default will
> + be normal configuration.
> +
> +Example:
> + gpio: gpio@1701c000 {
> + compatible = "apm,xgene-gpio";
> + reg = <0x0 0x1701c000 0x0 0x1000>;
> +
> + banka: gpio-controller@0 {
> + compatible = "apm,xgene-gpio-port";
This property is not documented. Besides I don't see it anywhere in
your driver implementation so I would say it is probably not needed at
all.
> + gpio-controller;
> + #gpio-cells = <2>;
> + ngpios = <16>;
> + bank = <0>;
> + odcfg = <0xffff>; /* Optional */
> + };
> + bankb: gpio-controller@1 {
> + compatible = "apm,xgene-gpio-port";
> + gpio-controller;
> + #gpio-cells = <2>;
> + ngpios = <16>;
> + bank = <1>;
> + };
> + bankc: gpio-controller@2 {
> + compatible = "apm,xgene-gpio-port";
> + gpio-controller;
> + #gpio-cells = <2>;
> + ngpios = <16>;
> + bank = <2>;
> + };
> + };
> --
> 1.9.1
>
next prev parent reply other threads:[~2014-05-20 6:11 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <1400263432-922-1-git-send-email-fkan@apm.com>
[not found] ` <1400263432-922-2-git-send-email-fkan@apm.com>
2014-05-20 6:04 ` [PATCH 1/3] gpio: Add APM X-Gene SoC GPIO controller support Alexandre Courbot
2014-05-20 23:54 ` Feng Kan
2014-05-25 7:35 ` Alexandre Courbot
2014-05-27 8:25 ` Linus Walleij
2014-05-27 16:59 ` Feng Kan
2014-05-28 17:01 ` Feng Kan
2014-05-28 19:10 ` Rob Herring
2014-05-28 19:10 ` Linus Walleij
2014-05-27 7:59 ` Linus Walleij
[not found] ` <1400263432-922-3-git-send-email-fkan@apm.com>
2014-05-27 8:27 ` [PATCH 2/3] arm64:dts: Add APM X-Gene SoC GPIO controller DTS entries Linus Walleij
[not found] ` <1400263432-922-4-git-send-email-fkan@apm.com>
2014-05-20 6:11 ` Alexandre Courbot [this message]
2014-05-27 8:30 ` [PATCH 3/3] Documentation: gpio: Add APM X-Gene SoC GPIO controller DTS binding Linus Walleij
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=CAAVeFuLjv2uu_jm84CwCOMLZwFc3c8Vbof4GW21pLpQdh3syvQ@mail.gmail.com \
--to=gnurou@gmail.com \
--cc=catalin.marinas@arm.com \
--cc=devicetree@vger.kernel.org \
--cc=fkan@apm.com \
--cc=linus.walleij@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-gpio@vger.kernel.org \
--cc=patches@apm.com \
--cc=will.deacon@arm.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 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).