xref: /freebsd-src/sys/contrib/device-tree/Bindings/crypto/fsl-imx-scc.txt (revision c66ec88fed842fbaad62c30d510644ceb7bd2d71)
1*c66ec88fSEmmanuel VadotFreescale Security Controller (SCC)
2*c66ec88fSEmmanuel Vadot
3*c66ec88fSEmmanuel VadotRequired properties:
4*c66ec88fSEmmanuel Vadot- compatible : Should be "fsl,imx25-scc".
5*c66ec88fSEmmanuel Vadot- reg : Should contain register location and length.
6*c66ec88fSEmmanuel Vadot- interrupts : Should contain interrupt numbers for SCM IRQ and SMN IRQ.
7*c66ec88fSEmmanuel Vadot- interrupt-names : Should specify the names "scm" and "smn" for the
8*c66ec88fSEmmanuel Vadot		    SCM IRQ and SMN IRQ.
9*c66ec88fSEmmanuel Vadot- clocks: Should contain the clock driving the SCC core.
10*c66ec88fSEmmanuel Vadot- clock-names: Should be set to "ipg".
11*c66ec88fSEmmanuel Vadot
12*c66ec88fSEmmanuel VadotExample:
13*c66ec88fSEmmanuel Vadot
14*c66ec88fSEmmanuel Vadot	scc: crypto@53fac000 {
15*c66ec88fSEmmanuel Vadot		compatible = "fsl,imx25-scc";
16*c66ec88fSEmmanuel Vadot		reg = <0x53fac000 0x4000>;
17*c66ec88fSEmmanuel Vadot		clocks = <&clks 111>;
18*c66ec88fSEmmanuel Vadot		clock-names = "ipg";
19*c66ec88fSEmmanuel Vadot		interrupts = <49>, <50>;
20*c66ec88fSEmmanuel Vadot		interrupt-names = "scm", "smn";
21*c66ec88fSEmmanuel Vadot	};
22