blob: b0b19c576252c4e6266939be72cb900dc7041a1a [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Steve Raec0aebb32014-08-26 11:47:27 -07002/*
3 * Copyright 2014 Broadcom Corporation.
Steve Raec0aebb32014-08-26 11:47:27 -07004 */
5
Steve Rae0ff7e582014-12-12 15:51:54 -08006#include <config.h>
Steve Raec0aebb32014-08-26 11:47:27 -07007#include <common.h>
Simon Glass2a981dc2016-02-29 15:25:52 -07008#include <blk.h>
Simon Glass7b51b572019-08-01 09:46:52 -06009#include <env.h>
Maxime Ripard3c8f98f2015-10-15 14:34:13 +020010#include <fastboot.h>
Alex Kiernanf73a7df2018-05-29 15:30:53 +000011#include <fastboot-internal.h>
Steve Raec0aebb32014-08-26 11:47:27 -070012#include <fb_mmc.h>
Maxime Ripard3d4ef382015-10-15 14:34:19 +020013#include <image-sparse.h>
Steve Raec0aebb32014-08-26 11:47:27 -070014#include <part.h>
Dileep Katta89792382015-02-17 18:48:23 +053015#include <mmc.h>
Siarhei Siamashka5e0efc12015-10-28 06:24:16 +020016#include <div64.h>
Sam Protsenkoefeccfe2017-05-18 15:04:59 +030017#include <linux/compat.h>
18#include <android_image.h>
Steve Raec0aebb32014-08-26 11:47:27 -070019
Alex Kiernanf73a7df2018-05-29 15:30:53 +000020#define FASTBOOT_MAX_BLK_WRITE 16384
21
Sam Protsenkoefeccfe2017-05-18 15:04:59 +030022#define BOOT_PARTITION_NAME "boot"
23
Maxime Riparda5d1e042015-10-15 14:34:14 +020024struct fb_mmc_sparse {
Simon Glass4101f682016-02-29 15:25:34 -070025 struct blk_desc *dev_desc;
Maxime Riparda5d1e042015-10-15 14:34:14 +020026};
27
Petr Kulhavyb6dd69a2016-09-09 10:27:16 +020028static int part_get_info_by_name_or_alias(struct blk_desc *dev_desc,
Michael Scott8a418022015-03-11 10:02:31 -070029 const char *name, disk_partition_t *info)
30{
31 int ret;
32
Petr Kulhavy87b85302016-09-09 10:27:15 +020033 ret = part_get_info_by_name(dev_desc, name, info);
Alex Deymo88b63292017-04-02 01:49:50 -070034 if (ret < 0) {
Alex Kiernanb762aa12019-04-09 05:30:05 +000035 /* strlen("fastboot_partition_alias_") + PART_NAME_LEN + 1 */
36 char env_alias_name[25 + PART_NAME_LEN + 1];
Michael Scott8a418022015-03-11 10:02:31 -070037 char *aliased_part_name;
38
39 /* check for alias */
40 strcpy(env_alias_name, "fastboot_partition_alias_");
Alex Kiernanb762aa12019-04-09 05:30:05 +000041 strncat(env_alias_name, name, PART_NAME_LEN);
Simon Glass00caae62017-08-03 12:22:12 -060042 aliased_part_name = env_get(env_alias_name);
Michael Scott8a418022015-03-11 10:02:31 -070043 if (aliased_part_name != NULL)
Petr Kulhavy87b85302016-09-09 10:27:15 +020044 ret = part_get_info_by_name(dev_desc,
Michael Scott8a418022015-03-11 10:02:31 -070045 aliased_part_name, info);
46 }
47 return ret;
48}
49
Alex Kiernanf73a7df2018-05-29 15:30:53 +000050/**
51 * fb_mmc_blk_write() - Write/erase MMC in chunks of FASTBOOT_MAX_BLK_WRITE
52 *
53 * @block_dev: Pointer to block device
54 * @start: First block to write/erase
55 * @blkcnt: Count of blocks
56 * @buffer: Pointer to data buffer for write or NULL for erase
57 */
58static lbaint_t fb_mmc_blk_write(struct blk_desc *block_dev, lbaint_t start,
59 lbaint_t blkcnt, const void *buffer)
60{
61 lbaint_t blk = start;
62 lbaint_t blks_written;
63 lbaint_t cur_blkcnt;
64 lbaint_t blks = 0;
65 int i;
66
67 for (i = 0; i < blkcnt; i += FASTBOOT_MAX_BLK_WRITE) {
68 cur_blkcnt = min((int)blkcnt - i, FASTBOOT_MAX_BLK_WRITE);
69 if (buffer) {
70 if (fastboot_progress_callback)
71 fastboot_progress_callback("writing");
72 blks_written = blk_dwrite(block_dev, blk, cur_blkcnt,
73 buffer + (i * block_dev->blksz));
74 } else {
75 if (fastboot_progress_callback)
76 fastboot_progress_callback("erasing");
77 blks_written = blk_derase(block_dev, blk, cur_blkcnt);
78 }
79 blk += blks_written;
80 blks += blks_written;
81 }
82 return blks;
83}
84
Steve Raecc0f08cd2016-06-07 11:19:36 -070085static lbaint_t fb_mmc_sparse_write(struct sparse_storage *info,
86 lbaint_t blk, lbaint_t blkcnt, const void *buffer)
Maxime Riparda5d1e042015-10-15 14:34:14 +020087{
Steve Raecc0f08cd2016-06-07 11:19:36 -070088 struct fb_mmc_sparse *sparse = info->priv;
Simon Glass4101f682016-02-29 15:25:34 -070089 struct blk_desc *dev_desc = sparse->dev_desc;
Maxime Riparda5d1e042015-10-15 14:34:14 +020090
Alex Kiernanf73a7df2018-05-29 15:30:53 +000091 return fb_mmc_blk_write(dev_desc, blk, blkcnt, buffer);
Maxime Riparda5d1e042015-10-15 14:34:14 +020092}
93
Steve Rae2c724042016-06-07 11:19:38 -070094static lbaint_t fb_mmc_sparse_reserve(struct sparse_storage *info,
95 lbaint_t blk, lbaint_t blkcnt)
96{
97 return blkcnt;
98}
99
Simon Glass4101f682016-02-29 15:25:34 -0700100static void write_raw_image(struct blk_desc *dev_desc, disk_partition_t *info,
Steve Raec0aebb32014-08-26 11:47:27 -0700101 const char *part_name, void *buffer,
Alex Kiernanf73a7df2018-05-29 15:30:53 +0000102 u32 download_bytes, char *response)
Steve Raec0aebb32014-08-26 11:47:27 -0700103{
104 lbaint_t blkcnt;
105 lbaint_t blks;
106
107 /* determine number of blocks to write */
108 blkcnt = ((download_bytes + (info->blksz - 1)) & ~(info->blksz - 1));
Siarhei Siamashka5e0efc12015-10-28 06:24:16 +0200109 blkcnt = lldiv(blkcnt, info->blksz);
Steve Raec0aebb32014-08-26 11:47:27 -0700110
111 if (blkcnt > info->size) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900112 pr_err("too large for partition: '%s'\n", part_name);
Alex Kiernanc4ded032018-05-29 15:30:40 +0000113 fastboot_fail("too large for partition", response);
Steve Raec0aebb32014-08-26 11:47:27 -0700114 return;
115 }
116
117 puts("Flashing Raw Image\n");
118
Alex Kiernanf73a7df2018-05-29 15:30:53 +0000119 blks = fb_mmc_blk_write(dev_desc, info->start, blkcnt, buffer);
120
Steve Raec0aebb32014-08-26 11:47:27 -0700121 if (blks != blkcnt) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900122 pr_err("failed writing to device %d\n", dev_desc->devnum);
Alex Kiernanc4ded032018-05-29 15:30:40 +0000123 fastboot_fail("failed writing to device", response);
Steve Raec0aebb32014-08-26 11:47:27 -0700124 return;
125 }
126
127 printf("........ wrote " LBAFU " bytes to '%s'\n", blkcnt * info->blksz,
128 part_name);
Alex Kiernanc4ded032018-05-29 15:30:40 +0000129 fastboot_okay(NULL, response);
Steve Raec0aebb32014-08-26 11:47:27 -0700130}
131
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300132#ifdef CONFIG_ANDROID_BOOT_IMAGE
133/**
134 * Read Android boot image header from boot partition.
135 *
136 * @param[in] dev_desc MMC device descriptor
137 * @param[in] info Boot partition info
138 * @param[out] hdr Where to store read boot image header
139 *
140 * @return Boot image header sectors count or 0 on error
141 */
142static lbaint_t fb_mmc_get_boot_header(struct blk_desc *dev_desc,
143 disk_partition_t *info,
Alex Kiernanc4ded032018-05-29 15:30:40 +0000144 struct andr_img_hdr *hdr,
145 char *response)
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300146{
147 ulong sector_size; /* boot partition sector size */
148 lbaint_t hdr_sectors; /* boot image header sectors count */
149 int res;
150
151 /* Calculate boot image sectors count */
152 sector_size = info->blksz;
153 hdr_sectors = DIV_ROUND_UP(sizeof(struct andr_img_hdr), sector_size);
154 if (hdr_sectors == 0) {
Alex Kiernan1ad5fac2018-05-29 15:30:43 +0000155 pr_err("invalid number of boot sectors: 0\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000156 fastboot_fail("invalid number of boot sectors: 0", response);
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300157 return 0;
158 }
159
160 /* Read the boot image header */
161 res = blk_dread(dev_desc, info->start, hdr_sectors, (void *)hdr);
Tom Rini6bafa5a2017-08-14 21:00:44 -0400162 if (res != hdr_sectors) {
Alex Kiernan1ad5fac2018-05-29 15:30:43 +0000163 pr_err("cannot read header from boot partition\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000164 fastboot_fail("cannot read header from boot partition",
165 response);
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300166 return 0;
167 }
168
169 /* Check boot header magic string */
170 res = android_image_check_header(hdr);
171 if (res != 0) {
Alex Kiernan1ad5fac2018-05-29 15:30:43 +0000172 pr_err("bad boot image magic\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000173 fastboot_fail("boot partition not initialized", response);
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300174 return 0;
175 }
176
177 return hdr_sectors;
178}
179
180/**
181 * Write downloaded zImage to boot partition and repack it properly.
182 *
183 * @param dev_desc MMC device descriptor
184 * @param download_buffer Address to fastboot buffer with zImage in it
185 * @param download_bytes Size of fastboot buffer, in bytes
186 *
187 * @return 0 on success or -1 on error
188 */
189static int fb_mmc_update_zimage(struct blk_desc *dev_desc,
190 void *download_buffer,
Alex Kiernanf73a7df2018-05-29 15:30:53 +0000191 u32 download_bytes,
Alex Kiernanc4ded032018-05-29 15:30:40 +0000192 char *response)
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300193{
Tom Rini2341c802017-06-10 09:15:37 -0400194 uintptr_t hdr_addr; /* boot image header address */
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300195 struct andr_img_hdr *hdr; /* boot image header */
196 lbaint_t hdr_sectors; /* boot image header sectors */
197 u8 *ramdisk_buffer;
198 u32 ramdisk_sector_start;
199 u32 ramdisk_sectors;
200 u32 kernel_sector_start;
201 u32 kernel_sectors;
202 u32 sectors_per_page;
203 disk_partition_t info;
204 int res;
205
206 puts("Flashing zImage\n");
207
208 /* Get boot partition info */
209 res = part_get_info_by_name(dev_desc, BOOT_PARTITION_NAME, &info);
210 if (res < 0) {
Alex Kiernan1ad5fac2018-05-29 15:30:43 +0000211 pr_err("cannot find boot partition\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000212 fastboot_fail("cannot find boot partition", response);
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300213 return -1;
214 }
215
216 /* Put boot image header in fastboot buffer after downloaded zImage */
Tom Rini2341c802017-06-10 09:15:37 -0400217 hdr_addr = (uintptr_t)download_buffer + ALIGN(download_bytes, PAGE_SIZE);
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300218 hdr = (struct andr_img_hdr *)hdr_addr;
219
220 /* Read boot image header */
Alex Kiernanc4ded032018-05-29 15:30:40 +0000221 hdr_sectors = fb_mmc_get_boot_header(dev_desc, &info, hdr, response);
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300222 if (hdr_sectors == 0) {
Alex Kiernan1ad5fac2018-05-29 15:30:43 +0000223 pr_err("unable to read boot image header\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000224 fastboot_fail("unable to read boot image header", response);
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300225 return -1;
226 }
227
228 /* Check if boot image has second stage in it (we don't support it) */
229 if (hdr->second_size > 0) {
Alex Kiernan1ad5fac2018-05-29 15:30:43 +0000230 pr_err("moving second stage is not supported yet\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000231 fastboot_fail("moving second stage is not supported yet",
232 response);
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300233 return -1;
234 }
235
236 /* Extract ramdisk location */
237 sectors_per_page = hdr->page_size / info.blksz;
238 ramdisk_sector_start = info.start + sectors_per_page;
239 ramdisk_sector_start += DIV_ROUND_UP(hdr->kernel_size, hdr->page_size) *
240 sectors_per_page;
241 ramdisk_sectors = DIV_ROUND_UP(hdr->ramdisk_size, hdr->page_size) *
242 sectors_per_page;
243
244 /* Read ramdisk and put it in fastboot buffer after boot image header */
245 ramdisk_buffer = (u8 *)hdr + (hdr_sectors * info.blksz);
246 res = blk_dread(dev_desc, ramdisk_sector_start, ramdisk_sectors,
247 ramdisk_buffer);
Tom Rini6bafa5a2017-08-14 21:00:44 -0400248 if (res != ramdisk_sectors) {
Alex Kiernan1ad5fac2018-05-29 15:30:43 +0000249 pr_err("cannot read ramdisk from boot partition\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000250 fastboot_fail("cannot read ramdisk from boot partition",
251 response);
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300252 return -1;
253 }
254
255 /* Write new kernel size to boot image header */
256 hdr->kernel_size = download_bytes;
257 res = blk_dwrite(dev_desc, info.start, hdr_sectors, (void *)hdr);
258 if (res == 0) {
Alex Kiernan1ad5fac2018-05-29 15:30:43 +0000259 pr_err("cannot writeback boot image header\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000260 fastboot_fail("cannot write back boot image header", response);
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300261 return -1;
262 }
263
264 /* Write the new downloaded kernel */
265 kernel_sector_start = info.start + sectors_per_page;
266 kernel_sectors = DIV_ROUND_UP(hdr->kernel_size, hdr->page_size) *
267 sectors_per_page;
268 res = blk_dwrite(dev_desc, kernel_sector_start, kernel_sectors,
269 download_buffer);
270 if (res == 0) {
Alex Kiernan1ad5fac2018-05-29 15:30:43 +0000271 pr_err("cannot write new kernel\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000272 fastboot_fail("cannot write new kernel", response);
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300273 return -1;
274 }
275
276 /* Write the saved ramdisk back */
277 ramdisk_sector_start = info.start + sectors_per_page;
278 ramdisk_sector_start += DIV_ROUND_UP(hdr->kernel_size, hdr->page_size) *
279 sectors_per_page;
280 res = blk_dwrite(dev_desc, ramdisk_sector_start, ramdisk_sectors,
281 ramdisk_buffer);
282 if (res == 0) {
Alex Kiernan1ad5fac2018-05-29 15:30:43 +0000283 pr_err("cannot write back original ramdisk\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000284 fastboot_fail("cannot write back original ramdisk", response);
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300285 return -1;
286 }
287
288 puts("........ zImage was updated in boot partition\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000289 fastboot_okay(NULL, response);
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300290 return 0;
291}
292#endif
293
Alex Kiernand1a119d2018-05-29 15:30:48 +0000294/**
Alex Kiernanf73a7df2018-05-29 15:30:53 +0000295 * fastboot_mmc_get_part_info() - Lookup eMMC partion by name
296 *
297 * @part_name: Named partition to lookup
298 * @dev_desc: Pointer to returned blk_desc pointer
299 * @part_info: Pointer to returned disk_partition_t
300 * @response: Pointer to fastboot response buffer
301 */
Sam Protsenkocacb03e2019-06-13 21:11:07 +0300302int fastboot_mmc_get_part_info(const char *part_name,
303 struct blk_desc **dev_desc,
Alex Kiernanf73a7df2018-05-29 15:30:53 +0000304 disk_partition_t *part_info, char *response)
305{
306 int r;
307
308 *dev_desc = blk_get_dev("mmc", CONFIG_FASTBOOT_FLASH_MMC_DEV);
309 if (!*dev_desc) {
310 fastboot_fail("block device not found", response);
311 return -ENOENT;
312 }
Eugeniu Roscaa40297d2019-03-28 14:31:33 +0100313 if (!part_name || !strcmp(part_name, "")) {
314 fastboot_fail("partition not given", response);
Alex Kiernanf73a7df2018-05-29 15:30:53 +0000315 return -ENOENT;
316 }
317
318 r = part_get_info_by_name_or_alias(*dev_desc, part_name, part_info);
319 if (r < 0) {
320 fastboot_fail("partition not found", response);
321 return r;
322 }
323
324 return r;
325}
326
327/**
Alex Kiernand1a119d2018-05-29 15:30:48 +0000328 * fastboot_mmc_flash_write() - Write image to eMMC for fastboot
329 *
330 * @cmd: Named partition to write image to
331 * @download_buffer: Pointer to image data
332 * @download_bytes: Size of image data
333 * @response: Pointer to fastboot response buffer
334 */
335void fastboot_mmc_flash_write(const char *cmd, void *download_buffer,
Alex Kiernanf73a7df2018-05-29 15:30:53 +0000336 u32 download_bytes, char *response)
Steve Raec0aebb32014-08-26 11:47:27 -0700337{
Simon Glass4101f682016-02-29 15:25:34 -0700338 struct blk_desc *dev_desc;
Steve Raec0aebb32014-08-26 11:47:27 -0700339 disk_partition_t info;
340
Simon Glassdb1d9e72016-02-29 15:25:42 -0700341 dev_desc = blk_get_dev("mmc", CONFIG_FASTBOOT_FLASH_MMC_DEV);
Steve Raec0aebb32014-08-26 11:47:27 -0700342 if (!dev_desc || dev_desc->type == DEV_TYPE_UNKNOWN) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900343 pr_err("invalid mmc device\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000344 fastboot_fail("invalid mmc device", response);
Steve Raec0aebb32014-08-26 11:47:27 -0700345 return;
346 }
347
Patrick Delaunaybd42a942017-01-27 11:00:41 +0100348#if CONFIG_IS_ENABLED(EFI_PARTITION)
Steve Rae0ff7e582014-12-12 15:51:54 -0800349 if (strcmp(cmd, CONFIG_FASTBOOT_GPT_NAME) == 0) {
350 printf("%s: updating MBR, Primary and Backup GPT(s)\n",
351 __func__);
352 if (is_valid_gpt_buf(dev_desc, download_buffer)) {
353 printf("%s: invalid GPT - refusing to write to flash\n",
354 __func__);
Alex Kiernanc4ded032018-05-29 15:30:40 +0000355 fastboot_fail("invalid GPT partition", response);
Steve Rae0ff7e582014-12-12 15:51:54 -0800356 return;
357 }
358 if (write_mbr_and_gpt_partitions(dev_desc, download_buffer)) {
359 printf("%s: writing GPT partitions failed\n", __func__);
Alex Kiernanc4ded032018-05-29 15:30:40 +0000360 fastboot_fail("writing GPT partitions failed",
361 response);
Steve Rae0ff7e582014-12-12 15:51:54 -0800362 return;
363 }
364 printf("........ success\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000365 fastboot_okay(NULL, response);
Steve Rae0ff7e582014-12-12 15:51:54 -0800366 return;
Petr Kulhavyb6dd69a2016-09-09 10:27:16 +0200367 }
368#endif
369
Patrick Delaunayb0cf7332017-01-27 11:00:37 +0100370#if CONFIG_IS_ENABLED(DOS_PARTITION)
Petr Kulhavyb6dd69a2016-09-09 10:27:16 +0200371 if (strcmp(cmd, CONFIG_FASTBOOT_MBR_NAME) == 0) {
372 printf("%s: updating MBR\n", __func__);
373 if (is_valid_dos_buf(download_buffer)) {
374 printf("%s: invalid MBR - refusing to write to flash\n",
375 __func__);
Alex Kiernanc4ded032018-05-29 15:30:40 +0000376 fastboot_fail("invalid MBR partition", response);
Petr Kulhavyb6dd69a2016-09-09 10:27:16 +0200377 return;
378 }
379 if (write_mbr_partition(dev_desc, download_buffer)) {
380 printf("%s: writing MBR partition failed\n", __func__);
Alex Kiernanc4ded032018-05-29 15:30:40 +0000381 fastboot_fail("writing MBR partition failed",
382 response);
Petr Kulhavyb6dd69a2016-09-09 10:27:16 +0200383 return;
384 }
385 printf("........ success\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000386 fastboot_okay(NULL, response);
Petr Kulhavyb6dd69a2016-09-09 10:27:16 +0200387 return;
388 }
389#endif
390
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300391#ifdef CONFIG_ANDROID_BOOT_IMAGE
392 if (strncasecmp(cmd, "zimage", 6) == 0) {
Alex Kiernanc4ded032018-05-29 15:30:40 +0000393 fb_mmc_update_zimage(dev_desc, download_buffer,
394 download_bytes, response);
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300395 return;
396 }
397#endif
398
Alex Deymo88b63292017-04-02 01:49:50 -0700399 if (part_get_info_by_name_or_alias(dev_desc, cmd, &info) < 0) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900400 pr_err("cannot find partition: '%s'\n", cmd);
Alex Kiernanc4ded032018-05-29 15:30:40 +0000401 fastboot_fail("cannot find partition", response);
Steve Raec0aebb32014-08-26 11:47:27 -0700402 return;
403 }
404
Maxime Riparda5d1e042015-10-15 14:34:14 +0200405 if (is_sparse_image(download_buffer)) {
406 struct fb_mmc_sparse sparse_priv;
Steve Raecc0f08cd2016-06-07 11:19:36 -0700407 struct sparse_storage sparse;
Jassi Brar2f83f212018-04-06 12:05:09 +0530408 int err;
Maxime Riparda5d1e042015-10-15 14:34:14 +0200409
410 sparse_priv.dev_desc = dev_desc;
411
Steve Raecc0f08cd2016-06-07 11:19:36 -0700412 sparse.blksz = info.blksz;
Maxime Riparda5d1e042015-10-15 14:34:14 +0200413 sparse.start = info.start;
414 sparse.size = info.size;
Maxime Riparda5d1e042015-10-15 14:34:14 +0200415 sparse.write = fb_mmc_sparse_write;
Steve Rae2c724042016-06-07 11:19:38 -0700416 sparse.reserve = fb_mmc_sparse_reserve;
Jassi Brar2f83f212018-04-06 12:05:09 +0530417 sparse.mssg = fastboot_fail;
Maxime Riparda5d1e042015-10-15 14:34:14 +0200418
419 printf("Flashing sparse image at offset " LBAFU "\n",
Steve Raecc0f08cd2016-06-07 11:19:36 -0700420 sparse.start);
Maxime Riparda5d1e042015-10-15 14:34:14 +0200421
Steve Raecc0f08cd2016-06-07 11:19:36 -0700422 sparse.priv = &sparse_priv;
Alex Kiernanc4ded032018-05-29 15:30:40 +0000423 err = write_sparse_image(&sparse, cmd, download_buffer,
424 response);
Jassi Brar2f83f212018-04-06 12:05:09 +0530425 if (!err)
Alex Kiernanc4ded032018-05-29 15:30:40 +0000426 fastboot_okay(NULL, response);
Maxime Riparda5d1e042015-10-15 14:34:14 +0200427 } else {
Steve Raee5bf9872014-08-26 11:47:30 -0700428 write_raw_image(dev_desc, &info, cmd, download_buffer,
Alex Kiernanc4ded032018-05-29 15:30:40 +0000429 download_bytes, response);
Maxime Riparda5d1e042015-10-15 14:34:14 +0200430 }
Steve Raec0aebb32014-08-26 11:47:27 -0700431}
Dileep Katta89792382015-02-17 18:48:23 +0530432
Alex Kiernand1a119d2018-05-29 15:30:48 +0000433/**
434 * fastboot_mmc_flash_erase() - Erase eMMC for fastboot
435 *
436 * @cmd: Named partition to erase
437 * @response: Pointer to fastboot response buffer
438 */
439void fastboot_mmc_erase(const char *cmd, char *response)
Dileep Katta89792382015-02-17 18:48:23 +0530440{
441 int ret;
Simon Glass4101f682016-02-29 15:25:34 -0700442 struct blk_desc *dev_desc;
Dileep Katta89792382015-02-17 18:48:23 +0530443 disk_partition_t info;
444 lbaint_t blks, blks_start, blks_size, grp_size;
445 struct mmc *mmc = find_mmc_device(CONFIG_FASTBOOT_FLASH_MMC_DEV);
446
447 if (mmc == NULL) {
Alex Kiernan1ad5fac2018-05-29 15:30:43 +0000448 pr_err("invalid mmc device\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000449 fastboot_fail("invalid mmc device", response);
Dileep Katta89792382015-02-17 18:48:23 +0530450 return;
451 }
452
Simon Glassdb1d9e72016-02-29 15:25:42 -0700453 dev_desc = blk_get_dev("mmc", CONFIG_FASTBOOT_FLASH_MMC_DEV);
Dileep Katta89792382015-02-17 18:48:23 +0530454 if (!dev_desc || dev_desc->type == DEV_TYPE_UNKNOWN) {
Alex Kiernan1ad5fac2018-05-29 15:30:43 +0000455 pr_err("invalid mmc device\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000456 fastboot_fail("invalid mmc device", response);
Dileep Katta89792382015-02-17 18:48:23 +0530457 return;
458 }
459
Petr Kulhavyb6dd69a2016-09-09 10:27:16 +0200460 ret = part_get_info_by_name_or_alias(dev_desc, cmd, &info);
Alex Deymo88b63292017-04-02 01:49:50 -0700461 if (ret < 0) {
Alex Kiernan1ad5fac2018-05-29 15:30:43 +0000462 pr_err("cannot find partition: '%s'\n", cmd);
Alex Kiernanc4ded032018-05-29 15:30:40 +0000463 fastboot_fail("cannot find partition", response);
Dileep Katta89792382015-02-17 18:48:23 +0530464 return;
465 }
466
467 /* Align blocks to erase group size to avoid erasing other partitions */
468 grp_size = mmc->erase_grp_size;
469 blks_start = (info.start + grp_size - 1) & ~(grp_size - 1);
470 if (info.size >= grp_size)
471 blks_size = (info.size - (blks_start - info.start)) &
472 (~(grp_size - 1));
473 else
474 blks_size = 0;
475
476 printf("Erasing blocks " LBAFU " to " LBAFU " due to alignment\n",
477 blks_start, blks_start + blks_size);
478
Alex Kiernanf73a7df2018-05-29 15:30:53 +0000479 blks = fb_mmc_blk_write(dev_desc, blks_start, blks_size, NULL);
480
Dileep Katta89792382015-02-17 18:48:23 +0530481 if (blks != blks_size) {
Alex Kiernan1ad5fac2018-05-29 15:30:43 +0000482 pr_err("failed erasing from device %d\n", dev_desc->devnum);
Alex Kiernanc4ded032018-05-29 15:30:40 +0000483 fastboot_fail("failed erasing from device", response);
Dileep Katta89792382015-02-17 18:48:23 +0530484 return;
485 }
486
487 printf("........ erased " LBAFU " bytes from '%s'\n",
488 blks_size * info.blksz, cmd);
Alex Kiernanc4ded032018-05-29 15:30:40 +0000489 fastboot_okay(NULL, response);
Dileep Katta89792382015-02-17 18:48:23 +0530490}