if_plip.c revision 111888
1171801Sdelphij/*-
2170809Sdelphij * Copyright (c) 1997 Poul-Henning Kamp
3170809Sdelphij * All rights reserved.
4170809Sdelphij *
5170809Sdelphij * Redistribution and use in source and binary forms, with or without
6170809Sdelphij * modification, are permitted provided that the following conditions
7170809Sdelphij * are met:
8170809Sdelphij * 1. Redistributions of source code must retain the above copyright
9170809Sdelphij *    notice, this list of conditions and the following disclaimer.
10170809Sdelphij * 2. Redistributions in binary form must reproduce the above copyright
11170809Sdelphij *    notice, this list of conditions and the following disclaimer in the
12170809Sdelphij *    documentation and/or other materials provided with the distribution.
13170809Sdelphij *
14170809Sdelphij * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15170809Sdelphij * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16170809Sdelphij * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17170809Sdelphij * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18170809Sdelphij * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19170809Sdelphij * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20170809Sdelphij * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21170809Sdelphij * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22170809Sdelphij * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23170809Sdelphij * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24170809Sdelphij * SUCH DAMAGE.
25170809Sdelphij *
26170809Sdelphij *	From Id: lpt.c,v 1.55.2.1 1996/11/12 09:08:38 phk Exp
27170809Sdelphij * $FreeBSD: head/sys/dev/ppbus/if_plip.c 111888 2003-03-04 23:19:55Z jlemon $
28170809Sdelphij */
29170809Sdelphij
30170809Sdelphij/*
31170809Sdelphij * Parallel port TCP/IP interfaces added.  I looked at the driver from
32170809Sdelphij * MACH but this is a complete rewrite, and btw. incompatible, and it
33170809Sdelphij * should perform better too.  I have never run the MACH driver though.
34170809Sdelphij *
35170809Sdelphij * This driver sends two bytes (0x08, 0x00) in front of each packet,
36170809Sdelphij * to allow us to distinguish another format later.
37170809Sdelphij *
38170809Sdelphij * Now added a Linux/Crynwr compatibility mode which is enabled using
39170809Sdelphij * IF_LINK0 - Tim Wilkinson.
40170809Sdelphij *
41170809Sdelphij * TODO:
42170809Sdelphij *    Make HDLC/PPP mode, use IF_LLC1 to enable.
43170809Sdelphij *
44170809Sdelphij * Connect the two computers using a Laplink parallel cable to use this
45170809Sdelphij * feature:
46197849Sdelphij *
47170809Sdelphij *      +----------------------------------------+
48170809Sdelphij * 	|A-name	A-End	B-End	Descr.	Port/Bit |
49170809Sdelphij *      +----------------------------------------+
50170809Sdelphij *	|DATA0	2	15	Data	0/0x01   |
51170809Sdelphij *	|-ERROR	15	2	   	1/0x08   |
52170809Sdelphij *      +----------------------------------------+
53170809Sdelphij *	|DATA1	3	13	Data	0/0x02	 |
54170809Sdelphij *	|+SLCT	13	3	   	1/0x10   |
55170809Sdelphij *      +----------------------------------------+
56170809Sdelphij *	|DATA2	4	12	Data	0/0x04   |
57170809Sdelphij *	|+PE	12	4	   	1/0x20   |
58170809Sdelphij *      +----------------------------------------+
59170809Sdelphij *	|DATA3	5	10	Strobe	0/0x08   |
60170809Sdelphij *	|-ACK	10	5	   	1/0x40   |
61170809Sdelphij *      +----------------------------------------+
62170809Sdelphij *	|DATA4	6	11	Data	0/0x10   |
63170809Sdelphij *	|BUSY	11	6	   	1/~0x80  |
64170809Sdelphij *      +----------------------------------------+
65170809Sdelphij *	|GND	18-25	18-25	GND	-        |
66170809Sdelphij *      +----------------------------------------+
67170809Sdelphij *
68170809Sdelphij * Expect transfer-rates up to 75 kbyte/sec.
69170809Sdelphij *
70170809Sdelphij * If GCC could correctly grok
71170809Sdelphij *	register int port asm("edx")
72170809Sdelphij * the code would be cleaner
73170809Sdelphij *
74170809Sdelphij * Poul-Henning Kamp <phk@freebsd.org>
75170809Sdelphij */
76170809Sdelphij
77170809Sdelphij/*
78170809Sdelphij * Update for ppbus, PLIP support only - Nicolas Souchu
79170809Sdelphij */
80170809Sdelphij
81170809Sdelphij#include "opt_plip.h"
82170809Sdelphij
83170809Sdelphij#include <sys/param.h>
84170809Sdelphij#include <sys/systm.h>
85170809Sdelphij#include <sys/module.h>
86170809Sdelphij#include <sys/bus.h>
87170809Sdelphij#include <sys/mbuf.h>
88170809Sdelphij#include <sys/socket.h>
89170809Sdelphij#include <sys/sockio.h>
90170809Sdelphij#include <sys/kernel.h>
91170809Sdelphij#include <sys/malloc.h>
92170809Sdelphij
93170809Sdelphij#include <machine/bus.h>
94170809Sdelphij#include <machine/resource.h>
95170809Sdelphij#include <sys/rman.h>
96170809Sdelphij
97170809Sdelphij#include <net/if.h>
98170809Sdelphij#include <net/if_types.h>
99170809Sdelphij#include <net/netisr.h>
100170809Sdelphij
101170809Sdelphij#include <netinet/in.h>
102170809Sdelphij#include <netinet/in_var.h>
103170809Sdelphij
104170809Sdelphij#include <net/bpf.h>
105170809Sdelphij
106170809Sdelphij#include <dev/ppbus/ppbconf.h>
107170809Sdelphij#include "ppbus_if.h"
108170809Sdelphij#include <dev/ppbus/ppbio.h>
109170809Sdelphij
110170809Sdelphij#ifndef LPMTU			/* MTU for the lp# interfaces */
111170809Sdelphij#define	LPMTU	1500
112170809Sdelphij#endif
113170809Sdelphij
114170809Sdelphij#ifndef LPMAXSPIN1		/* DELAY factor for the lp# interfaces */
115170809Sdelphij#define	LPMAXSPIN1	8000   /* Spinning for remote intr to happen */
116170809Sdelphij#endif
117170809Sdelphij
118170809Sdelphij#ifndef LPMAXSPIN2		/* DELAY factor for the lp# interfaces */
119170809Sdelphij#define	LPMAXSPIN2	500	/* Spinning for remote handshake to happen */
120170809Sdelphij#endif
121170809Sdelphij
122170809Sdelphij#ifndef LPMAXERRS		/* Max errors before !RUNNING */
123170809Sdelphij#define	LPMAXERRS	100
124170809Sdelphij#endif
125170809Sdelphij
126170809Sdelphij#define CLPIPHDRLEN	14	/* We send dummy ethernet addresses (two) + packet type in front of packet */
127170809Sdelphij#define	CLPIP_SHAKE	0x80	/* This bit toggles between nibble reception */
128170809Sdelphij#define MLPIPHDRLEN	CLPIPHDRLEN
129170809Sdelphij
130170809Sdelphij#define LPIPHDRLEN	2	/* We send 0x08, 0x00 in front of packet */
131170809Sdelphij#define	LPIP_SHAKE	0x40	/* This bit toggles between nibble reception */
132170809Sdelphij#if !defined(MLPIPHDRLEN) || LPIPHDRLEN > MLPIPHDRLEN
133170809Sdelphij#define MLPIPHDRLEN	LPIPHDRLEN
134170809Sdelphij#endif
135170809Sdelphij
136170809Sdelphij#define	LPIPTBLSIZE	256	/* Size of octet translation table */
137170809Sdelphij
138170809Sdelphij#define lprintf		if (lptflag) printf
139170809Sdelphij
140170809Sdelphij#ifdef PLIP_DEBUG
141170809Sdelphijstatic int volatile lptflag = 1;
142170809Sdelphij#else
143170809Sdelphijstatic int volatile lptflag = 0;
144170809Sdelphij#endif
145170809Sdelphij
146170809Sdelphijstruct lp_data {
147170809Sdelphij	unsigned short lp_unit;
148170809Sdelphij
149170809Sdelphij	struct  ifnet	sc_if;
150170809Sdelphij	u_char		*sc_ifbuf;
151170809Sdelphij	int		sc_iferrs;
152170809Sdelphij
153170809Sdelphij	struct resource *res_irq;
154170809Sdelphij};
155170809Sdelphij
156170809Sdelphij/* Tables for the lp# interface */
157170809Sdelphijstatic u_char *txmith;
158170809Sdelphij#define txmitl (txmith+(1*LPIPTBLSIZE))
159170809Sdelphij#define trecvh (txmith+(2*LPIPTBLSIZE))
160170809Sdelphij#define trecvl (txmith+(3*LPIPTBLSIZE))
161170809Sdelphij
162170809Sdelphijstatic u_char *ctxmith;
163170809Sdelphij#define ctxmitl (ctxmith+(1*LPIPTBLSIZE))
164170809Sdelphij#define ctrecvh (ctxmith+(2*LPIPTBLSIZE))
165170809Sdelphij#define ctrecvl (ctxmith+(3*LPIPTBLSIZE))
166170809Sdelphij
167170809Sdelphij/* Functions for the lp# interface */
168170809Sdelphijstatic int lpinittables(void);
169170809Sdelphijstatic int lpioctl(struct ifnet *, u_long, caddr_t);
170170809Sdelphijstatic int lpoutput(struct ifnet *, struct mbuf *, struct sockaddr *,
171170809Sdelphij	struct rtentry *);
172170809Sdelphijstatic void lp_intr(void *);
173170809Sdelphij
174170809Sdelphij#define DEVTOSOFTC(dev) \
175170809Sdelphij	((struct lp_data *)device_get_softc(dev))
176170809Sdelphij#define UNITOSOFTC(unit) \
177170809Sdelphij	((struct lp_data *)devclass_get_softc(lp_devclass, (unit)))
178170809Sdelphij#define UNITODEVICE(unit) \
179170809Sdelphij	(devclass_get_device(lp_devclass, (unit)))
180170809Sdelphij
181170809Sdelphijstatic devclass_t lp_devclass;
182170809Sdelphij
183170809Sdelphijstatic void
184170809Sdelphijlp_identify(driver_t *driver, device_t parent)
185170809Sdelphij{
186170809Sdelphij
187170809Sdelphij	BUS_ADD_CHILD(parent, 0, "plip", -1);
188170809Sdelphij}
189171801Sdelphij/*
190171801Sdelphij * lpprobe()
191171801Sdelphij */
192171801Sdelphijstatic int
193171801Sdelphijlp_probe(device_t dev)
194171801Sdelphij{
195170809Sdelphij	device_t ppbus = device_get_parent(dev);
196170809Sdelphij	struct lp_data *lp;
197170809Sdelphij	int zero = 0;
198170809Sdelphij	uintptr_t irq;
199170809Sdelphij
200170809Sdelphij	lp = DEVTOSOFTC(dev);
201170809Sdelphij	bzero(lp, sizeof(struct lp_data));
202170809Sdelphij
203170809Sdelphij	/* retrieve the ppbus irq */
204170809Sdelphij	BUS_READ_IVAR(ppbus, dev, PPBUS_IVAR_IRQ, &irq);
205170809Sdelphij
206170809Sdelphij	/* if we haven't interrupts, the probe fails */
207170809Sdelphij	if (irq == -1) {
208170809Sdelphij		device_printf(dev, "not an interrupt driven port, failed.\n");
209170809Sdelphij		return (ENXIO);
210170809Sdelphij	}
211170809Sdelphij
212170809Sdelphij	/* reserve the interrupt resource, expecting irq is available to continue */
213170809Sdelphij	lp->res_irq = bus_alloc_resource(dev, SYS_RES_IRQ, &zero, irq, irq, 1,
214170809Sdelphij					 RF_SHAREABLE);
215170809Sdelphij	if (lp->res_irq == 0) {
216170809Sdelphij		device_printf(dev, "cannot reserve interrupt, failed.\n");
217170809Sdelphij		return (ENXIO);
218170809Sdelphij	}
219170809Sdelphij
220170809Sdelphij	/*
221170809Sdelphij	 * lp dependent initialisation.
222170809Sdelphij	 */
223170809Sdelphij	lp->lp_unit = device_get_unit(dev);
224170809Sdelphij
225170809Sdelphij	device_set_desc(dev, "PLIP network interface");
226170809Sdelphij
227170809Sdelphij	return (0);
228170809Sdelphij}
229170809Sdelphij
230170809Sdelphijstatic int
231170809Sdelphijlp_attach (device_t dev)
232170809Sdelphij{
233170809Sdelphij	struct lp_data *lp = DEVTOSOFTC(dev);
234170809Sdelphij	struct ifnet *ifp = &lp->sc_if;
235170809Sdelphij
236170809Sdelphij	ifp->if_softc = lp;
237170809Sdelphij	ifp->if_name = "lp";
238170809Sdelphij	ifp->if_unit = device_get_unit(dev);
239170809Sdelphij	ifp->if_mtu = LPMTU;
240170809Sdelphij	ifp->if_flags = IFF_SIMPLEX | IFF_POINTOPOINT | IFF_MULTICAST;
241170809Sdelphij	ifp->if_ioctl = lpioctl;
242170809Sdelphij	ifp->if_output = lpoutput;
243170809Sdelphij	ifp->if_type = IFT_PARA;
244170809Sdelphij	ifp->if_hdrlen = 0;
245170809Sdelphij	ifp->if_addrlen = 0;
246170809Sdelphij	ifp->if_snd.ifq_maxlen = IFQ_MAXLEN;
247197849Sdelphij	if_attach(ifp);
248197849Sdelphij
249197849Sdelphij	bpfattach(ifp, DLT_NULL, sizeof(u_int32_t));
250197849Sdelphij
251170809Sdelphij	return (0);
252170809Sdelphij}
253170809Sdelphij/*
254170809Sdelphij * Build the translation tables for the LPIP (BSD unix) protocol.
255170809Sdelphij * We don't want to calculate these nasties in our tight loop, so we
256170809Sdelphij * precalculate them when we initialize.
257170809Sdelphij */
258170809Sdelphijstatic int
259170809Sdelphijlpinittables (void)
260170809Sdelphij{
261170809Sdelphij    int i;
262170809Sdelphij
263170809Sdelphij    if (!txmith)
264170809Sdelphij	txmith = malloc(4*LPIPTBLSIZE, M_DEVBUF, M_NOWAIT);
265170809Sdelphij
266170809Sdelphij    if (!txmith)
267170809Sdelphij	return 1;
268170809Sdelphij
269170809Sdelphij    if (!ctxmith)
270170809Sdelphij	ctxmith = malloc(4*LPIPTBLSIZE, M_DEVBUF, M_NOWAIT);
271170809Sdelphij
272170809Sdelphij    if (!ctxmith)
273170809Sdelphij	return 1;
274170809Sdelphij
275170809Sdelphij    for (i=0; i < LPIPTBLSIZE; i++) {
276170809Sdelphij	ctxmith[i] = (i & 0xF0) >> 4;
277170809Sdelphij	ctxmitl[i] = 0x10 | (i & 0x0F);
278170809Sdelphij	ctrecvh[i] = (i & 0x78) << 1;
279170809Sdelphij	ctrecvl[i] = (i & 0x78) >> 3;
280170809Sdelphij    }
281170809Sdelphij
282170809Sdelphij    for (i=0; i < LPIPTBLSIZE; i++) {
283	txmith[i] = ((i & 0x80) >> 3) | ((i & 0x70) >> 4) | 0x08;
284	txmitl[i] = ((i & 0x08) << 1) | (i & 0x07);
285	trecvh[i] = ((~i) & 0x80) | ((i & 0x38) << 1);
286	trecvl[i] = (((~i) & 0x80) >> 4) | ((i & 0x38) >> 3);
287    }
288
289    return 0;
290}
291
292/*
293 * Process an ioctl request.
294 */
295
296static int
297lpioctl (struct ifnet *ifp, u_long cmd, caddr_t data)
298{
299    device_t dev = UNITODEVICE(ifp->if_unit);
300    device_t ppbus = device_get_parent(dev);
301    struct lp_data *sc = DEVTOSOFTC(dev);
302    struct ifaddr *ifa = (struct ifaddr *)data;
303    struct ifreq *ifr = (struct ifreq *)data;
304    u_char *ptr;
305    void *ih;
306    int error;
307
308    switch (cmd) {
309
310    case SIOCSIFDSTADDR:
311    case SIOCAIFADDR:
312    case SIOCSIFADDR:
313	if (ifa->ifa_addr->sa_family != AF_INET)
314	    return EAFNOSUPPORT;
315
316	ifp->if_flags |= IFF_UP;
317	/* FALLTHROUGH */
318    case SIOCSIFFLAGS:
319	if ((!(ifp->if_flags & IFF_UP)) && (ifp->if_flags & IFF_RUNNING)) {
320
321	    ppb_wctr(ppbus, 0x00);
322	    ifp->if_flags &= ~IFF_RUNNING;
323
324	    /* IFF_UP is not set, try to release the bus anyway */
325	    ppb_release_bus(ppbus, dev);
326	    break;
327	}
328	if (((ifp->if_flags & IFF_UP)) && (!(ifp->if_flags & IFF_RUNNING))) {
329
330	    /* XXX
331	     * Should the request be interruptible?
332	     */
333	    if ((error = ppb_request_bus(ppbus, dev, PPB_WAIT|PPB_INTR)))
334		return (error);
335
336	    /* Now IFF_UP means that we own the bus */
337
338	    ppb_set_mode(ppbus, PPB_COMPATIBLE);
339
340	    if (lpinittables()) {
341		ppb_release_bus(ppbus, dev);
342		return ENOBUFS;
343	    }
344
345	    sc->sc_ifbuf = malloc(sc->sc_if.if_mtu + MLPIPHDRLEN,
346				  M_DEVBUF, M_WAITOK);
347	    if (!sc->sc_ifbuf) {
348		ppb_release_bus(ppbus, dev);
349		return ENOBUFS;
350	    }
351
352	    /* attach our interrupt handler, later detached when the bus is released */
353	    if ((error = BUS_SETUP_INTR(ppbus, dev, sc->res_irq,
354					INTR_TYPE_NET, lp_intr, dev, &ih))) {
355		ppb_release_bus(ppbus, dev);
356		return (error);
357	    }
358
359	    ppb_wctr(ppbus, IRQENABLE);
360	    ifp->if_flags |= IFF_RUNNING;
361	}
362	break;
363
364    case SIOCSIFMTU:
365	ptr = sc->sc_ifbuf;
366	sc->sc_ifbuf = malloc(ifr->ifr_mtu+MLPIPHDRLEN, M_DEVBUF, M_NOWAIT);
367	if (!sc->sc_ifbuf) {
368	    sc->sc_ifbuf = ptr;
369	    return ENOBUFS;
370	}
371	if (ptr)
372	    free(ptr,M_DEVBUF);
373	sc->sc_if.if_mtu = ifr->ifr_mtu;
374	break;
375
376    case SIOCGIFMTU:
377	ifr->ifr_mtu = sc->sc_if.if_mtu;
378	break;
379
380    case SIOCADDMULTI:
381    case SIOCDELMULTI:
382	if (ifr == 0) {
383	    return EAFNOSUPPORT;		/* XXX */
384	}
385	switch (ifr->ifr_addr.sa_family) {
386
387	case AF_INET:
388	    break;
389
390	default:
391	    return EAFNOSUPPORT;
392	}
393	break;
394
395    case SIOCGIFMEDIA:
396	/*
397	 * No ifmedia support at this stage; maybe use it
398	 * in future for eg. protocol selection.
399	 */
400	return EINVAL;
401
402    default:
403	lprintf("LP:ioctl(0x%lx)\n", cmd);
404	return EINVAL;
405    }
406    return 0;
407}
408
409static __inline int
410clpoutbyte (u_char byte, int spin, device_t ppbus)
411{
412	ppb_wdtr(ppbus, ctxmitl[byte]);
413	while (ppb_rstr(ppbus) & CLPIP_SHAKE)
414		if (--spin == 0) {
415			return 1;
416		}
417	ppb_wdtr(ppbus, ctxmith[byte]);
418	while (!(ppb_rstr(ppbus) & CLPIP_SHAKE))
419		if (--spin == 0) {
420			return 1;
421		}
422	return 0;
423}
424
425static __inline int
426clpinbyte (int spin, device_t ppbus)
427{
428	u_char c, cl;
429
430	while((ppb_rstr(ppbus) & CLPIP_SHAKE))
431	    if(!--spin) {
432		return -1;
433	    }
434	cl = ppb_rstr(ppbus);
435	ppb_wdtr(ppbus, 0x10);
436
437	while(!(ppb_rstr(ppbus) & CLPIP_SHAKE))
438	    if(!--spin) {
439		return -1;
440	    }
441	c = ppb_rstr(ppbus);
442	ppb_wdtr(ppbus, 0x00);
443
444	return (ctrecvl[cl] | ctrecvh[c]);
445}
446
447static void
448lptap(struct ifnet *ifp, struct mbuf *m)
449{
450	/*
451	 * Send a packet through bpf. We need to prepend the address family
452	 * as a four byte field. Cons up a dummy header to pacify bpf. This
453	 * is safe because bpf will only read from the mbuf (i.e., it won't
454	 * try to free it or keep a pointer to it).
455	 */
456	u_int32_t af = AF_INET;
457	struct mbuf m0;
458
459	m0.m_next = m;
460	m0.m_len = sizeof(u_int32_t);
461	m0.m_data = (char *)&af;
462	BPF_MTAP(ifp, &m0);
463}
464
465static void
466lp_intr (void *arg)
467{
468	device_t dev = (device_t)arg;
469        device_t ppbus = device_get_parent(dev);
470	struct lp_data *sc = DEVTOSOFTC(dev);
471	int len, s, j;
472	u_char *bp;
473	u_char c, cl;
474	struct mbuf *top;
475
476	s = splhigh();
477
478	if (sc->sc_if.if_flags & IFF_LINK0) {
479
480	    /* Ack. the request */
481	    ppb_wdtr(ppbus, 0x01);
482
483	    /* Get the packet length */
484	    j = clpinbyte(LPMAXSPIN2, ppbus);
485	    if (j == -1)
486		goto err;
487	    len = j;
488	    j = clpinbyte(LPMAXSPIN2, ppbus);
489	    if (j == -1)
490		goto err;
491	    len = len + (j << 8);
492	    if (len > sc->sc_if.if_mtu + MLPIPHDRLEN)
493		goto err;
494
495	    bp  = sc->sc_ifbuf;
496
497	    while (len--) {
498	        j = clpinbyte(LPMAXSPIN2, ppbus);
499	        if (j == -1) {
500		    goto err;
501	        }
502	        *bp++ = j;
503	    }
504	    /* Get and ignore checksum */
505	    j = clpinbyte(LPMAXSPIN2, ppbus);
506	    if (j == -1) {
507	        goto err;
508	    }
509
510	    len = bp - sc->sc_ifbuf;
511	    if (len <= CLPIPHDRLEN)
512	        goto err;
513
514	    sc->sc_iferrs = 0;
515
516	    len -= CLPIPHDRLEN;
517	    sc->sc_if.if_ipackets++;
518	    sc->sc_if.if_ibytes += len;
519	    top = m_devget(sc->sc_ifbuf + CLPIPHDRLEN, len, 0, &sc->sc_if, 0);
520	    if (top) {
521		if (sc->sc_if.if_bpf)
522		    lptap(&sc->sc_if, top);
523		netisr_queue(NETISR_IP, top);
524	    }
525	    goto done;
526	}
527	while ((ppb_rstr(ppbus) & LPIP_SHAKE)) {
528	    len = sc->sc_if.if_mtu + LPIPHDRLEN;
529	    bp  = sc->sc_ifbuf;
530	    while (len--) {
531
532		cl = ppb_rstr(ppbus);
533		ppb_wdtr(ppbus, 8);
534
535		j = LPMAXSPIN2;
536		while((ppb_rstr(ppbus) & LPIP_SHAKE))
537		    if(!--j) goto err;
538
539		c = ppb_rstr(ppbus);
540		ppb_wdtr(ppbus, 0);
541
542		*bp++= trecvh[cl] | trecvl[c];
543
544		j = LPMAXSPIN2;
545		while (!((cl=ppb_rstr(ppbus)) & LPIP_SHAKE)) {
546		    if (cl != c &&
547			(((cl = ppb_rstr(ppbus)) ^ 0xb8) & 0xf8) ==
548			  (c & 0xf8))
549			goto end;
550		    if (!--j) goto err;
551		}
552	    }
553
554	end:
555	    len = bp - sc->sc_ifbuf;
556	    if (len <= LPIPHDRLEN)
557		goto err;
558
559	    sc->sc_iferrs = 0;
560
561	    len -= LPIPHDRLEN;
562	    sc->sc_if.if_ipackets++;
563	    sc->sc_if.if_ibytes += len;
564	    top = m_devget(sc->sc_ifbuf + LPIPHDRLEN, len, 0, &sc->sc_if, 0);
565	    if (top) {
566		if (sc->sc_if.if_bpf)
567		    lptap(&sc->sc_if, top);
568		netisr_queue(NETISR_IP, top);
569	    }
570	}
571	goto done;
572
573    err:
574	ppb_wdtr(ppbus, 0);
575	lprintf("R");
576	sc->sc_if.if_ierrors++;
577	sc->sc_iferrs++;
578
579	/*
580	 * We are not able to send receive anything for now,
581	 * so stop wasting our time
582	 */
583	if (sc->sc_iferrs > LPMAXERRS) {
584	    printf("lp%d: Too many errors, Going off-line.\n", device_get_unit(dev));
585	    ppb_wctr(ppbus, 0x00);
586	    sc->sc_if.if_flags &= ~IFF_RUNNING;
587	    sc->sc_iferrs=0;
588	}
589
590    done:
591	splx(s);
592	return;
593}
594
595static __inline int
596lpoutbyte (u_char byte, int spin, device_t ppbus)
597{
598    ppb_wdtr(ppbus, txmith[byte]);
599    while (!(ppb_rstr(ppbus) & LPIP_SHAKE))
600	if (--spin == 0)
601		return 1;
602    ppb_wdtr(ppbus, txmitl[byte]);
603    while (ppb_rstr(ppbus) & LPIP_SHAKE)
604	if (--spin == 0)
605		return 1;
606    return 0;
607}
608
609static int
610lpoutput (struct ifnet *ifp, struct mbuf *m,
611	  struct sockaddr *dst, struct rtentry *rt)
612{
613    device_t dev = UNITODEVICE(ifp->if_unit);
614    device_t ppbus = device_get_parent(dev);
615    int s, err;
616    struct mbuf *mm;
617    u_char *cp = "\0\0";
618    u_char chksum = 0;
619    int count = 0;
620    int i, len, spin;
621
622    /* We need a sensible value if we abort */
623    cp++;
624    ifp->if_flags |= IFF_RUNNING;
625
626    err = 1;			/* assume we're aborting because of an error */
627
628    s = splhigh();
629
630    /* Suspend (on laptops) or receive-errors might have taken us offline */
631    ppb_wctr(ppbus, IRQENABLE);
632
633    if (ifp->if_flags & IFF_LINK0) {
634
635	if (!(ppb_rstr(ppbus) & CLPIP_SHAKE)) {
636	    lprintf("&");
637	    lp_intr(dev);
638	}
639
640	/* Alert other end to pending packet */
641	spin = LPMAXSPIN1;
642	ppb_wdtr(ppbus, 0x08);
643	while ((ppb_rstr(ppbus) & 0x08) == 0)
644		if (--spin == 0) {
645			goto nend;
646		}
647
648	/* Calculate length of packet, then send that */
649
650	count += 14;		/* Ethernet header len */
651
652	mm = m;
653	for (mm = m; mm; mm = mm->m_next) {
654		count += mm->m_len;
655	}
656	if (clpoutbyte(count & 0xFF, LPMAXSPIN1, ppbus))
657		goto nend;
658	if (clpoutbyte((count >> 8) & 0xFF, LPMAXSPIN1, ppbus))
659		goto nend;
660
661	/* Send dummy ethernet header */
662	for (i = 0; i < 12; i++) {
663		if (clpoutbyte(i, LPMAXSPIN1, ppbus))
664			goto nend;
665		chksum += i;
666	}
667
668	if (clpoutbyte(0x08, LPMAXSPIN1, ppbus))
669		goto nend;
670	if (clpoutbyte(0x00, LPMAXSPIN1, ppbus))
671		goto nend;
672	chksum += 0x08 + 0x00;		/* Add into checksum */
673
674	mm = m;
675	do {
676		cp = mtod(mm, u_char *);
677		len = mm->m_len;
678		while (len--) {
679			chksum += *cp;
680			if (clpoutbyte(*cp++, LPMAXSPIN2, ppbus))
681				goto nend;
682		}
683	} while ((mm = mm->m_next));
684
685	/* Send checksum */
686	if (clpoutbyte(chksum, LPMAXSPIN2, ppbus))
687		goto nend;
688
689	/* Go quiescent */
690	ppb_wdtr(ppbus, 0);
691
692	err = 0;			/* No errors */
693
694	nend:
695	if (err)  {				/* if we didn't timeout... */
696		ifp->if_oerrors++;
697		lprintf("X");
698	} else {
699		ifp->if_opackets++;
700		ifp->if_obytes += m->m_pkthdr.len;
701		if (ifp->if_bpf)
702		    lptap(ifp, m);
703	}
704
705	m_freem(m);
706
707	if (!(ppb_rstr(ppbus) & CLPIP_SHAKE)) {
708		lprintf("^");
709		lp_intr(dev);
710	}
711	(void) splx(s);
712	return 0;
713    }
714
715    if (ppb_rstr(ppbus) & LPIP_SHAKE) {
716        lprintf("&");
717        lp_intr(dev);
718    }
719
720    if (lpoutbyte(0x08, LPMAXSPIN1, ppbus))
721        goto end;
722    if (lpoutbyte(0x00, LPMAXSPIN2, ppbus))
723        goto end;
724
725    mm = m;
726    do {
727        cp = mtod(mm,u_char *);
728	len = mm->m_len;
729        while (len--)
730	    if (lpoutbyte(*cp++, LPMAXSPIN2, ppbus))
731	        goto end;
732    } while ((mm = mm->m_next));
733
734    err = 0;				/* no errors were encountered */
735
736    end:
737    --cp;
738    ppb_wdtr(ppbus, txmitl[*cp] ^ 0x17);
739
740    if (err)  {				/* if we didn't timeout... */
741	ifp->if_oerrors++;
742        lprintf("X");
743    } else {
744	ifp->if_opackets++;
745	ifp->if_obytes += m->m_pkthdr.len;
746	if (ifp->if_bpf)
747	    lptap(ifp, m);
748    }
749
750    m_freem(m);
751
752    if (ppb_rstr(ppbus) & LPIP_SHAKE) {
753	lprintf("^");
754	lp_intr(dev);
755    }
756
757    (void) splx(s);
758    return 0;
759}
760
761static device_method_t lp_methods[] = {
762  	/* device interface */
763	DEVMETHOD(device_identify,	lp_identify),
764	DEVMETHOD(device_probe,		lp_probe),
765	DEVMETHOD(device_attach,	lp_attach),
766
767	{ 0, 0 }
768};
769
770static driver_t lp_driver = {
771  "plip",
772  lp_methods,
773  sizeof(struct lp_data),
774};
775
776DRIVER_MODULE(plip, ppbus, lp_driver, lp_devclass, 0, 0);
777