]> git.ipfire.org Git - thirdparty/u-boot.git/blame - include/fb_mmc.h
warp7: configs: add bl33 defconfig
[thirdparty/u-boot.git] / include / fb_mmc.h
CommitLineData
83d290c5 1/* SPDX-License-Identifier: GPL-2.0+ */
c0aebb33
SR
2/*
3 * Copyright 2014 Broadcom Corporation.
c0aebb33
SR
4 */
5
f73a7df9
AK
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 */
17int fastboot_mmc_get_part_info(char *part_name, struct blk_desc **dev_desc,
18 disk_partition_t *part_info, char *response);
19
d1a119d4
AK
20/**
21 * fastboot_mmc_flash_write() - Write image to eMMC for fastboot
22 *
23 * @cmd: Named partition to write image to
24 * @download_buffer: Pointer to image data
25 * @download_bytes: Size of image data
26 * @response: Pointer to fastboot response buffer
27 */
28void fastboot_mmc_flash_write(const char *cmd, void *download_buffer,
f73a7df9 29 u32 download_bytes, char *response);
d1a119d4
AK
30/**
31 * fastboot_mmc_flash_erase() - Erase eMMC for fastboot
32 *
33 * @cmd: Named partition to erase
34 * @response: Pointer to fastboot response buffer
35 */
36void fastboot_mmc_erase(const char *cmd, char *response);
f73a7df9 37#endif