2 * (C) Copyright 2000-2002
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * See file CREDITS for list of people who contributed to this
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.
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.
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,
32 #if (CONFIG_COMMANDS & CFG_CMD_NET)
34 #define TIMEOUT 5 /* Seconds before trying BOOTP again */
35 #ifndef CONFIG_NET_RETRY_COUNT
36 # define TIMEOUT_COUNT 5 /* # of timeouts before giving up */
38 # define TIMEOUT_COUNT (CONFIG_NET_RETRY_COUNT)
45 * Handle a RARP received packet.
48 RarpHandler(uchar
* dummi0
, unsigned dummi1
, unsigned dummi2
, unsigned dummi3
)
52 puts ("Got good RARP\n");
54 if ((s
= getenv("autoload")) != NULL
) {
57 * Just use RARP to configure system;
58 * Do not use TFTP/NFS to to load the bootfile.
60 NetState
= NETLOOP_SUCCESS
;
62 #if (CONFIG_COMMANDS & CFG_CMD_NFS)
63 } else if ((s
!= NULL
) && !strcmp(s
, "NFS")) {
74 * Timeout on BOOTP request.
79 if (RarpTry
>= TIMEOUT_COUNT
) {
80 puts ("\nRetry count exceeded; starting again\n");
83 NetSetTimeout (TIMEOUT
* CFG_HZ
, RarpTimeout
);
96 printf("RARP broadcast %d\n", ++RarpTry
);
99 pkt
+= NetSetEther(pkt
, NetBcastAddr
, PROT_RARP
);
103 rarp
->ar_hrd
= htons (ARP_ETHER
);
104 rarp
->ar_pro
= htons (PROT_IP
);
107 rarp
->ar_op
= htons (RARPOP_REQUEST
);
108 memcpy (&rarp
->ar_data
[0], NetOurEther
, 6); /* source ET addr */
109 memcpy (&rarp
->ar_data
[6], &NetOurIP
, 4); /* source IP addr */
110 memcpy (&rarp
->ar_data
[10], NetOurEther
, 6); /* dest ET addr = source ET addr ??*/
111 /* dest. IP addr set to broadcast */
112 for (i
= 0; i
<= 3; i
++) {
113 rarp
->ar_data
[16 + i
] = 0xff;
116 NetSendPacket(NetTxPacket
, (pkt
- NetTxPacket
) + ARP_HDR_SIZE
);
118 NetSetTimeout(TIMEOUT
* CFG_HZ
, RarpTimeout
);
119 NetSetHandler(RarpHandler
);
122 #endif /* CFG_CMD_NET */