dts: arm: st: Add additional SoCs into mem.h
Updated st/mem.h to support the following SoCs: CONFIG_SOC_STM32F303XC CONFIG_SOC_STM32F407XX CONFIG_SOC_STM32F429XX Change-Id: I1654c1fd8dc0d1eb471c092777a8fd262465dc51 Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
parent
a125bb4483
commit
6fe33684d5
1 changed files with 9 additions and 0 deletions
|
@ -12,6 +12,9 @@
|
|||
#elif defined(CONFIG_SOC_STM32F107XC)
|
||||
#define DT_FLASH_SIZE __SIZE_K(256)
|
||||
#define DT_SRAM_SIZE __SIZE_K(64)
|
||||
#elif defined(CONFIG_SOC_STM32F303XC)
|
||||
#define DT_FLASH_SIZE __SIZE_K(256)
|
||||
#define DT_SRAM_SIZE __SIZE_K(40)
|
||||
#elif defined(CONFIG_SOC_STM32F334X8)
|
||||
#define DT_FLASH_SIZE __SIZE_K(64)
|
||||
#define DT_SRAM_SIZE __SIZE_K(12)
|
||||
|
@ -21,9 +24,15 @@
|
|||
#elif defined(CONFIG_SOC_STM32F401XE)
|
||||
#define DT_FLASH_SIZE __SIZE_K(512)
|
||||
#define DT_SRAM_SIZE __SIZE_K(96)
|
||||
#elif defined(CONFIG_SOC_STM32F407XX)
|
||||
#define DT_FLASH_SIZE __SIZE_K(1024)
|
||||
#define DT_SRAM_SIZE __SIZE_K(192)
|
||||
#elif defined(CONFIG_SOC_STM32F411XE)
|
||||
#define DT_FLASH_SIZE __SIZE_K(512)
|
||||
#define DT_SRAM_SIZE __SIZE_K(128)
|
||||
#elif defined(CONFIG_SOC_STM32F429XX)
|
||||
#define DT_FLASH_SIZE __SIZE_K(2048)
|
||||
#define DT_SRAM_SIZE __SIZE_K(256)
|
||||
#elif defined(CONFIG_SOC_STM32L476XX)
|
||||
#define DT_FLASH_SIZE __SIZE_K(1024)
|
||||
#define DT_SRAM_SIZE __SIZE_K(96)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue