1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/display/fsl,vf610-tcon.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Freescale TCON 8 9maintainers: 10 - Frank Li <Frank.Li@nxp.com> 11 12properties: 13 compatible: 14 const: fsl,vf610-tcon 15 16 reg: 17 maxItems: 1 18 19 clocks: 20 maxItems: 1 21 22 clock-names: 23 items: 24 - const: ipg 25 26required: 27 - compatible 28 - reg 29 - clocks 30 - clock-names 31 32additionalProperties: false 33 34examples: 35 - | 36 #include <dt-bindings/clock/vf610-clock.h> 37 38 timing-controller@4003d000 { 39 compatible = "fsl,vf610-tcon"; 40 reg = <0x4003d000 0x1000>; 41 clocks = <&clks VF610_CLK_TCON0>; 42 clock-names = "ipg"; 43 }; 44