Documentation: devicetree: add Freescale SCC bindings
authorSteffen Trumtrar <s.trumtrar@pengutronix.de>
Tue, 12 Apr 2016 09:04:24 +0000 (11:04 +0200)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 15 Apr 2016 14:35:45 +0000 (22:35 +0800)
Add documentation for the Freescale Security Controller (SCC)
found on i.MX25 SoCs.

Signed-off-by: Steffen Trumtrar <s.trumtrar@pengutronix.de>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Documentation/devicetree/bindings/crypto/fsl-imx-scc.txt [new file with mode: 0644]

diff --git a/Documentation/devicetree/bindings/crypto/fsl-imx-scc.txt b/Documentation/devicetree/bindings/crypto/fsl-imx-scc.txt
new file mode 100644 (file)
index 0000000..7aad448
--- /dev/null
@@ -0,0 +1,21 @@
+Freescale Security Controller (SCC)
+
+Required properties:
+- compatible : Should be "fsl,imx25-scc".
+- reg : Should contain register location and length.
+- interrupts : Should contain interrupt numbers for SCM IRQ and SMN IRQ.
+- interrupt-names : Should specify the names "scm" and "smn" for the
+                   SCM IRQ and SMN IRQ.
+- clocks: Should contain the clock driving the SCC core.
+- clock-names: Should be set to "ipg".
+
+Example:
+
+       scc: crypto@53fac000 {
+               compatible = "fsl,imx25-scc";
+               reg = <0x53fac000 0x4000>;
+               clocks = <&clks 111>;
+               clock-names = "ipg";
+               interrupts = <49>, <50>;
+               interrupt-names = "scm", "smn";
+       };