Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Documentation: devicetree: add Freescale SCC bindings

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>

authored by

Steffen Trumtrar and committed by
Herbert Xu
ff0078f0 d6064165

+21
+21
Documentation/devicetree/bindings/crypto/fsl-imx-scc.txt
··· 1 + Freescale Security Controller (SCC) 2 + 3 + Required properties: 4 + - compatible : Should be "fsl,imx25-scc". 5 + - reg : Should contain register location and length. 6 + - interrupts : Should contain interrupt numbers for SCM IRQ and SMN IRQ. 7 + - interrupt-names : Should specify the names "scm" and "smn" for the 8 + SCM IRQ and SMN IRQ. 9 + - clocks: Should contain the clock driving the SCC core. 10 + - clock-names: Should be set to "ipg". 11 + 12 + Example: 13 + 14 + scc: crypto@53fac000 { 15 + compatible = "fsl,imx25-scc"; 16 + reg = <0x53fac000 0x4000>; 17 + clocks = <&clks 111>; 18 + clock-names = "ipg"; 19 + interrupts = <49>, <50>; 20 + interrupt-names = "scm", "smn"; 21 + };