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(APB1, 29U)>; 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(APB2, 26U)>; 28 resets = <&rctl STM32_RESET(APB2, 26U)>; 29 status = "disabled"; 30 }; 31 32 }; 33}; 34