blob: 8a55f43b321d8d648124bf1c17f6d13f56389b4b [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>
wdenk57b2d802003-06-27 21:31:46 +000029#include <cmd_autoscript.h>
wdenk38635852002-08-27 05:55:31 +000030#include <net.h>
31
32#if (CONFIG_COMMANDS & CFG_CMD_NET)
33
wdenk38635852002-08-27 05:55:31 +000034
35extern int do_bootm (cmd_tbl_t *, int, int, char *[]);
36
37static int netboot_common (int, cmd_tbl_t *, int , char *[]);
38
39int do_bootp (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
40{
41 return netboot_common (BOOTP, cmdtp, argc, argv);
42}
43
wdenk57b2d802003-06-27 21:31:46 +000044cmd_tbl_t U_BOOT_CMD(BOOTP) = MK_CMD_ENTRY(
45 "bootp", 3, 1, do_bootp,
46 "bootp - boot image via network using BootP/TFTP protocol\n",
47 "[loadAddress] [bootfilename]\n"
48);
49
wdenk38635852002-08-27 05:55:31 +000050int do_tftpb (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
51{
52 return netboot_common (TFTP, cmdtp, argc, argv);
53}
54
wdenk57b2d802003-06-27 21:31:46 +000055cmd_tbl_t U_BOOT_CMD(TFTPB) = MK_CMD_ENTRY(
56 "tftpboot", 3, 1, do_tftpb,
wdenkbc160082003-06-28 23:18:28 +000057 "tftpboot- boot image via network using TFTP protocol\n",
wdenk57b2d802003-06-27 21:31:46 +000058 "[loadAddress] [bootfilename]\n"
59);
60
wdenk38635852002-08-27 05:55:31 +000061int do_rarpb (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
62{
63 return netboot_common (RARP, cmdtp, argc, argv);
64}
65
wdenk57b2d802003-06-27 21:31:46 +000066cmd_tbl_t U_BOOT_CMD(RARPB) = MK_CMD_ENTRY(
67 "rarpboot", 3, 1, do_rarpb,
68 "rarpboot- boot image via network using RARP/TFTP protocol\n",
69 "[loadAddress] [bootfilename]\n"
70);
71
wdenk38635852002-08-27 05:55:31 +000072#if (CONFIG_COMMANDS & CFG_CMD_DHCP)
73int do_dhcp (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
74{
75 return netboot_common(DHCP, cmdtp, argc, argv);
76}
wdenk57b2d802003-06-27 21:31:46 +000077
78cmd_tbl_t U_BOOT_CMD(DHCP) = MK_CMD_ENTRY(
79 "dhcp", 3, 1, do_dhcp,
80 "dhcp - invoke DHCP client to obtain IP/boot params\n",
81 "\n"
82);
wdenk38635852002-08-27 05:55:31 +000083#endif /* CFG_CMD_DHCP */
84
85static void netboot_update_env(void)
86{
87 char tmp[16] ;
88
89 if (NetOurGatewayIP) {
90 ip_to_string (NetOurGatewayIP, tmp);
91 setenv("gatewayip", tmp);
92 }
93
94 if (NetOurSubnetMask) {
95 ip_to_string (NetOurSubnetMask, tmp);
96 setenv("netmask", tmp);
97 }
98
99 if (NetOurHostName[0])
100 setenv("hostname", NetOurHostName);
101
102 if (NetOurRootPath[0])
103 setenv("rootpath", NetOurRootPath);
104
105 if (NetOurIP) {
106 ip_to_string (NetOurIP, tmp);
107 setenv("ipaddr", tmp);
108 }
109
110 if (NetServerIP) {
111 ip_to_string (NetServerIP, tmp);
112 setenv("serverip", tmp);
113 }
114
115 if (NetOurDNSIP) {
116 ip_to_string (NetOurDNSIP, tmp);
117 setenv("dnsip", tmp);
118 }
wdenke6466f62003-06-05 19:27:42 +0000119
120 if (NetOurNISDomain[0])
121 setenv("domain", NetOurNISDomain);
122
wdenk38635852002-08-27 05:55:31 +0000123}
124static int
125netboot_common (int proto, cmd_tbl_t *cmdtp, int argc, char *argv[])
126{
127 char *s;
128 int rcode = 0;
129 int size;
130
131 /* pre-set load_addr */
132 if ((s = getenv("loadaddr")) != NULL) {
133 load_addr = simple_strtoul(s, NULL, 16);
134 }
135
136 switch (argc) {
137 case 1:
138 break;
139
140 case 2: /* only one arg - accept two forms:
141 * just load address, or just boot file name.
142 * The latter form must be written "filename" here.
143 */
144 if (argv[1][0] == '"') { /* just boot filename */
145 copy_filename (BootFile, argv[1], sizeof(BootFile));
146 } else { /* load address */
147 load_addr = simple_strtoul(argv[1], NULL, 16);
148 }
149 break;
150
151 case 3: load_addr = simple_strtoul(argv[1], NULL, 16);
152 copy_filename (BootFile, argv[2], sizeof(BootFile));
153
154 break;
155
156 default: printf ("Usage:\n%s\n", cmdtp->usage);
157 return 1;
158 }
159
wdenkc217f6d2002-11-11 02:11:37 +0000160 if ((size = NetLoop(proto)) < 0)
wdenk38635852002-08-27 05:55:31 +0000161 return 1;
162
163 /* NetLoop ok, update environment */
164 netboot_update_env();
165
wdenkc217f6d2002-11-11 02:11:37 +0000166 /* done if no file was loaded (no errors though) */
167 if (size == 0)
168 return 0;
169
wdenk38635852002-08-27 05:55:31 +0000170 /* flush cache */
171 flush_cache(load_addr, size);
172
173 /* Loading ok, check if we should attempt an auto-start */
174 if (((s = getenv("autostart")) != NULL) && (strcmp(s,"yes") == 0)) {
175 char *local_args[2];
176 local_args[0] = argv[0];
177 local_args[1] = NULL;
178
179 printf ("Automatic boot of image at addr 0x%08lX ...\n",
180 load_addr);
181 rcode = do_bootm (cmdtp, 0, 1, local_args);
182 }
183
184#ifdef CONFIG_AUTOSCRIPT
185 if (((s = getenv("autoscript")) != NULL) && (strcmp(s,"yes") == 0)) {
186 printf("Running autoscript at addr 0x%08lX ...\n", load_addr);
187 rcode = autoscript (load_addr);
188 }
189#endif
190 return rcode;
191}
wdenke6466f62003-06-05 19:27:42 +0000192
193#if (CONFIG_COMMANDS & CFG_CMD_PING)
194int do_ping (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
195{
196 if (argc < 2)
197 return -1;
198
199 NetPingIP = string_to_ip(argv[1]);
200 if (NetPingIP == 0) {
201 printf ("Usage:\n%s\n", cmdtp->usage);
202 return -1;
203 }
204
205 if (NetLoop(PING) < 0) {
206 printf("ping failed; host %s is not alive\n", argv[1]);
207 return 1;
208 }
209
210 printf("host %s is alive\n", argv[1]);
211
212 return 0;
213}
214#endif /* CFG_CMD_PING */
wdenk38635852002-08-27 05:55:31 +0000215
216#endif /* CFG_CMD_NET */