diff options
| author | Mike Frysinger <vapier@gentoo.org> | 2010-08-27 16:43:39 -0400 |
|---|---|---|
| committer | Mike Frysinger <vapier@gentoo.org> | 2010-10-22 03:48:58 -0400 |
| commit | 73775b892ee70bdc0dbd6aeeebb50894d062f9a1 (patch) | |
| tree | a02071c782b3429fdccd68b8edb3ef675c686e0e | |
| parent | 39d3c1ca1f9482faa7d216c09553a6b81b955930 (diff) | |
Blackfin: bf548-ezkit: increase u-boot partition size
The BF54x processor has a ton of on-chip peripherals and in order to
support them all, the u-boot image is quite large. So give it 512KiB
in all bootable flashes to make our lives easier.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
| -rw-r--r-- | arch/blackfin/mach-bf548/boards/ezkit.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/arch/blackfin/mach-bf548/boards/ezkit.c b/arch/blackfin/mach-bf548/boards/ezkit.c index 61c851bb08d6..216e26999af9 100644 --- a/arch/blackfin/mach-bf548/boards/ezkit.c +++ b/arch/blackfin/mach-bf548/boards/ezkit.c | |||
| @@ -837,8 +837,12 @@ static struct platform_device bfin_atapi_device = { | |||
| 837 | #if defined(CONFIG_MTD_NAND_BF5XX) || defined(CONFIG_MTD_NAND_BF5XX_MODULE) | 837 | #if defined(CONFIG_MTD_NAND_BF5XX) || defined(CONFIG_MTD_NAND_BF5XX_MODULE) |
| 838 | static struct mtd_partition partition_info[] = { | 838 | static struct mtd_partition partition_info[] = { |
| 839 | { | 839 | { |
| 840 | .name = "linux kernel(nand)", | 840 | .name = "bootloader(nand)", |
| 841 | .offset = 0, | 841 | .offset = 0, |
| 842 | .size = 0x80000, | ||
| 843 | }, { | ||
| 844 | .name = "linux kernel(nand)", | ||
| 845 | .offset = MTDPART_OFS_APPEND, | ||
| 842 | .size = 4 * 1024 * 1024, | 846 | .size = 4 * 1024 * 1024, |
| 843 | }, | 847 | }, |
| 844 | { | 848 | { |
| @@ -901,7 +905,7 @@ static struct platform_device bf54x_sdh_device = { | |||
| 901 | static struct mtd_partition ezkit_partitions[] = { | 905 | static struct mtd_partition ezkit_partitions[] = { |
| 902 | { | 906 | { |
| 903 | .name = "bootloader(nor)", | 907 | .name = "bootloader(nor)", |
| 904 | .size = 0x40000, | 908 | .size = 0x80000, |
| 905 | .offset = 0, | 909 | .offset = 0, |
| 906 | }, { | 910 | }, { |
| 907 | .name = "linux kernel(nor)", | 911 | .name = "linux kernel(nor)", |
| @@ -943,7 +947,7 @@ static struct platform_device ezkit_flash_device = { | |||
| 943 | static struct mtd_partition bfin_spi_flash_partitions[] = { | 947 | static struct mtd_partition bfin_spi_flash_partitions[] = { |
| 944 | { | 948 | { |
| 945 | .name = "bootloader(spi)", | 949 | .name = "bootloader(spi)", |
| 946 | .size = 0x00040000, | 950 | .size = 0x00080000, |
| 947 | .offset = 0, | 951 | .offset = 0, |
| 948 | .mask_flags = MTD_CAP_ROM | 952 | .mask_flags = MTD_CAP_ROM |
| 949 | }, { | 953 | }, { |
