]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/cmd_net.c
driver/serial: delete at91rm9200_usart
[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 static int netboot_common (proto_t, cmd_tbl_t *, int , char * const []);
32
33 int do_bootp (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
34 {
35         return netboot_common (BOOTP, cmdtp, argc, argv);
36 }
37
38 U_BOOT_CMD(
39         bootp,  3,      1,      do_bootp,
40         "boot image via network using BOOTP/TFTP protocol",
41         "[loadAddress] [[hostIPaddr:]bootfilename]"
42 );
43
44 int do_tftpb (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
45 {
46         return netboot_common (TFTP, cmdtp, argc, argv);
47 }
48
49 U_BOOT_CMD(
50         tftpboot,       3,      1,      do_tftpb,
51         "boot image via network using TFTP protocol",
52         "[loadAddress] [[hostIPaddr:]bootfilename]"
53 );
54
55 #ifdef CONFIG_CMD_TFTPSRV
56 static 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
61 U_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
72 #ifdef CONFIG_CMD_RARP
73 int do_rarpb (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
74 {
75         return netboot_common (RARP, cmdtp, argc, argv);
76 }
77
78 U_BOOT_CMD(
79         rarpboot,       3,      1,      do_rarpb,
80         "boot image via network using RARP/TFTP protocol",
81         "[loadAddress] [[hostIPaddr:]bootfilename]"
82 );
83 #endif
84
85 #if defined(CONFIG_CMD_DHCP)
86 int do_dhcp (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
87 {
88         return netboot_common(DHCP, cmdtp, argc, argv);
89 }
90
91 U_BOOT_CMD(
92         dhcp,   3,      1,      do_dhcp,
93         "boot image via network using DHCP/TFTP protocol",
94         "[loadAddress] [[hostIPaddr:]bootfilename]"
95 );
96 #endif
97
98 #if defined(CONFIG_CMD_NFS)
99 int do_nfs (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
100 {
101         return netboot_common(NFS, cmdtp, argc, argv);
102 }
103
104 U_BOOT_CMD(
105         nfs,    3,      1,      do_nfs,
106         "boot image via network using NFS protocol",
107         "[loadAddress] [[hostIPaddr:]bootfilename]"
108 );
109 #endif
110
111 static void netboot_update_env (void)
112 {
113         char tmp[22];
114
115         if (NetOurGatewayIP) {
116                 ip_to_string (NetOurGatewayIP, tmp);
117                 setenv ("gatewayip", tmp);
118         }
119
120         if (NetOurSubnetMask) {
121                 ip_to_string (NetOurSubnetMask, tmp);
122                 setenv ("netmask", tmp);
123         }
124
125         if (NetOurHostName[0])
126                 setenv ("hostname", NetOurHostName);
127
128         if (NetOurRootPath[0])
129                 setenv ("rootpath", NetOurRootPath);
130
131         if (NetOurIP) {
132                 ip_to_string (NetOurIP, tmp);
133                 setenv ("ipaddr", tmp);
134         }
135
136         if (NetServerIP) {
137                 ip_to_string (NetServerIP, tmp);
138                 setenv ("serverip", tmp);
139         }
140
141         if (NetOurDNSIP) {
142                 ip_to_string (NetOurDNSIP, tmp);
143                 setenv ("dnsip", tmp);
144         }
145 #if defined(CONFIG_BOOTP_DNS2)
146         if (NetOurDNS2IP) {
147                 ip_to_string (NetOurDNS2IP, tmp);
148                 setenv ("dnsip2", tmp);
149         }
150 #endif
151         if (NetOurNISDomain[0])
152                 setenv ("domain", NetOurNISDomain);
153
154 #if defined(CONFIG_CMD_SNTP) \
155     && defined(CONFIG_BOOTP_TIMEOFFSET)
156         if (NetTimeOffset) {
157                 sprintf (tmp, "%d", NetTimeOffset);
158                 setenv ("timeoffset", tmp);
159         }
160 #endif
161 #if defined(CONFIG_CMD_SNTP) \
162     && defined(CONFIG_BOOTP_NTPSERVER)
163         if (NetNtpServerIP) {
164                 ip_to_string (NetNtpServerIP, tmp);
165                 setenv ("ntpserverip", tmp);
166         }
167 #endif
168 }
169
170 static int
171 netboot_common (proto_t proto, cmd_tbl_t *cmdtp, int argc, char * const argv[])
172 {
173         char *s;
174         char *end;
175         int   rcode = 0;
176         int   size;
177         ulong addr;
178
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
188         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.
193                  */
194                 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));
199                 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
206         default:
207                 show_boot_progress (-80);
208                 return cmd_usage(cmdtp);
209         }
210
211         show_boot_progress (80);
212         if ((size = NetLoop(proto)) < 0) {
213                 show_boot_progress (-81);
214                 return 1;
215         }
216
217         show_boot_progress (81);
218         /* NetLoop ok, update environment */
219         netboot_update_env();
220
221         /* done if no file was loaded (no errors though) */
222         if (size == 0) {
223                 show_boot_progress (-82);
224                 return 0;
225         }
226
227         /* flush cache */
228         flush_cache(load_addr, size);
229
230         /* Loading ok, check if we should attempt an auto-start */
231         if (((s = getenv("autostart")) != NULL) && (strcmp(s,"yes") == 0)) {
232                 char *local_args[2];
233                 local_args[0] = argv[0];
234                 local_args[1] = NULL;
235
236                 printf ("Automatic boot of image at addr 0x%08lX ...\n",
237                         load_addr);
238                 show_boot_progress (82);
239                 rcode = do_bootm (cmdtp, 0, 1, local_args);
240         }
241
242         if (rcode < 0)
243                 show_boot_progress (-83);
244         else
245                 show_boot_progress (84);
246         return rcode;
247 }
248
249 #if defined(CONFIG_CMD_PING)
250 int do_ping (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
251 {
252         if (argc < 2)
253                 return -1;
254
255         NetPingIP = string_to_ip(argv[1]);
256         if (NetPingIP == 0)
257                 return cmd_usage(cmdtp);
258
259         if (NetLoop(PING) < 0) {
260                 printf("ping failed; host %s is not alive\n", argv[1]);
261                 return 1;
262         }
263
264         printf("host %s is alive\n", argv[1]);
265
266         return 0;
267 }
268
269 U_BOOT_CMD(
270         ping,   2,      1,      do_ping,
271         "send ICMP ECHO_REQUEST to network host",
272         "pingAddress"
273 );
274 #endif
275
276 #if defined(CONFIG_CMD_CDP)
277
278 static void cdp_update_env(void)
279 {
280         char tmp[16];
281
282         if (CDPApplianceVLAN != htons(-1)) {
283                 printf("CDP offered appliance VLAN %d\n", ntohs(CDPApplianceVLAN));
284                 VLAN_to_string(CDPApplianceVLAN, tmp);
285                 setenv("vlan", tmp);
286                 NetOurVLAN = CDPApplianceVLAN;
287         }
288
289         if (CDPNativeVLAN != htons(-1)) {
290                 printf("CDP offered native VLAN %d\n", ntohs(CDPNativeVLAN));
291                 VLAN_to_string(CDPNativeVLAN, tmp);
292                 setenv("nvlan", tmp);
293                 NetOurNativeVLAN = CDPNativeVLAN;
294         }
295
296 }
297
298 int do_cdp (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
299 {
300         int r;
301
302         r = NetLoop(CDP);
303         if (r < 0) {
304                 printf("cdp failed; perhaps not a CISCO switch?\n");
305                 return 1;
306         }
307
308         cdp_update_env();
309
310         return 0;
311 }
312
313 U_BOOT_CMD(
314         cdp,    1,      1,      do_cdp,
315         "Perform CDP network configuration",
316         "\n"
317 );
318 #endif
319
320 #if defined(CONFIG_CMD_SNTP)
321 int do_sntp (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
322 {
323         char *toff;
324
325         if (argc < 2) {
326                 NetNtpServerIP = getenv_IPaddr ("ntpserverip");
327                 if (NetNtpServerIP == 0) {
328                         printf ("ntpserverip not set\n");
329                         return (1);
330                 }
331         } else {
332                 NetNtpServerIP = string_to_ip(argv[1]);
333                 if (NetNtpServerIP == 0) {
334                         printf ("Bad NTP server IP address\n");
335                         return (1);
336                 }
337         }
338
339         toff = getenv ("timeoffset");
340         if (toff == NULL) NetTimeOffset = 0;
341         else NetTimeOffset = simple_strtol (toff, NULL, 10);
342
343         if (NetLoop(SNTP) < 0) {
344                 printf("SNTP failed: host %pI4 not responding\n",
345                         &NetNtpServerIP);
346                 return 1;
347         }
348
349         return 0;
350 }
351
352 U_BOOT_CMD(
353         sntp,   2,      1,      do_sntp,
354         "synchronize RTC via network",
355         "[NTP server IP]\n"
356 );
357 #endif
358
359 #if defined(CONFIG_CMD_DNS)
360 int do_dns(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
361 {
362         if (argc == 1)
363                 return cmd_usage(cmdtp);
364
365         /*
366          * We should check for a valid hostname:
367          * - Each label must be between 1 and 63 characters long
368          * - the entire hostname has a maximum of 255 characters
369          * - only the ASCII letters 'a' through 'z' (case-insensitive),
370          *   the digits '0' through '9', and the hyphen
371          * - cannot begin or end with a hyphen
372          * - no other symbols, punctuation characters, or blank spaces are
373          *   permitted
374          * but hey - this is a minimalist implmentation, so only check length
375          * and let the name server deal with things.
376          */
377         if (strlen(argv[1]) >= 255) {
378                 printf("dns error: hostname too long\n");
379                 return 1;
380         }
381
382         NetDNSResolve = argv[1];
383
384         if (argc == 3)
385                 NetDNSenvvar = argv[2];
386         else
387                 NetDNSenvvar = NULL;
388
389         if (NetLoop(DNS) < 0) {
390                 printf("dns lookup of %s failed, check setup\n", argv[1]);
391                 return 1;
392         }
393
394         return 0;
395 }
396
397 U_BOOT_CMD(
398         dns,    3,      1,      do_dns,
399         "lookup the IP of a hostname",
400         "hostname [envvar]"
401 );
402
403 #endif  /* CONFIG_CMD_DNS */