Small fixes in new web pages
[oweals/u-boot_mod.git] / u-boot / net / rarp.c
1 /*
2  * (C) Copyright 2000-2002
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 #include <common.h>
25 #include <command.h>
26 #include <net.h>
27 #include "nfs.h"
28 #include "bootp.h"
29 #include "rarp.h"
30 #include "tftp.h"
31
32 #if (CONFIG_COMMANDS & CFG_CMD_NET)
33
34 DECLARE_GLOBAL_DATA_PTR;
35
36 #define TIMEOUT         5               /* Seconds before trying BOOTP again */
37 #ifndef CONFIG_NET_RETRY_COUNT
38 # define TIMEOUT_COUNT  5               /* # of timeouts before giving up  */
39 #else
40 # define TIMEOUT_COUNT  (CONFIG_NET_RETRY_COUNT)
41 #endif
42
43
44 int             RarpTry;
45
46 /*
47  *      Handle a RARP received packet.
48  */
49 static void
50 RarpHandler(uchar * dummi0, unsigned dummi1, unsigned dummi2, unsigned dummi3)
51 {
52         char *s;
53 #ifdef  DEBUG
54         puts ("Got good RARP\n");
55 #endif
56         if ((s = getenv("autoload")) != NULL) {
57                 if (*s == 'n') {
58                         /*
59                          * Just use RARP to configure system;
60                          * Do not use TFTP/NFS to to load the bootfile.
61                          */
62                         NetState = NETLOOP_SUCCESS;
63                         return;
64 #if (CONFIG_COMMANDS & CFG_CMD_NFS)
65                 } else if ((s != NULL) && !strcmp(s, "NFS")) {
66                         NfsStart();
67                         return;
68 #endif
69                 }
70         }
71         TftpStart ();
72 }
73
74
75 /*
76  *      Timeout on BOOTP request.
77  */
78 static void RarpTimeout(void){
79         bd_t *bd = gd->bd;
80
81         if (RarpTry >= TIMEOUT_COUNT) {
82                 puts ("\nRetry count exceeded; starting again\n");
83                 NetStartAgain ();
84         } else {
85                 NetSetTimeout (TIMEOUT * CFG_HZ, RarpTimeout);
86                 RarpRequest ();
87         }
88 }
89
90
91 void RarpRequest (void){
92         bd_t *bd = gd->bd;
93         int i;
94         volatile uchar *pkt;
95         ARP_t * rarp;
96
97         printf("RARP broadcast %d\n", ++RarpTry);
98         pkt = NetTxPacket;
99
100         pkt += NetSetEther(pkt, NetBcastAddr, PROT_RARP);
101
102         rarp = (ARP_t *)pkt;
103
104         rarp->ar_hrd = htons (ARP_ETHER);
105         rarp->ar_pro = htons (PROT_IP);
106         rarp->ar_hln = 6;
107         rarp->ar_pln = 4;
108         rarp->ar_op  = htons (RARPOP_REQUEST);
109         memcpy (&rarp->ar_data[0],  NetOurEther, 6);    /* source ET addr */
110         memcpy (&rarp->ar_data[6],  &NetOurIP,   4);    /* source IP addr */
111         memcpy (&rarp->ar_data[10], NetOurEther, 6);    /* dest ET addr = source ET addr ??*/
112         /* dest. IP addr set to broadcast */
113         for (i = 0; i <= 3; i++) {
114                 rarp->ar_data[16 + i] = 0xff;
115         }
116
117         NetSendPacket(NetTxPacket, (pkt - NetTxPacket) + ARP_HDR_SIZE);
118
119         NetSetTimeout(TIMEOUT * CFG_HZ, RarpTimeout);
120         NetSetHandler(RarpHandler);
121 }
122
123 #endif /* CFG_CMD_NET */