2018-05-07 05:58:06 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2014-08-27 02:47:27 +08:00
|
|
|
/*
|
|
|
|
* Copyright 2014 Broadcom Corporation.
|
|
|
|
*/
|
|
|
|
|
2018-05-29 23:30:53 +08:00
|
|
|
#ifndef _FB_MMC_H_
|
|
|
|
#define _FB_MMC_H_
|
|
|
|
|
2020-05-11 01:39:58 +08:00
|
|
|
struct blk_desc;
|
|
|
|
struct disk_partition;
|
|
|
|
|
2018-05-29 23:30:53 +08:00
|
|
|
/**
|
|
|
|
* fastboot_mmc_get_part_info() - Lookup eMMC partion by name
|
|
|
|
*
|
|
|
|
* @part_name: Named partition to lookup
|
|
|
|
* @dev_desc: Pointer to returned blk_desc pointer
|
2020-05-11 01:39:57 +08:00
|
|
|
* @part_info: Pointer to returned struct disk_partition
|
2018-05-29 23:30:53 +08:00
|
|
|
* @response: Pointer to fastboot response buffer
|
|
|
|
*/
|
2019-06-14 02:11:07 +08:00
|
|
|
int fastboot_mmc_get_part_info(const char *part_name,
|
|
|
|
struct blk_desc **dev_desc,
|
2020-05-11 01:39:57 +08:00
|
|
|
struct disk_partition *part_info,
|
|
|
|
char *response);
|
2018-05-29 23:30:53 +08:00
|
|
|
|
2018-05-29 23:30:48 +08:00
|
|
|
/**
|
|
|
|
* fastboot_mmc_flash_write() - Write image to eMMC for fastboot
|
|
|
|
*
|
|
|
|
* @cmd: Named partition to write image to
|
|
|
|
* @download_buffer: Pointer to image data
|
|
|
|
* @download_bytes: Size of image data
|
|
|
|
* @response: Pointer to fastboot response buffer
|
|
|
|
*/
|
|
|
|
void fastboot_mmc_flash_write(const char *cmd, void *download_buffer,
|
2018-05-29 23:30:53 +08:00
|
|
|
u32 download_bytes, char *response);
|
2018-05-29 23:30:48 +08:00
|
|
|
/**
|
|
|
|
* fastboot_mmc_flash_erase() - Erase eMMC for fastboot
|
|
|
|
*
|
|
|
|
* @cmd: Named partition to erase
|
|
|
|
* @response: Pointer to fastboot response buffer
|
|
|
|
*/
|
|
|
|
void fastboot_mmc_erase(const char *cmd, char *response);
|
2018-05-29 23:30:53 +08:00
|
|
|
#endif
|