Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ARM: dts: stm32: Add new stm32f469 dtsi file with mipi dsi

In the stm32f4 family, mipi dsi is only supported on stm32f469.
So add a new stm32f469 dtsi file & add mipi dsi support inside.

Signed-off-by: Philippe Cornu <philippe.cornu@st.com>
Signed-off-by: Alexandre Torgue <alexandre.torgue@st.com>

authored by

Philippe Cornu and committed by
Alexandre Torgue
c5931d9e 09a31aed

+19
+19
arch/arm/boot/dts/stm32f469.dtsi
··· 1 + /* SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) */ 2 + /* Copyright (C) STMicroelectronics 2017 - All Rights Reserved */ 3 + 4 + #include "stm32f429.dtsi" 5 + 6 + / { 7 + soc { 8 + dsi: dsi@40016c00 { 9 + compatible = "st,stm32-dsi"; 10 + reg = <0x40016c00 0x800>; 11 + interrupts = <92>; 12 + resets = <&rcc STM32F4_APB2_RESET(DSI)>; 13 + reset-names = "apb"; 14 + clocks = <&rcc 1 CLK_F469_DSI>, <&clk_hse>; 15 + clock-names = "pclk", "ref"; 16 + status = "disabled"; 17 + }; 18 + }; 19 + };