mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-10 23:16:13 +00:00
add description to SRAM regions Signed-off-by: Alexander Kozhinov <AlexanderKozhinov@yandex.com>
34 lines
823 B
Plaintext
34 lines
823 B
Plaintext
/*
|
|
* Copyright (c) 2020 Alexander Kozhinov <AlexanderKozhinov@yandex.com>
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <st/h7/stm32h7_dualcore.dtsi>
|
|
|
|
/ {
|
|
/*
|
|
* The RAM memories placed here can be used by both cores M4/M7
|
|
* For more information see reference manual and datasheet to STM32H745
|
|
* (RM0399 Rev 3)
|
|
*/
|
|
|
|
/* System data RAM accessible over AXI bus: AXI SRAM in D1 domain */
|
|
sram0: memory@24000000 {
|
|
reg = <0x24000000 DT_SIZE_K(512)>;
|
|
compatible = "mmio-sram";
|
|
};
|
|
|
|
/* System data RAM accessible over AHB bus: SRAM1 in D2 domain */
|
|
sram1: memory@30000000 {
|
|
reg = <0x30000000 DT_SIZE_K(288)>;
|
|
compatible = "mmio-sram";
|
|
};
|
|
|
|
/* System data RAM accessible over AHB bus: SRAM4 in D2 domain */
|
|
sram4: memory@38000000 {
|
|
reg = <0x38000000 DT_SIZE_K(64)>;
|
|
compatible = "mmio-sram";
|
|
};
|
|
};
|