1/* 2 * Copyright (c) 2019 Linaro Limited 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7#include <st/h7/stm32h745.dtsi> 8#include <zephyr/dt-bindings/mipi_dsi/mipi_dsi.h> 9 10/ { 11 soc { 12 compatible = "st,stm32h747", "st,stm32h7", "simple-bus"; 13 14 mipi_dsi: dsihost@50000000 { 15 compatible = "st,stm32-mipi-dsi"; 16 #address-cells = <1>; 17 #size-cells = <0>; 18 reg = <0x50000000 0x1000>; 19 clock-names = "dsiclk", "refclk", "pixelclk"; 20 clocks = <&rcc STM32_CLOCK_BUS_APB3 0x00000010>, 21 <&rcc STM32_SRC_HSE NO_SEL>, 22 <&rcc STM32_SRC_PLL3_R NO_SEL>; 23 resets = <&rctl STM32_RESET(APB3, 4U)>; 24 status = "disabled"; 25 }; 26 }; 27}; 28