Home | History | Annotate | Line # | Download | only in isa
uha_isa.c revision 1.26
      1  1.26   thorpej /*	$NetBSD: uha_isa.c,v 1.26 2002/10/02 03:10:50 thorpej Exp $	*/
      2   1.2   mycroft 
      3  1.17   mycroft /*-
      4  1.17   mycroft  * Copyright (c) 1998 The NetBSD Foundation, Inc.
      5  1.17   mycroft  * All rights reserved.
      6  1.17   mycroft  *
      7  1.17   mycroft  * This code is derived from software contributed to The NetBSD Foundation
      8  1.17   mycroft  * by Charles M. Hannum.
      9   1.2   mycroft  *
     10   1.2   mycroft  * Redistribution and use in source and binary forms, with or without
     11   1.2   mycroft  * modification, are permitted provided that the following conditions
     12   1.2   mycroft  * are met:
     13   1.2   mycroft  * 1. Redistributions of source code must retain the above copyright
     14   1.2   mycroft  *    notice, this list of conditions and the following disclaimer.
     15   1.2   mycroft  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.2   mycroft  *    notice, this list of conditions and the following disclaimer in the
     17   1.2   mycroft  *    documentation and/or other materials provided with the distribution.
     18   1.2   mycroft  * 3. All advertising materials mentioning features or use of this software
     19   1.2   mycroft  *    must display the following acknowledgement:
     20  1.17   mycroft  *        This product includes software developed by the NetBSD
     21  1.17   mycroft  *        Foundation, Inc. and its contributors.
     22  1.17   mycroft  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  1.17   mycroft  *    contributors may be used to endorse or promote products derived
     24  1.17   mycroft  *    from this software without specific prior written permission.
     25   1.2   mycroft  *
     26  1.17   mycroft  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  1.17   mycroft  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  1.17   mycroft  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  1.17   mycroft  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  1.17   mycroft  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  1.17   mycroft  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  1.17   mycroft  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  1.17   mycroft  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  1.17   mycroft  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  1.17   mycroft  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  1.17   mycroft  * POSSIBILITY OF SUCH DAMAGE.
     37   1.2   mycroft  */
     38  1.20     lukem 
     39  1.20     lukem #include <sys/cdefs.h>
     40  1.26   thorpej __KERNEL_RCSID(0, "$NetBSD: uha_isa.c,v 1.26 2002/10/02 03:10:50 thorpej Exp $");
     41  1.16  jonathan 
     42  1.16  jonathan #include "opt_ddb.h"
     43   1.2   mycroft 
     44   1.1   mycroft #include <sys/param.h>
     45   1.3  christos #include <sys/systm.h>
     46   1.1   mycroft #include <sys/device.h>
     47   1.1   mycroft #include <sys/kernel.h>
     48   1.1   mycroft #include <sys/proc.h>
     49   1.1   mycroft #include <sys/user.h>
     50   1.1   mycroft 
     51   1.1   mycroft #include <machine/bus.h>
     52   1.1   mycroft #include <machine/intr.h>
     53   1.1   mycroft 
     54   1.9    bouyer #include <dev/scsipi/scsi_all.h>
     55   1.9    bouyer #include <dev/scsipi/scsipi_all.h>
     56   1.9    bouyer #include <dev/scsipi/scsiconf.h>
     57   1.1   mycroft 
     58   1.1   mycroft #include <dev/isa/isavar.h>
     59   1.1   mycroft #include <dev/isa/isadmavar.h>
     60   1.1   mycroft 
     61   1.1   mycroft #include <dev/ic/uhareg.h>
     62   1.1   mycroft #include <dev/ic/uhavar.h>
     63   1.1   mycroft 
     64   1.1   mycroft #define	UHA_ISA_IOSIZE	16
     65   1.1   mycroft 
     66   1.8   thorpej int	uha_isa_probe __P((struct device *, struct cfdata *, void *));
     67   1.1   mycroft void	uha_isa_attach __P((struct device *, struct device *, void *));
     68   1.1   mycroft 
     69  1.26   thorpej CFATTACH_DECL(uha_isa, sizeof(struct uha_softc),
     70  1.26   thorpej     uha_isa_probe, uha_isa_attach, NULL, NULL);
     71   1.1   mycroft 
     72   1.6  jonathan #ifndef	DDB
     73   1.6  jonathan #define Debugger() panic("should call debugger here (uha_isa.c)")
     74   1.6  jonathan #endif /* ! DDB */
     75   1.1   mycroft 
     76   1.7   mycroft int	u14_find __P((bus_space_tag_t, bus_space_handle_t,
     77   1.7   mycroft 	    struct uha_probe_data *));
     78   1.7   mycroft void	u14_start_mbox __P((struct uha_softc *, struct uha_mscp *));
     79   1.9    bouyer int	u14_poll __P((struct uha_softc *, struct scsipi_xfer *, int));
     80   1.7   mycroft int	u14_intr __P((void *));
     81   1.7   mycroft void	u14_init __P((struct uha_softc *));
     82   1.1   mycroft 
     83   1.1   mycroft /*
     84   1.1   mycroft  * Check the slots looking for a board we recognise
     85   1.1   mycroft  * If we find one, note it's address (slot) and call
     86   1.1   mycroft  * the actual probe routine to check it out.
     87   1.1   mycroft  */
     88   1.1   mycroft int
     89   1.1   mycroft uha_isa_probe(parent, match, aux)
     90   1.1   mycroft 	struct device *parent;
     91   1.8   thorpej 	struct cfdata *match;
     92   1.8   thorpej 	void *aux;
     93   1.1   mycroft {
     94   1.1   mycroft 	struct isa_attach_args *ia = aux;
     95   1.5   thorpej 	bus_space_tag_t iot = ia->ia_iot;
     96   1.5   thorpej 	bus_space_handle_t ioh;
     97   1.7   mycroft 	struct uha_probe_data upd;
     98   1.1   mycroft 	int rv;
     99  1.10   thorpej 
    100  1.22   thorpej 	if (ia->ia_nio < 1)
    101  1.22   thorpej 		return (0);
    102  1.22   thorpej 	if (ia->ia_nirq < 1)
    103  1.22   thorpej 		return (0);
    104  1.22   thorpej 	if (ia->ia_ndrq < 1)
    105  1.22   thorpej 		return (0);
    106  1.22   thorpej 
    107  1.22   thorpej 	if (ISA_DIRECT_CONFIG(ia))
    108  1.22   thorpej 		return (0);
    109  1.22   thorpej 
    110  1.10   thorpej 	/* Disallow wildcarded i/o address. */
    111  1.22   thorpej 	if (ia->ia_io[0].ir_addr == ISACF_PORT_DEFAULT)
    112  1.10   thorpej 		return (0);
    113   1.1   mycroft 
    114  1.22   thorpej 	if (bus_space_map(iot, ia->ia_io[0].ir_addr, UHA_ISA_IOSIZE, 0, &ioh))
    115   1.1   mycroft 		return (0);
    116   1.1   mycroft 
    117   1.7   mycroft 	rv = u14_find(iot, ioh, &upd);
    118   1.1   mycroft 
    119   1.5   thorpej 	bus_space_unmap(iot, ioh, UHA_ISA_IOSIZE);
    120   1.1   mycroft 
    121   1.1   mycroft 	if (rv) {
    122  1.22   thorpej 		if (ia->ia_irq[0].ir_irq != ISACF_IRQ_DEFAULT &&
    123  1.22   thorpej 		    ia->ia_irq[0].ir_irq != upd.sc_irq)
    124   1.1   mycroft 			return (0);
    125  1.22   thorpej 		if (ia->ia_drq[0].ir_drq != ISACF_DRQ_DEFAULT &&
    126  1.22   thorpej 		    ia->ia_drq[0].ir_drq != upd.sc_drq)
    127   1.1   mycroft 			return (0);
    128  1.22   thorpej 
    129  1.22   thorpej 		ia->ia_nio = 1;
    130  1.22   thorpej 		ia->ia_io[0].ir_size = UHA_ISA_IOSIZE;
    131  1.22   thorpej 
    132  1.22   thorpej 		ia->ia_nirq = 1;
    133  1.22   thorpej 		ia->ia_irq[0].ir_irq = upd.sc_irq;
    134  1.22   thorpej 
    135  1.22   thorpej 		ia->ia_ndrq = 1;
    136  1.22   thorpej 		ia->ia_drq[0].ir_drq = upd.sc_drq;
    137  1.22   thorpej 
    138  1.22   thorpej 		ia->ia_niomem = 0;
    139   1.1   mycroft 	}
    140   1.1   mycroft 	return (rv);
    141   1.1   mycroft }
    142   1.1   mycroft 
    143   1.1   mycroft /*
    144   1.1   mycroft  * Attach all the sub-devices we can find
    145   1.1   mycroft  */
    146   1.1   mycroft void
    147   1.1   mycroft uha_isa_attach(parent, self, aux)
    148   1.1   mycroft 	struct device *parent, *self;
    149   1.1   mycroft 	void *aux;
    150   1.1   mycroft {
    151   1.1   mycroft 	struct isa_attach_args *ia = aux;
    152   1.1   mycroft 	struct uha_softc *sc = (void *)self;
    153   1.5   thorpej 	bus_space_tag_t iot = ia->ia_iot;
    154   1.8   thorpej 	bus_dma_tag_t dmat = ia->ia_dmat;
    155   1.5   thorpej 	bus_space_handle_t ioh;
    156   1.7   mycroft 	struct uha_probe_data upd;
    157   1.1   mycroft 	isa_chipset_tag_t ic = ia->ia_ic;
    158  1.15   thorpej 	int error;
    159   1.1   mycroft 
    160   1.4  christos 	printf("\n");
    161   1.1   mycroft 
    162  1.22   thorpej 	if (bus_space_map(iot, ia->ia_io[0].ir_addr, UHA_ISA_IOSIZE, 0, &ioh)) {
    163  1.11   thorpej 		printf("%s: can't map i/o space\n", sc->sc_dev.dv_xname);
    164  1.11   thorpej 		return;
    165  1.11   thorpej 	}
    166   1.1   mycroft 
    167   1.5   thorpej 	sc->sc_iot = iot;
    168   1.1   mycroft 	sc->sc_ioh = ioh;
    169   1.8   thorpej 	sc->sc_dmat = dmat;
    170  1.11   thorpej 	if (!u14_find(iot, ioh, &upd)) {
    171  1.11   thorpej 		printf("%s: u14_find failed\n", sc->sc_dev.dv_xname);
    172  1.11   thorpej 		return;
    173  1.11   thorpej 	}
    174   1.1   mycroft 
    175   1.8   thorpej 	if (upd.sc_drq != -1) {
    176   1.8   thorpej 		sc->sc_dmaflags = 0;
    177  1.15   thorpej 		if ((error = isa_dmacascade(ic, upd.sc_drq)) != 0) {
    178  1.15   thorpej 			printf("%s: unable to cascade DRQ, error = %d\n",
    179  1.15   thorpej 			    sc->sc_dev.dv_xname, error);
    180  1.15   thorpej 			return;
    181  1.15   thorpej 		}
    182   1.8   thorpej 	} else {
    183   1.8   thorpej 		/*
    184   1.8   thorpej 		 * We have a VLB controller, and can do 32-bit DMA.
    185   1.8   thorpej 		 */
    186   1.8   thorpej 		sc->sc_dmaflags = ISABUS_DMA_32BIT;
    187   1.8   thorpej 	}
    188   1.1   mycroft 
    189   1.7   mycroft 	sc->sc_ih = isa_intr_establish(ic, upd.sc_irq, IST_EDGE, IPL_BIO,
    190   1.1   mycroft 	    u14_intr, sc);
    191   1.1   mycroft 	if (sc->sc_ih == NULL) {
    192   1.4  christos 		printf("%s: couldn't establish interrupt\n",
    193   1.1   mycroft 		    sc->sc_dev.dv_xname);
    194   1.1   mycroft 		return;
    195   1.1   mycroft 	}
    196   1.1   mycroft 
    197   1.1   mycroft 	/* Save function pointers for later use. */
    198   1.1   mycroft 	sc->start_mbox = u14_start_mbox;
    199   1.1   mycroft 	sc->poll = u14_poll;
    200   1.1   mycroft 	sc->init = u14_init;
    201   1.1   mycroft 
    202   1.7   mycroft 	uha_attach(sc, &upd);
    203   1.1   mycroft }
    204   1.1   mycroft 
    205   1.1   mycroft /*
    206   1.1   mycroft  * Start the board, ready for normal operation
    207   1.1   mycroft  */
    208   1.1   mycroft int
    209   1.5   thorpej u14_find(iot, ioh, sc)
    210   1.5   thorpej 	bus_space_tag_t iot;
    211   1.5   thorpej 	bus_space_handle_t ioh;
    212   1.7   mycroft 	struct uha_probe_data *sc;
    213   1.1   mycroft {
    214   1.1   mycroft 	u_int16_t model, config;
    215   1.1   mycroft 	int irq, drq;
    216   1.1   mycroft 	int resetcount = 4000;	/* 4 secs? */
    217   1.1   mycroft 
    218   1.5   thorpej 	model = (bus_space_read_1(iot, ioh, U14_ID + 0) << 8) |
    219   1.5   thorpej 		(bus_space_read_1(iot, ioh, U14_ID + 1) << 0);
    220   1.1   mycroft 	if ((model & 0xfff0) != 0x5640)
    221   1.1   mycroft 		return (0);
    222   1.1   mycroft 
    223   1.5   thorpej 	config = (bus_space_read_1(iot, ioh, U14_CONFIG + 0) << 8) |
    224   1.5   thorpej 		 (bus_space_read_1(iot, ioh, U14_CONFIG + 1) << 0);
    225   1.1   mycroft 
    226   1.1   mycroft 	switch (model & 0x000f) {
    227   1.1   mycroft 	case 0x0000:
    228   1.1   mycroft 		switch (config & U14_DMA_MASK) {
    229   1.1   mycroft 		case U14_DMA_CH5:
    230   1.1   mycroft 			drq = 5;
    231   1.1   mycroft 			break;
    232   1.1   mycroft 		case U14_DMA_CH6:
    233   1.1   mycroft 			drq = 6;
    234   1.1   mycroft 			break;
    235   1.1   mycroft 		case U14_DMA_CH7:
    236   1.1   mycroft 			drq = 7;
    237   1.1   mycroft 			break;
    238   1.1   mycroft 		default:
    239   1.4  christos 			printf("u14_find: illegal drq setting %x\n",
    240   1.1   mycroft 			    config & U14_DMA_MASK);
    241   1.1   mycroft 			return (0);
    242   1.1   mycroft 		}
    243   1.1   mycroft 		break;
    244   1.1   mycroft 	case 0x0001:
    245   1.1   mycroft 		/* This is a 34f, and doesn't need an ISA DMA channel. */
    246   1.1   mycroft 		drq = -1;
    247   1.1   mycroft 		break;
    248   1.3  christos 	default:
    249   1.4  christos 		printf("u14_find: unknown model %x\n", model);
    250   1.3  christos 		return (0);
    251   1.1   mycroft 	}
    252   1.1   mycroft 
    253   1.1   mycroft 	switch (config & U14_IRQ_MASK) {
    254   1.1   mycroft 	case U14_IRQ10:
    255   1.1   mycroft 		irq = 10;
    256   1.1   mycroft 		break;
    257   1.1   mycroft 	case U14_IRQ11:
    258   1.1   mycroft 		irq = 11;
    259   1.1   mycroft 		break;
    260   1.1   mycroft 	case U14_IRQ14:
    261   1.1   mycroft 		irq = 14;
    262   1.1   mycroft 		break;
    263   1.1   mycroft 	case U14_IRQ15:
    264   1.1   mycroft 		irq = 15;
    265   1.1   mycroft 		break;
    266   1.1   mycroft 	default:
    267   1.4  christos 		printf("u14_find: illegal irq setting %x\n",
    268   1.1   mycroft 		    config & U14_IRQ_MASK);
    269   1.1   mycroft 		return (0);
    270   1.1   mycroft 	}
    271   1.1   mycroft 
    272   1.5   thorpej 	bus_space_write_1(iot, ioh, U14_LINT, UHA_ASRST);
    273   1.1   mycroft 
    274   1.1   mycroft 	while (--resetcount) {
    275   1.5   thorpej 		if (bus_space_read_1(iot, ioh, U14_LINT))
    276   1.1   mycroft 			break;
    277   1.1   mycroft 		delay(1000);	/* 1 mSec per loop */
    278   1.1   mycroft 	}
    279   1.1   mycroft 	if (!resetcount) {
    280   1.4  christos 		printf("u14_find: board timed out during reset\n");
    281   1.1   mycroft 		return (0);
    282   1.1   mycroft 	}
    283   1.1   mycroft 
    284   1.1   mycroft 	/* if we want to fill in softc, do so now */
    285   1.7   mycroft 	if (sc) {
    286   1.1   mycroft 		sc->sc_irq = irq;
    287   1.1   mycroft 		sc->sc_drq = drq;
    288   1.1   mycroft 		sc->sc_scsi_dev = config & U14_HOSTID_MASK;
    289   1.1   mycroft 	}
    290   1.1   mycroft 
    291   1.1   mycroft 	return (1);
    292   1.1   mycroft }
    293   1.1   mycroft 
    294   1.1   mycroft /*
    295   1.1   mycroft  * Function to send a command out through a mailbox
    296   1.1   mycroft  */
    297   1.1   mycroft void
    298   1.1   mycroft u14_start_mbox(sc, mscp)
    299   1.1   mycroft 	struct uha_softc *sc;
    300   1.1   mycroft 	struct uha_mscp *mscp;
    301   1.1   mycroft {
    302   1.5   thorpej 	bus_space_tag_t iot = sc->sc_iot;
    303   1.5   thorpej 	bus_space_handle_t ioh = sc->sc_ioh;
    304   1.1   mycroft 	int spincount = 100000;	/* 1s should be enough */
    305   1.1   mycroft 
    306   1.1   mycroft 	while (--spincount) {
    307   1.5   thorpej 		if ((bus_space_read_1(iot, ioh, U14_LINT) & U14_LDIP) == 0)
    308   1.1   mycroft 			break;
    309   1.1   mycroft 		delay(100);
    310   1.1   mycroft 	}
    311   1.1   mycroft 	if (!spincount) {
    312   1.4  christos 		printf("%s: uha_start_mbox, board not responding\n",
    313   1.1   mycroft 		    sc->sc_dev.dv_xname);
    314   1.1   mycroft 		Debugger();
    315   1.1   mycroft 	}
    316   1.1   mycroft 
    317   1.8   thorpej 	bus_space_write_4(iot, ioh, U14_OGMPTR,
    318  1.12   thorpej 	    sc->sc_dmamap_mscp->dm_segs[0].ds_addr + UHA_MSCP_OFF(mscp));
    319   1.1   mycroft 	if (mscp->flags & MSCP_ABORT)
    320   1.5   thorpej 		bus_space_write_1(iot, ioh, U14_LINT, U14_ABORT);
    321   1.1   mycroft 	else
    322   1.5   thorpej 		bus_space_write_1(iot, ioh, U14_LINT, U14_OGMFULL);
    323   1.1   mycroft 
    324  1.18   thorpej 	if ((mscp->xs->xs_control & XS_CTL_POLL) == 0)
    325  1.19   thorpej 		callout_reset(&mscp->xs->xs_callout,
    326  1.23    bouyer 		    mstohz(mscp->timeout), uha_timeout, mscp);
    327   1.1   mycroft }
    328   1.1   mycroft 
    329   1.1   mycroft /*
    330   1.1   mycroft  * Function to poll for command completion when in poll mode.
    331   1.1   mycroft  *
    332   1.1   mycroft  *	wait = timeout in msec
    333   1.1   mycroft  */
    334   1.1   mycroft int
    335   1.1   mycroft u14_poll(sc, xs, count)
    336   1.1   mycroft 	struct uha_softc *sc;
    337   1.9    bouyer 	struct scsipi_xfer *xs;
    338   1.1   mycroft 	int count;
    339   1.1   mycroft {
    340   1.5   thorpej 	bus_space_tag_t iot = sc->sc_iot;
    341   1.5   thorpej 	bus_space_handle_t ioh = sc->sc_ioh;
    342   1.1   mycroft 
    343   1.1   mycroft 	while (count) {
    344   1.1   mycroft 		/*
    345   1.1   mycroft 		 * If we had interrupts enabled, would we
    346   1.1   mycroft 		 * have got an interrupt?
    347   1.1   mycroft 		 */
    348   1.5   thorpej 		if (bus_space_read_1(iot, ioh, U14_SINT) & U14_SDIP)
    349   1.1   mycroft 			u14_intr(sc);
    350  1.18   thorpej 		if (xs->xs_status & XS_STS_DONE)
    351   1.1   mycroft 			return (0);
    352   1.1   mycroft 		delay(1000);
    353   1.1   mycroft 		count--;
    354   1.1   mycroft 	}
    355   1.1   mycroft 	return (1);
    356   1.1   mycroft }
    357   1.1   mycroft 
    358   1.1   mycroft /*
    359   1.1   mycroft  * Catch an interrupt from the adaptor
    360   1.1   mycroft  */
    361   1.1   mycroft int
    362   1.1   mycroft u14_intr(arg)
    363   1.1   mycroft 	void *arg;
    364   1.1   mycroft {
    365   1.1   mycroft 	struct uha_softc *sc = arg;
    366   1.5   thorpej 	bus_space_tag_t iot = sc->sc_iot;
    367   1.5   thorpej 	bus_space_handle_t ioh = sc->sc_ioh;
    368   1.1   mycroft 	struct uha_mscp *mscp;
    369   1.1   mycroft 	u_char uhastat;
    370   1.1   mycroft 	u_long mboxval;
    371   1.1   mycroft 
    372   1.1   mycroft #ifdef	UHADEBUG
    373   1.4  christos 	printf("%s: uhaintr ", sc->sc_dev.dv_xname);
    374   1.1   mycroft #endif /*UHADEBUG */
    375   1.1   mycroft 
    376   1.5   thorpej 	if ((bus_space_read_1(iot, ioh, U14_SINT) & U14_SDIP) == 0)
    377   1.1   mycroft 		return (0);
    378   1.1   mycroft 
    379   1.1   mycroft 	for (;;) {
    380   1.1   mycroft 		/*
    381   1.1   mycroft 		 * First get all the information and then
    382   1.1   mycroft 		 * acknowledge the interrupt
    383   1.1   mycroft 		 */
    384   1.5   thorpej 		uhastat = bus_space_read_1(iot, ioh, U14_SINT);
    385   1.5   thorpej 		mboxval = bus_space_read_4(iot, ioh, U14_ICMPTR);
    386   1.1   mycroft 		/* XXX Send an ABORT_ACK instead? */
    387   1.5   thorpej 		bus_space_write_1(iot, ioh, U14_SINT, U14_ICM_ACK);
    388   1.1   mycroft 
    389   1.1   mycroft #ifdef	UHADEBUG
    390   1.4  christos 		printf("status = 0x%x ", uhastat);
    391   1.1   mycroft #endif /*UHADEBUG*/
    392   1.1   mycroft 
    393   1.1   mycroft 		/*
    394   1.1   mycroft 		 * Process the completed operation
    395   1.1   mycroft 		 */
    396   1.1   mycroft 		mscp = uha_mscp_phys_kv(sc, mboxval);
    397   1.1   mycroft 		if (!mscp) {
    398   1.4  christos 			printf("%s: BAD MSCP RETURNED!\n",
    399   1.1   mycroft 			    sc->sc_dev.dv_xname);
    400   1.1   mycroft 			continue;	/* whatever it was, it'll timeout */
    401   1.1   mycroft 		}
    402   1.1   mycroft 
    403  1.19   thorpej 		callout_stop(&mscp->xs->xs_callout);
    404   1.1   mycroft 		uha_done(sc, mscp);
    405   1.1   mycroft 
    406   1.5   thorpej 		if ((bus_space_read_1(iot, ioh, U14_SINT) & U14_SDIP) == 0)
    407   1.1   mycroft 			return (1);
    408   1.1   mycroft 	}
    409   1.1   mycroft }
    410   1.1   mycroft 
    411   1.1   mycroft void
    412   1.1   mycroft u14_init(sc)
    413   1.1   mycroft 	struct uha_softc *sc;
    414   1.1   mycroft {
    415   1.5   thorpej 	bus_space_tag_t iot = sc->sc_iot;
    416   1.5   thorpej 	bus_space_handle_t ioh = sc->sc_ioh;
    417   1.1   mycroft 
    418   1.1   mycroft 	/* make sure interrupts are enabled */
    419   1.1   mycroft #ifdef UHADEBUG
    420   1.4  christos 	printf("u14_init: lmask=%02x, smask=%02x\n",
    421   1.5   thorpej 	    bus_space_read_1(iot, ioh, U14_LMASK),
    422   1.5   thorpej 	    bus_space_read_1(iot, ioh, U14_SMASK));
    423   1.1   mycroft #endif
    424   1.5   thorpej 	bus_space_write_1(iot, ioh, U14_LMASK, 0xd1);	/* XXX */
    425   1.5   thorpej 	bus_space_write_1(iot, ioh, U14_SMASK, 0x91);	/* XXX */
    426   1.1   mycroft }
    427