Path: blob/master/Documentation/devicetree/bindings/display/bridge/ite,it6263.yaml
26309 views
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)1%YAML 1.22---3$id: http://devicetree.org/schemas/display/bridge/ite,it6263.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: ITE IT6263 LVDS to HDMI converter78maintainers:9- Liu Ying <victor.liu@nxp.com>1011description: |12The IT6263 is a high-performance single-chip De-SSC(De-Spread Spectrum) LVDS13to HDMI converter. Combined with LVDS receiver and HDMI 1.4a transmitter,14the IT6263 supports LVDS input and HDMI 1.4 output by conversion function.15The built-in LVDS receiver can support single-link and dual-link LVDS inputs,16and the built-in HDMI transmitter is fully compliant with HDMI 1.4a/3D, HDCP171.2 and backward compatible with DVI 1.0 specification.1819The IT6263 also encodes and transmits up to 8 channels of I2S digital audio,20with sampling rate up to 192KHz and sample size up to 24 bits. In addition,21an S/PDIF input port takes in compressed audio of up to 192KHz frame rate.2223The newly supported High-Bit Rate(HBR) audio by HDMI specifications v1.3 is24provided by the IT6263 in two interfaces: the four I2S input ports or the25S/PDIF input port. With both interfaces the highest possible HBR frame rate26is supported at up to 768KHz.2728allOf:29- $ref: /schemas/display/lvds-dual-ports.yaml#3031properties:32compatible:33const: ite,it62633435reg:36maxItems: 13738clocks:39maxItems: 140description: audio master clock4142clock-names:43const: mclk4445data-mapping:46enum:47- jeida-1848- jeida-2449- jeida-3050- vesa-2451- vesa-305253reset-gpios:54maxItems: 15556ivdd-supply:57description: 1.8V digital logic power5859ovdd-supply:60description: 3.3V I/O pin power6162txavcc18-supply:63description: 1.8V HDMI analog frontend power6465txavcc33-supply:66description: 3.3V HDMI analog frontend power6768pvcc1-supply:69description: 1.8V HDMI frontend core PLL power7071pvcc2-supply:72description: 1.8V HDMI frontend filter PLL power7374avcc-supply:75description: 3.3V LVDS frontend power7677anvdd-supply:78description: 1.8V LVDS frontend analog power7980apvdd-supply:81description: 1.8V LVDS frontend PLL power8283"#sound-dai-cells":84const: 08586ite,i2s-audio-fifo-sources:87$ref: /schemas/types.yaml#/definitions/uint32-array88minItems: 189maxItems: 490items:91enum: [0, 1, 2, 3]92description:93Each array element indicates the pin number of an I2S serial data input94line which is connected to an audio FIFO, from audio FIFO0 to FIFO3.9596ite,rl-channel-swap-audio-sources:97$ref: /schemas/types.yaml#/definitions/uint32-array98minItems: 199maxItems: 4100uniqueItems: true101items:102enum: [0, 1, 2, 3]103description:104Each array element indicates an audio source whose right channel and left105channel are swapped by this converter. For I2S, the element is the pin106number of an I2S serial data input line. For S/PDIF, the element is always1070.108109ports:110$ref: /schemas/graph.yaml#/properties/ports111112properties:113port@0: true114115port@1:116oneOf:117- required: [dual-lvds-odd-pixels]118- required: [dual-lvds-even-pixels]119120port@2:121$ref: /schemas/graph.yaml#/properties/port122description: video port for the HDMI output123124port@3:125$ref: /schemas/graph.yaml#/properties/port126description: sound input port127128required:129- port@0130- port@2131132required:133- compatible134- reg135- data-mapping136- ivdd-supply137- ovdd-supply138- txavcc18-supply139- txavcc33-supply140- pvcc1-supply141- pvcc2-supply142- avcc-supply143- anvdd-supply144- apvdd-supply145146unevaluatedProperties: false147148examples:149- |150/* single-link LVDS input */151#include <dt-bindings/gpio/gpio.h>152153i2c {154#address-cells = <1>;155#size-cells = <0>;156157hdmi@4c {158compatible = "ite,it6263";159reg = <0x4c>;160data-mapping = "jeida-24";161reset-gpios = <&gpio1 10 GPIO_ACTIVE_LOW>;162ivdd-supply = <®_buck5>;163ovdd-supply = <®_vext_3v3>;164txavcc18-supply = <®_buck5>;165txavcc33-supply = <®_vext_3v3>;166pvcc1-supply = <®_buck5>;167pvcc2-supply = <®_buck5>;168avcc-supply = <®_vext_3v3>;169anvdd-supply = <®_buck5>;170apvdd-supply = <®_buck5>;171172ports {173#address-cells = <1>;174#size-cells = <0>;175176port@0 {177reg = <0>;178179it6263_lvds_link1: endpoint {180remote-endpoint = <&ldb_lvds_ch0>;181};182};183184port@2 {185reg = <2>;186187it6263_out: endpoint {188remote-endpoint = <&hdmi_in>;189};190};191};192};193};194195- |196/* dual-link LVDS input */197#include <dt-bindings/gpio/gpio.h>198199i2c {200#address-cells = <1>;201#size-cells = <0>;202203hdmi@4c {204compatible = "ite,it6263";205reg = <0x4c>;206data-mapping = "jeida-24";207reset-gpios = <&gpio1 10 GPIO_ACTIVE_LOW>;208ivdd-supply = <®_buck5>;209ovdd-supply = <®_vext_3v3>;210txavcc18-supply = <®_buck5>;211txavcc33-supply = <®_vext_3v3>;212pvcc1-supply = <®_buck5>;213pvcc2-supply = <®_buck5>;214avcc-supply = <®_vext_3v3>;215anvdd-supply = <®_buck5>;216apvdd-supply = <®_buck5>;217218ports {219#address-cells = <1>;220#size-cells = <0>;221222port@0 {223reg = <0>;224dual-lvds-odd-pixels;225226it6263_lvds_link1_dual: endpoint {227remote-endpoint = <&ldb_lvds_ch0>;228};229};230231port@1 {232reg = <1>;233dual-lvds-even-pixels;234235it6263_lvds_link2_dual: endpoint {236remote-endpoint = <&ldb_lvds_ch1>;237};238};239240port@2 {241reg = <2>;242243it6263_out_dual: endpoint {244remote-endpoint = <&hdmi_in>;245};246};247};248};249};250251252