2018-05-28 19:38:26 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 Yurii Hamann
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
/dts-v1/;
|
2018-09-27 08:23:21 -05:00
|
|
|
#include <st/f7/stm32f746Xg.dtsi>
|
2020-10-03 19:00:36 +02:00
|
|
|
#include <st/f7/stm32f746nghx-pinctrl.dtsi>
|
2020-06-16 20:01:43 +02:00
|
|
|
#include "arduino_r3_connector.dtsi"
|
2018-05-28 19:38:26 +03:00
|
|
|
|
|
|
|
/ {
|
|
|
|
model = "STMicroelectronics STM32F746G DISCOVERY board";
|
2020-09-25 14:57:24 +02:00
|
|
|
compatible = "st,stm32f746g-disco";
|
2018-05-28 19:38:26 +03:00
|
|
|
|
|
|
|
chosen {
|
|
|
|
zephyr,console = &usart1;
|
2018-11-27 12:11:04 +01:00
|
|
|
zephyr,shell-uart = &usart1;
|
2018-05-28 19:38:26 +03:00
|
|
|
zephyr,sram = &sram0;
|
|
|
|
zephyr,flash = &flash0;
|
2019-06-27 14:45:47 +02:00
|
|
|
zephyr,dtcm = &dtcm;
|
2021-01-18 15:35:48 +01:00
|
|
|
zephyr,flash-controller = &n25q128a1;
|
2018-05-28 19:38:26 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
leds {
|
|
|
|
compatible = "gpio-leds";
|
2018-09-18 19:45:43 +02:00
|
|
|
green_led_1: led_1 {
|
2019-10-03 18:30:21 +02:00
|
|
|
gpios = <&gpioi 1 GPIO_ACTIVE_HIGH>;
|
2018-05-28 19:38:26 +03:00
|
|
|
label = "User LD1";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
gpio_keys {
|
|
|
|
compatible = "gpio-keys";
|
2018-09-21 01:25:55 +02:00
|
|
|
user_button: button {
|
2018-05-28 19:38:26 +03:00
|
|
|
label = "User";
|
2019-10-03 18:30:21 +02:00
|
|
|
gpios = <&gpioi 11 GPIO_ACTIVE_HIGH>;
|
2018-05-28 19:38:26 +03:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
aliases {
|
|
|
|
led0 = &green_led_1;
|
|
|
|
sw0 = &user_button;
|
2020-03-19 17:25:22 +01:00
|
|
|
kscan0 = &touch_controller;
|
2018-05-28 19:38:26 +03:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-04-30 15:44:09 +02:00
|
|
|
&clk_hse {
|
|
|
|
clock-frequency = <DT_FREQ_M(25)>;
|
|
|
|
status = "okay";
|
|
|
|
};
|
|
|
|
|
|
|
|
&pll {
|
|
|
|
div-m = <25>;
|
|
|
|
mul-n = <432>;
|
|
|
|
div-p = <2>;
|
|
|
|
div-q = <9>;
|
|
|
|
clocks = <&clk_hse>;
|
|
|
|
status = "okay";
|
|
|
|
};
|
|
|
|
|
|
|
|
&rcc {
|
|
|
|
clocks = <&pll>;
|
|
|
|
clock-frequency = <DT_FREQ_M(216)>;
|
|
|
|
ahb-prescaler = <1>;
|
|
|
|
apb1-prescaler = <4>;
|
|
|
|
apb2-prescaler = <2>;
|
|
|
|
};
|
|
|
|
|
2018-10-16 22:26:47 +02:00
|
|
|
&i2c1 {
|
2020-10-12 17:53:50 +02:00
|
|
|
pinctrl-0 = <&i2c1_scl_pb8 &i2c1_sda_pb9>;
|
2019-06-14 19:31:16 +02:00
|
|
|
status = "okay";
|
2018-10-16 22:26:47 +02:00
|
|
|
clock-frequency = <I2C_BITRATE_FAST>;
|
|
|
|
};
|
|
|
|
|
2020-03-19 17:25:22 +01:00
|
|
|
&i2c3 {
|
2020-10-12 17:53:50 +02:00
|
|
|
pinctrl-0 = <&i2c3_scl_ph7 &i2c3_sda_ph8>;
|
2020-03-19 17:25:22 +01:00
|
|
|
status = "okay";
|
|
|
|
clock-frequency = <I2C_BITRATE_FAST>;
|
|
|
|
|
|
|
|
touch_controller: ft5336@38 {
|
|
|
|
compatible = "focaltech,ft5336";
|
|
|
|
reg = <0x38>;
|
|
|
|
label = "FT5336";
|
|
|
|
int-gpios = <&gpioi 13 0>;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-10-16 22:26:47 +02:00
|
|
|
&spi2 {
|
2021-06-17 14:50:45 +02:00
|
|
|
pinctrl-0 = <&spi2_sck_pi1 &spi2_miso_pb14 &spi2_mosi_pb15>;
|
|
|
|
cs-gpios = <&gpioa 8 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>;
|
2019-06-14 19:31:16 +02:00
|
|
|
status = "okay";
|
2018-10-16 22:26:47 +02:00
|
|
|
};
|
|
|
|
|
2018-05-28 19:38:26 +03:00
|
|
|
&usart1 {
|
2020-10-06 11:07:32 +02:00
|
|
|
pinctrl-0 = <&usart1_tx_pa9 &usart1_rx_pb7>;
|
2021-09-07 16:38:13 +02:00
|
|
|
pinctrl-names = "default";
|
2018-05-28 19:38:26 +03:00
|
|
|
current-speed = <115200>;
|
2019-06-14 19:31:16 +02:00
|
|
|
status = "okay";
|
2018-05-28 19:38:26 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
&usart6 {
|
2020-10-06 11:07:32 +02:00
|
|
|
pinctrl-0 = <&usart6_tx_pc6 &usart6_rx_pc7>;
|
2021-09-07 16:38:13 +02:00
|
|
|
pinctrl-names = "default";
|
2018-05-28 19:38:26 +03:00
|
|
|
current-speed = <115200>;
|
2019-06-14 19:31:16 +02:00
|
|
|
status = "okay";
|
2018-05-28 19:38:26 +03:00
|
|
|
};
|
2018-10-16 22:26:47 +02:00
|
|
|
|
2021-08-05 15:46:23 +02:00
|
|
|
zephyr_udc0: &usbotg_fs {
|
2020-10-21 17:49:48 +02:00
|
|
|
pinctrl-0 = <&usb_otg_fs_dm_pa11 &usb_otg_fs_dp_pa12>;
|
2019-06-14 19:31:16 +02:00
|
|
|
status = "okay";
|
2018-10-16 22:26:47 +02:00
|
|
|
};
|
|
|
|
|
2020-10-03 19:00:36 +02:00
|
|
|
&timers3 {
|
2021-10-20 19:47:14 +02:00
|
|
|
st,prescaler = <10000>;
|
2019-06-14 19:31:16 +02:00
|
|
|
status = "okay";
|
2018-10-16 22:26:47 +02:00
|
|
|
|
2020-10-03 19:00:36 +02:00
|
|
|
pwm3: pwm {
|
2019-06-14 19:31:16 +02:00
|
|
|
status = "okay";
|
2020-11-02 17:40:50 +01:00
|
|
|
pinctrl-0 = <&tim3_ch1_pb4>;
|
2018-10-16 22:26:47 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
&rtc {
|
2019-06-14 19:31:16 +02:00
|
|
|
status = "okay";
|
2018-10-16 22:26:47 +02:00
|
|
|
};
|
2020-04-24 15:43:24 +02:00
|
|
|
|
|
|
|
&sdmmc1 {
|
|
|
|
status = "okay";
|
2020-10-23 13:56:11 +02:00
|
|
|
pinctrl-0 = <&sdmmc1_d0_pc8 &sdmmc1_d1_pc9
|
|
|
|
&sdmmc1_d2_pc10 &sdmmc1_d3_pc11
|
|
|
|
&sdmmc1_ck_pc12 &sdmmc1_cmd_pd2>;
|
2020-04-24 15:43:24 +02:00
|
|
|
cd-gpios = <&gpioc 13 GPIO_ACTIVE_LOW>;
|
|
|
|
};
|
2020-07-15 13:14:37 +02:00
|
|
|
|
|
|
|
&mac {
|
|
|
|
status = "okay";
|
2020-10-15 23:13:49 +02:00
|
|
|
pinctrl-0 = <ð_mdc_pc1
|
|
|
|
ð_rxd0_pc4
|
|
|
|
ð_rxd1_pc5
|
|
|
|
ð_ref_clk_pa1
|
|
|
|
ð_mdio_pa2
|
|
|
|
ð_crs_dv_pa7
|
|
|
|
ð_tx_en_pg11
|
|
|
|
ð_txd0_pg13
|
|
|
|
ð_txd1_pg14>;
|
2020-07-15 13:14:37 +02:00
|
|
|
};
|
2021-01-18 15:35:48 +01:00
|
|
|
|
|
|
|
&quadspi {
|
|
|
|
pinctrl-0 = <&quadspi_clk_pb2 &quadspi_bk1_ncs_pb6
|
|
|
|
&quadspi_bk1_io0_pd11 &quadspi_bk1_io1_pd12
|
|
|
|
&quadspi_bk1_io2_pe2 &quadspi_bk1_io3_pd13>;
|
|
|
|
status = "okay";
|
|
|
|
|
|
|
|
n25q128a1: qspi-nor-flash@0 {
|
|
|
|
compatible = "st,stm32-qspi-nor";
|
|
|
|
label = "N25Q128A1";
|
|
|
|
reg = <0>;
|
|
|
|
qspi-max-frequency = <72000000>;
|
|
|
|
size = <DT_SIZE_M(16*8)>;
|
|
|
|
status = "okay";
|
|
|
|
|
|
|
|
partitions {
|
|
|
|
compatible = "fixed-partitions";
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <1>;
|
|
|
|
|
|
|
|
slot1_partition: partition@0 {
|
|
|
|
label = "image-1";
|
|
|
|
reg = <0x00000000 0x000a0000>;
|
|
|
|
};
|
|
|
|
|
|
|
|
storage_partition: partition@a0000 {
|
|
|
|
label = "storage";
|
|
|
|
reg = <0x000a0000 DT_SIZE_M(15)>;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|