mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 21:24:29 +00:00
0352e878d2
- menlo board - allow SDB on Sabre - HAB for mx6sl - apalis board -----BEGIN PGP SIGNATURE----- iQHDBAABCgAtFiEEiZClFGvhzbUNsmAvKMTY0yrV63cFAl0VwBcPHHNiYWJpY0Bk ZW54LmRlAAoJECjE2NMq1et3k4AL/iaMEhY5e43krMSmlnWDfS2DsTVpyUBX1Q7X JHkuKQ8iH3bBSquwLNFju2hGNK8whCHfsIB5QgSh4uK3JIzWAh+/5TCGXbPDkGMJ PI/hyxKy2EB245SMshcJMHbyLK6PeHi4V/WA4WyY2c91Dz/DNx7UhMZOlFm8wyMl TwDCwtlqHodz0tXKUziCjSqTfxj7WSThwuyQ0SEHAccglM1MzM1JHq1RcdV7Pjdh bDpMC0rjcxYl5MM7gIig5OMtx+26HgP6JM+QfeoEuBm0PbhxV6ZFyHlafb8W/ba0 SjzMWIknZWYA9GTAkdUgN+E0ChZVID0oSVoVh51eKiOG1z+LpkJEKE7xsaCAeBiQ BupLRgd0tBtqVK345EFDCy5UkYrnkLOnI+3JQNZ9bxBoPmKAf6wvhqa9Jf3bc+rP iSYh9Lm3sWVlXKcLR4ltS39D48OT8GZqun8zLpZkwpAWxRMuFvR+R7Q+VMVKmEF2 1dn3EJhMsvbmTj0lYRp+ObEEpJDL9A== =DFoX -----END PGP SIGNATURE----- Merge tag 'u-boot-imx-20190628' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx Fixes for 2019.07 - menlo board - allow SDB on Sabre - HAB for mx6sl - apalis board
42 lines
942 B
C
42 lines
942 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* (C) Copyright 2016 Toradex
|
|
* Author: Stefan Agner <stefan.agner@toradex.com>
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <spl.h>
|
|
#include <usb.h>
|
|
#include <g_dnl.h>
|
|
#include <sdp.h>
|
|
|
|
static int spl_sdp_load_image(struct spl_image_info *spl_image,
|
|
struct spl_boot_device *bootdev)
|
|
{
|
|
int ret;
|
|
const int controller_index = 0;
|
|
|
|
g_dnl_clear_detach();
|
|
ret = g_dnl_register("usb_dnl_sdp");
|
|
if (ret) {
|
|
pr_err("SDP dnl register failed: %d\n", ret);
|
|
return ret;
|
|
}
|
|
|
|
ret = sdp_init(controller_index);
|
|
if (ret) {
|
|
pr_err("SDP init failed: %d\n", ret);
|
|
return -ENODEV;
|
|
}
|
|
|
|
/*
|
|
* 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(controller_index, spl_image);
|
|
debug("SDP ended\n");
|
|
|
|
return ret;
|
|
}
|
|
SPL_LOAD_IMAGE_METHOD("USB SDP", 0, BOOT_DEVICE_BOARD, spl_sdp_load_image);
|