]> Git Repo - J-u-boot.git/blame - cmd/net.c
Merge patch series "omap3: igep0x00: Fix boot failure and modernize the boards support"
[J-u-boot.git] / cmd / net.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
3863585b
WD
2/*
3 * (C) Copyright 2000
4 * Wolfgang Denk, DENX Software Engineering, [email protected].
3863585b
WD
5 */
6
c8c3fd24
SG
7#define LOG_CATEGORY UCLASS_ETH
8
3863585b
WD
9/*
10 * Boot support
11 */
d678a59d 12#include <common.h>
52f24238 13#include <bootstage.h>
3863585b 14#include <command.h>
8a3987f4 15#include <dm.h>
c85e96d0 16#include <dm/devres.h>
9fb625ce 17#include <env.h>
8e8ccfe1 18#include <image.h>
c8c3fd24 19#include <log.h>
3863585b 20#include <net.h>
7fbf230d 21#include <net6.h>
912ece4c
PR
22#include <net/udp.h>
23#include <net/sntp.h>
4b290d4a 24#include <net/ncsi.h>
3863585b 25
09140113 26static int netboot_common(enum proto_t, struct cmd_tbl *, int, char * const []);
3863585b 27
d7a45eaf 28#ifdef CONFIG_CMD_BOOTP
09140113
SG
29static int do_bootp(struct cmd_tbl *cmdtp, int flag, int argc,
30 char *const argv[])
3863585b 31{
088f1b19 32 return netboot_common(BOOTP, cmdtp, argc, argv);
3863585b
WD
33}
34
0d498393
WD
35U_BOOT_CMD(
36 bootp, 3, 1, do_bootp,
2fb2604d 37 "boot image via network using BOOTP/TFTP protocol",
a89c33db 38 "[loadAddress] [[hostIPaddr:]bootfilename]"
8bde7f77 39);
d7a45eaf 40#endif
8bde7f77 41
d7a45eaf 42#ifdef CONFIG_CMD_TFTPBOOT
09140113 43int do_tftpb(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
3863585b 44{
573f14fe
SG
45 int ret;
46
47 bootstage_mark_name(BOOTSTAGE_KERNELREAD_START, "tftp_start");
48 ret = netboot_common(TFTPGET, cmdtp, argc, argv);
49 bootstage_mark_name(BOOTSTAGE_KERNELREAD_STOP, "tftp_done");
50 return ret;
3863585b
WD
51}
52
7fbf230d
VM
53#if IS_ENABLED(CONFIG_IPV6)
54U_BOOT_CMD(
55 tftpboot, 4, 1, do_tftpb,
56 "boot image via network using TFTP protocol\n"
57 "To use IPv6 add -ipv6 parameter or use IPv6 hostIPaddr framed "
58 "with [] brackets",
59 "[loadAddress] [[hostIPaddr:]bootfilename] [" USE_IP6_CMD_PARAM "]"
60);
61#else
0d498393
WD
62U_BOOT_CMD(
63 tftpboot, 3, 1, do_tftpb,
651031ef 64 "load file via network using TFTP protocol",
a89c33db 65 "[loadAddress] [[hostIPaddr:]bootfilename]"
8bde7f77 66);
d7a45eaf 67#endif
7fbf230d 68#endif
8bde7f77 69
2d46cf29 70#ifdef CONFIG_CMD_TFTPPUT
09140113
SG
71static int do_tftpput(struct cmd_tbl *cmdtp, int flag, int argc,
72 char *const argv[])
2d46cf29 73{
85848f03 74 return netboot_common(TFTPPUT, cmdtp, argc, argv);
2d46cf29
SG
75}
76
77U_BOOT_CMD(
78 tftpput, 4, 1, do_tftpput,
79 "TFTP put command, for uploading files to a server",
80 "Address Size [[hostIPaddr:]filename]"
81);
82#endif
83
7a83af07 84#ifdef CONFIG_CMD_TFTPSRV
09140113
SG
85static int do_tftpsrv(struct cmd_tbl *cmdtp, int flag, int argc,
86 char *const argv[])
7a83af07
LC
87{
88 return netboot_common(TFTPSRV, cmdtp, argc, argv);
89}
90
91U_BOOT_CMD(
92 tftpsrv, 2, 1, do_tftpsrv,
93 "act as a TFTP server and boot the first received file",
94 "[loadAddress]\n"
95 "Listen for an incoming TFTP transfer, receive a file and boot it.\n"
96 "The transfer is aborted if a transfer has not been started after\n"
97 "about 50 seconds or if Ctrl-C is pressed."
98);
99#endif
100
101
bf6cb247 102#ifdef CONFIG_CMD_RARP
09140113 103int do_rarpb(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
3863585b 104{
088f1b19 105 return netboot_common(RARP, cmdtp, argc, argv);
3863585b
WD
106}
107
0d498393
WD
108U_BOOT_CMD(
109 rarpboot, 3, 1, do_rarpb,
2fb2604d 110 "boot image via network using RARP/TFTP protocol",
a89c33db 111 "[loadAddress] [[hostIPaddr:]bootfilename]"
8bde7f77 112);
bf6cb247 113#endif
8bde7f77 114
7d018892
SE
115#if defined(CONFIG_CMD_DHCP6)
116static int do_dhcp6(struct cmd_tbl *cmdtp, int flag, int argc,
117 char *const argv[])
118{
119 int i;
120 int dhcp_argc;
121 char *dhcp_argv[] = {NULL, NULL, NULL, NULL};
122
123 /* Add -ipv6 flag for autoload */
124 for (i = 0; i < argc; i++)
125 dhcp_argv[i] = argv[i];
126 dhcp_argc = argc + 1;
127 dhcp_argv[dhcp_argc - 1] = USE_IP6_CMD_PARAM;
128
129 return netboot_common(DHCP6, cmdtp, dhcp_argc, dhcp_argv);
130}
131
132U_BOOT_CMD(dhcp6, 3, 1, do_dhcp6,
133 "boot image via network using DHCPv6/TFTP protocol.\n"
134 "Use IPv6 hostIPaddr framed with [] brackets",
135 "[loadAddress] [[hostIPaddr:]bootfilename]");
136#endif
137
c76fe474 138#if defined(CONFIG_CMD_DHCP)
09140113
SG
139static int do_dhcp(struct cmd_tbl *cmdtp, int flag, int argc,
140 char *const argv[])
3863585b
WD
141{
142 return netboot_common(DHCP, cmdtp, argc, argv);
143}
8bde7f77 144
0d498393
WD
145U_BOOT_CMD(
146 dhcp, 3, 1, do_dhcp,
2fb2604d 147 "boot image via network using DHCP/TFTP protocol",
a89c33db 148 "[loadAddress] [[hostIPaddr:]bootfilename]"
8bde7f77 149);
c8c3fd24
SG
150
151int dhcp_run(ulong addr, const char *fname, bool autoload)
152{
153 char *dhcp_argv[] = {"dhcp", NULL, (char *)fname, NULL};
154 struct cmd_tbl cmdtp = {}; /* dummy */
155 char file_addr[17];
156 int old_autoload;
157 int ret, result;
158
159 log_debug("addr=%lx, fname=%s, autoload=%d\n", addr, fname, autoload);
160 old_autoload = env_get_yesno("autoload");
161 ret = env_set("autoload", autoload ? "y" : "n");
162 if (ret)
163 return log_msg_ret("en1", -EINVAL);
164
165 if (autoload) {
166 sprintf(file_addr, "%lx", addr);
167 dhcp_argv[1] = file_addr;
168 }
169
170 result = do_dhcp(&cmdtp, 0, !autoload ? 1 : fname ? 3 : 2, dhcp_argv);
171
172 ret = env_set("autoload", old_autoload == -1 ? NULL :
173 old_autoload ? "y" : "n");
174 if (ret)
175 return log_msg_ret("en2", -EINVAL);
176
177 if (result)
178 return log_msg_ret("res", -ENOENT);
179
180 return 0;
181}
90253178 182#endif
3863585b 183
c76fe474 184#if defined(CONFIG_CMD_NFS)
09140113
SG
185static int do_nfs(struct cmd_tbl *cmdtp, int flag, int argc,
186 char *const argv[])
cbd8a35c
WD
187{
188 return netboot_common(NFS, cmdtp, argc, argv);
189}
190
191U_BOOT_CMD(
192 nfs, 3, 1, do_nfs,
2fb2604d 193 "boot image via network using NFS protocol",
a89c33db 194 "[loadAddress] [[hostIPaddr:]bootfilename]"
cbd8a35c 195);
90253178 196#endif
cbd8a35c 197
cfbae482
YCLP
198#if defined(CONFIG_CMD_WGET)
199static int do_wget(struct cmd_tbl *cmdtp, int flag, int argc, char * const argv[])
200{
201 return netboot_common(WGET, cmdtp, argc, argv);
202}
203
204U_BOOT_CMD(
205 wget, 3, 1, do_wget,
206 "boot image via network using HTTP protocol",
207 "[loadAddress] [[hostIPaddr:]path and image name]"
208);
209#endif
210
088f1b19 211static void netboot_update_env(void)
3863585b 212{
1b3117db 213 char tmp[46];
3863585b 214
049a95a7
JH
215 if (net_gateway.s_addr) {
216 ip_to_string(net_gateway, tmp);
382bee57 217 env_set("gatewayip", tmp);
6e592385 218 }
3863585b 219
049a95a7
JH
220 if (net_netmask.s_addr) {
221 ip_to_string(net_netmask, tmp);
382bee57 222 env_set("netmask", tmp);
6e592385 223 }
3863585b 224
808f13d8 225#ifdef CONFIG_CMD_BOOTP
586cbe51 226 if (net_hostname[0])
382bee57 227 env_set("hostname", net_hostname);
808f13d8 228#endif
3863585b 229
808f13d8 230#ifdef CONFIG_CMD_BOOTP
586cbe51 231 if (net_root_path[0])
382bee57 232 env_set("rootpath", net_root_path);
808f13d8 233#endif
3863585b 234
049a95a7
JH
235 if (net_ip.s_addr) {
236 ip_to_string(net_ip, tmp);
382bee57 237 env_set("ipaddr", tmp);
6e592385 238 }
a3e1a727 239 /*
ff78ad28 240 * Only attempt to change serverip if net/bootp.c:store_net_params()
a3e1a727
JH
241 * could have set it
242 */
43407539 243 if (!IS_ENABLED(CONFIG_BOOTP_SERVERIP) && net_server_ip.s_addr) {
049a95a7 244 ip_to_string(net_server_ip, tmp);
382bee57 245 env_set("serverip", tmp);
6e592385 246 }
049a95a7
JH
247 if (net_dns_server.s_addr) {
248 ip_to_string(net_dns_server, tmp);
382bee57 249 env_set("dnsip", tmp);
6e592385 250 }
1fe80d79 251#if defined(CONFIG_BOOTP_DNS2)
049a95a7
JH
252 if (net_dns_server2.s_addr) {
253 ip_to_string(net_dns_server2, tmp);
382bee57 254 env_set("dnsip2", tmp);
6e592385 255 }
fe389a82 256#endif
808f13d8 257#ifdef CONFIG_CMD_BOOTP
586cbe51 258 if (net_nis_domain[0])
382bee57 259 env_set("domain", net_nis_domain);
808f13d8 260#endif
ea287deb 261
4fd5055f 262#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_TIMEOFFSET)
bc0571fc
JH
263 if (net_ntp_time_offset) {
264 sprintf(tmp, "%d", net_ntp_time_offset);
382bee57 265 env_set("timeoffset", tmp);
ea287deb
WD
266 }
267#endif
4fd5055f 268#if defined(CONFIG_CMD_SNTP) && defined(CONFIG_BOOTP_NTPSERVER)
049a95a7
JH
269 if (net_ntp_server.s_addr) {
270 ip_to_string(net_ntp_server, tmp);
382bee57 271 env_set("ntpserverip", tmp);
ea287deb
WD
272 }
273#endif
5e541c48
SE
274
275 if (IS_ENABLED(CONFIG_IPV6)) {
276 if (!ip6_is_unspecified_addr(&net_ip6) ||
277 net_prefix_length != 0) {
5e541c48 278 if (net_prefix_length != 0)
1b3117db
SE
279 snprintf(tmp, sizeof(tmp), "%pI6c/%d", &net_ip6, net_prefix_length);
280 else
281 snprintf(tmp, sizeof(tmp), "%pI6c", &net_ip6);
5e541c48
SE
282 env_set("ip6addr", tmp);
283 }
284
285 if (!ip6_is_unspecified_addr(&net_server_ip6)) {
1b3117db 286 snprintf(tmp, sizeof(tmp), "%pI6c", &net_server_ip6);
5e541c48
SE
287 env_set("serverip6", tmp);
288 }
289
290 if (!ip6_is_unspecified_addr(&net_gateway6)) {
1b3117db 291 snprintf(tmp, sizeof(tmp), "%pI6c", &net_gateway6);
5e541c48
SE
292 env_set("gatewayip6", tmp);
293 }
294 }
3863585b 295}
6e592385 296
5f46c6eb
HS
297/**
298 * parse_addr_size() - parse address and size arguments for tftpput
299 *
300 * @argv: command line arguments
301 * Return: 0 on success
302 */
303static int parse_addr_size(char * const argv[])
3863585b 304{
5f46c6eb
HS
305 if (strict_strtoul(argv[1], 16, &image_save_addr) < 0 ||
306 strict_strtoul(argv[2], 16, &image_save_size) < 0) {
307 printf("Invalid address/size\n");
308 return CMD_RET_USAGE;
309 }
310 return 0;
311}
449312c1 312
5f46c6eb
HS
313/**
314 * parse_args() - parse command line arguments
315 *
316 * @proto: command prototype
317 * @argc: number of arguments
318 * @argv: command line arguments
319 * Return: 0 on success
320 */
321static int parse_args(enum proto_t proto, int argc, char *const argv[])
322{
323 ulong addr;
324 char *end;
3863585b
WD
325
326 switch (argc) {
327 case 1:
b15a4af8 328 if (IS_ENABLED(CONFIG_CMD_TFTPPUT) && proto == TFTPPUT)
5f46c6eb
HS
329 return 1;
330
f43308fa
JH
331 /* refresh bootfile name from env */
332 copy_filename(net_boot_file_name, env_get("bootfile"),
333 sizeof(net_boot_file_name));
3863585b
WD
334 break;
335
5f46c6eb 336 case 2:
b15a4af8 337 if (IS_ENABLED(CONFIG_CMD_TFTPPUT) && proto == TFTPPUT)
5f46c6eb
HS
338 return 1;
339 /*
2e4970d8
PT
340 * Only one arg - accept two forms:
341 * Just load address, or just boot file name. The latter
342 * form must be written in a format which can not be
343 * mis-interpreted as a valid number.
3863585b 344 */
7e5f460e 345 addr = hextoul(argv[1], &end);
449312c1 346 if (end == (argv[1] + strlen(argv[1]))) {
bb872dd9 347 image_load_addr = addr;
f43308fa
JH
348 /* refresh bootfile name from env */
349 copy_filename(net_boot_file_name, env_get("bootfile"),
350 sizeof(net_boot_file_name));
449312c1
AG
351 } else {
352 net_boot_file_name_explicit = true;
1411157d
JH
353 copy_filename(net_boot_file_name, argv[1],
354 sizeof(net_boot_file_name));
449312c1 355 }
3863585b
WD
356 break;
357
4fd5055f 358 case 3:
b15a4af8 359 if (IS_ENABLED(CONFIG_CMD_TFTPPUT) && proto == TFTPPUT) {
5f46c6eb
HS
360 if (parse_addr_size(argv))
361 return 1;
362 } else {
363 image_load_addr = hextoul(argv[1], NULL);
364 net_boot_file_name_explicit = true;
365 copy_filename(net_boot_file_name, argv[2],
366 sizeof(net_boot_file_name));
367 }
3863585b
WD
368 break;
369
2d46cf29
SG
370#ifdef CONFIG_CMD_TFTPPUT
371 case 4:
5f46c6eb
HS
372 if (parse_addr_size(argv))
373 return 1;
449312c1 374 net_boot_file_name_explicit = true;
1411157d
JH
375 copy_filename(net_boot_file_name, argv[3],
376 sizeof(net_boot_file_name));
2d46cf29
SG
377 break;
378#endif
47e26b1b 379 default:
5f46c6eb
HS
380 return 1;
381 }
382 return 0;
383}
384
385static int netboot_common(enum proto_t proto, struct cmd_tbl *cmdtp, int argc,
386 char *const argv[])
387{
388 char *s;
389 int rcode = 0;
390 int size;
391
392 net_boot_file_name_explicit = false;
393 *net_boot_file_name = '\0';
394
395 /* pre-set image_load_addr */
396 s = env_get("loadaddr");
397 if (s != NULL)
398 image_load_addr = hextoul(s, NULL);
399
7fbf230d
VM
400 if (IS_ENABLED(CONFIG_IPV6)) {
401 use_ip6 = false;
402
403 /* IPv6 parameter has to be always *last* */
404 if (!strcmp(argv[argc - 1], USE_IP6_CMD_PARAM)) {
405 use_ip6 = true;
406 /* It is a hack not to break switch/case code */
407 --argc;
408 }
409 }
410
5f46c6eb 411 if (parse_args(proto, argc, argv)) {
770605e4 412 bootstage_error(BOOTSTAGE_ID_NET_START);
4c12eeb8 413 return CMD_RET_USAGE;
3863585b 414 }
5f46c6eb 415
770605e4 416 bootstage_mark(BOOTSTAGE_ID_NET_START);
3863585b 417
7fbf230d
VM
418 if (IS_ENABLED(CONFIG_IPV6) && !use_ip6) {
419 char *s, *e;
420 size_t len;
421
422 s = strchr(net_boot_file_name, '[');
423 e = strchr(net_boot_file_name, ']');
424 if (s && e) {
425 len = e - s;
426 if (!string_to_ip6(s + 1, len - 1, &net_server_ip6))
427 use_ip6 = true;
428 }
429 }
430
bc0571fc 431 size = net_loop(proto);
4fd5055f 432 if (size < 0) {
770605e4 433 bootstage_error(BOOTSTAGE_ID_NET_NETLOOP_OK);
85848f03 434 return CMD_RET_FAILURE;
566a494f 435 }
770605e4 436 bootstage_mark(BOOTSTAGE_ID_NET_NETLOOP_OK);
3863585b 437
bc0571fc 438 /* net_loop ok, update environment */
3863585b
WD
439 netboot_update_env();
440
eb9401e3 441 /* done if no file was loaded (no errors though) */
566a494f 442 if (size == 0) {
770605e4 443 bootstage_error(BOOTSTAGE_ID_NET_LOADED);
85848f03 444 return CMD_RET_SUCCESS;
566a494f 445 }
eb9401e3 446
770605e4 447 bootstage_mark(BOOTSTAGE_ID_NET_LOADED);
c8e66db7 448
67d668bf 449 rcode = bootm_maybe_autostart(cmdtp, argv[0]);
3863585b 450
85848f03 451 if (rcode == CMD_RET_SUCCESS)
770605e4 452 bootstage_mark(BOOTSTAGE_ID_NET_DONE);
85848f03
JH
453 else
454 bootstage_error(BOOTSTAGE_ID_NET_DONE_ERR);
3863585b
WD
455 return rcode;
456}
457
c76fe474 458#if defined(CONFIG_CMD_PING)
09140113
SG
459static int do_ping(struct cmd_tbl *cmdtp, int flag, int argc,
460 char *const argv[])
73a8b27c
WD
461{
462 if (argc < 2)
85848f03 463 return CMD_RET_USAGE;
73a8b27c 464
049a95a7
JH
465 net_ping_ip = string_to_ip(argv[1]);
466 if (net_ping_ip.s_addr == 0)
4c12eeb8 467 return CMD_RET_USAGE;
73a8b27c 468
bc0571fc 469 if (net_loop(PING) < 0) {
73a8b27c 470 printf("ping failed; host %s is not alive\n", argv[1]);
85848f03 471 return CMD_RET_FAILURE;
73a8b27c
WD
472 }
473
474 printf("host %s is alive\n", argv[1]);
475
85848f03 476 return CMD_RET_SUCCESS;
73a8b27c 477}
6dff5529
WD
478
479U_BOOT_CMD(
480 ping, 2, 1, do_ping,
2fb2604d 481 "send ICMP ECHO_REQUEST to network host",
a89c33db 482 "pingAddress"
6dff5529 483);
90253178 484#endif
73a8b27c 485
eeb0a2c6
VM
486#if IS_ENABLED(CONFIG_CMD_PING6)
487int do_ping6(struct cmd_tbl *cmdtp, int flag, int argc, char * const argv[])
488{
489 if (string_to_ip6(argv[1], strlen(argv[1]), &net_ping_ip6))
490 return CMD_RET_USAGE;
491
492 use_ip6 = true;
493 if (net_loop(PING6) < 0) {
494 use_ip6 = false;
495 printf("ping6 failed; host %pI6c is not alive\n",
496 &net_ping_ip6);
497 return 1;
498 }
499
500 use_ip6 = false;
501 printf("host %pI6c is alive\n", &net_ping_ip6);
502 return 0;
503}
504
505U_BOOT_CMD(
506 ping6, 2, 1, do_ping6,
507 "send ICMPv6 ECHO_REQUEST to network host",
508 "pingAddress"
509);
510#endif /* CONFIG_CMD_PING6 */
511
c76fe474 512#if defined(CONFIG_CMD_CDP)
a3d991bd
WD
513
514static void cdp_update_env(void)
515{
516 char tmp[16];
517
6aede5b7
JH
518 if (cdp_appliance_vlan != htons(-1)) {
519 printf("CDP offered appliance VLAN %d\n",
520 ntohs(cdp_appliance_vlan));
4fd5055f 521 vlan_to_string(cdp_appliance_vlan, tmp);
382bee57 522 env_set("vlan", tmp);
4fd5055f 523 net_our_vlan = cdp_appliance_vlan;
a3d991bd
WD
524 }
525
6aede5b7
JH
526 if (cdp_native_vlan != htons(-1)) {
527 printf("CDP offered native VLAN %d\n", ntohs(cdp_native_vlan));
4fd5055f 528 vlan_to_string(cdp_native_vlan, tmp);
382bee57 529 env_set("nvlan", tmp);
4fd5055f 530 net_native_vlan = cdp_native_vlan;
a3d991bd 531 }
a3d991bd
WD
532}
533
09140113 534int do_cdp(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
a3d991bd
WD
535{
536 int r;
537
bc0571fc 538 r = net_loop(CDP);
a3d991bd
WD
539 if (r < 0) {
540 printf("cdp failed; perhaps not a CISCO switch?\n");
85848f03 541 return CMD_RET_FAILURE;
a3d991bd
WD
542 }
543
544 cdp_update_env();
545
85848f03 546 return CMD_RET_SUCCESS;
a3d991bd
WD
547}
548
549U_BOOT_CMD(
550 cdp, 1, 1, do_cdp,
ec5c04cd 551 "Perform CDP network configuration",
4b58266e 552 "\n"
a3d991bd 553);
90253178 554#endif
a3d991bd 555
c76fe474 556#if defined(CONFIG_CMD_SNTP)
912ece4c
PR
557static struct udp_ops sntp_ops = {
558 .prereq = sntp_prereq,
559 .start = sntp_start,
560 .data = NULL,
561};
562
09140113 563int do_sntp(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
ea287deb
WD
564{
565 char *toff;
566
567 if (argc < 2) {
723806cc 568 net_ntp_server = env_get_ip("ntpserverip");
049a95a7 569 if (net_ntp_server.s_addr == 0) {
088f1b19 570 printf("ntpserverip not set\n");
85848f03 571 return CMD_RET_FAILURE;
ea287deb
WD
572 }
573 } else {
049a95a7
JH
574 net_ntp_server = string_to_ip(argv[1]);
575 if (net_ntp_server.s_addr == 0) {
088f1b19 576 printf("Bad NTP server IP address\n");
85848f03 577 return CMD_RET_FAILURE;
ea287deb
WD
578 }
579 }
580
00caae6d 581 toff = env_get("timeoffset");
088f1b19 582 if (toff == NULL)
bc0571fc 583 net_ntp_time_offset = 0;
088f1b19 584 else
bc0571fc 585 net_ntp_time_offset = simple_strtol(toff, NULL, 10);
ea287deb 586
912ece4c 587 if (udp_loop(&sntp_ops) < 0) {
d6840e3d 588 printf("SNTP failed: host %pI4 not responding\n",
4fd5055f 589 &net_ntp_server);
85848f03 590 return CMD_RET_FAILURE;
ea287deb
WD
591 }
592
85848f03 593 return CMD_RET_SUCCESS;
ea287deb
WD
594}
595
596U_BOOT_CMD(
597 sntp, 2, 1, do_sntp,
2fb2604d 598 "synchronize RTC via network",
ea287deb
WD
599 "[NTP server IP]\n"
600);
90253178 601#endif
1a32bf41
RG
602
603#if defined(CONFIG_CMD_DNS)
09140113 604int do_dns(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
1a32bf41 605{
47e26b1b 606 if (argc == 1)
4c12eeb8 607 return CMD_RET_USAGE;
1a32bf41
RG
608
609 /*
610 * We should check for a valid hostname:
611 * - Each label must be between 1 and 63 characters long
612 * - the entire hostname has a maximum of 255 characters
613 * - only the ASCII letters 'a' through 'z' (case-insensitive),
614 * the digits '0' through '9', and the hyphen
615 * - cannot begin or end with a hyphen
616 * - no other symbols, punctuation characters, or blank spaces are
617 * permitted
618 * but hey - this is a minimalist implmentation, so only check length
619 * and let the name server deal with things.
620 */
621 if (strlen(argv[1]) >= 255) {
622 printf("dns error: hostname too long\n");
85848f03 623 return CMD_RET_FAILURE;
1a32bf41
RG
624 }
625
786eac5f 626 net_dns_resolve = argv[1];
1a32bf41
RG
627
628 if (argc == 3)
786eac5f 629 net_dns_env_var = argv[2];
1a32bf41 630 else
786eac5f 631 net_dns_env_var = NULL;
1a32bf41 632
bc0571fc 633 if (net_loop(DNS) < 0) {
1a32bf41 634 printf("dns lookup of %s failed, check setup\n", argv[1]);
85848f03 635 return CMD_RET_FAILURE;
1a32bf41
RG
636 }
637
85848f03 638 return CMD_RET_SUCCESS;
1a32bf41
RG
639}
640
641U_BOOT_CMD(
642 dns, 3, 1, do_dns,
643 "lookup the IP of a hostname",
644 "hostname [envvar]"
645);
646
647#endif /* CONFIG_CMD_DNS */
d22c338e
JH
648
649#if defined(CONFIG_CMD_LINK_LOCAL)
09140113
SG
650static int do_link_local(struct cmd_tbl *cmdtp, int flag, int argc,
651 char *const argv[])
d22c338e
JH
652{
653 char tmp[22];
654
bc0571fc 655 if (net_loop(LINKLOCAL) < 0)
85848f03 656 return CMD_RET_FAILURE;
d22c338e 657
049a95a7
JH
658 net_gateway.s_addr = 0;
659 ip_to_string(net_gateway, tmp);
382bee57 660 env_set("gatewayip", tmp);
d22c338e 661
049a95a7 662 ip_to_string(net_netmask, tmp);
382bee57 663 env_set("netmask", tmp);
d22c338e 664
049a95a7 665 ip_to_string(net_ip, tmp);
382bee57
SG
666 env_set("ipaddr", tmp);
667 env_set("llipaddr", tmp); /* store this for next time */
d22c338e 668
85848f03 669 return CMD_RET_SUCCESS;
d22c338e
JH
670}
671
672U_BOOT_CMD(
673 linklocal, 1, 1, do_link_local,
674 "acquire a network IP address using the link-local protocol",
675 ""
676);
677
678#endif /* CONFIG_CMD_LINK_LOCAL */
8a3987f4 679
8a3987f4
TH
680static int do_net_list(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
681{
682 const struct udevice *current = eth_get_dev();
683 unsigned char env_enetaddr[ARP_HLEN];
684 const struct udevice *dev;
685 struct uclass *uc;
686
687 uclass_id_foreach_dev(UCLASS_ETH, dev, uc) {
688 eth_env_get_enetaddr_by_index("eth", dev_seq(dev), env_enetaddr);
689 printf("eth%d : %s %pM %s\n", dev_seq(dev), dev->name, env_enetaddr,
690 current == dev ? "active" : "");
691 }
692 return CMD_RET_SUCCESS;
693}
694
c85e96d0
IC
695static int do_net_stats(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
696{
697 int nstats, err, i, off;
698 struct udevice *dev;
699 u64 *values;
700 u8 *strings;
701
702 if (argc < 2)
703 return CMD_RET_USAGE;
704
705 err = uclass_get_device_by_name(UCLASS_ETH, argv[1], &dev);
706 if (err) {
707 printf("Could not find device %s\n", argv[1]);
708 return CMD_RET_FAILURE;
709 }
710
711 if (!eth_get_ops(dev)->get_sset_count ||
712 !eth_get_ops(dev)->get_strings ||
713 !eth_get_ops(dev)->get_stats) {
714 printf("Driver does not implement stats dump!\n");
715 return CMD_RET_FAILURE;
716 }
717
718 nstats = eth_get_ops(dev)->get_sset_count(dev);
719 strings = kcalloc(nstats, ETH_GSTRING_LEN, GFP_KERNEL);
720 if (!strings)
721 return CMD_RET_FAILURE;
722
723 values = kcalloc(nstats, sizeof(u64), GFP_KERNEL);
724 if (!values)
725 goto err_free_strings;
726
727 eth_get_ops(dev)->get_strings(dev, strings);
728 eth_get_ops(dev)->get_stats(dev, values);
729
730 off = 0;
731 for (i = 0; i < nstats; i++) {
732 printf(" %s: %llu\n", &strings[off], values[i]);
733 off += ETH_GSTRING_LEN;
734 };
735
736 return CMD_RET_SUCCESS;
737
738err_free_strings:
739 kfree(strings);
740
741 return CMD_RET_FAILURE;
742}
743
8a3987f4
TH
744static struct cmd_tbl cmd_net[] = {
745 U_BOOT_CMD_MKENT(list, 1, 0, do_net_list, "", ""),
c85e96d0 746 U_BOOT_CMD_MKENT(stats, 2, 0, do_net_stats, "", ""),
8a3987f4
TH
747};
748
749static int do_net(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
750{
751 struct cmd_tbl *cp;
752
753 cp = find_cmd_tbl(argv[1], cmd_net, ARRAY_SIZE(cmd_net));
754
755 /* Drop the net command */
756 argc--;
757 argv++;
758
759 if (!cp || argc > cp->maxargs)
760 return CMD_RET_USAGE;
761 if (flag == CMD_FLAG_REPEAT && !cmd_is_repeatable(cp))
762 return CMD_RET_SUCCESS;
763
764 return cp->cmd(cmdtp, flag, argc, argv);
765}
766
767U_BOOT_CMD(
c85e96d0 768 net, 3, 1, do_net,
8a3987f4
TH
769 "NET sub-system",
770 "list - list available devices\n"
c85e96d0 771 "stats <device> - dump statistics for specified device\n"
8a3987f4 772);
4b290d4a
SMJ
773
774#if defined(CONFIG_CMD_NCSI)
775static int do_ncsi(struct cmd_tbl *cmdtp, int flag, int argc, char * const argv[])
776{
777 if (!phy_interface_is_ncsi() || !ncsi_active()) {
778 printf("Device not configured for NC-SI\n");
779 return CMD_RET_FAILURE;
780 }
781
782 if (net_loop(NCSI) < 0)
783 return CMD_RET_FAILURE;
784
785 return CMD_RET_SUCCESS;
786}
787
788U_BOOT_CMD(
789 ncsi, 1, 1, do_ncsi,
790 "Configure attached NIC via NC-SI",
791 ""
792);
793#endif /* CONFIG_CMD_NCSI */
This page took 0.711388 seconds and 4 git commands to generate.