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