blob: 9cf6cd6339951cbe7b1f91b73a061bb5c4c57653 [file] [log] [blame]
wdenk68ceb292004-08-02 21:11:11 +00001/*
2 * (C) Copyright 2004
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
26#ifdef CONFIG_NETCONSOLE
27
28#include <command.h>
29#include <devices.h>
30#include <net.h>
31
32#ifndef CONFIG_NET_MULTI
33#error define CONFIG_NET_MULTI to use netconsole
34#endif
35
wdenkeedcd072004-09-08 22:03:11 +000036static char input_buffer[512];
37static int input_size = 0; /* char count in input buffer */
38static int input_offset = 0; /* offset to valid chars in input buffer */
wdenk68ceb292004-08-02 21:11:11 +000039static int input_recursion = 0;
40static int output_recursion = 0;
41static int net_timeout;
wdenkeedcd072004-09-08 22:03:11 +000042static uchar nc_ether[6]; /* server enet address */
43static IPaddr_t nc_ip; /* server ip */
44static short nc_port; /* source/target port */
45static const char *output_packet; /* used by first send udp */
46static int output_packet_len = 0;
wdenk68ceb292004-08-02 21:11:11 +000047
48static void nc_wait_arp_handler (uchar * pkt, unsigned dest, unsigned src,
49 unsigned len)
50{
51 NetState = NETLOOP_SUCCESS; /* got arp reply - quit net loop */
52}
53
54static void nc_handler (uchar * pkt, unsigned dest, unsigned src,
55 unsigned len)
56{
wdenkeedcd072004-09-08 22:03:11 +000057 if (input_size)
wdenk68ceb292004-08-02 21:11:11 +000058 NetState = NETLOOP_SUCCESS; /* got input - quit net loop */
59}
60
61static void nc_timeout (void)
62{
63 NetState = NETLOOP_SUCCESS;
64}
65
66void NcStart (void)
67{
wdenkeedcd072004-09-08 22:03:11 +000068 if (!output_packet_len || memcmp (nc_ether, NetEtherNullAddr, 6)) {
wdenk68ceb292004-08-02 21:11:11 +000069 /* going to check for input packet */
70 NetSetHandler (nc_handler);
71 NetSetTimeout (net_timeout, nc_timeout);
72 } else {
73 /* send arp request */
wdenkeedcd072004-09-08 22:03:11 +000074 uchar *pkt;
wdenk68ceb292004-08-02 21:11:11 +000075 NetSetHandler (nc_wait_arp_handler);
wdenkeedcd072004-09-08 22:03:11 +000076 pkt = (uchar *) NetTxPacket + NetEthHdrSize () + IP_HDR_SIZE;
77 memcpy (pkt, output_packet, output_packet_len);
78 NetSendUDPPacket (nc_ether, nc_ip, nc_port, nc_port, output_packet_len);
wdenk68ceb292004-08-02 21:11:11 +000079 }
80}
81
82int nc_input_packet (uchar * pkt, unsigned dest, unsigned src, unsigned len)
83{
wdenkeedcd072004-09-08 22:03:11 +000084 int end, chunk;
85
86 if (dest != nc_port || !len)
wdenk68ceb292004-08-02 21:11:11 +000087 return 0; /* not for us */
88
wdenkeedcd072004-09-08 22:03:11 +000089 if (input_size == sizeof input_buffer)
90 return 1; /* no space */
91 if (len > sizeof input_buffer - input_size)
92 len = sizeof input_buffer - input_size;
93
94 end = input_offset + input_size;
95 if (end > sizeof input_buffer)
96 end -= sizeof input_buffer;
97
98 chunk = len;
99 if (end + len > sizeof input_buffer) {
100 chunk = sizeof input_buffer - end;
101 memcpy(input_buffer, pkt + chunk, len - chunk);
102 }
103 memcpy (input_buffer + end, pkt, chunk);
104
105 input_size += len;
106
wdenk68ceb292004-08-02 21:11:11 +0000107 return 1;
108}
109
110static void nc_send_packet (const char *buf, int len)
111{
112 DECLARE_GLOBAL_DATA_PTR;
113
114 struct eth_device *eth;
115 int inited = 0;
116 uchar *pkt;
wdenkeedcd072004-09-08 22:03:11 +0000117 uchar *ether;
118 IPaddr_t ip;
wdenk68ceb292004-08-02 21:11:11 +0000119
120 if ((eth = eth_get_dev ()) == NULL) {
121 return;
122 }
123
wdenkeedcd072004-09-08 22:03:11 +0000124 if (!memcmp (nc_ether, NetEtherNullAddr, 6)) {
125 if (eth->state == ETH_STATE_ACTIVE)
126 return; /* inside net loop */
127 output_packet = buf;
128 output_packet_len = len;
129 NetLoop (NETCONS); /* wait for arp reply and send packet */
130 output_packet_len = 0;
131 return;
132 }
133
wdenk68ceb292004-08-02 21:11:11 +0000134 if (eth->state != ETH_STATE_ACTIVE) {
135 if (eth_init (gd->bd) < 0)
136 return;
137 inited = 1;
138 }
139 pkt = (uchar *) NetTxPacket + NetEthHdrSize () + IP_HDR_SIZE;
140 memcpy (pkt, buf, len);
wdenkeedcd072004-09-08 22:03:11 +0000141 ether = nc_ether;
142 ip = nc_ip;
143 NetSendUDPPacket (ether, ip, nc_port, nc_port, len);
wdenk68ceb292004-08-02 21:11:11 +0000144
145 if (inited)
146 eth_halt ();
147}
148
149int nc_start (void)
150{
wdenkeedcd072004-09-08 22:03:11 +0000151 int netmask, our_ip;
wdenk68ceb292004-08-02 21:11:11 +0000152
wdenkeedcd072004-09-08 22:03:11 +0000153 nc_port = 6666; /* default port */
154
155 if (getenv ("ncip")) {
wdenkb2323ea2005-04-20 09:28:54 +0000156 char *p;
157
wdenkeedcd072004-09-08 22:03:11 +0000158 nc_ip = getenv_IPaddr ("ncip");
159 if (!nc_ip)
160 return -1; /* ncip is 0.0.0.0 */
wdenkb2323ea2005-04-20 09:28:54 +0000161 if ((p = strchr (getenv ("ncip"), ':')) != NULL)
wdenkeedcd072004-09-08 22:03:11 +0000162 nc_port = simple_strtoul (p + 1, NULL, 10);
163 } else
164 nc_ip = ~0; /* ncip is not set */
165
166 our_ip = getenv_IPaddr ("ipaddr");
167 netmask = getenv_IPaddr ("netmask");
168
169 if (nc_ip == ~0 || /* 255.255.255.255 */
170 ((netmask & our_ip) == (netmask & nc_ip) && /* on the same net */
171 (netmask | nc_ip) == ~0)) /* broadcast to our net */
172 memset (nc_ether, 0xff, sizeof nc_ether);
173 else
174 memset (nc_ether, 0, sizeof nc_ether); /* force arp request */
175
176 return 0;
wdenk68ceb292004-08-02 21:11:11 +0000177}
178
179void nc_putc (char c)
180{
181 if (output_recursion)
182 return;
183 output_recursion = 1;
184
185 nc_send_packet (&c, 1);
186
187 output_recursion = 0;
188}
189
190void nc_puts (const char *s)
191{
wdenkb2323ea2005-04-20 09:28:54 +0000192 int len;
193
wdenk68ceb292004-08-02 21:11:11 +0000194 if (output_recursion)
195 return;
196 output_recursion = 1;
197
wdenkb2323ea2005-04-20 09:28:54 +0000198 if ((len = strlen (s)) > 512)
wdenk68ceb292004-08-02 21:11:11 +0000199 len = 512;
200
201 nc_send_packet (s, len);
202
203 output_recursion = 0;
204}
205
206int nc_getc (void)
207{
wdenkb2323ea2005-04-20 09:28:54 +0000208 uchar c;
209
wdenk68ceb292004-08-02 21:11:11 +0000210 input_recursion = 1;
211
212 net_timeout = 0; /* no timeout */
wdenkeedcd072004-09-08 22:03:11 +0000213 while (!input_size)
wdenk68ceb292004-08-02 21:11:11 +0000214 NetLoop (NETCONS);
215
216 input_recursion = 0;
217
wdenkb2323ea2005-04-20 09:28:54 +0000218 c = input_buffer[input_offset++];
219
wdenkeedcd072004-09-08 22:03:11 +0000220 if (input_offset >= sizeof input_buffer)
221 input_offset -= sizeof input_buffer;
222 input_size--;
wdenk68ceb292004-08-02 21:11:11 +0000223
wdenkeedcd072004-09-08 22:03:11 +0000224 return c;
wdenk68ceb292004-08-02 21:11:11 +0000225}
226
227int nc_tstc (void)
228{
229 struct eth_device *eth;
230
231 if (input_recursion)
232 return 0;
233
wdenkeedcd072004-09-08 22:03:11 +0000234 if (input_size)
wdenk68ceb292004-08-02 21:11:11 +0000235 return 1;
236
237 eth = eth_get_dev ();
238 if (eth && eth->state == ETH_STATE_ACTIVE)
239 return 0; /* inside net loop */
240
241 input_recursion = 1;
242
243 net_timeout = 1;
wdenkeedcd072004-09-08 22:03:11 +0000244 NetLoop (NETCONS); /* kind of poll */
wdenk68ceb292004-08-02 21:11:11 +0000245
246 input_recursion = 0;
247
wdenkeedcd072004-09-08 22:03:11 +0000248 return input_size != 0;
wdenk68ceb292004-08-02 21:11:11 +0000249}
250
251int drv_nc_init (void)
252{
253 device_t dev;
254 int rc;
255
256 memset (&dev, 0, sizeof (dev));
257
258 strcpy (dev.name, "nc");
259 dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT | DEV_FLAGS_SYSTEM;
260 dev.start = nc_start;
261 dev.putc = nc_putc;
262 dev.puts = nc_puts;
263 dev.getc = nc_getc;
264 dev.tstc = nc_tstc;
265
266 rc = device_register (&dev);
267
268 return (rc == 0) ? 1 : rc;
269}
270
271#endif /* CONFIG_NETCONSOLE */