1/*
2 * Copyright (c) 2017, 2020 Linaro Limited
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#include <st/f4/stm32f427.dtsi>
8#include <zephyr/dt-bindings/display/panel.h>
9
10/ {
11	soc {
12		compatible = "st,stm32f429", "st,stm32f4", "simple-bus";
13
14		dac1: dac@40007400 {
15			compatible = "st,stm32-dac";
16			reg = <0x40007400 0x400>;
17			clocks = <&rcc STM32_CLOCK_BUS_APB1 0x20000000>;
18			status = "disabled";
19			#io-channel-cells = <1>;
20		};
21
22		ltdc: display-controller@40016800 {
23			compatible = "st,stm32-ltdc";
24			reg = <0x40016800 0x200>;
25			interrupts = <88 0>, <89 0>;
26			interrupt-names = "ltdc", "ltdc_er";
27			clocks = <&rcc STM32_CLOCK_BUS_APB2 0x04000000>;
28			status = "disabled";
29		};
30
31	};
32};
33