]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
ARM: dts: stm32: support MIPI DSI on stm32f469-disco board
authorDario Binacchi <dario.binacchi@amarulasolutions.com>
Mon, 11 Dec 2023 22:05:54 +0000 (23:05 +0100)
committerPatrice Chotard <patrice.chotard@foss.st.com>
Fri, 15 Dec 2023 14:41:23 +0000 (15:41 +0100)
Unlike Linux, the DSI driver requires the LTDC clock to be properly
probed. Hence, the changes made to the DSI node.

Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>
arch/arm/dts/stm32f469-disco-u-boot.dtsi

index 8e781c5a7b2380aa34e54f0da163d3ddbdbaa370..47ba9fa4a7830e3f2b5dbfaacd380e2ce8a79c66 100644 (file)
@@ -92,7 +92,9 @@
 
 &dsi {
        clocks = <&rcc 0 STM32F4_APB2_CLOCK(DSI)>,
+                <&rcc 0 STM32F4_APB2_CLOCK(LTDC)>,
                 <&clk_hse>;
+       clock-names = "pclk", "px_clk", "ref";
 };
 
 &gpioa {
 };
 
 &ltdc {
+       bootph-all;
+
        clocks = <&rcc 0 STM32F4_APB2_CLOCK(LTDC)>;
 };