fsl-imx-scc.txt 626 B

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