]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/cmd_net.c
Merge with git://www.denx.de/git/u-boot.git
[karo-tx-uboot.git] / common / cmd_net.c
1 /*
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>
29 #include <net.h>
30
31 #if (CONFIG_COMMANDS & CFG_CMD_NET)
32
33 extern int do_bootm (cmd_tbl_t *, int, int, char *[]);
34
35 static int netboot_common (proto_t, cmd_tbl_t *, int , char *[]);
36
37 int do_bootp (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
38 {
39         return netboot_common (BOOTP, cmdtp, argc, argv);
40 }
41
42 U_BOOT_CMD(
43         bootp,  3,      1,      do_bootp,
44         "bootp\t- boot image via network using BootP/TFTP protocol\n",
45         "[loadAddress] [bootfilename]\n"
46 );
47
48 int do_tftpb (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
49 {
50         return netboot_common (TFTP, cmdtp, argc, argv);
51 }
52
53 U_BOOT_CMD(
54         tftpboot,       3,      1,      do_tftpb,
55         "tftpboot- boot image via network using TFTP protocol\n",
56         "[loadAddress] [bootfilename]\n"
57 );
58
59 int do_rarpb (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
60 {
61         return netboot_common (RARP, cmdtp, argc, argv);
62 }
63
64 U_BOOT_CMD(
65         rarpboot,       3,      1,      do_rarpb,
66         "rarpboot- boot image via network using RARP/TFTP protocol\n",
67         "[loadAddress] [bootfilename]\n"
68 );
69
70 #if (CONFIG_COMMANDS & CFG_CMD_DHCP)
71 int do_dhcp (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
72 {
73         return netboot_common(DHCP, cmdtp, argc, argv);
74 }
75
76 U_BOOT_CMD(
77         dhcp,   3,      1,      do_dhcp,
78         "dhcp\t- invoke DHCP client to obtain IP/boot params\n",
79         "\n"
80 );
81 #endif  /* CFG_CMD_DHCP */
82
83 #if (CONFIG_COMMANDS & CFG_CMD_NFS)
84 int do_nfs (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
85 {
86         return netboot_common(NFS, cmdtp, argc, argv);
87 }
88
89 U_BOOT_CMD(
90         nfs,    3,      1,      do_nfs,
91         "nfs\t- boot image via network using NFS protocol\n",
92         "[loadAddress] [host ip addr:bootfilename]\n"
93 );
94 #endif  /* CFG_CMD_NFS */
95
96 static void netboot_update_env (void)
97 {
98         char tmp[22];
99
100         if (NetOurGatewayIP) {
101                 ip_to_string (NetOurGatewayIP, tmp);
102                 setenv ("gatewayip", tmp);
103         }
104
105         if (NetOurSubnetMask) {
106                 ip_to_string (NetOurSubnetMask, tmp);
107                 setenv ("netmask", tmp);
108         }
109
110         if (NetOurHostName[0])
111                 setenv ("hostname", NetOurHostName);
112
113         if (NetOurRootPath[0])
114                 setenv ("rootpath", NetOurRootPath);
115
116         if (NetOurIP) {
117                 ip_to_string (NetOurIP, tmp);
118                 setenv ("ipaddr", tmp);
119         }
120
121         if (NetServerIP) {
122                 ip_to_string (NetServerIP, tmp);
123                 setenv ("serverip", tmp);
124         }
125
126         if (NetOurDNSIP) {
127                 ip_to_string (NetOurDNSIP, tmp);
128                 setenv ("dnsip", tmp);
129         }
130 #if (CONFIG_BOOTP_MASK & CONFIG_BOOTP_DNS2)
131         if (NetOurDNS2IP) {
132                 ip_to_string (NetOurDNS2IP, tmp);
133                 setenv ("dnsip2", tmp);
134         }
135 #endif
136         if (NetOurNISDomain[0])
137                 setenv ("domain", NetOurNISDomain);
138
139 #if (CONFIG_COMMANDS & CFG_CMD_SNTP) && (CONFIG_BOOTP_MASK & CONFIG_BOOTP_TIMEOFFSET)
140         if (NetTimeOffset) {
141                 sprintf (tmp, "%d", NetTimeOffset);
142                 setenv ("timeoffset", tmp);
143         }
144 #endif
145 #if (CONFIG_COMMANDS & CFG_CMD_SNTP) && (CONFIG_BOOTP_MASK & CONFIG_BOOTP_NTPSERVER)
146         if (NetNtpServerIP) {
147                 ip_to_string (NetNtpServerIP, tmp);
148                 setenv ("ntpserverip", tmp);
149         }
150 #endif
151 }
152
153 static int
154 netboot_common (proto_t proto, cmd_tbl_t *cmdtp, int argc, char *argv[])
155 {
156         char *s;
157         int   rcode = 0;
158         int   size;
159
160         /* pre-set load_addr */
161         if ((s = getenv("loadaddr")) != NULL) {
162                 load_addr = simple_strtoul(s, NULL, 16);
163         }
164
165         switch (argc) {
166         case 1:
167                 break;
168
169         case 2: /* only one arg - accept two forms:
170                  * just load address, or just boot file name.
171                  * The latter form must be written "filename" here.
172                  */
173                 if (argv[1][0] == '"') {        /* just boot filename */
174                         copy_filename (BootFile, argv[1], sizeof(BootFile));
175                 } else {                        /* load address */
176                         load_addr = simple_strtoul(argv[1], NULL, 16);
177                 }
178                 break;
179
180         case 3: load_addr = simple_strtoul(argv[1], NULL, 16);
181                 copy_filename (BootFile, argv[2], sizeof(BootFile));
182
183                 break;
184
185         default: printf ("Usage:\n%s\n", cmdtp->usage);
186                 show_boot_progress (-80);
187                 return 1;
188         }
189
190         show_boot_progress (80);
191         if ((size = NetLoop(proto)) < 0) {
192                 show_boot_progress (-81);
193                 return 1;
194         }
195
196         show_boot_progress (81);
197         /* NetLoop ok, update environment */
198         netboot_update_env();
199
200         /* done if no file was loaded (no errors though) */
201         if (size == 0) {
202                 show_boot_progress (-82);
203                 return 0;
204         }
205
206         /* flush cache */
207         flush_cache(load_addr, size);
208
209         /* Loading ok, check if we should attempt an auto-start */
210         if (((s = getenv("autostart")) != NULL) && (strcmp(s,"yes") == 0)) {
211                 char *local_args[2];
212                 local_args[0] = argv[0];
213                 local_args[1] = NULL;
214
215                 printf ("Automatic boot of image at addr 0x%08lX ...\n",
216                         load_addr);
217                 show_boot_progress (82);
218                 rcode = do_bootm (cmdtp, 0, 1, local_args);
219         }
220
221 #ifdef CONFIG_AUTOSCRIPT
222         if (((s = getenv("autoscript")) != NULL) && (strcmp(s,"yes") == 0)) {
223                 printf("Running autoscript at addr 0x%08lX ...\n", load_addr);
224                 show_boot_progress (83);
225                 rcode = autoscript (load_addr);
226         }
227 #endif
228         if (rcode < 0)
229                 show_boot_progress (-83);
230         else
231                 show_boot_progress (84);
232         return rcode;
233 }
234
235 #if (CONFIG_COMMANDS & CFG_CMD_PING)
236 int do_ping (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
237 {
238         if (argc < 2)
239                 return -1;
240
241         NetPingIP = string_to_ip(argv[1]);
242         if (NetPingIP == 0) {
243                 printf ("Usage:\n%s\n", cmdtp->usage);
244                 return -1;
245         }
246
247         if (NetLoop(PING) < 0) {
248                 printf("ping failed; host %s is not alive\n", argv[1]);
249                 return 1;
250         }
251
252         printf("host %s is alive\n", argv[1]);
253
254         return 0;
255 }
256
257 U_BOOT_CMD(
258         ping,   2,      1,      do_ping,
259         "ping\t- send ICMP ECHO_REQUEST to network host\n",
260         "pingAddress\n"
261 );
262 #endif  /* CFG_CMD_PING */
263
264 #if (CONFIG_COMMANDS & CFG_CMD_CDP)
265
266 static void cdp_update_env(void)
267 {
268         char tmp[16];
269
270         if (CDPApplianceVLAN != htons(-1)) {
271                 printf("CDP offered appliance VLAN %d\n", ntohs(CDPApplianceVLAN));
272                 VLAN_to_string(CDPApplianceVLAN, tmp);
273                 setenv("vlan", tmp);
274                 NetOurVLAN = CDPApplianceVLAN;
275         }
276
277         if (CDPNativeVLAN != htons(-1)) {
278                 printf("CDP offered native VLAN %d\n", ntohs(CDPNativeVLAN));
279                 VLAN_to_string(CDPNativeVLAN, tmp);
280                 setenv("nvlan", tmp);
281                 NetOurNativeVLAN = CDPNativeVLAN;
282         }
283
284 }
285
286 int do_cdp (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
287 {
288         int r;
289
290         r = NetLoop(CDP);
291         if (r < 0) {
292                 printf("cdp failed; perhaps not a CISCO switch?\n");
293                 return 1;
294         }
295
296         cdp_update_env();
297
298         return 0;
299 }
300
301 U_BOOT_CMD(
302         cdp,    1,      1,      do_cdp,
303         "cdp\t- Perform CDP network configuration\n",
304 );
305 #endif  /* CFG_CMD_CDP */
306
307 #if (CONFIG_COMMANDS & CFG_CMD_SNTP)
308 int do_sntp (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
309 {
310         char *toff;
311
312         if (argc < 2) {
313                 NetNtpServerIP = getenv_IPaddr ("ntpserverip");
314                 if (NetNtpServerIP == 0) {
315                         printf ("ntpserverip not set\n");
316                         return (1);
317                 }
318         } else {
319                 NetNtpServerIP = string_to_ip(argv[1]);
320                 if (NetNtpServerIP == 0) {
321                         printf ("Bad NTP server IP address\n");
322                         return (1);
323                 }
324         }
325
326         toff = getenv ("timeoffset");
327         if (toff == NULL) NetTimeOffset = 0;
328         else NetTimeOffset = simple_strtol (toff, NULL, 10);
329
330         if (NetLoop(SNTP) < 0) {
331                 printf("SNTP failed: host %s not responding\n", argv[1]);
332                 return 1;
333         }
334
335         return 0;
336 }
337
338 U_BOOT_CMD(
339         sntp,   2,      1,      do_sntp,
340         "sntp\t- synchronize RTC via network\n",
341         "[NTP server IP]\n"
342 );
343 #endif  /* CFG_CMD_SNTP */
344
345 #endif  /* CFG_CMD_NET */