blob: 808ed974fa7537a367f3b8d5567fe1d0988f6224 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stefan Agner2f005692017-08-16 11:00:53 -07002/*
3 * cmd_sdp.c -- sdp command
4 *
5 * Copyright (C) 2016 Toradex
6 * Author: Stefan Agner <stefan.agner@toradex.com>
Stefan Agner2f005692017-08-16 11:00:53 -07007 */
8
9#include <common.h>
10#include <g_dnl.h>
11#include <sdp.h>
12#include <usb.h>
13
14static int do_sdp(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
15{
16 int ret = CMD_RET_FAILURE;
17
18 if (argc < 2)
19 return CMD_RET_USAGE;
20
21 char *usb_controller = argv[1];
22 int controller_index = simple_strtoul(usb_controller, NULL, 0);
Jean-Jacques Hiblota06955a2018-11-29 10:52:41 +010023 usb_gadget_initialize(controller_index);
Stefan Agner2f005692017-08-16 11:00:53 -070024
25 g_dnl_clear_detach();
26 g_dnl_register("usb_dnl_sdp");
27
28 ret = sdp_init(controller_index);
29 if (ret) {
Andre Heider24ccd0c2018-02-15 07:08:55 +010030 pr_err("SDP init failed: %d\n", ret);
Stefan Agner2f005692017-08-16 11:00:53 -070031 goto exit;
32 }
33
34 /* This command typically does not return but jumps to an image */
35 sdp_handle(controller_index);
Andre Heider24ccd0c2018-02-15 07:08:55 +010036 pr_err("SDP ended\n");
Stefan Agner2f005692017-08-16 11:00:53 -070037
38exit:
39 g_dnl_unregister();
Jean-Jacques Hiblota06955a2018-11-29 10:52:41 +010040 usb_gadget_release(controller_index);
Stefan Agner2f005692017-08-16 11:00:53 -070041
42 return ret;
43}
44
45U_BOOT_CMD(sdp, 2, 1, do_sdp,
46 "Serial Downloader Protocol",
47 "<USB_controller>\n"
48 " - serial downloader protocol via <USB_controller>\n"
49);