Home | History | Annotate | Line # | Download | only in ofw
ofnet.c revision 1.20.2.3
      1  1.20.2.3   nathanw /*	$NetBSD: ofnet.c,v 1.20.2.3 2001/11/14 19:15:06 nathanw 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.20.2.3   nathanw 
     34  1.20.2.3   nathanw #include <sys/cdefs.h>
     35  1.20.2.3   nathanw __KERNEL_RCSID(0, "$NetBSD: ofnet.c,v 1.20.2.3 2001/11/14 19:15:06 nathanw Exp $");
     36  1.20.2.3   nathanw 
     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.20.2.1   nathanw #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.4        ws struct cfattach ipkdb_ofn_ca = {
     71       1.4        ws 	0, ipkdb_probe, ipkdb_attach
     72       1.1        ws };
     73       1.1        ws 
     74       1.4        ws static struct ipkdb_if *kifp;
     75      1.13   mycroft static struct ofnet_softc *ipkdb_of;
     76       1.1        ws 
     77  1.20.2.1   nathanw static int ipkdbprobe (struct cfdata *, void *);
     78       1.1        ws #endif
     79       1.1        ws 
     80      1.13   mycroft struct ofnet_softc {
     81       1.1        ws 	struct device sc_dev;
     82       1.1        ws 	int sc_phandle;
     83       1.1        ws 	int sc_ihandle;
     84       1.5        is 	struct ethercom sc_ethercom;
     85      1.18   thorpej 	struct callout sc_callout;
     86       1.1        ws };
     87       1.1        ws 
     88  1.20.2.1   nathanw static int ofnet_match (struct device *, struct cfdata *, void *);
     89  1.20.2.1   nathanw static void ofnet_attach (struct device *, struct device *, void *);
     90       1.1        ws 
     91       1.1        ws struct cfattach ofnet_ca = {
     92      1.13   mycroft 	sizeof(struct ofnet_softc), ofnet_match, ofnet_attach
     93       1.1        ws };
     94       1.1        ws 
     95  1.20.2.1   nathanw static void ofnet_read (struct ofnet_softc *);
     96  1.20.2.1   nathanw static void ofnet_timer (void *);
     97  1.20.2.1   nathanw static void ofnet_init (struct ofnet_softc *);
     98  1.20.2.1   nathanw static void ofnet_stop (struct ofnet_softc *);
     99  1.20.2.1   nathanw 
    100  1.20.2.1   nathanw static void ofnet_start (struct ifnet *);
    101  1.20.2.1   nathanw static int ofnet_ioctl (struct ifnet *, u_long, caddr_t);
    102  1.20.2.1   nathanw static void ofnet_watchdog (struct ifnet *);
    103       1.1        ws 
    104       1.1        ws static int
    105  1.20.2.1   nathanw ofnet_match(struct device *parent, struct cfdata *match, void *aux)
    106       1.1        ws {
    107      1.13   mycroft 	struct ofbus_attach_args *oba = aux;
    108       1.1        ws 	char type[32];
    109       1.1        ws 	int l;
    110       1.1        ws 
    111       1.4        ws #if NIPKDB_OFN > 0
    112       1.1        ws 	if (!parent)
    113       1.4        ws 		return ipkdbprobe(match, aux);
    114       1.1        ws #endif
    115      1.13   mycroft 	if (strcmp(oba->oba_busname, "ofw"))
    116      1.13   mycroft 		return (0);
    117      1.13   mycroft 	if ((l = OF_getprop(oba->oba_phandle, "device_type", type,
    118      1.13   mycroft 	    sizeof type - 1)) < 0)
    119       1.1        ws 		return 0;
    120       1.1        ws 	if (l >= sizeof type)
    121       1.1        ws 		return 0;
    122       1.1        ws 	type[l] = 0;
    123       1.1        ws 	if (strcmp(type, "network"))
    124       1.1        ws 		return 0;
    125       1.1        ws 	return 1;
    126       1.1        ws }
    127       1.1        ws 
    128       1.1        ws static void
    129  1.20.2.1   nathanw ofnet_attach(struct device *parent, struct device *self, void *aux)
    130       1.1        ws {
    131      1.13   mycroft 	struct ofnet_softc *of = (void *)self;
    132       1.5        is 	struct ifnet *ifp = &of->sc_ethercom.ec_if;
    133      1.13   mycroft 	struct ofbus_attach_args *oba = aux;
    134       1.1        ws 	char path[256];
    135       1.1        ws 	int l;
    136       1.5        is 	u_int8_t myaddr[ETHER_ADDR_LEN];
    137       1.1        ws 
    138      1.13   mycroft 	of->sc_phandle = oba->oba_phandle;
    139       1.4        ws #if NIPKDB_OFN > 0
    140      1.13   mycroft 	if (kifp &&
    141      1.13   mycroft 	    kifp->unit - 1 == of->sc_dev.dv_unit &&
    142      1.13   mycroft 	    OF_instance_to_package(kifp->port) == oba->oba_phandle)  {
    143       1.4        ws 		ipkdb_of = of;
    144       1.1        ws 		of->sc_ihandle = kifp->port;
    145       1.1        ws 	} else
    146       1.1        ws #endif
    147      1.13   mycroft 	if ((l = OF_package_to_path(oba->oba_phandle, path,
    148      1.13   mycroft 	    sizeof path - 1)) < 0 ||
    149      1.13   mycroft 	    l >= sizeof path ||
    150      1.13   mycroft 	    (path[l] = 0, !(of->sc_ihandle = OF_open(path))))
    151      1.13   mycroft 		panic("ofnet_attach: unable to open");
    152      1.13   mycroft 	if (OF_getprop(oba->oba_phandle, "mac-address", myaddr,
    153      1.13   mycroft 	    sizeof myaddr) < 0)
    154      1.13   mycroft 		panic("ofnet_attach: no mac-address");
    155       1.5        is 	printf(": address %s\n", ether_sprintf(myaddr));
    156      1.18   thorpej 
    157      1.18   thorpej 	callout_init(&of->sc_callout);
    158      1.18   thorpej 
    159       1.1        ws 	bcopy(of->sc_dev.dv_xname, ifp->if_xname, IFNAMSIZ);
    160       1.1        ws 	ifp->if_softc = of;
    161      1.13   mycroft 	ifp->if_start = ofnet_start;
    162      1.13   mycroft 	ifp->if_ioctl = ofnet_ioctl;
    163      1.13   mycroft 	ifp->if_watchdog = ofnet_watchdog;
    164       1.1        ws 	ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_NOTRAILERS;
    165       1.1        ws 
    166       1.1        ws 	if_attach(ifp);
    167       1.5        is 	ether_ifattach(ifp, myaddr);
    168       1.1        ws 
    169      1.19   thorpej #ifdef __BROKEN_DK_ESTABLISH
    170       1.1        ws 	dk_establish(0, self);					/* XXX */
    171      1.19   thorpej #endif
    172       1.1        ws }
    173       1.1        ws 
    174       1.1        ws static char buf[ETHERMTU + sizeof(struct ether_header)];
    175       1.1        ws 
    176       1.1        ws static void
    177  1.20.2.1   nathanw ofnet_read(struct ofnet_softc *of)
    178       1.1        ws {
    179       1.5        is 	struct ifnet *ifp = &of->sc_ethercom.ec_if;
    180       1.1        ws 	struct mbuf *m, **mp, *head;
    181       1.1        ws 	int l, len;
    182       1.1        ws 	char *bufp;
    183       1.1        ws 
    184       1.4        ws #if NIPKDB_OFN > 0
    185       1.4        ws 	ipkdbrint(kifp, ifp);
    186       1.1        ws #endif
    187       1.1        ws 	while (1) {
    188       1.1        ws 		if ((len = OF_read(of->sc_ihandle, buf, sizeof buf)) < 0) {
    189       1.9   mycroft 			if (len == -2 || len == 0)
    190       1.1        ws 				return;
    191       1.1        ws 			ifp->if_ierrors++;
    192       1.1        ws 			continue;
    193       1.1        ws 		}
    194       1.1        ws 		if (len < sizeof(struct ether_header)) {
    195       1.1        ws 			ifp->if_ierrors++;
    196       1.1        ws 			continue;
    197       1.1        ws 		}
    198       1.1        ws 		bufp = buf;
    199  1.20.2.2   nathanw 
    200       1.1        ws 		/* Allocate a header mbuf */
    201       1.1        ws 		MGETHDR(m, M_DONTWAIT, MT_DATA);
    202       1.1        ws 		if (m == 0) {
    203       1.1        ws 			ifp->if_ierrors++;
    204       1.1        ws 			continue;
    205       1.1        ws 		}
    206       1.1        ws 		m->m_pkthdr.rcvif = ifp;
    207       1.1        ws 		m->m_pkthdr.len = len;
    208  1.20.2.2   nathanw 
    209  1.20.2.2   nathanw 		/*
    210  1.20.2.2   nathanw 		 * We don't know if the interface included the FCS
    211  1.20.2.2   nathanw 		 * or not.  For now, assume that it did if we got
    212  1.20.2.2   nathanw 		 * a packet length that looks like it could include
    213  1.20.2.2   nathanw 		 * the FCS.
    214  1.20.2.2   nathanw  		 *
    215  1.20.2.2   nathanw 		 * XXX Yuck.
    216  1.20.2.2   nathanw 		 */
    217  1.20.2.2   nathanw 
    218  1.20.2.2   nathanw 		if (len > (ETHER_MAX_LEN - ETHER_CRC_LEN))
    219  1.20.2.2   nathanw 			m->m_flags |= M_HASFCS;
    220  1.20.2.2   nathanw 
    221       1.1        ws 		l = MHLEN;
    222       1.1        ws 		head = 0;
    223       1.1        ws 		mp = &head;
    224       1.1        ws 
    225       1.1        ws 		while (len > 0) {
    226       1.1        ws 			if (head) {
    227       1.1        ws 				MGET(m, M_DONTWAIT, MT_DATA);
    228       1.1        ws 				if (m == 0) {
    229       1.1        ws 					ifp->if_ierrors++;
    230       1.1        ws 					m_freem(head);
    231       1.1        ws 					head = 0;
    232       1.1        ws 					break;
    233       1.1        ws 				}
    234       1.1        ws 				l = MLEN;
    235       1.1        ws 			}
    236       1.1        ws 			if (len >= MINCLSIZE) {
    237       1.1        ws 				MCLGET(m, M_DONTWAIT);
    238       1.8   mycroft 				if ((m->m_flags & M_EXT) == 0) {
    239       1.8   mycroft 					ifp->if_ierrors++;
    240       1.9   mycroft 					m_free(m);
    241       1.7   mycroft 					m_freem(head);
    242       1.7   mycroft 					head = 0;
    243       1.7   mycroft 					break;
    244       1.7   mycroft 				}
    245       1.7   mycroft 				l = MCLBYTES;
    246       1.1        ws 			}
    247      1.12       cgd 
    248      1.12       cgd 			/*
    249      1.12       cgd 			 * Make sure the data after the Ethernet header
    250      1.12       cgd 			 * is aligned.
    251      1.12       cgd 			 *
    252      1.12       cgd 			 * XXX Assumes the device is an ethernet, but
    253      1.12       cgd 			 * XXX then so does other code in this driver.
    254      1.12       cgd 			 */
    255      1.12       cgd 			if (head == NULL) {
    256      1.12       cgd 				caddr_t newdata = (caddr_t)ALIGN(m->m_data +
    257      1.12       cgd 				      sizeof(struct ether_header)) -
    258      1.12       cgd 				    sizeof(struct ether_header);
    259      1.12       cgd 				l -= newdata - m->m_data;
    260      1.12       cgd 				m->m_data = newdata;
    261      1.12       cgd 			}
    262      1.12       cgd 
    263       1.1        ws 			m->m_len = l = min(len, l);
    264       1.1        ws 			bcopy(bufp, mtod(m, char *), l);
    265       1.1        ws 			bufp += l;
    266       1.1        ws 			len -= l;
    267       1.1        ws 			*mp = m;
    268       1.1        ws 			mp = &m->m_next;
    269       1.1        ws 		}
    270       1.1        ws 		if (head == 0)
    271       1.1        ws 			continue;
    272       1.1        ws 
    273       1.6   thorpej #if NBPFILTER > 0
    274       1.6   thorpej 		if (ifp->if_bpf)
    275       1.6   thorpej 			bpf_mtap(ifp->if_bpf, m);
    276       1.1        ws #endif
    277       1.1        ws 		ifp->if_ipackets++;
    278      1.17   thorpej 		(*ifp->if_input)(ifp, head);
    279       1.1        ws 	}
    280       1.1        ws }
    281       1.1        ws 
    282       1.1        ws static void
    283      1.16   thorpej ofnet_timer(arg)
    284      1.16   thorpej 	void *arg;
    285       1.1        ws {
    286      1.16   thorpej 	struct ofnet_softc *of = arg;
    287      1.16   thorpej 
    288      1.13   mycroft 	ofnet_read(of);
    289      1.18   thorpej 	callout_reset(&of->sc_callout, 1, ofnet_timer, of);
    290       1.1        ws }
    291       1.1        ws 
    292       1.1        ws static void
    293  1.20.2.1   nathanw ofnet_init(struct ofnet_softc *of)
    294       1.1        ws {
    295       1.5        is 	struct ifnet *ifp = &of->sc_ethercom.ec_if;
    296       1.1        ws 
    297       1.1        ws 	if (ifp->if_flags & IFF_RUNNING)
    298       1.1        ws 		return;
    299       1.1        ws 
    300       1.1        ws 	ifp->if_flags |= IFF_RUNNING;
    301       1.1        ws 	/* Start reading from interface */
    302      1.13   mycroft 	ofnet_timer(of);
    303       1.1        ws 	/* Attempt to start output */
    304      1.13   mycroft 	ofnet_start(ifp);
    305       1.1        ws }
    306       1.1        ws 
    307       1.1        ws static void
    308  1.20.2.1   nathanw ofnet_stop(struct ofnet_softc *of)
    309       1.1        ws {
    310      1.18   thorpej 	callout_stop(&of->sc_callout);
    311       1.5        is 	of->sc_ethercom.ec_if.if_flags &= ~IFF_RUNNING;
    312       1.1        ws }
    313       1.1        ws 
    314       1.1        ws static void
    315  1.20.2.1   nathanw ofnet_start(struct ifnet *ifp)
    316       1.1        ws {
    317      1.13   mycroft 	struct ofnet_softc *of = ifp->if_softc;
    318       1.1        ws 	struct mbuf *m, *m0;
    319       1.1        ws 	char *bufp;
    320       1.1        ws 	int len;
    321       1.1        ws 
    322       1.1        ws 	if (!(ifp->if_flags & IFF_RUNNING))
    323       1.1        ws 		return;
    324       1.1        ws 
    325       1.1        ws 	for (;;) {
    326       1.1        ws 		/* First try reading any packets */
    327      1.13   mycroft 		ofnet_read(of);
    328       1.1        ws 
    329       1.1        ws 		/* Now get the first packet on the queue */
    330       1.1        ws 		IF_DEQUEUE(&ifp->if_snd, m0);
    331       1.1        ws 		if (!m0)
    332       1.1        ws 			return;
    333       1.1        ws 
    334       1.1        ws 		if (!(m0->m_flags & M_PKTHDR))
    335      1.13   mycroft 			panic("ofnet_start: no header mbuf");
    336       1.1        ws 		len = m0->m_pkthdr.len;
    337       1.6   thorpej 
    338       1.6   thorpej #if NBPFILTER > 0
    339       1.6   thorpej 		if (ifp->if_bpf)
    340       1.6   thorpej 			bpf_mtap(ifp->if_bpf, m0);
    341       1.6   thorpej #endif
    342       1.6   thorpej 
    343       1.1        ws 		if (len > ETHERMTU + sizeof(struct ether_header)) {
    344       1.1        ws 			/* packet too large, toss it */
    345       1.1        ws 			ifp->if_oerrors++;
    346       1.1        ws 			m_freem(m0);
    347       1.1        ws 			continue;
    348       1.1        ws 		}
    349       1.1        ws 
    350  1.20.2.1   nathanw 		for (bufp = buf; (m = m0) != NULL;) {
    351       1.1        ws 			bcopy(mtod(m, char *), bufp, m->m_len);
    352       1.1        ws 			bufp += m->m_len;
    353       1.1        ws 			MFREE(m, m0);
    354       1.1        ws 		}
    355  1.20.2.2   nathanw 
    356  1.20.2.2   nathanw 		/*
    357  1.20.2.2   nathanw 		 * We don't know if the interface will auto-pad for
    358  1.20.2.2   nathanw 		 * us, so make sure it's at least as large as a
    359  1.20.2.2   nathanw 		 * minimum size Ethernet packet.
    360  1.20.2.2   nathanw 		 */
    361  1.20.2.2   nathanw 
    362  1.20.2.2   nathanw 		if (len < (ETHER_MIN_LEN - ETHER_CRC_LEN))
    363  1.20.2.2   nathanw 			len = ETHER_MIN_LEN - ETHER_CRC_LEN;
    364  1.20.2.2   nathanw 		else
    365  1.20.2.2   nathanw 			len = bufp - buf;
    366  1.20.2.2   nathanw 
    367  1.20.2.2   nathanw 		if (OF_write(of->sc_ihandle, buf, len) != len)
    368       1.1        ws 			ifp->if_oerrors++;
    369       1.1        ws 		else
    370       1.1        ws 			ifp->if_opackets++;
    371       1.1        ws 	}
    372       1.1        ws }
    373       1.1        ws 
    374       1.1        ws static int
    375  1.20.2.1   nathanw ofnet_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
    376       1.1        ws {
    377      1.13   mycroft 	struct ofnet_softc *of = ifp->if_softc;
    378       1.1        ws 	struct ifaddr *ifa = (struct ifaddr *)data;
    379  1.20.2.1   nathanw 	/* struct ifreq *ifr = (struct ifreq *)data; */
    380       1.1        ws 	int error = 0;
    381       1.1        ws 
    382       1.1        ws 	switch (cmd) {
    383       1.1        ws 	case SIOCSIFADDR:
    384       1.1        ws 		ifp->if_flags |= IFF_UP;
    385       1.1        ws 
    386       1.1        ws 		switch (ifa->ifa_addr->sa_family) {
    387       1.1        ws #ifdef	INET
    388       1.1        ws 		case AF_INET:
    389       1.5        is 			arp_ifinit(ifp, ifa);
    390       1.1        ws 			break;
    391       1.1        ws #endif
    392       1.1        ws 		default:
    393       1.1        ws 			break;
    394       1.1        ws 		}
    395      1.13   mycroft 		ofnet_init(of);
    396       1.1        ws 		break;
    397       1.1        ws 	case SIOCSIFFLAGS:
    398      1.13   mycroft 		if ((ifp->if_flags & IFF_UP) == 0 &&
    399      1.13   mycroft 		    (ifp->if_flags & IFF_RUNNING) != 0) {
    400       1.1        ws 			/* If interface is down, but running, stop it. */
    401      1.13   mycroft 			ofnet_stop(of);
    402      1.13   mycroft 		} else if ((ifp->if_flags & IFF_UP) != 0 &&
    403      1.13   mycroft 			   (ifp->if_flags & IFF_RUNNING) == 0) {
    404       1.1        ws 			/* If interface is up, but not running, start it. */
    405      1.13   mycroft 			ofnet_init(of);
    406       1.1        ws 		} else {
    407       1.1        ws 			/* Other flags are ignored. */
    408       1.1        ws 		}
    409       1.1        ws 		break;
    410       1.1        ws 	default:
    411       1.1        ws 		error = EINVAL;
    412       1.1        ws 		break;
    413       1.1        ws 	}
    414       1.1        ws 	return error;
    415       1.1        ws }
    416       1.1        ws 
    417       1.1        ws static void
    418  1.20.2.1   nathanw ofnet_watchdog(struct ifnet *ifp)
    419       1.1        ws {
    420      1.13   mycroft 	struct ofnet_softc *of = ifp->if_softc;
    421       1.1        ws 
    422       1.1        ws 	log(LOG_ERR, "%s: device timeout\n", of->sc_dev.dv_xname);
    423       1.5        is 	ifp->if_oerrors++;
    424      1.13   mycroft 	ofnet_stop(of);
    425      1.13   mycroft 	ofnet_init(of);
    426       1.1        ws }
    427       1.1        ws 
    428       1.4        ws #if NIPKDB_OFN > 0
    429       1.1        ws static void
    430  1.20.2.1   nathanw ipkdbofstart(struct ipkdb_if *kip)
    431       1.1        ws {
    432       1.1        ws 	int unit = kip->unit - 1;
    433       1.1        ws 
    434       1.4        ws 	if (ipkdb_of)
    435       1.5        is 		ipkdbattach(kip, &ipkdb_of->sc_ethercom);
    436       1.1        ws }
    437       1.1        ws 
    438       1.1        ws static void
    439  1.20.2.1   nathanw ipkdbofleave(struct ipkdb_if *kip)
    440       1.1        ws {
    441       1.1        ws }
    442       1.1        ws 
    443       1.1        ws static int
    444  1.20.2.1   nathanw ipkdbofrcv(struct ipkdb_if *kip, u_char *buf, int poll)
    445       1.1        ws {
    446       1.1        ws 	int l;
    447       1.1        ws 
    448       1.1        ws 	do {
    449       1.1        ws 		l = OF_read(kip->port, buf, ETHERMTU);
    450       1.1        ws 		if (l < 0)
    451       1.1        ws 			l = 0;
    452       1.1        ws 	} while (!poll && !l);
    453       1.1        ws 	return l;
    454       1.1        ws }
    455       1.1        ws 
    456       1.1        ws static void
    457  1.20.2.1   nathanw ipkdbofsend(struct ipkdb_if *kip, u_char *buf, int l)
    458       1.1        ws {
    459       1.1        ws 	OF_write(kip->port, buf, l);
    460       1.1        ws }
    461       1.1        ws 
    462       1.1        ws static int
    463  1.20.2.1   nathanw ipkdbprobe(struct cfdata *match, void *aux)
    464       1.1        ws {
    465       1.4        ws 	struct ipkdb_if *kip = aux;
    466       1.1        ws 	static char name[256];
    467       1.1        ws 	int len;
    468       1.1        ws 	int phandle;
    469       1.1        ws 
    470       1.6   thorpej 	kip->unit = match->cf_unit + 1;
    471       1.1        ws 
    472       1.1        ws 	if (!(kip->port = OF_open("net")))
    473       1.1        ws 		return -1;
    474      1.13   mycroft 	if ((len = OF_instance_to_path(kip->port, name, sizeof name - 1)) < 0 ||
    475      1.13   mycroft 	    len >= sizeof name)
    476       1.1        ws 		return -1;
    477       1.1        ws 	name[len] = 0;
    478       1.1        ws 	if ((phandle = OF_instance_to_package(kip->port)) == -1)
    479       1.1        ws 		return -1;
    480      1.13   mycroft 	if (OF_getprop(phandle, "mac-address", kip->myenetaddr,
    481      1.13   mycroft 	    sizeof kip->myenetaddr) < 0)
    482       1.1        ws 		return -1;
    483       1.1        ws 
    484       1.4        ws 	kip->flags |= IPKDB_MYHW;
    485       1.1        ws 	kip->name = name;
    486       1.4        ws 	kip->start = ipkdbofstart;
    487       1.4        ws 	kip->leave = ipkdbofleave;
    488       1.4        ws 	kip->receive = ipkdbofrcv;
    489       1.4        ws 	kip->send = ipkdbofsend;
    490       1.1        ws 
    491       1.1        ws 	kifp = kip;
    492       1.1        ws 
    493       1.1        ws 	return 0;
    494       1.1        ws }
    495       1.1        ws #endif
    496