Home | History | Annotate | Line # | Download | only in eb7500atx
if_cs.c revision 1.7.6.2
      1 /*	$NetBSD: if_cs.c,v 1.7.6.2 2012/06/02 11:08:44 mrg Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 2004 Christopher Gilbert
      5  * All rights reserved.
      6  *
      7  * 1. Redistributions of source code must retain the above copyright
      8  *    notice, this list of conditions and the following disclaimer.
      9  * 2. Redistributions in binary form must reproduce the above copyright
     10  *    notice, this list of conditions and the following disclaimer in the
     11  *    documentation and/or other materials provided with the distribution.
     12  * 3. The name of the author may be used to endorse or promote products
     13  *    derived from this software without specific prior written permission.
     14  *
     15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
     16  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
     17  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     18  * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
     19  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
     20  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     21  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     25  * SUCH DAMAGE.
     26  */
     27 /*
     28  * Copyright 1997
     29  * Digital Equipment Corporation. All rights reserved.
     30  *
     31  * This software is furnished under license and may be used and
     32  * copied only in accordance with the following terms and conditions.
     33  * Subject to these conditions, you may download, copy, install,
     34  * use, modify and distribute this software in source and/or binary
     35  * form. No title or ownership is transferred hereby.
     36  *
     37  * 1) Any source code used, modified or distributed must reproduce
     38  *    and retain this copyright notice and list of conditions as
     39  *    they appear in the source file.
     40  *
     41  * 2) No right is granted to use any trade name, trademark, or logo of
     42  *    Digital Equipment Corporation. Neither the "Digital Equipment
     43  *    Corporation" name nor any trademark or logo of Digital Equipment
     44  *    Corporation may be used to endorse or promote products derived
     45  *    from this software without the prior written permission of
     46  *    Digital Equipment Corporation.
     47  *
     48  * 3) This software is provided "AS-IS" and any express or implied
     49  *    warranties, including but not limited to, any implied warranties
     50  *    of merchantability, fitness for a particular purpose, or
     51  *    non-infringement are disclaimed. In no event shall DIGITAL be
     52  *    liable for any damages whatsoever, and in particular, DIGITAL
     53  *    shall not be liable for special, indirect, consequential, or
     54  *    incidental damages or damages for lost profits, loss of
     55  *    revenue or loss of use, whether such damages arise in contract,
     56  *    negligence, tort, under statute, in equity, at law or otherwise,
     57  *    even if advised of the possibility of such damage.
     58  */
     59 
     60 #include <sys/cdefs.h>
     61 __KERNEL_RCSID(0, "$NetBSD: if_cs.c,v 1.7.6.2 2012/06/02 11:08:44 mrg Exp $");
     62 
     63 #include <sys/param.h>
     64 #include <sys/systm.h>
     65 #include <sys/socket.h>
     66 #include <sys/device.h>
     67 #include <sys/bus.h>
     68 
     69 
     70 #include <sys/rnd.h>
     71 
     72 #include <net/if.h>
     73 #include <net/if_ether.h>
     74 #include <net/if_media.h>
     75 
     76 #include <machine/intr.h>
     77 
     78 #include <acorn32/eb7500atx/rsbus.h>
     79 
     80 #include <dev/ic/cs89x0reg.h>
     81 #include <dev/ic/cs89x0var.h>
     82 
     83 /*
     84  * the CS network interface is accessed at the following address locations:
     85  * 030104f1 		CS8920 PNP Low
     86  * 03010600 03010640	CS8920 Default I/O registers
     87  * 030114f1 		CS8920 PNP High
     88  * 03014000 03016000	CS8920 Default Memory
     89  *
     90  * IRQ is mapped as:
     91  * CS8920 IRQ 3 	INT5
     92  *
     93  * It must be configured as the following:
     94  * The CS8920 PNP address should be configured for ISA base at 0x300
     95  * to achieve the default register mapping as specified.
     96  * Note memory addresses are all have bit 23 tied high in hardware.
     97  * This only effects the value programmed into the CS8920 memory offset
     98  * registers.
     99  *
    100  * Just to add to the fun the I/O registers are layed out as:
    101  * xxxxR1R0
    102  * xxxxR3R2
    103  * xxxxR5R4
    104  *
    105  * This works fine for 16bit accesses, but it makes access to single
    106  * register hard (which does happen on a reset, as we've got to toggle
    107  * the chip into 16bit mode)
    108  *
    109  * Network DRQ is connected to DRQ5
    110  */
    111 
    112 /*
    113  * make a private tag so that we can use rsbus's map/unmap
    114  */
    115 static struct bus_space cs_rsbus_bs_tag;
    116 
    117 int	cs_rsbus_probe(device_t, cfdata_t, void *);
    118 void	cs_rsbus_attach(device_t, device_t, void *);
    119 
    120 static uint8_t cs_rbus_read_1(struct cs_softc *, bus_size_t);
    121 
    122 CFATTACH_DECL_NEW(cs_rsbus, sizeof(struct cs_softc),
    123 	cs_rsbus_probe, cs_rsbus_attach, NULL, NULL);
    124 
    125 /* Available media */
    126 int cs_rbus_media [] = {
    127 	IFM_ETHER|IFM_10_T|IFM_FDX,
    128 	IFM_ETHER|IFM_10_T
    129 };
    130 
    131 int
    132 cs_rsbus_probe(device_t parent, cfdata_t cf, void *aux)
    133 {
    134 	/* for now it'll always attach */
    135 	return 1;
    136 }
    137 
    138 void
    139 cs_rsbus_attach(device_t parent, device_t self, void *aux)
    140 {
    141 	struct cs_softc *sc = device_private(self);
    142 	struct rsbus_attach_args *rs = aux;
    143 	u_int iobase;
    144 
    145 	sc->sc_dev = self;
    146 
    147 	/* member copy */
    148 	cs_rsbus_bs_tag = *rs->sa_iot;
    149 
    150 	/* registers are normally accessed in pairs, on a 4 byte aligned */
    151 	cs_rsbus_bs_tag.bs_cookie = (void *) 1;
    152 
    153 	sc->sc_iot = sc->sc_memt = &cs_rsbus_bs_tag;
    154 
    155 #if 0	/* Do DMA later */
    156 	if (ia->ia_ndrq > 0)
    157 		isc->sc_drq = ia->ia_drq[0].ir_drq;
    158 	else
    159 		isc->sc_drq = -1;
    160 #endif
    161 
    162 	/* device always interrupts on 3 but that routes to IRQ 5 */
    163 	sc->sc_irq = 3;
    164 
    165 	printf("\n");
    166 
    167 	/*
    168 	 * Map the device.
    169 	 */
    170 	iobase = 0x03010600;
    171 	if (bus_space_map(sc->sc_iot, iobase, CS8900_IOSIZE * 4,
    172 	    0, &sc->sc_ioh)) {
    173 		printf("%s: unable to map i/o space\n", device_xname(self));
    174 		return;
    175 	}
    176 
    177 #if 0
    178 	if (bus_space_map(sc->sc_memt, iobase + 0x3A00,
    179 				CS8900_MEMSIZE * 4, 0, &sc->sc_memh)) {
    180 		printf("%s: unable to map memory space\n", device_xname(self));
    181 	} else {
    182 		sc->sc_cfgflags |= CFGFLG_MEM_MODE | CFGFLG_USE_SA;
    183 		sc->sc_pktpgaddr = 1<<23;
    184 		//(0x4000 >> 1)  |  (1<<23);
    185 	}
    186 #endif
    187 	sc->sc_ih = intr_claim(IRQ_INT5, IPL_NET, "cs", cs_intr, sc);
    188 	if (sc->sc_ih == NULL) {
    189 		printf("%s: unable to establish interrupt\n",
    190 		    device_xname(sc->sc_dev));
    191 		return;
    192 	}
    193 
    194 	/* DMA is for later */
    195 	sc->sc_dma_chipinit = NULL;
    196 	sc->sc_dma_attach = NULL;
    197 	sc->sc_dma_process_rx = NULL;
    198 
    199 	sc->sc_cfgflags |= CFGFLG_PARSE_EEPROM;
    200 	sc->sc_io_read_1 = cs_rbus_read_1;
    201 
    202 	/*
    203 	 * also provide media, otherwise it attempts to read the media from
    204 	 * the EEPROM, which again fails
    205 	 */
    206 	cs_attach(sc, NULL, cs_rbus_media, sizeof(cs_rbus_media) / sizeof(cs_rbus_media[0]),
    207 			IFM_ETHER|IFM_10_T|IFM_FDX);
    208 }
    209 
    210 /*
    211  * Provide a function to correctly do reading from oddly numbered registers
    212  * as you can't simply shift the register number
    213  */
    214 static uint8_t
    215 cs_rbus_read_1(struct cs_softc *sc, bus_size_t a)
    216 {
    217 	bus_size_t offset;
    218 	/*
    219 	 * if it's an even address then just use the bus_space_read_1
    220 	 */
    221 	if ((a & 1) == 0)
    222 	{
    223 		return bus_space_read_1(sc->sc_iot, sc->sc_ioh, a);
    224 	}
    225 	/*
    226 	 * otherwise we've get to work out the aligned address and then add
    227 	 * one
    228 	 */
    229 	offset = (a & ~1) << 1;
    230 	offset++;
    231 
    232 	/* and read it, with no shift (cookie is 0) */
    233 	return sc->sc_iot->bs_r_1(0, (sc)->sc_ioh, offset);
    234 }
    235