Home | History | Annotate | Line # | Download | only in tc
if_le_ioasic.c revision 1.7.2.1
      1  1.7.2.1  thorpej /*	$NetBSD: if_le_ioasic.c,v 1.7.2.1 1997/08/27 23:33:47 thorpej Exp $	*/
      2      1.1      cgd 
      3      1.1      cgd /*
      4      1.1      cgd  * Copyright (c) 1996 Carnegie-Mellon University.
      5      1.1      cgd  * All rights reserved.
      6      1.1      cgd  *
      7      1.1      cgd  * Author: Chris G. Demetriou
      8      1.1      cgd  *
      9      1.1      cgd  * Permission to use, copy, modify and distribute this software and
     10      1.1      cgd  * its documentation is hereby granted, provided that both the copyright
     11      1.1      cgd  * notice and this permission notice appear in all copies of the
     12      1.1      cgd  * software, derivative works or modified versions, and any portions
     13      1.1      cgd  * thereof, and that both notices appear in supporting documentation.
     14      1.1      cgd  *
     15      1.1      cgd  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
     16      1.1      cgd  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
     17      1.1      cgd  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
     18      1.1      cgd  *
     19      1.1      cgd  * Carnegie Mellon requests users of this software to return to
     20      1.1      cgd  *
     21      1.1      cgd  *  Software Distribution Coordinator  or  Software.Distribution (at) CS.CMU.EDU
     22      1.1      cgd  *  School of Computer Science
     23      1.1      cgd  *  Carnegie Mellon University
     24      1.1      cgd  *  Pittsburgh PA 15213-3890
     25      1.1      cgd  *
     26      1.1      cgd  * any improvements or extensions that they make and grant Carnegie the
     27      1.1      cgd  * rights to redistribute these changes.
     28      1.1      cgd  */
     29      1.1      cgd 
     30      1.1      cgd /*
     31      1.1      cgd  * LANCE on DEC IOCTL ASIC.
     32      1.1      cgd  */
     33      1.1      cgd 
     34  1.7.2.1  thorpej #include <sys/cdefs.h>			/* RCS ID &  macro defns */
     35  1.7.2.1  thorpej __KERNEL_RCSID(0, "$NetBSD: if_le_ioasic.c,v 1.7.2.1 1997/08/27 23:33:47 thorpej Exp $");
     36  1.7.2.1  thorpej 
     37      1.1      cgd #include <sys/param.h>
     38      1.1      cgd #include <sys/systm.h>
     39      1.1      cgd #include <sys/mbuf.h>
     40      1.1      cgd #include <sys/syslog.h>
     41      1.1      cgd #include <sys/socket.h>
     42      1.1      cgd #include <sys/device.h>
     43      1.1      cgd 
     44      1.1      cgd #include <net/if.h>
     45      1.5      cgd #include <net/if_ether.h>
     46      1.6  thorpej #include <net/if_media.h>
     47      1.1      cgd 
     48      1.1      cgd #ifdef INET
     49      1.1      cgd #include <netinet/in.h>
     50      1.4       is #include <netinet/if_inarp.h>
     51      1.1      cgd #endif
     52      1.1      cgd 
     53      1.1      cgd #include <dev/ic/am7990reg.h>
     54      1.1      cgd #include <dev/ic/am7990var.h>
     55      1.1      cgd 
     56      1.2  thorpej #include <dev/tc/if_levar.h>
     57      1.1      cgd #include <dev/tc/tcvar.h>
     58      1.1      cgd #include <dev/tc/ioasicvar.h>
     59      1.1      cgd 
     60      1.1      cgd extern caddr_t le_iomem;
     61      1.1      cgd 
     62      1.3      cgd int	le_ioasic_match __P((struct device *, struct cfdata *, void *));
     63      1.1      cgd void	le_ioasic_attach __P((struct device *, struct device *, void *));
     64      1.1      cgd 
     65      1.2  thorpej hide void le_ioasic_copytobuf_gap2 __P((struct am7990_softc *, void *,
     66      1.2  thorpej 	    int, int));
     67      1.2  thorpej hide void le_ioasic_copyfrombuf_gap2 __P((struct am7990_softc *, void *,
     68      1.2  thorpej 	    int, int));
     69      1.2  thorpej 
     70      1.2  thorpej hide void le_ioasic_copytobuf_gap16 __P((struct am7990_softc *, void *,
     71      1.2  thorpej 	    int, int));
     72      1.2  thorpej hide void le_ioasic_copyfrombuf_gap16 __P((struct am7990_softc *, void *,
     73      1.2  thorpej 	    int, int));
     74      1.2  thorpej hide void le_ioasic_zerobuf_gap16 __P((struct am7990_softc *, int, int));
     75      1.2  thorpej 
     76      1.1      cgd struct cfattach le_ioasic_ca = {
     77      1.1      cgd 	sizeof(struct le_softc), le_ioasic_match, le_ioasic_attach
     78      1.1      cgd };
     79      1.1      cgd 
     80      1.1      cgd int
     81      1.1      cgd le_ioasic_match(parent, match, aux)
     82      1.1      cgd 	struct device *parent;
     83      1.3      cgd 	struct cfdata *match;
     84      1.3      cgd 	void *aux;
     85      1.1      cgd {
     86      1.1      cgd 	struct ioasicdev_attach_args *d = aux;
     87      1.1      cgd 
     88      1.1      cgd 	if (!ioasic_submatch(match, aux))
     89      1.1      cgd 		return (0);
     90      1.1      cgd 	if (strncmp("lance", d->iada_modname, TC_ROM_LLEN))
     91      1.1      cgd 		return (0);
     92      1.1      cgd 
     93      1.1      cgd 	return (1);
     94      1.1      cgd }
     95      1.1      cgd 
     96      1.1      cgd void
     97      1.1      cgd le_ioasic_attach(parent, self, aux)
     98      1.1      cgd 	struct device *parent, *self;
     99      1.1      cgd 	void *aux;
    100      1.1      cgd {
    101      1.1      cgd 	struct ioasicdev_attach_args *d = aux;
    102      1.2  thorpej 	register struct le_softc *lesc = (void *)self;
    103      1.2  thorpej 	register struct am7990_softc *sc = &lesc->sc_am7990;
    104      1.1      cgd 
    105      1.2  thorpej 	lesc->sc_r1 = (struct lereg1 *)
    106      1.1      cgd 		TC_DENSE_TO_SPARSE(TC_PHYS_TO_UNCACHED(d->iada_addr));
    107      1.1      cgd 	sc->sc_mem = (void *)TC_PHYS_TO_UNCACHED(le_iomem);
    108      1.1      cgd 
    109      1.2  thorpej 	sc->sc_copytodesc = le_ioasic_copytobuf_gap2;
    110      1.2  thorpej 	sc->sc_copyfromdesc = le_ioasic_copyfrombuf_gap2;
    111      1.2  thorpej 	sc->sc_copytobuf = le_ioasic_copytobuf_gap16;
    112      1.2  thorpej 	sc->sc_copyfrombuf = le_ioasic_copyfrombuf_gap16;
    113      1.2  thorpej 	sc->sc_zerobuf = le_ioasic_zerobuf_gap16;
    114      1.1      cgd 
    115      1.1      cgd 	ioasic_lance_dma_setup(le_iomem);	/* XXX more thought */
    116      1.1      cgd 
    117      1.1      cgd 	dec_le_common_attach(sc, ioasic_lance_ether_address());
    118      1.1      cgd 
    119      1.2  thorpej 	ioasic_intr_establish(parent, d->iada_cookie, TC_IPL_NET,
    120      1.2  thorpej 	    am7990_intr, sc);
    121      1.2  thorpej }
    122      1.2  thorpej 
    123      1.2  thorpej /*
    124      1.2  thorpej  * Special memory access functions needed by ioasic-attached LANCE
    125      1.2  thorpej  * chips.
    126      1.2  thorpej  */
    127      1.2  thorpej 
    128      1.2  thorpej /*
    129      1.2  thorpej  * gap2: two bytes of data followed by two bytes of pad.
    130      1.2  thorpej  *
    131      1.2  thorpej  * Buffers must be 4-byte aligned.  The code doesn't worry about
    132      1.2  thorpej  * doing an extra byte.
    133      1.2  thorpej  */
    134      1.2  thorpej 
    135      1.2  thorpej void
    136      1.2  thorpej le_ioasic_copytobuf_gap2(sc, fromv, boff, len)
    137      1.2  thorpej 	struct am7990_softc *sc;
    138      1.2  thorpej 	void *fromv;
    139      1.2  thorpej 	int boff;
    140      1.2  thorpej 	register int len;
    141      1.2  thorpej {
    142      1.2  thorpej 	volatile caddr_t buf = sc->sc_mem;
    143      1.2  thorpej 	register caddr_t from = fromv;
    144      1.2  thorpej 	register volatile u_int16_t *bptr;
    145      1.2  thorpej 
    146      1.2  thorpej 	if (boff & 0x1) {
    147      1.2  thorpej 		/* handle unaligned first byte */
    148      1.2  thorpej 		bptr = ((volatile u_int16_t *)buf) + (boff - 1);
    149      1.2  thorpej 		*bptr = (*from++ << 8) | (*bptr & 0xff);
    150      1.2  thorpej 		bptr += 2;
    151      1.2  thorpej 		len--;
    152      1.2  thorpej 	} else
    153      1.2  thorpej 		bptr = ((volatile u_int16_t *)buf) + boff;
    154      1.2  thorpej 	while (len > 1) {
    155      1.2  thorpej 		*bptr = (from[1] << 8) | (from[0] & 0xff);
    156      1.2  thorpej 		bptr += 2;
    157      1.2  thorpej 		from += 2;
    158      1.2  thorpej 		len -= 2;
    159      1.2  thorpej 	}
    160      1.2  thorpej 	if (len == 1)
    161      1.2  thorpej 		*bptr = (u_int16_t)*from;
    162      1.2  thorpej }
    163      1.2  thorpej 
    164      1.2  thorpej void
    165      1.2  thorpej le_ioasic_copyfrombuf_gap2(sc, tov, boff, len)
    166      1.2  thorpej 	struct am7990_softc *sc;
    167      1.2  thorpej 	void *tov;
    168      1.2  thorpej 	int boff, len;
    169      1.2  thorpej {
    170      1.2  thorpej 	volatile caddr_t buf = sc->sc_mem;
    171      1.2  thorpej 	register caddr_t to = tov;
    172      1.2  thorpej 	register volatile u_int16_t *bptr;
    173      1.2  thorpej 	register u_int16_t tmp;
    174      1.2  thorpej 
    175      1.2  thorpej 	if (boff & 0x1) {
    176      1.2  thorpej 		/* handle unaligned first byte */
    177      1.2  thorpej 		bptr = ((volatile u_int16_t *)buf) + (boff - 1);
    178      1.2  thorpej 		*to++ = (*bptr >> 8) & 0xff;
    179      1.2  thorpej 		bptr += 2;
    180      1.2  thorpej 		len--;
    181      1.2  thorpej 	} else
    182      1.2  thorpej 		bptr = ((volatile u_int16_t *)buf) + boff;
    183      1.2  thorpej 	while (len > 1) {
    184      1.2  thorpej 		tmp = *bptr;
    185      1.2  thorpej 		*to++ = tmp & 0xff;
    186      1.2  thorpej 		*to++ = (tmp >> 8) & 0xff;
    187      1.2  thorpej 		bptr += 2;
    188      1.2  thorpej 		len -= 2;
    189      1.2  thorpej 	}
    190      1.2  thorpej 	if (len == 1)
    191      1.2  thorpej 		*to = *bptr & 0xff;
    192      1.2  thorpej }
    193      1.2  thorpej 
    194      1.2  thorpej /*
    195      1.2  thorpej  * gap16: 16 bytes of data followed by 16 bytes of pad.
    196      1.2  thorpej  *
    197      1.2  thorpej  * Buffers must be 32-byte aligned.
    198      1.2  thorpej  */
    199      1.2  thorpej 
    200      1.2  thorpej void
    201      1.2  thorpej le_ioasic_copytobuf_gap16(sc, fromv, boff, len)
    202      1.2  thorpej 	struct am7990_softc *sc;
    203      1.2  thorpej 	void *fromv;
    204      1.2  thorpej 	int boff;
    205      1.2  thorpej 	register int len;
    206      1.2  thorpej {
    207      1.2  thorpej 	volatile caddr_t buf = sc->sc_mem;
    208      1.2  thorpej 	register caddr_t from = fromv;
    209      1.2  thorpej 	register caddr_t bptr;
    210      1.2  thorpej 
    211      1.2  thorpej 	bptr = buf + ((boff << 1) & ~0x1f);
    212      1.2  thorpej 	boff &= 0xf;
    213  1.7.2.1  thorpej 
    214  1.7.2.1  thorpej 	/*
    215  1.7.2.1  thorpej 	 * Dispose of boff so destination of subsequent copies is
    216  1.7.2.1  thorpej 	 * 16-byte aligned.
    217  1.7.2.1  thorpej 	 */
    218  1.7.2.1  thorpej 	if (boff) {
    219  1.7.2.1  thorpej 		register int xfer;
    220  1.7.2.1  thorpej 		xfer = min(len, 16 - boff);
    221      1.2  thorpej 		bcopy(from, bptr + boff, xfer);
    222      1.2  thorpej 		from += xfer;
    223      1.2  thorpej 		bptr += 32;
    224      1.2  thorpej 		len -= xfer;
    225      1.2  thorpej 	}
    226  1.7.2.1  thorpej 
    227  1.7.2.1  thorpej 	/* Destination of  copies is now 16-byte aligned. */
    228  1.7.2.1  thorpej 	if (len >= 16)
    229  1.7.2.1  thorpej 		switch ((u_long)from & (sizeof(u_int32_t) -1)) {
    230  1.7.2.1  thorpej 		case 2:
    231  1.7.2.1  thorpej 			/*  Ethernet headers make this the dominant case. */
    232  1.7.2.1  thorpej 		do {
    233  1.7.2.1  thorpej 			register u_int32_t *dst = (u_int32_t*)bptr;
    234  1.7.2.1  thorpej 			register u_int16_t t0;
    235  1.7.2.1  thorpej 			register u_int32_t t1,  t2, t3, t4;
    236  1.7.2.1  thorpej 
    237  1.7.2.1  thorpej 			/* read from odd-16-bit-aligned, cached src */
    238  1.7.2.1  thorpej 			t0 = *(u_int16_t*)from;
    239  1.7.2.1  thorpej 			t1 = *(u_int32_t*)(from+2);
    240  1.7.2.1  thorpej 			t2 = *(u_int32_t*)(from+6);
    241  1.7.2.1  thorpej 			t3 = *(u_int32_t*)(from+10);
    242  1.7.2.1  thorpej 			t4 = *(u_int16_t*)(from+14);
    243  1.7.2.1  thorpej 
    244  1.7.2.1  thorpej 			/* DMA buffer is uncached on mips */
    245  1.7.2.1  thorpej 			dst[0] =         t0 |  (t1 << 16);
    246  1.7.2.1  thorpej 			dst[1] = (t1 >> 16) |  (t2 << 16);
    247  1.7.2.1  thorpej 			dst[2] = (t2 >> 16) |  (t3 << 16);
    248  1.7.2.1  thorpej 			dst[3] = (t3 >> 16) |  (t4 << 16);
    249  1.7.2.1  thorpej 
    250  1.7.2.1  thorpej 			from += 16;
    251  1.7.2.1  thorpej 			bptr += 32;
    252  1.7.2.1  thorpej 			len -= 16;
    253  1.7.2.1  thorpej 		} while (len >= 16);
    254  1.7.2.1  thorpej 		break;
    255  1.7.2.1  thorpej 
    256  1.7.2.1  thorpej 		case 0:
    257  1.7.2.1  thorpej 		do {
    258  1.7.2.1  thorpej 			register u_int32_t *src = (u_int32_t*)from;
    259  1.7.2.1  thorpej 			register u_int32_t *dst = (u_int32_t*)bptr;
    260  1.7.2.1  thorpej 			register u_int32_t t0, t1, t2, t3;
    261  1.7.2.1  thorpej 
    262  1.7.2.1  thorpej 			t0 = src[0]; t1 = src[1]; t2 = src[2]; t3 = src[3];
    263  1.7.2.1  thorpej 			dst[0] = t0; dst[1] = t1; dst[2] = t2; dst[3] = t3;
    264  1.7.2.1  thorpej 
    265  1.7.2.1  thorpej 			from += 16;
    266  1.7.2.1  thorpej 			bptr += 32;
    267  1.7.2.1  thorpej 			len -= 16;
    268  1.7.2.1  thorpej 		} while (len >= 16);
    269  1.7.2.1  thorpej 		break;
    270  1.7.2.1  thorpej 
    271  1.7.2.1  thorpej 		default:
    272  1.7.2.1  thorpej 		/* Does odd-aligned case ever happen? */
    273  1.7.2.1  thorpej 		do {
    274  1.7.2.1  thorpej 			bcopy(from, bptr, 16);
    275  1.7.2.1  thorpej 			from += 16;
    276  1.7.2.1  thorpej 			bptr += 32;
    277  1.7.2.1  thorpej 			len -= 16;
    278  1.7.2.1  thorpej 		} while (len >= 16);
    279  1.7.2.1  thorpej 		break;
    280  1.7.2.1  thorpej 	}
    281  1.7.2.1  thorpej 	if (len)
    282  1.7.2.1  thorpej 		bcopy(from, bptr, len);
    283      1.2  thorpej }
    284      1.2  thorpej 
    285      1.2  thorpej void
    286      1.2  thorpej le_ioasic_copyfrombuf_gap16(sc, tov, boff, len)
    287      1.2  thorpej 	struct am7990_softc *sc;
    288      1.2  thorpej 	void *tov;
    289      1.2  thorpej 	int boff, len;
    290      1.2  thorpej {
    291      1.2  thorpej 	volatile caddr_t buf = sc->sc_mem;
    292      1.2  thorpej 	register caddr_t to = tov;
    293      1.2  thorpej 	register caddr_t bptr;
    294      1.2  thorpej 
    295      1.2  thorpej 	bptr = buf + ((boff << 1) & ~0x1f);
    296      1.2  thorpej 	boff &= 0xf;
    297  1.7.2.1  thorpej 
    298  1.7.2.1  thorpej 	/* Dispose of boff. source of copy is subsequently 16-byte aligned. */
    299  1.7.2.1  thorpej 	if (boff) {
    300  1.7.2.1  thorpej 		register int xfer;
    301  1.7.2.1  thorpej 		xfer = min(len, 16 - boff);
    302  1.7.2.1  thorpej 		bcopy(bptr+boff, to, xfer);
    303      1.2  thorpej 		to += xfer;
    304      1.2  thorpej 		bptr += 32;
    305      1.2  thorpej 		len -= xfer;
    306      1.2  thorpej 	}
    307  1.7.2.1  thorpej 	if (len >= 16)
    308  1.7.2.1  thorpej 	switch ((u_long)to & (sizeof(u_int32_t) -1)) {
    309  1.7.2.1  thorpej 	case 2:
    310  1.7.2.1  thorpej 		/*
    311  1.7.2.1  thorpej 		 * to is aligned to an odd 16-bit boundary.  Ethernet headers
    312  1.7.2.1  thorpej 		 * make this the dominant case (98% or more).
    313  1.7.2.1  thorpej 		 */
    314  1.7.2.1  thorpej 		do {
    315  1.7.2.1  thorpej 			register u_int32_t *src = (u_int32_t*)bptr;
    316  1.7.2.1  thorpej 			register u_int32_t t0, t1, t2, t3;
    317  1.7.2.1  thorpej 
    318  1.7.2.1  thorpej 			/* read from uncached aligned DMA buf */
    319  1.7.2.1  thorpej 			t0 = src[0]; t1 = src[1]; t2 = src[2]; t3 = src[3];
    320  1.7.2.1  thorpej 
    321  1.7.2.1  thorpej 			/* write to odd-16-bit-word aligned dst */
    322  1.7.2.1  thorpej 			*(u_int16_t *) (to+0)  = (u_short)  t0;
    323  1.7.2.1  thorpej 			*(u_int32_t *) (to+2)  = (t0 >> 16) |  (t1 << 16);
    324  1.7.2.1  thorpej 			*(u_int32_t *) (to+6)  = (t1 >> 16) |  (t2 << 16);
    325  1.7.2.1  thorpej 			*(u_int32_t *) (to+10) = (t2 >> 16) |  (t3 << 16);
    326  1.7.2.1  thorpej 			*(u_int16_t *) (to+14) = (t3 >> 16);
    327  1.7.2.1  thorpej 			bptr += 32;
    328  1.7.2.1  thorpej 			to += 16;
    329  1.7.2.1  thorpej 			len -= 16;
    330  1.7.2.1  thorpej 		} while (len > 16);
    331  1.7.2.1  thorpej 		break;
    332  1.7.2.1  thorpej 	case 0:
    333  1.7.2.1  thorpej 		/* 32-bit aligned aligned copy. Rare. */
    334  1.7.2.1  thorpej 		do {
    335  1.7.2.1  thorpej 			register u_int32_t *src = (u_int32_t*)bptr;
    336  1.7.2.1  thorpej 			register u_int32_t *dst = (u_int32_t*)to;
    337  1.7.2.1  thorpej 			register u_int32_t t0, t1, t2, t3;
    338  1.7.2.1  thorpej 
    339  1.7.2.1  thorpej 			t0 = src[0]; t1 = src[1]; t2 = src[2]; t3 = src[3];
    340  1.7.2.1  thorpej 			dst[0] = t0; dst[1] = t1; dst[2] = t2; dst[3] = t3;
    341  1.7.2.1  thorpej 			to += 16;
    342  1.7.2.1  thorpej 			bptr += 32;
    343  1.7.2.1  thorpej 			len -= 16;
    344  1.7.2.1  thorpej 		} while (len  > 16);
    345  1.7.2.1  thorpej 		break;
    346  1.7.2.1  thorpej 
    347  1.7.2.1  thorpej 	/* XXX Does odd-byte-aligned case ever happen? */
    348  1.7.2.1  thorpej 	default:
    349  1.7.2.1  thorpej 		do {
    350  1.7.2.1  thorpej 			bcopy(bptr, to, 16);
    351  1.7.2.1  thorpej 			to += 16;
    352  1.7.2.1  thorpej 			bptr += 32;
    353  1.7.2.1  thorpej 			len -= 16;
    354  1.7.2.1  thorpej 		} while (len  > 16);
    355  1.7.2.1  thorpej 		break;
    356  1.7.2.1  thorpej 	}
    357  1.7.2.1  thorpej 	if (len)
    358  1.7.2.1  thorpej 		bcopy(bptr, to, len);
    359      1.2  thorpej }
    360      1.2  thorpej 
    361      1.2  thorpej void
    362      1.2  thorpej le_ioasic_zerobuf_gap16(sc, boff, len)
    363      1.2  thorpej 	struct am7990_softc *sc;
    364      1.2  thorpej 	int boff, len;
    365      1.2  thorpej {
    366      1.2  thorpej 	volatile caddr_t buf = sc->sc_mem;
    367      1.2  thorpej 	register caddr_t bptr;
    368      1.2  thorpej 	register int xfer;
    369      1.2  thorpej 
    370      1.2  thorpej 	bptr = buf + ((boff << 1) & ~0x1f);
    371      1.2  thorpej 	boff &= 0xf;
    372      1.2  thorpej 	xfer = min(len, 16 - boff);
    373      1.2  thorpej 	while (len > 0) {
    374      1.2  thorpej 		bzero(bptr + boff, xfer);
    375      1.2  thorpej 		bptr += 32;
    376      1.2  thorpej 		boff = 0;
    377      1.2  thorpej 		len -= xfer;
    378      1.2  thorpej 		xfer = min(len, 16);
    379      1.2  thorpej 	}
    380      1.1      cgd }
    381