1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright 2010-2011 Calxeda, Inc.
4 * Copyright (c) 2014, NVIDIA CORPORATION. All rights reserved.
12 #include "pxe_utils.h"
15 const char *pxe_default_paths[] = {
17 #ifdef CONFIG_SYS_BOARD
18 "default-" CONFIG_SYS_ARCH "-" CONFIG_SYS_SOC "-" CONFIG_SYS_BOARD,
20 "default-" CONFIG_SYS_ARCH "-" CONFIG_SYS_SOC,
22 "default-" CONFIG_SYS_ARCH,
27 static int do_get_tftp(struct cmd_tbl *cmdtp, const char *file_path,
30 char *tftp_argv[] = {"tftp", NULL, NULL, NULL};
32 tftp_argv[1] = file_addr;
33 tftp_argv[2] = (void *)file_path;
35 if (do_tftpb(cmdtp, 0, 3, tftp_argv))
42 * Looks for a pxe file with a name based on the pxeuuid environment variable.
44 * Returns 1 on success or < 0 on error.
46 static int pxe_uuid_path(struct cmd_tbl *cmdtp, unsigned long pxefile_addr_r)
50 uuid_str = from_env("pxeuuid");
55 return get_pxelinux_path(cmdtp, uuid_str, pxefile_addr_r);
59 * Looks for a pxe file with a name based on the 'ethaddr' environment
62 * Returns 1 on success or < 0 on error.
64 static int pxe_mac_path(struct cmd_tbl *cmdtp, unsigned long pxefile_addr_r)
69 err = format_mac_pxe(mac_str, sizeof(mac_str));
74 return get_pxelinux_path(cmdtp, mac_str, pxefile_addr_r);
78 * Looks for pxe files with names based on our IP address. See pxelinux
79 * documentation for details on what these file names look like. We match
82 * Returns 1 on success or < 0 on error.
84 static int pxe_ipaddr_paths(struct cmd_tbl *cmdtp, unsigned long pxefile_addr_r)
89 sprintf(ip_addr, "%08X", ntohl(net_ip.s_addr));
91 for (mask_pos = 7; mask_pos >= 0; mask_pos--) {
92 err = get_pxelinux_path(cmdtp, ip_addr, pxefile_addr_r);
97 ip_addr[mask_pos] = '\0';
103 * Entry point for the 'pxe get' command.
104 * This Follows pxelinux's rules to download a config file from a tftp server.
105 * The file is stored at the location given by the pxefile_addr_r environment
106 * variable, which must be set.
108 * UUID comes from pxeuuid env variable, if defined
109 * MAC addr comes from ethaddr env variable, if defined
112 * see http://syslinux.zytor.com/wiki/index.php/PXELINUX
114 * Returns 0 on success or 1 on error.
117 do_pxe_get(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
119 char *pxefile_addr_str;
120 unsigned long pxefile_addr_r;
123 do_getfile = do_get_tftp;
126 return CMD_RET_USAGE;
128 pxefile_addr_str = from_env("pxefile_addr_r");
130 if (!pxefile_addr_str)
133 err = strict_strtoul(pxefile_addr_str, 16,
134 (unsigned long *)&pxefile_addr_r);
139 * Keep trying paths until we successfully get a file we're looking
142 if (pxe_uuid_path(cmdtp, pxefile_addr_r) > 0 ||
143 pxe_mac_path(cmdtp, pxefile_addr_r) > 0 ||
144 pxe_ipaddr_paths(cmdtp, pxefile_addr_r) > 0) {
145 printf("Config file found\n");
150 while (pxe_default_paths[i]) {
151 if (get_pxelinux_path(cmdtp, pxe_default_paths[i],
152 pxefile_addr_r) > 0) {
153 printf("Config file found\n");
159 printf("Config file not found\n");
165 * Boots a system using a pxe file
167 * Returns 0 on success, 1 on error.
170 do_pxe_boot(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
172 unsigned long pxefile_addr_r;
173 struct pxe_menu *cfg;
174 char *pxefile_addr_str;
176 do_getfile = do_get_tftp;
179 pxefile_addr_str = from_env("pxefile_addr_r");
180 if (!pxefile_addr_str)
183 } else if (argc == 2) {
184 pxefile_addr_str = argv[1];
186 return CMD_RET_USAGE;
189 if (strict_strtoul(pxefile_addr_str, 16, &pxefile_addr_r) < 0) {
190 printf("Invalid pxefile address: %s\n", pxefile_addr_str);
194 cfg = parse_pxefile(cmdtp, pxefile_addr_r);
197 printf("Error parsing config file\n");
201 handle_pxe_menu(cmdtp, cfg);
203 destroy_pxe_menu(cfg);
205 copy_filename(net_boot_file_name, "", sizeof(net_boot_file_name));
210 static struct cmd_tbl cmd_pxe_sub[] = {
211 U_BOOT_CMD_MKENT(get, 1, 1, do_pxe_get, "", ""),
212 U_BOOT_CMD_MKENT(boot, 2, 1, do_pxe_boot, "", "")
215 static int do_pxe(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
220 return CMD_RET_USAGE;
224 /* drop initial "pxe" arg */
228 cp = find_cmd_tbl(argv[0], cmd_pxe_sub, ARRAY_SIZE(cmd_pxe_sub));
231 return cp->cmd(cmdtp, flag, argc, argv);
233 return CMD_RET_USAGE;
236 U_BOOT_CMD(pxe, 3, 1, do_pxe,
237 "commands to get and boot from pxe files",
238 "get - try to retrieve a pxe file using tftp\n"
239 "pxe boot [pxefile_addr_r] - boot from the pxe file at pxefile_addr_r\n"