blob: b72f4f310d83debe00e201c824a71e5018afcd90 [file] [log] [blame]
Sebastian Siewior3aab70a2014-05-05 15:08:10 -05001/*
2 * Copyright 2008 - 2009 Windriver, <www.windriver.com>
3 * Author: Tom Rix <Tom.Rix@windriver.com>
4 *
5 * (C) Copyright 2014 Linaro, Ltd.
6 * Rob Herring <robh@kernel.org>
7 *
8 * SPDX-License-Identifier: GPL-2.0+
9 */
10#include <common.h>
11#include <command.h>
12#include <g_dnl.h>
13
14static int do_fastboot(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
15{
16 int ret;
17
Rob Herring267abc62014-12-10 14:43:04 -060018 g_dnl_clear_detach();
Sebastian Siewior3aab70a2014-05-05 15:08:10 -050019 ret = g_dnl_register("usb_dnl_fastboot");
20 if (ret)
21 return ret;
22
23 while (1) {
Rob Herring267abc62014-12-10 14:43:04 -060024 if (g_dnl_detach())
25 break;
Sebastian Siewior3aab70a2014-05-05 15:08:10 -050026 if (ctrlc())
27 break;
28 usb_gadget_handle_interrupts();
29 }
30
31 g_dnl_unregister();
Rob Herring267abc62014-12-10 14:43:04 -060032 g_dnl_clear_detach();
Sebastian Siewior3aab70a2014-05-05 15:08:10 -050033 return CMD_RET_SUCCESS;
34}
35
36U_BOOT_CMD(
Steve Rae593cbd92014-08-26 11:47:29 -070037 fastboot, 1, 0, do_fastboot,
38 "use USB Fastboot protocol",
39 "\n"
40 " - run as a fastboot usb device"
Sebastian Siewior3aab70a2014-05-05 15:08:10 -050041);