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