2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2012-09-18 00:22:50 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2000-2004
|
|
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
*
|
|
|
|
* (C) Copyright 2012
|
|
|
|
* Ilya Yanok <ilya.yanok@gmail.com>
|
|
|
|
*/
|
|
|
|
#include <common.h>
|
2019-08-01 15:46:43 +00:00
|
|
|
#include <env.h>
|
2015-11-08 15:11:49 +00:00
|
|
|
#include <errno.h>
|
2020-05-10 17:40:01 +00:00
|
|
|
#include <image.h>
|
2020-05-10 17:40:05 +00:00
|
|
|
#include <log.h>
|
2012-09-18 00:22:50 +00:00
|
|
|
#include <spl.h>
|
|
|
|
#include <net.h>
|
2018-03-04 16:20:11 +00:00
|
|
|
#include <linux/libfdt.h>
|
2012-09-18 00:22:50 +00:00
|
|
|
|
2018-02-16 15:47:44 +00:00
|
|
|
#if defined(CONFIG_SPL_ETH_SUPPORT) || defined(CONFIG_SPL_USB_ETHER)
|
2017-04-07 19:29:36 +00:00
|
|
|
static ulong spl_net_load_read(struct spl_load_info *load, ulong sector,
|
|
|
|
ulong count, void *buf)
|
|
|
|
{
|
|
|
|
debug("%s: sector %lx, count %lx, buf %lx\n",
|
|
|
|
__func__, sector, count, (ulong)buf);
|
2019-12-28 17:45:02 +00:00
|
|
|
memcpy(buf, (void *)(image_load_addr + sector), count);
|
2017-04-07 19:29:36 +00:00
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2016-09-25 00:20:13 +00:00
|
|
|
static int spl_net_load_image(struct spl_image_info *spl_image,
|
|
|
|
struct spl_boot_device *bootdev)
|
2012-09-18 00:22:50 +00:00
|
|
|
{
|
2019-12-28 17:45:02 +00:00
|
|
|
struct image_header *header = (struct image_header *)image_load_addr;
|
2012-09-18 00:22:50 +00:00
|
|
|
int rv;
|
|
|
|
|
|
|
|
env_init();
|
|
|
|
env_relocate();
|
2017-08-03 18:22:09 +00:00
|
|
|
env_set("autoload", "yes");
|
2015-03-22 22:09:06 +00:00
|
|
|
rv = eth_initialize();
|
2012-09-18 00:22:50 +00:00
|
|
|
if (rv == 0) {
|
|
|
|
printf("No Ethernet devices found\n");
|
2015-11-08 15:11:49 +00:00
|
|
|
return -ENODEV;
|
2012-09-18 00:22:50 +00:00
|
|
|
}
|
2016-09-25 00:19:57 +00:00
|
|
|
if (bootdev->boot_device_name)
|
2017-08-03 18:22:09 +00:00
|
|
|
env_set("ethact", bootdev->boot_device_name);
|
2015-04-08 06:41:21 +00:00
|
|
|
rv = net_loop(BOOTP);
|
2012-09-18 00:22:50 +00:00
|
|
|
if (rv < 0) {
|
|
|
|
printf("Problem booting with BOOTP\n");
|
2015-11-08 15:11:49 +00:00
|
|
|
return rv;
|
2012-09-18 00:22:50 +00:00
|
|
|
}
|
2017-04-07 19:29:36 +00:00
|
|
|
|
|
|
|
if (IS_ENABLED(CONFIG_SPL_LOAD_FIT) &&
|
|
|
|
image_get_magic(header) == FDT_MAGIC) {
|
|
|
|
struct spl_load_info load;
|
|
|
|
|
|
|
|
debug("Found FIT\n");
|
|
|
|
load.bl_len = 1;
|
|
|
|
load.read = spl_net_load_read;
|
|
|
|
rv = spl_load_simple_fit(spl_image, &load, 0, header);
|
|
|
|
} else {
|
|
|
|
debug("Legacy image\n");
|
|
|
|
|
|
|
|
rv = spl_parse_image_header(spl_image, header);
|
|
|
|
if (rv)
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
memcpy((void *)spl_image->load_addr, header, spl_image->size);
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
2012-09-18 00:22:50 +00:00
|
|
|
}
|
2016-09-25 00:20:11 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_SPL_ETH_SUPPORT
|
2016-09-25 00:20:13 +00:00
|
|
|
int spl_net_load_image_cpgmac(struct spl_image_info *spl_image,
|
|
|
|
struct spl_boot_device *bootdev)
|
2016-09-25 00:20:11 +00:00
|
|
|
{
|
|
|
|
#ifdef CONFIG_SPL_ETH_DEVICE
|
|
|
|
bootdev->boot_device_name = CONFIG_SPL_ETH_DEVICE;
|
|
|
|
#endif
|
|
|
|
|
2016-09-25 00:20:13 +00:00
|
|
|
return spl_net_load_image(spl_image, bootdev);
|
2016-09-25 00:20:11 +00:00
|
|
|
}
|
2016-11-30 22:30:50 +00:00
|
|
|
SPL_LOAD_IMAGE_METHOD("eth device", 0, BOOT_DEVICE_CPGMAC,
|
|
|
|
spl_net_load_image_cpgmac);
|
2016-09-25 00:20:11 +00:00
|
|
|
#endif
|
|
|
|
|
2018-02-16 15:47:44 +00:00
|
|
|
#ifdef CONFIG_SPL_USB_ETHER
|
2016-09-25 00:20:13 +00:00
|
|
|
int spl_net_load_image_usb(struct spl_image_info *spl_image,
|
|
|
|
struct spl_boot_device *bootdev)
|
2016-09-25 00:20:11 +00:00
|
|
|
{
|
|
|
|
bootdev->boot_device_name = "usb_ether";
|
2018-12-04 10:30:48 +00:00
|
|
|
#if CONFIG_IS_ENABLED(DM_USB_GADGET)
|
|
|
|
usb_ether_init();
|
|
|
|
#endif
|
2016-09-25 00:20:13 +00:00
|
|
|
return spl_net_load_image(spl_image, bootdev);
|
2016-09-25 00:20:11 +00:00
|
|
|
}
|
2016-11-30 22:30:50 +00:00
|
|
|
SPL_LOAD_IMAGE_METHOD("USB eth", 0, BOOT_DEVICE_USBETH, spl_net_load_image_usb);
|
2016-09-25 00:20:11 +00:00
|
|
|
#endif
|