nvmem: dt: document SNVS LPGPR binding
authorOleksij Rempel <o.rempel@pengutronix.de>
Sun, 17 Sep 2017 10:33:42 +0000 (12:33 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 4 Oct 2017 08:30:53 +0000 (10:30 +0200)
Documentation bindings for the Low Power General Purpose Register
available on i.MX6 SoCs in the Secure Non-Volatile Storage.

Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Documentation/devicetree/bindings/nvmem/snvs-lpgpr.txt [new file with mode: 0644]

diff --git a/Documentation/devicetree/bindings/nvmem/snvs-lpgpr.txt b/Documentation/devicetree/bindings/nvmem/snvs-lpgpr.txt
new file mode 100644 (file)
index 0000000..20bc49b
--- /dev/null
@@ -0,0 +1,20 @@
+Device tree bindings for Low Power General Purpose Register found in i.MX6Q/D
+Secure Non-Volatile Storage.
+
+This DT node should be represented as a sub-node of a "syscon",
+"simple-mfd" node.
+
+Required properties:
+- compatible: should be one of the fallowing variants:
+       "fsl,imx6q-snvs-lpgpr" for Freescale i.MX6Q/D/DL/S
+       "fsl,imx6ul-snvs-lpgpr" for Freescale i.MX6UL
+
+Example:
+snvs: snvs@020cc000 {
+       compatible = "fsl,sec-v4.0-mon", "syscon", "simple-mfd";
+       reg = <0x020cc000 0x4000>;
+
+       snvs_lpgpr: snvs-lpgpr {
+               compatible = "fsl,imx6q-snvs-lpgpr";
+       };
+};