1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2016 Toradex
4 * Author: Stefan Agner <stefan.agner@toradex.com>
14 static int spl_sdp_load_image(struct spl_image_info *spl_image,
15 struct spl_boot_device *bootdev)
18 const int controller_index = CONFIG_SPL_SDP_USB_DEV;
20 usb_gadget_initialize(controller_index);
22 board_usb_init(controller_index, USB_INIT_DEVICE);
25 ret = g_dnl_register("usb_dnl_sdp");
27 pr_err("SDP dnl register failed: %d\n", ret);
31 ret = sdp_init(controller_index);
33 pr_err("SDP init failed: %d\n", ret);
38 * This command either loads a legacy image, jumps and never returns,
39 * or it loads a FIT image and returns it to be handled by the SPL
42 ret = spl_sdp_handle(controller_index, spl_image, bootdev);
45 usb_gadget_release(controller_index);
48 SPL_LOAD_IMAGE_METHOD("USB SDP", 0, BOOT_DEVICE_BOARD, spl_sdp_load_image);