summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Alonso <aalonso@freescale.com>2012-11-20 18:25:40 -0600
committerJason Liu <r64343@freescale.com>2012-11-30 14:38:43 +0800
commitacd5d56de2c27fc3fa7c993a580cb0e9377c1112 (patch)
tree807c93e51f4e6d885b8098b0d1a7752bb72754c8
parentf154f103bec300cdb647bbbcf4cee182604630fd (diff)
ENGR00234354-2: board-mx6q_sabreauto aline weim-nor partition layout
* Aline weim-nor partition layout with u-boot expected offtsets "bootloader" /dev/mtd0 "bootenv" /dev/mtd1 "kernel" /dev/mtd2 "rootfs" /dev/mtd3 Signed-off-by: Adrian Alonso <aalonso@freescale.com>
-rw-r--r--arch/arm/mach-mx6/board-mx6q_sabreauto.c18
1 files changed, 15 insertions, 3 deletions
diff --git a/arch/arm/mach-mx6/board-mx6q_sabreauto.c b/arch/arm/mach-mx6/board-mx6q_sabreauto.c
index 382527a56381..42447dac4828 100644
--- a/arch/arm/mach-mx6/board-mx6q_sabreauto.c
+++ b/arch/arm/mach-mx6/board-mx6q_sabreauto.c
@@ -438,17 +438,29 @@ static void spi_device_init(void)
spi_register_board_info(m25p32_spi0_board_info,
ARRAY_SIZE(m25p32_spi0_board_info));
}
+
static struct mtd_partition mxc_nor_partitions[] = {
{
- .name = "Bootloader",
+ .name = "bootloader",
.offset = 0,
- .size = 0x00080000,
+ .size = SZ_256K,
+ .mask_flags = MTD_WRITEABLE,
}, {
- .name = "nor.Kernel",
+ .name = "bootenv",
+ .offset = MTDPART_OFS_APPEND,
+ .size = SZ_256K,
+ .mask_flags = MTD_WRITEABLE,
+ }, {
+ .name = "kernel",
.offset = MTDPART_OFS_APPEND,
+ .size = SZ_4M,
+ }, {
+ .name = "rootfs",
+ .offset = MTDPART_OFS_APPEND,
.size = MTDPART_SIZ_FULL,
},
};
+
static struct resource nor_flash_resource = {
.start = CS0_BASE_ADDR,
.end = CS0_BASE_ADDR + 0x02000000 - 1,