Path: blob/main/sys/contrib/device-tree/Bindings/display/bridge/adi,adv7511.txt
48406 views
Analog Devices ADV7511(W)/13/33/35 HDMI Encoders1------------------------------------------------23The ADV7511, ADV7511W, ADV7513, ADV7533 and ADV7535 are HDMI audio and video4transmitters compatible with HDMI 1.4 and DVI 1.0. They support color space5conversion, S/PDIF, CEC and HDCP. ADV7533/5 supports the DSI interface for input6pixels, while the others support RGB interface.78Required properties:910- compatible: Should be one of:11"adi,adv7511"12"adi,adv7511w"13"adi,adv7513"14"adi,adv7533"15"adi,adv7535"1617- reg: I2C slave addresses18The ADV7511 internal registers are split into four pages exposed through19different I2C addresses, creating four register maps. Each map has it own20I2C address and acts as a standard slave device on the I2C bus. The main21address is mandatory, others are optional and revert to defaults if not22specified.232425The ADV7511 supports a large number of input data formats that differ by their26color depth, color format, clock mode, bit justification and random27arrangement of components on the data bus. The combination of the following28properties describe the input and map directly to the video input tables of the29ADV7511 datasheet that document all the supported combinations.3031- adi,input-depth: Number of bits per color component at the input (8, 10 or3212).33- adi,input-colorspace: The input color space, one of "rgb", "yuv422" or34"yuv444".35- adi,input-clock: The input clock type, one of "1x" (one clock cycle per36pixel), "2x" (two clock cycles per pixel), "ddr" (one clock cycle per pixel,37data driven on both edges).3839The following input format properties are required except in "rgb 1x" and40"yuv444 1x" modes, in which case they must not be specified.4142- adi,input-style: The input components arrangement variant (1, 2 or 3), as43listed in the input format tables in the datasheet.44- adi,input-justification: The input bit justification ("left", "evenly",45"right").4647- avdd-supply: A 1.8V supply that powers up the AVDD pin on the chip.48- dvdd-supply: A 1.8V supply that powers up the DVDD pin on the chip.49- pvdd-supply: A 1.8V supply that powers up the PVDD pin on the chip.50- dvdd-3v-supply: A 3.3V supply that powers up the pin called DVDD_3V51on the chip.52- bgvdd-supply: A 1.8V supply that powers up the BGVDD pin. This is53needed only for ADV7511.5455The following properties are required for ADV7533 and ADV7535:5657- adi,dsi-lanes: Number of DSI data lanes connected to the DSI host. It should58be one of 1, 2, 3 or 4.59- a2vdd-supply: 1.8V supply that powers up the A2VDD pin on the chip.60- v3p3-supply: A 3.3V supply that powers up the V3P3 pin on the chip.61- v1p2-supply: A supply that powers up the V1P2 pin on the chip. It can be62either 1.2V or 1.8V for ADV7533 but only 1.8V for ADV7535.6364Optional properties:6566- interrupts: Specifier for the ADV7511 interrupt67- pd-gpios: Specifier for the GPIO connected to the power down signal6869- adi,clock-delay: Video data clock delay relative to the pixel clock, in ps70(-1200 ps .. 1600 ps). Defaults to no delay.71- adi,embedded-sync: The input uses synchronization signals embedded in the72data stream (similar to BT.656). Defaults to separate H/V synchronization73signals.74- adi,disable-timing-generator: Only for ADV7533 and ADV7535. Disables the75internal timing generator. The chip will rely on the sync signals in the76DSI data lanes, rather than generate its own timings for HDMI output.77- clocks: from common clock binding: reference to the CEC clock.78- clock-names: from common clock binding: must be "cec".79- reg-names : Names of maps with programmable addresses.80It can contain any map needing a non-default address.81Possible maps names are : "main", "edid", "cec", "packet"8283Required nodes:8485The ADV7511 has two video ports. Their connections are modelled using the OF86graph bindings specified in Documentation/devicetree/bindings/graph.txt.8788- Video port 0 for the RGB, YUV or DSI input. In the case of ADV7533/5, the89remote endpoint phandle should be a reference to a valid mipi_dsi_host device90node.91- Video port 1 for the HDMI output92- Audio port 2 for the HDMI audio input939495Example96-------9798adv7511w: hdmi@39 {99compatible = "adi,adv7511w";100/*101* The EDID page will be accessible on address 0x66 on the I2C102* bus. All other maps continue to use their default addresses.103*/104reg = <0x39>, <0x66>;105reg-names = "main", "edid";106interrupt-parent = <&gpio3>;107interrupts = <29 IRQ_TYPE_EDGE_FALLING>;108clocks = <&cec_clock>;109clock-names = "cec";110111adi,input-depth = <8>;112adi,input-colorspace = "rgb";113adi,input-clock = "1x";114adi,input-style = <1>;115adi,input-justification = "evenly";116117ports {118#address-cells = <1>;119#size-cells = <0>;120121port@0 {122reg = <0>;123adv7511w_in: endpoint {124remote-endpoint = <&dpi_out>;125};126};127128port@1 {129reg = <1>;130adv7511_out: endpoint {131remote-endpoint = <&hdmi_connector_in>;132};133};134135port@2 {136reg = <2>;137codec_endpoint: endpoint {138remote-endpoint = <&i2s0_cpu_endpoint>;139};140};141};142};143144145