]> git.ipfire.org Git - thirdparty/u-boot.git/blame - cmd/thordown.c
arm: mvebu: turris_omnia: update defconfig
[thirdparty/u-boot.git] / cmd / thordown.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
3402b053
ŁM
2/*
3 * cmd_thordown.c -- USB TIZEN "THOR" Downloader gadget
4 *
5 * Copyright (C) 2013 Lukasz Majewski <l.majewski@samsung.com>
6 * All rights reserved.
3402b053
ŁM
7 */
8
9#include <common.h>
10#include <thor.h>
11#include <dfu.h>
12#include <g_dnl.h>
13#include <usb.h>
14
15int do_thor_down(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
16{
17 if (argc < 4)
18 return CMD_RET_USAGE;
19
20 char *usb_controller = argv[1];
21 char *interface = argv[2];
22 char *devstring = argv[3];
23
3402b053
ŁM
24 int ret;
25
26 puts("TIZEN \"THOR\" Downloader\n");
27
90fadb57 28 ret = dfu_init_env_entities(interface, devstring);
3402b053 29 if (ret)
90fadb57 30 goto done;
3402b053
ŁM
31
32 int controller_index = simple_strtoul(usb_controller, NULL, 0);
a06955ae 33 ret = usb_gadget_initialize(controller_index);
3402b053 34 if (ret) {
71002b50 35 pr_err("USB init failed: %d\n", ret);
3402b053
ŁM
36 ret = CMD_RET_FAILURE;
37 goto exit;
38 }
39
ed3a37a2
MS
40 ret = g_dnl_register("usb_dnl_thor");
41 if (ret) {
42 pr_err("g_dnl_register failed %d\n", ret);
43 return ret;
44 }
3402b053
ŁM
45
46 ret = thor_init();
47 if (ret) {
71002b50 48 pr_err("THOR DOWNLOAD failed: %d\n", ret);
3402b053
ŁM
49 ret = CMD_RET_FAILURE;
50 goto exit;
51 }
52
53 ret = thor_handle();
54 if (ret) {
71002b50 55 pr_err("THOR failed: %d\n", ret);
3402b053
ŁM
56 ret = CMD_RET_FAILURE;
57 goto exit;
58 }
59
60exit:
61 g_dnl_unregister();
a06955ae 62 usb_gadget_release(controller_index);
90fadb57 63done:
3402b053
ŁM
64 dfu_free_entities();
65
66 return ret;
67}
68
69U_BOOT_CMD(thordown, CONFIG_SYS_MAXARGS, 1, do_thor_down,
70 "TIZEN \"THOR\" downloader",
71 "<USB_controller> <interface> <dev>\n"
c8087f67 72 " - device software upgrade via LTHOR TIZEN download\n"
3402b053
ŁM
73 " program via <USB_controller> on device <dev>,\n"
74 " attached to interface <interface>\n"
75);