]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - Documentation/devicetree/bindings/crypto/fsl-imx-scc.txt
Merge tag 'renesas-fixes4-for-v4.13' of https://git.kernel.org/pub/scm/linux/kernel...
[karo-tx-linux.git] / 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         };