blob: 872f4a69c827f1e15ad448596bce10ea412ddc04 [file] [log] [blame]
wdenk38635852002-08-27 05:55:31 +00001/*
2 * (C) Copyright 2000
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24/*
25 * Boot support
26 */
27#include <common.h>
28#include <command.h>
wdenk38635852002-08-27 05:55:31 +000029#include <net.h>
30
Wolfgang Denk54841ab2010-06-28 22:00:46 +020031static int netboot_common (proto_t, cmd_tbl_t *, int , char * const []);
wdenk38635852002-08-27 05:55:31 +000032
Wolfgang Denk54841ab2010-06-28 22:00:46 +020033int do_bootp (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +000034{
35 return netboot_common (BOOTP, cmdtp, argc, argv);
36}
37
wdenk0d498392003-07-01 21:06:45 +000038U_BOOT_CMD(
39 bootp, 3, 1, do_bootp,
Peter Tyser2fb26042009-01-27 18:03:12 -060040 "boot image via network using BOOTP/TFTP protocol",
Wolfgang Denka89c33d2009-05-24 17:06:54 +020041 "[loadAddress] [[hostIPaddr:]bootfilename]"
wdenk8bde7f72003-06-27 21:31:46 +000042);
43
Wolfgang Denk54841ab2010-06-28 22:00:46 +020044int do_tftpb (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +000045{
46 return netboot_common (TFTP, cmdtp, argc, argv);
47}
48
wdenk0d498392003-07-01 21:06:45 +000049U_BOOT_CMD(
50 tftpboot, 3, 1, do_tftpb,
Peter Tyser2fb26042009-01-27 18:03:12 -060051 "boot image via network using TFTP protocol",
Wolfgang Denka89c33d2009-05-24 17:06:54 +020052 "[loadAddress] [[hostIPaddr:]bootfilename]"
wdenk8bde7f72003-06-27 21:31:46 +000053);
54
Luca Ceresoli7a83af02011-05-17 00:03:40 +000055#ifdef CONFIG_CMD_TFTPSRV
56static int do_tftpsrv(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
57{
58 return netboot_common(TFTPSRV, cmdtp, argc, argv);
59}
60
61U_BOOT_CMD(
62 tftpsrv, 2, 1, do_tftpsrv,
63 "act as a TFTP server and boot the first received file",
64 "[loadAddress]\n"
65 "Listen for an incoming TFTP transfer, receive a file and boot it.\n"
66 "The transfer is aborted if a transfer has not been started after\n"
67 "about 50 seconds or if Ctrl-C is pressed."
68);
69#endif
70
71
Peter Tyserbf6cb242010-09-30 11:25:48 -050072#ifdef CONFIG_CMD_RARP
Wolfgang Denk54841ab2010-06-28 22:00:46 +020073int do_rarpb (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +000074{
75 return netboot_common (RARP, cmdtp, argc, argv);
76}
77
wdenk0d498392003-07-01 21:06:45 +000078U_BOOT_CMD(
79 rarpboot, 3, 1, do_rarpb,
Peter Tyser2fb26042009-01-27 18:03:12 -060080 "boot image via network using RARP/TFTP protocol",
Wolfgang Denka89c33d2009-05-24 17:06:54 +020081 "[loadAddress] [[hostIPaddr:]bootfilename]"
wdenk8bde7f72003-06-27 21:31:46 +000082);
Peter Tyserbf6cb242010-09-30 11:25:48 -050083#endif
wdenk8bde7f72003-06-27 21:31:46 +000084
Jon Loeligerc76fe472007-07-08 18:02:23 -050085#if defined(CONFIG_CMD_DHCP)
Wolfgang Denk54841ab2010-06-28 22:00:46 +020086int do_dhcp (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +000087{
88 return netboot_common(DHCP, cmdtp, argc, argv);
89}
wdenk8bde7f72003-06-27 21:31:46 +000090
wdenk0d498392003-07-01 21:06:45 +000091U_BOOT_CMD(
92 dhcp, 3, 1, do_dhcp,
Peter Tyser2fb26042009-01-27 18:03:12 -060093 "boot image via network using DHCP/TFTP protocol",
Wolfgang Denka89c33d2009-05-24 17:06:54 +020094 "[loadAddress] [[hostIPaddr:]bootfilename]"
wdenk8bde7f72003-06-27 21:31:46 +000095);
Jon Loeliger90253172007-07-10 11:02:44 -050096#endif
wdenk38635852002-08-27 05:55:31 +000097
Jon Loeligerc76fe472007-07-08 18:02:23 -050098#if defined(CONFIG_CMD_NFS)
Wolfgang Denk54841ab2010-06-28 22:00:46 +020099int do_nfs (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenkcbd8a352004-02-24 02:00:03 +0000100{
101 return netboot_common(NFS, cmdtp, argc, argv);
102}
103
104U_BOOT_CMD(
105 nfs, 3, 1, do_nfs,
Peter Tyser2fb26042009-01-27 18:03:12 -0600106 "boot image via network using NFS protocol",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200107 "[loadAddress] [[hostIPaddr:]bootfilename]"
wdenkcbd8a352004-02-24 02:00:03 +0000108);
Jon Loeliger90253172007-07-10 11:02:44 -0500109#endif
wdenkcbd8a352004-02-24 02:00:03 +0000110
wdenk6e592382004-04-18 17:39:38 +0000111static void netboot_update_env (void)
wdenk38635852002-08-27 05:55:31 +0000112{
wdenk6e592382004-04-18 17:39:38 +0000113 char tmp[22];
wdenk38635852002-08-27 05:55:31 +0000114
wdenk6e592382004-04-18 17:39:38 +0000115 if (NetOurGatewayIP) {
116 ip_to_string (NetOurGatewayIP, tmp);
117 setenv ("gatewayip", tmp);
118 }
wdenk38635852002-08-27 05:55:31 +0000119
wdenk6e592382004-04-18 17:39:38 +0000120 if (NetOurSubnetMask) {
121 ip_to_string (NetOurSubnetMask, tmp);
122 setenv ("netmask", tmp);
123 }
wdenk38635852002-08-27 05:55:31 +0000124
wdenk6e592382004-04-18 17:39:38 +0000125 if (NetOurHostName[0])
126 setenv ("hostname", NetOurHostName);
wdenk38635852002-08-27 05:55:31 +0000127
wdenk6e592382004-04-18 17:39:38 +0000128 if (NetOurRootPath[0])
129 setenv ("rootpath", NetOurRootPath);
wdenk38635852002-08-27 05:55:31 +0000130
wdenk6e592382004-04-18 17:39:38 +0000131 if (NetOurIP) {
132 ip_to_string (NetOurIP, tmp);
133 setenv ("ipaddr", tmp);
134 }
wdenk38635852002-08-27 05:55:31 +0000135
wdenk6e592382004-04-18 17:39:38 +0000136 if (NetServerIP) {
137 ip_to_string (NetServerIP, tmp);
138 setenv ("serverip", tmp);
139 }
wdenk38635852002-08-27 05:55:31 +0000140
wdenk6e592382004-04-18 17:39:38 +0000141 if (NetOurDNSIP) {
142 ip_to_string (NetOurDNSIP, tmp);
143 setenv ("dnsip", tmp);
144 }
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500145#if defined(CONFIG_BOOTP_DNS2)
wdenk6e592382004-04-18 17:39:38 +0000146 if (NetOurDNS2IP) {
147 ip_to_string (NetOurDNS2IP, tmp);
148 setenv ("dnsip2", tmp);
149 }
stroesefe389a82003-08-28 14:17:32 +0000150#endif
wdenk6e592382004-04-18 17:39:38 +0000151 if (NetOurNISDomain[0])
152 setenv ("domain", NetOurNISDomain);
wdenkea287de2005-04-01 00:25:43 +0000153
Jon Loeligerc76fe472007-07-08 18:02:23 -0500154#if defined(CONFIG_CMD_SNTP) \
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500155 && defined(CONFIG_BOOTP_TIMEOFFSET)
wdenkea287de2005-04-01 00:25:43 +0000156 if (NetTimeOffset) {
157 sprintf (tmp, "%d", NetTimeOffset);
158 setenv ("timeoffset", tmp);
159 }
160#endif
Jon Loeligerc76fe472007-07-08 18:02:23 -0500161#if defined(CONFIG_CMD_SNTP) \
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500162 && defined(CONFIG_BOOTP_NTPSERVER)
wdenkea287de2005-04-01 00:25:43 +0000163 if (NetNtpServerIP) {
164 ip_to_string (NetNtpServerIP, tmp);
165 setenv ("ntpserverip", tmp);
166 }
167#endif
wdenk38635852002-08-27 05:55:31 +0000168}
wdenk6e592382004-04-18 17:39:38 +0000169
wdenk38635852002-08-27 05:55:31 +0000170static int
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200171netboot_common (proto_t proto, cmd_tbl_t *cmdtp, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000172{
173 char *s;
Peter Tyser2e4970d2008-12-02 12:59:51 -0600174 char *end;
wdenk38635852002-08-27 05:55:31 +0000175 int rcode = 0;
176 int size;
Peter Tyser2e4970d2008-12-02 12:59:51 -0600177 ulong addr;
wdenk38635852002-08-27 05:55:31 +0000178
179 /* pre-set load_addr */
180 if ((s = getenv("loadaddr")) != NULL) {
181 load_addr = simple_strtoul(s, NULL, 16);
182 }
183
184 switch (argc) {
185 case 1:
186 break;
187
Peter Tyser2e4970d2008-12-02 12:59:51 -0600188 case 2: /*
189 * Only one arg - accept two forms:
190 * Just load address, or just boot file name. The latter
191 * form must be written in a format which can not be
192 * mis-interpreted as a valid number.
wdenk38635852002-08-27 05:55:31 +0000193 */
Peter Tyser2e4970d2008-12-02 12:59:51 -0600194 addr = simple_strtoul(argv[1], &end, 16);
195 if (end == (argv[1] + strlen(argv[1])))
196 load_addr = addr;
197 else
198 copy_filename(BootFile, argv[1], sizeof(BootFile));
wdenk38635852002-08-27 05:55:31 +0000199 break;
200
201 case 3: load_addr = simple_strtoul(argv[1], NULL, 16);
202 copy_filename (BootFile, argv[2], sizeof(BootFile));
203
204 break;
205
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200206 default:
Heiko Schocherfad63402007-07-13 09:54:17 +0200207 show_boot_progress (-80);
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200208 return cmd_usage(cmdtp);
wdenk38635852002-08-27 05:55:31 +0000209 }
210
Heiko Schocherfad63402007-07-13 09:54:17 +0200211 show_boot_progress (80);
Heiko Schocher566a4942007-06-22 19:11:54 +0200212 if ((size = NetLoop(proto)) < 0) {
Heiko Schocherfad63402007-07-13 09:54:17 +0200213 show_boot_progress (-81);
wdenk38635852002-08-27 05:55:31 +0000214 return 1;
Heiko Schocher566a4942007-06-22 19:11:54 +0200215 }
wdenk38635852002-08-27 05:55:31 +0000216
Heiko Schocherfad63402007-07-13 09:54:17 +0200217 show_boot_progress (81);
wdenk38635852002-08-27 05:55:31 +0000218 /* NetLoop ok, update environment */
219 netboot_update_env();
220
wdenkeb9401e2002-11-11 02:11:37 +0000221 /* done if no file was loaded (no errors though) */
Heiko Schocher566a4942007-06-22 19:11:54 +0200222 if (size == 0) {
Heiko Schocherfad63402007-07-13 09:54:17 +0200223 show_boot_progress (-82);
wdenkeb9401e2002-11-11 02:11:37 +0000224 return 0;
Heiko Schocher566a4942007-06-22 19:11:54 +0200225 }
wdenkeb9401e2002-11-11 02:11:37 +0000226
wdenk38635852002-08-27 05:55:31 +0000227 /* flush cache */
228 flush_cache(load_addr, size);
229
Mike Frysinger67d668b2011-06-05 13:43:02 +0000230 show_boot_progress(82);
231 rcode = bootm_maybe_autostart(cmdtp, argv[0]);
wdenk38635852002-08-27 05:55:31 +0000232
Heiko Schocher566a4942007-06-22 19:11:54 +0200233 if (rcode < 0)
Heiko Schocherfad63402007-07-13 09:54:17 +0200234 show_boot_progress (-83);
Heiko Schocher566a4942007-06-22 19:11:54 +0200235 else
Heiko Schocherfad63402007-07-13 09:54:17 +0200236 show_boot_progress (84);
wdenk38635852002-08-27 05:55:31 +0000237 return rcode;
238}
239
Jon Loeligerc76fe472007-07-08 18:02:23 -0500240#if defined(CONFIG_CMD_PING)
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200241int do_ping (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk73a8b272003-06-05 19:27:42 +0000242{
243 if (argc < 2)
244 return -1;
245
246 NetPingIP = string_to_ip(argv[1]);
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200247 if (NetPingIP == 0)
248 return cmd_usage(cmdtp);
wdenk73a8b272003-06-05 19:27:42 +0000249
250 if (NetLoop(PING) < 0) {
251 printf("ping failed; host %s is not alive\n", argv[1]);
252 return 1;
253 }
254
255 printf("host %s is alive\n", argv[1]);
256
257 return 0;
258}
wdenk6dff5522003-07-15 07:45:49 +0000259
260U_BOOT_CMD(
261 ping, 2, 1, do_ping,
Peter Tyser2fb26042009-01-27 18:03:12 -0600262 "send ICMP ECHO_REQUEST to network host",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200263 "pingAddress"
wdenk6dff5522003-07-15 07:45:49 +0000264);
Jon Loeliger90253172007-07-10 11:02:44 -0500265#endif
wdenk73a8b272003-06-05 19:27:42 +0000266
Jon Loeligerc76fe472007-07-08 18:02:23 -0500267#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000268
269static void cdp_update_env(void)
270{
271 char tmp[16];
272
273 if (CDPApplianceVLAN != htons(-1)) {
274 printf("CDP offered appliance VLAN %d\n", ntohs(CDPApplianceVLAN));
275 VLAN_to_string(CDPApplianceVLAN, tmp);
276 setenv("vlan", tmp);
277 NetOurVLAN = CDPApplianceVLAN;
278 }
279
280 if (CDPNativeVLAN != htons(-1)) {
281 printf("CDP offered native VLAN %d\n", ntohs(CDPNativeVLAN));
282 VLAN_to_string(CDPNativeVLAN, tmp);
283 setenv("nvlan", tmp);
284 NetOurNativeVLAN = CDPNativeVLAN;
285 }
286
287}
288
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200289int do_cdp (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka3d991b2004-04-15 21:48:45 +0000290{
291 int r;
292
293 r = NetLoop(CDP);
294 if (r < 0) {
295 printf("cdp failed; perhaps not a CISCO switch?\n");
296 return 1;
297 }
298
299 cdp_update_env();
300
301 return 0;
302}
303
304U_BOOT_CMD(
305 cdp, 1, 1, do_cdp,
Wolfgang Denkec5c04c2010-10-26 23:42:23 +0200306 "Perform CDP network configuration",
Wolfgang Denk4b582662010-12-23 17:02:18 +0100307 "\n"
wdenka3d991b2004-04-15 21:48:45 +0000308);
Jon Loeliger90253172007-07-10 11:02:44 -0500309#endif
wdenka3d991b2004-04-15 21:48:45 +0000310
Jon Loeligerc76fe472007-07-08 18:02:23 -0500311#if defined(CONFIG_CMD_SNTP)
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200312int do_sntp (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenkea287de2005-04-01 00:25:43 +0000313{
314 char *toff;
315
316 if (argc < 2) {
317 NetNtpServerIP = getenv_IPaddr ("ntpserverip");
318 if (NetNtpServerIP == 0) {
319 printf ("ntpserverip not set\n");
320 return (1);
321 }
322 } else {
323 NetNtpServerIP = string_to_ip(argv[1]);
324 if (NetNtpServerIP == 0) {
325 printf ("Bad NTP server IP address\n");
326 return (1);
327 }
328 }
329
330 toff = getenv ("timeoffset");
331 if (toff == NULL) NetTimeOffset = 0;
332 else NetTimeOffset = simple_strtol (toff, NULL, 10);
333
334 if (NetLoop(SNTP) < 0) {
Luuk Paulussend6840e32011-05-16 18:27:11 +0000335 printf("SNTP failed: host %pI4 not responding\n",
336 &NetNtpServerIP);
wdenkea287de2005-04-01 00:25:43 +0000337 return 1;
338 }
339
340 return 0;
341}
342
343U_BOOT_CMD(
344 sntp, 2, 1, do_sntp,
Peter Tyser2fb26042009-01-27 18:03:12 -0600345 "synchronize RTC via network",
wdenkea287de2005-04-01 00:25:43 +0000346 "[NTP server IP]\n"
347);
Jon Loeliger90253172007-07-10 11:02:44 -0500348#endif
Robin Getz1a32bf42009-07-20 14:53:54 -0400349
350#if defined(CONFIG_CMD_DNS)
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200351int do_dns(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Robin Getz1a32bf42009-07-20 14:53:54 -0400352{
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200353 if (argc == 1)
354 return cmd_usage(cmdtp);
Robin Getz1a32bf42009-07-20 14:53:54 -0400355
356 /*
357 * We should check for a valid hostname:
358 * - Each label must be between 1 and 63 characters long
359 * - the entire hostname has a maximum of 255 characters
360 * - only the ASCII letters 'a' through 'z' (case-insensitive),
361 * the digits '0' through '9', and the hyphen
362 * - cannot begin or end with a hyphen
363 * - no other symbols, punctuation characters, or blank spaces are
364 * permitted
365 * but hey - this is a minimalist implmentation, so only check length
366 * and let the name server deal with things.
367 */
368 if (strlen(argv[1]) >= 255) {
369 printf("dns error: hostname too long\n");
370 return 1;
371 }
372
373 NetDNSResolve = argv[1];
374
375 if (argc == 3)
376 NetDNSenvvar = argv[2];
377 else
378 NetDNSenvvar = NULL;
379
380 if (NetLoop(DNS) < 0) {
381 printf("dns lookup of %s failed, check setup\n", argv[1]);
382 return 1;
383 }
384
385 return 0;
386}
387
388U_BOOT_CMD(
389 dns, 3, 1, do_dns,
390 "lookup the IP of a hostname",
391 "hostname [envvar]"
392);
393
394#endif /* CONFIG_CMD_DNS */