Home | History | Annotate | Line # | Download | only in uba
uba_sbi.c revision 1.26.2.1
      1  1.26.2.1       jym /*	$NetBSD: uba_sbi.c,v 1.26.2.1 2009/05/13 17:18:41 jym Exp $	   */
      2      1.21       agc /*
      3      1.21       agc  * Copyright (c) 1982, 1986 The Regents of the University of California.
      4      1.21       agc  * All rights reserved.
      5      1.21       agc  *
      6      1.21       agc  * Redistribution and use in source and binary forms, with or without
      7      1.21       agc  * modification, are permitted provided that the following conditions
      8      1.21       agc  * are met:
      9      1.21       agc  * 1. Redistributions of source code must retain the above copyright
     10      1.21       agc  *    notice, this list of conditions and the following disclaimer.
     11      1.21       agc  * 2. Redistributions in binary form must reproduce the above copyright
     12      1.21       agc  *    notice, this list of conditions and the following disclaimer in the
     13      1.21       agc  *    documentation and/or other materials provided with the distribution.
     14      1.21       agc  * 3. Neither the name of the University nor the names of its contributors
     15      1.21       agc  *    may be used to endorse or promote products derived from this software
     16      1.21       agc  *    without specific prior written permission.
     17      1.21       agc  *
     18      1.21       agc  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     19      1.21       agc  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     20      1.21       agc  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     21      1.21       agc  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     22      1.21       agc  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     23      1.21       agc  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     24      1.21       agc  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     25      1.21       agc  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     26      1.21       agc  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     27      1.21       agc  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     28      1.21       agc  * SUCH DAMAGE.
     29      1.21       agc  *
     30      1.21       agc  *	@(#)uba.c	7.10 (Berkeley) 12/16/90
     31      1.21       agc  *	@(#)autoconf.c	7.20 (Berkeley) 5/9/91
     32      1.21       agc  */
     33      1.21       agc 
     34       1.1     ragge /*
     35       1.1     ragge  * Copyright (c) 1996 Jonathan Stone.
     36       1.1     ragge  * Copyright (c) 1994, 1996 Ludd, University of Lule}, Sweden.
     37       1.1     ragge  *
     38       1.1     ragge  * Redistribution and use in source and binary forms, with or without
     39       1.1     ragge  * modification, are permitted provided that the following conditions
     40       1.1     ragge  * are met:
     41       1.1     ragge  * 1. Redistributions of source code must retain the above copyright
     42       1.1     ragge  *    notice, this list of conditions and the following disclaimer.
     43       1.1     ragge  * 2. Redistributions in binary form must reproduce the above copyright
     44       1.1     ragge  *    notice, this list of conditions and the following disclaimer in the
     45       1.1     ragge  *    documentation and/or other materials provided with the distribution.
     46       1.1     ragge  * 3. All advertising materials mentioning features or use of this software
     47       1.1     ragge  *    must display the following acknowledgement:
     48       1.1     ragge  *	This product includes software developed by the University of
     49       1.1     ragge  *	California, Berkeley and its contributors.
     50       1.1     ragge  * 4. Neither the name of the University nor the names of its contributors
     51       1.1     ragge  *    may be used to endorse or promote products derived from this software
     52       1.1     ragge  *    without specific prior written permission.
     53       1.1     ragge  *
     54       1.1     ragge  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     55       1.1     ragge  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     56       1.1     ragge  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     57       1.1     ragge  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     58       1.1     ragge  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     59       1.1     ragge  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     60       1.1     ragge  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     61       1.1     ragge  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     62       1.1     ragge  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     63       1.1     ragge  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     64       1.1     ragge  * SUCH DAMAGE.
     65       1.1     ragge  *
     66       1.1     ragge  *	@(#)uba.c	7.10 (Berkeley) 12/16/90
     67       1.1     ragge  *	@(#)autoconf.c	7.20 (Berkeley) 5/9/91
     68       1.1     ragge  */
     69      1.20     lukem 
     70      1.20     lukem #include <sys/cdefs.h>
     71  1.26.2.1       jym __KERNEL_RCSID(0, "$NetBSD: uba_sbi.c,v 1.26.2.1 2009/05/13 17:18:41 jym Exp $");
     72       1.1     ragge 
     73       1.1     ragge #include <sys/param.h>
     74       1.1     ragge #include <sys/device.h>
     75       1.1     ragge #include <sys/systm.h>
     76       1.1     ragge #include <sys/kernel.h>
     77       1.1     ragge 
     78       1.1     ragge #define _VAX_BUS_DMA_PRIVATE
     79       1.1     ragge #include <machine/bus.h>
     80       1.1     ragge #include <machine/mtpr.h>
     81       1.1     ragge #include <machine/nexus.h>
     82       1.1     ragge #include <machine/cpu.h>
     83       1.1     ragge #include <machine/sgmap.h>
     84       1.1     ragge #include <machine/scb.h>
     85       1.1     ragge 
     86       1.1     ragge #include <dev/qbus/ubavar.h>
     87       1.1     ragge 
     88       1.5      matt #include <vax/uba/uba_common.h>
     89       1.1     ragge 
     90       1.6     ragge #include "locators.h"
     91       1.1     ragge #include "ioconf.h"
     92       1.1     ragge 
     93       1.1     ragge /* Some SBI-specific defines */
     94       1.1     ragge #define UBASIZE		(UBAPAGES * VAX_NBPG)
     95       1.1     ragge #define UMEMA8600(i)   	(0x20100000+(i)*0x40000)
     96       1.1     ragge #define	UMEMB8600(i)	(0x22100000+(i)*0x40000)
     97       1.1     ragge 
     98       1.1     ragge /*
     99       1.1     ragge  * Some status registers.
    100       1.1     ragge  */
    101       1.1     ragge #define UBACNFGR_UBIC  0x00010000      /* unibus init complete */
    102       1.1     ragge #define UBACNFGR_BITS \
    103       1.1     ragge "\40\40PARFLT\37WSQFLT\36URDFLT\35ISQFLT\34MXTFLT\33XMTFLT\30ADPDN\27ADPUP\23UBINIT\22UBPDN\21UBIC"
    104       1.1     ragge 
    105       1.1     ragge #define UBACR_IFS      0x00000040      /* interrupt field switch */
    106       1.1     ragge #define UBACR_BRIE     0x00000020      /* BR interrupt enable */
    107       1.1     ragge #define UBACR_USEFIE   0x00000010      /* UNIBUS to SBI error field IE */
    108       1.1     ragge #define UBACR_SUEFIE   0x00000008      /* SBI to UNIBUS error field IE */
    109       1.1     ragge #define UBACR_ADINIT   0x00000001      /* adapter init */
    110       1.1     ragge 
    111       1.1     ragge #define UBADPR_BNE     0x80000000      /* buffer not empty - purge */
    112       1.1     ragge 
    113       1.1     ragge #define UBABRRVR_DIV    0x0000ffff      /* device interrupt vector field */
    114       1.1     ragge 
    115       1.1     ragge #define UBASR_BITS \
    116       1.1     ragge "\20\13RDTO\12RDS\11CRD\10CXTER\7CXTMO\6DPPE\5IVMR\4MRPF\3LEB\2UBSTO\1UBSSYNTO"
    117       1.1     ragge 
    118      1.24      matt const char ubasr_bits[] = UBASR_BITS;
    119       1.1     ragge 
    120       1.1     ragge /*
    121       1.1     ragge  * The DW780 are directly connected to the SBI on 11/780 and 8600.
    122       1.1     ragge  */
    123      1.24      matt static	int	dw780_match(device_t, cfdata_t, void *);
    124      1.24      matt static	void	dw780_attach(device_t, device_t, void *);
    125       1.6     ragge static	void	dw780_init(struct uba_softc*);
    126       1.6     ragge static	void    dw780_beforescan(struct uba_softc *);
    127       1.6     ragge static	void    dw780_afterscan(struct uba_softc *);
    128       1.6     ragge static	int     dw780_errchk(struct uba_softc *);
    129      1.25      hans static	inline	void uba_dw780int_common(void *, int);
    130      1.25      hans static	void    uba_dw780int_0x14(void *);
    131      1.25      hans static	void    uba_dw780int_0x15(void *);
    132      1.25      hans static	void    uba_dw780int_0x16(void *);
    133      1.25      hans static	void    uba_dw780int_0x17(void *);
    134       1.6     ragge static  void	ubaerror(struct uba_softc *, int *, int *);
    135       1.1     ragge #ifdef notyet
    136       1.6     ragge static	void	dw780_purge(struct uba_softc *, int);
    137       1.1     ragge #endif
    138       1.1     ragge 
    139      1.24      matt CFATTACH_DECL_NEW(uba_sbi, sizeof(struct uba_vsoftc),
    140      1.19   thorpej     dw780_match, dw780_attach, NULL, NULL);
    141       1.1     ragge 
    142      1.15     ragge static struct evcnt strayint = EVCNT_INITIALIZER(EVCNT_TYPE_INTR, NULL, "uba","stray intr");
    143      1.15     ragge static int strayinit = 0;
    144      1.15     ragge 
    145       1.1     ragge extern	struct vax_bus_space vax_mem_bus_space;
    146       1.1     ragge 
    147       1.1     ragge int
    148      1.24      matt dw780_match(device_t parent, cfdata_t cf, void *aux)
    149       1.1     ragge {
    150      1.24      matt 	struct sbi_attach_args * const sa = aux;
    151       1.1     ragge 
    152       1.6     ragge 	if (cf->cf_loc[SBICF_TR] != sa->sa_nexnum &&
    153       1.6     ragge 	    cf->cf_loc[SBICF_TR] != SBICF_TR_DEFAULT)
    154       1.1     ragge 		return 0;
    155       1.1     ragge 	/*
    156       1.1     ragge 	 * The uba type is actually only telling where the uba
    157       1.1     ragge 	 * space is in nexus space.
    158       1.1     ragge 	 */
    159       1.6     ragge 	if ((sa->sa_type & ~3) != NEX_UBA0)
    160       1.1     ragge 		return 0;
    161       1.1     ragge 
    162       1.1     ragge 	return 1;
    163       1.1     ragge }
    164       1.1     ragge 
    165       1.1     ragge void
    166      1.24      matt dw780_attach(device_t parent, device_t self, void *aux)
    167       1.1     ragge {
    168      1.24      matt 	struct uba_vsoftc * const sc = device_private(self);
    169      1.24      matt 	struct sbi_attach_args * const sa = aux;
    170       1.6     ragge 	int ubaddr = sa->sa_type & 3;
    171       1.1     ragge 
    172      1.24      matt 	aprint_normal(": DW780\n");
    173      1.24      matt 
    174       1.1     ragge 	/*
    175       1.1     ragge 	 * Fill in bus specific data.
    176       1.1     ragge 	 */
    177      1.24      matt 	sc->uv_sc.uh_dev = self;
    178       1.1     ragge 	sc->uv_sc.uh_ubainit = dw780_init;
    179       1.1     ragge #ifdef notyet
    180       1.1     ragge 	sc->uv_sc.uh_ubapurge = dw780_purge;
    181       1.1     ragge #endif
    182       1.1     ragge 	sc->uv_sc.uh_beforescan = dw780_beforescan;
    183       1.1     ragge 	sc->uv_sc.uh_afterscan = dw780_afterscan;
    184       1.1     ragge 	sc->uv_sc.uh_errchk = dw780_errchk;
    185      1.24      matt 	sc->uv_sc.uh_iot = sa->sa_iot;
    186       1.1     ragge 	sc->uv_sc.uh_dmat = &sc->uv_dmat;
    187      1.16     ragge 	sc->uv_sc.uh_nr = ubaddr;
    188       1.6     ragge 	sc->uv_uba = (void *)sa->sa_ioh;
    189       1.1     ragge 	sc->uh_ibase = VAX_NBPG + ubaddr * VAX_NBPG;
    190      1.12     ragge 	sc->uv_sc.uh_type = UBA_UBA;
    191       1.1     ragge 
    192      1.15     ragge 	if (strayinit++ == 0) evcnt_attach_static(&strayint); /* Setup stray
    193      1.15     ragge 							         interrupt
    194      1.15     ragge 							         counter. */
    195      1.15     ragge 
    196       1.1     ragge 	/*
    197       1.1     ragge 	 * Set up dispatch vectors for DW780.
    198       1.1     ragge 	 */
    199      1.25      hans #define SCB_VECALLOC_DW780(br)						\
    200      1.25      hans 	scb_vecalloc(vecnum(0, br, sa->sa_nexnum), uba_dw780int_ ## br,	\
    201      1.25      hans 		     sc, SCB_ISTACK, &sc->uv_sc.uh_intrcnt)		\
    202      1.25      hans 
    203      1.25      hans 	SCB_VECALLOC_DW780(0x14);
    204      1.25      hans 	SCB_VECALLOC_DW780(0x15);
    205      1.25      hans 	SCB_VECALLOC_DW780(0x16);
    206      1.25      hans 	SCB_VECALLOC_DW780(0x17);
    207      1.25      hans 
    208       1.7      matt 	evcnt_attach_dynamic(&sc->uv_sc.uh_intrcnt, EVCNT_TYPE_INTR, NULL,
    209      1.24      matt 		device_xname(sc->uv_sc.uh_dev), "intr");
    210       1.5      matt 
    211       1.1     ragge 	/*
    212       1.1     ragge 	 * Fill in variables used by the sgmap system.
    213       1.1     ragge 	 */
    214       1.4     ragge 	sc->uv_size = UBASIZE;		/* Size in bytes of Unibus space */
    215       1.1     ragge 
    216       1.1     ragge 	uba_dma_init(sc);
    217      1.13     ragge 	uba_attach(&sc->uv_sc, (sa->sa_sbinum ? UMEMB8600(ubaddr) :
    218       1.1     ragge 	    UMEMA8600(ubaddr)) + (UBAPAGES * VAX_NBPG));
    219       1.1     ragge }
    220       1.1     ragge 
    221       1.1     ragge void
    222      1.13     ragge dw780_beforescan(struct uba_softc *sc)
    223       1.1     ragge {
    224      1.24      matt 	struct uba_vsoftc * const vc = (void *)sc;
    225       1.1     ragge 	volatile int *hej = &vc->uv_uba->uba_sr;
    226       1.1     ragge 
    227       1.1     ragge 	*hej = *hej;
    228       1.1     ragge 	vc->uv_uba->uba_cr = UBACR_IFS|UBACR_BRIE;
    229       1.1     ragge }
    230       1.1     ragge 
    231       1.1     ragge void
    232      1.13     ragge dw780_afterscan(struct uba_softc *sc)
    233       1.1     ragge {
    234      1.24      matt 	struct uba_vsoftc * const vc = (void *)sc;
    235       1.1     ragge 
    236       1.1     ragge 	vc->uv_uba->uba_cr = UBACR_IFS | UBACR_BRIE |
    237       1.1     ragge 	    UBACR_USEFIE | UBACR_SUEFIE |
    238       1.1     ragge 	    (vc->uv_uba->uba_cr & 0x7c000000);
    239       1.1     ragge }
    240       1.1     ragge 
    241       1.1     ragge 
    242       1.1     ragge int
    243      1.13     ragge dw780_errchk(struct uba_softc *sc)
    244       1.1     ragge {
    245      1.24      matt 	struct uba_vsoftc * const vc = (void *)sc;
    246       1.1     ragge 	volatile int *hej = &vc->uv_uba->uba_sr;
    247       1.1     ragge 
    248       1.1     ragge 	if (*hej) {
    249       1.1     ragge 		*hej = *hej;
    250       1.1     ragge 		return 1;
    251       1.1     ragge 	}
    252       1.1     ragge 	return 0;
    253       1.1     ragge }
    254       1.1     ragge 
    255      1.25      hans static inline void
    256      1.25      hans uba_dw780int_common(void *arg, int br)
    257       1.1     ragge {
    258      1.13     ragge 	extern	void scb_stray(void *);
    259       1.2      matt 	struct	uba_vsoftc *vc = arg;
    260       1.1     ragge 	struct	uba_regs *ur = vc->uv_uba;
    261      1.13     ragge 	struct	ivec_dsp *ivec;
    262      1.15     ragge 	struct  evcnt *uvec;
    263      1.25      hans 	int	vec;
    264       1.1     ragge 
    265      1.15     ragge 	uvec = &vc->uv_sc.uh_intrcnt;
    266       1.1     ragge 	vec = ur->uba_brrvr[br - 0x14];
    267      1.14     ragge 	if (vec <= 0) {
    268      1.14     ragge 		ubaerror(&vc->uv_sc, &br, &vec);
    269      1.14     ragge 		if (vec == 0)
    270      1.14     ragge 			return;
    271      1.14     ragge 	}
    272      1.13     ragge 
    273      1.15     ragge 	uvec->ev_count--;	/* This interrupt should not be counted against
    274      1.15     ragge 				   the uba. */
    275      1.15     ragge 	ivec = &scb_vec[(vc->uh_ibase + vec)/4];
    276      1.15     ragge 	if (cold && *ivec->hoppaddr == scb_stray) {
    277       1.1     ragge 		scb_fake(vec + vc->uh_ibase, br);
    278      1.13     ragge 	} else {
    279      1.15     ragge 		if (*ivec->hoppaddr == scb_stray)
    280      1.15     ragge 			strayint.ev_count++; /* Count against stray int */
    281      1.15     ragge 		else
    282      1.15     ragge 			ivec->ev->ev_count++; /* Count against device */
    283      1.13     ragge 		(*ivec->hoppaddr)(ivec->pushlarg);
    284       1.1     ragge 	}
    285       1.1     ragge }
    286       1.1     ragge 
    287      1.25      hans #define UBA_DW780INT(br)		\
    288      1.25      hans void					\
    289      1.25      hans uba_dw780int_ ## br(void *arg)		\
    290      1.25      hans {					\
    291      1.25      hans 	uba_dw780int_common(arg, br);	\
    292      1.25      hans }					\
    293      1.25      hans 
    294      1.25      hans UBA_DW780INT(0x14);
    295      1.25      hans UBA_DW780INT(0x15);
    296      1.25      hans UBA_DW780INT(0x16);
    297      1.25      hans UBA_DW780INT(0x17);
    298      1.25      hans 
    299       1.1     ragge void
    300      1.13     ragge dw780_init(struct uba_softc *sc)
    301       1.1     ragge {
    302       1.1     ragge 	struct uba_vsoftc *vc = (void *)sc;
    303       1.1     ragge 
    304       1.1     ragge 	vc->uv_uba->uba_cr = UBACR_ADINIT;
    305       1.1     ragge 	vc->uv_uba->uba_cr = UBACR_IFS|UBACR_BRIE|UBACR_USEFIE|UBACR_SUEFIE;
    306       1.1     ragge 	while ((vc->uv_uba->uba_cnfgr & UBACNFGR_UBIC) == 0)
    307       1.1     ragge 		;
    308       1.1     ragge }
    309       1.1     ragge 
    310       1.1     ragge #ifdef notyet
    311       1.1     ragge void
    312  1.26.2.1       jym dw780_purge(struct uba_softc *sc, int bdp)
    313       1.1     ragge {
    314       1.1     ragge 	struct uba_vsoftc *vc = (void *)sc;
    315       1.1     ragge 
    316       1.1     ragge 	vc->uv_uba->uba_dpr[bdp] |= UBADPR_BNE;
    317       1.1     ragge }
    318       1.1     ragge #endif
    319       1.1     ragge 
    320       1.1     ragge int	ubawedgecnt = 10;
    321       1.1     ragge int	ubacrazy = 500;
    322       1.1     ragge int	zvcnt_max = 5000;	/* in 8 sec */
    323       1.1     ragge int	ubaerrcnt;
    324       1.1     ragge /*
    325       1.1     ragge  * This routine is called by the locore code to process a UBA
    326       1.1     ragge  * error on an 11/780 or 8600.	The arguments are passed
    327       1.1     ragge  * on the stack, and value-result (through some trickery).
    328       1.1     ragge  * In particular, the uvec argument is used for further
    329       1.1     ragge  * uba processing so the result aspect of it is very important.
    330       1.1     ragge  */
    331       1.1     ragge /*ARGSUSED*/
    332       1.1     ragge void
    333      1.13     ragge ubaerror(struct uba_softc *uh, int *ipl, int *uvec)
    334       1.1     ragge {
    335       1.1     ragge 	struct uba_vsoftc *vc = (void *)uh;
    336       1.1     ragge 	struct	uba_regs *uba = vc->uv_uba;
    337      1.14     ragge 	int sr, s;
    338      1.10     ragge 	char sbuf[256], sbuf2[256];
    339       1.1     ragge 
    340       1.1     ragge 	if (*uvec == 0) {
    341       1.1     ragge 		/*
    342       1.1     ragge 		 * Declare dt as unsigned so that negative values
    343       1.1     ragge 		 * are handled as >8 below, in case time was set back.
    344       1.1     ragge 		 */
    345      1.23     joerg 		u_long	dt = time_second - vc->uh_zvtime;
    346       1.1     ragge 
    347       1.1     ragge 		vc->uh_zvtotal++;
    348       1.1     ragge 		if (dt > 8) {
    349      1.23     joerg 			vc->uh_zvtime = time_second;
    350       1.1     ragge 			vc->uh_zvcnt = 0;
    351       1.1     ragge 		}
    352       1.1     ragge 		if (++vc->uh_zvcnt > zvcnt_max) {
    353      1.24      matt 			aprint_error_dev(vc->uv_sc.uh_dev,
    354      1.24      matt 			    "too many zero vectors (%d in <%d sec)\n",
    355      1.24      matt 			    vc->uh_zvcnt, (int)dt + 1);
    356       1.9        tv 
    357      1.26  christos 			snprintb(sbuf, sizeof(sbuf), UBACNFGR_BITS,
    358      1.26  christos 			    uba->uba_cnfgr & ~0xff);
    359      1.24      matt 			aprint_error(
    360      1.24      matt 			    "\tIPL 0x%x\n"
    361      1.24      matt 			    "\tcnfgr: %s\tAdapter Code: 0x%x\n",
    362      1.24      matt 			    *ipl, sbuf, uba->uba_cnfgr&0xff);
    363      1.24      matt 
    364      1.26  christos 			snprintb(sbuf, sizeof(sbuf), ubasr_bits, uba->uba_sr);
    365      1.24      matt 			aprint_error(
    366      1.24      matt 			    "\tsr: %s\n"
    367      1.24      matt 			    "\tdcr: %x (MIC %sOK)\n",
    368      1.24      matt 			    sbuf, uba->uba_dcr,
    369      1.24      matt 			    (uba->uba_dcr&0x8000000)?"":"NOT ");
    370       1.9        tv 
    371       1.3     ragge 			ubareset(&vc->uv_sc);
    372       1.1     ragge 		}
    373       1.1     ragge 		return;
    374       1.1     ragge 	}
    375       1.1     ragge 	if (uba->uba_cnfgr & NEX_CFGFLT) {
    376      1.26  christos 		snprintb(sbuf, sizeof(sbuf), ubasr_bits, uba->uba_sr);
    377      1.26  christos 		snprintb(sbuf2, sizeof(sbuf2), NEXFLT_BITS, uba->uba_cnfgr);
    378      1.24      matt 		aprint_error_dev(vc->uv_sc.uh_dev,
    379      1.24      matt 		    "sbi fault sr=%s cnfgr=%s\n", sbuf, sbuf2);
    380       1.3     ragge 		ubareset(&vc->uv_sc);
    381       1.1     ragge 		*uvec = 0;
    382       1.1     ragge 		return;
    383       1.1     ragge 	}
    384       1.1     ragge 	sr = uba->uba_sr;
    385      1.11   thorpej 	s = spluba();
    386      1.26  christos 	snprintb(sbuf, sizeof(sbuf), ubasr_bits, uba->uba_sr);
    387      1.24      matt 	aprint_error_dev(vc->uv_sc.uh_dev,
    388      1.24      matt 	    "uba error sr=%s fmer=%x fubar=%o\n",
    389       1.9        tv 	    sbuf, uba->uba_fmer, 4*uba->uba_fubar);
    390       1.1     ragge 	splx(s);
    391       1.1     ragge 	uba->uba_sr = sr;
    392       1.1     ragge 	*uvec &= UBABRRVR_DIV;
    393       1.1     ragge 	if (++ubaerrcnt % ubawedgecnt == 0) {
    394       1.1     ragge 		if (ubaerrcnt > ubacrazy)
    395       1.1     ragge 			panic("uba crazy");
    396       1.1     ragge 		printf("ERROR LIMIT ");
    397       1.3     ragge 		ubareset(&vc->uv_sc);
    398       1.1     ragge 		*uvec = 0;
    399       1.1     ragge 	}
    400       1.1     ragge }
    401