From: srinivas.kandagatla@linaro.org (Srinivas Kandagatla)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v8 4/4] nvmem: Add DT binding documentation for Vybrid OCOTP driver
Date: Mon, 10 Aug 2015 15:57:59 +0100 [thread overview]
Message-ID: <55C8BBF7.30308@linaro.org> (raw)
In-Reply-To: <3149879671b1b1b0b6fc1fbe62e9f49333deb8ed.1439214648.git.maitysanchayan@gmail.com>
On 10/08/15 15:11, 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 | 21 +++++++++++++++++++++
> 1 file changed, 21 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/nvmem/vf610-ocotp.txt
>
Acked-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
> diff --git a/Documentation/devicetree/bindings/nvmem/vf610-ocotp.txt b/Documentation/devicetree/bindings/nvmem/vf610-ocotp.txt
> new file mode 100644
> index 0000000..b29f65f
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/nvmem/vf610-ocotp.txt
> @@ -0,0 +1,21 @@
> +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 and fuse map registers
> + clocks : ipg clock we associate with the OCOTP peripheral
> + clock-names : Must contain "ocotp" as matching entry
> +
> +Example for Vybrid VF5xx/VF6xx:
> +
> + ocotp: ocotp at 400a5000 {
> + compatible = "fsl,vf610-ocotp";
> + #address-cells = <1>;
> + #size-cells = <1>;
> + reg = <0x400a5000 0xCF0>;
> + 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>,
gregkh@linuxfoundation.org, maxime.ripard@free-electrons.com
Cc: linux-arm-kernel@lists.infradead.org, stefan@agner.ch,
shawnguo@kernel.org, kernel@pengutronix.de,
stefan.wahren@i2se.com, linux-kernel@vger.kernel.org,
p.zabel@pengutronix.de
Subject: Re: [PATCH v8 4/4] nvmem: Add DT binding documentation for Vybrid OCOTP driver
Date: Mon, 10 Aug 2015 15:57:59 +0100 [thread overview]
Message-ID: <55C8BBF7.30308@linaro.org> (raw)
In-Reply-To: <3149879671b1b1b0b6fc1fbe62e9f49333deb8ed.1439214648.git.maitysanchayan@gmail.com>
On 10/08/15 15:11, 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 | 21 +++++++++++++++++++++
> 1 file changed, 21 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/nvmem/vf610-ocotp.txt
>
Acked-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
> diff --git a/Documentation/devicetree/bindings/nvmem/vf610-ocotp.txt b/Documentation/devicetree/bindings/nvmem/vf610-ocotp.txt
> new file mode 100644
> index 0000000..b29f65f
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/nvmem/vf610-ocotp.txt
> @@ -0,0 +1,21 @@
> +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 and fuse map registers
> + clocks : ipg clock we associate with the OCOTP peripheral
> + clock-names : Must contain "ocotp" as matching entry
> +
> +Example for Vybrid VF5xx/VF6xx:
> +
> + ocotp: ocotp@400a5000 {
> + compatible = "fsl,vf610-ocotp";
> + #address-cells = <1>;
> + #size-cells = <1>;
> + reg = <0x400a5000 0xCF0>;
> + clocks = <&clks VF610_CLK_OCOTP>;
> + clock-names = "ocotp";
> + };
>
next prev parent reply other threads:[~2015-08-10 14:57 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-08-10 14:11 [PATCH v8 0/4] Implement OCOTP driver for Vybrid using NVMEM Sanchayan Maity
2015-08-10 14:11 ` Sanchayan Maity
2015-08-10 14:11 ` [PATCH v8 1/4] clk: clk-vf610: Add clock for Vybrid OCOTP controller Sanchayan Maity
2015-08-10 14:11 ` Sanchayan Maity
2015-08-10 14:11 ` [PATCH v8 2/4] ARM: dts: vfxxx: Add OCOTP node Sanchayan Maity
2015-08-10 14:11 ` Sanchayan Maity
2015-08-10 14:11 ` [PATCH v8 3/4] drivers: nvmem: Add Vybrid OCOTP support Sanchayan Maity
2015-08-10 14:11 ` Sanchayan Maity
2015-08-10 14:56 ` Srinivas Kandagatla
2015-08-10 14:56 ` Srinivas Kandagatla
2015-08-12 10:41 ` Srinivas Kandagatla
2015-08-12 10:41 ` Srinivas Kandagatla
2015-08-12 11:32 ` maitysanchayan at gmail.com
2015-08-12 11:32 ` maitysanchayan
2015-08-12 11:41 ` Srinivas Kandagatla
2015-08-12 11:41 ` Srinivas Kandagatla
2015-08-10 14:11 ` [PATCH v8 4/4] nvmem: Add DT binding documentation for Vybrid OCOTP driver Sanchayan Maity
2015-08-10 14:11 ` Sanchayan Maity
2015-08-10 14:57 ` Srinivas Kandagatla [this message]
2015-08-10 14:57 ` Srinivas Kandagatla
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=55C8BBF7.30308@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.