Based on kernel version 6.11
. Page generated on 2024-09-24 08:21 EST
.
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 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 | # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) %YAML 1.2 --- $id: http://devicetree.org/schemas/display/bridge/nwl-dsi.yaml# $schema: http://devicetree.org/meta-schemas/core.yaml# title: Northwest Logic MIPI-DSI controller on i.MX SoCs maintainers: - Guido GĂșnther <agx@sigxcpu.org> - Robert Chiras <robert.chiras@nxp.com> description: | NWL MIPI-DSI host controller found on i.MX8 platforms. This is a dsi bridge for the SOCs NWL MIPI-DSI host controller. allOf: - $ref: ../dsi-controller.yaml# properties: compatible: const: fsl,imx8mq-nwl-dsi reg: maxItems: 1 interrupts: maxItems: 1 '#address-cells': const: 1 '#size-cells': const: 0 assigned-clock-parents: true assigned-clock-rates: true assigned-clocks: true clocks: items: - description: DSI core clock - description: RX_ESC clock (used in escape mode) - description: TX_ESC clock (used in escape mode) - description: PHY_REF clock - description: LCDIF clock clock-names: items: - const: core - const: rx_esc - const: tx_esc - const: phy_ref - const: lcdif mux-controls: description: mux controller node to use for operating the input mux phys: maxItems: 1 description: A phandle to the phy module representing the DPHY phy-names: items: - const: dphy power-domains: maxItems: 1 resets: items: - description: dsi byte reset line - description: dsi dpi reset line - description: dsi esc reset line - description: dsi pclk reset line reset-names: items: - const: byte - const: dpi - const: esc - const: pclk ports: $ref: /schemas/graph.yaml#/properties/ports properties: port@0: $ref: /schemas/graph.yaml#/$defs/port-base description: Input port node to receive pixel data from the display controller. Exactly one endpoint must be specified. properties: endpoint@0: $ref: /schemas/graph.yaml#/properties/endpoint description: sub-node describing the input from LCDIF endpoint@1: $ref: /schemas/graph.yaml#/properties/endpoint description: sub-node describing the input from DCSS oneOf: - required: - endpoint@0 - required: - endpoint@1 unevaluatedProperties: false port@1: $ref: /schemas/graph.yaml#/properties/port description: DSI output port node to the panel or the next bridge in the chain required: - port@0 - port@1 required: - '#address-cells' - '#size-cells' - clock-names - clocks - compatible - interrupts - mux-controls - phy-names - phys - ports - reg - reset-names - resets unevaluatedProperties: false examples: - | #include <dt-bindings/clock/imx8mq-clock.h> #include <dt-bindings/gpio/gpio.h> #include <dt-bindings/interrupt-controller/arm-gic.h> #include <dt-bindings/reset/imx8mq-reset.h> dsi@30a00000 { #address-cells = <1>; #size-cells = <0>; compatible = "fsl,imx8mq-nwl-dsi"; reg = <0x30A00000 0x300>; clocks = <&clk IMX8MQ_CLK_DSI_CORE>, <&clk IMX8MQ_CLK_DSI_AHB>, <&clk IMX8MQ_CLK_DSI_IPG_DIV>, <&clk IMX8MQ_CLK_DSI_PHY_REF>, <&clk IMX8MQ_CLK_LCDIF_PIXEL>; clock-names = "core", "rx_esc", "tx_esc", "phy_ref", "lcdif"; interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>; mux-controls = <&mux 0>; power-domains = <&pgc_mipi>; resets = <&src IMX8MQ_RESET_MIPI_DSI_RESET_BYTE_N>, <&src IMX8MQ_RESET_MIPI_DSI_DPI_RESET_N>, <&src IMX8MQ_RESET_MIPI_DSI_ESC_RESET_N>, <&src IMX8MQ_RESET_MIPI_DSI_PCLK_RESET_N>; reset-names = "byte", "dpi", "esc", "pclk"; phys = <&dphy>; phy-names = "dphy"; panel@0 { compatible = "rocktech,jh057n00900"; reg = <0>; vcc-supply = <®_2v8_p>; iovcc-supply = <®_1v8_p>; reset-gpios = <&gpio3 13 GPIO_ACTIVE_LOW>; port { panel_in: endpoint { remote-endpoint = <&mipi_dsi_out>; }; }; }; ports { #address-cells = <1>; #size-cells = <0>; port@0 { #size-cells = <0>; #address-cells = <1>; reg = <0>; mipi_dsi_in: endpoint@0 { reg = <0>; remote-endpoint = <&lcdif_mipi_dsi>; }; }; port@1 { reg = <1>; mipi_dsi_out: endpoint { remote-endpoint = <&panel_in>; }; }; }; }; |