summaryrefslogtreecommitdiff
path: root/arch/arm/mach-mx5/mx53_ard.c
diff options
context:
space:
mode:
authorJason Liu <r64343@freescale.com>2010-10-13 14:44:23 +0800
committerAlejandro Gonzalez <alex.gonzalez@digi.com>2011-01-17 14:56:51 +0100
commite2fca6731dab32f28b7aefed7e8ed5ec37419717 (patch)
tree39a369264c60db72ca4f4cc79a69acce31fd1047 /arch/arm/mach-mx5/mx53_ard.c
parentdeaee151cdafaf6c6c8d1df164178c66362ac5e5 (diff)
ENGR00132551 NAND: Adjust the boot partition size for MX53
MX53 ROM require the boot FCB/DBBT support which need more space to store such info on NAND boot partition. MX53 ROM require at least: 4 search blocks for FCB and 4 blocks for DBBT, then, the original 3M for boot partition is not enough. 16M should cover all kind of NAND boot support on MX53. Signed-off-by: Jason Liu <r64343@freescale.com>
Diffstat (limited to 'arch/arm/mach-mx5/mx53_ard.c')
-rw-r--r--arch/arm/mach-mx5/mx53_ard.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/arch/arm/mach-mx5/mx53_ard.c b/arch/arm/mach-mx5/mx53_ard.c
index 7a2aa0d4dd55..03d0e4c8aabd 100644
--- a/arch/arm/mach-mx5/mx53_ard.c
+++ b/arch/arm/mach-mx5/mx53_ard.c
@@ -1031,10 +1031,14 @@ static struct mxc_mlb_platform_data mlb_data = {
/* NAND Flash Partitions */
#ifdef CONFIG_MTD_PARTITIONS
static struct mtd_partition nand_flash_partitions[] = {
+/* MX53 ROM require the boot FCB/DBBT support which need
+ * more space to store such info on NAND boot partition.
+ * 16M should cover all kind of NAND boot support on MX53.
+ */
{
.name = "bootloader",
.offset = 0,
- .size = 3 * 1024 * 1024},
+ .size = 16 * 1024 * 1024},
{
.name = "nand.kernel",
.offset = MTDPART_OFS_APPEND,