1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2016 Toradex
13 static int spl_sdp_load_image(struct spl_image_info *spl_image,
14 struct spl_boot_device *bootdev)
17 const int controller_index = CONFIG_SPL_SDP_USB_DEV;
19 board_usb_init(controller_index, USB_INIT_DEVICE);
22 ret = g_dnl_register("usb_dnl_sdp");
24 pr_err("SDP dnl register failed: %d\n", ret);
28 ret = sdp_init(controller_index);
30 pr_err("SDP init failed: %d\n", ret);
35 * This command either loads a legacy image, jumps and never returns,
36 * or it loads a FIT image and returns it to be handled by the SPL
39 ret = spl_sdp_handle(controller_index, spl_image);
42 board_usb_cleanup(controller_index, USB_INIT_DEVICE);
45 SPL_LOAD_IMAGE_METHOD("USB SDP", 0, BOOT_DEVICE_BOARD, spl_sdp_load_image);