4 The TI Video Port InterFace (VPIF) is the primary component for video
5 capture and display on the DA850/AM18x family of TI DaVinci/Sitara
8 TI Document reference: SPRUH82C, Chapter 35
9 http://www.ti.com/lit/pdf/spruh82
12 - compatible: must be "ti,da850-vpif"
13 - reg: physical base address and length of the registers set for the device;
14 - interrupts: should contain IRQ line for the VPIF
18 VPIF has a 16-bit parallel bus input, supporting 2 8-bit channels or a
19 single 16-bit channel. It should contain one or two port child nodes
20 with child 'endpoint' node. If there are two ports then port@0 must
21 describe the input and port@1 output channels. Please refer to the
23 Documentation/devicetree/bindings/media/video-interfaces.txt.
25 Example using 2 8-bit input channels, one of which is connected to an
26 I2C-connected TVP5147 decoder:
29 compatible = "ti,da850-vpif";
30 reg = <0x217000 0x1000>;
34 vpif_input_ch0: endpoint@0 {
37 remote-endpoint = <&composite_in>;
40 vpif_input_ch1: endpoint@1 {
48 vpif_output_ch0: endpoint {
50 remote-endpoint = <&composite_out>;
60 compatible = "ti,tvp5147";
64 composite_in: endpoint {
69 /* VPIF channel 0 (lower 8-bits) */
70 remote-endpoint = <&vpif_input_ch0>;
77 compatible = "adi,adv7343";
81 composite_out: endpoint {
82 adi,dac-enable = <1 1 1>;
83 adi,sd-dac-enable = <1>;
85 remote-endpoint = <&vpif_output_ch0>;
93 Alternatively, an example when the bus is configured as a single
94 16-bit input (e.g. for raw-capture mode):
97 compatible = "ti,da850-vpif";
98 reg = <0x217000 0x1000>;