Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Steve Rae | c0aebb3 | 2014-08-26 11:47:27 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2014 Broadcom Corporation. |
Steve Rae | c0aebb3 | 2014-08-26 11:47:27 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
Alex Kiernan | f73a7df | 2018-05-29 15:30:53 +0000 | [diff] [blame] | 6 | #ifndef _FB_MMC_H_ |
| 7 | #define _FB_MMC_H_ |
| 8 | |
| 9 | /** |
| 10 | * fastboot_mmc_get_part_info() - Lookup eMMC partion by name |
| 11 | * |
| 12 | * @part_name: Named partition to lookup |
| 13 | * @dev_desc: Pointer to returned blk_desc pointer |
| 14 | * @part_info: Pointer to returned disk_partition_t |
| 15 | * @response: Pointer to fastboot response buffer |
| 16 | */ |
Sam Protsenko | cacb03e | 2019-06-13 21:11:07 +0300 | [diff] [blame] | 17 | int fastboot_mmc_get_part_info(const char *part_name, |
| 18 | struct blk_desc **dev_desc, |
Alex Kiernan | f73a7df | 2018-05-29 15:30:53 +0000 | [diff] [blame] | 19 | disk_partition_t *part_info, char *response); |
| 20 | |
Alex Kiernan | d1a119d | 2018-05-29 15:30:48 +0000 | [diff] [blame] | 21 | /** |
| 22 | * fastboot_mmc_flash_write() - Write image to eMMC for fastboot |
| 23 | * |
| 24 | * @cmd: Named partition to write image to |
| 25 | * @download_buffer: Pointer to image data |
| 26 | * @download_bytes: Size of image data |
| 27 | * @response: Pointer to fastboot response buffer |
| 28 | */ |
| 29 | void fastboot_mmc_flash_write(const char *cmd, void *download_buffer, |
Alex Kiernan | f73a7df | 2018-05-29 15:30:53 +0000 | [diff] [blame] | 30 | u32 download_bytes, char *response); |
Alex Kiernan | d1a119d | 2018-05-29 15:30:48 +0000 | [diff] [blame] | 31 | /** |
| 32 | * fastboot_mmc_flash_erase() - Erase eMMC for fastboot |
| 33 | * |
| 34 | * @cmd: Named partition to erase |
| 35 | * @response: Pointer to fastboot response buffer |
| 36 | */ |
| 37 | void fastboot_mmc_erase(const char *cmd, char *response); |
Alex Kiernan | f73a7df | 2018-05-29 15:30:53 +0000 | [diff] [blame] | 38 | #endif |