hc
2023-02-14 0cc9b7c44253c93447ddf73e206fbdbb3d9f16b1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
Lontium LT9611 MIPI-DSI to HDMI bridge bindings
 
Required properties:
 - compatible: "lontium,lt9611"
 - reg: i2c address of the bridge
 - reset-gpios: a GPIO spec for the reset pin
 - interrupts-extended: Specify the interrupts associated with external
 - vdd-supply: Reference to the regulator powering the bridge 1.8V power supply pins
 - vcc-supply: Reference to the regulator powering the bridge 3.3V power supply pins
 
ptional properties:
 - enable-gpios: a GPIO spec for the power supply enable control
 
Example:
 
&dsi {
   status = "okay";
 
   ports {
       #address-cells = <1>;
       #size-cells = <0>;
 
       port@1 {
           reg = <1>;
           dsi_out_lt9611: endpoint {
               remote-endpoint = <&lt9611_in_dsi>;
           };
       };
   };
 
};
 
&i2c0 {
   status = "okay";
 
   lontium-lt9611@39 {
       compatible = "lontium,lt9611";
       status = "okay";
       reg = <0x39>;
       interrupts-extended = <&gpio0 RK_PB5 IRQ_TYPE_EDGE_FALLING>;
       reset-gpios = <&gpio0 RK_PB6 GPIO_ACTIVE_HIGH>;
       vdd-supply = <&lt9611_1v8>;
       vcc-supply = <&lt9611_3v3>;
 
       ports {
           #address-cells = <1>;
           #size-cells = <0>;
 
           port@0 {
               reg = <0>;
 
               lt9611_in_dsi: endpoint {
                   remote-endpoint = <&dsi_out_lt9611>;
               };
           };
 
       };
 
   };
};