fsl-imx-scc.yaml 977 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/crypto/fsl-imx-scc.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: Freescale Security Controller (SCC)
  7. maintainers:
  8. - Steffen Trumtrar <s.trumtrar@pengutronix.de>
  9. properties:
  10. compatible:
  11. const: fsl,imx25-scc
  12. reg:
  13. maxItems: 1
  14. interrupts:
  15. items:
  16. - description: SCC SCM interrupt
  17. - description: SCC SMN interrupt
  18. interrupt-names:
  19. items:
  20. - const: scm
  21. - const: smn
  22. clocks:
  23. maxItems: 1
  24. clock-names:
  25. const: ipg
  26. required:
  27. - compatible
  28. - reg
  29. - interrupts
  30. - interrupt-names
  31. - clocks
  32. - clock-names
  33. additionalProperties: false
  34. examples:
  35. - |
  36. crypto@53fac000 {
  37. compatible = "fsl,imx25-scc";
  38. reg = <0x53fac000 0x4000>;
  39. clocks = <&clks 111>;
  40. clock-names = "ipg";
  41. interrupts = <49>, <50>;
  42. interrupt-names = "scm", "smn";
  43. };