From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?Q?Mark_Olsson?= Date: Wed, 1 Aug 2018 11:08:47 +0000 Subject: [U-Boot] [PATCH] ram: stm32_sdram: Adds stm32f746-disco fix for HardFault at booting References: <20180801110827.1442-1-post@markolsson.se> Message-ID: <01020164f52d0cd2-bca1d59b-80c9-49ea-b297-2bec8b9dc777-000000@eu-west-1.amazonses.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de - changes ram start address to 0xC0000000 Signed-off-by: Mark Olsson Cc: Vipin Kumar --- include/configs/stm32f746-disco.h | 2 ++ 1 file changed, 2 insertions(+) mode change 100644 => 100755 include/configs/stm32f746-disco.h diff --git a/include/configs/stm32f746-disco.h b/include/configs/stm32f746-disco.h old mode 100644 new mode 100755 index 567e7f2a00..238d4e939f --- a/include/configs/stm32f746-disco.h +++ b/include/configs/stm32f746-disco.h @@ -21,6 +21,8 @@ * Configuration of the external SDRAM memory */ #define CONFIG_NR_DRAM_BANKS 1 +#define CONFIG_SYS_RAM_BASE 0xC0000000 +#define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_RAM_BASE #define CONFIG_SYS_MAX_FLASH_SECT 8 #define CONFIG_SYS_MAX_FLASH_BANKS 1 -- 2.17.1