hc
2024-08-12 233ab1bd4c5697f5cdec94e60206e8c6ac609b4c
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
* Lontium lt7911d type-c/DP to MIPI-CSI Bridge
 
Required Properties:
- compatible: should be "lontium,lt7911d".
- clocks: reference to the 27M xvclk input clock.
- clock-names: should be "xvclk".
- reset-gpios: Low active reset gpio.
- power-gpios: High active power gpio.
- hpd-ctl-gpios: High active hpd control gpio.
        If inverted circuit, choose low active.
- plugin-det-gpios: Low active plugin detect gpio.
- interrupts: GPIO connected to the gpio5.
- data-lanes: should be <1 2 3 4> for four-lane operation,
         or <1 2> for two-lane operation.
 
Attention:
LT7911D device address 0x2b(7bit)
 
Example:
&i2c7 {
   status = "okay";
 
   lt7911d: lt7911d@2b {
       compatible = "lontium,lt7911d";
       status = "okay";
       reg = <0x2b>;
       clocks = <&cru CLK_MIPI_CAMARAOUT_M1>;
       clock-names = "xvclk";
       interrupt-parent = <&gpio3>;
       interrupts = <RK_PD4 IRQ_TYPE_EDGE_RISING>;
       power-domains = <&power RK3588_PD_VI>;
       pinctrl-names = "default";
       pinctrl-0 = <&mipim1_camera1_clk>;
       reset-gpios = <&gpio3 RK_PC6 GPIO_ACTIVE_LOW>;
       power-gpios = <&gpio0 RK_PD6 GPIO_ACTIVE_HIGH>;
       hpd-ctl-gpios = <&gpio3 RK_PC5 GPIO_ACTIVE_HIGH>;
       plugin-det-gpios = <&gpio0 RK_PD6 GPIO_ACTIVE_LOW>;
       rockchip,camera-module-index = <0>;
       rockchip,camera-module-facing = "back";
       rockchip,camera-module-name = "LT7911D";
       rockchip,camera-module-lens-name = "NC";
       port {
           lt7911d_out: endpoint {
               remote-endpoint = <&hdmi_mipi_in>;
               data-lanes = <1 2 3 4>;
           };
       };
   };
};