Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Lukasz Majewski | a006a5d | 2012-08-06 14:41:09 +0200 | [diff] [blame] | 2 | /* |
| 3 | * cmd_dfu.c -- dfu command |
| 4 | * |
Lukasz Majewski | c2c146f | 2015-08-24 00:21:48 +0200 | [diff] [blame] | 5 | * Copyright (C) 2015 |
| 6 | * Lukasz Majewski <l.majewski@majess.pl> |
| 7 | * |
Lukasz Majewski | a006a5d | 2012-08-06 14:41:09 +0200 | [diff] [blame] | 8 | * Copyright (C) 2012 Samsung Electronics |
| 9 | * authors: Andrzej Pietrasiewicz <andrzej.p@samsung.com> |
| 10 | * Lukasz Majewski <l.majewski@samsung.com> |
Lukasz Majewski | a006a5d | 2012-08-06 14:41:09 +0200 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | #include <common.h> |
Heiko Schocher | 0a9ac5c | 2015-04-14 09:53:13 +0200 | [diff] [blame] | 14 | #include <watchdog.h> |
Lukasz Majewski | a006a5d | 2012-08-06 14:41:09 +0200 | [diff] [blame] | 15 | #include <dfu.h> |
Simon Glass | 24b852a | 2015-11-08 23:47:45 -0700 | [diff] [blame] | 16 | #include <console.h> |
Lukasz Majewski | a006a5d | 2012-08-06 14:41:09 +0200 | [diff] [blame] | 17 | #include <g_dnl.h> |
Mateusz Zalega | 16297cf | 2013-10-04 19:22:26 +0200 | [diff] [blame] | 18 | #include <usb.h> |
Lukasz Majewski | c2c146f | 2015-08-24 00:21:48 +0200 | [diff] [blame] | 19 | #include <net.h> |
Lukasz Majewski | a006a5d | 2012-08-06 14:41:09 +0200 | [diff] [blame] | 20 | |
| 21 | static int do_dfu(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
| 22 | { |
Lukasz Majewski | 1cc03c5 | 2014-08-25 11:07:28 +0200 | [diff] [blame] | 23 | |
Patrick Delaunay | febabe3 | 2019-10-14 09:28:02 +0200 | [diff] [blame] | 24 | if (argc < 2) |
Mateusz Zalega | 16297cf | 2013-10-04 19:22:26 +0200 | [diff] [blame] | 25 | return CMD_RET_USAGE; |
| 26 | |
Marek Vasut | bb4059a | 2018-02-16 16:41:18 +0100 | [diff] [blame] | 27 | #ifdef CONFIG_DFU_OVER_USB |
Mateusz Zalega | 16297cf | 2013-10-04 19:22:26 +0200 | [diff] [blame] | 28 | char *usb_controller = argv[1]; |
Marek Vasut | 0f44d33 | 2018-02-16 16:41:17 +0100 | [diff] [blame] | 29 | #endif |
Andy Shevchenko | cbc1081 | 2019-03-04 16:04:44 +0200 | [diff] [blame] | 30 | #if defined(CONFIG_DFU_OVER_USB) || defined(CONFIG_DFU_OVER_TFTP) |
Patrick Delaunay | febabe3 | 2019-10-14 09:28:02 +0200 | [diff] [blame] | 31 | char *interface = NULL; |
| 32 | char *devstring = NULL; |
| 33 | |
| 34 | if (argc >= 4) { |
| 35 | interface = argv[2]; |
| 36 | devstring = argv[3]; |
| 37 | } |
Andy Shevchenko | cbc1081 | 2019-03-04 16:04:44 +0200 | [diff] [blame] | 38 | #endif |
Mateusz Zalega | 16297cf | 2013-10-04 19:22:26 +0200 | [diff] [blame] | 39 | |
Marek Vasut | 0f44d33 | 2018-02-16 16:41:17 +0100 | [diff] [blame] | 40 | int ret = 0; |
Marek Vasut | bb4059a | 2018-02-16 16:41:18 +0100 | [diff] [blame] | 41 | #ifdef CONFIG_DFU_OVER_TFTP |
Lukasz Majewski | c2c146f | 2015-08-24 00:21:48 +0200 | [diff] [blame] | 42 | unsigned long addr = 0; |
| 43 | if (!strcmp(argv[1], "tftp")) { |
Patrick Delaunay | febabe3 | 2019-10-14 09:28:02 +0200 | [diff] [blame] | 44 | if (argc == 5 || argc == 3) |
| 45 | addr = simple_strtoul(argv[argc - 1], NULL, 0); |
Lukasz Majewski | c2c146f | 2015-08-24 00:21:48 +0200 | [diff] [blame] | 46 | |
| 47 | return update_tftp(addr, interface, devstring); |
| 48 | } |
| 49 | #endif |
Marek Vasut | bb4059a | 2018-02-16 16:41:18 +0100 | [diff] [blame] | 50 | #ifdef CONFIG_DFU_OVER_USB |
Stephen Warren | dd64827 | 2014-06-11 16:03:33 -0600 | [diff] [blame] | 51 | ret = dfu_init_env_entities(interface, devstring); |
Lukasz Majewski | a006a5d | 2012-08-06 14:41:09 +0200 | [diff] [blame] | 52 | if (ret) |
Stephen Warren | afb8e71 | 2014-06-10 10:06:41 -0600 | [diff] [blame] | 53 | goto done; |
Lukasz Majewski | a006a5d | 2012-08-06 14:41:09 +0200 | [diff] [blame] | 54 | |
Stephen Warren | afb8e71 | 2014-06-10 10:06:41 -0600 | [diff] [blame] | 55 | ret = CMD_RET_SUCCESS; |
Patrick Delaunay | febabe3 | 2019-10-14 09:28:02 +0200 | [diff] [blame] | 56 | if (strcmp(argv[argc - 1], "list") == 0) { |
Lukasz Majewski | a006a5d | 2012-08-06 14:41:09 +0200 | [diff] [blame] | 57 | dfu_show_entities(); |
| 58 | goto done; |
| 59 | } |
| 60 | |
Mateusz Zalega | 16297cf | 2013-10-04 19:22:26 +0200 | [diff] [blame] | 61 | int controller_index = simple_strtoul(usb_controller, NULL, 0); |
Lukasz Majewski | 1cc03c5 | 2014-08-25 11:07:28 +0200 | [diff] [blame] | 62 | |
B, Ravi | 05341a8 | 2016-07-28 17:39:15 +0530 | [diff] [blame] | 63 | run_usb_dnl_gadget(controller_index, "usb_dnl_dfu"); |
Lukasz Majewski | 6bed7ce | 2013-07-18 13:19:14 +0200 | [diff] [blame] | 64 | |
Lukasz Majewski | a006a5d | 2012-08-06 14:41:09 +0200 | [diff] [blame] | 65 | done: |
| 66 | dfu_free_entities(); |
Marek Vasut | 0f44d33 | 2018-02-16 16:41:17 +0100 | [diff] [blame] | 67 | #endif |
Stephen Warren | afb8e71 | 2014-06-10 10:06:41 -0600 | [diff] [blame] | 68 | return ret; |
Lukasz Majewski | a006a5d | 2012-08-06 14:41:09 +0200 | [diff] [blame] | 69 | } |
| 70 | |
| 71 | U_BOOT_CMD(dfu, CONFIG_SYS_MAXARGS, 1, do_dfu, |
| 72 | "Device Firmware Upgrade", |
Andy Shevchenko | cbc1081 | 2019-03-04 16:04:44 +0200 | [diff] [blame] | 73 | "" |
Marek Vasut | bb4059a | 2018-02-16 16:41:18 +0100 | [diff] [blame] | 74 | #ifdef CONFIG_DFU_OVER_USB |
Patrick Delaunay | febabe3 | 2019-10-14 09:28:02 +0200 | [diff] [blame] | 75 | "<USB_controller> [<interface> <dev>] [list]\n" |
Mateusz Zalega | 16297cf | 2013-10-04 19:22:26 +0200 | [diff] [blame] | 76 | " - device firmware upgrade via <USB_controller>\n" |
| 77 | " on device <dev>, attached to interface\n" |
| 78 | " <interface>\n" |
| 79 | " [list] - list available alt settings\n" |
Marek Vasut | 0f44d33 | 2018-02-16 16:41:17 +0100 | [diff] [blame] | 80 | #endif |
Marek Vasut | bb4059a | 2018-02-16 16:41:18 +0100 | [diff] [blame] | 81 | #ifdef CONFIG_DFU_OVER_TFTP |
| 82 | #ifdef CONFIG_DFU_OVER_USB |
Marek Vasut | 0f44d33 | 2018-02-16 16:41:17 +0100 | [diff] [blame] | 83 | "dfu " |
| 84 | #endif |
Patrick Delaunay | febabe3 | 2019-10-14 09:28:02 +0200 | [diff] [blame] | 85 | "tftp [<interface> <dev>] [<addr>]\n" |
Lukasz Majewski | c2c146f | 2015-08-24 00:21:48 +0200 | [diff] [blame] | 86 | " - device firmware upgrade via TFTP\n" |
| 87 | " on device <dev>, attached to interface\n" |
| 88 | " <interface>\n" |
| 89 | " [<addr>] - address where FIT image has been stored\n" |
| 90 | #endif |
Lukasz Majewski | a006a5d | 2012-08-06 14:41:09 +0200 | [diff] [blame] | 91 | ); |