Commit 3e9dcad8 authored by Kevin Hilman's avatar Kevin Hilman

davinci: dm644x EVM: fix default NOR partitons

Partitions need to aligned on erase-block sized boundaries.
Signed-off-by: default avatarKevin Hilman <khilman@deeprootsystems.com>
parent 07190aa9
...@@ -56,11 +56,11 @@ ...@@ -56,11 +56,11 @@
#define LXT971_PHY_MASK (0xfffffff0) #define LXT971_PHY_MASK (0xfffffff0)
static struct mtd_partition davinci_evm_norflash_partitions[] = { static struct mtd_partition davinci_evm_norflash_partitions[] = {
/* bootloader (U-Boot, etc) in first 4 sectors */ /* bootloader (UBL, U-Boot, etc) in first 5 sectors */
{ {
.name = "bootloader", .name = "bootloader",
.offset = 0, .offset = 0,
.size = 4 * SZ_64K, .size = 5 * SZ_64K,
.mask_flags = MTD_WRITEABLE, /* force read-only */ .mask_flags = MTD_WRITEABLE, /* force read-only */
}, },
/* bootloader params in the next 1 sectors */ /* bootloader params in the next 1 sectors */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment