blob: 869adf8cbbd31900339e432347417087937f949f [file] [log] [blame]
Simon Glass4fd8d072022-04-24 23:31:15 -06001// SPDX-License-Identifier: GPL-2.0+
2/*
Simon Glass4de979f2023-07-12 09:04:32 -06003 * Bootdev for ethernet (uses PXE)
Simon Glass4fd8d072022-04-24 23:31:15 -06004 *
5 * Copyright 2021 Google LLC
6 * Written by Simon Glass <sjg@chromium.org>
7 */
8
Simon Glass4146c822023-01-17 10:47:40 -07009#define LOG_CATEGORY UCLASS_BOOTSTD
10
Simon Glass4fd8d072022-04-24 23:31:15 -060011#include <common.h>
12#include <bootdev.h>
13#include <bootflow.h>
14#include <command.h>
15#include <bootmeth.h>
Simon Glass4fd8d072022-04-24 23:31:15 -060016#include <dm.h>
Simon Glass79f66352023-05-10 16:34:46 -060017#include <extlinux.h>
Simon Glass4146c822023-01-17 10:47:40 -070018#include <init.h>
Simon Glass4fd8d072022-04-24 23:31:15 -060019#include <log.h>
20#include <net.h>
Simon Glass4146c822023-01-17 10:47:40 -070021#include <test/test.h>
Simon Glass4fd8d072022-04-24 23:31:15 -060022
23static int eth_get_bootflow(struct udevice *dev, struct bootflow_iter *iter,
24 struct bootflow *bflow)
25{
26 char name[60];
27 int ret;
28
29 /* Must be an Ethernet device */
Simon Glass865328c2023-01-17 10:47:54 -070030 ret = bootflow_iter_check_net(iter);
Simon Glass4fd8d072022-04-24 23:31:15 -060031 if (ret)
32 return log_msg_ret("net", ret);
33
34 ret = bootmeth_check(bflow->method, iter);
35 if (ret)
36 return log_msg_ret("check", ret);
37
38 /*
Simon Glass79f66352023-05-10 16:34:46 -060039 * Like extlinux boot, this assumes there is only one Ethernet device.
Simon Glass4fd8d072022-04-24 23:31:15 -060040 * In this case, that means that @eth is ignored
41 */
42
43 snprintf(name, sizeof(name), "%s.%d", dev->name, iter->part);
44 bflow->name = strdup(name);
45 if (!bflow->name)
46 return log_msg_ret("name", -ENOMEM);
47
Simon Glass4fd8d072022-04-24 23:31:15 -060048 /* See distro_pxe_read_bootflow() for the standard impl of this */
Simon Glass4146c822023-01-17 10:47:40 -070049 log_debug("dhcp complete - reading bootflow with method '%s'\n",
Simon Glass4fd8d072022-04-24 23:31:15 -060050 bflow->method->name);
51 ret = bootmeth_read_bootflow(bflow->method, bflow);
52 log_debug("reading bootflow returned %d\n", ret);
53 if (ret)
54 return log_msg_ret("method", ret);
55
56 return 0;
57}
58
59static int eth_bootdev_bind(struct udevice *dev)
60{
61 struct bootdev_uc_plat *ucp = dev_get_uclass_plat(dev);
62
Simon Glasseacc2612023-01-17 10:48:08 -070063 ucp->prio = BOOTDEVP_6_NET_BASE;
Simon Glass4fd8d072022-04-24 23:31:15 -060064
65 return 0;
66}
67
Simon Glass4146c822023-01-17 10:47:40 -070068static int eth_bootdev_hunt(struct bootdev_hunter *info, bool show)
69{
70 int ret;
71
72 if (!test_eth_enabled())
73 return 0;
74
75 /* init PCI first since this is often used to provide Ehternet */
76 if (IS_ENABLED(CONFIG_PCI)) {
77 ret = pci_init();
78 if (ret)
79 log_warning("Failed to init PCI (%dE)\n", ret);
80 }
81
82 /*
83 * Ethernet devices can also come from USB, but that is a higher
84 * priority (BOOTDEVP_5_SCAN_SLOW) than ethernet, so it should have been
85 * enumerated already. If something like 'bootflow scan dhcp' is used
86 * then the user will need to run 'usb start' first.
87 */
88 if (IS_ENABLED(CONFIG_CMD_DHCP)) {
89 ret = dhcp_run(0, NULL, false);
90 if (ret)
91 return -EINVAL;
92 }
93
94 return 0;
95}
96
Simon Glass4fd8d072022-04-24 23:31:15 -060097struct bootdev_ops eth_bootdev_ops = {
98 .get_bootflow = eth_get_bootflow,
99};
100
101static const struct udevice_id eth_bootdev_ids[] = {
102 { .compatible = "u-boot,bootdev-eth" },
103 { }
104};
105
106U_BOOT_DRIVER(eth_bootdev) = {
107 .name = "eth_bootdev",
108 .id = UCLASS_BOOTDEV,
109 .ops = &eth_bootdev_ops,
110 .bind = eth_bootdev_bind,
111 .of_match = eth_bootdev_ids,
112};
Simon Glass4146c822023-01-17 10:47:40 -0700113
114BOOTDEV_HUNTER(eth_bootdev_hunt) = {
Simon Glasseacc2612023-01-17 10:48:08 -0700115 .prio = BOOTDEVP_6_NET_BASE,
Simon Glass4146c822023-01-17 10:47:40 -0700116 .uclass = UCLASS_ETH,
117 .hunt = eth_bootdev_hunt,
118 .drv = DM_DRIVER_REF(eth_bootdev),
119};