Home | History | Annotate | Line # | Download | only in pci
amr.c revision 1.19.2.3
      1  1.19.2.3       jmc /*	$NetBSD: amr.c,v 1.19.2.3 2004/11/12 06:27:33 jmc Exp $	*/
      2       1.1        ad 
      3       1.1        ad /*-
      4       1.9        ad  * Copyright (c) 2002, 2003 The NetBSD Foundation, Inc.
      5       1.1        ad  * All rights reserved.
      6       1.1        ad  *
      7       1.1        ad  * This code is derived from software contributed to The NetBSD Foundation
      8       1.1        ad  * by Andrew Doran.
      9       1.1        ad  *
     10       1.1        ad  * Redistribution and use in source and binary forms, with or without
     11       1.1        ad  * modification, are permitted provided that the following conditions
     12       1.1        ad  * are met:
     13       1.1        ad  * 1. Redistributions of source code must retain the above copyright
     14       1.1        ad  *    notice, this list of conditions and the following disclaimer.
     15       1.1        ad  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1        ad  *    notice, this list of conditions and the following disclaimer in the
     17       1.1        ad  *    documentation and/or other materials provided with the distribution.
     18       1.1        ad  * 3. All advertising materials mentioning features or use of this software
     19       1.1        ad  *    must display the following acknowledgement:
     20       1.1        ad  *        This product includes software developed by the NetBSD
     21       1.1        ad  *        Foundation, Inc. and its contributors.
     22       1.1        ad  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23       1.1        ad  *    contributors may be used to endorse or promote products derived
     24       1.1        ad  *    from this software without specific prior written permission.
     25       1.1        ad  *
     26       1.1        ad  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27       1.1        ad  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28       1.1        ad  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29       1.1        ad  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30       1.1        ad  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31       1.1        ad  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32       1.1        ad  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33       1.1        ad  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34       1.1        ad  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35       1.1        ad  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36       1.1        ad  * POSSIBILITY OF SUCH DAMAGE.
     37       1.1        ad  */
     38       1.1        ad 
     39       1.1        ad /*-
     40       1.1        ad  * Copyright (c) 1999,2000 Michael Smith
     41       1.1        ad  * Copyright (c) 2000 BSDi
     42       1.1        ad  * All rights reserved.
     43       1.1        ad  *
     44       1.1        ad  * Redistribution and use in source and binary forms, with or without
     45       1.1        ad  * modification, are permitted provided that the following conditions
     46       1.1        ad  * are met:
     47       1.1        ad  * 1. Redistributions of source code must retain the above copyright
     48       1.1        ad  *    notice, this list of conditions and the following disclaimer.
     49       1.1        ad  * 2. Redistributions in binary form must reproduce the above copyright
     50       1.1        ad  *    notice, this list of conditions and the following disclaimer in the
     51       1.1        ad  *    documentation and/or other materials provided with the distribution.
     52       1.1        ad  *
     53       1.1        ad  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     54       1.1        ad  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     55       1.1        ad  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     56       1.1        ad  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     57       1.1        ad  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     58       1.1        ad  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     59       1.1        ad  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     60       1.1        ad  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     61       1.1        ad  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     62       1.1        ad  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     63       1.1        ad  * SUCH DAMAGE.
     64       1.1        ad  *
     65       1.1        ad  * from FreeBSD: amr_pci.c,v 1.5 2000/08/30 07:52:40 msmith Exp
     66       1.1        ad  * from FreeBSD: amr.c,v 1.16 2000/08/30 07:52:40 msmith Exp
     67       1.1        ad  */
     68       1.1        ad 
     69       1.1        ad /*
     70       1.1        ad  * Driver for AMI RAID controllers.
     71       1.1        ad  */
     72       1.1        ad 
     73       1.1        ad #include <sys/cdefs.h>
     74  1.19.2.3       jmc __KERNEL_RCSID(0, "$NetBSD: amr.c,v 1.19.2.3 2004/11/12 06:27:33 jmc Exp $");
     75       1.1        ad 
     76       1.1        ad #include <sys/param.h>
     77       1.1        ad #include <sys/systm.h>
     78       1.1        ad #include <sys/kernel.h>
     79       1.1        ad #include <sys/device.h>
     80       1.1        ad #include <sys/queue.h>
     81       1.1        ad #include <sys/proc.h>
     82       1.1        ad #include <sys/buf.h>
     83       1.1        ad #include <sys/malloc.h>
     84       1.9        ad #include <sys/kthread.h>
     85       1.1        ad 
     86       1.1        ad #include <uvm/uvm_extern.h>
     87       1.1        ad 
     88       1.1        ad #include <machine/endian.h>
     89       1.1        ad #include <machine/bus.h>
     90       1.1        ad 
     91       1.1        ad #include <dev/pci/pcidevs.h>
     92       1.1        ad #include <dev/pci/pcivar.h>
     93       1.1        ad #include <dev/pci/amrreg.h>
     94       1.1        ad #include <dev/pci/amrvar.h>
     95       1.1        ad 
     96       1.1        ad void	amr_attach(struct device *, struct device *, void *);
     97      1.10        ad void	amr_ccb_dump(struct amr_softc *, struct amr_ccb *);
     98       1.9        ad void	*amr_enquire(struct amr_softc *, u_int8_t, u_int8_t, u_int8_t, void *);
     99       1.1        ad int	amr_init(struct amr_softc *, const char *,
    100       1.1        ad 			 struct pci_attach_args *pa);
    101       1.1        ad int	amr_intr(void *);
    102       1.1        ad int	amr_match(struct device *, struct cfdata *, void *);
    103       1.1        ad int	amr_print(void *, const char *);
    104       1.1        ad void	amr_shutdown(void *);
    105       1.1        ad int	amr_submatch(struct device *, struct cfdata *, void *);
    106       1.9        ad void	amr_teardown(struct amr_softc *);
    107       1.9        ad void	amr_thread(void *);
    108       1.9        ad void	amr_thread_create(void *);
    109       1.1        ad 
    110       1.1        ad int	amr_mbox_wait(struct amr_softc *);
    111       1.9        ad int	amr_quartz_get_work(struct amr_softc *, struct amr_mailbox_resp *);
    112       1.1        ad int	amr_quartz_submit(struct amr_softc *, struct amr_ccb *);
    113       1.9        ad int	amr_std_get_work(struct amr_softc *, struct amr_mailbox_resp *);
    114       1.1        ad int	amr_std_submit(struct amr_softc *, struct amr_ccb *);
    115       1.1        ad 
    116       1.1        ad static inline u_int8_t	amr_inb(struct amr_softc *, int);
    117       1.1        ad static inline u_int32_t	amr_inl(struct amr_softc *, int);
    118       1.1        ad static inline void	amr_outb(struct amr_softc *, int, u_int8_t);
    119       1.1        ad static inline void	amr_outl(struct amr_softc *, int, u_int32_t);
    120       1.1        ad 
    121       1.5   thorpej CFATTACH_DECL(amr, sizeof(struct amr_softc),
    122       1.6   thorpej     amr_match, amr_attach, NULL, NULL);
    123       1.1        ad 
    124       1.1        ad #define AT_QUARTZ	0x01	/* `Quartz' chipset */
    125       1.1        ad #define	AT_SIG		0x02	/* Check for signature */
    126       1.1        ad 
    127       1.1        ad struct amr_pci_type {
    128       1.1        ad 	u_short	apt_vendor;
    129       1.1        ad 	u_short	apt_product;
    130       1.1        ad 	u_short	apt_flags;
    131       1.9        ad } const amr_pci_type[] = {
    132       1.1        ad 	{ PCI_VENDOR_AMI,   PCI_PRODUCT_AMI_MEGARAID,  0 },
    133       1.1        ad 	{ PCI_VENDOR_AMI,   PCI_PRODUCT_AMI_MEGARAID2, 0 },
    134       1.1        ad 	{ PCI_VENDOR_AMI,   PCI_PRODUCT_AMI_MEGARAID3, AT_QUARTZ },
    135  1.19.2.1      tron 	{ PCI_VENDOR_SYMBIOS, PCI_PRODUCT_AMI_MEGARAID3, AT_QUARTZ },
    136      1.12      matt 	{ PCI_VENDOR_INTEL, PCI_PRODUCT_AMI_MEGARAID3, AT_QUARTZ | AT_SIG },
    137      1.12      matt 	{ PCI_VENDOR_DELL,  PCI_PRODUCT_DELL_PERC_4DI, AT_QUARTZ },
    138      1.14    martti 	{ PCI_VENDOR_DELL,  PCI_PRODUCT_DELL_PERC_4DI_2, AT_QUARTZ },
    139  1.19.2.2       jmc 	{ PCI_VENDOR_DELL,  PCI_PRODUCT_DELL_PERC_4ESI, AT_QUARTZ },
    140  1.19.2.3       jmc 	{ PCI_VENDOR_SYMBIOS,  PCI_PRODUCT_SYMBIOS_PERC_4SC, AT_QUARTZ },
    141       1.1        ad };
    142       1.1        ad 
    143       1.1        ad struct amr_typestr {
    144       1.1        ad 	const char	*at_str;
    145       1.1        ad 	int		at_sig;
    146       1.9        ad } const amr_typestr[] = {
    147       1.1        ad 	{ "Series 431",			AMR_SIG_431 },
    148       1.1        ad 	{ "Series 438",			AMR_SIG_438 },
    149       1.1        ad 	{ "Series 466",			AMR_SIG_466 },
    150       1.1        ad 	{ "Series 467",			AMR_SIG_467 },
    151       1.1        ad 	{ "Series 490",			AMR_SIG_490 },
    152       1.1        ad 	{ "Series 762",			AMR_SIG_762 },
    153       1.1        ad 	{ "HP NetRAID (T5)",		AMR_SIG_T5 },
    154       1.1        ad 	{ "HP NetRAID (T7)",		AMR_SIG_T7 },
    155       1.1        ad };
    156       1.1        ad 
    157       1.9        ad struct {
    158       1.9        ad 	const char	*ds_descr;
    159       1.9        ad 	int	ds_happy;
    160       1.9        ad } const amr_dstate[] = {
    161       1.9        ad 	{ "offline",	0 },
    162       1.9        ad 	{ "degraded",	1 },
    163       1.9        ad 	{ "optimal",	1 },
    164       1.9        ad 	{ "online",	1 },
    165       1.9        ad 	{ "failed",	0 },
    166       1.9        ad 	{ "rebuilding",	1 },
    167       1.9        ad 	{ "hotspare",	0 },
    168       1.9        ad };
    169       1.9        ad 
    170       1.9        ad void	*amr_sdh;
    171       1.9        ad int	amr_max_segs;
    172       1.9        ad int	amr_max_xfer;
    173       1.1        ad 
    174       1.1        ad static inline u_int8_t
    175       1.1        ad amr_inb(struct amr_softc *amr, int off)
    176       1.1        ad {
    177       1.1        ad 
    178       1.1        ad 	bus_space_barrier(amr->amr_iot, amr->amr_ioh, off, 1,
    179       1.1        ad 	    BUS_SPACE_BARRIER_WRITE | BUS_SPACE_BARRIER_READ);
    180       1.1        ad 	return (bus_space_read_1(amr->amr_iot, amr->amr_ioh, off));
    181       1.1        ad }
    182       1.1        ad 
    183       1.1        ad static inline u_int32_t
    184       1.1        ad amr_inl(struct amr_softc *amr, int off)
    185       1.1        ad {
    186       1.1        ad 
    187       1.1        ad 	bus_space_barrier(amr->amr_iot, amr->amr_ioh, off, 4,
    188       1.1        ad 	    BUS_SPACE_BARRIER_WRITE | BUS_SPACE_BARRIER_READ);
    189       1.1        ad 	return (bus_space_read_4(amr->amr_iot, amr->amr_ioh, off));
    190       1.1        ad }
    191       1.1        ad 
    192       1.1        ad static inline void
    193       1.1        ad amr_outb(struct amr_softc *amr, int off, u_int8_t val)
    194       1.1        ad {
    195       1.1        ad 
    196       1.1        ad 	bus_space_write_1(amr->amr_iot, amr->amr_ioh, off, val);
    197       1.1        ad 	bus_space_barrier(amr->amr_iot, amr->amr_ioh, off, 1,
    198       1.1        ad 	    BUS_SPACE_BARRIER_WRITE);
    199       1.1        ad }
    200       1.1        ad 
    201       1.1        ad static inline void
    202       1.1        ad amr_outl(struct amr_softc *amr, int off, u_int32_t val)
    203       1.1        ad {
    204       1.1        ad 
    205       1.1        ad 	bus_space_write_4(amr->amr_iot, amr->amr_ioh, off, val);
    206       1.1        ad 	bus_space_barrier(amr->amr_iot, amr->amr_ioh, off, 4,
    207       1.1        ad 	    BUS_SPACE_BARRIER_WRITE);
    208       1.1        ad }
    209       1.1        ad 
    210       1.1        ad /*
    211       1.1        ad  * Match a supported device.
    212       1.1        ad  */
    213       1.1        ad int
    214       1.1        ad amr_match(struct device *parent, struct cfdata *match, void *aux)
    215       1.1        ad {
    216       1.1        ad 	struct pci_attach_args *pa;
    217       1.1        ad 	pcireg_t s;
    218       1.1        ad 	int i;
    219       1.1        ad 
    220       1.1        ad 	pa = (struct pci_attach_args *)aux;
    221       1.1        ad 
    222       1.1        ad 	/*
    223       1.1        ad 	 * Don't match the device if it's operating in I2O mode.  In this
    224       1.1        ad 	 * case it should be handled by the `iop' driver.
    225       1.1        ad 	 */
    226       1.1        ad 	if (PCI_CLASS(pa->pa_class) == PCI_CLASS_I2O)
    227       1.1        ad 		return (0);
    228       1.1        ad 
    229       1.1        ad 	for (i = 0; i < sizeof(amr_pci_type) / sizeof(amr_pci_type[0]); i++)
    230       1.1        ad 		if (PCI_VENDOR(pa->pa_id) == amr_pci_type[i].apt_vendor &&
    231       1.1        ad 		    PCI_PRODUCT(pa->pa_id) == amr_pci_type[i].apt_product)
    232       1.1        ad 		    	break;
    233       1.1        ad 
    234       1.1        ad 	if (i == sizeof(amr_pci_type) / sizeof(amr_pci_type[0]))
    235       1.1        ad 		return (0);
    236       1.1        ad 
    237       1.1        ad 	if ((amr_pci_type[i].apt_flags & AT_SIG) == 0)
    238       1.1        ad 		return (1);
    239       1.1        ad 
    240       1.1        ad 	s = pci_conf_read(pa->pa_pc, pa->pa_tag, AMR_QUARTZ_SIG_REG) & 0xffff;
    241       1.1        ad 	return (s == AMR_QUARTZ_SIG0 || s == AMR_QUARTZ_SIG1);
    242       1.1        ad }
    243       1.1        ad 
    244       1.1        ad /*
    245       1.9        ad  * Attach a supported device.
    246       1.1        ad  */
    247       1.1        ad void
    248       1.1        ad amr_attach(struct device *parent, struct device *self, void *aux)
    249       1.1        ad {
    250       1.1        ad 	struct pci_attach_args *pa;
    251       1.1        ad 	struct amr_attach_args amra;
    252       1.1        ad 	const struct amr_pci_type *apt;
    253       1.1        ad 	struct amr_softc *amr;
    254       1.1        ad 	pci_chipset_tag_t pc;
    255       1.1        ad 	pci_intr_handle_t ih;
    256       1.1        ad 	const char *intrstr;
    257       1.1        ad 	pcireg_t reg;
    258       1.9        ad 	int rseg, i, j, size, rv, memreg, ioreg;
    259       1.1        ad         struct amr_ccb *ac;
    260       1.1        ad 
    261       1.8   thorpej 	aprint_naive(": RAID controller\n");
    262       1.8   thorpej 
    263       1.1        ad 	amr = (struct amr_softc *)self;
    264       1.1        ad 	pa = (struct pci_attach_args *)aux;
    265       1.1        ad 	pc = pa->pa_pc;
    266       1.1        ad 
    267       1.1        ad 	for (i = 0; i < sizeof(amr_pci_type) / sizeof(amr_pci_type[0]); i++)
    268       1.1        ad 		if (PCI_VENDOR(pa->pa_id) == amr_pci_type[i].apt_vendor &&
    269       1.1        ad 		    PCI_PRODUCT(pa->pa_id) == amr_pci_type[i].apt_product)
    270       1.1        ad 			break;
    271       1.1        ad 	apt = amr_pci_type + i;
    272       1.1        ad 
    273       1.1        ad 	memreg = ioreg = 0;
    274       1.1        ad 	for (i = 0x10; i <= 0x14; i += 4) {
    275       1.1        ad 		reg = pci_conf_read(pc, pa->pa_tag, i);
    276       1.1        ad 		switch (PCI_MAPREG_TYPE(reg)) {
    277       1.1        ad 		case PCI_MAPREG_TYPE_MEM:
    278      1.19      fvdl 			if (PCI_MAPREG_MEM_SIZE(reg) != 0)
    279      1.19      fvdl 				memreg = i;
    280       1.1        ad 			break;
    281       1.1        ad 		case PCI_MAPREG_TYPE_IO:
    282      1.19      fvdl 			if (PCI_MAPREG_IO_SIZE(reg) != 0)
    283      1.19      fvdl 				ioreg = i;
    284       1.1        ad 			break;
    285      1.16  christos 
    286       1.1        ad 		}
    287       1.1        ad 	}
    288       1.1        ad 
    289      1.18   mycroft 	if (memreg && pci_mapreg_map(pa, memreg, PCI_MAPREG_TYPE_MEM, 0,
    290      1.18   mycroft 	    &amr->amr_iot, &amr->amr_ioh, NULL, &amr->amr_ios) == 0)
    291      1.18   mycroft 		;
    292      1.18   mycroft 	else if (ioreg && pci_mapreg_map(pa, ioreg, PCI_MAPREG_TYPE_IO, 0,
    293      1.18   mycroft 	    &amr->amr_iot, &amr->amr_ioh, NULL, &amr->amr_ios) == 0)
    294      1.18   mycroft 		;
    295      1.18   mycroft 	else {
    296       1.8   thorpej 		aprint_error("can't map control registers\n");
    297       1.9        ad 		amr_teardown(amr);
    298       1.1        ad 		return;
    299       1.1        ad 	}
    300       1.1        ad 
    301       1.9        ad 	amr->amr_flags |= AMRF_PCI_REGS;
    302       1.1        ad 	amr->amr_dmat = pa->pa_dmat;
    303       1.9        ad 	amr->amr_pc = pa->pa_pc;
    304       1.1        ad 
    305       1.1        ad 	/* Enable the device. */
    306       1.1        ad 	reg = pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_COMMAND_STATUS_REG);
    307       1.1        ad 	pci_conf_write(pa->pa_pc, pa->pa_tag, PCI_COMMAND_STATUS_REG,
    308       1.1        ad 	    reg | PCI_COMMAND_MASTER_ENABLE);
    309       1.1        ad 
    310       1.1        ad 	/* Map and establish the interrupt. */
    311       1.1        ad 	if (pci_intr_map(pa, &ih)) {
    312       1.8   thorpej 		aprint_error("can't map interrupt\n");
    313       1.9        ad 		amr_teardown(amr);
    314       1.1        ad 		return;
    315       1.1        ad 	}
    316       1.1        ad 	intrstr = pci_intr_string(pc, ih);
    317       1.1        ad 	amr->amr_ih = pci_intr_establish(pc, ih, IPL_BIO, amr_intr, amr);
    318       1.1        ad 	if (amr->amr_ih == NULL) {
    319       1.8   thorpej 		aprint_error("can't establish interrupt");
    320       1.1        ad 		if (intrstr != NULL)
    321       1.8   thorpej 			aprint_normal(" at %s", intrstr);
    322       1.8   thorpej 		aprint_normal("\n");
    323       1.9        ad 		amr_teardown(amr);
    324       1.1        ad 		return;
    325       1.1        ad 	}
    326       1.9        ad 	amr->amr_flags |= AMRF_PCI_INTR;
    327       1.1        ad 
    328       1.1        ad 	/*
    329       1.1        ad 	 * Allocate space for the mailbox and S/G lists.  Some controllers
    330       1.1        ad 	 * don't like S/G lists to be located below 0x2000, so we allocate
    331       1.1        ad 	 * enough slop to enable us to compensate.
    332       1.1        ad 	 *
    333       1.1        ad 	 * The standard mailbox structure needs to be aligned on a 16-byte
    334       1.1        ad 	 * boundary.  The 64-bit mailbox has one extra field, 4 bytes in
    335       1.1        ad 	 * size, which preceeds the standard mailbox.
    336       1.1        ad 	 */
    337       1.1        ad 	size = AMR_SGL_SIZE * AMR_MAX_CMDS + 0x2000;
    338       1.9        ad 	amr->amr_dmasize = size;
    339       1.1        ad 
    340      1.15      fvdl 	if ((rv = bus_dmamem_alloc(amr->amr_dmat, size, PAGE_SIZE, 0,
    341       1.9        ad 	    &amr->amr_dmaseg, 1, &rseg, BUS_DMA_NOWAIT)) != 0) {
    342       1.8   thorpej 		aprint_error("%s: unable to allocate buffer, rv = %d\n",
    343       1.1        ad 		    amr->amr_dv.dv_xname, rv);
    344       1.9        ad 		amr_teardown(amr);
    345       1.1        ad 		return;
    346       1.1        ad 	}
    347       1.9        ad 	amr->amr_flags |= AMRF_DMA_ALLOC;
    348       1.1        ad 
    349       1.9        ad 	if ((rv = bus_dmamem_map(amr->amr_dmat, &amr->amr_dmaseg, rseg, size,
    350       1.1        ad 	    (caddr_t *)&amr->amr_mbox,
    351       1.1        ad 	    BUS_DMA_NOWAIT | BUS_DMA_COHERENT)) != 0) {
    352       1.8   thorpej 		aprint_error("%s: unable to map buffer, rv = %d\n",
    353       1.1        ad 		    amr->amr_dv.dv_xname, rv);
    354       1.9        ad 		amr_teardown(amr);
    355       1.1        ad 		return;
    356       1.1        ad 	}
    357       1.9        ad 	amr->amr_flags |= AMRF_DMA_MAP;
    358       1.1        ad 
    359       1.1        ad 	if ((rv = bus_dmamap_create(amr->amr_dmat, size, 1, size, 0,
    360       1.1        ad 	    BUS_DMA_NOWAIT, &amr->amr_dmamap)) != 0) {
    361       1.8   thorpej 		aprint_error("%s: unable to create buffer DMA map, rv = %d\n",
    362       1.1        ad 		    amr->amr_dv.dv_xname, rv);
    363       1.9        ad 		amr_teardown(amr);
    364       1.1        ad 		return;
    365       1.1        ad 	}
    366       1.9        ad 	amr->amr_flags |= AMRF_DMA_CREATE;
    367       1.1        ad 
    368       1.1        ad 	if ((rv = bus_dmamap_load(amr->amr_dmat, amr->amr_dmamap,
    369       1.1        ad 	    amr->amr_mbox, size, NULL, BUS_DMA_NOWAIT)) != 0) {
    370       1.8   thorpej 		aprint_error("%s: unable to load buffer DMA map, rv = %d\n",
    371       1.1        ad 		    amr->amr_dv.dv_xname, rv);
    372       1.9        ad 		amr_teardown(amr);
    373       1.1        ad 		return;
    374       1.1        ad 	}
    375       1.9        ad 	amr->amr_flags |= AMRF_DMA_LOAD;
    376       1.1        ad 
    377       1.1        ad 	memset(amr->amr_mbox, 0, size);
    378       1.1        ad 
    379       1.9        ad 	amr->amr_mbox_paddr = amr->amr_dmamap->dm_segs[0].ds_addr;
    380       1.1        ad 	amr->amr_sgls_paddr = (amr->amr_mbox_paddr + 0x1fff) & ~0x1fff;
    381       1.1        ad 	amr->amr_sgls = (struct amr_sgentry *)((caddr_t)amr->amr_mbox +
    382       1.1        ad 	    amr->amr_sgls_paddr - amr->amr_dmamap->dm_segs[0].ds_addr);
    383       1.1        ad 
    384       1.1        ad 	/*
    385       1.1        ad 	 * Allocate and initalise the command control blocks.
    386       1.1        ad 	 */
    387       1.1        ad 	ac = malloc(sizeof(*ac) * AMR_MAX_CMDS, M_DEVBUF, M_NOWAIT | M_ZERO);
    388       1.1        ad 	amr->amr_ccbs = ac;
    389       1.1        ad 	SLIST_INIT(&amr->amr_ccb_freelist);
    390      1.10        ad 	TAILQ_INIT(&amr->amr_ccb_active);
    391       1.9        ad 	amr->amr_flags |= AMRF_CCBS;
    392       1.9        ad 
    393       1.9        ad 	if (amr_max_xfer == 0) {
    394       1.9        ad 		amr_max_xfer = min(((AMR_MAX_SEGS - 1) * PAGE_SIZE), MAXPHYS);
    395       1.9        ad 		amr_max_segs = (amr_max_xfer + (PAGE_SIZE * 2) - 1) / PAGE_SIZE;
    396       1.9        ad 	}
    397       1.1        ad 
    398       1.1        ad 	for (i = 0; i < AMR_MAX_CMDS; i++, ac++) {
    399       1.9        ad 		rv = bus_dmamap_create(amr->amr_dmat, amr_max_xfer,
    400       1.9        ad 		    amr_max_segs, amr_max_xfer, 0,
    401       1.9        ad 		    BUS_DMA_NOWAIT | BUS_DMA_ALLOCNOW, &ac->ac_xfer_map);
    402       1.1        ad 		if (rv != 0)
    403       1.1        ad 			break;
    404       1.1        ad 
    405       1.1        ad 		ac->ac_ident = i;
    406       1.9        ad 		amr_ccb_free(amr, ac);
    407       1.9        ad 	}
    408       1.9        ad 	if (i != AMR_MAX_CMDS) {
    409       1.9        ad 		aprint_error("%s: memory exhausted\n", amr->amr_dv.dv_xname);
    410       1.9        ad 		amr_teardown(amr);
    411       1.9        ad 		return;
    412       1.1        ad 	}
    413       1.1        ad 
    414       1.1        ad 	/*
    415       1.1        ad 	 * Take care of model-specific tasks.
    416       1.1        ad 	 */
    417       1.1        ad 	if ((apt->apt_flags & AT_QUARTZ) != 0) {
    418       1.1        ad 		amr->amr_submit = amr_quartz_submit;
    419       1.1        ad 		amr->amr_get_work = amr_quartz_get_work;
    420       1.1        ad 	} else {
    421       1.1        ad 		amr->amr_submit = amr_std_submit;
    422       1.1        ad 		amr->amr_get_work = amr_std_get_work;
    423       1.1        ad 
    424       1.1        ad 		/* Notify the controller of the mailbox location. */
    425       1.9        ad 		amr_outl(amr, AMR_SREG_MBOX, (u_int32_t)amr->amr_mbox_paddr + 16);
    426       1.1        ad 		amr_outb(amr, AMR_SREG_MBOX_ENABLE, AMR_SMBOX_ENABLE_ADDR);
    427       1.1        ad 
    428       1.1        ad 		/* Clear outstanding interrupts and enable interrupts. */
    429       1.1        ad 		amr_outb(amr, AMR_SREG_CMD, AMR_SCMD_ACKINTR);
    430       1.1        ad 		amr_outb(amr, AMR_SREG_TOGL,
    431       1.1        ad 		    amr_inb(amr, AMR_SREG_TOGL) | AMR_STOGL_ENABLE);
    432       1.1        ad 	}
    433       1.1        ad 
    434       1.1        ad 	/*
    435       1.1        ad 	 * Retrieve parameters, and tell the world about us.
    436       1.1        ad 	 */
    437       1.9        ad 	amr->amr_enqbuf = malloc(AMR_ENQUIRY_BUFSIZE, M_DEVBUF, M_NOWAIT);
    438       1.9        ad 	amr->amr_flags |= AMRF_ENQBUF;
    439       1.1        ad 	amr->amr_maxqueuecnt = i;
    440       1.8   thorpej 	aprint_normal(": AMI RAID ");
    441       1.9        ad 	if (amr_init(amr, intrstr, pa) != 0) {
    442       1.9        ad 		amr_teardown(amr);
    443       1.1        ad 		return;
    444       1.9        ad 	}
    445       1.1        ad 
    446       1.1        ad 	/*
    447       1.1        ad 	 * Cap the maximum number of outstanding commands.  AMI's Linux
    448       1.1        ad 	 * driver doesn't trust the controller's reported value, and lockups
    449       1.1        ad 	 * have been seen when we do.
    450       1.1        ad 	 */
    451       1.1        ad 	amr->amr_maxqueuecnt = min(amr->amr_maxqueuecnt, AMR_MAX_CMDS);
    452       1.1        ad 	if (amr->amr_maxqueuecnt > i)
    453       1.1        ad 		amr->amr_maxqueuecnt = i;
    454       1.1        ad 
    455       1.1        ad 	/* Set our `shutdownhook' before we start any device activity. */
    456       1.1        ad 	if (amr_sdh == NULL)
    457       1.1        ad 		amr_sdh = shutdownhook_establish(amr_shutdown, NULL);
    458       1.1        ad 
    459       1.1        ad 	/* Attach sub-devices. */
    460       1.9        ad 	for (j = 0; j < amr->amr_numdrives; j++) {
    461       1.9        ad 		if (amr->amr_drive[j].al_size == 0)
    462       1.1        ad 			continue;
    463       1.9        ad 		amra.amra_unit = j;
    464       1.9        ad 		amr->amr_drive[j].al_dv = config_found_sm(&amr->amr_dv, &amra,
    465       1.9        ad 		    amr_print, amr_submatch);
    466       1.1        ad 	}
    467       1.1        ad 
    468       1.1        ad 	SIMPLEQ_INIT(&amr->amr_ccb_queue);
    469      1.13        ad 
    470      1.13        ad 	/* XXX This doesn't work for newer boards yet. */
    471      1.13        ad 	if ((apt->apt_flags & AT_QUARTZ) == 0)
    472      1.13        ad 		kthread_create(amr_thread_create, amr);
    473       1.9        ad }
    474       1.9        ad 
    475       1.9        ad /*
    476       1.9        ad  * Free up resources.
    477       1.9        ad  */
    478       1.9        ad void
    479       1.9        ad amr_teardown(struct amr_softc *amr)
    480       1.9        ad {
    481       1.9        ad 	struct amr_ccb *ac;
    482       1.9        ad 	int fl;
    483       1.9        ad 
    484       1.9        ad 	fl = amr->amr_flags;
    485       1.9        ad 
    486       1.9        ad 	if ((fl & AMRF_THREAD) != 0) {
    487       1.9        ad 		amr->amr_flags |= AMRF_THREAD_EXIT;
    488       1.9        ad 		wakeup(amr_thread);
    489       1.9        ad 		while ((amr->amr_flags & AMRF_THREAD_EXIT) != 0)
    490       1.9        ad 			tsleep(&amr->amr_flags, PWAIT, "amrexit", 0);
    491       1.9        ad 	}
    492       1.9        ad 	if ((fl & AMRF_CCBS) != 0) {
    493       1.9        ad 		SLIST_FOREACH(ac, &amr->amr_ccb_freelist, ac_chain.slist) {
    494       1.9        ad 			bus_dmamap_destroy(amr->amr_dmat, ac->ac_xfer_map);
    495       1.9        ad 		}
    496       1.9        ad 		free(amr->amr_ccbs, M_DEVBUF);
    497       1.9        ad 	}
    498       1.9        ad 	if ((fl & AMRF_ENQBUF) != 0)
    499       1.9        ad 		free(amr->amr_enqbuf, M_DEVBUF);
    500       1.9        ad 	if ((fl & AMRF_DMA_LOAD) != 0)
    501       1.9        ad 		bus_dmamap_unload(amr->amr_dmat, amr->amr_dmamap);
    502       1.9        ad 	if ((fl & AMRF_DMA_MAP) != 0)
    503       1.9        ad 		bus_dmamem_unmap(amr->amr_dmat, (caddr_t)amr->amr_mbox,
    504       1.9        ad 		    amr->amr_dmasize);
    505       1.9        ad 	if ((fl & AMRF_DMA_ALLOC) != 0)
    506       1.9        ad 		bus_dmamem_free(amr->amr_dmat, &amr->amr_dmaseg, 1);
    507       1.9        ad 	if ((fl & AMRF_DMA_CREATE) != 0)
    508       1.9        ad 		bus_dmamap_destroy(amr->amr_dmat, amr->amr_dmamap);
    509       1.9        ad 	if ((fl & AMRF_PCI_INTR) != 0)
    510       1.9        ad 		pci_intr_disestablish(amr->amr_pc, amr->amr_ih);
    511       1.9        ad 	if ((fl & AMRF_PCI_REGS) != 0)
    512      1.11      fvdl 		bus_space_unmap(amr->amr_iot, amr->amr_ioh, amr->amr_ios);
    513       1.1        ad }
    514       1.1        ad 
    515       1.1        ad /*
    516       1.1        ad  * Print autoconfiguration message for a sub-device.
    517       1.1        ad  */
    518       1.1        ad int
    519       1.1        ad amr_print(void *aux, const char *pnp)
    520       1.1        ad {
    521       1.1        ad 	struct amr_attach_args *amra;
    522       1.1        ad 
    523       1.1        ad 	amra = (struct amr_attach_args *)aux;
    524       1.1        ad 
    525       1.1        ad 	if (pnp != NULL)
    526       1.7   thorpej 		aprint_normal("block device at %s", pnp);
    527       1.7   thorpej 	aprint_normal(" unit %d", amra->amra_unit);
    528       1.1        ad 	return (UNCONF);
    529       1.1        ad }
    530       1.1        ad 
    531       1.1        ad /*
    532       1.1        ad  * Match a sub-device.
    533       1.1        ad  */
    534       1.1        ad int
    535       1.1        ad amr_submatch(struct device *parent, struct cfdata *cf, void *aux)
    536       1.1        ad {
    537       1.1        ad 	struct amr_attach_args *amra;
    538       1.1        ad 
    539       1.1        ad 	amra = (struct amr_attach_args *)aux;
    540       1.1        ad 
    541       1.1        ad 	if (cf->amracf_unit != AMRCF_UNIT_DEFAULT &&
    542       1.1        ad 	    cf->amracf_unit != amra->amra_unit)
    543       1.1        ad 		return (0);
    544       1.1        ad 
    545       1.3   thorpej 	return (config_match(parent, cf, aux));
    546       1.1        ad }
    547       1.1        ad 
    548       1.1        ad /*
    549       1.1        ad  * Retrieve operational parameters and describe the controller.
    550       1.1        ad  */
    551       1.1        ad int
    552       1.1        ad amr_init(struct amr_softc *amr, const char *intrstr,
    553       1.1        ad 	 struct pci_attach_args *pa)
    554       1.1        ad {
    555       1.9        ad 	struct amr_adapter_info *aa;
    556       1.1        ad 	struct amr_prodinfo *ap;
    557       1.1        ad 	struct amr_enquiry *ae;
    558       1.1        ad 	struct amr_enquiry3 *aex;
    559       1.1        ad 	const char *prodstr;
    560       1.9        ad 	u_int i, sig, ishp;
    561       1.1        ad 	char buf[64];
    562       1.1        ad 
    563       1.1        ad 	/*
    564       1.1        ad 	 * Try to get 40LD product info, which tells us what the card is
    565       1.1        ad 	 * labelled as.
    566       1.1        ad 	 */
    567       1.9        ad 	ap = amr_enquire(amr, AMR_CMD_CONFIG, AMR_CONFIG_PRODUCT_INFO, 0,
    568       1.9        ad 	    amr->amr_enqbuf);
    569       1.1        ad 	if (ap != NULL) {
    570       1.8   thorpej 		aprint_normal("<%.80s>\n", ap->ap_product);
    571       1.1        ad 		if (intrstr != NULL)
    572       1.8   thorpej 			aprint_normal("%s: interrupting at %s\n",
    573       1.1        ad 			    amr->amr_dv.dv_xname, intrstr);
    574       1.8   thorpej 		aprint_normal("%s: firmware %.16s, BIOS %.16s, %dMB RAM\n",
    575       1.1        ad 		    amr->amr_dv.dv_xname, ap->ap_firmware, ap->ap_bios,
    576       1.1        ad 		    le16toh(ap->ap_memsize));
    577       1.1        ad 
    578       1.1        ad 		amr->amr_maxqueuecnt = ap->ap_maxio;
    579       1.1        ad 
    580       1.1        ad 		/*
    581       1.1        ad 		 * Fetch and record state of logical drives.
    582       1.1        ad 		 */
    583       1.1        ad 		aex = amr_enquire(amr, AMR_CMD_CONFIG, AMR_CONFIG_ENQ3,
    584       1.9        ad 		    AMR_CONFIG_ENQ3_SOLICITED_FULL, amr->amr_enqbuf);
    585       1.1        ad 		if (aex == NULL) {
    586       1.8   thorpej 			aprint_error("%s ENQUIRY3 failed\n",
    587       1.8   thorpej 			    amr->amr_dv.dv_xname);
    588       1.1        ad 			return (-1);
    589       1.1        ad 		}
    590       1.1        ad 
    591       1.1        ad 		if (aex->ae_numldrives > AMR_MAX_UNITS) {
    592       1.8   thorpej 			aprint_error(
    593       1.8   thorpej 			    "%s: adjust AMR_MAX_UNITS to %d (currently %d)"
    594      1.17  christos 			    "\n", amr->amr_dv.dv_xname, AMR_MAX_UNITS,
    595      1.17  christos 			    amr->amr_numdrives);
    596       1.1        ad 			amr->amr_numdrives = AMR_MAX_UNITS;
    597       1.1        ad 		} else
    598       1.1        ad 			amr->amr_numdrives = aex->ae_numldrives;
    599       1.1        ad 
    600       1.1        ad 		for (i = 0; i < amr->amr_numdrives; i++) {
    601       1.1        ad 			amr->amr_drive[i].al_size =
    602       1.1        ad 			    le32toh(aex->ae_drivesize[i]);
    603       1.1        ad 			amr->amr_drive[i].al_state = aex->ae_drivestate[i];
    604       1.1        ad 			amr->amr_drive[i].al_properties = aex->ae_driveprop[i];
    605       1.1        ad 		}
    606       1.1        ad 
    607       1.1        ad 		return (0);
    608       1.1        ad 	}
    609       1.1        ad 
    610       1.1        ad 	/*
    611       1.1        ad 	 * Try 8LD extended ENQUIRY to get the controller signature.  Once
    612       1.1        ad 	 * found, search for a product description.
    613       1.1        ad 	 */
    614       1.9        ad 	ae = amr_enquire(amr, AMR_CMD_EXT_ENQUIRY2, 0, 0, amr->amr_enqbuf);
    615       1.9        ad 	if (ae != NULL) {
    616       1.1        ad 		i = 0;
    617       1.1        ad 		sig = le32toh(ae->ae_signature);
    618       1.1        ad 
    619       1.1        ad 		while (i < sizeof(amr_typestr) / sizeof(amr_typestr[0])) {
    620       1.1        ad 			if (amr_typestr[i].at_sig == sig)
    621       1.1        ad 				break;
    622       1.1        ad 			i++;
    623       1.1        ad 		}
    624       1.1        ad 		if (i == sizeof(amr_typestr) / sizeof(amr_typestr[0])) {
    625       1.1        ad 			sprintf(buf, "unknown ENQUIRY2 sig (0x%08x)", sig);
    626       1.1        ad 			prodstr = buf;
    627       1.1        ad 		} else
    628       1.1        ad 			prodstr = amr_typestr[i].at_str;
    629       1.1        ad 	} else {
    630       1.9        ad 		ae = amr_enquire(amr, AMR_CMD_ENQUIRY, 0, 0, amr->amr_enqbuf);
    631       1.9        ad 		if (ae == NULL) {
    632       1.8   thorpej 			aprint_error("%s: unsupported controller\n",
    633       1.1        ad 			    amr->amr_dv.dv_xname);
    634       1.1        ad 			return (-1);
    635       1.1        ad 		}
    636       1.1        ad 
    637       1.1        ad 		switch (PCI_PRODUCT(pa->pa_id)) {
    638       1.1        ad 		case PCI_PRODUCT_AMI_MEGARAID:
    639       1.1        ad 			prodstr = "Series 428";
    640       1.1        ad 			break;
    641       1.1        ad 		case PCI_PRODUCT_AMI_MEGARAID2:
    642       1.1        ad 			prodstr = "Series 434";
    643       1.1        ad 			break;
    644       1.1        ad 		default:
    645       1.1        ad 			sprintf(buf, "unknown PCI dev (0x%04x)",
    646       1.1        ad 			    PCI_PRODUCT(pa->pa_id));
    647       1.1        ad 			prodstr = buf;
    648       1.1        ad 			break;
    649       1.1        ad 		}
    650       1.1        ad 	}
    651       1.1        ad 
    652       1.9        ad 	/*
    653       1.9        ad 	 * HP NetRaid controllers have a special encoding of the firmware
    654       1.9        ad 	 * and BIOS versions.  The AMI version seems to have it as strings
    655       1.9        ad 	 * whereas the HP version does it with a leading uppercase character
    656       1.9        ad 	 * and two binary numbers.
    657       1.9        ad 	*/
    658       1.9        ad 	aa = &ae->ae_adapter;
    659       1.9        ad 
    660       1.9        ad 	if (aa->aa_firmware[2] >= 'A' && aa->aa_firmware[2] <= 'Z' &&
    661       1.9        ad 	    aa->aa_firmware[1] <  ' ' && aa->aa_firmware[0] <  ' ' &&
    662       1.9        ad 	    aa->aa_bios[2] >= 'A' && aa->aa_bios[2] <= 'Z' &&
    663       1.9        ad 	    aa->aa_bios[1] <  ' ' && aa->aa_bios[0] <  ' ') {
    664       1.9        ad 		if (le32toh(ae->ae_signature) == AMR_SIG_438) {
    665       1.9        ad 			/* The AMI 438 is a NetRaid 3si in HP-land. */
    666       1.9        ad 			prodstr = "HP NetRaid 3si";
    667       1.9        ad 		}
    668       1.9        ad 		ishp = 1;
    669       1.9        ad 	} else
    670       1.9        ad 		ishp = 0;
    671       1.9        ad 
    672       1.8   thorpej 	aprint_normal("<%s>\n", prodstr);
    673       1.1        ad 	if (intrstr != NULL)
    674       1.8   thorpej 		aprint_normal("%s: interrupting at %s\n", amr->amr_dv.dv_xname,
    675       1.1        ad 		    intrstr);
    676       1.1        ad 
    677       1.9        ad 	if (ishp)
    678       1.9        ad 		aprint_normal("%s: firmware <%c.%02d.%02d>, BIOS <%c.%02d.%02d>"
    679       1.9        ad 		    ", %dMB RAM\n", amr->amr_dv.dv_xname, aa->aa_firmware[2],
    680       1.9        ad 		     aa->aa_firmware[1], aa->aa_firmware[0], aa->aa_bios[2],
    681       1.9        ad 		     aa->aa_bios[1], aa->aa_bios[0], aa->aa_memorysize);
    682       1.9        ad 	else
    683       1.9        ad 		aprint_normal("%s: firmware <%.4s>, BIOS <%.4s>, %dMB RAM\n",
    684       1.9        ad 		    amr->amr_dv.dv_xname, aa->aa_firmware, aa->aa_bios,
    685       1.9        ad 		    aa->aa_memorysize);
    686       1.9        ad 
    687       1.9        ad 	amr->amr_maxqueuecnt = aa->aa_maxio;
    688       1.1        ad 
    689       1.1        ad 	/*
    690       1.1        ad 	 * Record state of logical drives.
    691       1.1        ad 	 */
    692       1.1        ad 	if (ae->ae_ldrv.al_numdrives > AMR_MAX_UNITS) {
    693       1.8   thorpej 		aprint_error("%s: adjust AMR_MAX_UNITS to %d (currently %d)\n",
    694       1.1        ad 		    amr->amr_dv.dv_xname, ae->ae_ldrv.al_numdrives,
    695       1.1        ad 		    AMR_MAX_UNITS);
    696       1.1        ad 		amr->amr_numdrives = AMR_MAX_UNITS;
    697       1.1        ad 	} else
    698       1.1        ad 		amr->amr_numdrives = ae->ae_ldrv.al_numdrives;
    699       1.1        ad 
    700       1.1        ad 	for (i = 0; i < AMR_MAX_UNITS; i++) {
    701       1.1        ad 		amr->amr_drive[i].al_size = le32toh(ae->ae_ldrv.al_size[i]);
    702       1.1        ad 		amr->amr_drive[i].al_state = ae->ae_ldrv.al_state[i];
    703       1.1        ad 		amr->amr_drive[i].al_properties = ae->ae_ldrv.al_properties[i];
    704       1.1        ad 	}
    705       1.1        ad 
    706       1.1        ad 	return (0);
    707       1.1        ad }
    708       1.1        ad 
    709       1.1        ad /*
    710       1.1        ad  * Flush the internal cache on each configured controller.  Called at
    711       1.1        ad  * shutdown time.
    712       1.1        ad  */
    713       1.1        ad void
    714       1.1        ad amr_shutdown(void *cookie)
    715       1.1        ad {
    716       1.1        ad         extern struct cfdriver amr_cd;
    717       1.1        ad 	struct amr_softc *amr;
    718       1.1        ad 	struct amr_ccb *ac;
    719       1.9        ad 	int i, rv, s;
    720       1.1        ad 
    721       1.1        ad 	for (i = 0; i < amr_cd.cd_ndevs; i++) {
    722       1.1        ad 		if ((amr = device_lookup(&amr_cd, i)) == NULL)
    723       1.1        ad 			continue;
    724       1.1        ad 
    725       1.1        ad 		if ((rv = amr_ccb_alloc(amr, &ac)) == 0) {
    726       1.9        ad 			ac->ac_cmd.mb_command = AMR_CMD_FLUSH;
    727       1.9        ad 			s = splbio();
    728       1.1        ad 			rv = amr_ccb_poll(amr, ac, 30000);
    729       1.9        ad 			splx(s);
    730       1.1        ad 			amr_ccb_free(amr, ac);
    731       1.1        ad 		}
    732       1.1        ad 		if (rv != 0)
    733       1.1        ad 			printf("%s: unable to flush cache (%d)\n",
    734       1.1        ad 			    amr->amr_dv.dv_xname, rv);
    735       1.1        ad 	}
    736       1.1        ad }
    737       1.1        ad 
    738       1.1        ad /*
    739       1.1        ad  * Interrupt service routine.
    740       1.1        ad  */
    741       1.1        ad int
    742       1.1        ad amr_intr(void *cookie)
    743       1.1        ad {
    744       1.1        ad 	struct amr_softc *amr;
    745       1.1        ad 	struct amr_ccb *ac;
    746       1.9        ad 	struct amr_mailbox_resp mbox;
    747       1.1        ad 	u_int i, forus, idx;
    748       1.1        ad 
    749       1.1        ad 	amr = cookie;
    750       1.1        ad 	forus = 0;
    751       1.1        ad 
    752       1.1        ad 	while ((*amr->amr_get_work)(amr, &mbox) == 0) {
    753       1.1        ad 		/* Iterate over completed commands in this result. */
    754       1.1        ad 		for (i = 0; i < mbox.mb_nstatus; i++) {
    755       1.1        ad 			idx = mbox.mb_completed[i] - 1;
    756       1.1        ad 			ac = amr->amr_ccbs + idx;
    757       1.1        ad 
    758       1.1        ad 			if (idx >= amr->amr_maxqueuecnt) {
    759       1.1        ad 				printf("%s: bad status (bogus ID: %u=%u)\n",
    760       1.1        ad 				    amr->amr_dv.dv_xname, i, idx);
    761       1.1        ad 				continue;
    762       1.1        ad 			}
    763       1.1        ad 
    764       1.1        ad 			if ((ac->ac_flags & AC_ACTIVE) == 0) {
    765       1.1        ad 				printf("%s: bad status (not active; 0x04%x)\n",
    766       1.1        ad 				    amr->amr_dv.dv_xname, ac->ac_flags);
    767       1.1        ad 				continue;
    768       1.1        ad 			}
    769       1.1        ad 
    770       1.1        ad 			ac->ac_status = mbox.mb_status;
    771       1.1        ad 			ac->ac_flags = (ac->ac_flags & ~AC_ACTIVE) |
    772       1.1        ad 			    AC_COMPLETE;
    773      1.10        ad 			TAILQ_REMOVE(&amr->amr_ccb_active, ac, ac_chain.tailq);
    774      1.10        ad 
    775      1.10        ad 			if ((ac->ac_flags & AC_MOAN) != 0)
    776      1.10        ad 				printf("%s: ccb %d completed\n",
    777      1.10        ad 				    amr->amr_dv.dv_xname, ac->ac_ident);
    778       1.1        ad 
    779       1.1        ad 			/* Pass notification to upper layers. */
    780       1.1        ad 			if (ac->ac_handler != NULL)
    781       1.1        ad 				(*ac->ac_handler)(ac);
    782       1.9        ad 			else
    783       1.9        ad 				wakeup(ac);
    784       1.1        ad 		}
    785       1.1        ad 		forus = 1;
    786       1.1        ad 	}
    787       1.1        ad 
    788       1.1        ad 	if (forus)
    789       1.1        ad 		amr_ccb_enqueue(amr, NULL);
    790       1.9        ad 
    791       1.1        ad 	return (forus);
    792       1.1        ad }
    793       1.1        ad 
    794       1.1        ad /*
    795       1.9        ad  * Create the watchdog thread.
    796       1.9        ad  */
    797       1.9        ad void
    798       1.9        ad amr_thread_create(void *cookie)
    799       1.9        ad {
    800       1.9        ad 	struct amr_softc *amr;
    801       1.9        ad 	int rv;
    802       1.9        ad 
    803       1.9        ad 	amr = cookie;
    804       1.9        ad 
    805       1.9        ad 	if ((amr->amr_flags & AMRF_THREAD_EXIT) != 0) {
    806       1.9        ad 		amr->amr_flags ^= AMRF_THREAD_EXIT;
    807       1.9        ad 		wakeup(&amr->amr_flags);
    808       1.9        ad 		return;
    809       1.9        ad 	}
    810       1.9        ad 
    811       1.9        ad 	rv = kthread_create1(amr_thread, amr, &amr->amr_thread, "%s",
    812       1.9        ad 	    amr->amr_dv.dv_xname);
    813       1.9        ad  	if (rv != 0)
    814       1.9        ad 		aprint_error("%s: unable to create thread (%d)",
    815       1.9        ad  		    amr->amr_dv.dv_xname, rv);
    816       1.9        ad  	else
    817       1.9        ad  		amr->amr_flags |= AMRF_THREAD;
    818       1.9        ad }
    819       1.9        ad 
    820       1.9        ad /*
    821       1.9        ad  * Watchdog thread.
    822       1.9        ad  */
    823       1.9        ad void
    824       1.9        ad amr_thread(void *cookie)
    825       1.9        ad {
    826       1.9        ad 	struct amr_softc *amr;
    827       1.9        ad 	struct amr_ccb *ac;
    828       1.9        ad 	struct amr_logdrive *al;
    829       1.9        ad 	struct amr_enquiry *ae;
    830      1.10        ad 	time_t curtime;
    831       1.9        ad 	int rv, i, s;
    832       1.9        ad 
    833       1.9        ad 	amr = cookie;
    834       1.9        ad 	ae = amr->amr_enqbuf;
    835       1.9        ad 
    836       1.9        ad 	for (;;) {
    837       1.9        ad 		tsleep(amr_thread, PWAIT, "amrwdog", AMR_WDOG_TICKS);
    838       1.9        ad 
    839       1.9        ad 		if ((amr->amr_flags & AMRF_THREAD_EXIT) != 0) {
    840       1.9        ad 			amr->amr_flags ^= AMRF_THREAD_EXIT;
    841       1.9        ad 			wakeup(&amr->amr_flags);
    842       1.9        ad 			kthread_exit(0);
    843       1.9        ad 		}
    844       1.9        ad 
    845       1.9        ad 		s = splbio();
    846       1.9        ad 		amr_intr(cookie);
    847      1.10        ad 		curtime = (time_t)mono_time.tv_sec;
    848      1.13        ad 		ac = TAILQ_FIRST(&amr->amr_ccb_active);
    849      1.13        ad 		while (ac != NULL) {
    850      1.10        ad 			if (ac->ac_start_time + AMR_TIMEOUT > curtime)
    851      1.10        ad 				break;
    852      1.10        ad 			if ((ac->ac_flags & AC_MOAN) == 0) {
    853      1.10        ad 				printf("%s: ccb %d timed out; mailbox:\n",
    854      1.10        ad 				    amr->amr_dv.dv_xname, ac->ac_ident);
    855      1.10        ad 				amr_ccb_dump(amr, ac);
    856      1.10        ad 				ac->ac_flags |= AC_MOAN;
    857      1.10        ad 			}
    858      1.13        ad 			ac = TAILQ_NEXT(ac, ac_chain.tailq);
    859      1.10        ad 		}
    860       1.9        ad 		splx(s);
    861       1.9        ad 
    862       1.9        ad 		if ((rv = amr_ccb_alloc(amr, &ac)) != 0) {
    863       1.9        ad 			printf("%s: ccb_alloc failed (%d)\n",
    864       1.9        ad  			    amr->amr_dv.dv_xname, rv);
    865       1.9        ad 			continue;
    866       1.9        ad 		}
    867       1.9        ad 
    868       1.9        ad 		ac->ac_cmd.mb_command = AMR_CMD_ENQUIRY;
    869       1.9        ad 
    870       1.9        ad 		rv = amr_ccb_map(amr, ac, amr->amr_enqbuf,
    871       1.9        ad 		    AMR_ENQUIRY_BUFSIZE, 0);
    872       1.9        ad 		if (rv != 0) {
    873       1.9        ad 			printf("%s: ccb_map failed (%d)\n",
    874       1.9        ad  			    amr->amr_dv.dv_xname, rv);
    875       1.9        ad 			amr_ccb_free(amr, ac);
    876       1.9        ad 			continue;
    877       1.9        ad 		}
    878       1.9        ad 
    879       1.9        ad 		rv = amr_ccb_wait(amr, ac);
    880       1.9        ad 		amr_ccb_unmap(amr, ac);
    881       1.9        ad 		if (rv != 0) {
    882       1.9        ad 			printf("%s: enquiry failed (st=%d)\n",
    883       1.9        ad  			    amr->amr_dv.dv_xname, ac->ac_status);
    884       1.9        ad 			continue;
    885       1.9        ad 		}
    886       1.9        ad 		amr_ccb_free(amr, ac);
    887       1.9        ad 
    888       1.9        ad 		al = amr->amr_drive;
    889       1.9        ad 		for (i = 0; i < AMR_MAX_UNITS; i++, al++) {
    890       1.9        ad 			if (al->al_dv == NULL)
    891       1.9        ad 				continue;
    892       1.9        ad 			if (al->al_state == ae->ae_ldrv.al_state[i])
    893       1.9        ad 				continue;
    894       1.9        ad 
    895       1.9        ad 			printf("%s: state changed: %s -> %s\n",
    896       1.9        ad 			    al->al_dv->dv_xname,
    897       1.9        ad 			    amr_drive_state(al->al_state, NULL),
    898       1.9        ad 			    amr_drive_state(ae->ae_ldrv.al_state[i], NULL));
    899       1.9        ad 
    900       1.9        ad 			al->al_state = ae->ae_ldrv.al_state[i];
    901       1.9        ad 		}
    902       1.9        ad 	}
    903       1.9        ad }
    904       1.9        ad 
    905       1.9        ad /*
    906       1.9        ad  * Return a text description of a logical drive's current state.
    907       1.9        ad  */
    908       1.9        ad const char *
    909       1.9        ad amr_drive_state(int state, int *happy)
    910       1.9        ad {
    911       1.9        ad 	const char *str;
    912       1.9        ad 
    913       1.9        ad 	state = AMR_DRV_CURSTATE(state);
    914       1.9        ad 	if (state >= sizeof(amr_dstate) / sizeof(amr_dstate[0])) {
    915       1.9        ad 		if (happy)
    916       1.9        ad 			*happy = 1;
    917       1.9        ad 		str = "status unknown";
    918       1.9        ad 	} else {
    919       1.9        ad 		if (happy)
    920       1.9        ad 			*happy = amr_dstate[state].ds_happy;
    921       1.9        ad 		str = amr_dstate[state].ds_descr;
    922       1.9        ad 	}
    923       1.9        ad 
    924       1.9        ad 	return (str);
    925       1.9        ad }
    926       1.9        ad 
    927       1.9        ad /*
    928       1.1        ad  * Run a generic enquiry-style command.
    929       1.1        ad  */
    930       1.1        ad void *
    931       1.1        ad amr_enquire(struct amr_softc *amr, u_int8_t cmd, u_int8_t cmdsub,
    932       1.9        ad 	    u_int8_t cmdqual, void *buf)
    933       1.1        ad {
    934       1.1        ad 	struct amr_ccb *ac;
    935       1.1        ad 	u_int8_t *mb;
    936       1.1        ad 	int rv;
    937       1.1        ad 
    938       1.1        ad 	if (amr_ccb_alloc(amr, &ac) != 0)
    939       1.1        ad 		return (NULL);
    940       1.1        ad 
    941       1.1        ad 	/* Build the command proper. */
    942       1.9        ad 	mb = (u_int8_t *)&ac->ac_cmd;
    943       1.1        ad 	mb[0] = cmd;
    944       1.1        ad 	mb[2] = cmdsub;
    945       1.1        ad 	mb[3] = cmdqual;
    946       1.1        ad 
    947       1.9        ad 	rv = amr_ccb_map(amr, ac, buf, AMR_ENQUIRY_BUFSIZE, 0);
    948       1.9        ad 	if (rv == 0) {
    949       1.1        ad 		rv = amr_ccb_poll(amr, ac, 2000);
    950       1.1        ad 		amr_ccb_unmap(amr, ac);
    951       1.1        ad 	}
    952       1.1        ad 	amr_ccb_free(amr, ac);
    953       1.1        ad 
    954       1.9        ad 	return (rv ? NULL : buf);
    955       1.1        ad }
    956       1.1        ad 
    957       1.1        ad /*
    958       1.1        ad  * Allocate and initialise a CCB.
    959       1.1        ad  */
    960       1.1        ad int
    961       1.1        ad amr_ccb_alloc(struct amr_softc *amr, struct amr_ccb **acp)
    962       1.1        ad {
    963       1.1        ad 	int s;
    964       1.1        ad 
    965       1.1        ad 	s = splbio();
    966       1.9        ad 	if ((*acp = SLIST_FIRST(&amr->amr_ccb_freelist)) == NULL) {
    967       1.1        ad 		splx(s);
    968       1.1        ad 		return (EAGAIN);
    969       1.1        ad 	}
    970       1.1        ad 	SLIST_REMOVE_HEAD(&amr->amr_ccb_freelist, ac_chain.slist);
    971       1.1        ad 	splx(s);
    972       1.1        ad 
    973       1.1        ad 	return (0);
    974       1.1        ad }
    975       1.1        ad 
    976       1.1        ad /*
    977       1.1        ad  * Free a CCB.
    978       1.1        ad  */
    979       1.1        ad void
    980       1.1        ad amr_ccb_free(struct amr_softc *amr, struct amr_ccb *ac)
    981       1.1        ad {
    982       1.1        ad 	int s;
    983       1.1        ad 
    984       1.9        ad 	memset(&ac->ac_cmd, 0, sizeof(ac->ac_cmd));
    985       1.9        ad 	ac->ac_cmd.mb_ident = ac->ac_ident + 1;
    986       1.9        ad 	ac->ac_cmd.mb_busy = 1;
    987       1.9        ad 	ac->ac_handler = NULL;
    988       1.1        ad 	ac->ac_flags = 0;
    989       1.1        ad 
    990       1.1        ad 	s = splbio();
    991       1.1        ad 	SLIST_INSERT_HEAD(&amr->amr_ccb_freelist, ac, ac_chain.slist);
    992       1.1        ad 	splx(s);
    993       1.1        ad }
    994       1.1        ad 
    995       1.1        ad /*
    996       1.1        ad  * If a CCB is specified, enqueue it.  Pull CCBs off the software queue in
    997       1.1        ad  * the order that they were enqueued and try to submit their command blocks
    998       1.1        ad  * to the controller for execution.
    999       1.1        ad  */
   1000       1.1        ad void
   1001       1.1        ad amr_ccb_enqueue(struct amr_softc *amr, struct amr_ccb *ac)
   1002       1.1        ad {
   1003       1.1        ad 	int s;
   1004       1.1        ad 
   1005       1.1        ad 	s = splbio();
   1006       1.1        ad 
   1007       1.1        ad 	if (ac != NULL)
   1008       1.1        ad 		SIMPLEQ_INSERT_TAIL(&amr->amr_ccb_queue, ac, ac_chain.simpleq);
   1009       1.1        ad 
   1010       1.1        ad 	while ((ac = SIMPLEQ_FIRST(&amr->amr_ccb_queue)) != NULL) {
   1011       1.1        ad 		if ((*amr->amr_submit)(amr, ac) != 0)
   1012       1.1        ad 			break;
   1013       1.2     lukem 		SIMPLEQ_REMOVE_HEAD(&amr->amr_ccb_queue, ac_chain.simpleq);
   1014      1.10        ad 		TAILQ_INSERT_TAIL(&amr->amr_ccb_active, ac, ac_chain.tailq);
   1015       1.1        ad 	}
   1016       1.1        ad 
   1017       1.1        ad 	splx(s);
   1018       1.1        ad }
   1019       1.1        ad 
   1020       1.1        ad /*
   1021       1.1        ad  * Map the specified CCB's data buffer onto the bus, and fill the
   1022       1.1        ad  * scatter-gather list.
   1023       1.1        ad  */
   1024       1.1        ad int
   1025       1.1        ad amr_ccb_map(struct amr_softc *amr, struct amr_ccb *ac, void *data, int size,
   1026       1.1        ad 	    int out)
   1027       1.1        ad {
   1028       1.1        ad 	struct amr_sgentry *sge;
   1029       1.9        ad 	struct amr_mailbox_cmd *mb;
   1030       1.1        ad 	int nsegs, i, rv, sgloff;
   1031       1.1        ad 	bus_dmamap_t xfer;
   1032       1.1        ad 
   1033       1.1        ad 	xfer = ac->ac_xfer_map;
   1034       1.1        ad 
   1035       1.1        ad 	rv = bus_dmamap_load(amr->amr_dmat, xfer, data, size, NULL,
   1036       1.1        ad 	    BUS_DMA_NOWAIT);
   1037       1.1        ad 	if (rv != 0)
   1038       1.1        ad 		return (rv);
   1039       1.1        ad 
   1040       1.9        ad 	mb = &ac->ac_cmd;
   1041       1.1        ad 	ac->ac_xfer_size = size;
   1042       1.1        ad 	ac->ac_flags |= (out ? AC_XFER_OUT : AC_XFER_IN);
   1043       1.1        ad 	sgloff = AMR_SGL_SIZE * ac->ac_ident;
   1044       1.1        ad 
   1045       1.1        ad 	/* We don't need to use a scatter/gather list for just 1 segment. */
   1046       1.1        ad 	nsegs = xfer->dm_nsegs;
   1047       1.1        ad 	if (nsegs == 1) {
   1048       1.1        ad 		mb->mb_nsgelem = 0;
   1049       1.1        ad 		mb->mb_physaddr = htole32(xfer->dm_segs[0].ds_addr);
   1050       1.1        ad 		ac->ac_flags |= AC_NOSGL;
   1051       1.1        ad 	} else {
   1052       1.1        ad 		mb->mb_nsgelem = nsegs;
   1053       1.1        ad 		mb->mb_physaddr = htole32(amr->amr_sgls_paddr + sgloff);
   1054       1.1        ad 
   1055       1.1        ad 		sge = (struct amr_sgentry *)((caddr_t)amr->amr_sgls + sgloff);
   1056       1.1        ad 		for (i = 0; i < nsegs; i++, sge++) {
   1057       1.1        ad 			sge->sge_addr = htole32(xfer->dm_segs[i].ds_addr);
   1058       1.1        ad 			sge->sge_count = htole32(xfer->dm_segs[i].ds_len);
   1059       1.1        ad 		}
   1060       1.1        ad 	}
   1061       1.1        ad 
   1062       1.1        ad 	bus_dmamap_sync(amr->amr_dmat, xfer, 0, ac->ac_xfer_size,
   1063       1.1        ad 	    out ? BUS_DMASYNC_PREWRITE : BUS_DMASYNC_PREREAD);
   1064       1.1        ad 
   1065       1.1        ad 	if ((ac->ac_flags & AC_NOSGL) == 0)
   1066       1.1        ad 		bus_dmamap_sync(amr->amr_dmat, amr->amr_dmamap, sgloff,
   1067       1.1        ad 		    AMR_SGL_SIZE, BUS_DMASYNC_PREWRITE);
   1068       1.1        ad 
   1069       1.1        ad 	return (0);
   1070       1.1        ad }
   1071       1.1        ad 
   1072       1.1        ad /*
   1073       1.1        ad  * Unmap the specified CCB's data buffer.
   1074       1.1        ad  */
   1075       1.1        ad void
   1076       1.1        ad amr_ccb_unmap(struct amr_softc *amr, struct amr_ccb *ac)
   1077       1.1        ad {
   1078       1.1        ad 
   1079       1.1        ad 	if ((ac->ac_flags & AC_NOSGL) == 0)
   1080       1.1        ad 		bus_dmamap_sync(amr->amr_dmat, amr->amr_dmamap,
   1081       1.1        ad 		    AMR_SGL_SIZE * ac->ac_ident, AMR_SGL_SIZE,
   1082       1.1        ad 		    BUS_DMASYNC_POSTWRITE);
   1083       1.1        ad 	bus_dmamap_sync(amr->amr_dmat, ac->ac_xfer_map, 0, ac->ac_xfer_size,
   1084       1.1        ad 	    (ac->ac_flags & AC_XFER_IN) != 0 ?
   1085       1.1        ad 	    BUS_DMASYNC_POSTREAD : BUS_DMASYNC_POSTWRITE);
   1086       1.1        ad 	bus_dmamap_unload(amr->amr_dmat, ac->ac_xfer_map);
   1087       1.1        ad }
   1088       1.1        ad 
   1089       1.1        ad /*
   1090       1.1        ad  * Submit a command to the controller and poll on completion.  Return
   1091       1.1        ad  * non-zero on timeout or error.  Must be called with interrupts blocked.
   1092       1.1        ad  */
   1093       1.1        ad int
   1094       1.1        ad amr_ccb_poll(struct amr_softc *amr, struct amr_ccb *ac, int timo)
   1095       1.1        ad {
   1096       1.1        ad 	int rv;
   1097       1.1        ad 
   1098       1.1        ad 	if ((rv = (*amr->amr_submit)(amr, ac)) != 0)
   1099       1.1        ad 		return (rv);
   1100      1.10        ad 	TAILQ_INSERT_TAIL(&amr->amr_ccb_active, ac, ac_chain.tailq);
   1101       1.1        ad 
   1102       1.1        ad 	for (timo *= 10; timo != 0; timo--) {
   1103       1.1        ad 		amr_intr(amr);
   1104       1.1        ad 		if ((ac->ac_flags & AC_COMPLETE) != 0)
   1105       1.1        ad 			break;
   1106       1.1        ad 		DELAY(100);
   1107       1.1        ad 	}
   1108       1.1        ad 
   1109       1.1        ad 	return (timo == 0 || ac->ac_status != 0 ? EIO : 0);
   1110       1.1        ad }
   1111       1.1        ad 
   1112       1.1        ad /*
   1113       1.9        ad  * Submit a command to the controller and sleep on completion.  Return
   1114       1.9        ad  * non-zero on error.
   1115       1.9        ad  */
   1116       1.9        ad int
   1117       1.9        ad amr_ccb_wait(struct amr_softc *amr, struct amr_ccb *ac)
   1118       1.9        ad {
   1119       1.9        ad 	int s;
   1120       1.9        ad 
   1121       1.9        ad 	s = splbio();
   1122       1.9        ad 	amr_ccb_enqueue(amr, ac);
   1123       1.9        ad 	tsleep(ac, PRIBIO, "amrcmd", 0);
   1124       1.9        ad 	splx(s);
   1125       1.9        ad 
   1126       1.9        ad 	return (ac->ac_status != 0 ? EIO : 0);
   1127       1.9        ad }
   1128       1.9        ad 
   1129       1.9        ad /*
   1130       1.1        ad  * Wait for the mailbox to become available.
   1131       1.1        ad  */
   1132       1.1        ad int
   1133       1.1        ad amr_mbox_wait(struct amr_softc *amr)
   1134       1.1        ad {
   1135       1.1        ad 	int timo;
   1136       1.1        ad 
   1137       1.1        ad 	for (timo = 10000; timo != 0; timo--) {
   1138       1.9        ad 		bus_dmamap_sync(amr->amr_dmat, amr->amr_dmamap, 0,
   1139       1.9        ad 		    sizeof(struct amr_mailbox), BUS_DMASYNC_POSTREAD);
   1140       1.9        ad 		if (amr->amr_mbox->mb_cmd.mb_busy == 0)
   1141       1.1        ad 			break;
   1142       1.1        ad 		DELAY(100);
   1143       1.1        ad 	}
   1144       1.1        ad 
   1145       1.9        ad 	if (timo == 0)
   1146       1.1        ad 		printf("%s: controller wedged\n", amr->amr_dv.dv_xname);
   1147       1.1        ad 
   1148       1.9        ad 	return (timo != 0 ? 0 : EAGAIN);
   1149       1.1        ad }
   1150       1.1        ad 
   1151       1.1        ad /*
   1152       1.1        ad  * Tell the controller that the mailbox contains a valid command.  Must be
   1153       1.1        ad  * called with interrupts blocked.
   1154       1.1        ad  */
   1155       1.1        ad int
   1156       1.1        ad amr_quartz_submit(struct amr_softc *amr, struct amr_ccb *ac)
   1157       1.1        ad {
   1158       1.1        ad 	u_int32_t v;
   1159       1.1        ad 
   1160       1.9        ad 	amr->amr_mbox->mb_poll = 0;
   1161       1.9        ad 	amr->amr_mbox->mb_ack = 0;
   1162       1.9        ad 	bus_dmamap_sync(amr->amr_dmat, amr->amr_dmamap, 0,
   1163       1.9        ad 	    sizeof(struct amr_mailbox), BUS_DMASYNC_PREWRITE);
   1164       1.9        ad 	bus_dmamap_sync(amr->amr_dmat, amr->amr_dmamap, 0,
   1165       1.9        ad 	    sizeof(struct amr_mailbox), BUS_DMASYNC_POSTREAD);
   1166       1.9        ad 	if (amr->amr_mbox->mb_cmd.mb_busy != 0)
   1167       1.9        ad 		return (EAGAIN);
   1168       1.9        ad 
   1169       1.1        ad 	v = amr_inl(amr, AMR_QREG_IDB);
   1170      1.13        ad 	if ((v & AMR_QIDB_SUBMIT) != 0) {
   1171       1.9        ad 		amr->amr_mbox->mb_cmd.mb_busy = 0;
   1172       1.9        ad 		bus_dmamap_sync(amr->amr_dmat, amr->amr_dmamap, 0,
   1173       1.9        ad 		    sizeof(struct amr_mailbox), BUS_DMASYNC_PREWRITE);
   1174       1.9        ad 		bus_dmamap_sync(amr->amr_dmat, amr->amr_dmamap, 0,
   1175       1.9        ad 		    sizeof(struct amr_mailbox), BUS_DMASYNC_PREREAD);
   1176       1.9        ad 		return (EAGAIN);
   1177       1.9        ad 	}
   1178       1.1        ad 
   1179      1.10        ad 	amr->amr_mbox->mb_segment = 0;
   1180      1.10        ad 	memcpy(&amr->amr_mbox->mb_cmd, &ac->ac_cmd, sizeof(ac->ac_cmd));
   1181      1.10        ad 	bus_dmamap_sync(amr->amr_dmat, amr->amr_dmamap, 0,
   1182      1.10        ad 	    sizeof(struct amr_mailbox), BUS_DMASYNC_PREWRITE);
   1183      1.10        ad 
   1184      1.10        ad 	ac->ac_start_time = (time_t)mono_time.tv_sec;
   1185       1.1        ad 	ac->ac_flags |= AC_ACTIVE;
   1186      1.13        ad 	amr_outl(amr, AMR_QREG_IDB,
   1187      1.13        ad 	    (amr->amr_mbox_paddr + 16) | AMR_QIDB_SUBMIT);
   1188       1.1        ad 	return (0);
   1189       1.1        ad }
   1190       1.1        ad 
   1191       1.1        ad int
   1192       1.1        ad amr_std_submit(struct amr_softc *amr, struct amr_ccb *ac)
   1193       1.1        ad {
   1194       1.1        ad 
   1195       1.9        ad 	amr->amr_mbox->mb_poll = 0;
   1196       1.9        ad 	amr->amr_mbox->mb_ack = 0;
   1197       1.9        ad 	bus_dmamap_sync(amr->amr_dmat, amr->amr_dmamap, 0,
   1198       1.9        ad 	    sizeof(struct amr_mailbox), BUS_DMASYNC_PREWRITE);
   1199       1.9        ad 	bus_dmamap_sync(amr->amr_dmat, amr->amr_dmamap, 0,
   1200       1.9        ad 	    sizeof(struct amr_mailbox), BUS_DMASYNC_POSTREAD);
   1201       1.9        ad 	if (amr->amr_mbox->mb_cmd.mb_busy != 0)
   1202       1.9        ad 		return (EAGAIN);
   1203       1.9        ad 
   1204       1.9        ad 	if ((amr_inb(amr, AMR_SREG_MBOX_BUSY) & AMR_SMBOX_BUSY_FLAG) != 0) {
   1205       1.9        ad 		amr->amr_mbox->mb_cmd.mb_busy = 0;
   1206       1.9        ad 		bus_dmamap_sync(amr->amr_dmat, amr->amr_dmamap, 0,
   1207       1.9        ad 		    sizeof(struct amr_mailbox), BUS_DMASYNC_PREWRITE);
   1208       1.9        ad 		bus_dmamap_sync(amr->amr_dmat, amr->amr_dmamap, 0,
   1209       1.9        ad 		    sizeof(struct amr_mailbox), BUS_DMASYNC_PREREAD);
   1210       1.9        ad 		return (EAGAIN);
   1211       1.9        ad 	}
   1212       1.1        ad 
   1213      1.10        ad 	amr->amr_mbox->mb_segment = 0;
   1214      1.10        ad 	memcpy(&amr->amr_mbox->mb_cmd, &ac->ac_cmd, sizeof(ac->ac_cmd));
   1215      1.10        ad 	bus_dmamap_sync(amr->amr_dmat, amr->amr_dmamap, 0,
   1216      1.10        ad 	    sizeof(struct amr_mailbox), BUS_DMASYNC_PREWRITE);
   1217      1.10        ad 
   1218      1.10        ad 	ac->ac_start_time = (time_t)mono_time.tv_sec;
   1219       1.1        ad 	ac->ac_flags |= AC_ACTIVE;
   1220       1.1        ad 	amr_outb(amr, AMR_SREG_CMD, AMR_SCMD_POST);
   1221       1.1        ad 	return (0);
   1222       1.1        ad }
   1223       1.1        ad 
   1224       1.1        ad /*
   1225       1.1        ad  * Claim any work that the controller has completed; acknowledge completion,
   1226       1.1        ad  * save details of the completion in (mbsave).  Must be called with
   1227       1.1        ad  * interrupts blocked.
   1228       1.1        ad  */
   1229       1.1        ad int
   1230       1.9        ad amr_quartz_get_work(struct amr_softc *amr, struct amr_mailbox_resp *mbsave)
   1231       1.1        ad {
   1232       1.1        ad 
   1233       1.1        ad 	/* Work waiting for us? */
   1234       1.1        ad 	if (amr_inl(amr, AMR_QREG_ODB) != AMR_QODB_READY)
   1235       1.1        ad 		return (-1);
   1236       1.1        ad 
   1237       1.9        ad 	bus_dmamap_sync(amr->amr_dmat, amr->amr_dmamap, 0,
   1238       1.9        ad 	    sizeof(struct amr_mailbox), BUS_DMASYNC_POSTREAD);
   1239       1.9        ad 
   1240       1.1        ad 	/* Save the mailbox, which contains a list of completed commands. */
   1241       1.9        ad 	memcpy(mbsave, &amr->amr_mbox->mb_resp, sizeof(*mbsave));
   1242       1.9        ad 
   1243       1.9        ad 	bus_dmamap_sync(amr->amr_dmat, amr->amr_dmamap, 0,
   1244       1.9        ad 	    sizeof(struct amr_mailbox), BUS_DMASYNC_PREREAD);
   1245       1.1        ad 
   1246       1.1        ad 	/* Ack the interrupt and mailbox transfer. */
   1247       1.1        ad 	amr_outl(amr, AMR_QREG_ODB, AMR_QODB_READY);
   1248       1.9        ad 	amr_outl(amr, AMR_QREG_IDB, (amr->amr_mbox_paddr+16) | AMR_QIDB_ACK);
   1249       1.1        ad 
   1250       1.1        ad 	/*
   1251       1.1        ad 	 * This waits for the controller to notice that we've taken the
   1252       1.1        ad 	 * command from it.  It's very inefficient, and we shouldn't do it,
   1253       1.1        ad 	 * but if we remove this code, we stop completing commands under
   1254       1.1        ad 	 * load.
   1255       1.1        ad 	 *
   1256       1.1        ad 	 * Peter J says we shouldn't do this.  The documentation says we
   1257       1.1        ad 	 * should.  Who is right?
   1258       1.1        ad 	 */
   1259       1.1        ad 	while ((amr_inl(amr, AMR_QREG_IDB) & AMR_QIDB_ACK) != 0)
   1260      1.13        ad 		DELAY(10);
   1261       1.1        ad 
   1262       1.1        ad 	return (0);
   1263       1.1        ad }
   1264       1.1        ad 
   1265       1.1        ad int
   1266       1.9        ad amr_std_get_work(struct amr_softc *amr, struct amr_mailbox_resp *mbsave)
   1267       1.1        ad {
   1268       1.1        ad 	u_int8_t istat;
   1269       1.1        ad 
   1270       1.1        ad 	/* Check for valid interrupt status. */
   1271       1.1        ad 	if (((istat = amr_inb(amr, AMR_SREG_INTR)) & AMR_SINTR_VALID) == 0)
   1272       1.1        ad 		return (-1);
   1273       1.1        ad 
   1274       1.1        ad 	/* Ack the interrupt. */
   1275       1.1        ad 	amr_outb(amr, AMR_SREG_INTR, istat);
   1276       1.1        ad 
   1277       1.9        ad 	bus_dmamap_sync(amr->amr_dmat, amr->amr_dmamap, 0,
   1278       1.9        ad 	    sizeof(struct amr_mailbox), BUS_DMASYNC_POSTREAD);
   1279       1.9        ad 
   1280       1.1        ad 	/* Save mailbox, which contains a list of completed commands. */
   1281       1.9        ad 	memcpy(mbsave, &amr->amr_mbox->mb_resp, sizeof(*mbsave));
   1282       1.9        ad 
   1283       1.9        ad 	bus_dmamap_sync(amr->amr_dmat, amr->amr_dmamap, 0,
   1284       1.9        ad 	    sizeof(struct amr_mailbox), BUS_DMASYNC_PREREAD);
   1285       1.1        ad 
   1286       1.1        ad 	/* Ack mailbox transfer. */
   1287       1.1        ad 	amr_outb(amr, AMR_SREG_CMD, AMR_SCMD_ACKINTR);
   1288       1.1        ad 
   1289       1.1        ad 	return (0);
   1290      1.10        ad }
   1291      1.10        ad 
   1292      1.10        ad void
   1293      1.10        ad amr_ccb_dump(struct amr_softc *amr, struct amr_ccb *ac)
   1294      1.10        ad {
   1295      1.10        ad 	int i;
   1296      1.10        ad 
   1297      1.10        ad 	printf("%s: ", amr->amr_dv.dv_xname);
   1298      1.10        ad 	for (i = 0; i < 4; i++)
   1299      1.10        ad 		printf("%08x ", ((u_int32_t *)&ac->ac_cmd)[i]);
   1300      1.10        ad 	printf("\n");
   1301       1.1        ad }
   1302