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