xref: /linux/Documentation/devicetree/bindings/soc/fsl/cpm_qe/fsl,qe-si.yaml (revision c532de5a67a70f8533d495f8f2aaa9a0491c3ad0)
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-si.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Freescale QUICC Engine module Serial Interface Block (SI)
8
9maintainers:
10  - Frank Li <Frank.Li@nxp.com>
11
12description:
13  The SI manages the routing of eight TDM lines to the QE block serial drivers,
14  the MCC and the UCCs, for receive and transmit.
15
16properties:
17  compatible:
18    oneOf:
19      - items:
20          - enum:
21              - fsl,ls1043-qe-si
22          - const: fsl,t1040-qe-si
23      - enum:
24          - fsl,t1040-qe-si
25
26  reg:
27    maxItems: 1
28
29required:
30  - compatible
31  - reg
32
33additionalProperties: false
34
35examples:
36  - |
37    si@700 {
38        compatible = "fsl,t1040-qe-si";
39        reg = <0x700 0x80>;
40    };
41