1/* 2 * Copyright (c) 2019 STMicroelectronics 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7#include <mem.h> 8#include <st/l4/stm32l4r5.dtsi> 9#include <zephyr/dt-bindings/display/panel.h> 10 11/ { 12 soc { 13 compatible = "st,stm32l4r9", "st,stm32l4", "simple-bus"; 14 15 ltdc: display-controller@40016800 { 16 compatible = "st,stm32-ltdc"; 17 reg = <0x40016800 0x200>; 18 interrupts = <91 0>, <92 0>; 19 interrupt-names = "ltdc", "ltdc_er"; 20 clocks = <&rcc STM32_CLOCK(APB2, 26U)>; 21 resets = <&rctl STM32_RESET(APB2, 26U)>; 22 status = "disabled"; 23 }; 24 }; 25}; 26