1/* 2 * Copyright (c) 2018, Reto Schneider <code@reto-schneider.ch> 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/dts-v1/; 8#include <st/f4/stm32f407Xg.dtsi> 9#include <st/f4/stm32f407z(e-g)tx-pinctrl.dtsi> 10#include <zephyr/dt-bindings/input/input-event-codes.h> 11 12/ { 13 model = "Olimex STM32-H407 board"; 14 compatible = "olimex,stm32-h407"; 15 16 chosen { 17 zephyr,console = &usart2; 18 zephyr,shell-uart = &usart2; 19 zephyr,sram = &sram0; 20 zephyr,flash = &flash0; 21 zephyr,ccm = &ccm0; 22 }; 23 24 leds { 25 compatible = "gpio-leds"; 26 green_led_2: led_2 { 27 gpios = <&gpioa 0 GPIO_ACTIVE_HIGH>; 28 label = "User LD2"; 29 }; 30 }; 31 32 gpio_keys { 33 compatible = "gpio-keys"; 34 user_button: button { 35 label = "User"; 36 gpios = <&gpioc 13 GPIO_ACTIVE_LOW>; 37 zephyr,code = <INPUT_KEY_0>; 38 }; 39 }; 40 41 aliases { 42 led0 = &green_led_2; 43 sw0 = &user_button; 44 }; 45}; 46 47&clk_lsi { 48 status = "okay"; 49}; 50 51&clk_hse { 52 clock-frequency = <DT_FREQ_M(12)>; 53 status = "okay"; 54}; 55 56&pll { 57 div-m = <12>; 58 mul-n = <336>; 59 div-p = <2>; 60 div-q = <7>; 61 clocks = <&clk_hse>; 62 status = "okay"; 63}; 64 65&rcc { 66 clocks = <&pll>; 67 clock-frequency = <DT_FREQ_M(168)>; 68 ahb-prescaler = <1>; 69 apb1-prescaler = <4>; 70 apb2-prescaler = <2>; 71}; 72 73&usart2 { 74 pinctrl-0 = <&usart2_tx_pa2 &usart2_rx_pa3>; 75 pinctrl-names = "default"; 76 current-speed = <115200>; 77 status = "okay"; 78}; 79 80&usart3 { 81 pinctrl-0 = <&usart3_tx_pb10 &usart3_rx_pb11>; 82 pinctrl-names = "default"; 83 current-speed = <115200>; 84 status = "okay"; 85}; 86 87&usart6 { 88 pinctrl-0 = <&usart6_tx_pc6 &usart6_rx_pc7>; 89 pinctrl-names = "default"; 90 current-speed = <115200>; 91 status = "okay"; 92}; 93 94&rtc { 95 clocks = <&rcc STM32_CLOCK_BUS_APB1 0x10000000>, 96 <&rcc STM32_SRC_LSI RTC_SEL(2)>; 97 status = "okay"; 98}; 99 100&rng { 101 status = "okay"; 102}; 103 104zephyr_udc0: &usbotg_fs { 105 pinctrl-0 = <&usb_otg_fs_dm_pa11 &usb_otg_fs_dp_pa12>; 106 pinctrl-names = "default"; 107}; 108