Home | History | Annotate | Line # | Download | only in nubus
nubus.c revision 1.66
      1  1.66  jdolecek /*	$NetBSD: nubus.c,v 1.66 2019/01/08 19:41:09 jdolecek Exp $	*/
      2   1.8       cgd 
      3  1.11    briggs /*
      4  1.29    scottr  * Copyright (c) 1995, 1996 Allen Briggs.  All rights reserved.
      5   1.1    briggs  *
      6   1.1    briggs  * Redistribution and use in source and binary forms, with or without
      7   1.1    briggs  * modification, are permitted provided that the following conditions
      8   1.1    briggs  * are met:
      9   1.1    briggs  * 1. Redistributions of source code must retain the above copyright
     10   1.1    briggs  *    notice, this list of conditions and the following disclaimer.
     11   1.1    briggs  * 2. Redistributions in binary form must reproduce the above copyright
     12   1.1    briggs  *    notice, this list of conditions and the following disclaimer in the
     13   1.1    briggs  *    documentation and/or other materials provided with the distribution.
     14   1.1    briggs  * 3. All advertising materials mentioning features or use of this software
     15   1.1    briggs  *    must display the following acknowledgement:
     16  1.11    briggs  *	This product includes software developed by Allen Briggs.
     17  1.11    briggs  * 4. The name of the author may not be used to endorse or promote products
     18  1.11    briggs  *    derived from this software without specific prior written permission.
     19   1.1    briggs  *
     20  1.11    briggs  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     21   1.1    briggs  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     22   1.1    briggs  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     23  1.11    briggs  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     24   1.1    briggs  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     25   1.1    briggs  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     26   1.1    briggs  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     27   1.1    briggs  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     28  1.11    briggs  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     29  1.11    briggs  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     30   1.1    briggs  */
     31  1.57     lukem 
     32  1.57     lukem #include <sys/cdefs.h>
     33  1.66  jdolecek __KERNEL_RCSID(0, "$NetBSD: nubus.c,v 1.66 2019/01/08 19:41:09 jdolecek Exp $");
     34   1.1    briggs 
     35   1.4    briggs #include <sys/param.h>
     36   1.4    briggs #include <sys/systm.h>
     37  1.53    briggs #include <sys/malloc.h>
     38  1.10    briggs #include <sys/device.h>
     39  1.29    scottr #include <sys/buf.h>
     40  1.29    scottr #include <sys/conf.h>
     41  1.29    scottr 
     42  1.49       mrg #include <uvm/uvm_extern.h>
     43  1.10    briggs 
     44  1.19    briggs #include <machine/autoconf.h>
     45  1.29    scottr #include <machine/vmparam.h>
     46   1.4    briggs #include <machine/cpu.h>
     47  1.29    scottr #include <machine/pte.h>
     48  1.33    scottr #include <machine/viareg.h>
     49  1.12    briggs 
     50  1.44    scottr #include <mac68k/nubus/nubus.h>
     51   1.1    briggs 
     52  1.23    scottr #ifdef DEBUG
     53  1.12    briggs #define NDB_PROBE	0x1
     54  1.12    briggs #define NDB_FOLLOW	0x2
     55  1.12    briggs #define NDB_ARITH	0x4
     56  1.53    briggs static int	nubus_debug = 0 /* | NDB_PROBE | NDB_FOLLOW | NDB_ARITH */ ;
     57  1.12    briggs #endif
     58  1.12    briggs 
     59  1.58       chs static int	nubus_print(void *, const char *);
     60  1.64       chs static int	nubus_match(device_t, cfdata_t, void *);
     61  1.64       chs static void	nubus_attach(device_t, device_t, void *);
     62  1.58       chs static int	nubus_video_resource(int);
     63  1.58       chs 
     64  1.58       chs static int	nubus_probe_slot(bus_space_tag_t, bus_space_handle_t, int,
     65  1.58       chs 		    nubus_slot *);
     66  1.58       chs static u_int32_t nubus_calc_CRC(bus_space_tag_t, bus_space_handle_t,
     67  1.58       chs 		    nubus_slot *);
     68  1.58       chs 
     69  1.58       chs static u_long	nubus_adjust_ptr(u_int8_t, u_long, long);
     70  1.58       chs static u_int8_t	nubus_read_1(bus_space_tag_t, bus_space_handle_t, u_int8_t,
     71  1.58       chs 		    u_long);
     72  1.17    briggs #ifdef notyet
     73  1.58       chs static u_int16_t nubus_read_2(bus_space_tag_t, bus_space_handle_t, u_int8_t,
     74  1.58       chs 		    u_long);
     75  1.17    briggs #endif
     76  1.58       chs static u_int32_t nubus_read_4(bus_space_tag_t, bus_space_handle_t, u_int8_t,
     77  1.58       chs 		    u_long);
     78  1.29    scottr 
     79  1.64       chs CFATTACH_DECL_NEW(nubus, sizeof(struct nubus_softc),
     80  1.55   thorpej     nubus_match, nubus_attach, NULL, NULL);
     81   1.1    briggs 
     82  1.19    briggs static int
     83  1.64       chs nubus_match(device_t parent, cfdata_t cf, void *aux)
     84  1.19    briggs {
     85  1.29    scottr 	static int nubus_matched = 0;
     86  1.19    briggs 
     87  1.29    scottr 	/* Allow only one instance. */
     88  1.29    scottr 	if (nubus_matched)
     89  1.29    scottr 		return (0);
     90  1.29    scottr 
     91  1.29    scottr 	nubus_matched = 1;
     92  1.29    scottr 	return (1);
     93  1.19    briggs }
     94  1.19    briggs 
     95  1.11    briggs static void
     96  1.64       chs nubus_attach(device_t parent, device_t self, void *aux)
     97  1.11    briggs {
     98  1.28    scottr 	struct nubus_attach_args na_args;
     99  1.53    briggs 	struct mainbus_attach_args *mba;
    100  1.37    scottr 	bus_space_tag_t bst;
    101  1.37    scottr 	bus_space_handle_t bsh;
    102  1.28    scottr 	nubus_slot fmtblock;
    103  1.28    scottr 	nubus_dir dir;
    104  1.28    scottr 	nubus_dirent dirent;
    105  1.28    scottr 	nubus_type slottype;
    106  1.34    briggs 	u_long entry;
    107  1.28    scottr 	int i, rsrcid;
    108  1.37    scottr 	u_int8_t lanes;
    109   1.1    briggs 
    110  1.53    briggs 	mba = aux;
    111  1.53    briggs 	KASSERT(NULL != mba->mba_dmat);
    112  1.53    briggs 
    113  1.26  christos 	printf("\n");
    114   1.1    briggs 
    115  1.19    briggs 	for (i = NUBUS_MIN_SLOT; i <= NUBUS_MAX_SLOT; i++) {
    116  1.37    scottr 		na_args.slot = i;
    117  1.52    briggs 		na_args.na_tag = bst = mba->mba_bst;
    118  1.52    briggs 		na_args.na_dmat = mba->mba_dmat;
    119  1.37    scottr 
    120  1.37    scottr 		if (bus_space_map(bst,
    121  1.37    scottr 		    NUBUS_SLOT2PA(na_args.slot), NBMEMSIZE, 0, &bsh)) {
    122  1.45    scottr #ifdef DEBUG
    123  1.45    scottr 			if (nubus_debug & NDB_PROBE)
    124  1.45    scottr 				printf("%s: failed to map slot %x, "
    125  1.45    scottr 				    "address %p (in use?)\n",
    126  1.64       chs 				    device_xname(self), i,
    127  1.45    scottr 				    (void *)NUBUS_SLOT2PA(i));
    128  1.37    scottr #endif
    129  1.28    scottr 			continue;
    130  1.37    scottr 		}
    131  1.28    scottr 
    132  1.37    scottr 		if (nubus_probe_slot(bst, bsh, i, &fmtblock) <= 0) {
    133  1.37    scottr notfound:
    134  1.37    scottr 			bus_space_unmap(bst, bsh, NBMEMSIZE);
    135  1.37    scottr 			continue;
    136  1.37    scottr 		}
    137  1.37    scottr 
    138  1.34    briggs 		rsrcid = 0x80;
    139  1.37    scottr 		lanes = fmtblock.bytelanes;
    140  1.28    scottr 
    141  1.28    scottr 		nubus_get_main_dir(&fmtblock, &dir);
    142  1.28    scottr 
    143  1.34    briggs 		/*
    144  1.34    briggs 		 * Get the resource for the first function on the card.
    145  1.34    briggs 		 * This is assumed to be at resource ID 0x80.  If we can
    146  1.34    briggs 		 * not find this entry (as we can not on some video cards),
    147  1.34    briggs 		 * check to see if we can get a different ID from the list
    148  1.34    briggs 		 * of video resources given to us by the booter.  If that
    149  1.34    briggs 		 * doesn't work either, take the first resource following
    150  1.34    briggs 		 * the board resource.
    151  1.53    briggs 		 * If we only find a board resource, report that.
    152  1.53    briggs 		 * There are cards that do not have anything else; their
    153  1.53    briggs 		 * driver then has to match on the board resource and
    154  1.53    briggs 		 * the card name.
    155  1.34    briggs 		 */
    156  1.37    scottr 		if (nubus_find_rsrc(bst, bsh,
    157  1.37    scottr 		    &fmtblock, &dir, rsrcid, &dirent) <= 0) {
    158  1.34    briggs 			if ((rsrcid = nubus_video_resource(i)) == -1) {
    159  1.53    briggs 				int has_board_rsrc = 0;
    160  1.53    briggs 
    161  1.34    briggs 				/*
    162  1.34    briggs 				 * Since nubus_find_rsrc failed, the directory
    163  1.34    briggs 				 * is back at its base.
    164  1.34    briggs 				 */
    165  1.34    briggs 				entry = dir.curr_ent;
    166  1.34    briggs 
    167  1.34    briggs 				/*
    168  1.34    briggs 				 * All nubus cards should have a board
    169  1.34    briggs 				 * resource, but be sure that's what it
    170  1.53    briggs 				 * is before we skip it, and note the fact.
    171  1.34    briggs 				 */
    172  1.37    scottr 				rsrcid = nubus_read_1(bst, bsh,
    173  1.37    scottr 				    lanes, entry);
    174  1.53    briggs 				if (rsrcid == 0x1) {
    175  1.53    briggs 					has_board_rsrc = 1;
    176  1.37    scottr 					entry = nubus_adjust_ptr(lanes,
    177  1.37    scottr 					    dir.curr_ent, 4);
    178  1.53    briggs 				}
    179  1.37    scottr 				rsrcid = nubus_read_1(bst, bsh, lanes, entry);
    180  1.53    briggs 				/* end of chain? */
    181  1.53    briggs 				if (rsrcid == 0xff) {
    182  1.53    briggs 					if (!has_board_rsrc)
    183  1.53    briggs 						goto notfound;
    184  1.53    briggs 					else
    185  1.53    briggs 						rsrcid = 0x01;
    186  1.53    briggs 				}
    187  1.34    briggs #ifdef DEBUG
    188  1.34    briggs 				if (nubus_debug & NDB_FOLLOW)
    189  1.34    briggs 					printf("\tUsing rsrc 0x%x.\n", rsrcid);
    190  1.34    briggs #endif
    191  1.34    briggs 			}
    192  1.34    briggs 			/*
    193  1.34    briggs 			 * Try to find the resource passed by the booter
    194  1.34    briggs 			 * or the one we just tracked down.
    195  1.34    briggs 			 */
    196  1.37    scottr 			if (nubus_find_rsrc(bst, bsh,
    197  1.37    scottr 			    &fmtblock, &dir, rsrcid, &dirent) <= 0)
    198  1.37    scottr 				goto notfound;
    199  1.34    briggs 		}
    200  1.28    scottr 
    201  1.28    scottr 		nubus_get_dir_from_rsrc(&fmtblock, &dirent, &dir);
    202  1.28    scottr 
    203  1.37    scottr 		if (nubus_find_rsrc(bst, bsh,
    204  1.37    scottr 		    &fmtblock, &dir, NUBUS_RSRC_TYPE, &dirent) <= 0)
    205  1.37    scottr 			goto notfound;
    206  1.37    scottr 
    207  1.37    scottr 		if (nubus_get_ind_data(bst, bsh, &fmtblock, &dirent,
    208  1.61  christos 		    (void *)&slottype, sizeof(nubus_type)) <= 0)
    209  1.37    scottr 			goto notfound;
    210  1.34    briggs 
    211  1.34    briggs 		/*
    212  1.34    briggs 		 * If this is a display card, try to pull out the correct
    213  1.34    briggs 		 * display mode as passed by the booter.
    214  1.34    briggs 		 */
    215  1.34    briggs 		if (slottype.category == NUBUS_CATEGORY_DISPLAY) {
    216  1.37    scottr 			int r;
    217  1.34    briggs 
    218  1.34    briggs 			if ((r = nubus_video_resource(i)) != -1) {
    219  1.34    briggs 
    220  1.34    briggs 				nubus_get_main_dir(&fmtblock, &dir);
    221  1.34    briggs 
    222  1.37    scottr 				if (nubus_find_rsrc(bst, bsh,
    223  1.37    scottr 				    &fmtblock, &dir, r, &dirent) <= 0)
    224  1.37    scottr 					goto notfound;
    225  1.34    briggs 
    226  1.34    briggs 				nubus_get_dir_from_rsrc(&fmtblock,
    227  1.37    scottr 				    &dirent, &dir);
    228  1.34    briggs 
    229  1.37    scottr 				if (nubus_find_rsrc(bst, bsh, &fmtblock, &dir,
    230  1.37    scottr 				    NUBUS_RSRC_TYPE, &dirent) <= 0)
    231  1.37    scottr 					goto notfound;
    232  1.37    scottr 
    233  1.37    scottr 				if (nubus_get_ind_data(bst, bsh,
    234  1.61  christos 				    &fmtblock, &dirent, (void *)&slottype,
    235  1.37    scottr 				    sizeof(nubus_type)) <= 0)
    236  1.37    scottr 					goto notfound;
    237  1.36    briggs 
    238  1.36    briggs 				rsrcid = r;
    239  1.34    briggs 			}
    240  1.34    briggs 		}
    241  1.28    scottr 
    242  1.28    scottr 		na_args.slot = i;
    243  1.28    scottr 		na_args.rsrcid = rsrcid;
    244  1.28    scottr 		na_args.category = slottype.category;
    245  1.28    scottr 		na_args.type = slottype.type;
    246  1.28    scottr 		na_args.drsw = slottype.drsw;
    247  1.28    scottr 		na_args.drhw = slottype.drhw;
    248  1.28    scottr 		na_args.fmt = &fmtblock;
    249  1.28    scottr 
    250  1.37    scottr 		bus_space_unmap(bst, bsh, NBMEMSIZE);
    251  1.37    scottr 
    252  1.28    scottr 		config_found(self, &na_args, nubus_print);
    253  1.12    briggs 	}
    254  1.33    scottr 
    255  1.33    scottr 	enable_nubus_intr();
    256   1.1    briggs }
    257   1.1    briggs 
    258  1.10    briggs static int
    259  1.58       chs nubus_print(void *aux, const char *pnp)
    260  1.11    briggs {
    261  1.37    scottr 	struct nubus_attach_args *na = (struct nubus_attach_args *)aux;
    262  1.37    scottr 	bus_space_tag_t bst = na->na_tag;
    263  1.37    scottr 	bus_space_handle_t bsh;
    264   1.1    briggs 
    265  1.40    scottr 	if (pnp) {
    266  1.56   thorpej 		aprint_normal("%s slot %x", pnp, na->slot);
    267  1.37    scottr 		if (bus_space_map(bst,
    268  1.40    scottr 		    NUBUS_SLOT2PA(na->slot), NBMEMSIZE, 0, &bsh) == 0) {
    269  1.56   thorpej 			aprint_normal(": %s",
    270  1.56   thorpej 			    nubus_get_card_name(bst, bsh, na->fmt));
    271  1.56   thorpej 			aprint_normal(" (Vendor: %s,",
    272  1.56   thorpej 			    nubus_get_vendor(bst, bsh,
    273  1.37    scottr 			    na->fmt, NUBUS_RSRC_VEND_ID));
    274  1.56   thorpej 			aprint_normal(" Part: %s)", nubus_get_vendor(bst, bsh,
    275  1.37    scottr 			    na->fmt, NUBUS_RSRC_VEND_PART));
    276  1.40    scottr 			bus_space_unmap(bst, bsh, NBMEMSIZE);
    277  1.40    scottr 		}
    278  1.35    scottr #ifdef DIAGNOSTIC
    279  1.40    scottr 		else
    280  1.56   thorpej 			aprint_normal(":");
    281  1.56   thorpej 		aprint_normal(" Type: %04x %04x %04x %04x",
    282  1.40    scottr 		    na->category, na->type, na->drsw, na->drhw);
    283  1.35    scottr #endif
    284  1.40    scottr 	} else {
    285  1.56   thorpej 		aprint_normal(" slot %x", na->slot);
    286   1.1    briggs 	}
    287  1.11    briggs 	return (UNCONF);
    288  1.28    scottr }
    289  1.28    scottr 
    290  1.37    scottr static int
    291  1.58       chs nubus_video_resource(int slot)
    292  1.28    scottr {
    293  1.28    scottr 	extern u_int16_t mac68k_vrsrc_vec[];
    294  1.28    scottr 	int i;
    295  1.28    scottr 
    296  1.28    scottr 	for (i = 0 ; i < 6 ; i++)
    297  1.28    scottr 		if ((mac68k_vrsrc_vec[i] & 0xff) == slot)
    298  1.28    scottr 			return ((mac68k_vrsrc_vec[i] >> 8) & 0xff);
    299  1.28    scottr 	return (-1);
    300   1.1    briggs }
    301   1.1    briggs 
    302  1.11    briggs /*
    303  1.11    briggs  * Probe a given nubus slot.  If a card is there and we can get the
    304  1.65       snj  * format block from its clutching decl. ROMs, fill the format block
    305  1.11    briggs  * and return non-zero.  If we can't find a card there with a valid
    306  1.11    briggs  * decl. ROM, return 0.
    307  1.11    briggs  *
    308  1.11    briggs  * First, we check to see if we can access the memory at the tail
    309  1.11    briggs  * end of the slot.  If so, then we check for a bytelanes byte.  We
    310  1.11    briggs  * could probably just return a failure status if we bus error on
    311  1.11    briggs  * the first try, but there really is little reason not to go ahead
    312  1.51       wiz  * and check the other three locations in case there's a weird card
    313  1.11    briggs  * out there.
    314  1.11    briggs  *
    315  1.11    briggs  * Checking for a card involves locating the "bytelanes" byte which
    316  1.11    briggs  * tells us how to interpret the declaration ROM's data.  The format
    317  1.11    briggs  * block is at the top of the card's standard memory space and the
    318  1.11    briggs  * bytelanes byte is at the end of that block.
    319  1.11    briggs  *
    320  1.11    briggs  * After some inspection of the bytelanes byte, it appears that it
    321  1.11    briggs  * takes the form 0xXY where Y is a bitmask of the bytelanes in use
    322  1.11    briggs  * and X is a bitmask of the lanes to ignore.  Hence, (X ^ Y) == 0
    323  1.11    briggs  * and (less obviously), Y will have the upper N bits clear if it is
    324  1.11    briggs  * found N bytes from the last possible location.  Both that and
    325  1.11    briggs  * the exclusive-or check are made.
    326  1.11    briggs  *
    327  1.11    briggs  * If a valid
    328  1.11    briggs  */
    329  1.37    scottr static u_int8_t	nbits[] = {0,1,1,2,1,2,2,3,1,2,2,3,2,3,3,4};
    330  1.11    briggs static int
    331  1.58       chs nubus_probe_slot(bus_space_tag_t bst, bus_space_handle_t bsh, int slot,
    332  1.58       chs     nubus_slot *fmt)
    333   1.1    briggs {
    334  1.37    scottr 	u_long ofs, hdr;
    335  1.37    scottr 	int i, j, found, hdr_size;
    336  1.37    scottr 	u_int8_t lanes;
    337  1.10    briggs 
    338  1.12    briggs #ifdef DEBUG
    339  1.37    scottr 	if (nubus_debug & NDB_PROBE)
    340  1.37    scottr 		printf("probing slot %x\n", slot);
    341  1.12    briggs #endif
    342  1.12    briggs 
    343  1.37    scottr 	/*
    344  1.37    scottr 	 * The idea behind this glorious work of art is to probe for only
    345  1.38    scottr 	 * valid bytelanes values at appropriate locations (see DC&D p. 159
    346  1.37    scottr 	 * for a list).  Note the pattern:  the first 8 values are at offset
    347  1.37    scottr 	 * 0xffffff in the slot's space; the next 4 values at 0xfffffe; the
    348  1.37    scottr 	 * next 2 values at 0xfffffd; and the last one at 0xfffffc.
    349  1.37    scottr 	 *
    350  1.37    scottr 	 * The nested loops implement an efficient search of this space,
    351  1.37    scottr 	 * probing first for a valid address, then checking for each of the
    352  1.37    scottr 	 * valid bytelanes values at that address.
    353  1.37    scottr 	 */
    354  1.37    scottr 	ofs = NBMEMSIZE;
    355  1.37    scottr 	lanes = 0xf;
    356  1.10    briggs 
    357  1.37    scottr 	for (j = 8, found = 0; j > 0 && !found; j >>= 1) {
    358  1.37    scottr 		ofs--;
    359  1.37    scottr 		for (i = j; i > 0; i--, lanes--) {
    360  1.43    scottr 			if (!mac68k_bus_space_probe(bst, bsh, ofs, 1)) {
    361  1.37    scottr 				lanes -= i;
    362  1.37    scottr 				break;
    363  1.37    scottr 			}
    364  1.37    scottr 			if (bus_space_read_1(bst, bsh, ofs) ==
    365  1.37    scottr 			    (((~lanes & 0xf) << 4) | lanes)) {
    366  1.37    scottr 				found = 1;
    367  1.37    scottr 				break;
    368  1.37    scottr 			}
    369  1.11    briggs 		}
    370   1.1    briggs 	}
    371  1.37    scottr 
    372  1.37    scottr 	if (!found) {
    373  1.11    briggs #ifdef DEBUG
    374  1.37    scottr 		if (nubus_debug & NDB_PROBE)
    375  1.37    scottr 			printf("bytelanes not found for slot %x\n", slot);
    376  1.11    briggs #endif
    377  1.37    scottr 		return 0;
    378  1.37    scottr 	}
    379  1.11    briggs 
    380  1.37    scottr 	fmt->bytelanes = lanes;
    381  1.37    scottr 	fmt->step = nbits[(lanes & 0x0f)];
    382  1.37    scottr 	fmt->slot = slot;	/* XXX redundant; get rid of this someday */
    383  1.11    briggs 
    384  1.11    briggs #ifdef DEBUG
    385  1.12    briggs 	if (nubus_debug & NDB_PROBE)
    386  1.26  christos 		printf("bytelanes of 0x%x found for slot 0x%x.\n",
    387  1.37    scottr 		    fmt->bytelanes, slot);
    388  1.11    briggs #endif
    389   1.1    briggs 
    390  1.11    briggs 	/*
    391  1.11    briggs 	 * Go ahead and attempt to load format header.
    392  1.11    briggs 	 * First, we need to find the first byte beyond memory that
    393  1.11    briggs 	 * would be valid.  This is necessary for NUBUS_ROM_offset()
    394  1.11    briggs 	 * to work.
    395  1.11    briggs 	 */
    396  1.37    scottr 	hdr = NBMEMSIZE;
    397  1.37    scottr 	hdr_size = 20;
    398  1.19    briggs 
    399  1.37    scottr 	i = 0x10 | (lanes & 0x0f);
    400  1.11    briggs 	while ((i & 1) == 0) {
    401  1.11    briggs 		hdr++;
    402  1.11    briggs 		i >>= 1;
    403  1.11    briggs 	}
    404  1.11    briggs 	fmt->top = hdr;
    405  1.37    scottr 	hdr = nubus_adjust_ptr(lanes, hdr, -hdr_size);
    406  1.11    briggs #ifdef DEBUG
    407  1.12    briggs 	if (nubus_debug & NDB_PROBE)
    408  1.27    scottr 		printf("fmt->top is 0x%lx, that minus 0x%x puts us at 0x%lx.\n",
    409  1.37    scottr 		    fmt->top, hdr_size, hdr);
    410  1.37    scottr 	if (nubus_debug & NDB_ARITH)
    411  1.37    scottr 		for (i = 1 ; i < 8 ; i++)
    412  1.37    scottr 			printf("0x%lx - 0x%x = 0x%lx, + 0x%x = 0x%lx.\n",
    413  1.37    scottr 			    hdr, i, nubus_adjust_ptr(lanes, hdr, -i),
    414  1.37    scottr 			    i, nubus_adjust_ptr(lanes, hdr,  i));
    415  1.37    scottr #endif
    416  1.37    scottr 
    417  1.37    scottr 	fmt->directory_offset =
    418  1.37    scottr 	    0xff000000 | nubus_read_4(bst, bsh, lanes, hdr);
    419  1.37    scottr 	hdr = nubus_adjust_ptr(lanes, hdr, 4);
    420  1.37    scottr 	fmt->length = nubus_read_4(bst, bsh, lanes, hdr);
    421  1.37    scottr 	hdr = nubus_adjust_ptr(lanes, hdr, 4);
    422  1.37    scottr 	fmt->crc = nubus_read_4(bst, bsh, lanes, hdr);
    423  1.37    scottr 	hdr = nubus_adjust_ptr(lanes, hdr, 4);
    424  1.37    scottr 	fmt->revision_level = nubus_read_1(bst, bsh, lanes, hdr);
    425  1.37    scottr 	hdr = nubus_adjust_ptr(lanes, hdr, 1);
    426  1.37    scottr 	fmt->format = nubus_read_1(bst, bsh, lanes, hdr);
    427  1.37    scottr 	hdr = nubus_adjust_ptr(lanes, hdr, 1);
    428  1.37    scottr 	fmt->test_pattern = nubus_read_4(bst, bsh, lanes, hdr);
    429  1.11    briggs 
    430  1.23    scottr #ifdef DEBUG
    431  1.12    briggs 	if (nubus_debug & NDB_PROBE) {
    432  1.26  christos 		printf("Directory offset 0x%x\t", fmt->directory_offset);
    433  1.26  christos 		printf("Length 0x%x\t", fmt->length);
    434  1.26  christos 		printf("CRC 0x%x\n", fmt->crc);
    435  1.26  christos 		printf("Revision level 0x%x\t", fmt->revision_level);
    436  1.26  christos 		printf("Format 0x%x\t", fmt->format);
    437  1.26  christos 		printf("Test Pattern 0x%x\n", fmt->test_pattern);
    438  1.12    briggs 	}
    439  1.11    briggs #endif
    440  1.11    briggs 
    441  1.12    briggs 	if ((fmt->directory_offset & 0x00ff0000) == 0) {
    442  1.26  christos 		printf("Invalid looking directory offset (0x%x)!\n",
    443  1.37    scottr 		    fmt->directory_offset);
    444  1.12    briggs 		return 0;
    445  1.12    briggs 	}
    446  1.11    briggs 	if (fmt->test_pattern != NUBUS_ROM_TEST_PATTERN) {
    447  1.26  christos 		printf("Nubus--test pattern invalid:\n");
    448  1.37    scottr 		printf("       slot 0x%x, bytelanes 0x%x?\n", fmt->slot, lanes);
    449  1.26  christos 		printf("       read test 0x%x, compare with 0x%x.\n",
    450  1.37    scottr 		    fmt->test_pattern, NUBUS_ROM_TEST_PATTERN);
    451  1.11    briggs 		return 0;
    452  1.11    briggs 	}
    453  1.11    briggs 
    454  1.11    briggs 	/* Perform CRC */
    455  1.37    scottr 	if (fmt->crc != nubus_calc_CRC(bst, bsh, fmt)) {
    456  1.37    scottr 		printf("Nubus--crc check failed, slot 0x%x.\n", fmt->slot);
    457  1.11    briggs 		return 0;
    458   1.1    briggs 	}
    459  1.10    briggs 
    460  1.11    briggs 	return 1;
    461   1.1    briggs }
    462   1.1    briggs 
    463  1.37    scottr static u_int32_t
    464  1.58       chs nubus_calc_CRC(bus_space_tag_t bst, bus_space_handle_t bsh, nubus_slot *fmt)
    465  1.37    scottr {
    466  1.37    scottr #if 0
    467  1.37    scottr 	u_long base, ptr, crc_loc;
    468  1.37    scottr 	u_int32_t sum;
    469  1.37    scottr 	u_int8_t lanes = fmt->bytelanes;
    470  1.37    scottr 
    471  1.37    scottr 	base = fmt->top;
    472  1.37    scottr 	crc_loc = NUBUS_ROM_offset(fmt, base, -12);
    473  1.37    scottr 	ptr = NUBUS_ROM_offset(fmt, base, -fmt->length);
    474  1.37    scottr 
    475  1.37    scottr 	sum = 0;
    476  1.37    scottr 	while (ptr < base)
    477  1.37    scottr 		roll #1, sum
    478  1.37    scottr 		if (ptr == crc_loc) {
    479  1.37    scottr 			roll #3, sum
    480  1.37    scottr 			ptr = nubus_adjust_ptr(lanes, ptr, 3);
    481  1.37    scottr 		} else {
    482  1.37    scottr 			sum += nubus_read_1(bst, bsh, lanes, ptr);
    483  1.37    scottr 		}
    484  1.37    scottr 		ptr = nubus_adjust_ptr(lanes, ptr, 1);
    485  1.37    scottr 	}
    486  1.37    scottr 
    487  1.37    scottr 	return sum;
    488  1.37    scottr #endif
    489  1.37    scottr 	return fmt->crc;
    490  1.37    scottr }
    491  1.37    scottr 
    492  1.11    briggs /*
    493  1.11    briggs  * Compute byte offset on card, taking into account bytelanes.
    494  1.11    briggs  * Base must be on a valid bytelane for this function to work.
    495  1.11    briggs  * Return the new address.
    496  1.11    briggs  *
    497  1.11    briggs  * XXX -- There has GOT to be a better way to do this.
    498  1.11    briggs  */
    499  1.11    briggs static u_long
    500  1.58       chs nubus_adjust_ptr(u_int8_t lanes, u_long base, long amt)
    501  1.11    briggs {
    502  1.37    scottr 	u_int8_t b, t;
    503  1.11    briggs 
    504  1.11    briggs 	if (!amt)
    505  1.11    briggs 		return base;
    506  1.11    briggs 
    507  1.11    briggs 	if (amt < 0) {
    508  1.11    briggs 		amt = -amt;
    509  1.37    scottr 		b = lanes;
    510  1.11    briggs 		t = (b << 4);
    511  1.11    briggs 		b <<= (3 - (base & 0x3));
    512  1.11    briggs 		while (amt) {
    513  1.11    briggs 			b <<= 1;
    514  1.11    briggs 			if (b == t)
    515  1.37    scottr 				b = lanes;
    516  1.11    briggs 			if (b & 0x08)
    517  1.11    briggs 				amt--;
    518  1.11    briggs 			base--;
    519  1.11    briggs 		}
    520  1.11    briggs 		return base;
    521  1.11    briggs 	}
    522  1.10    briggs 
    523  1.37    scottr 	t = (lanes & 0xf) | 0x10;
    524  1.11    briggs 	b = t >> (base & 0x3);
    525  1.11    briggs 	while (amt) {
    526  1.11    briggs 		b >>= 1;
    527  1.11    briggs 		if (b == 1)
    528  1.11    briggs 			b = t;
    529  1.11    briggs 		if (b & 1)
    530  1.11    briggs 			amt--;
    531  1.11    briggs 		base++;
    532  1.11    briggs 	}
    533  1.11    briggs 
    534  1.11    briggs 	return base;
    535  1.11    briggs }
    536  1.11    briggs 
    537  1.37    scottr static u_int8_t
    538  1.58       chs nubus_read_1(bus_space_tag_t bst, bus_space_handle_t bsh, u_int8_t lanes,
    539  1.58       chs     u_long ofs)
    540   1.1    briggs {
    541  1.37    scottr 	return bus_space_read_1(bst, bsh, ofs);
    542   1.1    briggs }
    543   1.1    briggs 
    544  1.17    briggs #ifdef notyet
    545  1.17    briggs /* Nothing uses this, yet */
    546  1.37    scottr static u_int16_t
    547  1.58       chs nubus_read_2(bus_space_tag_t bst, bus_space_handle_t bsh, u_int8_t lanes,
    548  1.58       chs     u_long ofs)
    549  1.37    scottr {
    550  1.37    scottr 	u_int16_t s;
    551  1.37    scottr 
    552  1.37    scottr 	s = (nubus_read_1(bst, bsh, lanes, ofs) << 8);
    553  1.37    scottr 	ofs = nubus_adjust_ptr(lanes, ofs, 1);
    554  1.37    scottr 	s |= nubus_read_1(bst, bsh, lanes, ofs);
    555  1.11    briggs 	return s;
    556  1.11    briggs }
    557  1.17    briggs #endif
    558   1.1    briggs 
    559  1.37    scottr static u_int32_t
    560  1.58       chs nubus_read_4(bus_space_tag_t bst, bus_space_handle_t bsh, u_int8_t lanes,
    561  1.58       chs     u_long ofs)
    562  1.11    briggs {
    563  1.37    scottr 	u_int32_t l;
    564  1.37    scottr 	int i;
    565  1.10    briggs 
    566  1.11    briggs 	l = 0;
    567  1.37    scottr 	for (i = 0; i < 4; i++) {
    568  1.37    scottr 		l = (l << 8) | nubus_read_1(bst, bsh, lanes, ofs);
    569  1.37    scottr 		ofs = nubus_adjust_ptr(lanes, ofs, 1);
    570  1.11    briggs 	}
    571  1.11    briggs 	return l;
    572  1.11    briggs }
    573  1.10    briggs 
    574  1.11    briggs void
    575  1.58       chs nubus_get_main_dir(nubus_slot *fmt, nubus_dir *dir_return)
    576  1.11    briggs {
    577  1.23    scottr #ifdef DEBUG
    578  1.12    briggs 	if (nubus_debug & NDB_FOLLOW)
    579  1.37    scottr 		printf("nubus_get_main_dir(%p, %p)\n",
    580  1.37    scottr 		    fmt, dir_return);
    581  1.12    briggs #endif
    582  1.37    scottr 	dir_return->dirbase = nubus_adjust_ptr(fmt->bytelanes, fmt->top,
    583  1.37    scottr 	    fmt->directory_offset - 20);
    584  1.37    scottr 	dir_return->curr_ent = dir_return->dirbase;
    585  1.37    scottr }
    586  1.37    scottr 
    587  1.37    scottr void
    588  1.58       chs nubus_get_dir_from_rsrc(nubus_slot *fmt, nubus_dirent *dirent,
    589  1.58       chs     nubus_dir *dir_return)
    590  1.37    scottr {
    591  1.37    scottr 	u_long loc;
    592  1.37    scottr 
    593  1.37    scottr #ifdef DEBUG
    594  1.37    scottr 	if (nubus_debug & NDB_FOLLOW)
    595  1.37    scottr 		printf("nubus_get_dir_from_rsrc(%p, %p, %p).\n",
    596  1.37    scottr 		    fmt, dirent, dir_return);
    597  1.37    scottr #endif
    598  1.37    scottr 	if ((loc = dirent->offset) & 0x800000) {
    599  1.37    scottr 		loc |= 0xff000000;
    600  1.37    scottr 	}
    601  1.37    scottr 	dir_return->dirbase =
    602  1.37    scottr 	    nubus_adjust_ptr(fmt->bytelanes, dirent->myloc, loc);
    603  1.11    briggs 	dir_return->curr_ent = dir_return->dirbase;
    604   1.1    briggs }
    605   1.1    briggs 
    606  1.11    briggs int
    607  1.58       chs nubus_find_rsrc(bus_space_tag_t bst, bus_space_handle_t bsh, nubus_slot *fmt,
    608  1.58       chs     nubus_dir *dir, u_int8_t rsrcid, nubus_dirent *dirent_return)
    609   1.1    briggs {
    610  1.37    scottr 	u_long entry;
    611  1.37    scottr 	u_int8_t byte, lanes = fmt->bytelanes;
    612  1.10    briggs 
    613  1.23    scottr #ifdef DEBUG
    614  1.12    briggs 	if (nubus_debug & NDB_FOLLOW)
    615  1.37    scottr 		printf("nubus_find_rsrc(%p, %p, 0x%x, %p)\n",
    616  1.37    scottr 		    fmt, dir, rsrcid, dirent_return);
    617  1.11    briggs #endif
    618  1.37    scottr 	if (fmt->test_pattern != NUBUS_ROM_TEST_PATTERN)
    619  1.12    briggs 		return -1;
    620  1.12    briggs 
    621  1.12    briggs 	entry = dir->curr_ent;
    622  1.11    briggs 	do {
    623  1.37    scottr 		byte = nubus_read_1(bst, bsh, lanes, entry);
    624  1.23    scottr #ifdef DEBUG
    625  1.12    briggs 		if (nubus_debug & NDB_FOLLOW)
    626  1.26  christos 			printf("\tFound rsrc 0x%x.\n", byte);
    627  1.11    briggs #endif
    628  1.11    briggs 		if (byte == rsrcid) {
    629  1.11    briggs 			dirent_return->myloc = entry;
    630  1.11    briggs 			dirent_return->rsrc_id = rsrcid;
    631  1.37    scottr 			entry = nubus_read_4(bst, bsh, lanes, entry);
    632  1.11    briggs 			dirent_return->offset = (entry & 0x00ffffff);
    633  1.11    briggs 			return 1;
    634  1.11    briggs 		}
    635  1.11    briggs 		if (byte == 0xff) {
    636  1.11    briggs 			entry = dir->dirbase;
    637  1.11    briggs 		} else {
    638  1.37    scottr 			entry = nubus_adjust_ptr(lanes, entry, 4);
    639  1.11    briggs 		}
    640  1.37    scottr 	} while (entry != (u_long)dir->curr_ent);
    641  1.11    briggs 	return 0;
    642   1.1    briggs }
    643   1.1    briggs 
    644  1.11    briggs int
    645  1.58       chs nubus_get_ind_data(bus_space_tag_t bst, bus_space_handle_t bsh, nubus_slot *fmt,
    646  1.62   tsutsui     nubus_dirent *dirent, char *data_return, int nbytes)
    647  1.11    briggs {
    648  1.37    scottr 	u_long loc;
    649  1.37    scottr 	u_int8_t lanes = fmt->bytelanes;
    650   1.1    briggs 
    651  1.23    scottr #ifdef DEBUG
    652  1.12    briggs 	if (nubus_debug & NDB_FOLLOW)
    653  1.37    scottr 		printf("nubus_get_ind_data(%p, %p, %p, %d).\n",
    654  1.37    scottr 		    fmt, dirent, data_return, nbytes);
    655  1.12    briggs #endif
    656  1.11    briggs 	if ((loc = dirent->offset) & 0x800000) {
    657  1.11    briggs 		loc |= 0xff000000;
    658  1.11    briggs 	}
    659  1.37    scottr 	loc = nubus_adjust_ptr(lanes, dirent->myloc, loc);
    660   1.1    briggs 
    661  1.11    briggs 	while (nbytes--) {
    662  1.37    scottr 		*data_return++ = nubus_read_1(bst, bsh, lanes, loc);
    663  1.37    scottr 		loc = nubus_adjust_ptr(lanes, loc, 1);
    664   1.1    briggs 	}
    665  1.11    briggs 	return 1;
    666   1.1    briggs }
    667   1.1    briggs 
    668  1.11    briggs int
    669  1.58       chs nubus_get_c_string(bus_space_tag_t bst, bus_space_handle_t bsh, nubus_slot *fmt,
    670  1.62   tsutsui     nubus_dirent *dirent, char *data_return, int max_bytes)
    671   1.1    briggs {
    672  1.37    scottr 	u_long loc;
    673  1.37    scottr 	u_int8_t lanes = fmt->bytelanes;
    674  1.10    briggs 
    675  1.23    scottr #ifdef DEBUG
    676  1.12    briggs 	if (nubus_debug & NDB_FOLLOW)
    677  1.37    scottr 		printf("nubus_get_c_string(%p, %p, %p, %d).\n",
    678  1.37    scottr 		    fmt, dirent, data_return, max_bytes);
    679  1.12    briggs #endif
    680  1.37    scottr 	if ((loc = dirent->offset) & 0x800000)
    681  1.11    briggs 		loc |= 0xff000000;
    682  1.37    scottr 
    683  1.37    scottr 	loc = nubus_adjust_ptr(lanes, dirent->myloc, loc);
    684  1.10    briggs 
    685  1.11    briggs 	*data_return = '\0';
    686  1.11    briggs 	while (max_bytes--) {
    687  1.37    scottr 		if ((*data_return++ =
    688  1.37    scottr 		    nubus_read_1(bst, bsh, lanes, loc)) == 0)
    689  1.11    briggs 			return 1;
    690  1.37    scottr 		loc = nubus_adjust_ptr(lanes, loc, 1);
    691  1.11    briggs 	}
    692  1.50    briggs 	*(data_return-1) = '\0';
    693  1.11    briggs 	return 0;
    694   1.1    briggs }
    695   1.2    briggs 
    696  1.53    briggs /*
    697  1.53    briggs  * Get list of address ranges for an sMemory resource
    698  1.53    briggs  * ->  DC&D, p.171
    699  1.53    briggs  */
    700  1.53    briggs int
    701  1.58       chs nubus_get_smem_addr_rangelist(bus_space_tag_t bst, bus_space_handle_t bsh,
    702  1.61  christos     nubus_slot *fmt, nubus_dirent *dirent, void *data_return)
    703  1.53    briggs {
    704  1.53    briggs 	u_long loc;
    705  1.53    briggs 	u_int8_t lanes = fmt->bytelanes;
    706  1.53    briggs 	long blocklen;
    707  1.61  christos 	void *blocklist;
    708  1.53    briggs 
    709  1.53    briggs #ifdef DEBUG
    710  1.53    briggs 	if (nubus_debug & NDB_FOLLOW)
    711  1.53    briggs 		printf("nubus_get_smem_addr_rangelist(%p, %p, %p).\n",
    712  1.53    briggs 		    fmt, dirent, data_return);
    713  1.53    briggs #endif
    714  1.53    briggs 	if ((loc = dirent->offset) & 0x800000) {
    715  1.53    briggs 		loc |= 0xff000000;
    716  1.53    briggs 	}
    717  1.53    briggs 	loc = nubus_adjust_ptr(lanes, dirent->myloc, loc);
    718  1.53    briggs 
    719  1.53    briggs 	/* Obtain the block length from the head of the list */
    720  1.53    briggs 	blocklen = nubus_read_4(bst, bsh, lanes, loc);
    721  1.53    briggs 
    722  1.53    briggs 	/*
    723  1.53    briggs 	 * malloc a block of (blocklen) bytes
    724  1.53    briggs 	 * caller must recycle block after use
    725  1.53    briggs 	 */
    726  1.63    cegger 	blocklist = malloc(blocklen,M_TEMP,M_WAITOK);
    727  1.53    briggs 
    728  1.53    briggs 	/* read ((blocklen - 4) / 8) (length,offset) pairs into block */
    729  1.53    briggs 	nubus_get_ind_data(bst, bsh, fmt, dirent, blocklist, blocklen);
    730  1.53    briggs #ifdef DEBUG
    731  1.53    briggs 	if (nubus_debug & NDB_FOLLOW) {
    732  1.53    briggs 		int ii;
    733  1.53    briggs 		nubus_smem_rangelist *rlist;
    734  1.53    briggs 
    735  1.53    briggs 		rlist = (nubus_smem_rangelist *)blocklist;
    736  1.53    briggs 		printf("\tblock@%p, len 0x0%X\n", rlist, rlist->length);
    737  1.53    briggs 
    738  1.53    briggs 		for (ii=0; ii < ((blocklen - 4) / 8); ii++) {
    739  1.53    briggs 			printf("\tRange %d: base addr 0x%X [0x%X]\n", ii,
    740  1.53    briggs 			    rlist->range[ii].offset, rlist->range[ii].length);
    741  1.53    briggs 		}
    742  1.53    briggs 	}
    743  1.53    briggs #endif
    744  1.61  christos 	*(void **)data_return = blocklist;
    745  1.53    briggs 
    746  1.53    briggs 	return 1;
    747  1.53    briggs }
    748  1.53    briggs 
    749  1.59       rjs static const char *huh = "???";
    750   1.3    briggs 
    751  1.59       rjs const char *
    752  1.58       chs nubus_get_vendor(bus_space_tag_t bst, bus_space_handle_t bsh, nubus_slot *fmt,
    753  1.58       chs     int rsrc)
    754  1.37    scottr {
    755  1.37    scottr 	static char str_ret[64];
    756  1.37    scottr 	nubus_dir dir;
    757  1.37    scottr 	nubus_dirent ent;
    758   1.3    briggs 
    759  1.23    scottr #ifdef DEBUG
    760  1.12    briggs 	if (nubus_debug & NDB_FOLLOW)
    761  1.37    scottr 		printf("nubus_get_vendor(%p, 0x%x).\n", fmt, rsrc);
    762  1.12    briggs #endif
    763  1.37    scottr 	nubus_get_main_dir(fmt, &dir);
    764  1.37    scottr 	if (nubus_find_rsrc(bst, bsh, fmt, &dir, 1, &ent) <= 0)
    765  1.11    briggs 		return huh;
    766  1.37    scottr 	nubus_get_dir_from_rsrc(fmt, &ent, &dir);
    767   1.2    briggs 
    768  1.37    scottr 	if (nubus_find_rsrc(bst, bsh, fmt, &dir, NUBUS_RSRC_VENDORINFO, &ent)
    769  1.37    scottr 	    <= 0)
    770  1.11    briggs 		return huh;
    771  1.37    scottr 	nubus_get_dir_from_rsrc(fmt, &ent, &dir);
    772  1.10    briggs 
    773  1.37    scottr 	if (nubus_find_rsrc(bst, bsh, fmt, &dir, rsrc, &ent) <= 0)
    774  1.11    briggs 		return huh;
    775  1.10    briggs 
    776  1.37    scottr 	nubus_get_c_string(bst, bsh, fmt, &ent, str_ret, 64);
    777   1.2    briggs 
    778  1.11    briggs 	return str_ret;
    779   1.2    briggs }
    780   1.2    briggs 
    781  1.59       rjs const char *
    782  1.58       chs nubus_get_card_name(bus_space_tag_t bst, bus_space_handle_t bsh,
    783  1.58       chs     nubus_slot *fmt)
    784   1.2    briggs {
    785  1.37    scottr 	static char name_ret[64];
    786  1.37    scottr 	nubus_dir dir;
    787  1.37    scottr 	nubus_dirent ent;
    788   1.2    briggs 
    789  1.23    scottr #ifdef DEBUG
    790  1.12    briggs 	if (nubus_debug & NDB_FOLLOW)
    791  1.37    scottr 		printf("nubus_get_card_name(%p).\n", fmt);
    792  1.12    briggs #endif
    793  1.37    scottr 	nubus_get_main_dir(fmt, &dir);
    794   1.2    briggs 
    795  1.37    scottr 	if (nubus_find_rsrc(bst, bsh, fmt, &dir, 1, &ent) <= 0)
    796  1.11    briggs 		return huh;
    797   1.2    briggs 
    798  1.37    scottr 	nubus_get_dir_from_rsrc(fmt, &ent, &dir);
    799   1.2    briggs 
    800  1.37    scottr 	if (nubus_find_rsrc(bst, bsh, fmt, &dir, NUBUS_RSRC_NAME, &ent) <= 0)
    801  1.11    briggs 		return huh;
    802   1.2    briggs 
    803  1.37    scottr 	nubus_get_c_string(bst, bsh, fmt, &ent, name_ret, 64);
    804   1.2    briggs 
    805  1.11    briggs 	return name_ret;
    806   1.2    briggs }
    807  1.46    briggs 
    808  1.46    briggs #ifdef DEBUG
    809  1.46    briggs void
    810  1.58       chs nubus_scan_slot(bus_space_tag_t bst, int slotno)
    811  1.46    briggs {
    812  1.46    briggs 	int i=0, state=0;
    813  1.46    briggs 	char twirl[] = "-\\|/";
    814  1.46    briggs 	bus_space_handle_t sc_bsh;
    815  1.46    briggs 
    816  1.46    briggs 	if (bus_space_map(bst, NUBUS_SLOT2PA(slotno), NBMEMSIZE, 0, &sc_bsh)) {
    817  1.53    briggs 		printf("nubus_scan_slot: failed to map slot %x\n", slotno);
    818  1.46    briggs 		return;
    819  1.46    briggs 	}
    820  1.46    briggs 
    821  1.46    briggs 	printf("Scanning slot %c for accessible regions:\n",
    822  1.46    briggs 		slotno == 9 ? '9' : slotno - 10 + 'A');
    823  1.46    briggs 	for (i=0 ; i<NBMEMSIZE; i++) {
    824  1.46    briggs 		if (mac68k_bus_space_probe(bst, sc_bsh, i, 1)) {
    825  1.46    briggs 			if (state == 0) {
    826  1.46    briggs 				printf("\t0x%x-", i);
    827  1.46    briggs 				state = 1;
    828  1.46    briggs 			}
    829  1.46    briggs 		} else {
    830  1.46    briggs 			if (state) {
    831  1.46    briggs 				printf("0x%x\n", i);
    832  1.46    briggs 				state = 0;
    833  1.46    briggs 			}
    834  1.46    briggs 		}
    835  1.46    briggs 		if (i%100 == 0) {
    836  1.46    briggs 			printf("%c\b", twirl[(i/100)%4]);
    837  1.46    briggs 		}
    838  1.46    briggs 	}
    839  1.46    briggs 	if (state) {
    840  1.46    briggs 		printf("0x%x\n", i);
    841  1.46    briggs 	}
    842  1.46    briggs 	return;
    843  1.46    briggs }
    844  1.46    briggs #endif
    845