blob: 44d1484d3d277f5b17c4dce7c36d90ce78de6c51 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
B, Ravi05341a82016-07-28 17:39:15 +05302/*
3 * dfu.c -- dfu command
4 *
5 * Copyright (C) 2015
6 * Lukasz Majewski <l.majewski@majess.pl>
7 *
8 * Copyright (C) 2012 Samsung Electronics
9 * authors: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
10 * Lukasz Majewski <l.majewski@samsung.com>
B, Ravi05341a82016-07-28 17:39:15 +053011 */
12
13#include <common.h>
14#include <watchdog.h>
15#include <dfu.h>
16#include <console.h>
17#include <g_dnl.h>
18#include <usb.h>
19#include <net.h>
20
21int run_usb_dnl_gadget(int usbctrl_index, char *usb_dnl_gadget)
22{
23 bool dfu_reset = false;
24 int ret, i = 0;
25
Jean-Jacques Hiblota06955a2018-11-29 10:52:41 +010026 ret = usb_gadget_initialize(usbctrl_index);
Michal Simekdbdc2742016-08-30 15:32:17 +020027 if (ret) {
Jean-Jacques Hiblota06955a2018-11-29 10:52:41 +010028 pr_err("usb_gadget_initialize failed\n");
Michal Simekdbdc2742016-08-30 15:32:17 +020029 return CMD_RET_FAILURE;
30 }
B, Ravi05341a82016-07-28 17:39:15 +053031 g_dnl_clear_detach();
Sanchayan Maity54a708c2016-08-08 16:56:17 +053032 ret = g_dnl_register(usb_dnl_gadget);
33 if (ret) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +090034 pr_err("g_dnl_register failed");
Sanchayan Maity54a708c2016-08-08 16:56:17 +053035 return CMD_RET_FAILURE;
36 }
37
B, Ravi05341a82016-07-28 17:39:15 +053038 while (1) {
39 if (g_dnl_detach()) {
40 /*
41 * Check if USB bus reset is performed after detach,
42 * which indicates that -R switch has been passed to
43 * dfu-util. In this case reboot the device
44 */
45 if (dfu_usb_get_reset()) {
46 dfu_reset = true;
47 goto exit;
48 }
49
50 /*
51 * This extra number of usb_gadget_handle_interrupts()
52 * calls is necessary to assure correct transmission
53 * completion with dfu-util
54 */
55 if (++i == 10000)
56 goto exit;
57 }
58
59 if (ctrlc())
60 goto exit;
61
62 if (dfu_get_defer_flush()) {
63 /*
64 * Call to usb_gadget_handle_interrupts() is necessary
65 * to act on ZLP OUT transaction from HOST PC after
66 * transmitting the whole file.
67 *
68 * If this ZLP OUT packet is NAK'ed, the HOST libusb
69 * function fails after timeout (by default it is set to
70 * 5 seconds). In such situation the dfu-util program
71 * exits with error message.
72 */
73 usb_gadget_handle_interrupts(usbctrl_index);
74 ret = dfu_flush(dfu_get_defer_flush(), NULL, 0, 0);
75 dfu_set_defer_flush(NULL);
76 if (ret) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +090077 pr_err("Deferred dfu_flush() failed!");
B, Ravi05341a82016-07-28 17:39:15 +053078 goto exit;
79 }
80 }
81
82 WATCHDOG_RESET();
83 usb_gadget_handle_interrupts(usbctrl_index);
84 }
85exit:
86 g_dnl_unregister();
Jean-Jacques Hiblota06955a2018-11-29 10:52:41 +010087 usb_gadget_release(usbctrl_index);
B, Ravi05341a82016-07-28 17:39:15 +053088
89 if (dfu_reset)
B, Ravi66928af2017-05-04 15:45:29 +053090 do_reset(NULL, 0, 0, NULL);
B, Ravi05341a82016-07-28 17:39:15 +053091
92 g_dnl_clear_detach();
93
94 return ret;
95}