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>
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2012-09-18 00:22:50 +00:00
|
|
|
*/
|
|
|
|
#include <common.h>
|
2015-11-08 15:11:49 +00:00
|
|
|
#include <errno.h>
|
2012-09-18 00:22:50 +00:00
|
|
|
#include <spl.h>
|
|
|
|
#include <net.h>
|
|
|
|
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2015-11-08 15:11:49 +00:00
|
|
|
int spl_net_load_image(const char *device)
|
2012-09-18 00:22:50 +00:00
|
|
|
{
|
|
|
|
int rv;
|
|
|
|
|
|
|
|
env_init();
|
|
|
|
env_relocate();
|
|
|
|
setenv("autoload", "yes");
|
|
|
|
load_addr = CONFIG_SYS_TEXT_BASE - sizeof(struct image_header);
|
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
|
|
|
}
|
|
|
|
if (device)
|
|
|
|
setenv("ethact", device);
|
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
|
|
|
}
|
2016-04-28 22:44:54 +00:00
|
|
|
return spl_parse_image_header((struct image_header *)load_addr);
|
2012-09-18 00:22:50 +00:00
|
|
|
}
|