ofnet.c revision 1.41.4.3 1 /* $NetBSD: ofnet.c,v 1.41.4.3 2010/03/11 15:03:42 yamt Exp $ */
2
3 /*
4 * Copyright (C) 1995, 1996 Wolfgang Solfrank.
5 * Copyright (C) 1995, 1996 TooLs GmbH.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by TooLs GmbH.
19 * 4. The name of TooLs GmbH may not be used to endorse or promote products
20 * derived from this software without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY TOOLS GMBH ``AS IS'' AND ANY EXPRESS OR
23 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
27 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
28 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
29 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
30 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
31 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 */
33
34 #include <sys/cdefs.h>
35 __KERNEL_RCSID(0, "$NetBSD: ofnet.c,v 1.41.4.3 2010/03/11 15:03:42 yamt Exp $");
36
37 #include "ofnet.h"
38 #include "opt_inet.h"
39
40 #include <sys/param.h>
41 #include <sys/systm.h>
42 #include <sys/callout.h>
43 #include <sys/device.h>
44 #include <sys/disk.h>
45 #include <sys/ioctl.h>
46 #include <sys/mbuf.h>
47 #include <sys/socket.h>
48 #include <sys/syslog.h>
49
50 #include <net/if.h>
51 #include <net/if_ether.h>
52
53 #ifdef INET
54 #include <netinet/in.h>
55 #include <netinet/if_inarp.h>
56 #endif
57
58 #include <net/bpf.h>
59 #include <net/bpfdesc.h>
60
61 #include <dev/ofw/openfirm.h>
62
63 #if NIPKDB_OFN > 0
64 #include <ipkdb/ipkdb.h>
65 #include <machine/ipkdb.h>
66
67 CFATTACH_DECL(ipkdb_ofn, 0,
68 ipkdb_probe, ipkdb_attach, NULL, NULL);
69
70 static struct ipkdb_if *kifp;
71 static struct ofnet_softc *ipkdb_of;
72
73 static int ipkdbprobe (cfdata_t, void *);
74 #endif
75
76 struct ofnet_softc {
77 struct device sc_dev;
78 int sc_phandle;
79 int sc_ihandle;
80 struct ethercom sc_ethercom;
81 struct callout sc_callout;
82 };
83
84 static int ofnet_match (device_t, cfdata_t, void *);
85 static void ofnet_attach (device_t, device_t, void *);
86
87 CFATTACH_DECL(ofnet, sizeof(struct ofnet_softc),
88 ofnet_match, ofnet_attach, NULL, NULL);
89
90 static void ofnet_read (struct ofnet_softc *);
91 static void ofnet_timer (void *);
92 static void ofnet_init (struct ofnet_softc *);
93 static void ofnet_stop (struct ofnet_softc *);
94
95 static void ofnet_start (struct ifnet *);
96 static int ofnet_ioctl (struct ifnet *, u_long, void *);
97 static void ofnet_watchdog (struct ifnet *);
98
99 static int
100 ofnet_match(device_t parent, cfdata_t match, void *aux)
101 {
102 struct ofbus_attach_args *oba = aux;
103 char type[32];
104 int l;
105
106 #if NIPKDB_OFN > 0
107 if (!parent)
108 return ipkdbprobe(match, aux);
109 #endif
110 if (strcmp(oba->oba_busname, "ofw"))
111 return (0);
112 if ((l = OF_getprop(oba->oba_phandle, "device_type", type,
113 sizeof type - 1)) < 0)
114 return 0;
115 if (l >= sizeof type)
116 return 0;
117 type[l] = 0;
118 if (strcmp(type, "network"))
119 return 0;
120 return 1;
121 }
122
123 static void
124 ofnet_attach(device_t parent, device_t self, void *aux)
125 {
126 struct ofnet_softc *of = device_private(self);
127 struct ifnet *ifp = &of->sc_ethercom.ec_if;
128 struct ofbus_attach_args *oba = aux;
129 char path[256];
130 int l;
131 u_int8_t myaddr[ETHER_ADDR_LEN];
132
133 of->sc_phandle = oba->oba_phandle;
134 #if NIPKDB_OFN > 0
135 if (kifp &&
136 kifp->unit - 1 == device_unit(&of->sc_dev) &&
137 OF_instance_to_package(kifp->port) == oba->oba_phandle) {
138 ipkdb_of = of;
139 of->sc_ihandle = kifp->port;
140 } else
141 #endif
142 if ((l = OF_package_to_path(oba->oba_phandle, path,
143 sizeof path - 1)) < 0 ||
144 l >= sizeof path ||
145 (path[l] = 0, !(of->sc_ihandle = OF_open(path))))
146 panic("ofnet_attach: unable to open");
147 if (OF_getprop(oba->oba_phandle, "mac-address", myaddr,
148 sizeof myaddr) < 0)
149 panic("ofnet_attach: no mac-address");
150 printf(": address %s\n", ether_sprintf(myaddr));
151
152 callout_init(&of->sc_callout, 0);
153
154 strlcpy(ifp->if_xname, device_xname(&of->sc_dev), IFNAMSIZ);
155 ifp->if_softc = of;
156 ifp->if_start = ofnet_start;
157 ifp->if_ioctl = ofnet_ioctl;
158 ifp->if_watchdog = ofnet_watchdog;
159 ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_NOTRAILERS;
160 IFQ_SET_READY(&ifp->if_snd);
161
162 if_attach(ifp);
163 ether_ifattach(ifp, myaddr);
164 }
165
166 static char buf[ETHER_MAX_LEN];
167
168 static void
169 ofnet_read(struct ofnet_softc *of)
170 {
171 struct ifnet *ifp = &of->sc_ethercom.ec_if;
172 struct mbuf *m, **mp, *head;
173 int s, l, len;
174 char *bufp;
175
176 s = splnet();
177 #if NIPKDB_OFN > 0
178 ipkdbrint(kifp, ifp);
179 #endif
180 for (;;) {
181 len = OF_read(of->sc_ihandle, buf, sizeof buf);
182 if (len == -2 || len == 0)
183 break;
184 if (len < sizeof(struct ether_header)) {
185 ifp->if_ierrors++;
186 continue;
187 }
188 bufp = buf;
189
190 /*
191 * We don't know if the interface included the FCS
192 * or not. For now, assume that it did if we got
193 * a packet length that looks like it could include
194 * the FCS.
195 *
196 * XXX Yuck.
197 */
198 if (len > ETHER_MAX_LEN - ETHER_CRC_LEN)
199 len = ETHER_MAX_LEN - ETHER_CRC_LEN;
200
201 /* Allocate a header mbuf */
202 MGETHDR(m, M_DONTWAIT, MT_DATA);
203 if (m == 0) {
204 ifp->if_ierrors++;
205 continue;
206 }
207 m->m_pkthdr.rcvif = ifp;
208 m->m_pkthdr.len = len;
209
210 l = MHLEN;
211 head = 0;
212 mp = &head;
213
214 while (len > 0) {
215 if (head) {
216 MGET(m, M_DONTWAIT, MT_DATA);
217 if (m == 0) {
218 ifp->if_ierrors++;
219 m_freem(head);
220 head = 0;
221 break;
222 }
223 l = MLEN;
224 }
225 if (len >= MINCLSIZE) {
226 MCLGET(m, M_DONTWAIT);
227 if ((m->m_flags & M_EXT) == 0) {
228 ifp->if_ierrors++;
229 m_free(m);
230 m_freem(head);
231 head = 0;
232 break;
233 }
234 l = MCLBYTES;
235 }
236
237 /*
238 * Make sure the data after the Ethernet header
239 * is aligned.
240 *
241 * XXX Assumes the device is an ethernet, but
242 * XXX then so does other code in this driver.
243 */
244 if (head == NULL) {
245 char *newdata = (char *)ALIGN(m->m_data +
246 sizeof(struct ether_header)) -
247 sizeof(struct ether_header);
248 l -= newdata - m->m_data;
249 m->m_data = newdata;
250 }
251
252 m->m_len = l = min(len, l);
253 memcpy(mtod(m, char *), bufp, l);
254 bufp += l;
255 len -= l;
256 *mp = m;
257 mp = &m->m_next;
258 }
259 if (head == 0)
260 continue;
261
262 if (ifp->if_bpf)
263 bpf_ops->bpf_mtap(ifp->if_bpf, m);
264 ifp->if_ipackets++;
265 (*ifp->if_input)(ifp, head);
266 }
267 splx(s);
268 }
269
270 static void
271 ofnet_timer(void *arg)
272 {
273 struct ofnet_softc *of = arg;
274
275 ofnet_read(of);
276 callout_reset(&of->sc_callout, 1, ofnet_timer, of);
277 }
278
279 static void
280 ofnet_init(struct ofnet_softc *of)
281 {
282 struct ifnet *ifp = &of->sc_ethercom.ec_if;
283
284 if (ifp->if_flags & IFF_RUNNING)
285 return;
286
287 ifp->if_flags |= IFF_RUNNING;
288 /* Start reading from interface */
289 ofnet_timer(of);
290 /* Attempt to start output */
291 ofnet_start(ifp);
292 }
293
294 static void
295 ofnet_stop(struct ofnet_softc *of)
296 {
297 callout_stop(&of->sc_callout);
298 of->sc_ethercom.ec_if.if_flags &= ~IFF_RUNNING;
299 }
300
301 static void
302 ofnet_start(struct ifnet *ifp)
303 {
304 struct ofnet_softc *of = ifp->if_softc;
305 struct mbuf *m, *m0;
306 char *bufp;
307 int len;
308
309 if (!(ifp->if_flags & IFF_RUNNING))
310 return;
311
312 for (;;) {
313 /* First try reading any packets */
314 ofnet_read(of);
315
316 /* Now get the first packet on the queue */
317 IFQ_DEQUEUE(&ifp->if_snd, m0);
318 if (!m0)
319 return;
320
321 if (!(m0->m_flags & M_PKTHDR))
322 panic("ofnet_start: no header mbuf");
323 len = m0->m_pkthdr.len;
324
325 if (ifp->if_bpf)
326 bpf_ops->bpf_mtap(ifp->if_bpf, m0);
327
328 if (len > ETHERMTU + sizeof(struct ether_header)) {
329 /* packet too large, toss it */
330 ifp->if_oerrors++;
331 m_freem(m0);
332 continue;
333 }
334
335 for (bufp = buf; (m = m0) != NULL;) {
336 memcpy(bufp, mtod(m, char *), m->m_len);
337 bufp += m->m_len;
338 MFREE(m, m0);
339 }
340
341 /*
342 * We don't know if the interface will auto-pad for
343 * us, so make sure it's at least as large as a
344 * minimum size Ethernet packet.
345 */
346
347 if (len < (ETHER_MIN_LEN - ETHER_CRC_LEN)) {
348 memset(bufp, 0, ETHER_MIN_LEN - ETHER_CRC_LEN - len);
349 bufp += ETHER_MIN_LEN - ETHER_CRC_LEN - len;
350 } else
351 len = bufp - buf;
352
353 if (OF_write(of->sc_ihandle, buf, len) != len)
354 ifp->if_oerrors++;
355 else
356 ifp->if_opackets++;
357 }
358 }
359
360 static int
361 ofnet_ioctl(struct ifnet *ifp, u_long cmd, void *data)
362 {
363 struct ofnet_softc *of = ifp->if_softc;
364 struct ifaddr *ifa = (struct ifaddr *)data;
365 /* struct ifreq *ifr = (struct ifreq *)data; */
366 int error = 0;
367
368 switch (cmd) {
369 case SIOCINITIFADDR:
370 ifp->if_flags |= IFF_UP;
371
372 switch (ifa->ifa_addr->sa_family) {
373 #ifdef INET
374 case AF_INET:
375 arp_ifinit(ifp, ifa);
376 break;
377 #endif
378 default:
379 break;
380 }
381 ofnet_init(of);
382 break;
383 case SIOCSIFFLAGS:
384 if ((error = ifioctl_common(ifp, cmd, data)) != 0)
385 break;
386 /* XXX re-use ether_ioctl() */
387 switch (ifp->if_flags & (IFF_UP|IFF_RUNNING)) {
388 case IFF_RUNNING:
389 /* If interface is down, but running, stop it. */
390 ofnet_stop(of);
391 break;
392 case IFF_UP:
393 /* If interface is up, but not running, start it. */
394 ofnet_init(of);
395 break;
396 default:
397 /* Other flags are ignored. */
398 break;
399 }
400 break;
401 default:
402 error = ether_ioctl(ifp, cmd, data);
403 break;
404 }
405 return error;
406 }
407
408 static void
409 ofnet_watchdog(struct ifnet *ifp)
410 {
411 struct ofnet_softc *of = ifp->if_softc;
412
413 log(LOG_ERR, "%s: device timeout\n", device_xname(&of->sc_dev));
414 ifp->if_oerrors++;
415 ofnet_stop(of);
416 ofnet_init(of);
417 }
418
419 #if NIPKDB_OFN > 0
420 static void
421 ipkdbofstart(struct ipkdb_if *kip)
422 {
423 int unit = kip->unit - 1;
424
425 if (ipkdb_of)
426 ipkdbattach(kip, &ipkdb_of->sc_ethercom);
427 }
428
429 static void
430 ipkdbofleave(struct ipkdb_if *kip)
431 {
432 }
433
434 static int
435 ipkdbofrcv(struct ipkdb_if *kip, u_char *buf, int poll)
436 {
437 int l;
438
439 do {
440 l = OF_read(kip->port, buf, ETHERMTU);
441 if (l < 0)
442 l = 0;
443 } while (!poll && !l);
444 return l;
445 }
446
447 static void
448 ipkdbofsend(struct ipkdb_if *kip, u_char *buf, int l)
449 {
450 OF_write(kip->port, buf, l);
451 }
452
453 static int
454 ipkdbprobe(cfdata_t match, void *aux)
455 {
456 struct ipkdb_if *kip = aux;
457 static char name[256];
458 int len;
459 int phandle;
460
461 kip->unit = match->cf_unit + 1;
462
463 if (!(kip->port = OF_open("net")))
464 return -1;
465 if ((len = OF_instance_to_path(kip->port, name, sizeof name - 1)) < 0 ||
466 len >= sizeof name)
467 return -1;
468 name[len] = 0;
469 if ((phandle = OF_instance_to_package(kip->port)) == -1)
470 return -1;
471 if (OF_getprop(phandle, "mac-address", kip->myenetaddr,
472 sizeof kip->myenetaddr) < 0)
473 return -1;
474
475 kip->flags |= IPKDB_MYHW;
476 kip->name = name;
477 kip->start = ipkdbofstart;
478 kip->leave = ipkdbofleave;
479 kip->receive = ipkdbofrcv;
480 kip->send = ipkdbofsend;
481
482 kifp = kip;
483
484 return 0;
485 }
486 #endif
487