Home | History | Annotate | Line # | Download | only in dev
zbus.c revision 1.2
      1 /*	$NetBSD: zbus.c,v 1.2 1995/01/05 07:30:03 chopps Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 1994 Christian E. Hopps
      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 Christian E. Hopps.
     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 #include <sys/param.h>
     33 #include <sys/device.h>
     34 #include <machine/cpu.h>
     35 #include <machine/pte.h>
     36 #include <amiga/amiga/cfdev.h>
     37 #include <amiga/amiga/device.h>
     38 #include <amiga/dev/zbusvar.h>
     39 
     40 struct aconfdata {
     41 	char *name;
     42 	int manid;
     43 	int prodid;
     44 };
     45 
     46 struct preconfdata {
     47 	int manid;
     48 	int prodid;
     49 	caddr_t vaddr;
     50 };
     51 
     52 
     53 /*
     54  * explain the names.. 0123456789 => zothfisven
     55  */
     56 static struct aconfdata aconftab[] = {
     57 	/* Commodore Amiga */
     58 	{ "atzee",	513,	1 },
     59 	{ "atzsc",	514,	3 },
     60 	{ "le",		514,	112 },
     61 	{ "ql",		514,	69 },
     62 	{ "ql",		514,	70 },
     63 	/* Ameristar */
     64 	{ "le",		1053,	1 },
     65 	{ "xx",		1053,	10 },
     66 	/* Univeristy lowell */
     67 	{ "ulwl",	1030,	0 },
     68 	/* Macrosystems */
     69 	{ "grfrt",	18260,	6 },
     70 	/* Greater valley products */
     71 	{ "gvpbus",	2017,	2 },
     72 	{ "gvpbus",	2017,	11 },
     73 	{ "giv",	2017,	32 },
     74 	/* progressive perhiperals */
     75 	{ "zssc",	2026,	150 },
     76 	{ "ppia",	2026,	187 },
     77 	{ "ppta",	2026,	105 },
     78 	{ "ppha",	2026,	1 },
     79 	{ "mrsc",	2026,	0 },
     80 	/* CSA */
     81 	{ "mgnsc",	1058,	17 },
     82 	{ "otgsc",	1058,	21 },
     83 	/* Microbotics */
     84 	{ "vhzsc",	1010,	69 },
     85 	/* Supra */
     86 	{ "wstsc",	1056,	12 },
     87 	/* IVS */
     88 	{ "itrmp",	2112,	52 },
     89 	{ "ivasc",	2112,	242 },
     90 	{ "ivsc",	2112,	243 },
     91 	/* Hydra */
     92 	{ "ed",		2121,	1 },
     93 	/* ASDG */
     94 	{ "ed",		9999,	9 },		/* XXXX */
     95 	/* bsc/Alf Data */
     96 	{ "mfc",	2092,	16 },
     97 	{ "mfc",	2092,	17 },
     98 	{ "mfc",	2092,	18 },
     99 	/* Cirrus CL GD 5426 -> Picasso, Piccolo, EGS Spectrum */
    100 	{ "grfcl",	2167,	11},	/* Picasso-II mem*/
    101 	{ "grfcl",	2167,	12},	/* regs */
    102 	{ "grfclx",	2193,	2},	/* Spectrum mem */
    103 	{ "grfclx",	2193,	1},	/* Spectrum regs */
    104 	{ "grfclx",	2195,	5},	/* Piccolo mem */
    105 	{ "grfclx",	2195,	6},	/* Piccolo regs */
    106 	/* Hacker Inc. */
    107 	{ "mlhsc",	2011,	1 },
    108 
    109 	/* MacroSystemsUS */
    110 	{ "wesc",	2203,	19},	/* Warp engine */
    111 	{ "grfrh",	18260,	16},	/* Retina BLT Z3 */
    112 	{ "flz3sc",	8512,	11},	/* FastlaneZ3 */
    113 	{ "flz3mem",	8512,	12},	/* FastlaneZ3 memory */
    114 	/* Cirrus CL GD 5426 -> Piccolo, EGS Spectrum */
    115 	{ "grfcl",	2193,	2},	/* Spectrum mem */
    116 	{ "grfcl",	2193,	1},	/* Spectrum regs */
    117 	{ "grfcl",	2195,	6},	/* Piccolo mem */
    118 	{ "grfcl",	2195,	5},	/* Piccolo regs */
    119 	/* Commodore Amiga */
    120 	{ "afsc",	514,	84}	/* A4091 SCSI HD Controller */
    121 };
    122 static int naconfent = sizeof(aconftab) / sizeof(struct aconfdata);
    123 
    124 /*
    125  * Anything listed in this table is subject to pre-configuration,
    126  * if autoconf.c:config_console() calls amiga_config_found() on
    127  * the Zorro III device.
    128  */
    129 static struct preconfdata preconftab[] = {
    130 	/* Retina BLT Z3 */
    131 	{ 18260, 16, 0}
    132 };
    133 static int npreconfent = sizeof(preconftab) / sizeof(struct preconfdata);
    134 
    135 
    136 void zbusattach __P((struct device *, struct device *, void *));
    137 int zbusprint __P((void *, char *));
    138 int zbusmatch __P((struct device *, struct cfdata *,void *));
    139 caddr_t zbusmap __P((caddr_t, u_int));
    140 static char *aconflookup __P((int, int));
    141 
    142 /*
    143  * given a manufacturer id and product id, find the name
    144  * that describes this board.
    145  */
    146 static char *
    147 aconflookup(mid, pid)
    148 	int mid, pid;
    149 {
    150 	struct aconfdata *adp, *eadp;
    151 
    152 	eadp = &aconftab[naconfent];
    153 	for (adp = aconftab; adp < eadp; adp++)
    154 		if (adp->manid == mid && adp->prodid == pid)
    155 			return(adp->name);
    156 	return("board");
    157 }
    158 
    159 /*
    160  * mainbus driver
    161  */
    162 struct cfdriver zbuscd = {
    163 	NULL, "zbus", (cfmatch_t)zbusmatch, zbusattach,
    164 	DV_DULL, sizeof(struct device), NULL, 0
    165 };
    166 
    167 static struct cfdata *early_cfdata;
    168 
    169 /*ARGSUSED*/
    170 int
    171 zbusmatch(pdp, cfp, auxp)
    172 	struct device *pdp;
    173 	struct cfdata *cfp;
    174 	void *auxp;
    175 {
    176 	if (matchname(auxp, "zbus") == 0)
    177 		return(0);
    178 	if (amiga_realconfig == 0)
    179 		early_cfdata = cfp;
    180 	return(1);
    181 }
    182 
    183 /*
    184  * called to attach bus, we probe, i.e., scan configdev structs passed
    185  * in, for each found name call config_found() which will do this again
    186  * with that driver if matched else print a diag.
    187  */
    188 void
    189 zbusattach(pdp, dp, auxp)
    190 	struct device *pdp, *dp;
    191 	void *auxp;
    192 {
    193 	struct zbus_args za;
    194 	struct preconfdata *pcp, *epcp;
    195 	struct cfdev *cdp, *ecdp;
    196 
    197 	epcp = &preconftab[npreconfent];
    198 	ecdp = &cfdev[ncfdev];
    199 	if (amiga_realconfig) {
    200 		if (ZTWOMEMADDR)
    201 			printf(": mem 0x%08x-0x%08x",
    202 			    ZTWOMEMADDR, ZTWOMEMADDR + NBPG * NZTWOMEMPG - 1);
    203 		if (ZBUSAVAIL)
    204 			printf (": i/o size 0x%08x", ZBUSAVAIL);
    205 		printf("\n");
    206 	}
    207 	for (cdp = cfdev; cdp < ecdp; cdp++) {
    208 		for (pcp = preconftab; pcp < epcp; pcp++) {
    209 			if (pcp->manid == cdp->rom.manid &&
    210 			    pcp->prodid == cdp->rom.prodid)
    211 				break;
    212 		}
    213 		if (amiga_realconfig == 0 && pcp >= epcp)
    214 			continue;
    215 
    216 		/*
    217 		 * check if it's a Zorro II or III board and not linked into
    218 		 * MemList (i.e. not a memory board)
    219 		 */
    220 		if ((cdp->rom.type & 0xe0) != 0xc0 &&
    221 		    (cdp->rom.type & 0xe0) != 0x80)
    222 			continue;	/* er_Type != Zorro I/O */
    223 
    224 		za.pa = cdp->addr;
    225 		za.size = cdp->size;
    226 		if (amiga_realconfig && pcp < epcp && pcp->vaddr)
    227 			za.va = pcp->vaddr;
    228 		else {
    229 			za.va = (void *) (isztwopa(za.pa) ? ztwomap(za.pa) :
    230 			    zbusmap(za.pa, za.size));
    231 /*                          ??????? */
    232 			/*
    233 			 * save value if early console init
    234 			 */
    235 			if (amiga_realconfig == 0)
    236 				pcp->vaddr = za.va;
    237 		}
    238 		za.manid = cdp->rom.manid;
    239 		za.prodid = cdp->rom.prodid;
    240 		za.serno = cdp->rom.serno;
    241 		za.slot = (((u_long)za.pa >> 16) & 0xF) - 0x9;
    242 		amiga_config_found(early_cfdata, dp, &za, zbusprint);
    243 	}
    244 }
    245 
    246 /*
    247  * print configuration info.
    248  */
    249 int
    250 zbusprint(auxp, pnp)
    251 	void *auxp;
    252 	char *pnp;
    253 {
    254 	struct zbus_args *zap;
    255 	int rv;
    256 
    257 	rv = UNCONF;
    258 	zap = auxp;
    259 
    260 	if (pnp) {
    261 		printf("%s at %s:", aconflookup(zap->manid, zap->prodid),
    262 		    pnp);
    263 		if (zap->manid == -1)
    264 			rv = UNSUPP;
    265 	}
    266 	printf(" rom 0x%x man/pro %d/%d", zap->pa, zap->manid, zap->prodid);
    267 	return(rv);
    268 }
    269 
    270 /*
    271  * this function is used to map Zorro physical I/O addresses into kernel virtual
    272  * addresses. We don't keep track which address we map where, we don't NEED
    273  * to know this. We made sure in amiga_init.c (by scanning all available Zorro
    274  * devices) to have enough kva-space available, so there is no extra range
    275  * check done here.
    276  */
    277 caddr_t
    278 zbusmap (pa, size)
    279 	caddr_t pa;
    280 	u_int size;
    281 {
    282 	static vm_offset_t nextkva = 0;
    283 	vm_offset_t kva;
    284 
    285 	if (nextkva == 0)
    286 		nextkva = ZBUSADDR;
    287 
    288 	if (nextkva > ZBUSADDR + ZBUSAVAIL)
    289 		return 0;
    290 
    291 	/* size better be an integral multiple of the page size... */
    292 	kva = nextkva;
    293 	nextkva += size;
    294 	if (nextkva > ZBUSADDR + ZBUSAVAIL)
    295 		panic("allocating too much Zorro I/O address space");
    296 	physaccess((caddr_t)kva, (caddr_t)pa, size, PG_RW|PG_CI);
    297 	return((caddr_t)kva);
    298 }
    299