diff options
author | guoyin.chen <guoyin.chen@freescale.com> | 2015-05-22 17:37:48 +0800 |
---|---|---|
committer | guoyin.chen <guoyin.chen@freescale.com> | 2015-06-09 07:04:49 +0800 |
commit | 307dd82d6236dc5ebdc228528e6eaed31e8a2d3d (patch) | |
tree | aceae7a1893e517483193f12524b2cdcb4389974 | |
parent | e28336b4e0bbc0471ef45fa995fcb99e53fe2b7a (diff) | |
download | u-boot-imx-307dd82d6236dc5ebdc228528e6eaed31e8a2d3d.zip u-boot-imx-307dd82d6236dc5ebdc228528e6eaed31e8a2d3d.tar.gz u-boot-imx-307dd82d6236dc5ebdc228528e6eaed31e8a2d3d.tar.bz2 |
MA-6732 Add sparse image flash support for uboot's fastboot
Add aboot.o based on CONFIG_FASTBOOT
Add partition index for fastboot ptn table
Add return value for write_sparse_image to know the sparse write status
Add path to write_sparse_image based on the image received and partition to be flashed
Signed-off-by: guoyin.chen <guoyin.chen@freescale.com>
-rw-r--r-- | common/Makefile | 1 | ||||
-rw-r--r-- | common/aboot.c | 47 | ||||
-rw-r--r-- | common/cmd_fastboot.c | 95 | ||||
-rw-r--r-- | drivers/fastboot/fastboot.c | 9 | ||||
-rw-r--r-- | include/aboot.h | 2 | ||||
-rw-r--r-- | include/fastboot.h | 7 |
6 files changed, 102 insertions, 59 deletions
diff --git a/common/Makefile b/common/Makefile index bfecc68..5993c72 100644 --- a/common/Makefile +++ b/common/Makefile @@ -191,6 +191,7 @@ obj-$(CONFIG_MODEM_SUPPORT) += modem.o obj-$(CONFIG_UPDATE_TFTP) += update.o obj-$(CONFIG_USB_KEYBOARD) += usb_kbd.o obj-$(CONFIG_FASTBOOT) += cmd_fastboot.o +obj-$(CONFIG_FASTBOOT) += aboot.o obj-$(CONFIG_CMD_DFU) += cmd_dfu.o obj-$(CONFIG_CMD_GPT) += cmd_gpt.o obj-$(CONFIG_CMD_BOOTAUX) += cmd_bootaux.o diff --git a/common/aboot.c b/common/aboot.c index fba8e3e..64be532 100644 --- a/common/aboot.c +++ b/common/aboot.c @@ -41,7 +41,7 @@ #include <part.h> #include <sparse_format.h> -void write_sparse_image(block_dev_desc_t *dev_desc, +int write_sparse_image(block_dev_desc_t *dev_desc, disk_partition_t *info, const char *part_name, void *data, unsigned sz) { @@ -86,8 +86,7 @@ void write_sparse_image(block_dev_desc_t *dev_desc, (sparse_header->blk_sz & ~(info->blksz - 1))) { printf("%s: Sparse image block size issue [%u]\n", __func__, sparse_header->blk_sz); - fastboot_fail("sparse image block size issue"); - return; + return 1; } puts("Flashing Sparse Image\n"); @@ -125,18 +124,14 @@ void write_sparse_image(block_dev_desc_t *dev_desc, if (chunk_header->total_sz != (sparse_header->chunk_hdr_sz + chunk_data_sz)) { - fastboot_fail( - "Bogus chunk size for chunk type Raw"); - return; + return 1; } if (blk + blkcnt > info->start + info->size) { printf( "%s: Request would exceed partition size!\n", __func__); - fastboot_fail( - "Request would exceed partition size!"); - return; + return 1; } blks = dev_desc->block_write(dev_desc->dev, blk, blkcnt, @@ -144,8 +139,7 @@ void write_sparse_image(block_dev_desc_t *dev_desc, if (blks != blkcnt) { printf("%s: Write failed " LBAFU "\n", __func__, blks); - fastboot_fail("flash write failure"); - return; + return 1; } blk += blkcnt; bytes_written += blkcnt * info->blksz; @@ -157,9 +151,7 @@ void write_sparse_image(block_dev_desc_t *dev_desc, if (chunk_header->total_sz != (sparse_header->chunk_hdr_sz + sizeof(uint32_t))) { - fastboot_fail( - "Bogus chunk size for chunk type FILL"); - return; + return 1; } fill_buf = (uint32_t *) @@ -168,9 +160,7 @@ void write_sparse_image(block_dev_desc_t *dev_desc, ARCH_DMA_MINALIGN)); if (!fill_buf) { - fastboot_fail( - "Malloc failed for: CHUNK_TYPE_FILL"); - return; + return 1; } fill_val = *(uint32_t *)data; @@ -183,9 +173,7 @@ void write_sparse_image(block_dev_desc_t *dev_desc, printf( "%s: Request would exceed partition size!\n", __func__); - fastboot_fail( - "Request would exceed partition size!"); - return; + return 1; } for (i = 0; i < blkcnt; i++) { @@ -195,9 +183,8 @@ void write_sparse_image(block_dev_desc_t *dev_desc, printf( "%s: Write failed, block # " LBAFU "\n", __func__, blkcnt); - fastboot_fail("flash write failure"); free(fill_buf); - return; + return 1; } blk++; } @@ -216,9 +203,7 @@ void write_sparse_image(block_dev_desc_t *dev_desc, if (chunk_header->total_sz != sparse_header->chunk_hdr_sz) { - fastboot_fail( - "Bogus chunk size for chunk type Dont Care"); - return; + return 1; } total_blocks += chunk_header->chunk_sz; data += chunk_data_sz; @@ -227,8 +212,7 @@ void write_sparse_image(block_dev_desc_t *dev_desc, default: printf("%s: Unknown chunk type: %x\n", __func__, chunk_header->chunk_type); - fastboot_fail("Unknown chunk type"); - return; + return 1; } } @@ -236,9 +220,10 @@ void write_sparse_image(block_dev_desc_t *dev_desc, total_blocks, sparse_header->total_blks); printf("........ wrote %u bytes to '%s'\n", bytes_written, part_name); - if (total_blocks != sparse_header->total_blks) - fastboot_fail("sparse image write failure"); + if (total_blocks != sparse_header->total_blks) { + printf("sparse image write failure"); + return 1; + } - fastboot_okay(""); - return; + return 0; } diff --git a/common/cmd_fastboot.c b/common/cmd_fastboot.c index e833466..6f1a931 100644 --- a/common/cmd_fastboot.c +++ b/common/cmd_fastboot.c @@ -62,6 +62,7 @@ #include <fastboot.h> #include <environment.h> #include <mmc.h> +#include <aboot.h> #if defined(CONFIG_OF_LIBFDT) #include <libfdt.h> @@ -720,6 +721,16 @@ static void process_flash_sata(const char *cmdbuf, char *response) #endif #if defined(CONFIG_FASTBOOT_STORAGE_MMC) +static int is_sparse_partition(struct fastboot_ptentry * ptn) +{ + if (ptn && !strncmp(ptn->name, + FASTBOOT_PARTITION_SYSTEM, strlen(FASTBOOT_PARTITION_SYSTEM))) { + printf("support sparse flash partition for %s\n", ptn->name); + return 1; + } else + return 0; +} + static void process_flash_mmc(const char *cmdbuf, char *response) { if (download_bytes) { @@ -763,32 +774,70 @@ static void process_flash_mmc(const char *cmdbuf, char *response) sprintf(mmc_dev, "mmc dev %x", fastboot_devinfo.dev_id /*slot no*/); - /* block count */ - temp = (download_bytes + - MMC_SATA_BLOCK_SIZE - 1) / - MMC_SATA_BLOCK_SIZE; - - sprintf(mmc_write, "mmc write 0x%x 0x%x 0x%x", - (unsigned int)interface.transfer_buffer, /*source*/ - ptn->start, /*dest*/ - temp /*length*/); + if (is_sparse_partition(ptn) && + is_sparse_image(interface.transfer_buffer)) { + int mmc_no = 0; + struct mmc *mmc; + block_dev_desc_t *dev_desc; + disk_partition_t info; + mmc_no = fastboot_devinfo.dev_id; + + printf("sparse flash target is MMC:%d\n", mmc_no); + mmc = find_mmc_device(mmc_no); + if (mmc && mmc_init(mmc)) + printf("MMC card init failed!\n"); + + dev_desc = get_dev("mmc", mmc_no); + if (NULL == dev_desc) { + printf("** Block device MMC %d not supported\n", + mmc_no); + return; + } - printf("Initializing '%s'\n", ptn->name); + if (get_partition_info(dev_desc, + ptn->partition_index, &info)) { + printf("Bad partition index:%d for partition:%s\n", + ptn->partition_index, ptn->name); + return; + } - mmcret = run_command(mmc_dev, 0); - if (mmcret) - sprintf(response, "FAIL:Init of MMC card"); - else - sprintf(response, "OKAY"); + printf("writing to partition '%s' for sparse, buffer size %d\n", + ptn->name, download_bytes); + mmcret = write_sparse_image(dev_desc, &info, ptn->name, + interface.transfer_buffer, download_bytes); + if (mmcret) + sprintf(response, "FAIL: Write partition"); + else + sprintf(response, "OKAY"); + } + else { + /* block count */ + temp = (download_bytes + + MMC_SATA_BLOCK_SIZE - 1) / + MMC_SATA_BLOCK_SIZE; + + sprintf(mmc_write, "mmc write 0x%x 0x%x 0x%x", + (unsigned int)interface.transfer_buffer, /*source*/ + ptn->start, /*dest*/ + temp /*length*/); + + printf("Initializing '%s'\n", ptn->name); + + mmcret = run_command(mmc_dev, 0); + if (mmcret) + sprintf(response, "FAIL:Init of MMC card"); + else + sprintf(response, "OKAY"); - printf("Writing '%s'\n", ptn->name); - if (run_command(mmc_write, 0)) { - printf("Writing '%s' FAILED!\n", ptn->name); - sprintf(response, "FAIL: Write partition"); - } else { - printf("Writing '%s' DONE!\n", ptn->name); - sprintf(response, "OKAY"); - } + printf("Writing '%s'\n", ptn->name); + if (run_command(mmc_write, 0)) { + printf("Writing '%s' FAILED!\n", ptn->name); + sprintf(response, "FAIL: Write partition"); + } else { + printf("Writing '%s' DONE!\n", ptn->name); + sprintf(response, "OKAY"); + } + } } } else { sprintf(response, "FAILno image downloaded"); diff --git a/drivers/fastboot/fastboot.c b/drivers/fastboot/fastboot.c index 4c911f0..913d79a 100644 --- a/drivers/fastboot/fastboot.c +++ b/drivers/fastboot/fastboot.c @@ -804,6 +804,7 @@ static int _fastboot_parts_add_ptable_entry(int ptable_index, ptable[ptable_index].start = info.start; ptable[ptable_index].length = info.size; ptable[ptable_index].partition_id = mmc_partition_index; + ptable[ptable_index].partition_index = mmc_dos_partition_index; } return 0; } @@ -876,7 +877,7 @@ static int _fastboot_parts_load_from_ptable(void) ptable[PTN_MBR_INDEX].length = ANDROID_MBR_SIZE / dev_desc->blksz; ptable[PTN_MBR_INDEX].partition_id = user_partition; /* Bootloader */ - strcpy(ptable[PTN_BOOTLOADER_INDEX].name, "bootloader"); + strcpy(ptable[PTN_BOOTLOADER_INDEX].name, FASTBOOT_PARTITION_BOOTLOADER); ptable[PTN_BOOTLOADER_INDEX].start = ANDROID_BOOTLOADER_OFFSET / dev_desc->blksz; ptable[PTN_BOOTLOADER_INDEX].length = @@ -885,15 +886,15 @@ static int _fastboot_parts_load_from_ptable(void) _fastboot_parts_add_ptable_entry(PTN_KERNEL_INDEX, CONFIG_ANDROID_BOOT_PARTITION_MMC, - user_partition, "boot", dev_desc, ptable); + user_partition, FASTBOOT_PARTITION_BOOT , dev_desc, ptable); _fastboot_parts_add_ptable_entry(PTN_RECOVERY_INDEX, CONFIG_ANDROID_RECOVERY_PARTITION_MMC, user_partition, - "recovery", dev_desc, ptable); + FASTBOOT_PARTITION_RECOVERY, dev_desc, ptable); _fastboot_parts_add_ptable_entry(PTN_SYSTEM_INDEX, CONFIG_ANDROID_SYSTEM_PARTITION_MMC, user_partition, - "system", dev_desc, ptable); + FASTBOOT_PARTITION_SYSTEM, dev_desc, ptable); for (i = 0; i <= PTN_RECOVERY_INDEX; i++) fastboot_flash_add_ptn(&ptable[i]); diff --git a/include/aboot.h b/include/aboot.h index 30e4d36..383729d 100644 --- a/include/aboot.h +++ b/include/aboot.h @@ -23,6 +23,6 @@ static inline int is_sparse_image(void *buf) return 0; } -void write_sparse_image(block_dev_desc_t *dev_desc, +int write_sparse_image(block_dev_desc_t *dev_desc, disk_partition_t *info, const char *part_name, void *data, unsigned sz); diff --git a/include/fastboot.h b/include/fastboot.h index c81abcf..7460c24 100644 --- a/include/fastboot.h +++ b/include/fastboot.h @@ -134,6 +134,11 @@ #define FASTBOOT_MMC_USER_PARTITION_ID 0 #define FASTBOOT_MMC_NONE_PARTITION_ID -1 +#define FASTBOOT_PARTITION_BOOT "boot" +#define FASTBOOT_PARTITION_RECOVERY "recovery" +#define FASTBOOT_PARTITION_SYSTEM "system" +#define FASTBOOT_PARTITION_BOOTLOADER "bootloader" + enum { DEV_SATA, DEV_MMC, @@ -213,6 +218,8 @@ struct fastboot_ptentry { unsigned int flags; /* partition id: 0 - normal partition; 1 - boot partition */ unsigned int partition_id; + /* partition number in block device */ + unsigned int partition_index; }; struct fastboot_device_info { |