Home | History | Annotate | Line # | Download | only in dev
obio.c revision 1.9
      1  1.9  deraadt /*	$NetBSD: obio.c,v 1.9 1994/11/23 07:02:17 deraadt Exp $	*/
      2  1.1  deraadt 
      3  1.1  deraadt /*
      4  1.1  deraadt  * Copyright (c) 1993, 1994 Theo de Raadt
      5  1.1  deraadt  * All rights reserved.
      6  1.1  deraadt  *
      7  1.1  deraadt  * Redistribution and use in source and binary forms, with or without
      8  1.1  deraadt  * modification, are permitted provided that the following conditions
      9  1.1  deraadt  * are met:
     10  1.1  deraadt  * 1. Redistributions of source code must retain the above copyright
     11  1.1  deraadt  *    notice, this list of conditions and the following disclaimer.
     12  1.1  deraadt  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1  deraadt  *    notice, this list of conditions and the following disclaimer in the
     14  1.1  deraadt  *    documentation and/or other materials provided with the distribution.
     15  1.1  deraadt  * 3. All advertising materials mentioning features or use of this software
     16  1.1  deraadt  *    must display the following acknowledgement:
     17  1.1  deraadt  *	This product includes software developed by Theo de Raadt.
     18  1.1  deraadt  * 4. The name of the author may not be used to endorse or promote products
     19  1.1  deraadt  *    derived from this software without specific prior written permission.
     20  1.1  deraadt  *
     21  1.1  deraadt  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22  1.1  deraadt  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23  1.1  deraadt  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24  1.1  deraadt  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25  1.1  deraadt  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26  1.1  deraadt  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27  1.1  deraadt  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28  1.1  deraadt  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29  1.1  deraadt  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30  1.1  deraadt  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31  1.1  deraadt  */
     32  1.1  deraadt 
     33  1.1  deraadt #include <sys/param.h>
     34  1.1  deraadt #include <sys/device.h>
     35  1.1  deraadt #include <sys/malloc.h>
     36  1.1  deraadt 
     37  1.1  deraadt #ifdef DEBUG
     38  1.1  deraadt #include <sys/proc.h>
     39  1.1  deraadt #include <sys/syslog.h>
     40  1.1  deraadt #endif
     41  1.1  deraadt 
     42  1.1  deraadt #include <vm/vm.h>
     43  1.1  deraadt 
     44  1.1  deraadt #include <machine/autoconf.h>
     45  1.1  deraadt #include <machine/pmap.h>
     46  1.2  deraadt #include <machine/oldmon.h>
     47  1.5  deraadt #include <machine/cpu.h>
     48  1.2  deraadt #include <machine/ctlreg.h>
     49  1.2  deraadt #include <sparc/sparc/asm.h>
     50  1.2  deraadt #include <sparc/sparc/vaddrs.h>
     51  1.1  deraadt 
     52  1.4  deraadt struct bus_softc {
     53  1.1  deraadt 	struct	device sc_dev;		/* base device */
     54  1.1  deraadt 	int	nothing;
     55  1.1  deraadt };
     56  1.1  deraadt 
     57  1.1  deraadt /* autoconfiguration driver */
     58  1.9  deraadt static int	busmatch __P((struct device *, void *, void *));
     59  1.9  deraadt static void	obioattach __P((struct device *, struct device *, void *));
     60  1.9  deraadt static void	vmesattach __P((struct device *, struct device *, void *));
     61  1.9  deraadt static void	vmelattach __P((struct device *, struct device *, void *));
     62  1.4  deraadt 
     63  1.4  deraadt struct cfdriver obiocd = { NULL, "obio", busmatch, obioattach,
     64  1.4  deraadt 	DV_DULL, sizeof(struct bus_softc)
     65  1.4  deraadt };
     66  1.4  deraadt struct cfdriver vmelcd = { NULL, "vmel", busmatch, vmelattach,
     67  1.4  deraadt 	DV_DULL, sizeof(struct bus_softc)
     68  1.1  deraadt };
     69  1.4  deraadt struct cfdriver vmescd = { NULL, "vmes", busmatch, vmesattach,
     70  1.4  deraadt 	DV_DULL, sizeof(struct bus_softc)
     71  1.4  deraadt };
     72  1.4  deraadt 
     73  1.9  deraadt static void	busattach __P((struct device *, struct device *, void *, int));
     74  1.1  deraadt 
     75  1.4  deraadt void *		bus_map __P((void *, int, int));
     76  1.4  deraadt void *		bus_tmp __P((void *, int));
     77  1.4  deraadt void		bus_untmp __P((void));
     78  1.2  deraadt 
     79  1.1  deraadt int
     80  1.9  deraadt busmatch(parent, vcf, aux)
     81  1.1  deraadt 	struct device *parent;
     82  1.9  deraadt 	void *vcf, *aux;
     83  1.1  deraadt {
     84  1.9  deraadt 	struct cfdata *cf = vcf;
     85  1.3  deraadt 	register struct confargs *ca = aux;
     86  1.3  deraadt 	register struct romaux *ra = &ca->ca_ra;
     87  1.3  deraadt 
     88  1.1  deraadt 	if (cputyp != CPU_SUN4)
     89  1.3  deraadt 		return (0);
     90  1.3  deraadt 	return (strcmp(cf->cf_driver->cd_name, ra->ra_name) == 0);
     91  1.1  deraadt }
     92  1.1  deraadt 
     93  1.1  deraadt int
     94  1.4  deraadt busprint(args, obio)
     95  1.1  deraadt 	void *args;
     96  1.1  deraadt 	char *obio;
     97  1.1  deraadt {
     98  1.2  deraadt 	register struct confargs *ca = args;
     99  1.2  deraadt 
    100  1.2  deraadt 	if (ca->ca_ra.ra_name == NULL)
    101  1.2  deraadt 		ca->ca_ra.ra_name = "<unknown>";
    102  1.2  deraadt 	if (obio)
    103  1.3  deraadt 		printf("[%s at %s]", ca->ca_ra.ra_name, obio);
    104  1.3  deraadt 	printf(" addr %x", ca->ca_ra.ra_paddr);
    105  1.7  deraadt 	if (ca->ca_ra.ra_intr[0].int_vec != -1)
    106  1.7  deraadt 		printf(" vec 0x%x", ca->ca_ra.ra_intr[0].int_vec);
    107  1.1  deraadt 	return (UNCONF);
    108  1.1  deraadt }
    109  1.1  deraadt 
    110  1.1  deraadt void
    111  1.4  deraadt busattach(parent, self, args, bustype)
    112  1.1  deraadt 	struct device *parent, *self;
    113  1.3  deraadt 	void *args;
    114  1.4  deraadt 	int bustype;
    115  1.1  deraadt {
    116  1.4  deraadt 	register struct bus_softc *sc = (struct bus_softc *)self;
    117  1.1  deraadt 	extern struct cfdata cfdata[];
    118  1.3  deraadt 	register struct confargs *ca = args;
    119  1.3  deraadt 	struct confargs oca;
    120  1.1  deraadt 	register short *p;
    121  1.1  deraadt 	struct cfdata *cf;
    122  1.4  deraadt 	caddr_t tmp;
    123  1.1  deraadt 
    124  1.1  deraadt 	if (sc->sc_dev.dv_unit > 0) {
    125  1.1  deraadt 		printf(" unsupported\n");
    126  1.1  deraadt 		return;
    127  1.1  deraadt 	}
    128  1.1  deraadt 
    129  1.4  deraadt 	printf("\n");
    130  1.4  deraadt 
    131  1.1  deraadt 	for (cf = cfdata; cf->cf_driver; cf++) {
    132  1.1  deraadt 		if (cf->cf_fstate == FSTATE_FOUND)
    133  1.1  deraadt 			continue;
    134  1.1  deraadt 		for (p = cf->cf_parents; *p >= 0; p++)
    135  1.3  deraadt 			if (self->dv_cfdata == &cfdata[*p]) {
    136  1.3  deraadt 				oca.ca_ra.ra_iospace = -1;
    137  1.3  deraadt 				oca.ca_ra.ra_paddr = (void *)cf->cf_loc[0];
    138  1.3  deraadt 				oca.ca_ra.ra_len = 0;
    139  1.4  deraadt 				tmp = NULL;
    140  1.3  deraadt 				if (oca.ca_ra.ra_paddr)
    141  1.4  deraadt 					tmp = bus_tmp(oca.ca_ra.ra_paddr,
    142  1.4  deraadt 					    bustype);
    143  1.4  deraadt 				oca.ca_ra.ra_vaddr = tmp;
    144  1.3  deraadt 				oca.ca_ra.ra_intr[0].int_pri = cf->cf_loc[1];
    145  1.5  deraadt 				if (bustype == BUS_VME16 || bustype == BUS_VME32)
    146  1.5  deraadt 					oca.ca_ra.ra_intr[0].int_vec = cf->cf_loc[2];
    147  1.5  deraadt 				else
    148  1.8  deraadt 					oca.ca_ra.ra_intr[0].int_vec = -1;
    149  1.3  deraadt 				oca.ca_ra.ra_nintr = 1;
    150  1.3  deraadt 				oca.ca_ra.ra_name = cf->cf_driver->cd_name;
    151  1.3  deraadt 				oca.ca_ra.ra_bp = ca->ca_ra.ra_bp;
    152  1.4  deraadt 				oca.ca_bustype = bustype;
    153  1.3  deraadt 
    154  1.3  deraadt 				if ((*cf->cf_driver->cd_match)(self, cf, &oca) == 0)
    155  1.2  deraadt 					continue;
    156  1.2  deraadt 
    157  1.3  deraadt 				/*
    158  1.3  deraadt 				 * check if XXmatch routine replaced the
    159  1.3  deraadt 				 * temporary mapping with a real mapping.
    160  1.3  deraadt 				 */
    161  1.4  deraadt 				if (tmp == oca.ca_ra.ra_vaddr)
    162  1.3  deraadt 					oca.ca_ra.ra_vaddr = NULL;
    163  1.3  deraadt 				/*
    164  1.3  deraadt 				 * or if it has asked us to create a mapping..
    165  1.3  deraadt 				 * (which won't be seen on future XXmatch calls,
    166  1.3  deraadt 				 * so not as useful as it seems.)
    167  1.3  deraadt 				 */
    168  1.3  deraadt 				if (oca.ca_ra.ra_len)
    169  1.3  deraadt 					oca.ca_ra.ra_vaddr =
    170  1.4  deraadt 					    bus_map(oca.ca_ra.ra_paddr,
    171  1.4  deraadt 					    oca.ca_ra.ra_len, oca.ca_bustype);
    172  1.3  deraadt 
    173  1.4  deraadt 				config_attach(self, cf, &oca, busprint);
    174  1.1  deraadt 			}
    175  1.1  deraadt 	}
    176  1.4  deraadt 	bus_untmp();
    177  1.4  deraadt }
    178  1.4  deraadt 
    179  1.4  deraadt void
    180  1.4  deraadt obioattach(parent, self, args)
    181  1.4  deraadt 	struct device *parent, *self;
    182  1.4  deraadt 	void *args;
    183  1.4  deraadt {
    184  1.4  deraadt 	busattach(parent, self, args, BUS_OBIO);
    185  1.2  deraadt }
    186  1.2  deraadt 
    187  1.5  deraadt struct intrhand **vmeints;
    188  1.5  deraadt 
    189  1.4  deraadt void
    190  1.4  deraadt vmesattach(parent, self, args)
    191  1.4  deraadt 	struct device *parent, *self;
    192  1.4  deraadt 	void *args;
    193  1.4  deraadt {
    194  1.5  deraadt 	if (vmeints == NULL) {
    195  1.5  deraadt 		vmeints = (struct intrhand **)malloc(256 *
    196  1.5  deraadt 		    sizeof(struct intrhand *), M_TEMP, M_NOWAIT);
    197  1.5  deraadt 		bzero(vmeints, 256 * sizeof(struct intrhand *));
    198  1.5  deraadt 	}
    199  1.4  deraadt 	busattach(parent, self, args, BUS_VME16);
    200  1.4  deraadt }
    201  1.4  deraadt 
    202  1.4  deraadt void
    203  1.4  deraadt vmelattach(parent, self, args)
    204  1.4  deraadt 	struct device *parent, *self;
    205  1.4  deraadt 	void *args;
    206  1.4  deraadt {
    207  1.5  deraadt 	if (vmeints == NULL) {
    208  1.5  deraadt 		vmeints = (struct intrhand **)malloc(256 *
    209  1.5  deraadt 		    sizeof(struct intrhand *), M_TEMP, M_NOWAIT);
    210  1.5  deraadt 		bzero(vmeints, 256 * sizeof(struct intrhand *));
    211  1.5  deraadt 	}
    212  1.4  deraadt 	busattach(parent, self, args, BUS_VME32);
    213  1.4  deraadt }
    214  1.4  deraadt 
    215  1.5  deraadt int pil_to_vme[] = {
    216  1.5  deraadt 	-1,	/* pil 0 */
    217  1.5  deraadt 	-1,	/* pil 1 */
    218  1.5  deraadt 	1,	/* pil 2 */
    219  1.5  deraadt 	2,	/* pil 3 */
    220  1.5  deraadt 	-1,	/* pil 4 */
    221  1.5  deraadt 	3,	/* pil 5 */
    222  1.5  deraadt 	-1,	/* pil 6 */
    223  1.5  deraadt 	4,	/* pil 7 */
    224  1.5  deraadt 	-1,	/* pil 8 */
    225  1.5  deraadt 	5,	/* pil 9 */
    226  1.5  deraadt 	-1,	/* pil 10 */
    227  1.5  deraadt 	6,	/* pil 11 */
    228  1.5  deraadt 	-1,	/* pil 12 */
    229  1.5  deraadt 	7,	/* pil 13 */
    230  1.5  deraadt 	-1,	/* pil 14 */
    231  1.5  deraadt 	-1,	/* pil 15 */
    232  1.5  deraadt };
    233  1.5  deraadt 
    234  1.5  deraadt int
    235  1.5  deraadt vmeintr(arg)
    236  1.5  deraadt 	void *arg;
    237  1.5  deraadt {
    238  1.5  deraadt 	int level = (int)arg, vec;
    239  1.5  deraadt 	struct intrhand *ih;
    240  1.5  deraadt 	int i = 0;
    241  1.5  deraadt 
    242  1.6  deraadt 	vec = ldcontrolb(AC_VMEINTVEC | (pil_to_vme[level] << 1) | 1);
    243  1.6  deraadt 	if (vec == -1) {
    244  1.6  deraadt 		printf("vme: spurious interrupt\n");
    245  1.6  deraadt 		return 0;
    246  1.6  deraadt 	}
    247  1.5  deraadt 
    248  1.5  deraadt 	for (ih = vmeints[vec]; ih; ih = ih->ih_next)
    249  1.5  deraadt 		if (ih->ih_fun)
    250  1.5  deraadt 			i += (ih->ih_fun)(ih->ih_arg);
    251  1.5  deraadt 	return (i);
    252  1.5  deraadt }
    253  1.5  deraadt 
    254  1.5  deraadt void
    255  1.5  deraadt vmeintr_establish(vec, level, ih)
    256  1.5  deraadt 	int vec, level;
    257  1.5  deraadt 	struct intrhand *ih;
    258  1.5  deraadt {
    259  1.5  deraadt 	struct intrhand *ihs;
    260  1.5  deraadt 
    261  1.8  deraadt 	if (vec == -1)
    262  1.8  deraadt 		panic("vmeintr_establish: uninitialized vec\n");
    263  1.8  deraadt 
    264  1.5  deraadt 	if (vmeints[vec] == NULL)
    265  1.5  deraadt 		vmeints[vec] = ih;
    266  1.5  deraadt 	else {
    267  1.5  deraadt 		for (ihs = vmeints[vec]; ihs->ih_next; ihs = ihs->ih_next)
    268  1.5  deraadt 			;
    269  1.5  deraadt 		ihs->ih_next = ih;
    270  1.5  deraadt 	}
    271  1.5  deraadt 
    272  1.5  deraadt 	/* ensure the interrupt subsystem will call us at this level */
    273  1.5  deraadt 	for (ihs = intrhand[level]; ihs; ihs = ihs->ih_next)
    274  1.5  deraadt 		if (ihs->ih_fun == vmeintr)
    275  1.5  deraadt 			return;
    276  1.5  deraadt 
    277  1.5  deraadt 	ihs = (struct intrhand *)malloc(sizeof(struct intrhand),
    278  1.5  deraadt 	    M_TEMP, M_NOWAIT);
    279  1.5  deraadt 	if (ihs == NULL)
    280  1.5  deraadt 		panic("vme_addirq");
    281  1.5  deraadt 	bzero(ihs, sizeof *ihs);
    282  1.5  deraadt 	ihs->ih_fun = vmeintr;
    283  1.5  deraadt 	ihs->ih_arg = (void *)level;
    284  1.5  deraadt 	intr_establish(level, ihs);
    285  1.5  deraadt }
    286  1.4  deraadt 
    287  1.2  deraadt #define	getpte(va)		lda(va, ASI_PTE)
    288  1.2  deraadt 
    289  1.2  deraadt /*
    290  1.2  deraadt  * If we can find a mapping that was established by the rom, use it.
    291  1.2  deraadt  * Else, create a new mapping.
    292  1.2  deraadt  */
    293  1.2  deraadt void *
    294  1.4  deraadt bus_map(pa, len, bustype)
    295  1.2  deraadt 	void *pa;
    296  1.2  deraadt 	int len;
    297  1.4  deraadt 	int bustype;
    298  1.2  deraadt {
    299  1.3  deraadt 	u_long	pf = (u_long)pa >> PGSHIFT;
    300  1.2  deraadt 	u_long	va, pte;
    301  1.4  deraadt 	int pgtype;
    302  1.4  deraadt 
    303  1.4  deraadt 	switch (bt2pmt[bustype]) {
    304  1.4  deraadt 	case PMAP_OBIO:
    305  1.4  deraadt 		pgtype = PG_OBIO;
    306  1.4  deraadt 		break;
    307  1.4  deraadt 	case PMAP_VME32:
    308  1.4  deraadt 		pgtype = PG_VME32;
    309  1.4  deraadt 		break;
    310  1.4  deraadt 	case PMAP_VME16:
    311  1.4  deraadt 		pgtype = PG_VME16;
    312  1.4  deraadt 		break;
    313  1.4  deraadt 	}
    314  1.2  deraadt 
    315  1.3  deraadt 	if (len <= NBPG) {
    316  1.3  deraadt 		for (va = OLDMON_STARTVADDR; va < OLDMON_ENDVADDR; va += NBPG) {
    317  1.3  deraadt 			pte = getpte(va);
    318  1.4  deraadt 			if ((pte & PG_V) != 0 && (pte & PG_TYPE) == pgtype &&
    319  1.3  deraadt 			    (pte & PG_PFNUM) == pf)
    320  1.3  deraadt 				return ((void *)va);
    321  1.3  deraadt 		}
    322  1.2  deraadt 	}
    323  1.4  deraadt 	return mapiodev(pa, len, bustype);
    324  1.2  deraadt }
    325  1.2  deraadt 
    326  1.2  deraadt void *
    327  1.4  deraadt bus_tmp(pa, bustype)
    328  1.2  deraadt 	void *pa;
    329  1.4  deraadt 	int bustype;
    330  1.2  deraadt {
    331  1.3  deraadt 	vm_offset_t addr = (vm_offset_t)pa & ~PGOFSET;
    332  1.4  deraadt 	int pmtype = bt2pmt[bustype];
    333  1.3  deraadt 
    334  1.2  deraadt 	pmap_enter(kernel_pmap, TMPMAP_VA,
    335  1.4  deraadt 	    addr | pmtype | PMAP_NC,
    336  1.2  deraadt 	    VM_PROT_READ | VM_PROT_WRITE, 1);
    337  1.2  deraadt 	return ((void *)TMPMAP_VA);
    338  1.2  deraadt }
    339  1.2  deraadt 
    340  1.2  deraadt void
    341  1.4  deraadt bus_untmp()
    342  1.2  deraadt {
    343  1.2  deraadt 	pmap_remove(kernel_pmap, TMPMAP_VA, TMPMAP_VA+NBPG);
    344  1.6  deraadt }
    345  1.6  deraadt 
    346  1.6  deraadt void
    347  1.6  deraadt wzero(b, l)
    348  1.8  deraadt 	u_char *b;
    349  1.6  deraadt 	int l;
    350  1.6  deraadt {
    351  1.8  deraadt 	register u_char *be = b + l;
    352  1.8  deraadt 	register u_short *sp;
    353  1.6  deraadt 
    354  1.6  deraadt 	if (l <= 0)
    355  1.6  deraadt 		return;
    356  1.6  deraadt 
    357  1.6  deraadt 	/* front, */
    358  1.6  deraadt 	if ((u_long)b & 1)
    359  1.6  deraadt 		*b++ = 0;
    360  1.6  deraadt 
    361  1.6  deraadt 	/* back, */
    362  1.6  deraadt 	if (b != be && ((u_long)be & 1) != 0) {
    363  1.6  deraadt 		be--;
    364  1.6  deraadt 		*be = 0;
    365  1.6  deraadt 	}
    366  1.6  deraadt 
    367  1.6  deraadt 	/* and middle. */
    368  1.6  deraadt 	sp = (u_short *)b;
    369  1.6  deraadt 	while (sp != (u_short *)be)
    370  1.6  deraadt 		*sp++ = 0;
    371  1.6  deraadt }
    372  1.6  deraadt 
    373  1.6  deraadt void
    374  1.6  deraadt wcopy(b1, b2, l)
    375  1.6  deraadt 	u_char *b1, *b2;
    376  1.6  deraadt 	u_long l;
    377  1.6  deraadt {
    378  1.6  deraadt 	register u_short *sp;
    379  1.6  deraadt 	register int bstore = 0;
    380  1.6  deraadt 	register u_char *b1e;
    381  1.6  deraadt 
    382  1.6  deraadt 	if (l <= 0)
    383  1.6  deraadt 		return;
    384  1.6  deraadt 
    385  1.6  deraadt 	/* front, */
    386  1.6  deraadt 	if ((u_long)b1 & 1) {
    387  1.6  deraadt 		*b2++ = *b1++;
    388  1.6  deraadt 		l--;
    389  1.6  deraadt 	}
    390  1.6  deraadt 
    391  1.6  deraadt 	/* middle, */
    392  1.6  deraadt 	sp = (u_short *)b1;
    393  1.6  deraadt 	b1e = b1 + l;
    394  1.6  deraadt 	if (l & 1)
    395  1.6  deraadt 		b1e--;
    396  1.6  deraadt 	bstore = (u_long)b2 & 1;
    397  1.6  deraadt 
    398  1.6  deraadt 	while (sp < (u_short *)b1e) {
    399  1.6  deraadt 		if (bstore) {
    400  1.6  deraadt 			b2[1] = *sp & 0xff;
    401  1.6  deraadt 			b2[0] = *sp >> 8;
    402  1.6  deraadt 		} else
    403  1.6  deraadt 			*((short *)b2) = *sp;
    404  1.6  deraadt 		sp++;
    405  1.6  deraadt 		b2 += 2;
    406  1.6  deraadt 	}
    407  1.6  deraadt 
    408  1.6  deraadt 	/* and back. */
    409  1.6  deraadt 	if (l & 1)
    410  1.6  deraadt 		*b2 = *b1e;
    411  1.1  deraadt }
    412