Home | History | Annotate | Line # | Download | only in dev
obio.c revision 1.17
      1  1.17       pk /*	$NetBSD: obio.c,v 1.17 1995/12/11 12:43:30 pk 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.17       pk #if defined(SUN4)
     61   1.9  deraadt static void	vmesattach __P((struct device *, struct device *, void *));
     62   1.9  deraadt static void	vmelattach __P((struct device *, struct device *, void *));
     63  1.17       pk static int	busattach __P((struct device *, void *, void *, int));
     64  1.17       pk void *		bus_map __P((struct rom_reg *, int, int));
     65  1.17       pk void *		bus_tmp __P((void *, int));
     66  1.17       pk void		bus_untmp __P((void));
     67  1.17       pk #endif
     68   1.4  deraadt 
     69   1.4  deraadt struct cfdriver obiocd = { NULL, "obio", busmatch, obioattach,
     70   1.4  deraadt 	DV_DULL, sizeof(struct bus_softc)
     71   1.4  deraadt };
     72  1.17       pk #if defined(SUN4)
     73   1.4  deraadt struct cfdriver vmelcd = { NULL, "vmel", busmatch, vmelattach,
     74   1.4  deraadt 	DV_DULL, sizeof(struct bus_softc)
     75   1.1  deraadt };
     76   1.4  deraadt struct cfdriver vmescd = { NULL, "vmes", busmatch, vmesattach,
     77   1.4  deraadt 	DV_DULL, sizeof(struct bus_softc)
     78   1.4  deraadt };
     79  1.17       pk #endif
     80   1.4  deraadt 
     81   1.2  deraadt 
     82   1.1  deraadt int
     83   1.9  deraadt busmatch(parent, vcf, aux)
     84   1.1  deraadt 	struct device *parent;
     85   1.9  deraadt 	void *vcf, *aux;
     86   1.1  deraadt {
     87   1.9  deraadt 	struct cfdata *cf = vcf;
     88   1.3  deraadt 	register struct confargs *ca = aux;
     89   1.3  deraadt 	register struct romaux *ra = &ca->ca_ra;
     90   1.3  deraadt 
     91   1.1  deraadt 	if (cputyp != CPU_SUN4)
     92   1.3  deraadt 		return (0);
     93   1.3  deraadt 	return (strcmp(cf->cf_driver->cd_name, ra->ra_name) == 0);
     94   1.1  deraadt }
     95   1.1  deraadt 
     96   1.1  deraadt int
     97   1.4  deraadt busprint(args, obio)
     98   1.1  deraadt 	void *args;
     99   1.1  deraadt 	char *obio;
    100   1.1  deraadt {
    101   1.2  deraadt 	register struct confargs *ca = args;
    102   1.2  deraadt 
    103   1.2  deraadt 	if (ca->ca_ra.ra_name == NULL)
    104   1.2  deraadt 		ca->ca_ra.ra_name = "<unknown>";
    105   1.2  deraadt 	if (obio)
    106   1.3  deraadt 		printf("[%s at %s]", ca->ca_ra.ra_name, obio);
    107   1.3  deraadt 	printf(" addr %x", ca->ca_ra.ra_paddr);
    108   1.7  deraadt 	if (ca->ca_ra.ra_intr[0].int_vec != -1)
    109   1.7  deraadt 		printf(" vec 0x%x", ca->ca_ra.ra_intr[0].int_vec);
    110   1.1  deraadt 	return (UNCONF);
    111   1.1  deraadt }
    112   1.1  deraadt 
    113  1.14       pk 
    114  1.14       pk int
    115  1.14       pk busattach(parent, child, args, bustype)
    116  1.14       pk 	struct device *parent;
    117  1.14       pk 	void *args, *child;
    118   1.4  deraadt 	int bustype;
    119   1.1  deraadt {
    120  1.14       pk 	struct cfdata *cf = child;
    121  1.14       pk 	register struct bus_softc *sc = (struct bus_softc *)parent;
    122   1.3  deraadt 	register struct confargs *ca = args;
    123   1.3  deraadt 	struct confargs oca;
    124   1.4  deraadt 	caddr_t tmp;
    125   1.1  deraadt 
    126  1.14       pk 	if (bustype == BUS_OBIO && cputyp == CPU_SUN4) {
    127  1.14       pk 		/*
    128  1.14       pk 		 * On the 4/100 obio addresses must be mapped at
    129  1.14       pk 		 * 0x0YYYYYYY, but alias higher up (we avoid the
    130  1.14       pk 		 * alias condition because it causes pmap difficulties)
    131  1.14       pk 		 * XXX: We also assume that 4/[23]00 obio addresses
    132  1.14       pk 		 * must be 0xZYYYYYYY, where (Z != 0)
    133  1.14       pk 		 */
    134  1.14       pk 		if (cpumod==SUN4_100 && (cf->cf_loc[0] & 0xf0000000))
    135  1.14       pk 			return 0;
    136  1.14       pk 		if (cpumod!=SUN4_100 && !(cf->cf_loc[0] & 0xf0000000))
    137  1.14       pk 			return 0;
    138  1.14       pk 	}
    139  1.14       pk 
    140  1.14       pk 	if (parent->dv_cfdata->cf_driver->cd_indirect) {
    141  1.14       pk 		printf(" indirect devices not supported\n");
    142  1.14       pk 		return 0;
    143   1.1  deraadt 	}
    144   1.1  deraadt 
    145  1.14       pk 	oca.ca_ra.ra_iospace = -1;
    146  1.14       pk 	oca.ca_ra.ra_paddr = (void *)cf->cf_loc[0];
    147  1.14       pk 	oca.ca_ra.ra_len = 0;
    148  1.14       pk 	oca.ca_ra.ra_nreg = 1;
    149  1.14       pk 	tmp = NULL;
    150  1.14       pk 	if (oca.ca_ra.ra_paddr)
    151  1.14       pk 		tmp = bus_tmp(oca.ca_ra.ra_paddr,
    152  1.14       pk 		    bustype);
    153  1.14       pk 	oca.ca_ra.ra_vaddr = tmp;
    154  1.14       pk 	oca.ca_ra.ra_intr[0].int_pri = cf->cf_loc[1];
    155  1.14       pk 	if (bustype == BUS_VME16 || bustype == BUS_VME32)
    156  1.14       pk 		oca.ca_ra.ra_intr[0].int_vec = cf->cf_loc[2];
    157  1.14       pk 	else
    158  1.14       pk 		oca.ca_ra.ra_intr[0].int_vec = -1;
    159  1.14       pk 	oca.ca_ra.ra_nintr = 1;
    160  1.14       pk 	oca.ca_ra.ra_name = cf->cf_driver->cd_name;
    161  1.15       pk 	if (ca->ca_ra.ra_bp != NULL &&
    162  1.16       pk 	  ((bustype == BUS_VME16 && strcmp(ca->ca_ra.ra_bp->name,"vmes") ==0) ||
    163  1.16       pk 	   (bustype == BUS_VME32 && strcmp(ca->ca_ra.ra_bp->name,"vmel") ==0) ||
    164  1.16       pk 	   (bustype == BUS_OBIO && strcmp(ca->ca_ra.ra_bp->name,"obio") == 0)))
    165  1.15       pk 		oca.ca_ra.ra_bp = ca->ca_ra.ra_bp + 1;
    166  1.15       pk 	else
    167  1.15       pk 		oca.ca_ra.ra_bp = NULL;
    168  1.14       pk 	oca.ca_bustype = bustype;
    169  1.14       pk 
    170  1.14       pk 	if ((*cf->cf_driver->cd_match)(parent, cf, &oca) == 0)
    171  1.14       pk 		return 0;
    172  1.14       pk 
    173  1.14       pk 	/*
    174  1.14       pk 	 * check if XXmatch routine replaced the
    175  1.14       pk 	 * temporary mapping with a real mapping.
    176  1.14       pk 	 */
    177  1.14       pk 	if (tmp == oca.ca_ra.ra_vaddr)
    178  1.14       pk 		oca.ca_ra.ra_vaddr = NULL;
    179  1.14       pk 	/*
    180  1.14       pk 	 * or if it has asked us to create a mapping..
    181  1.14       pk 	 * (which won't be seen on future XXmatch calls,
    182  1.14       pk 	 * so not as useful as it seems.)
    183  1.14       pk 	 */
    184  1.14       pk 	if (oca.ca_ra.ra_len)
    185  1.14       pk 		oca.ca_ra.ra_vaddr =
    186  1.17       pk 		    bus_map(oca.ca_ra.ra_reg,
    187  1.14       pk 		    oca.ca_ra.ra_len, oca.ca_bustype);
    188  1.14       pk 
    189  1.14       pk 	config_attach(parent, cf, &oca, busprint);
    190  1.14       pk 	return 1;
    191  1.14       pk }
    192   1.4  deraadt 
    193  1.17       pk #if defined(SUN4)
    194  1.14       pk int
    195  1.14       pk obio_scan(parent, child, args)
    196  1.14       pk 	struct device *parent;
    197  1.14       pk 	void *child, *args;
    198  1.14       pk {
    199  1.14       pk 	return busattach(parent, child, args, BUS_OBIO);
    200   1.4  deraadt }
    201  1.17       pk #endif
    202   1.4  deraadt 
    203   1.4  deraadt void
    204   1.4  deraadt obioattach(parent, self, args)
    205   1.4  deraadt 	struct device *parent, *self;
    206   1.4  deraadt 	void *args;
    207   1.4  deraadt {
    208  1.17       pk #if defined(SUN4)
    209  1.17       pk 	if (cputyp == CPU_SUN4) {
    210  1.17       pk 		if (self->dv_unit > 0) {
    211  1.17       pk 			printf(" unsupported\n");
    212  1.17       pk 			return;
    213  1.17       pk 		}
    214  1.17       pk 		printf("\n");
    215  1.17       pk 
    216  1.17       pk 		(void)config_search(obio_scan, self, args);
    217  1.17       pk 		bus_untmp();
    218  1.14       pk 	}
    219  1.17       pk #endif
    220   1.2  deraadt }
    221   1.2  deraadt 
    222  1.17       pk #if defined(SUN4)
    223   1.5  deraadt struct intrhand **vmeints;
    224   1.5  deraadt 
    225  1.14       pk int
    226  1.14       pk vmes_scan(parent, child, args)
    227  1.14       pk 	struct device *parent;
    228  1.14       pk 	void *child, *args;
    229  1.14       pk {
    230  1.14       pk 	return busattach(parent, child, args, BUS_VME16);
    231  1.14       pk }
    232  1.14       pk 
    233   1.4  deraadt void
    234   1.4  deraadt vmesattach(parent, self, args)
    235   1.4  deraadt 	struct device *parent, *self;
    236   1.4  deraadt 	void *args;
    237   1.4  deraadt {
    238  1.14       pk 	if (self->dv_unit > 0) {
    239  1.14       pk 		printf(" unsupported\n");
    240  1.14       pk 		return;
    241  1.14       pk 	}
    242  1.14       pk 	printf("\n");
    243  1.14       pk 
    244   1.5  deraadt 	if (vmeints == NULL) {
    245   1.5  deraadt 		vmeints = (struct intrhand **)malloc(256 *
    246   1.5  deraadt 		    sizeof(struct intrhand *), M_TEMP, M_NOWAIT);
    247   1.5  deraadt 		bzero(vmeints, 256 * sizeof(struct intrhand *));
    248   1.5  deraadt 	}
    249  1.14       pk 	(void)config_search(vmes_scan, self, args);
    250  1.14       pk 	bus_untmp();
    251  1.14       pk }
    252  1.14       pk 
    253  1.14       pk int
    254  1.14       pk vmel_scan(parent, child, args)
    255  1.14       pk 	struct device *parent;
    256  1.14       pk 	void *child, *args;
    257  1.14       pk {
    258  1.14       pk 	return busattach(parent, child, args, BUS_VME32);
    259   1.4  deraadt }
    260   1.4  deraadt 
    261   1.4  deraadt void
    262   1.4  deraadt vmelattach(parent, self, args)
    263   1.4  deraadt 	struct device *parent, *self;
    264   1.4  deraadt 	void *args;
    265   1.4  deraadt {
    266  1.14       pk 	if (self->dv_unit > 0) {
    267  1.14       pk 		printf(" unsupported\n");
    268  1.14       pk 		return;
    269  1.14       pk 	}
    270  1.14       pk 	printf("\n");
    271  1.14       pk 
    272   1.5  deraadt 	if (vmeints == NULL) {
    273   1.5  deraadt 		vmeints = (struct intrhand **)malloc(256 *
    274   1.5  deraadt 		    sizeof(struct intrhand *), M_TEMP, M_NOWAIT);
    275   1.5  deraadt 		bzero(vmeints, 256 * sizeof(struct intrhand *));
    276   1.5  deraadt 	}
    277  1.14       pk 	(void)config_search(vmel_scan, self, args);
    278  1.14       pk 	bus_untmp();
    279   1.4  deraadt }
    280   1.4  deraadt 
    281   1.5  deraadt int pil_to_vme[] = {
    282   1.5  deraadt 	-1,	/* pil 0 */
    283   1.5  deraadt 	-1,	/* pil 1 */
    284   1.5  deraadt 	1,	/* pil 2 */
    285   1.5  deraadt 	2,	/* pil 3 */
    286   1.5  deraadt 	-1,	/* pil 4 */
    287   1.5  deraadt 	3,	/* pil 5 */
    288   1.5  deraadt 	-1,	/* pil 6 */
    289   1.5  deraadt 	4,	/* pil 7 */
    290   1.5  deraadt 	-1,	/* pil 8 */
    291   1.5  deraadt 	5,	/* pil 9 */
    292   1.5  deraadt 	-1,	/* pil 10 */
    293   1.5  deraadt 	6,	/* pil 11 */
    294   1.5  deraadt 	-1,	/* pil 12 */
    295   1.5  deraadt 	7,	/* pil 13 */
    296   1.5  deraadt 	-1,	/* pil 14 */
    297   1.5  deraadt 	-1,	/* pil 15 */
    298   1.5  deraadt };
    299   1.5  deraadt 
    300   1.5  deraadt int
    301   1.5  deraadt vmeintr(arg)
    302   1.5  deraadt 	void *arg;
    303   1.5  deraadt {
    304   1.5  deraadt 	int level = (int)arg, vec;
    305   1.5  deraadt 	struct intrhand *ih;
    306   1.5  deraadt 	int i = 0;
    307   1.5  deraadt 
    308   1.6  deraadt 	vec = ldcontrolb(AC_VMEINTVEC | (pil_to_vme[level] << 1) | 1);
    309   1.6  deraadt 	if (vec == -1) {
    310   1.6  deraadt 		printf("vme: spurious interrupt\n");
    311   1.6  deraadt 		return 0;
    312   1.6  deraadt 	}
    313   1.5  deraadt 
    314   1.5  deraadt 	for (ih = vmeints[vec]; ih; ih = ih->ih_next)
    315   1.5  deraadt 		if (ih->ih_fun)
    316   1.5  deraadt 			i += (ih->ih_fun)(ih->ih_arg);
    317   1.5  deraadt 	return (i);
    318   1.5  deraadt }
    319   1.5  deraadt 
    320   1.5  deraadt void
    321   1.5  deraadt vmeintr_establish(vec, level, ih)
    322   1.5  deraadt 	int vec, level;
    323   1.5  deraadt 	struct intrhand *ih;
    324   1.5  deraadt {
    325   1.5  deraadt 	struct intrhand *ihs;
    326   1.5  deraadt 
    327   1.8  deraadt 	if (vec == -1)
    328   1.8  deraadt 		panic("vmeintr_establish: uninitialized vec\n");
    329   1.8  deraadt 
    330   1.5  deraadt 	if (vmeints[vec] == NULL)
    331   1.5  deraadt 		vmeints[vec] = ih;
    332   1.5  deraadt 	else {
    333   1.5  deraadt 		for (ihs = vmeints[vec]; ihs->ih_next; ihs = ihs->ih_next)
    334   1.5  deraadt 			;
    335   1.5  deraadt 		ihs->ih_next = ih;
    336   1.5  deraadt 	}
    337   1.5  deraadt 
    338   1.5  deraadt 	/* ensure the interrupt subsystem will call us at this level */
    339   1.5  deraadt 	for (ihs = intrhand[level]; ihs; ihs = ihs->ih_next)
    340   1.5  deraadt 		if (ihs->ih_fun == vmeintr)
    341   1.5  deraadt 			return;
    342   1.5  deraadt 
    343   1.5  deraadt 	ihs = (struct intrhand *)malloc(sizeof(struct intrhand),
    344   1.5  deraadt 	    M_TEMP, M_NOWAIT);
    345   1.5  deraadt 	if (ihs == NULL)
    346   1.5  deraadt 		panic("vme_addirq");
    347   1.5  deraadt 	bzero(ihs, sizeof *ihs);
    348   1.5  deraadt 	ihs->ih_fun = vmeintr;
    349   1.5  deraadt 	ihs->ih_arg = (void *)level;
    350   1.5  deraadt 	intr_establish(level, ihs);
    351   1.5  deraadt }
    352   1.4  deraadt 
    353   1.2  deraadt #define	getpte(va)		lda(va, ASI_PTE)
    354   1.2  deraadt 
    355   1.2  deraadt /*
    356   1.2  deraadt  * If we can find a mapping that was established by the rom, use it.
    357   1.2  deraadt  * Else, create a new mapping.
    358   1.2  deraadt  */
    359   1.2  deraadt void *
    360   1.4  deraadt bus_map(pa, len, bustype)
    361  1.17       pk 	struct rom_reg *pa;
    362   1.2  deraadt 	int len;
    363   1.4  deraadt 	int bustype;
    364   1.2  deraadt {
    365   1.3  deraadt 	u_long	pf = (u_long)pa >> PGSHIFT;
    366   1.2  deraadt 	u_long	va, pte;
    367   1.4  deraadt 	int pgtype;
    368   1.4  deraadt 
    369   1.4  deraadt 	switch (bt2pmt[bustype]) {
    370   1.4  deraadt 	case PMAP_OBIO:
    371   1.4  deraadt 		pgtype = PG_OBIO;
    372   1.4  deraadt 		break;
    373   1.4  deraadt 	case PMAP_VME32:
    374   1.4  deraadt 		pgtype = PG_VME32;
    375   1.4  deraadt 		break;
    376   1.4  deraadt 	case PMAP_VME16:
    377   1.4  deraadt 		pgtype = PG_VME16;
    378   1.4  deraadt 		break;
    379   1.4  deraadt 	}
    380   1.2  deraadt 
    381   1.3  deraadt 	if (len <= NBPG) {
    382   1.3  deraadt 		for (va = OLDMON_STARTVADDR; va < OLDMON_ENDVADDR; va += NBPG) {
    383   1.3  deraadt 			pte = getpte(va);
    384   1.4  deraadt 			if ((pte & PG_V) != 0 && (pte & PG_TYPE) == pgtype &&
    385   1.3  deraadt 			    (pte & PG_PFNUM) == pf)
    386   1.3  deraadt 				return ((void *)va);
    387   1.3  deraadt 		}
    388   1.2  deraadt 	}
    389  1.17       pk 	return mapiodev(pa, 0, len, bustype);
    390   1.2  deraadt }
    391   1.2  deraadt 
    392   1.2  deraadt void *
    393   1.4  deraadt bus_tmp(pa, bustype)
    394   1.2  deraadt 	void *pa;
    395   1.4  deraadt 	int bustype;
    396   1.2  deraadt {
    397   1.3  deraadt 	vm_offset_t addr = (vm_offset_t)pa & ~PGOFSET;
    398   1.4  deraadt 	int pmtype = bt2pmt[bustype];
    399   1.3  deraadt 
    400  1.13  mycroft 	pmap_enter(pmap_kernel(), TMPMAP_VA,
    401   1.4  deraadt 	    addr | pmtype | PMAP_NC,
    402   1.2  deraadt 	    VM_PROT_READ | VM_PROT_WRITE, 1);
    403   1.2  deraadt 	return ((void *)TMPMAP_VA);
    404   1.2  deraadt }
    405   1.2  deraadt 
    406   1.2  deraadt void
    407   1.4  deraadt bus_untmp()
    408   1.2  deraadt {
    409  1.13  mycroft 	pmap_remove(pmap_kernel(), TMPMAP_VA, TMPMAP_VA+NBPG);
    410   1.1  deraadt }
    411  1.17       pk #endif
    412