Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Ilya Yanok | f7a2c55 | 2012-09-18 00:22:50 +0000 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2000-2004 |
| 4 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 5 | * |
| 6 | * (C) Copyright 2012 |
| 7 | * Ilya Yanok <ilya.yanok@gmail.com> |
Ilya Yanok | f7a2c55 | 2012-09-18 00:22:50 +0000 | [diff] [blame] | 8 | */ |
| 9 | #include <common.h> |
Simon Glass | 79fd214 | 2019-08-01 09:46:43 -0600 | [diff] [blame] | 10 | #include <env.h> |
Nikita Kiryanov | 33eefe4 | 2015-11-08 17:11:49 +0200 | [diff] [blame] | 11 | #include <errno.h> |
Simon Glass | 2dc9c34 | 2020-05-10 11:40:01 -0600 | [diff] [blame^] | 12 | #include <image.h> |
Ilya Yanok | f7a2c55 | 2012-09-18 00:22:50 +0000 | [diff] [blame] | 13 | #include <spl.h> |
| 14 | #include <net.h> |
Masahiro Yamada | 75f82d0 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 15 | #include <linux/libfdt.h> |
Ilya Yanok | f7a2c55 | 2012-09-18 00:22:50 +0000 | [diff] [blame] | 16 | |
Faiz Abbas | c01553b | 2018-02-16 21:17:44 +0530 | [diff] [blame] | 17 | #if defined(CONFIG_SPL_ETH_SUPPORT) || defined(CONFIG_SPL_USB_ETHER) |
Andrew F. Davis | 0a88c80 | 2017-04-07 14:29:36 -0500 | [diff] [blame] | 18 | static ulong spl_net_load_read(struct spl_load_info *load, ulong sector, |
| 19 | ulong count, void *buf) |
| 20 | { |
| 21 | debug("%s: sector %lx, count %lx, buf %lx\n", |
| 22 | __func__, sector, count, (ulong)buf); |
Simon Glass | 892265d | 2019-12-28 10:45:02 -0700 | [diff] [blame] | 23 | memcpy(buf, (void *)(image_load_addr + sector), count); |
Andrew F. Davis | 0a88c80 | 2017-04-07 14:29:36 -0500 | [diff] [blame] | 24 | return count; |
| 25 | } |
| 26 | |
Simon Glass | ee30679 | 2016-09-24 18:20:13 -0600 | [diff] [blame] | 27 | static int spl_net_load_image(struct spl_image_info *spl_image, |
| 28 | struct spl_boot_device *bootdev) |
Ilya Yanok | f7a2c55 | 2012-09-18 00:22:50 +0000 | [diff] [blame] | 29 | { |
Simon Glass | 892265d | 2019-12-28 10:45:02 -0700 | [diff] [blame] | 30 | struct image_header *header = (struct image_header *)image_load_addr; |
Ilya Yanok | f7a2c55 | 2012-09-18 00:22:50 +0000 | [diff] [blame] | 31 | int rv; |
| 32 | |
| 33 | env_init(); |
| 34 | env_relocate(); |
Simon Glass | 6a38e41 | 2017-08-03 12:22:09 -0600 | [diff] [blame] | 35 | env_set("autoload", "yes"); |
Joe Hershberger | 3dbe17e | 2015-03-22 17:09:06 -0500 | [diff] [blame] | 36 | rv = eth_initialize(); |
Ilya Yanok | f7a2c55 | 2012-09-18 00:22:50 +0000 | [diff] [blame] | 37 | if (rv == 0) { |
| 38 | printf("No Ethernet devices found\n"); |
Nikita Kiryanov | 33eefe4 | 2015-11-08 17:11:49 +0200 | [diff] [blame] | 39 | return -ENODEV; |
Ilya Yanok | f7a2c55 | 2012-09-18 00:22:50 +0000 | [diff] [blame] | 40 | } |
Simon Glass | c0b6c9b | 2016-09-24 18:19:57 -0600 | [diff] [blame] | 41 | if (bootdev->boot_device_name) |
Simon Glass | 6a38e41 | 2017-08-03 12:22:09 -0600 | [diff] [blame] | 42 | env_set("ethact", bootdev->boot_device_name); |
Joe Hershberger | c80b41b0 | 2015-04-08 01:41:21 -0500 | [diff] [blame] | 43 | rv = net_loop(BOOTP); |
Ilya Yanok | f7a2c55 | 2012-09-18 00:22:50 +0000 | [diff] [blame] | 44 | if (rv < 0) { |
| 45 | printf("Problem booting with BOOTP\n"); |
Nikita Kiryanov | 33eefe4 | 2015-11-08 17:11:49 +0200 | [diff] [blame] | 46 | return rv; |
Ilya Yanok | f7a2c55 | 2012-09-18 00:22:50 +0000 | [diff] [blame] | 47 | } |
Andrew F. Davis | 0a88c80 | 2017-04-07 14:29:36 -0500 | [diff] [blame] | 48 | |
| 49 | if (IS_ENABLED(CONFIG_SPL_LOAD_FIT) && |
| 50 | image_get_magic(header) == FDT_MAGIC) { |
| 51 | struct spl_load_info load; |
| 52 | |
| 53 | debug("Found FIT\n"); |
| 54 | load.bl_len = 1; |
| 55 | load.read = spl_net_load_read; |
| 56 | rv = spl_load_simple_fit(spl_image, &load, 0, header); |
| 57 | } else { |
| 58 | debug("Legacy image\n"); |
| 59 | |
| 60 | rv = spl_parse_image_header(spl_image, header); |
| 61 | if (rv) |
| 62 | return rv; |
| 63 | |
| 64 | memcpy((void *)spl_image->load_addr, header, spl_image->size); |
| 65 | } |
| 66 | |
| 67 | return rv; |
Ilya Yanok | f7a2c55 | 2012-09-18 00:22:50 +0000 | [diff] [blame] | 68 | } |
Simon Glass | d9aefcb | 2016-09-24 18:20:11 -0600 | [diff] [blame] | 69 | #endif |
| 70 | |
| 71 | #ifdef CONFIG_SPL_ETH_SUPPORT |
Simon Glass | ee30679 | 2016-09-24 18:20:13 -0600 | [diff] [blame] | 72 | int spl_net_load_image_cpgmac(struct spl_image_info *spl_image, |
| 73 | struct spl_boot_device *bootdev) |
Simon Glass | d9aefcb | 2016-09-24 18:20:11 -0600 | [diff] [blame] | 74 | { |
| 75 | #ifdef CONFIG_SPL_ETH_DEVICE |
| 76 | bootdev->boot_device_name = CONFIG_SPL_ETH_DEVICE; |
| 77 | #endif |
| 78 | |
Simon Glass | ee30679 | 2016-09-24 18:20:13 -0600 | [diff] [blame] | 79 | return spl_net_load_image(spl_image, bootdev); |
Simon Glass | d9aefcb | 2016-09-24 18:20:11 -0600 | [diff] [blame] | 80 | } |
Simon Glass | 4fc1f25 | 2016-11-30 15:30:50 -0700 | [diff] [blame] | 81 | SPL_LOAD_IMAGE_METHOD("eth device", 0, BOOT_DEVICE_CPGMAC, |
| 82 | spl_net_load_image_cpgmac); |
Simon Glass | d9aefcb | 2016-09-24 18:20:11 -0600 | [diff] [blame] | 83 | #endif |
| 84 | |
Faiz Abbas | c01553b | 2018-02-16 21:17:44 +0530 | [diff] [blame] | 85 | #ifdef CONFIG_SPL_USB_ETHER |
Simon Glass | ee30679 | 2016-09-24 18:20:13 -0600 | [diff] [blame] | 86 | int spl_net_load_image_usb(struct spl_image_info *spl_image, |
| 87 | struct spl_boot_device *bootdev) |
Simon Glass | d9aefcb | 2016-09-24 18:20:11 -0600 | [diff] [blame] | 88 | { |
| 89 | bootdev->boot_device_name = "usb_ether"; |
Jean-Jacques Hiblot | 2c75314 | 2018-12-04 11:30:48 +0100 | [diff] [blame] | 90 | #if CONFIG_IS_ENABLED(DM_USB_GADGET) |
| 91 | usb_ether_init(); |
| 92 | #endif |
Simon Glass | ee30679 | 2016-09-24 18:20:13 -0600 | [diff] [blame] | 93 | return spl_net_load_image(spl_image, bootdev); |
Simon Glass | d9aefcb | 2016-09-24 18:20:11 -0600 | [diff] [blame] | 94 | } |
Simon Glass | 4fc1f25 | 2016-11-30 15:30:50 -0700 | [diff] [blame] | 95 | SPL_LOAD_IMAGE_METHOD("USB eth", 0, BOOT_DEVICE_USBETH, spl_net_load_image_usb); |
Simon Glass | d9aefcb | 2016-09-24 18:20:11 -0600 | [diff] [blame] | 96 | #endif |