xref: /linux/Documentation/devicetree/bindings/soc/fsl/cpm_qe/fsl,qe-siram.yaml (revision c94cd9508b1335b949fd13ebd269313c65492df0)
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/soc/fsl/cpm_qe/fsl,qe-siram.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Freescale QUICC Engine module Serial Interface Block RAM(SIRAM)
8
9maintainers:
10  - Frank Li <Frank.Li@nxp.com>
11
12description:
13  store the routing entries of SI
14
15properties:
16  compatible:
17    oneOf:
18      - items:
19          - enum:
20              - fsl,ls1043-qe-siram
21          - const: fsl,t1040-qe-siram
22      - const: fsl,t1040-qe-siram
23
24  reg:
25    maxItems: 1
26
27required:
28  - compatible
29  - reg
30
31additionalProperties: false
32
33examples:
34  - |
35    siram@1000 {
36        compatible = "fsl,t1040-qe-siram";
37        reg = <0x1000 0x800>;
38    };
39
40