xref: /openbmc/u-boot/include/fastboot.h (revision 21299d3a)
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2008 - 2009
4  * Windriver, <www.windriver.com>
5  * Tom Rix <Tom.Rix@windriver.com>
6  *
7  * Copyright 2011 Sebastian Andrzej Siewior <bigeasy@linutronix.de>
8  *
9  * Copyright 2014 Linaro, Ltd.
10  * Rob Herring <robh@kernel.org>
11  */
12 #ifndef _FASTBOOT_H_
13 #define _FASTBOOT_H_
14 
15 /* The 64 defined bytes plus \0 */
16 #define FASTBOOT_RESPONSE_LEN	(64 + 1)
17 
18 void fastboot_fail(const char *reason);
19 void fastboot_okay(const char *reason);
20 
21 #endif /* _FASTBOOT_H_ */
22