phy: meson: add GXBB PHY driver
[oweals/u-boot.git] / cmd / dfu.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * cmd_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>
11  */
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
21 static int do_dfu(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
22 {
23
24         if (argc < 2)
25                 return CMD_RET_USAGE;
26
27 #ifdef CONFIG_DFU_OVER_USB
28         char *usb_controller = argv[1];
29 #endif
30 #if defined(CONFIG_DFU_OVER_USB) || defined(CONFIG_DFU_OVER_TFTP)
31         char *interface = NULL;
32         char *devstring = NULL;
33 #if defined(CONFIG_DFU_TIMEOUT) || defined(CONFIG_DFU_OVER_TFTP)
34         unsigned long value = 0;
35 #endif
36
37         if (argc >= 4) {
38                 interface = argv[2];
39                 devstring = argv[3];
40         }
41
42 #if defined(CONFIG_DFU_TIMEOUT) || defined(CONFIG_DFU_OVER_TFTP)
43         if (argc == 5 || argc == 3)
44                 value = simple_strtoul(argv[argc - 1], NULL, 0);
45 #endif
46 #endif
47
48         int ret = 0;
49 #ifdef CONFIG_DFU_OVER_TFTP
50         if (!strcmp(argv[1], "tftp"))
51                 return update_tftp(value, interface, devstring);
52 #endif
53 #ifdef CONFIG_DFU_OVER_USB
54         ret = dfu_init_env_entities(interface, devstring);
55         if (ret)
56                 goto done;
57
58 #ifdef CONFIG_DFU_TIMEOUT
59         dfu_set_timeout(value * 1000);
60 #endif
61
62         ret = CMD_RET_SUCCESS;
63         if (strcmp(argv[argc - 1], "list") == 0) {
64                 dfu_show_entities();
65                 goto done;
66         }
67
68         int controller_index = simple_strtoul(usb_controller, NULL, 0);
69
70         run_usb_dnl_gadget(controller_index, "usb_dnl_dfu");
71
72 done:
73         dfu_free_entities();
74 #endif
75         return ret;
76 }
77
78 U_BOOT_CMD(dfu, CONFIG_SYS_MAXARGS, 1, do_dfu,
79         "Device Firmware Upgrade",
80         ""
81 #ifdef CONFIG_DFU_OVER_USB
82 #ifdef CONFIG_DFU_TIMEOUT
83         "<USB_controller> [<interface> <dev>] [<timeout>] [list]\n"
84 #else
85         "<USB_controller> [<interface> <dev>] [list]\n"
86 #endif
87         "  - device firmware upgrade via <USB_controller>\n"
88         "    on device <dev>, attached to interface\n"
89         "    <interface>\n"
90 #ifdef CONFIG_DFU_TIMEOUT
91         "    [<timeout>] - specify inactivity timeout in seconds\n"
92 #endif
93         "    [list] - list available alt settings\n"
94 #endif
95 #ifdef CONFIG_DFU_OVER_TFTP
96 #ifdef CONFIG_DFU_OVER_USB
97         "dfu "
98 #endif
99         "tftp [<interface> <dev>] [<addr>]\n"
100         "  - device firmware upgrade via TFTP\n"
101         "    on device <dev>, attached to interface\n"
102         "    <interface>\n"
103         "    [<addr>] - address where FIT image has been stored\n"
104 #endif
105 );