blob: b5d4c0cc5f2a83306f0029bd8f5016d6f48106f0 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Maxime Ripardbf8940d2015-10-15 14:34:17 +02002/*
3 * Copyright 2014 Broadcom Corporation.
4 * Copyright 2015 Free Electrons.
Maxime Ripardbf8940d2015-10-15 14:34:17 +02005 */
6
Alex Kiernand1a119d2018-05-29 15:30:48 +00007/**
8 * fastboot_nand_flash_write() - Write image to NAND for fastboot
9 *
10 * @cmd: Named device to write image to
11 * @download_buffer: Pointer to image data
12 * @download_bytes: Size of image data
13 * @response: Pointer to fastboot response buffer
14 */
15void fastboot_nand_flash_write(const char *cmd, void *download_buffer,
16 unsigned int download_bytes, char *response);
17/**
18 * fastboot_nand_flash_erase() - Erase NAND for fastboot
19 *
20 * @cmd: Named device to erase
21 * @response: Pointer to fastboot response buffer
22 */
23void fastboot_nand_erase(const char *cmd, char *response);