1/*
2 * Copyright (c) 2020 Alexander Kozhinov <ak.alexander.kozhinov@gmail.com>
3 * Copyright (c) 2024 Tomas Jurena <jurena@utb.cz>
4 *
5 * SPDX-License-Identifier: Apache-2.0
6 */
7
8/dts-v1/;
9#include <st/h7/stm32h745Xi_m4.dtsi>
10#include "stm32h745i_disco.dtsi"
11
12/ {
13	model = "STMicroelectronics STM32H745I-DISCO board";
14	compatible = "st,stm32h745i-disco";
15
16	/* HW resources belonging to CM4 */
17	chosen {
18		zephyr,console = &usart2;
19		zephyr,shell-uart = &usart2;
20		zephyr,sram = &sram1;
21		zephyr,flash = &flash1;
22	};
23
24	aliases {
25		led0 = &green_led;
26	};
27};
28
29&usart2 {
30	pinctrl-0 = <&usart2_tx_pd5 &usart2_rx_pd6>;
31	pinctrl-names = "default";
32	current-speed = <115200>;
33	status = "okay";
34};
35
36&rcc {
37	clock-frequency = <DT_FREQ_M(240)>;
38};
39