u-boot/include/fastboot-internal.h
Simon Glass 637425bab3 fastboot: Change fastboot_buf_addr to an address
Given the name of this variable, it should be an address, not a
pointer. Update this, to make it easier to use with sandbox.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Dmitrii Merkurev <dimorinny@google.com>
Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
Tested-by: Mattijs Korpershoek <mkorpershoek@baylibre.com> # on vim3
2024-04-10 17:04:25 -06:00

36 lines
980 B
C

/* SPDX-License-Identifier: GPL-2.0+ */
#ifndef _FASTBOOT_INTERNAL_H_
#define _FASTBOOT_INTERNAL_H_
/**
* fastboot_buf_addr - base address of the fastboot download buffer
*/
extern ulong fastboot_buf_addr;
/**
* fastboot_buf_size - size of the fastboot download buffer
*/
extern u32 fastboot_buf_size;
/**
* fastboot_progress_callback - callback executed during long operations
*/
extern void (*fastboot_progress_callback)(const char *msg);
/**
* fastboot_getvar() - Writes variable indicated by cmd_parameter to response.
*
* @cmd_parameter: Pointer to command parameter
* @response: Pointer to fastboot response buffer
*
* Look up cmd_parameter first as an environment variable of the form
* fastboot.<cmd_parameter>, if that exists return use its value to set
* response.
*
* Otherwise lookup the name of variable and execute the appropriate
* function to return the requested value.
*/
void fastboot_getvar(char *cmd_parameter, char *response);
#endif