mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-09 05:25:22 +00:00
Add missing compatible and label for flash nodes on STM32 H7 SoC dtsi files. Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
31 lines
507 B
Plaintext
31 lines
507 B
Plaintext
/*
|
|
* Copyright (c) 2019 Linaro Limited
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <mem.h>
|
|
#include <st/h7/stm32h747.dtsi>
|
|
|
|
/ {
|
|
cpus {
|
|
/delete-node/ cpu@1;
|
|
};
|
|
|
|
/* system data RAM accessible over over AXI bus */
|
|
sram0: memory@24000000 {
|
|
reg = <0x24000000 DT_SIZE_K(512)>;
|
|
compatible = "mmio-sram";
|
|
};
|
|
|
|
soc {
|
|
flash-controller@52002000 {
|
|
flash0: flash@8000000 {
|
|
compatible = "soc-nv-flash";
|
|
label = "FLASH_STM32";
|
|
reg = <0x08000000 DT_SIZE_K(1024)>;
|
|
};
|
|
};
|
|
};
|
|
};
|