Home | History | Annotate | Line # | Download | only in pci
ld_twe.c revision 1.28.12.2
      1  1.28.12.2  ad /*	$NetBSD: ld_twe.c,v 1.28.12.2 2007/07/29 12:50:23 ad Exp $	*/
      2  1.28.12.2  ad 
      3  1.28.12.2  ad /*-
      4  1.28.12.2  ad  * Copyright (c) 2000, 2001, 2002, 2003 The NetBSD Foundation, Inc.
      5  1.28.12.2  ad  * All rights reserved.
      6  1.28.12.2  ad  *
      7  1.28.12.2  ad  * This code is derived from software contributed to The NetBSD Foundation
      8  1.28.12.2  ad  * by Andrew Doran; and by Jason R. Thorpe of Wasabi Systems, Inc.
      9  1.28.12.2  ad  *
     10  1.28.12.2  ad  * Redistribution and use in source and binary forms, with or without
     11  1.28.12.2  ad  * modification, are permitted provided that the following conditions
     12  1.28.12.2  ad  * are met:
     13  1.28.12.2  ad  * 1. Redistributions of source code must retain the above copyright
     14  1.28.12.2  ad  *    notice, this list of conditions and the following disclaimer.
     15  1.28.12.2  ad  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.28.12.2  ad  *    notice, this list of conditions and the following disclaimer in the
     17  1.28.12.2  ad  *    documentation and/or other materials provided with the distribution.
     18  1.28.12.2  ad  * 3. All advertising materials mentioning features or use of this software
     19  1.28.12.2  ad  *    must display the following acknowledgement:
     20  1.28.12.2  ad  *        This product includes software developed by the NetBSD
     21  1.28.12.2  ad  *        Foundation, Inc. and its contributors.
     22  1.28.12.2  ad  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  1.28.12.2  ad  *    contributors may be used to endorse or promote products derived
     24  1.28.12.2  ad  *    from this software without specific prior written permission.
     25  1.28.12.2  ad  *
     26  1.28.12.2  ad  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  1.28.12.2  ad  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  1.28.12.2  ad  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  1.28.12.2  ad  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  1.28.12.2  ad  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  1.28.12.2  ad  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  1.28.12.2  ad  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  1.28.12.2  ad  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  1.28.12.2  ad  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  1.28.12.2  ad  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  1.28.12.2  ad  * POSSIBILITY OF SUCH DAMAGE.
     37  1.28.12.2  ad  */
     38  1.28.12.2  ad 
     39  1.28.12.2  ad /*
     40  1.28.12.2  ad  * 3ware "Escalade" RAID controller front-end for ld(4) driver.
     41  1.28.12.2  ad  */
     42  1.28.12.2  ad 
     43  1.28.12.2  ad #include <sys/cdefs.h>
     44  1.28.12.2  ad __KERNEL_RCSID(0, "$NetBSD: ld_twe.c,v 1.28.12.2 2007/07/29 12:50:23 ad Exp $");
     45  1.28.12.2  ad 
     46  1.28.12.2  ad #include "rnd.h"
     47  1.28.12.2  ad 
     48  1.28.12.2  ad #include <sys/param.h>
     49  1.28.12.2  ad #include <sys/systm.h>
     50  1.28.12.2  ad #include <sys/kernel.h>
     51  1.28.12.2  ad #include <sys/device.h>
     52  1.28.12.2  ad #include <sys/buf.h>
     53  1.28.12.2  ad #include <sys/bufq.h>
     54  1.28.12.2  ad #include <sys/endian.h>
     55  1.28.12.2  ad #include <sys/dkio.h>
     56  1.28.12.2  ad #include <sys/disk.h>
     57  1.28.12.2  ad #include <sys/proc.h>
     58  1.28.12.2  ad #if NRND > 0
     59  1.28.12.2  ad #include <sys/rnd.h>
     60  1.28.12.2  ad #endif
     61  1.28.12.2  ad 
     62  1.28.12.2  ad #include <machine/bus.h>
     63  1.28.12.2  ad 
     64  1.28.12.2  ad #include <uvm/uvm_extern.h>
     65  1.28.12.2  ad 
     66  1.28.12.2  ad #include <dev/ldvar.h>
     67  1.28.12.2  ad 
     68  1.28.12.2  ad #include <dev/pci/twereg.h>
     69  1.28.12.2  ad #include <dev/pci/twevar.h>
     70  1.28.12.2  ad 
     71  1.28.12.2  ad struct ld_twe_softc {
     72  1.28.12.2  ad 	struct	ld_softc sc_ld;
     73  1.28.12.2  ad 	int	sc_hwunit;
     74  1.28.12.2  ad };
     75  1.28.12.2  ad 
     76  1.28.12.2  ad static void	ld_twe_attach(struct device *, struct device *, void *);
     77  1.28.12.2  ad static int	ld_twe_detach(struct device *, int);
     78  1.28.12.2  ad static int	ld_twe_dobio(struct ld_twe_softc *, void *, int, int, int,
     79  1.28.12.2  ad 			     struct buf *);
     80  1.28.12.2  ad static int	ld_twe_dump(struct ld_softc *, void *, int, int);
     81  1.28.12.2  ad static int	ld_twe_flush(struct ld_softc *);
     82  1.28.12.2  ad static void	ld_twe_handler(struct twe_ccb *, int);
     83  1.28.12.2  ad static int	ld_twe_match(struct device *, struct cfdata *, void *);
     84  1.28.12.2  ad static int	ld_twe_start(struct ld_softc *, struct buf *);
     85  1.28.12.2  ad 
     86  1.28.12.2  ad static void	ld_twe_adjqparam(struct device *, int);
     87  1.28.12.2  ad 
     88  1.28.12.2  ad CFATTACH_DECL(ld_twe, sizeof(struct ld_twe_softc),
     89  1.28.12.2  ad     ld_twe_match, ld_twe_attach, ld_twe_detach, NULL);
     90  1.28.12.2  ad 
     91  1.28.12.2  ad static const struct twe_callbacks ld_twe_callbacks = {
     92  1.28.12.2  ad 	ld_twe_adjqparam,
     93  1.28.12.2  ad };
     94  1.28.12.2  ad 
     95  1.28.12.2  ad static int
     96  1.28.12.2  ad ld_twe_match(struct device *parent, struct cfdata *match,
     97  1.28.12.2  ad     void *aux)
     98  1.28.12.2  ad {
     99  1.28.12.2  ad 
    100  1.28.12.2  ad 	return (1);
    101  1.28.12.2  ad }
    102  1.28.12.2  ad 
    103  1.28.12.2  ad static void
    104  1.28.12.2  ad ld_twe_attach(struct device *parent, struct device *self, void *aux)
    105  1.28.12.2  ad {
    106  1.28.12.2  ad 	struct twe_attach_args *twea;
    107  1.28.12.2  ad 	struct ld_twe_softc *sc;
    108  1.28.12.2  ad 	struct ld_softc *ld;
    109  1.28.12.2  ad 	struct twe_softc *twe;
    110  1.28.12.2  ad 	struct twe_drive *td;
    111  1.28.12.2  ad 	const char *typestr, *stripestr, *statstr;
    112  1.28.12.2  ad 	char unktype[16], stripebuf[32], unkstat[32];
    113  1.28.12.2  ad 	int error;
    114  1.28.12.2  ad 	uint8_t status;
    115  1.28.12.2  ad 
    116  1.28.12.2  ad 	sc = (struct ld_twe_softc *)self;
    117  1.28.12.2  ad 	ld = &sc->sc_ld;
    118  1.28.12.2  ad 	twe = (struct twe_softc *)parent;
    119  1.28.12.2  ad 	twea = aux;
    120  1.28.12.2  ad 	td = &twe->sc_units[twea->twea_unit];
    121  1.28.12.2  ad 
    122  1.28.12.2  ad 	twe_register_callbacks(twe, twea->twea_unit, &ld_twe_callbacks);
    123  1.28.12.2  ad 
    124  1.28.12.2  ad 	sc->sc_hwunit = twea->twea_unit;
    125  1.28.12.2  ad 	ld->sc_flags = LDF_ENABLED;
    126  1.28.12.2  ad 	ld->sc_maxxfer = twe_get_maxxfer(twe_get_maxsegs());
    127  1.28.12.2  ad 	ld->sc_secperunit = td->td_size;
    128  1.28.12.2  ad 	ld->sc_secsize = TWE_SECTOR_SIZE;
    129  1.28.12.2  ad 	ld->sc_maxqueuecnt = twe->sc_openings;
    130  1.28.12.2  ad 	ld->sc_start = ld_twe_start;
    131  1.28.12.2  ad 	ld->sc_dump = ld_twe_dump;
    132  1.28.12.2  ad 	ld->sc_flush = ld_twe_flush;
    133  1.28.12.2  ad 
    134  1.28.12.2  ad 	typestr = twe_describe_code(twe_table_unittype, td->td_type);
    135  1.28.12.2  ad 	if (typestr == NULL) {
    136  1.28.12.2  ad 		snprintf(unktype, sizeof(unktype), "<0x%02x>", td->td_type);
    137  1.28.12.2  ad 		typestr = unktype;
    138  1.28.12.2  ad 	}
    139  1.28.12.2  ad 	switch (td->td_type) {
    140  1.28.12.2  ad 	case TWE_AD_CONFIG_RAID0:
    141  1.28.12.2  ad 	case TWE_AD_CONFIG_RAID5:
    142  1.28.12.2  ad 	case TWE_AD_CONFIG_RAID10:
    143  1.28.12.2  ad 		stripestr = twe_describe_code(twe_table_stripedepth,
    144  1.28.12.2  ad 		    td->td_stripe);
    145  1.28.12.2  ad 		if (stripestr == NULL)
    146  1.28.12.2  ad 			snprintf(stripebuf, sizeof(stripebuf),
    147  1.28.12.2  ad 			    "<stripe code 0x%02x> ", td->td_stripe);
    148  1.28.12.2  ad 		else
    149  1.28.12.2  ad 			snprintf(stripebuf, sizeof(stripebuf), "%s stripe ",
    150  1.28.12.2  ad 			    stripestr);
    151  1.28.12.2  ad 		break;
    152  1.28.12.2  ad 	default:
    153  1.28.12.2  ad 		stripebuf[0] = '\0';
    154  1.28.12.2  ad 	}
    155  1.28.12.2  ad 
    156  1.28.12.2  ad 	error = twe_param_get_1(twe, TWE_PARAM_UNITINFO + twea->twea_unit,
    157  1.28.12.2  ad 	    TWE_PARAM_UNITINFO_Status, &status);
    158  1.28.12.2  ad 	status &= TWE_PARAM_UNITSTATUS_MASK;
    159  1.28.12.2  ad 	if (error) {
    160  1.28.12.2  ad 		snprintf(unkstat, sizeof(unkstat), "<unknown>");
    161  1.28.12.2  ad 		statstr = unkstat;
    162  1.28.12.2  ad 	} else if ((statstr =
    163  1.28.12.2  ad 		    twe_describe_code(twe_table_unitstate, status)) == NULL) {
    164  1.28.12.2  ad 		snprintf(unkstat, sizeof(unkstat), "<status code 0x%02x>",
    165  1.28.12.2  ad 		    status);
    166  1.28.12.2  ad 		statstr = unkstat;
    167  1.28.12.2  ad 	}
    168  1.28.12.2  ad 
    169  1.28.12.2  ad 	aprint_normal(": %s%s, status: %s\n", stripebuf, typestr, statstr);
    170  1.28.12.2  ad 	ldattach(ld);
    171  1.28.12.2  ad }
    172  1.28.12.2  ad 
    173  1.28.12.2  ad static int
    174  1.28.12.2  ad ld_twe_detach(struct device *self, int flags)
    175  1.28.12.2  ad {
    176  1.28.12.2  ad 	int rv;
    177  1.28.12.2  ad 
    178  1.28.12.2  ad 	if ((rv = ldbegindetach((struct ld_softc *)self, flags)) != 0)
    179  1.28.12.2  ad 		return (rv);
    180  1.28.12.2  ad 	ldenddetach((struct ld_softc *)self);
    181  1.28.12.2  ad 
    182  1.28.12.2  ad 	return (0);
    183  1.28.12.2  ad }
    184  1.28.12.2  ad 
    185  1.28.12.2  ad static int
    186  1.28.12.2  ad ld_twe_dobio(struct ld_twe_softc *sc, void *data, int datasize, int blkno,
    187  1.28.12.2  ad 	     int dowrite, struct buf *bp)
    188  1.28.12.2  ad {
    189  1.28.12.2  ad 	struct twe_ccb *ccb;
    190  1.28.12.2  ad 	struct twe_cmd *tc;
    191  1.28.12.2  ad 	struct twe_softc *twe;
    192  1.28.12.2  ad 	int s, rv, flags;
    193  1.28.12.2  ad 
    194  1.28.12.2  ad 	twe = (struct twe_softc *)device_parent(&sc->sc_ld.sc_dv);
    195  1.28.12.2  ad 
    196  1.28.12.2  ad 	flags = (dowrite ? TWE_CCB_DATA_OUT : TWE_CCB_DATA_IN);
    197  1.28.12.2  ad 	if ((ccb = twe_ccb_alloc(twe, flags)) == NULL)
    198  1.28.12.2  ad 		return (EAGAIN);
    199  1.28.12.2  ad 
    200  1.28.12.2  ad 	ccb->ccb_data = data;
    201  1.28.12.2  ad 	ccb->ccb_datasize = datasize;
    202  1.28.12.2  ad 	tc = ccb->ccb_cmd;
    203  1.28.12.2  ad 
    204  1.28.12.2  ad 	/* Build the command. */
    205  1.28.12.2  ad 	tc->tc_size = 3;
    206  1.28.12.2  ad 	tc->tc_unit = sc->sc_hwunit;
    207  1.28.12.2  ad 	tc->tc_count = htole16(datasize / TWE_SECTOR_SIZE);
    208  1.28.12.2  ad 	tc->tc_args.io.lba = htole32(blkno);
    209  1.28.12.2  ad 
    210  1.28.12.2  ad 	if (dowrite)
    211  1.28.12.2  ad 		tc->tc_opcode = TWE_OP_WRITE | (tc->tc_size << 5);
    212  1.28.12.2  ad 	else
    213  1.28.12.2  ad 		tc->tc_opcode = TWE_OP_READ | (tc->tc_size << 5);
    214  1.28.12.2  ad 
    215  1.28.12.2  ad 	/* Map the data transfer. */
    216  1.28.12.2  ad 	if ((rv = twe_ccb_map(twe, ccb)) != 0) {
    217  1.28.12.2  ad 		twe_ccb_free(twe, ccb);
    218  1.28.12.2  ad 		return (rv);
    219  1.28.12.2  ad 	}
    220  1.28.12.2  ad 
    221  1.28.12.2  ad 	if (bp == NULL) {
    222  1.28.12.2  ad 		/*
    223  1.28.12.2  ad 		 * Polled commands must not sit on the software queue.  Wait
    224  1.28.12.2  ad 		 * up to 2 seconds for the command to complete.
    225  1.28.12.2  ad 		 */
    226  1.28.12.2  ad 		s = splbio();
    227  1.28.12.2  ad 		rv = twe_ccb_poll(twe, ccb, 2000);
    228  1.28.12.2  ad 		twe_ccb_unmap(twe, ccb);
    229  1.28.12.2  ad 		twe_ccb_free(twe, ccb);
    230  1.28.12.2  ad 		splx(s);
    231  1.28.12.2  ad 	} else {
    232  1.28.12.2  ad 		ccb->ccb_tx.tx_handler = ld_twe_handler;
    233  1.28.12.2  ad 		ccb->ccb_tx.tx_context = bp;
    234  1.28.12.2  ad 		ccb->ccb_tx.tx_dv = (struct device *)sc;
    235  1.28.12.2  ad 		twe_ccb_enqueue(twe, ccb);
    236  1.28.12.2  ad 		rv = 0;
    237  1.28.12.2  ad 	}
    238  1.28.12.2  ad 
    239  1.28.12.2  ad 	return (rv);
    240  1.28.12.2  ad }
    241  1.28.12.2  ad 
    242  1.28.12.2  ad static int
    243  1.28.12.2  ad ld_twe_start(struct ld_softc *ld, struct buf *bp)
    244  1.28.12.2  ad {
    245  1.28.12.2  ad 
    246  1.28.12.2  ad 	return (ld_twe_dobio((struct ld_twe_softc *)ld, bp->b_data,
    247  1.28.12.2  ad 	    bp->b_bcount, bp->b_rawblkno, (bp->b_flags & B_READ) == 0, bp));
    248  1.28.12.2  ad }
    249  1.28.12.2  ad 
    250  1.28.12.2  ad static void
    251  1.28.12.2  ad ld_twe_handler(struct twe_ccb *ccb, int error)
    252  1.28.12.2  ad {
    253  1.28.12.2  ad 	struct buf *bp;
    254  1.28.12.2  ad 	struct twe_context *tx;
    255  1.28.12.2  ad 	struct ld_twe_softc *sc;
    256  1.28.12.2  ad 	struct twe_softc *twe;
    257  1.28.12.2  ad 
    258  1.28.12.2  ad 	tx = &ccb->ccb_tx;
    259  1.28.12.2  ad 	bp = tx->tx_context;
    260  1.28.12.2  ad 	sc = (struct ld_twe_softc *)tx->tx_dv;
    261  1.28.12.2  ad 	twe = (struct twe_softc *)device_parent(&sc->sc_ld.sc_dv);
    262  1.28.12.2  ad 
    263  1.28.12.2  ad 	twe_ccb_unmap(twe, ccb);
    264  1.28.12.2  ad 	twe_ccb_free(twe, ccb);
    265  1.28.12.2  ad 
    266  1.28.12.2  ad 	if (error) {
    267  1.28.12.2  ad 		bp->b_error = error;
    268  1.28.12.2  ad 		bp->b_resid = bp->b_bcount;
    269  1.28.12.2  ad 	} else
    270  1.28.12.2  ad 		bp->b_resid = 0;
    271  1.28.12.2  ad 
    272  1.28.12.2  ad 	lddone(&sc->sc_ld, bp);
    273  1.28.12.2  ad }
    274  1.28.12.2  ad 
    275  1.28.12.2  ad static int
    276  1.28.12.2  ad ld_twe_dump(struct ld_softc *ld, void *data, int blkno, int blkcnt)
    277  1.28.12.2  ad {
    278  1.28.12.2  ad 
    279  1.28.12.2  ad 	return (ld_twe_dobio((struct ld_twe_softc *)ld, data,
    280  1.28.12.2  ad 	    blkcnt * ld->sc_secsize, blkno, 1, NULL));
    281  1.28.12.2  ad }
    282  1.28.12.2  ad 
    283  1.28.12.2  ad static int
    284  1.28.12.2  ad ld_twe_flush(struct ld_softc *ld)
    285  1.28.12.2  ad {
    286  1.28.12.2  ad 	struct ld_twe_softc *sc = (void *) ld;
    287  1.28.12.2  ad 	struct twe_softc *twe = (void *) device_parent(&ld->sc_dv);
    288  1.28.12.2  ad 	struct twe_ccb *ccb;
    289  1.28.12.2  ad 	struct twe_cmd *tc;
    290  1.28.12.2  ad 	int s, rv;
    291  1.28.12.2  ad 
    292  1.28.12.2  ad 	ccb = twe_ccb_alloc_wait(twe, 0);
    293  1.28.12.2  ad 	KASSERT(ccb != NULL);
    294  1.28.12.2  ad 
    295  1.28.12.2  ad 	ccb->ccb_data = NULL;
    296  1.28.12.2  ad 	ccb->ccb_datasize = 0;
    297  1.28.12.2  ad 	ccb->ccb_tx.tx_handler = twe_ccb_wait_handler;
    298  1.28.12.2  ad 	ccb->ccb_tx.tx_context = NULL;
    299  1.28.12.2  ad 	ccb->ccb_tx.tx_dv = &ld->sc_dv;
    300  1.28.12.2  ad 
    301  1.28.12.2  ad 	tc = ccb->ccb_cmd;
    302  1.28.12.2  ad 	tc->tc_size = 2;
    303  1.28.12.2  ad 	tc->tc_opcode = TWE_OP_FLUSH;
    304  1.28.12.2  ad 	tc->tc_unit = sc->sc_hwunit;
    305  1.28.12.2  ad 	tc->tc_count = 0;
    306  1.28.12.2  ad 
    307  1.28.12.2  ad 	rv = 0;
    308  1.28.12.2  ad 	twe_ccb_enqueue(twe, ccb);
    309  1.28.12.2  ad 	s = splbio();
    310  1.28.12.2  ad 	while ((ccb->ccb_flags & TWE_CCB_COMPLETE) == 0)
    311  1.28.12.2  ad 		if ((rv = tsleep(ccb, PRIBIO, "tweflush", 60 * hz)) != 0)
    312  1.28.12.2  ad 			break;
    313  1.28.12.2  ad 	twe_ccb_free(twe, ccb);
    314  1.28.12.2  ad 	splx(s);
    315  1.28.12.2  ad 
    316  1.28.12.2  ad 	return (rv);
    317  1.28.12.2  ad }
    318  1.28.12.2  ad 
    319  1.28.12.2  ad static void
    320  1.28.12.2  ad ld_twe_adjqparam(struct device *self, int openings)
    321  1.28.12.2  ad {
    322  1.28.12.2  ad 
    323  1.28.12.2  ad 	ldadjqparam((struct ld_softc *)self, openings);
    324  1.28.12.2  ad }
    325