0001 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/crypto/fsl-imx-scc.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Freescale Security Controller (SCC)
0008
0009 maintainers:
0010 - Steffen Trumtrar <s.trumtrar@pengutronix.de>
0011
0012 properties:
0013 compatible:
0014 const: fsl,imx25-scc
0015
0016 reg:
0017 maxItems: 1
0018
0019 interrupts:
0020 items:
0021 - description: SCC SCM interrupt
0022 - description: SCC SMN interrupt
0023
0024 interrupt-names:
0025 items:
0026 - const: scm
0027 - const: smn
0028
0029 clocks:
0030 maxItems: 1
0031
0032 clock-names:
0033 const: ipg
0034
0035 required:
0036 - compatible
0037 - reg
0038 - interrupts
0039 - interrupt-names
0040 - clocks
0041 - clock-names
0042
0043 additionalProperties: false
0044
0045 examples:
0046 - |
0047 crypto@53fac000 {
0048 compatible = "fsl,imx25-scc";
0049 reg = <0x53fac000 0x4000>;
0050 clocks = <&clks 111>;
0051 clock-names = "ipg";
0052 interrupts = <49>, <50>;
0053 interrupt-names = "scm", "smn";
0054 };