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