From 3ed21ca42cee24b08e54f10aeb96a60e6e49f0d5 Mon Sep 17 00:00:00 2001 From: David Hendricks Date: Mon, 2 Jul 2012 17:12:35 -0700 Subject: stm32: increase CONFIG_FW_IMAGE_SIZE to 64KB This increases the size of each image for STM32 devices from 32KB to 64KB. Signed-off-by: David Hendricks BUG=none TEST=Built and flashed to Snow, built for Daisy Change-Id: Ide9b0a9e9929c8861a701c868e7ad3010aa575e1 Reviewed-on: https://gerrit.chromium.org/gerrit/26635 Reviewed-by: Simon Glass Tested-by: Simon Glass Commit-Ready: Simon Glass --- chip/stm32/config-stm32f100.h | 2 +- chip/stm32/config-stm32l15x.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/chip/stm32/config-stm32f100.h b/chip/stm32/config-stm32f100.h index cf9c32b86b..51e4420537 100644 --- a/chip/stm32/config-stm32f100.h +++ b/chip/stm32/config-stm32f100.h @@ -11,7 +11,7 @@ #define CONFIG_RAM_SIZE 0x00002000 /* Size of one firmware image in flash */ -#define CONFIG_FW_IMAGE_SIZE (32 * 1024) +#define CONFIG_FW_IMAGE_SIZE (64 * 1024) #define CONFIG_FW_RO_OFF 0 #define CONFIG_FW_RO_SIZE CONFIG_FW_IMAGE_SIZE diff --git a/chip/stm32/config-stm32l15x.h b/chip/stm32/config-stm32l15x.h index 5f42524d95..7bbb7e4f09 100644 --- a/chip/stm32/config-stm32l15x.h +++ b/chip/stm32/config-stm32l15x.h @@ -11,7 +11,7 @@ #define CONFIG_RAM_SIZE 0x00004000 /* Size of one firmware image in flash */ -#define CONFIG_FW_IMAGE_SIZE (32 * 1024) +#define CONFIG_FW_IMAGE_SIZE (64 * 1024) #define CONFIG_FW_RO_OFF 0 #define CONFIG_FW_RO_SIZE CONFIG_FW_IMAGE_SIZE -- cgit v1.2.1