1 // SPDX-License-Identifier: GPL-2.0+
3 * Bootmethod for extlinux boot using PXE (network boot)
5 * Copyright 2021 Google LLC
9 #define LOG_CATEGORY UCLASS_BOOTSTD
24 #include <pxe_utils.h>
26 static int extlinux_pxe_getfile(struct pxe_context *ctx, const char *file_path,
27 char *file_addr, ulong *sizep)
29 struct extlinux_info *info = ctx->userdata;
33 addr = simple_strtoul(file_addr, NULL, 16);
37 ret = bootmeth_read_file(info->dev, info->bflow, file_path, addr,
40 return log_msg_ret("read", ret);
45 static int extlinux_pxe_check(struct udevice *dev, struct bootflow_iter *iter)
49 /* This only works on network devices */
50 ret = bootflow_iter_check_net(iter);
52 return log_msg_ret("net", ret);
54 if (iter->method_flags & BOOTFLOW_METHF_DHCP_ONLY)
55 return log_msg_ret("dhcp", -ENOTSUPP);
60 static int extlinux_pxe_read_bootflow(struct udevice *dev,
61 struct bootflow *bflow)
71 addr_str = env_get("pxefile_addr_r");
73 return log_msg_ret("pxeb", -EPERM);
74 addr = simple_strtoul(addr_str, NULL, 16);
76 log_debug("calling pxe_get()\n");
77 ret = pxe_get(addr, &bootdir, &size, false);
78 log_debug("pxe_get() returned %d\n", ret);
80 return log_msg_ret("pxeb", ret);
83 /* Use the directory of the dhcp bootdir as our subdir, if provided */
85 const char *last_slash;
88 last_slash = strrchr(bootdir, '/');
90 path_len = (last_slash - bootdir) + 1;
91 bflow->subdir = malloc(path_len + 1);
92 memcpy(bflow->subdir, bootdir, path_len);
93 bflow->subdir[path_len] = '\0';
96 snprintf(fname, sizeof(fname), "%s%s",
97 bflow->subdir ? bflow->subdir : "", EXTLINUX_FNAME);
99 bflow->fname = strdup(fname);
101 return log_msg_ret("name", -ENOMEM);
103 bflow->state = BOOTFLOWST_READY;
105 /* Allocate the buffer, including the \0 byte added by get_pxe_file() */
106 buf = malloc(size + 1);
108 return log_msg_ret("buf", -ENOMEM);
109 memcpy(buf, map_sysmem(addr, 0), size + 1);
115 static int extlinux_pxe_read_file(struct udevice *dev, struct bootflow *bflow,
116 const char *file_path, ulong addr,
119 char *tftp_argv[] = {"tftp", NULL, NULL, NULL};
120 struct pxe_context *ctx = dev_get_priv(dev);
125 sprintf(file_addr, "%lx", addr);
126 tftp_argv[1] = file_addr;
127 tftp_argv[2] = (void *)file_path;
129 if (do_tftpb(ctx->cmdtp, 0, 3, tftp_argv))
131 ret = pxe_get_file_size(&size);
133 return log_msg_ret("tftp", ret);
135 return log_msg_ret("spc", -ENOSPC);
141 static int extlinux_pxe_boot(struct udevice *dev, struct bootflow *bflow)
143 struct pxe_context *ctx = dev_get_priv(dev);
144 struct cmd_tbl cmdtp = {}; /* dummy */
145 struct extlinux_info info;
149 addr = map_to_sysmem(bflow->buf);
153 ret = pxe_setup_ctx(ctx, &cmdtp, extlinux_pxe_getfile, &info, false,
154 bflow->subdir, false);
156 return log_msg_ret("ctx", -EINVAL);
158 ret = pxe_process(ctx, addr, false);
160 return log_msg_ret("bread", -EINVAL);
165 static int extlinux_bootmeth_pxe_bind(struct udevice *dev)
167 struct bootmeth_uc_plat *plat = dev_get_uclass_plat(dev);
169 plat->desc = IS_ENABLED(CONFIG_BOOTSTD_FULL) ?
170 "PXE boot from a network device" : "PXE";
175 static struct bootmeth_ops extlinux_bootmeth_pxe_ops = {
176 .check = extlinux_pxe_check,
177 .read_bootflow = extlinux_pxe_read_bootflow,
178 .read_file = extlinux_pxe_read_file,
179 .boot = extlinux_pxe_boot,
182 static const struct udevice_id extlinux_bootmeth_pxe_ids[] = {
183 { .compatible = "u-boot,extlinux-pxe" },
187 U_BOOT_DRIVER(bootmeth_pxe) = {
188 .name = "bootmeth_pxe",
189 .id = UCLASS_BOOTMETH,
190 .of_match = extlinux_bootmeth_pxe_ids,
191 .ops = &extlinux_bootmeth_pxe_ops,
192 .bind = extlinux_bootmeth_pxe_bind,
193 .priv_auto = sizeof(struct pxe_context),