Home | History | Annotate | Line # | Download | only in vme
if_ie_vme.c revision 1.8
      1  1.8     soren /*	$NetBSD: if_ie_vme.c,v 1.8 2000/03/13 23:52:37 soren Exp $	*/
      2  1.1        pk 
      3  1.1        pk /*-
      4  1.1        pk  * Copyright (c) 1995 Charles D. Cranor
      5  1.1        pk  * All rights reserved.
      6  1.1        pk  *
      7  1.1        pk  * Redistribution and use in source and binary forms, with or without
      8  1.1        pk  * modification, are permitted provided that the following conditions
      9  1.1        pk  * are met:
     10  1.1        pk  * 1. Redistributions of source code must retain the above copyright
     11  1.1        pk  *    notice, this list of conditions and the following disclaimer.
     12  1.1        pk  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1        pk  *    notice, this list of conditions and the following disclaimer in the
     14  1.1        pk  *    documentation and/or other materials provided with the distribution.
     15  1.1        pk  * 3. All advertising materials mentioning features or use of this software
     16  1.1        pk  *    must display the following acknowledgement:
     17  1.1        pk  *      This product includes software developed by Charles D. Cranor.
     18  1.1        pk  * 4. The name of the author may not be used to endorse or promote products
     19  1.1        pk  *    derived from this software without specific prior written permission.
     20  1.1        pk  *
     21  1.1        pk  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22  1.1        pk  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23  1.1        pk  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24  1.1        pk  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25  1.1        pk  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26  1.1        pk  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27  1.1        pk  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28  1.1        pk  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29  1.1        pk  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30  1.1        pk  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31  1.1        pk  */
     32  1.1        pk 
     33  1.1        pk /*
     34  1.1        pk  * Converted to SUN ie driver by Charles D. Cranor,
     35  1.1        pk  *		October 1994, January 1995.
     36  1.1        pk  */
     37  1.1        pk 
     38  1.1        pk /*
     39  1.1        pk  * The i82586 is a very painful chip, found in sun3's, sun-4/100's
     40  1.1        pk  * sun-4/200's, and VME based suns.  The byte order is all wrong for a
     41  1.1        pk  * SUN, making life difficult.  Programming this chip is mostly the same,
     42  1.1        pk  * but certain details differ from system to system.  This driver is
     43  1.1        pk  * written so that different "ie" interfaces can be controled by the same
     44  1.1        pk  * driver.
     45  1.1        pk  */
     46  1.1        pk 
     47  1.1        pk /*
     48  1.1        pk  * programming notes:
     49  1.1        pk  *
     50  1.1        pk  * the ie chip operates in a 24 bit address space.
     51  1.1        pk  *
     52  1.1        pk  * most ie interfaces appear to be divided into two parts:
     53  1.1        pk  *	 - generic 586 stuff
     54  1.1        pk  *	 - board specific
     55  1.1        pk  *
     56  1.1        pk  * generic:
     57  1.1        pk  *	the generic stuff of the ie chip is all done with data structures
     58  1.1        pk  * 	that live in the chip's memory address space.   the chip expects
     59  1.1        pk  * 	its main data structure (the sys conf ptr -- SCP) to be at a fixed
     60  1.1        pk  * 	address in its 24 bit space: 0xfffff4
     61  1.1        pk  *
     62  1.1        pk  *      the SCP points to another structure called the ISCP.
     63  1.1        pk  *      the ISCP points to another structure called the SCB.
     64  1.1        pk  * 	the SCB has a status field, a linked list of "commands", and
     65  1.1        pk  * 	a linked list of "receive buffers".   these are data structures that
     66  1.1        pk  * 	live in memory, not registers.
     67  1.1        pk  *
     68  1.1        pk  * board:
     69  1.1        pk  * 	to get the chip to do anything, you first put a command in the
     70  1.1        pk  * 	command data structure list.   then you have to signal "attention"
     71  1.1        pk  * 	to the chip to get it to look at the command.   how you
     72  1.1        pk  * 	signal attention depends on what board you have... on PC's
     73  1.1        pk  * 	there is an i/o port number to do this, on sun's there is a
     74  1.1        pk  * 	register bit you toggle.
     75  1.1        pk  *
     76  1.1        pk  * 	to get data from the chip you program it to interrupt...
     77  1.1        pk  *
     78  1.1        pk  *
     79  1.1        pk  * sun issues:
     80  1.1        pk  *
     81  1.1        pk  *      there are 3 kinds of sun "ie" interfaces:
     82  1.1        pk  *        1 - a VME/multibus card
     83  1.1        pk  *        2 - an on-board interface (sun3's, sun-4/100's, and sun-4/200's)
     84  1.1        pk  *        3 - another VME board called the 3E
     85  1.1        pk  *
     86  1.1        pk  * 	the VME boards lives in vme16 space.   only 16 and 8 bit accesses
     87  1.1        pk  * 	are allowed, so functions that copy data must be aware of this.
     88  1.1        pk  *
     89  1.1        pk  * 	the chip is an intel chip.  this means that the byte order
     90  1.1        pk  * 	on all the "short"s in the chip's data structures is wrong.
     91  1.1        pk  * 	so, constants described in the intel docs are swapped for the sun.
     92  1.1        pk  * 	that means that any buffer pointers you give the chip must be
     93  1.1        pk  * 	swapped to intel format.   yuck.
     94  1.1        pk  *
     95  1.1        pk  *   VME/multibus interface:
     96  1.1        pk  * 	for the multibus interface the board ignores the top 4 bits
     97  1.2        pk  * 	of the chip address.   the multibus interface has its own
     98  1.2        pk  * 	MMU like page map (without protections or valid bits, etc).
     99  1.1        pk  * 	there are 256 pages of physical memory on the board (each page
    100  1.2        pk  * 	is 1024 bytes).   There are 1024 slots in the page map.  so,
    101  1.1        pk  * 	a 1024 byte page takes up 10 bits of address for the offset,
    102  1.1        pk  * 	and if there are 1024 slots in the page that is another 10 bits
    103  1.2        pk  * 	of the address.   That makes a 20 bit address, and as stated
    104  1.1        pk  * 	earlier the board ignores the top 4 bits, so that accounts
    105  1.1        pk  * 	for all 24 bits of address.
    106  1.1        pk  *
    107  1.2        pk  * 	Note that the last entry of the page map maps the top of the
    108  1.1        pk  * 	24 bit address space and that the SCP is supposed to be at
    109  1.1        pk  * 	0xfffff4 (taking into account allignment).   so,
    110  1.1        pk  *	for multibus, that entry in the page map has to be used for the SCP.
    111  1.1        pk  *
    112  1.2        pk  * 	The page map effects BOTH how the ie chip sees the
    113  1.1        pk  * 	memory, and how the host sees it.
    114  1.1        pk  *
    115  1.2        pk  * 	The page map is part of the "register" area of the board
    116  1.2        pk  *
    117  1.2        pk  *	The page map to control where ram appears in the address space.
    118  1.2        pk  *	We choose to have RAM start at 0 in the 24 bit address space.
    119  1.2        pk  *
    120  1.2        pk  *	to get the phyiscal address of the board's RAM you must take the
    121  1.2        pk  *	top 12 bits of the physical address of the register address and
    122  1.2        pk  *	or in the 4 bits from the status word as bits 17-20 (remember that
    123  1.2        pk  *	the board ignores the chip's top 4 address lines). For example:
    124  1.2        pk  *	if the register is @ 0xffe88000, then the top 12 bits are 0xffe00000.
    125  1.8     soren  *	to get the 4 bits from the status word just do status & IEVME_HADDR.
    126  1.2        pk  *	suppose the value is "4".   Then just shift it left 16 bits to get
    127  1.2        pk  *	it into bits 17-20 (e.g. 0x40000).    Then or it to get the
    128  1.2        pk  *	address of RAM (in our example: 0xffe40000).   see the attach routine!
    129  1.2        pk  *
    130  1.1        pk  *
    131  1.1        pk  *   on-board interface:
    132  1.1        pk  *
    133  1.2        pk  *	on the onboard ie interface the 24 bit address space is hardwired
    134  1.2        pk  *	to be 0xff000000 -> 0xffffffff of KVA.   this means that sc_iobase
    135  1.2        pk  *	will be 0xff000000.   sc_maddr will be where ever we allocate RAM
    136  1.2        pk  *	in KVA.    note that since the SCP is at a fixed address it means
    137  1.2        pk  *	that we have to allocate a fixed KVA for the SCP.
    138  1.1        pk  *	<fill in useful info later>
    139  1.1        pk  *
    140  1.1        pk  *
    141  1.1        pk  *   VME3E interface:
    142  1.1        pk  *
    143  1.1        pk  *	<fill in useful info later>
    144  1.1        pk  *
    145  1.1        pk  */
    146  1.1        pk 
    147  1.1        pk #include <sys/param.h>
    148  1.1        pk #include <sys/systm.h>
    149  1.1        pk #include <sys/errno.h>
    150  1.1        pk #include <sys/device.h>
    151  1.1        pk #include <sys/protosw.h>
    152  1.1        pk #include <sys/socket.h>
    153  1.1        pk 
    154  1.1        pk #include <net/if.h>
    155  1.1        pk #include <net/if_types.h>
    156  1.1        pk #include <net/if_dl.h>
    157  1.2        pk #include <net/if_media.h>
    158  1.1        pk #include <net/if_ether.h>
    159  1.1        pk 
    160  1.1        pk #include <vm/vm.h>
    161  1.1        pk 
    162  1.1        pk #include <machine/bus.h>
    163  1.7  drochner #include <machine/intr.h>
    164  1.1        pk #include <dev/vme/vmevar.h>
    165  1.1        pk 
    166  1.1        pk #include <dev/ic/i82586reg.h>
    167  1.1        pk #include <dev/ic/i82586var.h>
    168  1.1        pk 
    169  1.7  drochner #include "locators.h"
    170  1.1        pk 
    171  1.1        pk /*
    172  1.1        pk  * VME/multibus definitions
    173  1.1        pk  */
    174  1.1        pk #define IEVME_PAGESIZE 1024	/* bytes */
    175  1.1        pk #define IEVME_PAGSHIFT 10	/* bits */
    176  1.1        pk #define IEVME_NPAGES   256	/* number of pages on chip */
    177  1.1        pk #define IEVME_MAPSZ    1024	/* number of entries in the map */
    178  1.1        pk 
    179  1.1        pk /*
    180  1.1        pk  * PTE for the page map
    181  1.1        pk  */
    182  1.1        pk #define IEVME_SBORDR 0x8000	/* sun byte order */
    183  1.1        pk #define IEVME_IBORDR 0x0000	/* intel byte ordr */
    184  1.1        pk 
    185  1.1        pk #define IEVME_P2MEM  0x2000	/* memory is on P2 */
    186  1.1        pk #define IEVME_OBMEM  0x0000	/* memory is on board */
    187  1.1        pk 
    188  1.1        pk #define IEVME_PGMASK 0x0fff	/* gives the physical page frame number */
    189  1.1        pk 
    190  1.1        pk struct ievme {
    191  1.1        pk 	u_int16_t	pgmap[IEVME_MAPSZ];
    192  1.1        pk 	u_int16_t	xxx[32];	/* prom */
    193  1.1        pk 	u_int16_t	status;		/* see below for bits */
    194  1.1        pk 	u_int16_t	xxx2;		/* filler */
    195  1.1        pk 	u_int16_t	pectrl;		/* parity control (see below) */
    196  1.1        pk 	u_int16_t	peaddr;		/* low 16 bits of address */
    197  1.1        pk };
    198  1.1        pk 
    199  1.1        pk /*
    200  1.1        pk  * status bits
    201  1.1        pk  */
    202  1.1        pk #define IEVME_RESET 0x8000	/* reset board */
    203  1.1        pk #define IEVME_ONAIR 0x4000	/* go out of loopback 'on-air' */
    204  1.1        pk #define IEVME_ATTEN 0x2000	/* attention */
    205  1.1        pk #define IEVME_IENAB 0x1000	/* interrupt enable */
    206  1.1        pk #define IEVME_PEINT 0x0800	/* parity error interrupt enable */
    207  1.1        pk #define IEVME_PERR  0x0200	/* parity error flag */
    208  1.1        pk #define IEVME_INT   0x0100	/* interrupt flag */
    209  1.1        pk #define IEVME_P2EN  0x0020	/* enable p2 bus */
    210  1.1        pk #define IEVME_256K  0x0010	/* 256kb rams */
    211  1.1        pk #define IEVME_HADDR 0x000f	/* mask for bits 17-20 of address */
    212  1.1        pk 
    213  1.1        pk /*
    214  1.1        pk  * parity control
    215  1.1        pk  */
    216  1.1        pk #define IEVME_PARACK 0x0100	/* parity error ack */
    217  1.1        pk #define IEVME_PARSRC 0x0080	/* parity error source */
    218  1.1        pk #define IEVME_PAREND 0x0040	/* which end of the data got the error */
    219  1.1        pk #define IEVME_PARADR 0x000f	/* mask to get bits 17-20 of parity address */
    220  1.1        pk 
    221  1.2        pk /* Supported media */
    222  1.2        pk static int media[] = {
    223  1.2        pk 	IFM_ETHER | IFM_10_2,
    224  1.2        pk };
    225  1.2        pk #define NMEDIA	(sizeof(media) / sizeof(media[0]))
    226  1.1        pk 
    227  1.1        pk /*
    228  1.1        pk  * the 3E board not supported (yet?)
    229  1.1        pk  */
    230  1.1        pk 
    231  1.1        pk 
    232  1.2        pk static void ie_vmereset __P((struct ie_softc *, int));
    233  1.1        pk static void ie_vmeattend __P((struct ie_softc *));
    234  1.1        pk static void ie_vmerun __P((struct ie_softc *));
    235  1.2        pk static int  ie_vmeintr __P((struct ie_softc *, int));
    236  1.1        pk 
    237  1.1        pk int ie_vme_match __P((struct device *, struct cfdata *, void *));
    238  1.1        pk void ie_vme_attach __P((struct device *, struct device *, void *));
    239  1.1        pk 
    240  1.7  drochner struct ie_vme_softc {
    241  1.7  drochner 	struct ie_softc ie;
    242  1.7  drochner 	bus_space_tag_t ievt;
    243  1.7  drochner 	bus_space_handle_t ievh;
    244  1.7  drochner };
    245  1.7  drochner 
    246  1.1        pk struct cfattach ie_vme_ca = {
    247  1.7  drochner 	sizeof(struct ie_vme_softc), ie_vme_match, ie_vme_attach
    248  1.1        pk };
    249  1.1        pk 
    250  1.7  drochner #define read_iev(sc, reg) \
    251  1.7  drochner   bus_space_read_2(sc->ievt, sc->ievh, offsetof(struct ievme, reg))
    252  1.7  drochner #define write_iev(sc, reg, val) \
    253  1.7  drochner   bus_space_write_2(sc->ievt, sc->ievh, offsetof(struct ievme, reg), val)
    254  1.2        pk 
    255  1.1        pk /*
    256  1.1        pk  * MULTIBUS/VME support routines
    257  1.1        pk  */
    258  1.1        pk void
    259  1.2        pk ie_vmereset(sc, what)
    260  1.1        pk 	struct ie_softc *sc;
    261  1.2        pk 	int what;
    262  1.1        pk {
    263  1.7  drochner 	struct ie_vme_softc *vsc = (struct ie_vme_softc *)sc;
    264  1.7  drochner 	write_iev(vsc, status, IEVME_RESET);
    265  1.1        pk 	delay(100);		/* XXX could be shorter? */
    266  1.7  drochner 	write_iev(vsc, status, 0);
    267  1.1        pk }
    268  1.1        pk 
    269  1.1        pk void
    270  1.1        pk ie_vmeattend(sc)
    271  1.1        pk 	struct ie_softc *sc;
    272  1.1        pk {
    273  1.7  drochner 	struct ie_vme_softc *vsc = (struct ie_vme_softc *)sc;
    274  1.1        pk 
    275  1.7  drochner 	/* flag! */
    276  1.7  drochner 	write_iev(vsc, status, read_iev(vsc, status) | IEVME_ATTEN);
    277  1.7  drochner 	/* down. */
    278  1.7  drochner 	write_iev(vsc, status, read_iev(vsc, status) & ~IEVME_ATTEN);
    279  1.1        pk }
    280  1.1        pk 
    281  1.1        pk void
    282  1.1        pk ie_vmerun(sc)
    283  1.1        pk 	struct ie_softc *sc;
    284  1.1        pk {
    285  1.7  drochner 	struct ie_vme_softc *vsc = (struct ie_vme_softc *)sc;
    286  1.1        pk 
    287  1.7  drochner 	write_iev(vsc, status, read_iev(vsc, status)
    288  1.7  drochner 		  | IEVME_ONAIR | IEVME_IENAB | IEVME_PEINT);
    289  1.1        pk }
    290  1.1        pk 
    291  1.1        pk int
    292  1.2        pk ie_vmeintr(sc, where)
    293  1.1        pk 	struct ie_softc *sc;
    294  1.2        pk 	int where;
    295  1.1        pk {
    296  1.7  drochner 	struct ie_vme_softc *vsc = (struct ie_vme_softc *)sc;
    297  1.1        pk 
    298  1.2        pk 	if (where != INTR_ENTER)
    299  1.2        pk 		return (0);
    300  1.2        pk 
    301  1.1        pk         /*
    302  1.1        pk          * check for parity error
    303  1.1        pk          */
    304  1.7  drochner 	if (read_iev(vsc, status) & IEVME_PERR) {
    305  1.1        pk 		printf("%s: parity error (ctrl 0x%x @ 0x%02x%04x)\n",
    306  1.7  drochner 		       sc->sc_dev.dv_xname, read_iev(vsc, pectrl),
    307  1.7  drochner 		       read_iev(vsc, pectrl) & IEVME_HADDR,
    308  1.7  drochner 		       read_iev(vsc, peaddr));
    309  1.7  drochner 		write_iev(vsc, pectrl, read_iev(vsc, pectrl) | IEVME_PARACK);
    310  1.1        pk 	}
    311  1.1        pk 	return (0);
    312  1.1        pk }
    313  1.1        pk 
    314  1.2        pk void ie_memcopyin __P((struct ie_softc *, void *, int, size_t));
    315  1.2        pk void ie_memcopyout __P((struct ie_softc *, const void *, int, size_t));
    316  1.2        pk 
    317  1.2        pk /*
    318  1.2        pk  * Copy board memory to kernel.
    319  1.2        pk  */
    320  1.2        pk void
    321  1.2        pk ie_memcopyin(sc, p, offset, size)
    322  1.2        pk 	struct ie_softc	*sc;
    323  1.2        pk 	void *p;
    324  1.2        pk 	int offset;
    325  1.2        pk 	size_t size;
    326  1.2        pk {
    327  1.7  drochner 	size_t help;
    328  1.7  drochner 
    329  1.7  drochner 	if ((offset & 1) && ((u_long)p & 1) && size > 0) {
    330  1.7  drochner 		*(u_int8_t *)p = bus_space_read_1(sc->bt, sc->bh, offset);
    331  1.7  drochner 		offset++;
    332  1.7  drochner 		p = (u_int8_t *)p + 1;
    333  1.7  drochner 		size--;
    334  1.7  drochner 	}
    335  1.7  drochner 
    336  1.7  drochner 	if ((offset & 1) || ((u_long)p & 1)) {
    337  1.7  drochner 		bus_space_read_region_1(sc->bt, sc->bh, offset, p, size);
    338  1.7  drochner 		return;
    339  1.7  drochner 	}
    340  1.7  drochner 
    341  1.7  drochner 	help = size / 2;
    342  1.7  drochner 	bus_space_read_region_2(sc->bt, sc->bh, offset, p, help);
    343  1.7  drochner 	if (2 * help == size)
    344  1.7  drochner 		return;
    345  1.7  drochner 
    346  1.7  drochner 	offset += 2 * help;
    347  1.7  drochner 	p = (u_int16_t *)p + help;
    348  1.7  drochner 	*(u_int8_t *)p = bus_space_read_1(sc->bt, sc->bh, offset);
    349  1.2        pk }
    350  1.2        pk 
    351  1.2        pk /*
    352  1.7  drochner  * Copy from kernel space to board memory.
    353  1.2        pk  */
    354  1.2        pk void
    355  1.2        pk ie_memcopyout(sc, p, offset, size)
    356  1.2        pk 	struct ie_softc	*sc;
    357  1.2        pk 	const void *p;
    358  1.2        pk 	int offset;
    359  1.2        pk 	size_t size;
    360  1.2        pk {
    361  1.7  drochner 	size_t help;
    362  1.7  drochner 
    363  1.7  drochner 	if ((offset & 1) && ((u_long)p & 1) && size > 0) {
    364  1.7  drochner 		bus_space_write_1(sc->bt, sc->bh, offset, *(u_int8_t *)p);
    365  1.7  drochner 		offset++;
    366  1.7  drochner 		p = (u_int8_t *)p + 1;
    367  1.7  drochner 		size--;
    368  1.7  drochner 	}
    369  1.7  drochner 
    370  1.7  drochner 	if ((offset & 1) || ((u_long)p & 1)) {
    371  1.7  drochner 		bus_space_write_region_1(sc->bt, sc->bh, offset, p, size);
    372  1.7  drochner 		return;
    373  1.7  drochner 	}
    374  1.7  drochner 
    375  1.7  drochner 	help = size / 2;
    376  1.7  drochner 	bus_space_write_region_2(sc->bt, sc->bh, offset, p, help);
    377  1.7  drochner 	if (2 * help == size)
    378  1.7  drochner 		return;
    379  1.7  drochner 
    380  1.7  drochner 	offset += 2 * help;
    381  1.7  drochner 	p = (u_int16_t *)p + help;
    382  1.7  drochner 	bus_space_write_1(sc->bt, sc->bh, offset, *(u_int8_t *)p);
    383  1.2        pk }
    384  1.2        pk 
    385  1.2        pk /* read a 16-bit value at BH offset */
    386  1.2        pk u_int16_t ie_vme_read16 __P((struct ie_softc *, int offset));
    387  1.2        pk /* write a 16-bit value at BH offset */
    388  1.2        pk void ie_vme_write16 __P((struct ie_softc *, int offset, u_int16_t value));
    389  1.2        pk void ie_vme_write24 __P((struct ie_softc *, int offset, int addr));
    390  1.2        pk 
    391  1.2        pk u_int16_t
    392  1.2        pk ie_vme_read16(sc, offset)
    393  1.2        pk 	struct ie_softc *sc;
    394  1.2        pk 	int offset;
    395  1.2        pk {
    396  1.2        pk 	u_int16_t v;
    397  1.2        pk 
    398  1.2        pk 	bus_space_barrier(sc->bt, sc->bh, offset, 2, BUS_SPACE_BARRIER_READ);
    399  1.2        pk 	v = bus_space_read_2(sc->bt, sc->bh, offset);
    400  1.2        pk 	return (((v&0xff)<<8) | ((v>>8)&0xff));
    401  1.2        pk }
    402  1.2        pk 
    403  1.2        pk void
    404  1.2        pk ie_vme_write16(sc, offset, v)
    405  1.2        pk 	struct ie_softc *sc;
    406  1.2        pk 	int offset;
    407  1.2        pk 	u_int16_t v;
    408  1.2        pk {
    409  1.2        pk 	int v0 = ((((v)&0xff)<<8) | (((v)>>8)&0xff));
    410  1.2        pk 	bus_space_write_2(sc->bt, sc->bh, offset, v0);
    411  1.2        pk 	bus_space_barrier(sc->bt, sc->bh, offset, 2, BUS_SPACE_BARRIER_WRITE);
    412  1.2        pk }
    413  1.2        pk 
    414  1.2        pk void
    415  1.2        pk ie_vme_write24(sc, offset, addr)
    416  1.2        pk 	struct ie_softc *sc;
    417  1.2        pk 	int offset;
    418  1.2        pk 	int addr;
    419  1.1        pk {
    420  1.2        pk 	u_char *f = (u_char *)&addr;
    421  1.3        pk 	u_int16_t v0, v1;
    422  1.3        pk 	u_char *t;
    423  1.3        pk 
    424  1.3        pk 	t = (u_char *)&v0;
    425  1.3        pk 	t[0] = f[3]; t[1] = f[2];
    426  1.3        pk 	bus_space_write_2(sc->bt, sc->bh, offset, v0);
    427  1.3        pk 
    428  1.3        pk 	t = (u_char *)&v1;
    429  1.3        pk 	t[0] = f[1]; t[1] = 0;
    430  1.3        pk 	bus_space_write_2(sc->bt, sc->bh, offset+2, v1);
    431  1.1        pk 
    432  1.2        pk 	bus_space_barrier(sc->bt, sc->bh, offset, 4, BUS_SPACE_BARRIER_WRITE);
    433  1.1        pk }
    434  1.1        pk 
    435  1.1        pk int
    436  1.1        pk ie_vme_match(parent, cf, aux)
    437  1.1        pk 	struct device *parent;
    438  1.1        pk 	struct cfdata *cf;
    439  1.1        pk 	void *aux;
    440  1.1        pk {
    441  1.1        pk 	struct vme_attach_args *va = aux;
    442  1.7  drochner 	vme_chipset_tag_t ct = va->va_vct;
    443  1.7  drochner 	vme_am_t mod;
    444  1.7  drochner 	int error;
    445  1.7  drochner 
    446  1.7  drochner 	if (va->numcfranges < 2) {
    447  1.7  drochner 		printf("ie_vme_match: need 2 ranges\n");
    448  1.7  drochner 		return (0);
    449  1.7  drochner 	}
    450  1.7  drochner 	if ((va->r[1].offset & 0xff0fffff) ||
    451  1.7  drochner 	    ((va->r[0].offset & 0xfff00000)
    452  1.7  drochner 	     != (va->r[1].offset & 0xfff00000))) {
    453  1.7  drochner 		printf("ie_vme_match: base address mismatch\n");
    454  1.7  drochner 		return (0);
    455  1.7  drochner 	}
    456  1.7  drochner 	if (va->r[0].size != VMECF_LEN_DEFAULT &&
    457  1.7  drochner 	    va->r[0].size != sizeof(sizeof(struct ievme))) {
    458  1.7  drochner 		printf("ie_vme_match: bad csr size\n");
    459  1.7  drochner 		return (0);
    460  1.7  drochner 	}
    461  1.7  drochner 	if (va->r[1].size == VMECF_LEN_DEFAULT) {
    462  1.7  drochner 		printf("ie_vme_match: must specify memory size\n");
    463  1.7  drochner 		return (0);
    464  1.7  drochner 	}
    465  1.7  drochner 
    466  1.7  drochner 	mod = 0x3d; /* VME_AM_A24|VME_AM_MBO|VME_AM_SUPER|VME_AM_DATA */
    467  1.7  drochner 
    468  1.7  drochner 	if (va->r[0].am != VMECF_AM_DEFAULT &&
    469  1.7  drochner 	    va->r[0].am != mod)
    470  1.7  drochner 		return (0);
    471  1.1        pk 
    472  1.7  drochner 	if (vme_space_alloc(va->va_vct, va->r[0].offset,
    473  1.7  drochner 			    sizeof(struct ievme), mod))
    474  1.7  drochner 		return (0);
    475  1.7  drochner 	if (vme_space_alloc(va->va_vct, va->r[1].offset,
    476  1.7  drochner 			    va->r[1].size, mod)) {
    477  1.7  drochner 		vme_space_free(va->va_vct, va->r[0].offset,
    478  1.7  drochner 			       sizeof(struct ievme), mod);
    479  1.7  drochner 		return (0);
    480  1.7  drochner 	}
    481  1.7  drochner 	error = vme_probe(ct, va->r[0].offset, 2, mod, VME_D16, 0, 0);
    482  1.7  drochner 	vme_space_free(va->va_vct, va->r[0].offset, sizeof(struct ievme), mod);
    483  1.7  drochner 	vme_space_free(va->va_vct, va->r[1].offset, va->r[1].size, mod);
    484  1.7  drochner 
    485  1.7  drochner 	return (error == 0);
    486  1.1        pk }
    487  1.1        pk 
    488  1.1        pk void
    489  1.1        pk ie_vme_attach(parent, self, aux)
    490  1.1        pk 	struct device *parent;
    491  1.1        pk 	struct device *self;
    492  1.1        pk 	void   *aux;
    493  1.1        pk {
    494  1.1        pk 	u_int8_t myaddr[ETHER_ADDR_LEN];
    495  1.7  drochner #ifdef sparc
    496  1.1        pk 	extern void myetheraddr(u_char *);	/* should be elsewhere */
    497  1.7  drochner #endif
    498  1.7  drochner 	struct ie_vme_softc *vsc = (void *) self;
    499  1.1        pk 	struct vme_attach_args *va = aux;
    500  1.7  drochner 	vme_chipset_tag_t ct = va->va_vct;
    501  1.7  drochner 	struct ie_softc *sc;
    502  1.1        pk 	vme_intr_handle_t ih;
    503  1.7  drochner 	vme_addr_t rampaddr;
    504  1.7  drochner 	vme_size_t memsize;
    505  1.7  drochner 	vme_mapresc_t resc;
    506  1.7  drochner 	int lcv;
    507  1.1        pk 
    508  1.7  drochner 	vme_am_t mod;
    509  1.1        pk 
    510  1.1        pk 	/*
    511  1.1        pk 	 * *note*: we don't detect the difference between a VME3E and
    512  1.1        pk 	 * a multibus/vme card.   if you want to use a 3E you'll have
    513  1.1        pk 	 * to fix this.
    514  1.1        pk 	 */
    515  1.7  drochner 	mod = 0x3d; /* VME_AM_A24|VME_AM_MBO|VME_AM_SUPER|VME_AM_DATA */
    516  1.7  drochner 	if (vme_space_alloc(va->va_vct, va->r[0].offset,
    517  1.7  drochner 			    sizeof(struct ievme), mod) ||
    518  1.7  drochner 	    vme_space_alloc(va->va_vct, va->r[1].offset,
    519  1.7  drochner 			    va->r[1].size, mod))
    520  1.7  drochner 		panic("if_ie: vme alloc");
    521  1.1        pk 
    522  1.7  drochner 	sc = &vsc->ie;
    523  1.1        pk 
    524  1.1        pk 	sc->hwreset = ie_vmereset;
    525  1.1        pk 	sc->hwinit = ie_vmerun;
    526  1.1        pk 	sc->chan_attn = ie_vmeattend;
    527  1.1        pk 	sc->intrhook = ie_vmeintr;
    528  1.2        pk 	sc->memcopyout = ie_memcopyout;
    529  1.2        pk 	sc->memcopyin = ie_memcopyin;
    530  1.2        pk 	sc->ie_bus_read16 = ie_vme_read16;
    531  1.2        pk 	sc->ie_bus_write16 = ie_vme_write16;
    532  1.2        pk 	sc->ie_bus_write24 = ie_vme_write24;
    533  1.1        pk 
    534  1.7  drochner 	memsize = va->r[1].size;
    535  1.7  drochner 
    536  1.7  drochner 	if (vme_space_map(ct, va->r[0].offset, sizeof(struct ievme), mod,
    537  1.7  drochner 			  VME_D16 | VME_D8, 0,
    538  1.7  drochner 			  &vsc->ievt, &vsc->ievh, &resc) != 0)
    539  1.7  drochner 		panic("if_ie: vme map csr");
    540  1.7  drochner 
    541  1.7  drochner 	rampaddr = va->r[1].offset;
    542  1.1        pk 
    543  1.1        pk 	/* 4 more */
    544  1.7  drochner 	rampaddr = rampaddr | ((read_iev(vsc, status) & IEVME_HADDR) << 16);
    545  1.7  drochner 	if (vme_space_map(ct, rampaddr, memsize, mod, VME_D16 | VME_D8, 0,
    546  1.7  drochner 			  &sc->bt, &sc->bh, &resc) != 0)
    547  1.7  drochner 		panic("if_ie: vme map mem");
    548  1.1        pk 
    549  1.7  drochner 	write_iev(vsc, pectrl, read_iev(vsc, pectrl) | IEVME_PARACK);
    550  1.1        pk 
    551  1.1        pk 	/*
    552  1.1        pk 	 * Set up mappings, direct map except for last page
    553  1.1        pk 	 * which is mapped at zero and at high address (for scp)
    554  1.1        pk 	 */
    555  1.1        pk 	for (lcv = 0; lcv < IEVME_MAPSZ - 1; lcv++)
    556  1.7  drochner 		write_iev(vsc, pgmap[lcv], IEVME_SBORDR | IEVME_OBMEM | lcv);
    557  1.7  drochner 	write_iev(vsc, pgmap[IEVME_MAPSZ - 1], IEVME_SBORDR | IEVME_OBMEM | 0);
    558  1.1        pk 
    559  1.1        pk 	/* Clear all ram */
    560  1.7  drochner 	bus_space_set_region_2(sc->bt, sc->bh, 0, 0, memsize/2);
    561  1.1        pk 
    562  1.1        pk 	/*
    563  1.2        pk 	 * We use the first page to set up SCP, ICSP and SCB data
    564  1.2        pk 	 * structures. The remaining pages become the buffer area
    565  1.2        pk 	 * (managed in i82586.c).
    566  1.2        pk 	 * SCP is in double-mapped page, so the 586 can see it at
    567  1.2        pk 	 * the mandatory magic address (IE_SCP_ADDR).
    568  1.1        pk 	 */
    569  1.2        pk 	sc->scp = (IE_SCP_ADDR & (IEVME_PAGESIZE - 1));
    570  1.1        pk 
    571  1.1        pk 	/* iscp at location zero */
    572  1.2        pk 	sc->iscp = 0;
    573  1.1        pk 
    574  1.1        pk 	/* scb follows iscp */
    575  1.2        pk 	sc->scb = IE_ISCP_SZ;
    576  1.2        pk 
    577  1.2        pk 	ie_vme_write16(sc, IE_ISCP_SCB((long)sc->iscp), sc->scb);
    578  1.2        pk 	ie_vme_write16(sc, IE_ISCP_BASE((u_long)sc->iscp), 0);
    579  1.2        pk 	ie_vme_write24(sc, IE_SCP_ISCP((u_long)sc->scp), 0);
    580  1.2        pk 
    581  1.2        pk 	if (i82586_proberam(sc) == 0) {
    582  1.2        pk 		printf(": memory probe failed\n");
    583  1.2        pk 		return;
    584  1.2        pk 	}
    585  1.1        pk 
    586  1.1        pk 	/*
    587  1.1        pk 	 * Rest of first page is unused; rest of ram for buffers.
    588  1.1        pk 	 */
    589  1.2        pk 	sc->buf_area = IEVME_PAGESIZE;
    590  1.7  drochner 	sc->buf_area_sz = memsize - IEVME_PAGESIZE;
    591  1.1        pk 
    592  1.2        pk 	sc->do_xmitnopchain = 0;
    593  1.2        pk 
    594  1.7  drochner 	printf("\n%s:", self->dv_xname);
    595  1.7  drochner 
    596  1.7  drochner #ifdef sparc
    597  1.1        pk 	myetheraddr(myaddr);
    598  1.7  drochner #endif
    599  1.2        pk 	i82586_attach(sc, "multibus/vme", myaddr, media, NMEDIA, media[0]);
    600  1.1        pk 
    601  1.7  drochner 	vme_intr_map(ct, va->ilevel, va->ivector, &ih);
    602  1.7  drochner 	vme_intr_establish(ct, ih, IPL_NET, i82586_intr, sc);
    603  1.1        pk }
    604