part: Drop disk_partition_t typedef
[platform/kernel/u-boot.git] / include / fb_mmc.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright 2014 Broadcom Corporation.
4  */
5
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 struct disk_partition
15  * @response: Pointer to fastboot response buffer
16  */
17 int fastboot_mmc_get_part_info(const char *part_name,
18                                struct blk_desc **dev_desc,
19                                struct disk_partition *part_info,
20                                char *response);
21
22 /**
23  * fastboot_mmc_flash_write() - Write image to eMMC for fastboot
24  *
25  * @cmd: Named partition to write image to
26  * @download_buffer: Pointer to image data
27  * @download_bytes: Size of image data
28  * @response: Pointer to fastboot response buffer
29  */
30 void fastboot_mmc_flash_write(const char *cmd, void *download_buffer,
31                               u32 download_bytes, char *response);
32 /**
33  * fastboot_mmc_flash_erase() - Erase eMMC for fastboot
34  *
35  * @cmd: Named partition to erase
36  * @response: Pointer to fastboot response buffer
37  */
38 void fastboot_mmc_erase(const char *cmd, char *response);
39 #endif