xref: /freebsd/sys/contrib/device-tree/Bindings/display/imx/fsl,imx-display-subsystem.yaml (revision ae5de77ed78ae54d86cead5604869212e8008e6b)
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/display/imx/fsl,imx-display-subsystem.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Freescale i.MX DRM master device
8
9maintainers:
10  - Frank Li <Frank.Li@nxp.com>
11
12description:
13  The freescale i.MX DRM master device is a virtual device needed to list all
14  IPU or other display interface nodes that comprise the graphics subsystem.
15
16properties:
17  compatible:
18    const: fsl,imx-display-subsystem
19
20  ports:
21    $ref: /schemas/types.yaml#/definitions/phandle-array
22    description:
23      Should contain a list of phandles pointing to camera
24      sensor interface ports of IPU devices.
25
26required:
27  - compatible
28
29additionalProperties: false
30
31examples:
32  - |
33    display-subsystem {
34        compatible = "fsl,imx-display-subsystem";
35        ports = <&ipu_di0>;
36    };
37