2020-11-01 04:28:30 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020 Alexander Kozhinov <AlexanderKozhinov@yandex.com>
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <st/h7/stm32h7.dtsi>
|
|
|
|
|
|
|
|
/ {
|
2020-12-04 23:17:05 +08:00
|
|
|
soc {
|
|
|
|
flash-controller@52002000 {
|
|
|
|
flash0: flash@8000000 {
|
|
|
|
write-block-size = <32>;
|
|
|
|
erase-block-size = <DT_SIZE_K(128)>;
|
|
|
|
};
|
|
|
|
};
|
2021-03-16 14:02:59 +08:00
|
|
|
|
|
|
|
uart9: serial@40011800 {
|
|
|
|
compatible = "st,stm32-uart";
|
|
|
|
reg = <0x40011800 0x400>;
|
|
|
|
clocks = <&rcc STM32_CLOCK_BUS_APB2 0x00000040>;
|
|
|
|
interrupts = <155 0>;
|
|
|
|
status = "disabled";
|
|
|
|
label = "UART_9";
|
|
|
|
};
|
2021-03-20 21:27:05 +08:00
|
|
|
|
2021-04-27 15:47:20 +08:00
|
|
|
usart10: serial@40011c00 {
|
|
|
|
compatible = "st,stm32-usart", "st,stm32-uart";
|
|
|
|
reg = <0x40011c00 0x400>;
|
|
|
|
clocks = <&rcc STM32_CLOCK_BUS_APB2 0x00000080>;
|
|
|
|
interrupts = <156 0>;
|
|
|
|
status = "disabled";
|
|
|
|
label = "UART_10";
|
|
|
|
};
|
|
|
|
|
2021-03-20 21:27:05 +08:00
|
|
|
dmamux1: dmamux@40020800 {
|
|
|
|
dma-requests= <129>;
|
|
|
|
};
|
2020-12-04 23:17:05 +08:00
|
|
|
};
|
2021-03-20 21:27:05 +08:00
|
|
|
|
2020-11-01 04:28:30 +08:00
|
|
|
/* DTCM memory directly coppled to CPU */
|
|
|
|
dtcm: memory@20000000 {
|
|
|
|
compatible = "arm,dtcm";
|
|
|
|
reg = <0x20000000 DT_SIZE_K(128)>;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* AXI SRAM in D1 domain (AXI bus) */
|
|
|
|
sram0: memory@24000000 {
|
|
|
|
reg = <0x24000000 DT_SIZE_K(128)>;
|
|
|
|
compatible = "mmio-sram";
|
|
|
|
};
|
|
|
|
};
|