diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2022-11-03 12:41:28 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2022-11-08 09:53:04 -0500 |
commit | 42e9adcfc9963b54c71e8851e1a6a41a001531e5 (patch) | |
tree | 1ebbecfbe8eff81d4b1a5a66cc92b0e160a8d6dd /src/stm32 | |
parent | 11dd273b34e78b82ec16d22495aa107233ac6779 (diff) | |
download | kutter-42e9adcfc9963b54c71e8851e1a6a41a001531e5.tar.gz kutter-42e9adcfc9963b54c71e8851e1a6a41a001531e5.tar.xz kutter-42e9adcfc9963b54c71e8851e1a6a41a001531e5.zip |
armcm_reset: Introduce Kconfig FLASH_BOOT_ADDRESS value
Specify the arm architecture flash bootup address for each chip type
in Kconfig using a new FLASH_BOOT_ADDRESS setting.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/stm32')
-rw-r--r-- | src/stm32/Kconfig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/stm32/Kconfig b/src/stm32/Kconfig index 45238407..9cdb3c31 100644 --- a/src/stm32/Kconfig +++ b/src/stm32/Kconfig @@ -164,6 +164,10 @@ config FLASH_SIZE default 0x20000 if MACH_STM32H750 default 0x200000 if MACH_STM32H743 +config FLASH_BOOT_ADDRESS + hex + default 0x8000000 + config RAM_START hex default 0x20000000 |