From: srinivas.kandagatla@linaro.org (Srinivas Kandagatla)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v7 4/4] nvmem: Add DT binding documentation for Vybrid OCOTP driver
Date: Mon, 10 Aug 2015 10:18:01 +0100 [thread overview]
Message-ID: <55C86C49.6080708@linaro.org> (raw)
In-Reply-To: <3713643bb44c39c2126edca2916e1c1aa43eabf8.1438874125.git.maitysanchayan@gmail.com>
On 06/08/15 16:27, Sanchayan Maity wrote:
> Add the devicetree bindings for the Freescale Vybrid On-Chip
> OTP driver.
>
> Signed-off-by: Sanchayan Maity <maitysanchayan@gmail.com>
> ---
> .../devicetree/bindings/nvmem/vf610-ocotp.txt | 20 ++++++++++++++++++++
> 1 file changed, 20 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/nvmem/vf610-ocotp.txt
>
> diff --git a/Documentation/devicetree/bindings/nvmem/vf610-ocotp.txt b/Documentation/devicetree/bindings/nvmem/vf610-ocotp.txt
> new file mode 100644
> index 0000000..5556810
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/nvmem/vf610-ocotp.txt
> @@ -0,0 +1,20 @@
> +On-Chip OTP Memory for Freescale Vybrid
> +
> +Required Properties:
> + compatible:
> + - "fsl,vf610-ocotp" for VF5xx/VF6xx
> + #address-cells : Should be 1
> + #size-cells : Should be 1
> + reg : Address and length of OTP controller registers
Is there a reason to not add clocks property in to the bindings?
> +
> +Example for Vybrid VF5xx/VF6xx:
> +
> + ocotp: ocotp at 400a5000 {
> + compatible = "fsl,vf610-ocotp";
> + #address-cells = <1>;
> + #size-cells = <1>;
> + reg = <0x400a5000 0xD00>;
> + clocks = <&clks VF610_CLK_OCOTP>;
> + clock-names = "ocotp";
> + };
> +
>
WARNING: multiple messages have this Message-ID (diff)
From: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
To: Sanchayan Maity <maitysanchayan@gmail.com>,
linux-arm-kernel@lists.infradead.org,
maxime.ripard@free-electrons.com
Cc: stefan@agner.ch, shawn.guo@kernel.org, kernel@pengutronix.de,
stefan.wahren@i2se.com, linux-kernel@vger.kernel.org,
p.zabel@pengutronix.de
Subject: Re: [PATCH v7 4/4] nvmem: Add DT binding documentation for Vybrid OCOTP driver
Date: Mon, 10 Aug 2015 10:18:01 +0100 [thread overview]
Message-ID: <55C86C49.6080708@linaro.org> (raw)
In-Reply-To: <3713643bb44c39c2126edca2916e1c1aa43eabf8.1438874125.git.maitysanchayan@gmail.com>
On 06/08/15 16:27, Sanchayan Maity wrote:
> Add the devicetree bindings for the Freescale Vybrid On-Chip
> OTP driver.
>
> Signed-off-by: Sanchayan Maity <maitysanchayan@gmail.com>
> ---
> .../devicetree/bindings/nvmem/vf610-ocotp.txt | 20 ++++++++++++++++++++
> 1 file changed, 20 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/nvmem/vf610-ocotp.txt
>
> diff --git a/Documentation/devicetree/bindings/nvmem/vf610-ocotp.txt b/Documentation/devicetree/bindings/nvmem/vf610-ocotp.txt
> new file mode 100644
> index 0000000..5556810
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/nvmem/vf610-ocotp.txt
> @@ -0,0 +1,20 @@
> +On-Chip OTP Memory for Freescale Vybrid
> +
> +Required Properties:
> + compatible:
> + - "fsl,vf610-ocotp" for VF5xx/VF6xx
> + #address-cells : Should be 1
> + #size-cells : Should be 1
> + reg : Address and length of OTP controller registers
Is there a reason to not add clocks property in to the bindings?
> +
> +Example for Vybrid VF5xx/VF6xx:
> +
> + ocotp: ocotp@400a5000 {
> + compatible = "fsl,vf610-ocotp";
> + #address-cells = <1>;
> + #size-cells = <1>;
> + reg = <0x400a5000 0xD00>;
> + clocks = <&clks VF610_CLK_OCOTP>;
> + clock-names = "ocotp";
> + };
> +
>
next prev parent reply other threads:[~2015-08-10 9:18 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-08-06 15:27 [PATCH v7 0/4] Implement OCOTP driver for Vybrid using NVMEM Sanchayan Maity
2015-08-06 15:27 ` Sanchayan Maity
2015-08-06 15:27 ` [PATCH v7 1/4] clk: clk-vf610: Add clock for Vybrid OCOTP controller Sanchayan Maity
2015-08-06 15:27 ` Sanchayan Maity
2015-08-06 15:27 ` [PATCH v7 2/4] ARM: dts: vfxxx: Add OCOTP node Sanchayan Maity
2015-08-06 15:27 ` Sanchayan Maity
2015-08-06 15:27 ` [PATCH v7 3/4] drivers: nvmem: Add Vybrid OCOTP support Sanchayan Maity
2015-08-06 15:27 ` Sanchayan Maity
2015-08-10 9:17 ` Srinivas Kandagatla
2015-08-10 9:17 ` Srinivas Kandagatla
2015-08-10 9:20 ` maitysanchayan at gmail.com
2015-08-10 9:20 ` maitysanchayan
2015-08-06 15:27 ` [PATCH v7 4/4] nvmem: Add DT binding documentation for Vybrid OCOTP driver Sanchayan Maity
2015-08-06 15:27 ` Sanchayan Maity
2015-08-10 9:18 ` Srinivas Kandagatla [this message]
2015-08-10 9:18 ` Srinivas Kandagatla
2015-08-10 9:17 ` maitysanchayan at gmail.com
2015-08-10 9:17 ` maitysanchayan
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=55C86C49.6080708@linaro.org \
--to=srinivas.kandagatla@linaro.org \
--cc=linux-arm-kernel@lists.infradead.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 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.