Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/Documentation/devicetree/bindings/display/fsl,vf610-tcon.yaml
26308 views
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
7
title: Freescale TCON
8
9
maintainers:
10
- Frank Li <Frank.Li@nxp.com>
11
12
properties:
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
26
required:
27
- compatible
28
- reg
29
- clocks
30
- clock-names
31
32
additionalProperties: false
33
34
examples:
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
45