blob: 90ca81da9b5f338f09a27873fb142d142a07933e [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>
Maxime Ripard3c8f98f2015-10-15 14:34:13 +02009#include <fastboot.h>
Alex Kiernanf73a7df2018-05-29 15:30:53 +000010#include <fastboot-internal.h>
Steve Raec0aebb32014-08-26 11:47:27 -070011#include <fb_mmc.h>
Maxime Ripard3d4ef382015-10-15 14:34:19 +020012#include <image-sparse.h>
Steve Raec0aebb32014-08-26 11:47:27 -070013#include <part.h>
Dileep Katta89792382015-02-17 18:48:23 +053014#include <mmc.h>
Siarhei Siamashka5e0efc12015-10-28 06:24:16 +020015#include <div64.h>
Sam Protsenkoefeccfe2017-05-18 15:04:59 +030016#include <linux/compat.h>
17#include <android_image.h>
Steve Raec0aebb32014-08-26 11:47:27 -070018
Alex Kiernanf73a7df2018-05-29 15:30:53 +000019#define FASTBOOT_MAX_BLK_WRITE 16384
20
Sam Protsenkoefeccfe2017-05-18 15:04:59 +030021#define BOOT_PARTITION_NAME "boot"
22
Maxime Riparda5d1e042015-10-15 14:34:14 +020023struct fb_mmc_sparse {
Simon Glass4101f682016-02-29 15:25:34 -070024 struct blk_desc *dev_desc;
Maxime Riparda5d1e042015-10-15 14:34:14 +020025};
26
Petr Kulhavyb6dd69a2016-09-09 10:27:16 +020027static int part_get_info_by_name_or_alias(struct blk_desc *dev_desc,
Michael Scott8a418022015-03-11 10:02:31 -070028 const char *name, disk_partition_t *info)
29{
30 int ret;
31
Petr Kulhavy87b85302016-09-09 10:27:15 +020032 ret = part_get_info_by_name(dev_desc, name, info);
Alex Deymo88b63292017-04-02 01:49:50 -070033 if (ret < 0) {
Alex Kiernanb762aa12019-04-09 05:30:05 +000034 /* strlen("fastboot_partition_alias_") + PART_NAME_LEN + 1 */
35 char env_alias_name[25 + PART_NAME_LEN + 1];
Michael Scott8a418022015-03-11 10:02:31 -070036 char *aliased_part_name;
37
38 /* check for alias */
39 strcpy(env_alias_name, "fastboot_partition_alias_");
Alex Kiernanb762aa12019-04-09 05:30:05 +000040 strncat(env_alias_name, name, PART_NAME_LEN);
Simon Glass00caae62017-08-03 12:22:12 -060041 aliased_part_name = env_get(env_alias_name);
Michael Scott8a418022015-03-11 10:02:31 -070042 if (aliased_part_name != NULL)
Petr Kulhavy87b85302016-09-09 10:27:15 +020043 ret = part_get_info_by_name(dev_desc,
Michael Scott8a418022015-03-11 10:02:31 -070044 aliased_part_name, info);
45 }
46 return ret;
47}
48
Alex Kiernanf73a7df2018-05-29 15:30:53 +000049/**
50 * fb_mmc_blk_write() - Write/erase MMC in chunks of FASTBOOT_MAX_BLK_WRITE
51 *
52 * @block_dev: Pointer to block device
53 * @start: First block to write/erase
54 * @blkcnt: Count of blocks
55 * @buffer: Pointer to data buffer for write or NULL for erase
56 */
57static lbaint_t fb_mmc_blk_write(struct blk_desc *block_dev, lbaint_t start,
58 lbaint_t blkcnt, const void *buffer)
59{
60 lbaint_t blk = start;
61 lbaint_t blks_written;
62 lbaint_t cur_blkcnt;
63 lbaint_t blks = 0;
64 int i;
65
66 for (i = 0; i < blkcnt; i += FASTBOOT_MAX_BLK_WRITE) {
67 cur_blkcnt = min((int)blkcnt - i, FASTBOOT_MAX_BLK_WRITE);
68 if (buffer) {
69 if (fastboot_progress_callback)
70 fastboot_progress_callback("writing");
71 blks_written = blk_dwrite(block_dev, blk, cur_blkcnt,
72 buffer + (i * block_dev->blksz));
73 } else {
74 if (fastboot_progress_callback)
75 fastboot_progress_callback("erasing");
76 blks_written = blk_derase(block_dev, blk, cur_blkcnt);
77 }
78 blk += blks_written;
79 blks += blks_written;
80 }
81 return blks;
82}
83
Steve Raecc0f08cd2016-06-07 11:19:36 -070084static lbaint_t fb_mmc_sparse_write(struct sparse_storage *info,
85 lbaint_t blk, lbaint_t blkcnt, const void *buffer)
Maxime Riparda5d1e042015-10-15 14:34:14 +020086{
Steve Raecc0f08cd2016-06-07 11:19:36 -070087 struct fb_mmc_sparse *sparse = info->priv;
Simon Glass4101f682016-02-29 15:25:34 -070088 struct blk_desc *dev_desc = sparse->dev_desc;
Maxime Riparda5d1e042015-10-15 14:34:14 +020089
Alex Kiernanf73a7df2018-05-29 15:30:53 +000090 return fb_mmc_blk_write(dev_desc, blk, blkcnt, buffer);
Maxime Riparda5d1e042015-10-15 14:34:14 +020091}
92
Steve Rae2c724042016-06-07 11:19:38 -070093static lbaint_t fb_mmc_sparse_reserve(struct sparse_storage *info,
94 lbaint_t blk, lbaint_t blkcnt)
95{
96 return blkcnt;
97}
98
Simon Glass4101f682016-02-29 15:25:34 -070099static void write_raw_image(struct blk_desc *dev_desc, disk_partition_t *info,
Steve Raec0aebb32014-08-26 11:47:27 -0700100 const char *part_name, void *buffer,
Alex Kiernanf73a7df2018-05-29 15:30:53 +0000101 u32 download_bytes, char *response)
Steve Raec0aebb32014-08-26 11:47:27 -0700102{
103 lbaint_t blkcnt;
104 lbaint_t blks;
105
106 /* determine number of blocks to write */
107 blkcnt = ((download_bytes + (info->blksz - 1)) & ~(info->blksz - 1));
Siarhei Siamashka5e0efc12015-10-28 06:24:16 +0200108 blkcnt = lldiv(blkcnt, info->blksz);
Steve Raec0aebb32014-08-26 11:47:27 -0700109
110 if (blkcnt > info->size) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900111 pr_err("too large for partition: '%s'\n", part_name);
Alex Kiernanc4ded032018-05-29 15:30:40 +0000112 fastboot_fail("too large for partition", response);
Steve Raec0aebb32014-08-26 11:47:27 -0700113 return;
114 }
115
116 puts("Flashing Raw Image\n");
117
Alex Kiernanf73a7df2018-05-29 15:30:53 +0000118 blks = fb_mmc_blk_write(dev_desc, info->start, blkcnt, buffer);
119
Steve Raec0aebb32014-08-26 11:47:27 -0700120 if (blks != blkcnt) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900121 pr_err("failed writing to device %d\n", dev_desc->devnum);
Alex Kiernanc4ded032018-05-29 15:30:40 +0000122 fastboot_fail("failed writing to device", response);
Steve Raec0aebb32014-08-26 11:47:27 -0700123 return;
124 }
125
126 printf("........ wrote " LBAFU " bytes to '%s'\n", blkcnt * info->blksz,
127 part_name);
Alex Kiernanc4ded032018-05-29 15:30:40 +0000128 fastboot_okay(NULL, response);
Steve Raec0aebb32014-08-26 11:47:27 -0700129}
130
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300131#ifdef CONFIG_ANDROID_BOOT_IMAGE
132/**
133 * Read Android boot image header from boot partition.
134 *
135 * @param[in] dev_desc MMC device descriptor
136 * @param[in] info Boot partition info
137 * @param[out] hdr Where to store read boot image header
138 *
139 * @return Boot image header sectors count or 0 on error
140 */
141static lbaint_t fb_mmc_get_boot_header(struct blk_desc *dev_desc,
142 disk_partition_t *info,
Alex Kiernanc4ded032018-05-29 15:30:40 +0000143 struct andr_img_hdr *hdr,
144 char *response)
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300145{
146 ulong sector_size; /* boot partition sector size */
147 lbaint_t hdr_sectors; /* boot image header sectors count */
148 int res;
149
150 /* Calculate boot image sectors count */
151 sector_size = info->blksz;
152 hdr_sectors = DIV_ROUND_UP(sizeof(struct andr_img_hdr), sector_size);
153 if (hdr_sectors == 0) {
Alex Kiernan1ad5fac2018-05-29 15:30:43 +0000154 pr_err("invalid number of boot sectors: 0\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000155 fastboot_fail("invalid number of boot sectors: 0", response);
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300156 return 0;
157 }
158
159 /* Read the boot image header */
160 res = blk_dread(dev_desc, info->start, hdr_sectors, (void *)hdr);
Tom Rini6bafa5a2017-08-14 21:00:44 -0400161 if (res != hdr_sectors) {
Alex Kiernan1ad5fac2018-05-29 15:30:43 +0000162 pr_err("cannot read header from boot partition\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000163 fastboot_fail("cannot read header from boot partition",
164 response);
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300165 return 0;
166 }
167
168 /* Check boot header magic string */
169 res = android_image_check_header(hdr);
170 if (res != 0) {
Alex Kiernan1ad5fac2018-05-29 15:30:43 +0000171 pr_err("bad boot image magic\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000172 fastboot_fail("boot partition not initialized", response);
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300173 return 0;
174 }
175
176 return hdr_sectors;
177}
178
179/**
180 * Write downloaded zImage to boot partition and repack it properly.
181 *
182 * @param dev_desc MMC device descriptor
183 * @param download_buffer Address to fastboot buffer with zImage in it
184 * @param download_bytes Size of fastboot buffer, in bytes
185 *
186 * @return 0 on success or -1 on error
187 */
188static int fb_mmc_update_zimage(struct blk_desc *dev_desc,
189 void *download_buffer,
Alex Kiernanf73a7df2018-05-29 15:30:53 +0000190 u32 download_bytes,
Alex Kiernanc4ded032018-05-29 15:30:40 +0000191 char *response)
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300192{
Tom Rini2341c802017-06-10 09:15:37 -0400193 uintptr_t hdr_addr; /* boot image header address */
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300194 struct andr_img_hdr *hdr; /* boot image header */
195 lbaint_t hdr_sectors; /* boot image header sectors */
196 u8 *ramdisk_buffer;
197 u32 ramdisk_sector_start;
198 u32 ramdisk_sectors;
199 u32 kernel_sector_start;
200 u32 kernel_sectors;
201 u32 sectors_per_page;
202 disk_partition_t info;
203 int res;
204
205 puts("Flashing zImage\n");
206
207 /* Get boot partition info */
208 res = part_get_info_by_name(dev_desc, BOOT_PARTITION_NAME, &info);
209 if (res < 0) {
Alex Kiernan1ad5fac2018-05-29 15:30:43 +0000210 pr_err("cannot find boot partition\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000211 fastboot_fail("cannot find boot partition", response);
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300212 return -1;
213 }
214
215 /* Put boot image header in fastboot buffer after downloaded zImage */
Tom Rini2341c802017-06-10 09:15:37 -0400216 hdr_addr = (uintptr_t)download_buffer + ALIGN(download_bytes, PAGE_SIZE);
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300217 hdr = (struct andr_img_hdr *)hdr_addr;
218
219 /* Read boot image header */
Alex Kiernanc4ded032018-05-29 15:30:40 +0000220 hdr_sectors = fb_mmc_get_boot_header(dev_desc, &info, hdr, response);
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300221 if (hdr_sectors == 0) {
Alex Kiernan1ad5fac2018-05-29 15:30:43 +0000222 pr_err("unable to read boot image header\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000223 fastboot_fail("unable to read boot image header", response);
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300224 return -1;
225 }
226
227 /* Check if boot image has second stage in it (we don't support it) */
228 if (hdr->second_size > 0) {
Alex Kiernan1ad5fac2018-05-29 15:30:43 +0000229 pr_err("moving second stage is not supported yet\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000230 fastboot_fail("moving second stage is not supported yet",
231 response);
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300232 return -1;
233 }
234
235 /* Extract ramdisk location */
236 sectors_per_page = hdr->page_size / info.blksz;
237 ramdisk_sector_start = info.start + sectors_per_page;
238 ramdisk_sector_start += DIV_ROUND_UP(hdr->kernel_size, hdr->page_size) *
239 sectors_per_page;
240 ramdisk_sectors = DIV_ROUND_UP(hdr->ramdisk_size, hdr->page_size) *
241 sectors_per_page;
242
243 /* Read ramdisk and put it in fastboot buffer after boot image header */
244 ramdisk_buffer = (u8 *)hdr + (hdr_sectors * info.blksz);
245 res = blk_dread(dev_desc, ramdisk_sector_start, ramdisk_sectors,
246 ramdisk_buffer);
Tom Rini6bafa5a2017-08-14 21:00:44 -0400247 if (res != ramdisk_sectors) {
Alex Kiernan1ad5fac2018-05-29 15:30:43 +0000248 pr_err("cannot read ramdisk from boot partition\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000249 fastboot_fail("cannot read ramdisk from boot partition",
250 response);
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300251 return -1;
252 }
253
254 /* Write new kernel size to boot image header */
255 hdr->kernel_size = download_bytes;
256 res = blk_dwrite(dev_desc, info.start, hdr_sectors, (void *)hdr);
257 if (res == 0) {
Alex Kiernan1ad5fac2018-05-29 15:30:43 +0000258 pr_err("cannot writeback boot image header\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000259 fastboot_fail("cannot write back boot image header", response);
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300260 return -1;
261 }
262
263 /* Write the new downloaded kernel */
264 kernel_sector_start = info.start + sectors_per_page;
265 kernel_sectors = DIV_ROUND_UP(hdr->kernel_size, hdr->page_size) *
266 sectors_per_page;
267 res = blk_dwrite(dev_desc, kernel_sector_start, kernel_sectors,
268 download_buffer);
269 if (res == 0) {
Alex Kiernan1ad5fac2018-05-29 15:30:43 +0000270 pr_err("cannot write new kernel\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000271 fastboot_fail("cannot write new kernel", response);
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300272 return -1;
273 }
274
275 /* Write the saved ramdisk back */
276 ramdisk_sector_start = info.start + sectors_per_page;
277 ramdisk_sector_start += DIV_ROUND_UP(hdr->kernel_size, hdr->page_size) *
278 sectors_per_page;
279 res = blk_dwrite(dev_desc, ramdisk_sector_start, ramdisk_sectors,
280 ramdisk_buffer);
281 if (res == 0) {
Alex Kiernan1ad5fac2018-05-29 15:30:43 +0000282 pr_err("cannot write back original ramdisk\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000283 fastboot_fail("cannot write back original ramdisk", response);
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300284 return -1;
285 }
286
287 puts("........ zImage was updated in boot partition\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000288 fastboot_okay(NULL, response);
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300289 return 0;
290}
291#endif
292
Alex Kiernand1a119d2018-05-29 15:30:48 +0000293/**
Alex Kiernanf73a7df2018-05-29 15:30:53 +0000294 * fastboot_mmc_get_part_info() - Lookup eMMC partion by name
295 *
296 * @part_name: Named partition to lookup
297 * @dev_desc: Pointer to returned blk_desc pointer
298 * @part_info: Pointer to returned disk_partition_t
299 * @response: Pointer to fastboot response buffer
300 */
301int fastboot_mmc_get_part_info(char *part_name, struct blk_desc **dev_desc,
302 disk_partition_t *part_info, char *response)
303{
304 int r;
305
306 *dev_desc = blk_get_dev("mmc", CONFIG_FASTBOOT_FLASH_MMC_DEV);
307 if (!*dev_desc) {
308 fastboot_fail("block device not found", response);
309 return -ENOENT;
310 }
Eugeniu Roscaa40297d2019-03-28 14:31:33 +0100311 if (!part_name || !strcmp(part_name, "")) {
312 fastboot_fail("partition not given", response);
Alex Kiernanf73a7df2018-05-29 15:30:53 +0000313 return -ENOENT;
314 }
315
316 r = part_get_info_by_name_or_alias(*dev_desc, part_name, part_info);
317 if (r < 0) {
318 fastboot_fail("partition not found", response);
319 return r;
320 }
321
322 return r;
323}
324
325/**
Alex Kiernand1a119d2018-05-29 15:30:48 +0000326 * fastboot_mmc_flash_write() - Write image to eMMC for fastboot
327 *
328 * @cmd: Named partition to write image to
329 * @download_buffer: Pointer to image data
330 * @download_bytes: Size of image data
331 * @response: Pointer to fastboot response buffer
332 */
333void fastboot_mmc_flash_write(const char *cmd, void *download_buffer,
Alex Kiernanf73a7df2018-05-29 15:30:53 +0000334 u32 download_bytes, char *response)
Steve Raec0aebb32014-08-26 11:47:27 -0700335{
Simon Glass4101f682016-02-29 15:25:34 -0700336 struct blk_desc *dev_desc;
Steve Raec0aebb32014-08-26 11:47:27 -0700337 disk_partition_t info;
338
Simon Glassdb1d9e72016-02-29 15:25:42 -0700339 dev_desc = blk_get_dev("mmc", CONFIG_FASTBOOT_FLASH_MMC_DEV);
Steve Raec0aebb32014-08-26 11:47:27 -0700340 if (!dev_desc || dev_desc->type == DEV_TYPE_UNKNOWN) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900341 pr_err("invalid mmc device\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000342 fastboot_fail("invalid mmc device", response);
Steve Raec0aebb32014-08-26 11:47:27 -0700343 return;
344 }
345
Patrick Delaunaybd42a942017-01-27 11:00:41 +0100346#if CONFIG_IS_ENABLED(EFI_PARTITION)
Steve Rae0ff7e582014-12-12 15:51:54 -0800347 if (strcmp(cmd, CONFIG_FASTBOOT_GPT_NAME) == 0) {
348 printf("%s: updating MBR, Primary and Backup GPT(s)\n",
349 __func__);
350 if (is_valid_gpt_buf(dev_desc, download_buffer)) {
351 printf("%s: invalid GPT - refusing to write to flash\n",
352 __func__);
Alex Kiernanc4ded032018-05-29 15:30:40 +0000353 fastboot_fail("invalid GPT partition", response);
Steve Rae0ff7e582014-12-12 15:51:54 -0800354 return;
355 }
356 if (write_mbr_and_gpt_partitions(dev_desc, download_buffer)) {
357 printf("%s: writing GPT partitions failed\n", __func__);
Alex Kiernanc4ded032018-05-29 15:30:40 +0000358 fastboot_fail("writing GPT partitions failed",
359 response);
Steve Rae0ff7e582014-12-12 15:51:54 -0800360 return;
361 }
362 printf("........ success\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000363 fastboot_okay(NULL, response);
Steve Rae0ff7e582014-12-12 15:51:54 -0800364 return;
Petr Kulhavyb6dd69a2016-09-09 10:27:16 +0200365 }
366#endif
367
Patrick Delaunayb0cf7332017-01-27 11:00:37 +0100368#if CONFIG_IS_ENABLED(DOS_PARTITION)
Petr Kulhavyb6dd69a2016-09-09 10:27:16 +0200369 if (strcmp(cmd, CONFIG_FASTBOOT_MBR_NAME) == 0) {
370 printf("%s: updating MBR\n", __func__);
371 if (is_valid_dos_buf(download_buffer)) {
372 printf("%s: invalid MBR - refusing to write to flash\n",
373 __func__);
Alex Kiernanc4ded032018-05-29 15:30:40 +0000374 fastboot_fail("invalid MBR partition", response);
Petr Kulhavyb6dd69a2016-09-09 10:27:16 +0200375 return;
376 }
377 if (write_mbr_partition(dev_desc, download_buffer)) {
378 printf("%s: writing MBR partition failed\n", __func__);
Alex Kiernanc4ded032018-05-29 15:30:40 +0000379 fastboot_fail("writing MBR partition failed",
380 response);
Petr Kulhavyb6dd69a2016-09-09 10:27:16 +0200381 return;
382 }
383 printf("........ success\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000384 fastboot_okay(NULL, response);
Petr Kulhavyb6dd69a2016-09-09 10:27:16 +0200385 return;
386 }
387#endif
388
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300389#ifdef CONFIG_ANDROID_BOOT_IMAGE
390 if (strncasecmp(cmd, "zimage", 6) == 0) {
Alex Kiernanc4ded032018-05-29 15:30:40 +0000391 fb_mmc_update_zimage(dev_desc, download_buffer,
392 download_bytes, response);
Sam Protsenkoefeccfe2017-05-18 15:04:59 +0300393 return;
394 }
395#endif
396
Alex Deymo88b63292017-04-02 01:49:50 -0700397 if (part_get_info_by_name_or_alias(dev_desc, cmd, &info) < 0) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900398 pr_err("cannot find partition: '%s'\n", cmd);
Alex Kiernanc4ded032018-05-29 15:30:40 +0000399 fastboot_fail("cannot find partition", response);
Steve Raec0aebb32014-08-26 11:47:27 -0700400 return;
401 }
402
Maxime Riparda5d1e042015-10-15 14:34:14 +0200403 if (is_sparse_image(download_buffer)) {
404 struct fb_mmc_sparse sparse_priv;
Steve Raecc0f08cd2016-06-07 11:19:36 -0700405 struct sparse_storage sparse;
Jassi Brar2f83f212018-04-06 12:05:09 +0530406 int err;
Maxime Riparda5d1e042015-10-15 14:34:14 +0200407
408 sparse_priv.dev_desc = dev_desc;
409
Steve Raecc0f08cd2016-06-07 11:19:36 -0700410 sparse.blksz = info.blksz;
Maxime Riparda5d1e042015-10-15 14:34:14 +0200411 sparse.start = info.start;
412 sparse.size = info.size;
Maxime Riparda5d1e042015-10-15 14:34:14 +0200413 sparse.write = fb_mmc_sparse_write;
Steve Rae2c724042016-06-07 11:19:38 -0700414 sparse.reserve = fb_mmc_sparse_reserve;
Jassi Brar2f83f212018-04-06 12:05:09 +0530415 sparse.mssg = fastboot_fail;
Maxime Riparda5d1e042015-10-15 14:34:14 +0200416
417 printf("Flashing sparse image at offset " LBAFU "\n",
Steve Raecc0f08cd2016-06-07 11:19:36 -0700418 sparse.start);
Maxime Riparda5d1e042015-10-15 14:34:14 +0200419
Steve Raecc0f08cd2016-06-07 11:19:36 -0700420 sparse.priv = &sparse_priv;
Alex Kiernanc4ded032018-05-29 15:30:40 +0000421 err = write_sparse_image(&sparse, cmd, download_buffer,
422 response);
Jassi Brar2f83f212018-04-06 12:05:09 +0530423 if (!err)
Alex Kiernanc4ded032018-05-29 15:30:40 +0000424 fastboot_okay(NULL, response);
Maxime Riparda5d1e042015-10-15 14:34:14 +0200425 } else {
Steve Raee5bf9872014-08-26 11:47:30 -0700426 write_raw_image(dev_desc, &info, cmd, download_buffer,
Alex Kiernanc4ded032018-05-29 15:30:40 +0000427 download_bytes, response);
Maxime Riparda5d1e042015-10-15 14:34:14 +0200428 }
Steve Raec0aebb32014-08-26 11:47:27 -0700429}
Dileep Katta89792382015-02-17 18:48:23 +0530430
Alex Kiernand1a119d2018-05-29 15:30:48 +0000431/**
432 * fastboot_mmc_flash_erase() - Erase eMMC for fastboot
433 *
434 * @cmd: Named partition to erase
435 * @response: Pointer to fastboot response buffer
436 */
437void fastboot_mmc_erase(const char *cmd, char *response)
Dileep Katta89792382015-02-17 18:48:23 +0530438{
439 int ret;
Simon Glass4101f682016-02-29 15:25:34 -0700440 struct blk_desc *dev_desc;
Dileep Katta89792382015-02-17 18:48:23 +0530441 disk_partition_t info;
442 lbaint_t blks, blks_start, blks_size, grp_size;
443 struct mmc *mmc = find_mmc_device(CONFIG_FASTBOOT_FLASH_MMC_DEV);
444
445 if (mmc == NULL) {
Alex Kiernan1ad5fac2018-05-29 15:30:43 +0000446 pr_err("invalid mmc device\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000447 fastboot_fail("invalid mmc device", response);
Dileep Katta89792382015-02-17 18:48:23 +0530448 return;
449 }
450
Simon Glassdb1d9e72016-02-29 15:25:42 -0700451 dev_desc = blk_get_dev("mmc", CONFIG_FASTBOOT_FLASH_MMC_DEV);
Dileep Katta89792382015-02-17 18:48:23 +0530452 if (!dev_desc || dev_desc->type == DEV_TYPE_UNKNOWN) {
Alex Kiernan1ad5fac2018-05-29 15:30:43 +0000453 pr_err("invalid mmc device\n");
Alex Kiernanc4ded032018-05-29 15:30:40 +0000454 fastboot_fail("invalid mmc device", response);
Dileep Katta89792382015-02-17 18:48:23 +0530455 return;
456 }
457
Petr Kulhavyb6dd69a2016-09-09 10:27:16 +0200458 ret = part_get_info_by_name_or_alias(dev_desc, cmd, &info);
Alex Deymo88b63292017-04-02 01:49:50 -0700459 if (ret < 0) {
Alex Kiernan1ad5fac2018-05-29 15:30:43 +0000460 pr_err("cannot find partition: '%s'\n", cmd);
Alex Kiernanc4ded032018-05-29 15:30:40 +0000461 fastboot_fail("cannot find partition", response);
Dileep Katta89792382015-02-17 18:48:23 +0530462 return;
463 }
464
465 /* Align blocks to erase group size to avoid erasing other partitions */
466 grp_size = mmc->erase_grp_size;
467 blks_start = (info.start + grp_size - 1) & ~(grp_size - 1);
468 if (info.size >= grp_size)
469 blks_size = (info.size - (blks_start - info.start)) &
470 (~(grp_size - 1));
471 else
472 blks_size = 0;
473
474 printf("Erasing blocks " LBAFU " to " LBAFU " due to alignment\n",
475 blks_start, blks_start + blks_size);
476
Alex Kiernanf73a7df2018-05-29 15:30:53 +0000477 blks = fb_mmc_blk_write(dev_desc, blks_start, blks_size, NULL);
478
Dileep Katta89792382015-02-17 18:48:23 +0530479 if (blks != blks_size) {
Alex Kiernan1ad5fac2018-05-29 15:30:43 +0000480 pr_err("failed erasing from device %d\n", dev_desc->devnum);
Alex Kiernanc4ded032018-05-29 15:30:40 +0000481 fastboot_fail("failed erasing from device", response);
Dileep Katta89792382015-02-17 18:48:23 +0530482 return;
483 }
484
485 printf("........ erased " LBAFU " bytes from '%s'\n",
486 blks_size * info.blksz, cmd);
Alex Kiernanc4ded032018-05-29 15:30:40 +0000487 fastboot_okay(NULL, response);
Dileep Katta89792382015-02-17 18:48:23 +0530488}