hc
2023-12-08 01573e231f18eb2d99162747186f59511f56b64d
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/display/bridge/lontium,lt9611.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#
 
title: Lontium LT9611 2 Port MIPI to HDMI Bridge
 
maintainers:
  - Vinod Koul <vkoul@kernel.org>
 
description: |
  The LT9611 is a bridge device which converts DSI to HDMI
 
properties:
  compatible:
    enum:
      - lontium,lt9611
 
  reg:
    maxItems: 1
 
  "#sound-dai-cells":
    const: 1
 
  interrupts:
    maxItems: 1
 
  reset-gpios:
    maxItems: 1
    description: GPIO connected to active high RESET pin.
 
  vdd-supply:
    description: Regulator for 1.8V MIPI phy power.
 
  vcc-supply:
    description: Regulator for 3.3V IO power.
 
  ports:
    type: object
 
    properties:
      "#address-cells":
        const: 1
 
      "#size-cells":
        const: 0
 
      port@0:
        type: object
        description: |
          Primary MIPI port-1 for MIPI input
 
        properties:
          reg:
            const: 0
 
        patternProperties:
          "^endpoint(@[0-9])$":
            type: object
            additionalProperties: false
 
            properties:
              remote-endpoint:
                $ref: /schemas/types.yaml#/definitions/phandle
 
        required:
          - reg
 
      port@1:
        type: object
        description: |
          Additional MIPI port-2 for MIPI input, used in combination
          with primary MIPI port-1 to drive higher resolution displays
 
        properties:
          reg:
            const: 1
 
        patternProperties:
          "^endpoint(@[0-9])$":
            type: object
            additionalProperties: false
 
            properties:
              remote-endpoint:
                $ref: /schemas/types.yaml#/definitions/phandle
 
        required:
          - reg
 
      port@2:
        type: object
        description: |
          HDMI port for HDMI output
 
        properties:
          reg:
            const: 2
 
        patternProperties:
          "^endpoint(@[0-9])$":
            type: object
            additionalProperties: false
 
            properties:
              remote-endpoint:
                $ref: /schemas/types.yaml#/definitions/phandle
 
        required:
          - reg
 
    required:
      - "#address-cells"
      - "#size-cells"
      - port@0
      - port@2
 
required:
  - compatible
  - reg
  - interrupts
  - vdd-supply
  - vcc-supply
  - ports
 
additionalProperties: false
 
examples:
  - |
    #include <dt-bindings/gpio/gpio.h>
    #include <dt-bindings/interrupt-controller/irq.h>
 
    i2c10 {
      #address-cells = <1>;
      #size-cells = <0>;
 
      hdmi-bridge@3b {
        compatible = "lontium,lt9611";
        reg = <0x3b>;
 
        reset-gpios = <&tlmm 128 GPIO_ACTIVE_HIGH>;
        interrupts-extended = <&tlmm 84 IRQ_TYPE_EDGE_FALLING>;
 
        vdd-supply = <&lt9611_1v8>;
        vcc-supply = <&lt9611_3v3>;
 
        ports {
          #address-cells = <1>;
          #size-cells = <0>;
 
          port@0 {
            reg = <0>;
            lt9611_a: endpoint {
              remote-endpoint = <&dsi0_out>;
            };
          };
 
          port@1 {
            reg = <1>;
            lt9611_b: endpoint {
              remote-endpoint = <&dsi1_out>;
            };
          };
 
          port@2 {
            reg = <2>;
            lt9611_out: endpoint {
              remote-endpoint = <&hdmi_con>;
            };
          };
        };
      };
    };
 
...