1 * STMicroelectronics STM32 lcd-tft display controller
3 - ltdc: lcd-tft display controller host
5 - compatible: "st,stm32-ltdc"
6 - reg: Physical base address of the IP registers and length of memory mapped region.
7 - clocks: A list of phandle + clock-specifier pairs, one for each
8 entry in 'clock-names'.
9 - clock-names: A list of clock names. For ltdc it should contain:
10 - "lcd" for the clock feeding the output pixel clock & IP clock.
11 - resets: reset to be used by the device (defined by use of RCC macro).
13 - Video port for DPI RGB output: ltdc has one video port with up to 2
15 - for external dpi rgb panel or bridge, using gpios.
16 - for internal dpi input of the MIPI DSI host controller.
17 Note: These 2 endpoints cannot be activated simultaneously.
19 * STMicroelectronics STM32 DSI controller specific extensions to Synopsys
20 DesignWare MIPI DSI host controller
22 The STMicroelectronics STM32 DSI controller uses the Synopsys DesignWare MIPI
23 DSI host controller. For all mandatory properties & nodes, please refer
24 to the related documentation in [5].
26 Mandatory properties specific to STM32 DSI:
27 - #address-cells: Should be <1>.
28 - #size-cells: Should be <0>.
29 - compatible: "st,stm32-dsi".
31 - phy pll reference clock string name, must be "ref".
33 - reset-names: see [5].
35 Mandatory nodes specific to STM32 DSI:
36 - ports: A node containing DSI input & output port nodes with endpoint
37 definitions as documented in [3] & [4].
38 - port@0: DSI input port node, connected to the ltdc rgb output port.
39 - port@1: DSI output port node, connected to a panel or a bridge input port.
40 - panel or bridge node: A node containing the panel or bridge description as
42 - port: panel or bridge port node, connected to the DSI output port (port@1).
44 Note: You can find more documentation in the following references
45 [1] Documentation/devicetree/bindings/clock/clock-bindings.txt
46 [2] Documentation/devicetree/bindings/reset/reset.txt
47 [3] Documentation/devicetree/bindings/media/video-interfaces.txt
48 [4] Documentation/devicetree/bindings/graph.txt
49 [5] Documentation/devicetree/bindings/display/bridge/dw_mipi_dsi.txt
50 [6] Documentation/devicetree/bindings/display/mipi-dsi-bus.txt
57 ltdc: display-controller@40016800 {
58 compatible = "st,stm32-ltdc";
59 reg = <0x40016800 0x200>;
60 interrupts = <88>, <89>;
61 resets = <&rcc STM32F4_APB2_RESET(LTDC)>;
62 clocks = <&rcc 1 CLK_LCD>;
66 ltdc_out_rgb: endpoint {
79 ltdc: display-controller@40016800 {
80 compatible = "st,stm32-ltdc";
81 reg = <0x40016800 0x200>;
82 interrupts = <88>, <89>;
83 resets = <&rcc STM32F4_APB2_RESET(LTDC)>;
84 clocks = <&rcc 1 CLK_LCD>;
88 ltdc_out_dsi: endpoint {
89 remote-endpoint = <&dsi_in>;
98 compatible = "st,stm32-dsi";
99 reg = <0x40016c00 0x800>;
100 clocks = <&rcc 1 CLK_F469_DSI>, <&clk_hse>;
101 clock-names = "ref", "pclk";
102 resets = <&rcc STM32F4_APB2_RESET(DSI)>;
106 #address-cells = <1>;
112 remote-endpoint = <<dc_out_dsi>;
119 remote-endpoint = <&dsi_in_panel>;
126 reg = <0>; /* dsi virtual channel (0..3) */
131 dsi_in_panel: endpoint {
132 remote-endpoint = <&dsi_out>;