mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-17 10:24:49 +00:00

Remove <common.h> from all "commmon/" files and when needed add missing include files directly. Signed-off-by: Tom Rini <trini@konsulko.com>
54 lines
1.2 KiB
C
54 lines
1.2 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* (C) Copyright 2016 Toradex
|
|
* Author: Stefan Agner <stefan.agner@toradex.com>
|
|
*/
|
|
|
|
#include <log.h>
|
|
#include <spl.h>
|
|
#include <usb.h>
|
|
#include <g_dnl.h>
|
|
#include <sdp.h>
|
|
#include <linux/printk.h>
|
|
|
|
static int spl_sdp_load_image(struct spl_image_info *spl_image,
|
|
struct spl_boot_device *bootdev)
|
|
{
|
|
const int controller_index = CONFIG_SPL_SDP_USB_DEV;
|
|
struct udevice *udc;
|
|
int ret;
|
|
|
|
ret = udc_device_get_by_index(controller_index, &udc);
|
|
if (ret)
|
|
return ret;
|
|
|
|
board_usb_init(controller_index, USB_INIT_DEVICE);
|
|
|
|
g_dnl_clear_detach();
|
|
ret = g_dnl_register("usb_dnl_sdp");
|
|
if (ret) {
|
|
pr_err("SDP dnl register failed: %d\n", ret);
|
|
goto err_detach;
|
|
}
|
|
|
|
ret = sdp_init(udc);
|
|
if (ret) {
|
|
pr_err("SDP init failed: %d\n", ret);
|
|
goto err_unregister;
|
|
}
|
|
|
|
/*
|
|
* This command either loads a legacy image, jumps and never returns,
|
|
* or it loads a FIT image and returns it to be handled by the SPL
|
|
* code.
|
|
*/
|
|
ret = spl_sdp_handle(udc, spl_image, bootdev);
|
|
debug("SDP ended\n");
|
|
|
|
err_unregister:
|
|
g_dnl_unregister();
|
|
err_detach:
|
|
udc_device_put(udc);
|
|
return ret;
|
|
}
|
|
SPL_LOAD_IMAGE_METHOD("USB SDP", 0, BOOT_DEVICE_BOARD, spl_sdp_load_image);
|