xref: /freebsd/sys/contrib/device-tree/Bindings/display/imx/fsl,imx8qxp-dc-tcon.yaml (revision 833e5d42ab135b0238e61c5b3c19b8619677cbfa)
1*833e5d42SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2*833e5d42SEmmanuel Vadot%YAML 1.2
3*833e5d42SEmmanuel Vadot---
4*833e5d42SEmmanuel Vadot$id: http://devicetree.org/schemas/display/imx/fsl,imx8qxp-dc-tcon.yaml#
5*833e5d42SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*833e5d42SEmmanuel Vadot
7*833e5d42SEmmanuel Vadottitle: Freescale i.MX8qxp Display Controller Timing Controller
8*833e5d42SEmmanuel Vadot
9*833e5d42SEmmanuel Vadotdescription:
10*833e5d42SEmmanuel Vadot  The TCon can generate a wide range of customized synchronization signals and
11*833e5d42SEmmanuel Vadot  does the mapping of the color bits to the output.
12*833e5d42SEmmanuel Vadot
13*833e5d42SEmmanuel Vadotmaintainers:
14*833e5d42SEmmanuel Vadot  - Liu Ying <victor.liu@nxp.com>
15*833e5d42SEmmanuel Vadot
16*833e5d42SEmmanuel Vadotproperties:
17*833e5d42SEmmanuel Vadot  compatible:
18*833e5d42SEmmanuel Vadot    const: fsl,imx8qxp-dc-tcon
19*833e5d42SEmmanuel Vadot
20*833e5d42SEmmanuel Vadot  reg:
21*833e5d42SEmmanuel Vadot    maxItems: 1
22*833e5d42SEmmanuel Vadot
23*833e5d42SEmmanuel Vadot  port:
24*833e5d42SEmmanuel Vadot    $ref: /schemas/graph.yaml#/properties/port
25*833e5d42SEmmanuel Vadot    description: video output
26*833e5d42SEmmanuel Vadot
27*833e5d42SEmmanuel Vadotrequired:
28*833e5d42SEmmanuel Vadot  - compatible
29*833e5d42SEmmanuel Vadot  - reg
30*833e5d42SEmmanuel Vadot  - port
31*833e5d42SEmmanuel Vadot
32*833e5d42SEmmanuel VadotadditionalProperties: false
33*833e5d42SEmmanuel Vadot
34*833e5d42SEmmanuel Vadotexamples:
35*833e5d42SEmmanuel Vadot  - |
36*833e5d42SEmmanuel Vadot    tcon@5618c800 {
37*833e5d42SEmmanuel Vadot        compatible = "fsl,imx8qxp-dc-tcon";
38*833e5d42SEmmanuel Vadot        reg = <0x5618c800 0x588>;
39*833e5d42SEmmanuel Vadot
40*833e5d42SEmmanuel Vadot        port {
41*833e5d42SEmmanuel Vadot            dc0_disp0_dc0_pixel_combiner_ch0: endpoint {
42*833e5d42SEmmanuel Vadot                remote-endpoint = <&dc0_pixel_combiner_ch0_dc0_disp0>;
43*833e5d42SEmmanuel Vadot            };
44*833e5d42SEmmanuel Vadot        };
45*833e5d42SEmmanuel Vadot    };
46