1*bcd5dfffSSimon Glassps8622-bridge bindings 2*bcd5dfffSSimon Glass 3*bcd5dfffSSimon GlassRequired properties: 4*bcd5dfffSSimon Glass - compatible: "parade,ps8622" or "parade,ps8625" 5*bcd5dfffSSimon Glass - reg: first i2c address of the bridge 6*bcd5dfffSSimon Glass - sleep-gpios: OF device-tree gpio specification for PD_ pin. 7*bcd5dfffSSimon Glass - reset-gpios: OF device-tree gpio specification for RST_ pin. 8*bcd5dfffSSimon Glass - parade,regs: List of 3-byte registers tuples to write: 9*bcd5dfffSSimon Glass <I2C chip address offset> <register> <value> 10*bcd5dfffSSimon Glass 11*bcd5dfffSSimon GlassOptional properties: 12*bcd5dfffSSimon Glass - lane-count: number of DP lanes to use 13*bcd5dfffSSimon Glass - use-external-pwm: backlight will be controlled by an external PWM 14*bcd5dfffSSimon Glass - video interfaces: Device node can contain video interface port 15*bcd5dfffSSimon Glass nodes for panel according to [1]. 16*bcd5dfffSSimon Glass 17*bcd5dfffSSimon Glass[1]: Documentation/devicetree/bindings/media/video-interfaces.txt 18*bcd5dfffSSimon Glass 19*bcd5dfffSSimon GlassExample: 20*bcd5dfffSSimon Glass lvds-bridge@48 { 21*bcd5dfffSSimon Glass compatible = "parade,ps8622"; 22*bcd5dfffSSimon Glass reg = <0x48>; 23*bcd5dfffSSimon Glass sleep-gpios = <&gpc3 6 1 0 0>; 24*bcd5dfffSSimon Glass reset-gpios = <&gpc3 1 1 0 0>; 25*bcd5dfffSSimon Glass lane-count = <1>; 26*bcd5dfffSSimon Glass ports { 27*bcd5dfffSSimon Glass port@0 { 28*bcd5dfffSSimon Glass bridge_out: endpoint { 29*bcd5dfffSSimon Glass remote-endpoint = <&panel_in>; 30*bcd5dfffSSimon Glass }; 31*bcd5dfffSSimon Glass }; 32*bcd5dfffSSimon Glass }; 33*bcd5dfffSSimon Glass }; 34