Merge tag 'efi-2020-07-rc6' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi
[oweals/u-boot.git] / common / spl / spl_sdp.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2016 Toradex
4  * Author: Stefan Agner <stefan.agner@toradex.com>
5  */
6
7 #include <common.h>
8 #include <log.h>
9 #include <spl.h>
10 #include <usb.h>
11 #include <g_dnl.h>
12 #include <sdp.h>
13
14 static int spl_sdp_load_image(struct spl_image_info *spl_image,
15                               struct spl_boot_device *bootdev)
16 {
17         int ret;
18         const int controller_index = CONFIG_SPL_SDP_USB_DEV;
19
20         usb_gadget_initialize(controller_index);
21
22         g_dnl_clear_detach();
23         ret = g_dnl_register("usb_dnl_sdp");
24         if (ret) {
25                 pr_err("SDP dnl register failed: %d\n", ret);
26                 return ret;
27         }
28
29         ret = sdp_init(controller_index);
30         if (ret) {
31                 pr_err("SDP init failed: %d\n", ret);
32                 return -ENODEV;
33         }
34
35         /*
36          * This command either loads a legacy image, jumps and never returns,
37          * or it loads a FIT image and returns it to be handled by the SPL
38          * code.
39          */
40         ret = spl_sdp_handle(controller_index, spl_image);
41         debug("SDP ended\n");
42
43         usb_gadget_release(controller_index);
44         return ret;
45 }
46 SPL_LOAD_IMAGE_METHOD("USB SDP", 0, BOOT_DEVICE_BOARD, spl_sdp_load_image);