Home | History | Annotate | Line # | Download | only in dev
if_le.c revision 1.44
      1 /*	$NetBSD: if_le.c,v 1.44 1998/01/11 21:57:02 thorpej Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 1998 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by Jason R. Thorpe.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  * 3. All advertising materials mentioning features or use of this software
     19  *    must display the following acknowledgement:
     20  *	This product includes software developed by the NetBSD
     21  *	Foundation, Inc. and its contributors.
     22  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  *    contributors may be used to endorse or promote products derived
     24  *    from this software without specific prior written permission.
     25  *
     26  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  * POSSIBILITY OF SUCH DAMAGE.
     37  */
     38 
     39 /*-
     40  * Copyright (c) 1995 Charles M. Hannum.  All rights reserved.
     41  * Copyright (c) 1992, 1993
     42  *	The Regents of the University of California.  All rights reserved.
     43  *
     44  * This code is derived from software contributed to Berkeley by
     45  * Ralph Campbell and Rick Macklem.
     46  *
     47  * Redistribution and use in source and binary forms, with or without
     48  * modification, are permitted provided that the following conditions
     49  * are met:
     50  * 1. Redistributions of source code must retain the above copyright
     51  *    notice, this list of conditions and the following disclaimer.
     52  * 2. Redistributions in binary form must reproduce the above copyright
     53  *    notice, this list of conditions and the following disclaimer in the
     54  *    documentation and/or other materials provided with the distribution.
     55  * 3. All advertising materials mentioning features or use of this software
     56  *    must display the following acknowledgement:
     57  *	This product includes software developed by the University of
     58  *	California, Berkeley and its contributors.
     59  * 4. Neither the name of the University nor the names of its contributors
     60  *    may be used to endorse or promote products derived from this software
     61  *    without specific prior written permission.
     62  *
     63  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     64  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     65  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     66  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     67  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     68  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     69  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     70  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     71  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     72  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     73  * SUCH DAMAGE.
     74  *
     75  *	@(#)if_le.c	8.2 (Berkeley) 11/16/93
     76  */
     77 
     78 #include "bpfilter.h"
     79 
     80 #include <sys/param.h>
     81 #include <sys/systm.h>
     82 #include <sys/mbuf.h>
     83 #include <sys/syslog.h>
     84 #include <sys/socket.h>
     85 #include <sys/device.h>
     86 
     87 #include <net/if.h>
     88 #include <net/if_ether.h>
     89 #include <net/if_media.h>
     90 
     91 #ifdef INET
     92 #include <netinet/in.h>
     93 #include <netinet/if_inarp.h>
     94 #endif
     95 
     96 #include <machine/autoconf.h>
     97 #include <machine/cpu.h>
     98 #include <machine/intr.h>
     99 
    100 #include <dev/ic/am7990reg.h>
    101 #include <dev/ic/am7990var.h>
    102 
    103 #include <hp300/dev/dioreg.h>
    104 #include <hp300/dev/diovar.h>
    105 #include <hp300/dev/diodevs.h>
    106 #include <hp300/dev/if_lereg.h>
    107 #include <hp300/dev/if_levar.h>
    108 
    109 #include "opt_useleds.h"
    110 
    111 #ifdef USELEDS
    112 #include <hp300/hp300/leds.h>
    113 #endif
    114 
    115 int	lematch __P((struct device *, struct cfdata *, void *));
    116 void	leattach __P((struct device *, struct device *, void *));
    117 
    118 struct cfattach le_ca = {
    119 	sizeof(struct le_softc), lematch, leattach
    120 };
    121 
    122 int	leintr __P((void *));
    123 
    124 hide void le_copytobuf __P((struct am7990_softc *, void *, int, int));
    125 hide void le_copyfrombuf __P((struct am7990_softc *, void *, int, int));
    126 hide void le_zerobuf __P((struct am7990_softc *, int, int));
    127 
    128 /* offsets for:	   ID,   REGS,    MEM,  NVRAM */
    129 int	lestd[] = { 0, 0x4000, 0x8000, 0xC008 };
    130 
    131 hide void lewrcsr __P((struct am7990_softc *, u_int16_t, u_int16_t));
    132 hide u_int16_t lerdcsr __P((struct am7990_softc *, u_int16_t));
    133 
    134 hide void
    135 lewrcsr(sc, port, val)
    136 	struct am7990_softc *sc;
    137 	u_int16_t port, val;
    138 {
    139 	struct le_softc *lesc = (struct le_softc *)sc;
    140 	bus_space_tag_t bst = lesc->sc_bst;
    141 	bus_space_handle_t bsh0 = lesc->sc_bsh0;
    142 	bus_space_handle_t bsh1 = lesc->sc_bsh1;
    143 
    144 	do {
    145 		bus_space_write_2(bst, bsh1, LER1_RAP, port);
    146 	} while ((bus_space_read_1(bst, bsh0, LER0_STATUS) & LE_ACK) == 0);
    147 	do {
    148 		bus_space_write_2(bst, bsh1, LER1_RDP, val);
    149 	} while ((bus_space_read_1(bst, bsh0, LER0_STATUS) & LE_ACK) == 0);
    150 }
    151 
    152 hide u_int16_t
    153 lerdcsr(sc, port)
    154 	struct am7990_softc *sc;
    155 	u_int16_t port;
    156 {
    157 	struct le_softc *lesc = (struct le_softc *)sc;
    158 	bus_space_tag_t bst = lesc->sc_bst;
    159 	bus_space_handle_t bsh0 = lesc->sc_bsh0;
    160 	bus_space_handle_t bsh1 = lesc->sc_bsh1;
    161 	u_int16_t val;
    162 
    163 	do {
    164 		bus_space_write_2(bst, bsh1, LER1_RAP, port);
    165 	} while ((bus_space_read_1(bst, bsh0, LER0_STATUS) & LE_ACK) == 0);
    166 	do {
    167 		val = bus_space_read_2(bst, bsh1, LER1_RDP);
    168 	} while ((bus_space_read_1(bst, bsh0, LER0_STATUS) & LE_ACK) == 0);
    169 
    170 	return (val);
    171 }
    172 
    173 int
    174 lematch(parent, match, aux)
    175 	struct device *parent;
    176 	struct cfdata *match;
    177 	void *aux;
    178 {
    179 	struct dio_attach_args *da = aux;
    180 
    181 	if (da->da_id == DIO_DEVICE_ID_LAN)
    182 		return (1);
    183 	return (0);
    184 }
    185 
    186 /*
    187  * Interface exists: make available by filling in network interface
    188  * record.  System will initialize the interface when it is ready
    189  * to accept packets.
    190  */
    191 void
    192 leattach(parent, self, aux)
    193 	struct device *parent, *self;
    194 	void *aux;
    195 {
    196 	struct dio_attach_args *da = aux;
    197 	struct le_softc *lesc = (struct le_softc *)self;
    198 	struct am7990_softc *sc = &lesc->sc_am7990;
    199 	bus_space_tag_t bst = da->da_bst;
    200 	bus_space_handle_t bsh0, bsh1, bsh2;
    201 	bus_size_t offset;
    202 	int i, ipl;
    203 
    204 	if (bus_space_map(bst, (bus_addr_t)dio_scodetopa(da->da_scode),
    205 	    da->da_size, 0, &bsh0)) {
    206 		printf("\n%s: can't map LANCE registers\n",
    207 		    sc->sc_dev.dv_xname);
    208 		return;
    209 	}
    210 
    211 	if (bus_space_subregion(bst, bsh0, lestd[1], LER1_SIZE, &bsh1)) {
    212 		printf("\n%s: can't subregion LANCE space\n",
    213 		    sc->sc_dev.dv_xname);
    214 		return;
    215 	}
    216 
    217 	if (bus_space_subregion(bst, bsh0, lestd[2], LE_BUFSIZE, &bsh2)) {
    218 		printf("\n%s: can't subregion buffer space\n",
    219 		    sc->sc_dev.dv_xname);
    220 		return;
    221 	}
    222 
    223 	lesc->sc_bst = bst;
    224 	lesc->sc_bsh0 = bsh0;
    225 	lesc->sc_bsh1 = bsh1;
    226 	lesc->sc_bsh2 = bsh2;
    227 
    228 	bus_space_write_1(bst, bsh0, LER0_ID, 0xff);
    229 	DELAY(100);
    230 
    231 	ipl = DIO_IPL((caddr_t)bsh0);			/* XXX */
    232 	printf(" ipl %d", ipl);
    233 
    234 	sc->sc_conf3 = LE_C3_BSWP;
    235 	sc->sc_addr = 0;
    236 	sc->sc_memsize = LE_BUFSIZE;
    237 
    238 	/*
    239 	 * Read the ethernet address off the board, one nibble at a time.
    240 	 */
    241 	offset = lestd[3];
    242 	for (i = 0; i < sizeof(sc->sc_enaddr); i++) {
    243 		sc->sc_enaddr[i] =
    244 		    (bus_space_read_1(bst, bsh0, ++offset) & 0xf) << 4;
    245 		offset++;
    246 		sc->sc_enaddr[i] |=
    247 		    (bus_space_read_1(bst, bsh0, ++offset) & 0xf);
    248 		offset++;
    249 	}
    250 
    251 	sc->sc_copytodesc = le_copytobuf;
    252 	sc->sc_copyfromdesc = le_copyfrombuf;
    253 	sc->sc_copytobuf = le_copytobuf;
    254 	sc->sc_copyfrombuf = le_copyfrombuf;
    255 	sc->sc_zerobuf = le_zerobuf;
    256 
    257 	sc->sc_rdcsr = lerdcsr;
    258 	sc->sc_wrcsr = lewrcsr;
    259 	sc->sc_hwinit = NULL;
    260 
    261 	am7990_config(sc);
    262 
    263 	/* Establish the interrupt handler. */
    264 	(void) dio_intr_establish(leintr, sc, ipl, IPL_NET);
    265 	bus_space_write_1(bst, bsh0, LER0_STATUS, LE_IE);
    266 }
    267 
    268 int
    269 leintr(arg)
    270 	void *arg;
    271 {
    272 	struct am7990_softc *sc = arg;
    273 #ifdef USELEDS
    274 	u_int16_t isr;
    275 
    276 	isr = lerdcsr(sc, LE_CSR0);
    277 
    278 	if ((isr & LE_C0_INTR) == 0)
    279 		return (0);
    280 
    281 	if (isr & LE_C0_RINT)
    282 		ledcontrol(0, 0, LED_LANRCV);
    283 
    284 	if (isr & LE_C0_TINT)
    285 		ledcontrol(0, 0, LED_LANXMT);
    286 #endif /* USELEDS */
    287 
    288 	return (am7990_intr(sc));
    289 }
    290 
    291 hide void
    292 le_copytobuf(sc, from, boff, len)
    293 	struct am7990_softc *sc;
    294 	void *from;
    295 	int boff, len;
    296 {
    297 	struct le_softc *lesc = (struct le_softc *)sc;
    298 
    299 	bus_space_write_region_1(lesc->sc_bst, lesc->sc_bsh2, boff, from, len);
    300 }
    301 
    302 hide void
    303 le_copyfrombuf(sc, to, boff, len)
    304 	struct am7990_softc *sc;
    305 	void *to;
    306 	int boff, len;
    307 {
    308 	struct le_softc *lesc = (struct le_softc *)sc;
    309 
    310 	bus_space_read_region_1(lesc->sc_bst, lesc->sc_bsh2, boff, to, len);
    311 }
    312 
    313 hide void
    314 le_zerobuf(sc, boff, len)
    315 	struct am7990_softc *sc;
    316 	int boff, len;
    317 {
    318 	struct le_softc *lesc = (struct le_softc *)sc;
    319 
    320 	bus_space_set_region_1(lesc->sc_bst, lesc->sc_bsh2, boff, 0, len);
    321 }
    322