1/* 2 * Copyright (c) 2018 Yurii Hamann 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7#include <st/f7/stm32f745.dtsi> 8#include <zephyr/dt-bindings/display/panel.h> 9 10/ { 11 soc { 12 compatible = "st,stm32f746", "st,stm32f7", "simple-bus"; 13 14 ltdc: display-controller@40016800 { 15 compatible = "st,stm32-ltdc"; 16 reg = <0x40016800 0x200>; 17 interrupts = <88 0>, <89 0>; 18 interrupt-names = "ltdc", "ltdc_err"; 19 clocks = <&rcc STM32_CLOCK_BUS_APB2 0x04000000>; 20 status = "disabled"; 21 }; 22 }; 23}; 24