summaryrefslogtreecommitdiffstats
path: root/board/mcc200
diff options
context:
space:
mode:
authorWolfgang Denk <wd@denx.de>2009-05-15 00:16:03 +0200
committerWolfgang Denk <wd@denx.de>2009-06-04 00:16:16 +0200
commitdfcd7f21607fd847236b04bb1a8d59a7c10ab99c (patch)
tree9ac85d9a068b220c0988ce224cf450664e30a494 /board/mcc200
parentb81830f6e3b3e6ed114d071eb107965e49fa9b5a (diff)
downloadblackbird-obmc-uboot-dfcd7f21607fd847236b04bb1a8d59a7c10ab99c.tar.gz
blackbird-obmc-uboot-dfcd7f21607fd847236b04bb1a8d59a7c10ab99c.zip
Redundant Environment: protect full sector size
Several boards used different ways to specify the size of the protected area when enabling flash write protection for the sectors holding the environment variables: some used CONFIG_ENV_SIZE and CONFIG_ENV_SIZE_REDUND, some used CONFIG_ENV_SECT_SIZE, and some even a mix of both for the "normal" and the "redundant" areas. Normally, this makes no difference at all. However, things are different when you have to deal with boards that can come with different types of flash chips, which may have different sector sizes. Here we may have to chose CONFIG_ENV_SECT_SIZE such that it fits the biggest sector size, which may include several sectors on boards using the smaller sector flash types. In such a case, using CONFIG_ENV_SIZE or CONFIG_ENV_SIZE_REDUND to enable the protection may lead to the case that only the first of these sectors get protected, while the following ones aren't. This is no real problem, but it can be confusing for the user - especially on boards that use CONFIG_ENV_SECT_SIZE to protect the "normal" areas, while using CONFIG_ENV_SIZE_REDUND for the "redundant" area. To avoid such inconsistencies, I changed all sucn boards that I found to consistently use CONFIG_ENV_SECT_SIZE for protection. This should not cause any functional changes to the code. Signed-off-by: Wolfgang Denk <wd@denx.de> Cc: Paul Ruhland Cc: Pantelis Antoniou <panto@intracom.gr> Cc: Stefan Roese <sr@denx.de> Cc: Gary Jennejohn <garyj@denx.de> Cc: Dave Ellis <DGE@sixnetio.com> Acked-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'board/mcc200')
-rw-r--r--board/mcc200/mcc200.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/mcc200/mcc200.c b/board/mcc200/mcc200.c
index 14cf08da3f..9fa1d3ae75 100644
--- a/board/mcc200/mcc200.c
+++ b/board/mcc200/mcc200.c
@@ -270,7 +270,7 @@ int misc_init_r (void)
/* Redundant environment protection ON by default */
flash_protect (FLAG_PROTECT_SET,
CONFIG_ENV_ADDR_REDUND,
- CONFIG_ENV_ADDR_REDUND + CONFIG_ENV_SIZE_REDUND - 1,
+ CONFIG_ENV_ADDR_REDUND + CONFIG_ENV_SECT_SIZE - 1,
&flash_info[CONFIG_SYS_MAX_FLASH_BANKS - 1]);
}
OpenPOWER on IntegriCloud