Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1Freescale Security Controller (SCC)
2
3Required 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
12Example:
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 };