Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1THS8135 Video DAC
2-----------------
3
4This is the binding for Texas Instruments THS8135 Video DAC bridge.
5
6Required properties:
7
8- compatible: Must be "ti,ths8135"
9
10Required nodes:
11
12This device has two video ports. Their connections are modelled using the OF
13graph bindings specified in Documentation/devicetree/bindings/graph.txt.
14
15- Video port 0 for RGB input
16- Video port 1 for VGA output
17
18Example
19-------
20
21vga-bridge {
22 compatible = "ti,ths8135";
23 #address-cells = <1>;
24 #size-cells = <0>;
25
26 ports {
27 #address-cells = <1>;
28 #size-cells = <0>;
29
30 port@0 {
31 reg = <0>;
32
33 vga_bridge_in: endpoint {
34 remote-endpoint = <&lcdc_out_vga>;
35 };
36 };
37
38 port@1 {
39 reg = <1>;
40
41 vga_bridge_out: endpoint {
42 remote-endpoint = <&vga_con_in>;
43 };
44 };
45 };
46};