Linux 4.1.18
[linux/fpc-iii.git] / Documentation / devicetree / bindings / media / i2c / adv7604.txt
blobc27cede3bd68adeb72fae1053e09dfffe920a2b2
1 * Analog Devices ADV7604/11 video decoder with HDMI receiver
3 The ADV7604 and ADV7611 are multiformat video decoders with an integrated HDMI
4 receiver. The ADV7604 has four multiplexed HDMI inputs and one analog input,
5 and the ADV7611 has one HDMI input and no analog input.
7 These device tree bindings support the ADV7611 only at the moment.
9 Required Properties:
11   - compatible: Must contain one of the following
12     - "adi,adv7611" for the ADV7611
14   - reg: I2C slave address
16   - hpd-gpios: References to the GPIOs that control the HDMI hot-plug
17     detection pins, one per HDMI input. The active flag indicates the GPIO
18     level that enables hot-plug detection.
20 The device node must contain one 'port' child node per device input and output
21 port, in accordance with the video interface bindings defined in
22 Documentation/devicetree/bindings/media/video-interfaces.txt. The port nodes
23 are numbered as follows.
25   Port                  ADV7611
26 ------------------------------------------------------------
27   HDMI                  0
28   Digital output        1
30 The digital output port node must contain at least one endpoint.
32 Optional Properties:
34   - reset-gpios: Reference to the GPIO connected to the device's reset pin.
36 Optional Endpoint Properties:
38   The following three properties are defined in video-interfaces.txt and are
39   valid for source endpoints only.
41   - hsync-active: Horizontal synchronization polarity. Defaults to active low.
42   - vsync-active: Vertical synchronization polarity. Defaults to active low.
43   - pclk-sample: Pixel clock polarity. Defaults to output on the falling edge.
45   If none of hsync-active, vsync-active and pclk-sample is specified the
46   endpoint will use embedded BT.656 synchronization.
49 Example:
51         hdmi_receiver@4c {
52                 compatible = "adi,adv7611";
53                 reg = <0x4c>;
55                 reset-gpios = <&ioexp 0 GPIO_ACTIVE_LOW>;
56                 hpd-gpios = <&ioexp 2 GPIO_ACTIVE_HIGH>;
58                 #address-cells = <1>;
59                 #size-cells = <0>;
61                 port@0 {
62                         reg = <0>;
63                 };
64                 port@1 {
65                         reg = <1>;
66                         hdmi_in: endpoint {
67                                 remote-endpoint = <&ccdc_in>;
68                         };
69                 };
70         };