Home | History | Annotate | Line # | Download | only in pci
twa.c revision 1.59.8.1
      1  1.59.8.1   thorpej /*	$NetBSD: twa.c,v 1.59.8.1 2021/08/04 21:27:00 thorpej Exp $ */
      2       1.8  wrstuden /*	$wasabi: twa.c,v 1.27 2006/07/28 18:17:21 wrstuden Exp $	*/
      3       1.1  wrstuden 
      4       1.1  wrstuden /*-
      5       1.1  wrstuden  * Copyright (c) 2004 The NetBSD Foundation, Inc.
      6       1.1  wrstuden  * All rights reserved.
      7       1.1  wrstuden  *
      8       1.1  wrstuden  * This code is derived from software contributed to The NetBSD Foundation
      9       1.1  wrstuden  * by Jordan Rhody of Wasabi Systems, Inc.
     10       1.1  wrstuden  *
     11       1.1  wrstuden  * Redistribution and use in source and binary forms, with or without
     12       1.1  wrstuden  * modification, are permitted provided that the following conditions
     13       1.1  wrstuden  * are met:
     14       1.1  wrstuden  * 1. Redistributions of source code must retain the above copyright
     15       1.1  wrstuden  *    notice, this list of conditions and the following disclaimer.
     16       1.1  wrstuden  * 2. Redistributions in binary form must reproduce the above copyright
     17       1.1  wrstuden  *    notice, this list of conditions and the following disclaimer in the
     18       1.1  wrstuden  *    documentation and/or other materials provided with the distribution.
     19       1.1  wrstuden  *
     20       1.1  wrstuden  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     21       1.1  wrstuden  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     22       1.1  wrstuden  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     23       1.1  wrstuden  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     24       1.1  wrstuden  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     25       1.1  wrstuden  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     26       1.1  wrstuden  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     27       1.1  wrstuden  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     28       1.1  wrstuden  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     29       1.1  wrstuden  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     30       1.1  wrstuden  * POSSIBILITY OF SUCH DAMAGE.
     31       1.1  wrstuden  */
     32       1.1  wrstuden 
     33       1.1  wrstuden /*-
     34       1.1  wrstuden  * Copyright (c) 2003-04 3ware, Inc.
     35       1.1  wrstuden  * Copyright (c) 2000 Michael Smith
     36       1.1  wrstuden  * Copyright (c) 2000 BSDi
     37       1.1  wrstuden  * All rights reserved.
     38       1.1  wrstuden  *
     39       1.1  wrstuden  * Redistribution and use in source and binary forms, with or without
     40       1.1  wrstuden  * modification, are permitted provided that the following conditions
     41       1.1  wrstuden  * are met:
     42       1.1  wrstuden  * 1. Redistributions of source code must retain the above copyright
     43       1.1  wrstuden  *    notice, this list of conditions and the following disclaimer.
     44       1.1  wrstuden  * 2. Redistributions in binary form must reproduce the above copyright
     45       1.1  wrstuden  *    notice, this list of conditions and the following disclaimer in the
     46       1.1  wrstuden  *    documentation and/or other materials provided with the distribution.
     47       1.1  wrstuden  *
     48       1.1  wrstuden  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     49       1.1  wrstuden  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     50       1.1  wrstuden  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     51       1.1  wrstuden  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     52       1.1  wrstuden  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     53       1.1  wrstuden  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     54       1.1  wrstuden  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     55       1.1  wrstuden  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     56       1.1  wrstuden  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     57       1.1  wrstuden  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     58       1.1  wrstuden  * SUCH DAMAGE.
     59       1.1  wrstuden  *
     60       1.1  wrstuden  *	$FreeBSD: src/sys/dev/twa/twa.c,v 1.2 2004/04/02 15:09:57 des Exp $
     61       1.1  wrstuden  */
     62       1.1  wrstuden 
     63       1.1  wrstuden /*
     64       1.1  wrstuden  * 3ware driver for 9000 series storage controllers.
     65       1.1  wrstuden  *
     66       1.1  wrstuden  * Author: Vinod Kashyap
     67       1.1  wrstuden  */
     68       1.1  wrstuden 
     69       1.1  wrstuden #include <sys/cdefs.h>
     70  1.59.8.1   thorpej __KERNEL_RCSID(0, "$NetBSD: twa.c,v 1.59.8.1 2021/08/04 21:27:00 thorpej Exp $");
     71      1.41  jakllsch 
     72      1.42      matt //#define TWA_DEBUG
     73       1.1  wrstuden 
     74       1.1  wrstuden #include <sys/param.h>
     75       1.1  wrstuden #include <sys/systm.h>
     76       1.1  wrstuden #include <sys/kernel.h>
     77       1.1  wrstuden #include <sys/device.h>
     78       1.1  wrstuden #include <sys/queue.h>
     79       1.1  wrstuden #include <sys/proc.h>
     80       1.2  wrstuden #include <sys/bswap.h>
     81       1.1  wrstuden #include <sys/buf.h>
     82       1.1  wrstuden #include <sys/bufq.h>
     83       1.1  wrstuden #include <sys/endian.h>
     84       1.1  wrstuden #include <sys/malloc.h>
     85       1.1  wrstuden #include <sys/conf.h>
     86       1.1  wrstuden #include <sys/disk.h>
     87      1.13      manu #include <sys/sysctl.h>
     88       1.1  wrstuden #include <sys/syslog.h>
     89      1.54  pgoyette #include <sys/module.h>
     90      1.18        ad #include <sys/bus.h>
     91       1.1  wrstuden 
     92       1.1  wrstuden #include <dev/pci/pcireg.h>
     93       1.1  wrstuden #include <dev/pci/pcivar.h>
     94       1.1  wrstuden #include <dev/pci/pcidevs.h>
     95       1.1  wrstuden #include <dev/pci/twareg.h>
     96       1.1  wrstuden #include <dev/pci/twavar.h>
     97       1.1  wrstuden #include <dev/pci/twaio.h>
     98       1.1  wrstuden 
     99       1.1  wrstuden #include <dev/scsipi/scsipi_all.h>
    100       1.1  wrstuden #include <dev/scsipi/scsipi_disk.h>
    101       1.1  wrstuden #include <dev/scsipi/scsipiconf.h>
    102       1.1  wrstuden #include <dev/scsipi/scsi_spc.h>
    103       1.1  wrstuden 
    104       1.1  wrstuden #include <dev/ldvar.h>
    105       1.1  wrstuden 
    106       1.1  wrstuden #include "locators.h"
    107      1.54  pgoyette #include "ioconf.h"
    108       1.1  wrstuden 
    109       1.1  wrstuden #define	PCI_CBIO	0x10
    110       1.1  wrstuden 
    111       1.1  wrstuden static int	twa_fetch_aen(struct twa_softc *);
    112       1.1  wrstuden static void	twa_aen_callback(struct twa_request *);
    113       1.7    simonb static int	twa_find_aen(struct twa_softc *sc, uint16_t);
    114       1.1  wrstuden static uint16_t	twa_enqueue_aen(struct twa_softc *sc,
    115       1.1  wrstuden 			struct twa_command_header *);
    116       1.1  wrstuden 
    117      1.30    cegger static void	twa_attach(device_t, device_t, void *);
    118      1.54  pgoyette static int	twa_request_bus_scan(device_t, const char *, const int *);
    119       1.1  wrstuden static void	twa_shutdown(void *);
    120       1.7    simonb static int	twa_init_connection(struct twa_softc *, uint16_t, uint32_t,
    121      1.53   msaitoh 					uint16_t, uint16_t, uint16_t, uint16_t,
    122      1.53   msaitoh 					uint16_t *, uint16_t *, uint16_t *,
    123      1.53   msaitoh 					uint16_t *, uint32_t *);
    124       1.1  wrstuden static int	twa_intr(void *);
    125      1.30    cegger static int 	twa_match(device_t, cfdata_t, void *);
    126       1.1  wrstuden static int	twa_reset(struct twa_softc *);
    127       1.1  wrstuden 
    128       1.1  wrstuden static int	twa_print(void *, const char *);
    129       1.1  wrstuden static int	twa_soft_reset(struct twa_softc *);
    130       1.1  wrstuden 
    131       1.7    simonb static int	twa_check_ctlr_state(struct twa_softc *, uint32_t);
    132       1.1  wrstuden static int	twa_get_param(struct twa_softc *, int, int, size_t,
    133       1.1  wrstuden 				void (* callback)(struct twa_request *),
    134       1.1  wrstuden 				struct twa_param_9k **);
    135       1.1  wrstuden static int 	twa_set_param(struct twa_softc *, int, int, int, void *,
    136       1.1  wrstuden 				void (* callback)(struct twa_request *));
    137       1.1  wrstuden static void	twa_describe_controller(struct twa_softc *);
    138       1.7    simonb static int	twa_wait_status(struct twa_softc *, uint32_t, uint32_t);
    139       1.1  wrstuden static int	twa_done(struct twa_softc *);
    140       1.1  wrstuden 
    141       1.1  wrstuden extern struct	cfdriver twa_cd;
    142       1.1  wrstuden extern uint32_t twa_fw_img_size;
    143       1.1  wrstuden extern uint8_t	twa_fw_img[];
    144       1.1  wrstuden 
    145      1.54  pgoyette CFATTACH_DECL3_NEW(twa, sizeof(struct twa_softc),
    146      1.54  pgoyette     twa_match, twa_attach, NULL, NULL, twa_request_bus_scan, NULL, 0);
    147       1.1  wrstuden 
    148      1.13      manu /* FreeBSD driver revision for sysctl expected by the 3ware cli */
    149      1.13      manu const char twaver[] = "1.50.01.002";
    150      1.13      manu 
    151       1.1  wrstuden /* AEN messages. */
    152       1.1  wrstuden static const struct twa_message	twa_aen_table[] = {
    153       1.1  wrstuden 	{0x0000, "AEN queue empty"},
    154       1.1  wrstuden 	{0x0001, "Controller reset occurred"},
    155       1.1  wrstuden 	{0x0002, "Degraded unit detected"},
    156       1.1  wrstuden 	{0x0003, "Controller error occured"},
    157       1.1  wrstuden 	{0x0004, "Background rebuild failed"},
    158       1.1  wrstuden 	{0x0005, "Background rebuild done"},
    159       1.1  wrstuden 	{0x0006, "Incomplete unit detected"},
    160       1.1  wrstuden 	{0x0007, "Background initialize done"},
    161       1.1  wrstuden 	{0x0008, "Unclean shutdown detected"},
    162       1.1  wrstuden 	{0x0009, "Drive timeout detected"},
    163       1.1  wrstuden 	{0x000A, "Drive error detected"},
    164       1.1  wrstuden 	{0x000B, "Rebuild started"},
    165       1.1  wrstuden 	{0x000C, "Background initialize started"},
    166       1.1  wrstuden 	{0x000D, "Entire logical unit was deleted"},
    167       1.1  wrstuden 	{0x000E, "Background initialize failed"},
    168       1.1  wrstuden 	{0x000F, "SMART attribute exceeded threshold"},
    169       1.1  wrstuden 	{0x0010, "Power supply reported AC under range"},
    170       1.1  wrstuden 	{0x0011, "Power supply reported DC out of range"},
    171       1.1  wrstuden 	{0x0012, "Power supply reported a malfunction"},
    172       1.1  wrstuden 	{0x0013, "Power supply predicted malfunction"},
    173       1.1  wrstuden 	{0x0014, "Battery charge is below threshold"},
    174       1.1  wrstuden 	{0x0015, "Fan speed is below threshold"},
    175       1.1  wrstuden 	{0x0016, "Temperature sensor is above threshold"},
    176       1.1  wrstuden 	{0x0017, "Power supply was removed"},
    177       1.1  wrstuden 	{0x0018, "Power supply was inserted"},
    178       1.1  wrstuden 	{0x0019, "Drive was removed from a bay"},
    179       1.1  wrstuden 	{0x001A, "Drive was inserted into a bay"},
    180       1.1  wrstuden 	{0x001B, "Drive bay cover door was opened"},
    181       1.1  wrstuden 	{0x001C, "Drive bay cover door was closed"},
    182       1.1  wrstuden 	{0x001D, "Product case was opened"},
    183       1.1  wrstuden 	{0x0020, "Prepare for shutdown (power-off)"},
    184       1.1  wrstuden 	{0x0021, "Downgrade UDMA mode to lower speed"},
    185       1.1  wrstuden 	{0x0022, "Upgrade UDMA mode to higher speed"},
    186       1.1  wrstuden 	{0x0023, "Sector repair completed"},
    187       1.1  wrstuden 	{0x0024, "Sbuf memory test failed"},
    188       1.1  wrstuden 	{0x0025, "Error flushing cached write data to disk"},
    189       1.1  wrstuden 	{0x0026, "Drive reported data ECC error"},
    190       1.1  wrstuden 	{0x0027, "DCB has checksum error"},
    191       1.1  wrstuden 	{0x0028, "DCB version is unsupported"},
    192       1.1  wrstuden 	{0x0029, "Background verify started"},
    193       1.1  wrstuden 	{0x002A, "Background verify failed"},
    194       1.1  wrstuden 	{0x002B, "Background verify done"},
    195       1.1  wrstuden 	{0x002C, "Bad sector overwritten during rebuild"},
    196      1.21     joerg 	{0x002D, "Source drive error occurred"},
    197       1.1  wrstuden 	{0x002E, "Replace failed because replacement drive too small"},
    198       1.1  wrstuden 	{0x002F, "Verify failed because array was never initialized"},
    199       1.1  wrstuden 	{0x0030, "Unsupported ATA drive"},
    200       1.1  wrstuden 	{0x0031, "Synchronize host/controller time"},
    201       1.1  wrstuden 	{0x0032, "Spare capacity is inadequate for some units"},
    202       1.1  wrstuden 	{0x0033, "Background migration started"},
    203       1.1  wrstuden 	{0x0034, "Background migration failed"},
    204       1.1  wrstuden 	{0x0035, "Background migration done"},
    205       1.1  wrstuden 	{0x0036, "Verify detected and fixed data/parity mismatch"},
    206       1.1  wrstuden 	{0x0037, "SO-DIMM incompatible"},
    207       1.1  wrstuden 	{0x0038, "SO-DIMM not detected"},
    208       1.1  wrstuden 	{0x0039, "Corrected Sbuf ECC error"},
    209       1.1  wrstuden 	{0x003A, "Drive power on reset detected"},
    210       1.1  wrstuden 	{0x003B, "Background rebuild paused"},
    211       1.1  wrstuden 	{0x003C, "Background initialize paused"},
    212       1.1  wrstuden 	{0x003D, "Background verify paused"},
    213       1.1  wrstuden 	{0x003E, "Background migration paused"},
    214       1.1  wrstuden 	{0x003F, "Corrupt flash file system detected"},
    215       1.1  wrstuden 	{0x0040, "Flash file system repaired"},
    216       1.1  wrstuden 	{0x0041, "Unit number assignments were lost"},
    217       1.1  wrstuden 	{0x0042, "Error during read of primary DCB"},
    218       1.1  wrstuden 	{0x0043, "Latent error found in backup DCB"},
    219       1.1  wrstuden 	{0x0044, "Battery voltage is normal"},
    220       1.1  wrstuden 	{0x0045, "Battery voltage is low"},
    221       1.1  wrstuden 	{0x0046, "Battery voltage is high"},
    222       1.1  wrstuden 	{0x0047, "Battery voltage is too low"},
    223       1.1  wrstuden 	{0x0048, "Battery voltage is too high"},
    224       1.1  wrstuden 	{0x0049, "Battery temperature is normal"},
    225       1.1  wrstuden 	{0x004A, "Battery temperature is low"},
    226       1.1  wrstuden 	{0x004B, "Battery temperature is high"},
    227       1.1  wrstuden 	{0x004C, "Battery temperature is too low"},
    228       1.1  wrstuden 	{0x004D, "Battery temperature is too high"},
    229       1.1  wrstuden 	{0x004E, "Battery capacity test started"},
    230       1.1  wrstuden 	{0x004F, "Cache synchronization skipped"},
    231       1.1  wrstuden 	{0x0050, "Battery capacity test completed"},
    232       1.1  wrstuden 	{0x0051, "Battery health check started"},
    233       1.1  wrstuden 	{0x0052, "Battery health check completed"},
    234      1.21     joerg 	{0x0053, "Battery capacity test needed"},
    235      1.21     joerg 	{0x0054, "Battery charge termination voltage is at high level"},
    236       1.1  wrstuden 	{0x0055, "Battery charging started"},
    237       1.1  wrstuden 	{0x0056, "Battery charging completed"},
    238       1.1  wrstuden 	{0x0057, "Battery charging fault"},
    239       1.1  wrstuden 	{0x0058, "Battery capacity is below warning level"},
    240       1.1  wrstuden 	{0x0059, "Battery capacity is below error level"},
    241       1.1  wrstuden 	{0x005A, "Battery is present"},
    242       1.1  wrstuden 	{0x005B, "Battery is not present"},
    243       1.1  wrstuden 	{0x005C, "Battery is weak"},
    244       1.1  wrstuden 	{0x005D, "Battery health check failed"},
    245       1.1  wrstuden 	{0x005E, "Cache synchronized after power fail"},
    246       1.1  wrstuden 	{0x005F, "Cache synchronization failed; some data lost"},
    247       1.1  wrstuden 	{0x0060, "Bad cache meta data checksum"},
    248       1.1  wrstuden 	{0x0061, "Bad cache meta data signature"},
    249       1.1  wrstuden 	{0x0062, "Cache meta data restore failed"},
    250       1.1  wrstuden 	{0x0063, "BBU not found after power fail"},
    251       1.1  wrstuden 	{0x00FC, "Recovered/finished array membership update"},
    252       1.1  wrstuden 	{0x00FD, "Handler lockup"},
    253       1.1  wrstuden 	{0x00FE, "Retrying PCI transfer"},
    254       1.1  wrstuden 	{0x00FF, "AEN queue is full"},
    255      1.38    plunky 	{0xFFFFFFFF, NULL}
    256       1.1  wrstuden };
    257       1.1  wrstuden 
    258       1.1  wrstuden /* AEN severity table. */
    259       1.1  wrstuden static const char	*twa_aen_severity_table[] = {
    260       1.1  wrstuden 	"None",
    261       1.1  wrstuden 	"ERROR",
    262       1.1  wrstuden 	"WARNING",
    263       1.1  wrstuden 	"INFO",
    264       1.1  wrstuden 	"DEBUG",
    265      1.38    plunky 	NULL
    266       1.1  wrstuden };
    267       1.1  wrstuden 
    268      1.44     joerg #if 0
    269       1.1  wrstuden /* Error messages. */
    270       1.1  wrstuden static const struct twa_message	twa_error_table[] = {
    271       1.1  wrstuden 	{0x0100, "SGL entry contains zero data"},
    272       1.1  wrstuden 	{0x0101, "Invalid command opcode"},
    273       1.1  wrstuden 	{0x0102, "SGL entry has unaligned address"},
    274       1.1  wrstuden 	{0x0103, "SGL size does not match command"},
    275       1.1  wrstuden 	{0x0104, "SGL entry has illegal length"},
    276       1.1  wrstuden 	{0x0105, "Command packet is not aligned"},
    277       1.1  wrstuden 	{0x0106, "Invalid request ID"},
    278       1.1  wrstuden 	{0x0107, "Duplicate request ID"},
    279       1.1  wrstuden 	{0x0108, "ID not locked"},
    280       1.1  wrstuden 	{0x0109, "LBA out of range"},
    281       1.1  wrstuden 	{0x010A, "Logical unit not supported"},
    282       1.1  wrstuden 	{0x010B, "Parameter table does not exist"},
    283       1.1  wrstuden 	{0x010C, "Parameter index does not exist"},
    284       1.1  wrstuden 	{0x010D, "Invalid field in CDB"},
    285       1.1  wrstuden 	{0x010E, "Specified port has invalid drive"},
    286       1.1  wrstuden 	{0x010F, "Parameter item size mismatch"},
    287       1.1  wrstuden 	{0x0110, "Failed memory allocation"},
    288       1.1  wrstuden 	{0x0111, "Memory request too large"},
    289       1.1  wrstuden 	{0x0112, "Out of memory segments"},
    290       1.1  wrstuden 	{0x0113, "Invalid address to deallocate"},
    291       1.1  wrstuden 	{0x0114, "Out of memory"},
    292       1.1  wrstuden 	{0x0115, "Out of heap"},
    293       1.1  wrstuden 	{0x0120, "Double degrade"},
    294       1.1  wrstuden 	{0x0121, "Drive not degraded"},
    295       1.1  wrstuden 	{0x0122, "Reconstruct error"},
    296       1.1  wrstuden 	{0x0123, "Replace not accepted"},
    297       1.1  wrstuden 	{0x0124, "Replace drive capacity too small"},
    298       1.1  wrstuden 	{0x0125, "Sector count not allowed"},
    299       1.1  wrstuden 	{0x0126, "No spares left"},
    300       1.1  wrstuden 	{0x0127, "Reconstruct error"},
    301       1.1  wrstuden 	{0x0128, "Unit is offline"},
    302       1.1  wrstuden 	{0x0129, "Cannot update status to DCB"},
    303       1.1  wrstuden 	{0x0130, "Invalid stripe handle"},
    304       1.1  wrstuden 	{0x0131, "Handle that was not locked"},
    305       1.1  wrstuden 	{0x0132, "Handle that was not empy"},
    306       1.1  wrstuden 	{0x0133, "Handle has different owner"},
    307       1.1  wrstuden 	{0x0140, "IPR has parent"},
    308       1.1  wrstuden 	{0x0150, "Illegal Pbuf address alignment"},
    309       1.1  wrstuden 	{0x0151, "Illegal Pbuf transfer length"},
    310       1.1  wrstuden 	{0x0152, "Illegal Sbuf address alignment"},
    311       1.1  wrstuden 	{0x0153, "Illegal Sbuf transfer length"},
    312       1.1  wrstuden 	{0x0160, "Command packet too large"},
    313       1.1  wrstuden 	{0x0161, "SGL exceeds maximum length"},
    314       1.1  wrstuden 	{0x0162, "SGL has too many entries"},
    315       1.1  wrstuden 	{0x0170, "Insufficient resources for rebuilder"},
    316       1.1  wrstuden 	{0x0171, "Verify error (data != parity)"},
    317       1.1  wrstuden 	{0x0180, "Requested segment not in directory of this DCB"},
    318       1.1  wrstuden 	{0x0181, "DCB segment has unsupported version"},
    319       1.1  wrstuden 	{0x0182, "DCB segment has checksum error"},
    320       1.1  wrstuden 	{0x0183, "DCB support (settings) segment invalid"},
    321       1.1  wrstuden 	{0x0184, "DCB UDB (unit descriptor block) segment invalid"},
    322       1.1  wrstuden 	{0x0185, "DCB GUID (globally unique identifier) segment invalid"},
    323       1.1  wrstuden 	{0x01A0, "Could not clear Sbuf"},
    324       1.1  wrstuden 	{0x01C0, "Flash identify failed"},
    325       1.1  wrstuden 	{0x01C1, "Flash out of bounds"},
    326       1.1  wrstuden 	{0x01C2, "Flash verify error"},
    327       1.1  wrstuden 	{0x01C3, "Flash file object not found"},
    328       1.1  wrstuden 	{0x01C4, "Flash file already present"},
    329       1.1  wrstuden 	{0x01C5, "Flash file system full"},
    330       1.1  wrstuden 	{0x01C6, "Flash file not present"},
    331       1.1  wrstuden 	{0x01C7, "Flash file size error"},
    332       1.1  wrstuden 	{0x01C8, "Bad flash file checksum"},
    333       1.1  wrstuden 	{0x01CA, "Corrupt flash file system detected"},
    334       1.1  wrstuden 	{0x01D0, "Invalid field in parameter list"},
    335       1.1  wrstuden 	{0x01D1, "Parameter list length error"},
    336       1.1  wrstuden 	{0x01D2, "Parameter item is not changeable"},
    337       1.1  wrstuden 	{0x01D3, "Parameter item is not saveable"},
    338       1.1  wrstuden 	{0x0200, "UDMA CRC error"},
    339       1.1  wrstuden 	{0x0201, "Internal CRC error"},
    340       1.1  wrstuden 	{0x0202, "Data ECC error"},
    341       1.1  wrstuden 	{0x0203, "ADP level 1 error"},
    342       1.1  wrstuden 	{0x0204, "Port timeout"},
    343       1.1  wrstuden 	{0x0205, "Drive power on reset"},
    344       1.1  wrstuden 	{0x0206, "ADP level 2 error"},
    345       1.1  wrstuden 	{0x0207, "Soft reset failed"},
    346       1.1  wrstuden 	{0x0208, "Drive not ready"},
    347       1.1  wrstuden 	{0x0209, "Unclassified port error"},
    348       1.1  wrstuden 	{0x020A, "Drive aborted command"},
    349       1.1  wrstuden 	{0x0210, "Internal CRC error"},
    350       1.1  wrstuden 	{0x0211, "Host PCI bus abort"},
    351       1.1  wrstuden 	{0x0212, "Host PCI parity error"},
    352       1.1  wrstuden 	{0x0213, "Port handler error"},
    353       1.1  wrstuden 	{0x0214, "Token interrupt count error"},
    354       1.1  wrstuden 	{0x0215, "Timeout waiting for PCI transfer"},
    355       1.1  wrstuden 	{0x0216, "Corrected buffer ECC"},
    356       1.1  wrstuden 	{0x0217, "Uncorrected buffer ECC"},
    357       1.1  wrstuden 	{0x0230, "Unsupported command during flash recovery"},
    358       1.1  wrstuden 	{0x0231, "Next image buffer expected"},
    359       1.1  wrstuden 	{0x0232, "Binary image architecture incompatible"},
    360       1.1  wrstuden 	{0x0233, "Binary image has no signature"},
    361       1.1  wrstuden 	{0x0234, "Binary image has bad checksum"},
    362       1.1  wrstuden 	{0x0235, "Image downloaded overflowed buffer"},
    363       1.1  wrstuden 	{0x0240, "I2C device not found"},
    364       1.1  wrstuden 	{0x0241, "I2C transaction aborted"},
    365       1.1  wrstuden 	{0x0242, "SO-DIMM parameter(s) incompatible using defaults"},
    366       1.1  wrstuden 	{0x0243, "SO-DIMM unsupported"},
    367       1.1  wrstuden 	{0x0248, "SPI transfer status error"},
    368       1.1  wrstuden 	{0x0249, "SPI transfer timeout error"},
    369       1.1  wrstuden 	{0x0250, "Invalid unit descriptor size in CreateUnit"},
    370       1.1  wrstuden 	{0x0251, "Unit descriptor size exceeds data buffer in CreateUnit"},
    371       1.1  wrstuden 	{0x0252, "Invalid value in CreateUnit descriptor"},
    372       1.1  wrstuden 	{0x0253, "Inadequate disk space to support descriptor in CreateUnit"},
    373       1.1  wrstuden 	{0x0254, "Unable to create data channel for this unit descriptor"},
    374       1.1  wrstuden 	{0x0255, "CreateUnit descriptor specifies a drive already in use"},
    375      1.44     joerg 	{0x0256, "Unable to write configuration to all disks during CreateUnit"},
    376       1.1  wrstuden 	{0x0257, "CreateUnit does not support this descriptor version"},
    377       1.1  wrstuden 	{0x0258, "Invalid subunit for RAID 0 or 5 in CreateUnit"},
    378       1.1  wrstuden 	{0x0259, "Too many descriptors in CreateUnit"},
    379       1.1  wrstuden 	{0x025A, "Invalid configuration specified in CreateUnit descriptor"},
    380       1.1  wrstuden 	{0x025B, "Invalid LBA offset specified in CreateUnit descriptor"},
    381       1.1  wrstuden 	{0x025C, "Invalid stripelet size specified in CreateUnit descriptor"},
    382       1.1  wrstuden 	{0x0260, "SMART attribute exceeded threshold"},
    383      1.38    plunky 	{0xFFFFFFFF, NULL}
    384       1.1  wrstuden };
    385      1.44     joerg #endif
    386       1.1  wrstuden 
    387       1.1  wrstuden struct twa_pci_identity {
    388       1.1  wrstuden 	uint32_t	vendor_id;
    389       1.1  wrstuden 	uint32_t	product_id;
    390       1.1  wrstuden 	const char	*name;
    391       1.1  wrstuden };
    392       1.1  wrstuden 
    393      1.43       chs static const struct twa_pci_identity twa_pci_products[] = {
    394       1.1  wrstuden 	{ PCI_VENDOR_3WARE,
    395       1.1  wrstuden 	  PCI_PRODUCT_3WARE_9000,
    396       1.1  wrstuden 	  "3ware 9000 series",
    397       1.1  wrstuden 	},
    398       1.1  wrstuden 	{ PCI_VENDOR_3WARE,
    399       1.1  wrstuden 	  PCI_PRODUCT_3WARE_9550,
    400       1.1  wrstuden 	  "3ware 9550SX series",
    401       1.1  wrstuden 	},
    402      1.22     joerg 	{ PCI_VENDOR_3WARE,
    403      1.22     joerg 	  PCI_PRODUCT_3WARE_9650,
    404      1.22     joerg 	  "3ware 9650SE series",
    405      1.22     joerg 	},
    406      1.22     joerg 	{ PCI_VENDOR_3WARE,
    407      1.22     joerg 	  PCI_PRODUCT_3WARE_9690,
    408      1.22     joerg 	  "3ware 9690 series",
    409      1.22     joerg 	},
    410       1.1  wrstuden 	{ 0,
    411       1.1  wrstuden 	  0,
    412       1.1  wrstuden 	  NULL,
    413       1.1  wrstuden 	},
    414       1.1  wrstuden };
    415       1.1  wrstuden 
    416       1.1  wrstuden 
    417       1.1  wrstuden static inline void
    418       1.7    simonb twa_outl(struct twa_softc *sc, int off, uint32_t val)
    419       1.1  wrstuden {
    420       1.6    simonb 
    421       1.1  wrstuden 	bus_space_write_4(sc->twa_bus_iot, sc->twa_bus_ioh, off, val);
    422       1.1  wrstuden 	bus_space_barrier(sc->twa_bus_iot, sc->twa_bus_ioh, off, 4,
    423       1.1  wrstuden 	    BUS_SPACE_BARRIER_WRITE);
    424       1.1  wrstuden }
    425       1.1  wrstuden 
    426       1.7    simonb static inline uint32_t	twa_inl(struct twa_softc *sc, int off)
    427       1.1  wrstuden {
    428       1.6    simonb 
    429       1.1  wrstuden 	bus_space_barrier(sc->twa_bus_iot, sc->twa_bus_ioh, off, 4,
    430       1.1  wrstuden 	    BUS_SPACE_BARRIER_WRITE | BUS_SPACE_BARRIER_READ);
    431       1.1  wrstuden 	return (bus_space_read_4(sc->twa_bus_iot, sc->twa_bus_ioh, off));
    432       1.1  wrstuden }
    433       1.1  wrstuden 
    434       1.1  wrstuden void
    435       1.1  wrstuden twa_request_wait_handler(struct twa_request *tr)
    436       1.1  wrstuden {
    437       1.6    simonb 
    438       1.1  wrstuden 	wakeup(tr);
    439       1.1  wrstuden }
    440       1.1  wrstuden 
    441      1.43       chs static const struct twa_pci_identity *
    442      1.43       chs twa_lookup(pcireg_t id)
    443      1.43       chs {
    444      1.43       chs 	const struct twa_pci_identity *entry;
    445      1.43       chs 	int i;
    446      1.43       chs 
    447      1.43       chs 	for (i = 0; i < __arraycount(twa_pci_products); i++) {
    448      1.43       chs 		entry = &twa_pci_products[i];
    449      1.43       chs 		if (entry->vendor_id == PCI_VENDOR(id) &&
    450      1.43       chs 		    entry->product_id == PCI_PRODUCT(id)) {
    451      1.43       chs 			return entry;
    452      1.43       chs 		}
    453      1.43       chs 	}
    454      1.43       chs 	return NULL;
    455      1.43       chs }
    456      1.43       chs 
    457       1.1  wrstuden static int
    458      1.43       chs twa_match(device_t parent, cfdata_t cfdata, void *aux)
    459       1.1  wrstuden {
    460       1.1  wrstuden 	struct pci_attach_args *pa = aux;
    461      1.43       chs 	const struct twa_pci_identity *entry;
    462       1.1  wrstuden 
    463      1.43       chs 	entry = twa_lookup(pa->pa_id);
    464      1.43       chs 	if (entry != NULL) {
    465      1.43       chs 		return 1;
    466       1.1  wrstuden 	}
    467       1.1  wrstuden 	return (0);
    468       1.1  wrstuden }
    469       1.1  wrstuden 
    470       1.1  wrstuden static const char *
    471       1.7    simonb twa_find_msg_string(const struct twa_message *table, uint16_t code)
    472       1.1  wrstuden {
    473       1.1  wrstuden 	int	i;
    474       1.1  wrstuden 
    475       1.1  wrstuden 	for (i = 0; table[i].message != NULL; i++)
    476       1.1  wrstuden 		if (table[i].code == code)
    477       1.1  wrstuden 			return(table[i].message);
    478       1.1  wrstuden 
    479       1.1  wrstuden 	return(table[i].message);
    480       1.1  wrstuden }
    481       1.1  wrstuden 
    482       1.1  wrstuden void
    483       1.1  wrstuden twa_release_request(struct twa_request *tr)
    484       1.1  wrstuden {
    485       1.1  wrstuden 	int s;
    486       1.1  wrstuden 	struct twa_softc *sc;
    487       1.1  wrstuden 
    488       1.1  wrstuden 	sc = tr->tr_sc;
    489       1.1  wrstuden 
    490       1.1  wrstuden 	if ((tr->tr_flags & TWA_CMD_AEN) == 0) {
    491       1.1  wrstuden 		s = splbio();
    492       1.1  wrstuden 		TAILQ_INSERT_TAIL(&tr->tr_sc->twa_free, tr, tr_link);
    493       1.1  wrstuden 		splx(s);
    494       1.1  wrstuden 		if (__predict_false((tr->tr_sc->twa_sc_flags &
    495       1.1  wrstuden 		    TWA_STATE_REQUEST_WAIT) != 0)) {
    496       1.1  wrstuden 			tr->tr_sc->twa_sc_flags &= ~TWA_STATE_REQUEST_WAIT;
    497       1.1  wrstuden 			wakeup(&sc->twa_free);
    498       1.1  wrstuden 		}
    499       1.1  wrstuden 	} else
    500       1.1  wrstuden 		tr->tr_flags &= ~TWA_CMD_AEN_BUSY;
    501       1.1  wrstuden }
    502       1.1  wrstuden 
    503       1.1  wrstuden static void
    504       1.1  wrstuden twa_unmap_request(struct twa_request *tr)
    505       1.1  wrstuden {
    506       1.1  wrstuden 	struct twa_softc	*sc = tr->tr_sc;
    507       1.7    simonb 	uint8_t			cmd_status;
    508       1.9    bouyer 	int s;
    509       1.1  wrstuden 
    510       1.1  wrstuden 	/* If the command involved data, unmap that too. */
    511       1.1  wrstuden 	if (tr->tr_data != NULL) {
    512       1.1  wrstuden 		if (tr->tr_cmd_pkt_type & TWA_CMD_PKT_TYPE_9K)
    513       1.1  wrstuden 			cmd_status = tr->tr_command->command.cmd_pkt_9k.status;
    514       1.1  wrstuden 		else
    515       1.1  wrstuden 			cmd_status =
    516       1.1  wrstuden 			      tr->tr_command->command.cmd_pkt_7k.generic.status;
    517       1.1  wrstuden 
    518       1.1  wrstuden 		if (tr->tr_flags & TWA_CMD_DATA_OUT) {
    519       1.1  wrstuden 			bus_dmamap_sync(tr->tr_sc->twa_dma_tag, tr->tr_dma_map,
    520       1.1  wrstuden 				0, tr->tr_length, BUS_DMASYNC_POSTREAD);
    521       1.1  wrstuden 			/*
    522       1.1  wrstuden 			 * If we are using a bounce buffer, and we are reading
    523       1.1  wrstuden 			 * data, copy the real data in.
    524       1.1  wrstuden 			 */
    525       1.1  wrstuden 			if (tr->tr_flags & TWA_CMD_DATA_COPY_NEEDED)
    526       1.1  wrstuden 				if (cmd_status == 0)
    527       1.1  wrstuden 					memcpy(tr->tr_real_data, tr->tr_data,
    528       1.1  wrstuden 						tr->tr_real_length);
    529       1.1  wrstuden 		}
    530       1.1  wrstuden 		if (tr->tr_flags & TWA_CMD_DATA_IN)
    531       1.1  wrstuden 			bus_dmamap_sync(tr->tr_sc->twa_dma_tag, tr->tr_dma_map,
    532       1.1  wrstuden 				0, tr->tr_length, BUS_DMASYNC_POSTWRITE);
    533       1.1  wrstuden 
    534       1.1  wrstuden 		bus_dmamap_unload(sc->twa_dma_tag, tr->tr_dma_map);
    535       1.1  wrstuden 	}
    536       1.1  wrstuden 
    537       1.1  wrstuden 	/* Free alignment buffer if it was used. */
    538       1.1  wrstuden 	if (tr->tr_flags & TWA_CMD_DATA_COPY_NEEDED) {
    539       1.9    bouyer 		s = splvm();
    540      1.39      para 		uvm_km_kmem_free(kmem_va_arena, (vaddr_t)tr->tr_data,
    541      1.39      para 		    tr->tr_length);
    542       1.9    bouyer 		splx(s);
    543       1.1  wrstuden 		tr->tr_data = tr->tr_real_data;
    544       1.1  wrstuden 		tr->tr_length = tr->tr_real_length;
    545       1.1  wrstuden 	}
    546       1.1  wrstuden }
    547       1.1  wrstuden 
    548       1.1  wrstuden /*
    549       1.1  wrstuden  * Function name:	twa_wait_request
    550       1.1  wrstuden  * Description:		Sends down a firmware cmd, and waits for the completion,
    551       1.1  wrstuden  *			but NOT in a tight loop.
    552       1.1  wrstuden  *
    553       1.1  wrstuden  * Input:		tr	-- ptr to request pkt
    554       1.1  wrstuden  *			timeout -- max # of seconds to wait before giving up
    555       1.1  wrstuden  * Output:		None
    556       1.1  wrstuden  * Return value:	0	-- success
    557       1.1  wrstuden  *			non-zero-- failure
    558       1.1  wrstuden  */
    559       1.1  wrstuden static int
    560       1.7    simonb twa_wait_request(struct twa_request *tr, uint32_t timeout)
    561       1.1  wrstuden {
    562       1.1  wrstuden 	time_t	end_time;
    563       1.1  wrstuden 	struct timeval	t1;
    564       1.8  wrstuden 	int	s, rv;
    565       1.1  wrstuden 
    566       1.1  wrstuden 	tr->tr_flags |= TWA_CMD_SLEEP_ON_REQUEST;
    567       1.1  wrstuden 	tr->tr_callback = twa_request_wait_handler;
    568       1.1  wrstuden 	tr->tr_status = TWA_CMD_BUSY;
    569       1.1  wrstuden 
    570       1.8  wrstuden 	rv = twa_map_request(tr);
    571       1.8  wrstuden 
    572       1.8  wrstuden 	if (rv != 0)
    573       1.8  wrstuden 		return (rv);
    574       1.1  wrstuden 
    575       1.1  wrstuden 	microtime(&t1);
    576       1.1  wrstuden 	end_time = t1.tv_usec +
    577       1.1  wrstuden 		(timeout * 1000 * 100);
    578       1.1  wrstuden 
    579       1.1  wrstuden 	while (tr->tr_status != TWA_CMD_COMPLETE) {
    580       1.8  wrstuden 		rv = tr->tr_error;
    581       1.8  wrstuden 		if (rv != 0)
    582       1.8  wrstuden 			return(rv);
    583       1.8  wrstuden 		if ((rv = tsleep(tr, PRIBIO, "twawait", timeout * hz)) == 0)
    584       1.1  wrstuden 			break;
    585       1.8  wrstuden 
    586       1.8  wrstuden 		if (rv == EWOULDBLOCK) {
    587       1.1  wrstuden 			/*
    588       1.1  wrstuden 			 * We will reset the controller only if the request has
    589       1.1  wrstuden 			 * already been submitted, so as to not lose the
    590       1.1  wrstuden 			 * request packet.  If a busy request timed out, the
    591       1.1  wrstuden 			 * reset will take care of freeing resources.  If a
    592       1.1  wrstuden 			 * pending request timed out, we will free resources
    593       1.1  wrstuden 			 * for that request, right here.  So, the caller is
    594       1.1  wrstuden 			 * expected to NOT cleanup when ETIMEDOUT is returned.
    595       1.1  wrstuden 			 */
    596       1.8  wrstuden 			if (tr->tr_status == TWA_CMD_BUSY)
    597       1.1  wrstuden 				twa_reset(tr->tr_sc);
    598       1.1  wrstuden 			else {
    599       1.1  wrstuden 				/* Request was never submitted.  Clean up. */
    600       1.1  wrstuden 				s = splbio();
    601       1.6    simonb 				TAILQ_REMOVE(&tr->tr_sc->twa_pending, tr,
    602       1.6    simonb 				    tr_link);
    603       1.1  wrstuden 				splx(s);
    604       1.1  wrstuden 
    605       1.1  wrstuden 				twa_unmap_request(tr);
    606       1.1  wrstuden 				if (tr->tr_data)
    607       1.1  wrstuden 					free(tr->tr_data, M_DEVBUF);
    608       1.1  wrstuden 
    609       1.1  wrstuden 				twa_release_request(tr);
    610       1.1  wrstuden 			}
    611       1.1  wrstuden 			return(ETIMEDOUT);
    612       1.1  wrstuden 		}
    613       1.1  wrstuden 		/*
    614       1.1  wrstuden 		 * Either the request got completed, or we were woken up by a
    615       1.8  wrstuden 		 * signal. Calculate the new timeout, in case it was the
    616       1.6    simonb 		 * latter.
    617       1.1  wrstuden 		 */
    618       1.1  wrstuden 		microtime(&t1);
    619       1.1  wrstuden 
    620       1.1  wrstuden 		timeout = (end_time - t1.tv_usec) / (1000 * 100);
    621       1.1  wrstuden 	}
    622       1.8  wrstuden 	return(rv);
    623       1.1  wrstuden }
    624       1.1  wrstuden 
    625       1.1  wrstuden /*
    626       1.1  wrstuden  * Function name:	twa_immediate_request
    627       1.1  wrstuden  * Description:		Sends down a firmware cmd, and waits for the completion
    628       1.1  wrstuden  *			in a tight loop.
    629       1.1  wrstuden  *
    630       1.1  wrstuden  * Input:		tr	-- ptr to request pkt
    631       1.1  wrstuden  *			timeout -- max # of seconds to wait before giving up
    632       1.1  wrstuden  * Output:		None
    633       1.1  wrstuden  * Return value:	0	-- success
    634       1.1  wrstuden  *			non-zero-- failure
    635       1.1  wrstuden  */
    636       1.1  wrstuden static int
    637       1.7    simonb twa_immediate_request(struct twa_request *tr, uint32_t timeout)
    638       1.1  wrstuden {
    639       1.1  wrstuden 	struct timeval t1;
    640       1.8  wrstuden 	int	s = 0, rv = 0;
    641       1.1  wrstuden 
    642       1.8  wrstuden 	rv = twa_map_request(tr);
    643       1.8  wrstuden 
    644       1.8  wrstuden 	if (rv != 0)
    645       1.8  wrstuden 		return(rv);
    646       1.1  wrstuden 
    647       1.1  wrstuden 	timeout = (timeout * 10000 * 10);
    648       1.1  wrstuden 
    649       1.1  wrstuden 	microtime(&t1);
    650       1.1  wrstuden 
    651       1.1  wrstuden 	timeout += t1.tv_usec;
    652       1.1  wrstuden 
    653       1.1  wrstuden 	do {
    654       1.8  wrstuden 		rv = tr->tr_error;
    655       1.8  wrstuden 		if (rv != 0)
    656       1.8  wrstuden 			return(rv);
    657       1.8  wrstuden 		s = splbio();
    658       1.1  wrstuden 		twa_done(tr->tr_sc);
    659       1.8  wrstuden 		splx(s);
    660       1.8  wrstuden 		if (tr->tr_status == TWA_CMD_COMPLETE)
    661       1.8  wrstuden 			return(rv);
    662       1.1  wrstuden 		microtime(&t1);
    663       1.1  wrstuden 	} while (t1.tv_usec <= timeout);
    664       1.1  wrstuden 
    665       1.1  wrstuden 	/*
    666       1.1  wrstuden 	 * We will reset the controller only if the request has
    667       1.1  wrstuden 	 * already been submitted, so as to not lose the
    668       1.1  wrstuden 	 * request packet.  If a busy request timed out, the
    669       1.1  wrstuden 	 * reset will take care of freeing resources.  If a
    670       1.1  wrstuden 	 * pending request timed out, we will free resources
    671       1.1  wrstuden 	 * for that request, right here.  So, the caller is
    672       1.1  wrstuden 	 * expected to NOT cleanup when ETIMEDOUT is returned.
    673       1.1  wrstuden 	 */
    674       1.8  wrstuden 	rv = ETIMEDOUT;
    675       1.8  wrstuden 
    676       1.8  wrstuden 	if (tr->tr_status == TWA_CMD_BUSY)
    677       1.1  wrstuden 		twa_reset(tr->tr_sc);
    678       1.1  wrstuden 	else {
    679       1.1  wrstuden 		/* Request was never submitted.  Clean up. */
    680       1.1  wrstuden 		s = splbio();
    681       1.1  wrstuden 		TAILQ_REMOVE(&tr->tr_sc->twa_pending, tr, tr_link);
    682       1.1  wrstuden 		splx(s);
    683       1.1  wrstuden 		twa_unmap_request(tr);
    684       1.1  wrstuden 		if (tr->tr_data)
    685       1.1  wrstuden 			free(tr->tr_data, M_DEVBUF);
    686       1.1  wrstuden 
    687       1.1  wrstuden 		twa_release_request(tr);
    688       1.1  wrstuden 	}
    689       1.8  wrstuden 	return (rv);
    690       1.1  wrstuden }
    691       1.1  wrstuden 
    692       1.1  wrstuden static int
    693       1.1  wrstuden twa_inquiry(struct twa_request *tr, int lunid)
    694       1.1  wrstuden {
    695       1.1  wrstuden 	int error;
    696       1.1  wrstuden 	struct twa_command_9k *tr_9k_cmd;
    697       1.1  wrstuden 
    698       1.1  wrstuden 	if (tr->tr_data == NULL)
    699       1.1  wrstuden 		return (ENOMEM);
    700       1.1  wrstuden 
    701       1.1  wrstuden 	memset(tr->tr_data, 0, TWA_SECTOR_SIZE);
    702       1.1  wrstuden 
    703       1.1  wrstuden 	tr->tr_length = TWA_SECTOR_SIZE;
    704       1.1  wrstuden 	tr->tr_cmd_pkt_type = TWA_CMD_PKT_TYPE_9K;
    705      1.22     joerg 	tr->tr_flags |= TWA_CMD_DATA_IN | TWA_CMD_DATA_OUT;
    706       1.1  wrstuden 
    707       1.1  wrstuden 	tr_9k_cmd = &tr->tr_command->command.cmd_pkt_9k;
    708       1.1  wrstuden 
    709       1.1  wrstuden 	tr_9k_cmd->command.opcode = TWA_OP_EXECUTE_SCSI_COMMAND;
    710       1.1  wrstuden 	tr_9k_cmd->unit = lunid;
    711       1.1  wrstuden 	tr_9k_cmd->request_id = tr->tr_request_id;
    712       1.1  wrstuden 	tr_9k_cmd->status = 0;
    713       1.1  wrstuden 	tr_9k_cmd->sgl_offset = 16;
    714       1.1  wrstuden 	tr_9k_cmd->sgl_entries = 1;
    715       1.1  wrstuden 	/* create the CDB here */
    716       1.1  wrstuden 	tr_9k_cmd->cdb[0] = INQUIRY;
    717       1.1  wrstuden 	tr_9k_cmd->cdb[1] = ((lunid << 5) & 0x0e);
    718       1.1  wrstuden 	tr_9k_cmd->cdb[4] = 255;
    719       1.1  wrstuden 
    720       1.1  wrstuden 	/* XXXX setup page data no lun device
    721       1.1  wrstuden 	 * it seems 9000 series does not indicate
    722       1.1  wrstuden 	 * NOTPRESENT - need more investigation
    723       1.1  wrstuden 	 */
    724       1.1  wrstuden 	((struct scsipi_inquiry_data *)tr->tr_data)->device =
    725       1.1  wrstuden 		SID_QUAL_LU_NOTPRESENT;
    726       1.1  wrstuden 
    727       1.1  wrstuden 	error = twa_immediate_request(tr, TWA_REQUEST_TIMEOUT_PERIOD);
    728       1.8  wrstuden 	if (error != 0)
    729       1.8  wrstuden 		return (error);
    730       1.8  wrstuden 
    731       1.1  wrstuden 	if (((struct scsipi_inquiry_data *)tr->tr_data)->device ==
    732       1.1  wrstuden 		SID_QUAL_LU_NOTPRESENT)
    733       1.1  wrstuden 		error = 1;
    734       1.1  wrstuden 
    735       1.1  wrstuden 	return (error);
    736       1.1  wrstuden }
    737       1.1  wrstuden 
    738       1.1  wrstuden static int
    739       1.6    simonb twa_print_inquiry_data(struct twa_softc *sc, struct scsipi_inquiry_data *scsipi)
    740       1.1  wrstuden {
    741       1.6    simonb 
    742      1.41  jakllsch     printf("%s: %s\n", device_xname(sc->twa_dv), scsipi->vendor);
    743       1.1  wrstuden 
    744       1.1  wrstuden     return (1);
    745       1.1  wrstuden }
    746       1.1  wrstuden 
    747       1.1  wrstuden 
    748       1.1  wrstuden static uint64_t
    749       1.1  wrstuden twa_read_capacity(struct twa_request *tr, int lunid)
    750       1.1  wrstuden {
    751       1.1  wrstuden 	int error;
    752       1.1  wrstuden 	struct twa_command_9k *tr_9k_cmd;
    753       1.1  wrstuden 	uint64_t array_size = 0LL;
    754       1.1  wrstuden 
    755       1.1  wrstuden 	if (tr->tr_data == NULL)
    756       1.1  wrstuden 		return (ENOMEM);
    757       1.1  wrstuden 
    758       1.1  wrstuden 	memset(tr->tr_data, 0, TWA_SECTOR_SIZE);
    759       1.1  wrstuden 
    760       1.1  wrstuden 	tr->tr_length = TWA_SECTOR_SIZE;
    761       1.1  wrstuden 	tr->tr_cmd_pkt_type = TWA_CMD_PKT_TYPE_9K;
    762       1.1  wrstuden 	tr->tr_flags |= TWA_CMD_DATA_OUT;
    763       1.1  wrstuden 
    764       1.1  wrstuden 	tr_9k_cmd = &tr->tr_command->command.cmd_pkt_9k;
    765       1.1  wrstuden 
    766       1.1  wrstuden 	tr_9k_cmd->command.opcode = TWA_OP_EXECUTE_SCSI_COMMAND;
    767       1.1  wrstuden 	tr_9k_cmd->unit = lunid;
    768       1.1  wrstuden 	tr_9k_cmd->request_id = tr->tr_request_id;
    769       1.1  wrstuden 	tr_9k_cmd->status = 0;
    770       1.1  wrstuden 	tr_9k_cmd->sgl_offset = 16;
    771       1.1  wrstuden 	tr_9k_cmd->sgl_entries = 1;
    772       1.1  wrstuden 	/* create the CDB here */
    773       1.1  wrstuden 	tr_9k_cmd->cdb[0] = READ_CAPACITY_16;
    774       1.1  wrstuden 	tr_9k_cmd->cdb[1] = ((lunid << 5) & 0x0e) | SRC16_SERVICE_ACTION;
    775       1.1  wrstuden 
    776       1.1  wrstuden 	error = twa_immediate_request(tr, TWA_REQUEST_TIMEOUT_PERIOD);
    777       1.8  wrstuden 
    778       1.8  wrstuden 	if (error == 0) {
    779       1.1  wrstuden #if BYTE_ORDER == BIG_ENDIAN
    780       1.8  wrstuden 		array_size = bswap64(_8btol(
    781      1.55  pgoyette 		    ((struct scsipi_read_capacity_16_data *)tr->tr_data)->addr) + 1);
    782       1.1  wrstuden #else
    783       1.8  wrstuden 		array_size = _8btol(((struct scsipi_read_capacity_16_data *)
    784       1.1  wrstuden 				tr->tr_data)->addr) + 1;
    785       1.1  wrstuden #endif
    786       1.8  wrstuden 	}
    787       1.1  wrstuden 	return (array_size);
    788       1.1  wrstuden }
    789       1.1  wrstuden 
    790       1.1  wrstuden static int
    791       1.1  wrstuden twa_request_sense(struct twa_request *tr, int lunid)
    792       1.1  wrstuden {
    793       1.1  wrstuden 	int error = 1;
    794       1.1  wrstuden 	struct twa_command_9k *tr_9k_cmd;
    795       1.1  wrstuden 
    796       1.1  wrstuden 	if (tr->tr_data == NULL)
    797       1.1  wrstuden 		return (error);
    798       1.1  wrstuden 
    799       1.1  wrstuden 	memset(tr->tr_data, 0, TWA_SECTOR_SIZE);
    800       1.1  wrstuden 
    801       1.1  wrstuden 	tr->tr_length = TWA_SECTOR_SIZE;
    802       1.1  wrstuden 	tr->tr_cmd_pkt_type = TWA_CMD_PKT_TYPE_9K;
    803       1.1  wrstuden 	tr->tr_flags |= TWA_CMD_DATA_OUT;
    804       1.1  wrstuden 
    805       1.1  wrstuden 	tr_9k_cmd = &tr->tr_command->command.cmd_pkt_9k;
    806       1.1  wrstuden 
    807       1.1  wrstuden 	tr_9k_cmd->command.opcode = TWA_OP_EXECUTE_SCSI_COMMAND;
    808       1.1  wrstuden 	tr_9k_cmd->unit = lunid;
    809       1.1  wrstuden 	tr_9k_cmd->request_id = tr->tr_request_id;
    810       1.1  wrstuden 	tr_9k_cmd->status = 0;
    811       1.1  wrstuden 	tr_9k_cmd->sgl_offset = 16;
    812       1.1  wrstuden 	tr_9k_cmd->sgl_entries = 1;
    813       1.1  wrstuden 	/* create the CDB here */
    814       1.1  wrstuden 	tr_9k_cmd->cdb[0] = SCSI_REQUEST_SENSE;
    815       1.1  wrstuden 	tr_9k_cmd->cdb[1] = ((lunid << 5) & 0x0e);
    816       1.1  wrstuden 	tr_9k_cmd->cdb[4] = 255;
    817       1.1  wrstuden 
    818       1.1  wrstuden 	/*XXX AEN notification called in interrupt context
    819       1.1  wrstuden 	 * so just queue the request. Return as quickly
    820       1.1  wrstuden 	 * as possible from interrupt
    821       1.1  wrstuden 	 */
    822       1.1  wrstuden 	if ((tr->tr_flags & TWA_CMD_AEN) != 0)
    823       1.1  wrstuden 		error = twa_map_request(tr);
    824       1.1  wrstuden  	else
    825       1.1  wrstuden 		error = twa_immediate_request(tr, TWA_REQUEST_TIMEOUT_PERIOD);
    826       1.1  wrstuden 
    827       1.1  wrstuden 	return (error);
    828       1.1  wrstuden }
    829       1.1  wrstuden 
    830       1.1  wrstuden static int
    831       1.1  wrstuden twa_alloc_req_pkts(struct twa_softc *sc, int num_reqs)
    832       1.1  wrstuden {
    833       1.1  wrstuden 	struct twa_request	*tr;
    834       1.1  wrstuden 	struct twa_command_packet *tc;
    835       1.1  wrstuden 	bus_dma_segment_t	seg;
    836       1.1  wrstuden 	size_t max_segs, max_xfer;
    837       1.1  wrstuden 	int	i, rv, rseg, size;
    838       1.1  wrstuden 
    839      1.58       chs 	sc->sc_units = malloc(sc->sc_nunits *
    840      1.58       chs 	    sizeof(struct twa_drive), M_DEVBUF, M_WAITOK | M_ZERO);
    841      1.58       chs 	sc->twa_req_buf = malloc(num_reqs * sizeof(struct twa_request),
    842      1.58       chs 	    M_DEVBUF, M_WAITOK);
    843       1.1  wrstuden 
    844       1.1  wrstuden 	size = num_reqs * sizeof(struct twa_command_packet);
    845       1.1  wrstuden 
    846       1.1  wrstuden 	/* Allocate memory for cmd pkts. */
    847       1.1  wrstuden 	if ((rv = bus_dmamem_alloc(sc->twa_dma_tag,
    848       1.1  wrstuden 		size, PAGE_SIZE, 0, &seg,
    849       1.1  wrstuden 		1, &rseg, BUS_DMA_NOWAIT)) != 0){
    850      1.41  jakllsch 			aprint_error_dev(sc->twa_dv, "unable to allocate "
    851      1.19    cegger 				"command packets, rv = %d\n", rv);
    852       1.1  wrstuden 			return (ENOMEM);
    853       1.1  wrstuden 	}
    854       1.1  wrstuden 
    855       1.1  wrstuden 	if ((rv = bus_dmamem_map(sc->twa_dma_tag,
    856      1.17  christos 		&seg, rseg, size, (void **)&sc->twa_cmds,
    857       1.1  wrstuden 		BUS_DMA_NOWAIT | BUS_DMA_COHERENT)) != 0) {
    858      1.53   msaitoh 			aprint_error_dev(sc->twa_dv,
    859      1.53   msaitoh 			    "unable to map commands, rv = %d\n", rv);
    860       1.1  wrstuden 			return (1);
    861       1.1  wrstuden 	}
    862       1.1  wrstuden 
    863       1.1  wrstuden 	if ((rv = bus_dmamap_create(sc->twa_dma_tag,
    864       1.1  wrstuden 		size, num_reqs, size,
    865       1.1  wrstuden 		0, BUS_DMA_NOWAIT, &sc->twa_cmd_map)) != 0) {
    866      1.53   msaitoh 			aprint_error_dev(sc->twa_dv,
    867      1.53   msaitoh 			    "unable to create command DMA map, "
    868      1.19    cegger 				"rv = %d\n", rv);
    869       1.1  wrstuden 			return (ENOMEM);
    870       1.1  wrstuden 	}
    871       1.1  wrstuden 
    872       1.1  wrstuden 	if ((rv = bus_dmamap_load(sc->twa_dma_tag, sc->twa_cmd_map,
    873       1.1  wrstuden 		sc->twa_cmds, size, NULL,
    874       1.1  wrstuden 		BUS_DMA_NOWAIT)) != 0) {
    875      1.53   msaitoh 			aprint_error_dev(sc->twa_dv,
    876      1.53   msaitoh 			    "unable to load command DMA map, rv = %d\n", rv);
    877       1.1  wrstuden 			return (1);
    878       1.1  wrstuden 	}
    879       1.1  wrstuden 
    880       1.1  wrstuden 	if ((uintptr_t)sc->twa_cmds % TWA_ALIGNMENT) {
    881      1.53   msaitoh 		aprint_error_dev(sc->twa_dv,
    882      1.53   msaitoh 		    "DMA map memory not aligned on %d boundary\n",
    883      1.53   msaitoh 		    TWA_ALIGNMENT);
    884       1.1  wrstuden 
    885       1.1  wrstuden 		return (1);
    886       1.1  wrstuden 	}
    887       1.1  wrstuden 	tc = sc->twa_cmd_pkt_buf = (struct twa_command_packet *)sc->twa_cmds;
    888       1.1  wrstuden 	sc->twa_cmd_pkt_phys = sc->twa_cmd_map->dm_segs[0].ds_addr;
    889       1.1  wrstuden 
    890       1.1  wrstuden 	memset(sc->twa_req_buf, 0, num_reqs * sizeof(struct twa_request));
    891       1.1  wrstuden 	memset(sc->twa_cmd_pkt_buf, 0,
    892       1.1  wrstuden 		num_reqs * sizeof(struct twa_command_packet));
    893       1.1  wrstuden 
    894       1.1  wrstuden 	sc->sc_twa_request = sc->twa_req_buf;
    895       1.1  wrstuden 	max_segs = twa_get_maxsegs();
    896       1.1  wrstuden 	max_xfer = twa_get_maxxfer(max_segs);
    897       1.1  wrstuden 
    898       1.1  wrstuden 	for (i = 0; i < num_reqs; i++, tc++) {
    899       1.1  wrstuden 		tr = &(sc->twa_req_buf[i]);
    900       1.1  wrstuden 		tr->tr_command = tc;
    901       1.1  wrstuden 		tr->tr_cmd_phys = sc->twa_cmd_pkt_phys +
    902       1.1  wrstuden 				(i * sizeof(struct twa_command_packet));
    903       1.1  wrstuden 		tr->tr_request_id = i;
    904       1.1  wrstuden 		tr->tr_sc = sc;
    905       1.1  wrstuden 
    906       1.1  wrstuden 		/*
    907       1.1  wrstuden 		 * Create a map for data buffers.  maxsize (256 * 1024) used in
    908       1.1  wrstuden 		 * bus_dma_tag_create above should suffice the bounce page needs
    909       1.1  wrstuden 		 * for data buffers, since the max I/O size we support is 128KB.
    910       1.1  wrstuden 		 * If we supported I/O's bigger than 256KB, we would have to
    911       1.1  wrstuden 		 * create a second dma_tag, with the appropriate maxsize.
    912       1.1  wrstuden 		 */
    913       1.1  wrstuden 		if ((rv = bus_dmamap_create(sc->twa_dma_tag,
    914       1.1  wrstuden 			max_xfer, max_segs, 1, 0, BUS_DMA_NOWAIT,
    915       1.1  wrstuden 			&tr->tr_dma_map)) != 0) {
    916      1.53   msaitoh 				aprint_error_dev(sc->twa_dv,
    917      1.53   msaitoh 				    "unable to create command DMA map, "
    918      1.53   msaitoh 				    "rv = %d\n", rv);
    919       1.1  wrstuden 				return (ENOMEM);
    920       1.1  wrstuden 		}
    921       1.1  wrstuden 		/* Insert request into the free queue. */
    922       1.1  wrstuden 		if (i != 0) {
    923       1.1  wrstuden 			sc->twa_lookup[i] = tr;
    924       1.1  wrstuden 			twa_release_request(tr);
    925       1.1  wrstuden 		} else
    926       1.1  wrstuden 			tr->tr_flags |= TWA_CMD_AEN;
    927       1.1  wrstuden 	}
    928       1.1  wrstuden 	return(0);
    929       1.1  wrstuden }
    930       1.1  wrstuden 
    931       1.1  wrstuden static void
    932       1.1  wrstuden twa_recompute_openings(struct twa_softc *sc)
    933       1.1  wrstuden {
    934       1.1  wrstuden 	struct twa_drive *td;
    935       1.1  wrstuden 	int unit;
    936       1.1  wrstuden 	int openings;
    937      1.21     joerg 	uint64_t total_size;
    938      1.21     joerg 
    939      1.21     joerg 	total_size = 0;
    940      1.21     joerg 	for (unit = 0; unit < sc->sc_nunits; unit++) {
    941      1.21     joerg 		td = &sc->sc_units[unit];
    942      1.21     joerg 		total_size += td->td_size;
    943      1.21     joerg 	}
    944       1.1  wrstuden 
    945      1.21     joerg 	for (unit = 0; unit < sc->sc_nunits; unit++) {
    946      1.21     joerg 		td = &sc->sc_units[unit];
    947      1.21     joerg 		/*
    948      1.21     joerg 		 * In theory, TWA_Q_LENGTH - 1 should be usable, but
    949      1.21     joerg 		 * keep one additional ccb for internal commands.
    950      1.21     joerg 		 * This makes the controller more reliable under load.
    951      1.21     joerg 		 */
    952      1.21     joerg 		if (total_size > 0) {
    953      1.53   msaitoh 			openings = (TWA_Q_LENGTH - 2) * td->td_size
    954      1.53   msaitoh 			    / total_size;
    955      1.21     joerg 		} else
    956      1.21     joerg 			openings = 0;
    957      1.21     joerg 
    958      1.21     joerg 		if (openings == td->td_openings)
    959      1.21     joerg 			continue;
    960      1.21     joerg 		td->td_openings = openings;
    961       1.1  wrstuden 
    962       1.1  wrstuden #ifdef TWA_DEBUG
    963      1.21     joerg 		printf("%s: unit %d openings %d\n",
    964      1.41  jakllsch 				device_xname(sc->twa_dv), unit, openings);
    965       1.1  wrstuden #endif
    966       1.1  wrstuden 		if (td->td_dev != NULL)
    967      1.53   msaitoh 			(*td->td_callbacks->tcb_openings)(td->td_dev,
    968      1.53   msaitoh 			    td->td_openings);
    969       1.1  wrstuden 	}
    970       1.1  wrstuden }
    971       1.1  wrstuden 
    972      1.54  pgoyette /* ARGSUSED */
    973       1.1  wrstuden static int
    974      1.54  pgoyette twa_request_bus_scan(device_t self, const char *attr, const int *flags)
    975       1.1  wrstuden {
    976      1.54  pgoyette 	struct twa_softc *sc = device_private(self);
    977       1.1  wrstuden 	struct twa_drive *td;
    978       1.1  wrstuden 	struct twa_request *tr;
    979       1.1  wrstuden 	struct twa_attach_args twaa;
    980       1.2  wrstuden 	int locs[TWACF_NLOCS];
    981       1.1  wrstuden 	int s, unit;
    982       1.1  wrstuden 
    983       1.1  wrstuden 	s = splbio();
    984      1.21     joerg 	for (unit = 0; unit < sc->sc_nunits; unit++) {
    985       1.1  wrstuden 
    986       1.1  wrstuden 		if ((tr = twa_get_request(sc, 0)) == NULL) {
    987       1.1  wrstuden 			splx(s);
    988       1.1  wrstuden 			return (EIO);
    989       1.1  wrstuden 		}
    990       1.1  wrstuden 
    991       1.1  wrstuden 		tr->tr_cmd_pkt_type |= TWA_CMD_PKT_TYPE_INTERNAL;
    992       1.1  wrstuden 
    993      1.58       chs 		tr->tr_data = malloc(TWA_SECTOR_SIZE, M_DEVBUF, M_WAITOK);
    994       1.1  wrstuden 
    995       1.1  wrstuden 		td = &sc->sc_units[unit];
    996       1.1  wrstuden 
    997       1.1  wrstuden 		if (twa_inquiry(tr, unit) == 0) {
    998       1.1  wrstuden 			if (td->td_dev == NULL) {
    999      1.35  uebayasi 	    			twa_print_inquiry_data(sc,
   1000       1.1  wrstuden 				   ((struct scsipi_inquiry_data *)tr->tr_data));
   1001       1.1  wrstuden 
   1002       1.1  wrstuden 				sc->sc_units[unit].td_size =
   1003       1.1  wrstuden 					twa_read_capacity(tr, unit);
   1004       1.1  wrstuden 
   1005       1.1  wrstuden 				twaa.twaa_unit = unit;
   1006       1.1  wrstuden 
   1007       1.1  wrstuden 				twa_recompute_openings(sc);
   1008       1.1  wrstuden 
   1009       1.2  wrstuden 				locs[TWACF_UNIT] = unit;
   1010       1.2  wrstuden 
   1011       1.1  wrstuden 				sc->sc_units[unit].td_dev =
   1012      1.59   thorpej 				    config_found(sc->twa_dv, &twaa, twa_print,
   1013  1.59.8.1   thorpej 				    CFARGS(.submatch = config_stdsubmatch,
   1014  1.59.8.1   thorpej 					   .iattr = attr,
   1015  1.59.8.1   thorpej 					   .locators = locs));
   1016       1.1  wrstuden 			}
   1017       1.1  wrstuden 		} else {
   1018       1.1  wrstuden 			if (td->td_dev != NULL) {
   1019       1.1  wrstuden 				(void) config_detach(td->td_dev, DETACH_FORCE);
   1020       1.1  wrstuden 				td->td_dev = NULL;
   1021       1.1  wrstuden 				td->td_size = 0;
   1022       1.1  wrstuden 
   1023       1.1  wrstuden 				twa_recompute_openings(sc);
   1024       1.1  wrstuden 			}
   1025       1.1  wrstuden 		}
   1026       1.1  wrstuden 		free(tr->tr_data, M_DEVBUF);
   1027       1.1  wrstuden 
   1028       1.1  wrstuden 		twa_release_request(tr);
   1029       1.1  wrstuden 	}
   1030       1.1  wrstuden 	splx(s);
   1031       1.1  wrstuden 
   1032       1.1  wrstuden 	return (0);
   1033       1.1  wrstuden }
   1034       1.1  wrstuden 
   1035       1.8  wrstuden 
   1036      1.27  gmcgarry #ifdef	DIAGNOSTIC
   1037       1.8  wrstuden static inline void
   1038       1.8  wrstuden twa_check_busy_q(struct twa_request *tr)
   1039       1.8  wrstuden {
   1040       1.8  wrstuden 	struct twa_request *rq;
   1041       1.8  wrstuden 	struct twa_softc *sc = tr->tr_sc;
   1042       1.8  wrstuden 
   1043       1.8  wrstuden 	TAILQ_FOREACH(rq, &sc->twa_busy, tr_link) {
   1044       1.8  wrstuden 		if (tr->tr_request_id == rq->tr_request_id) {
   1045       1.8  wrstuden 			panic("cannot submit same request more than once");
   1046       1.8  wrstuden 		} else if (tr->bp == rq->bp && tr->bp != 0) {
   1047       1.8  wrstuden 			/* XXX A check for 0 for the buf ptr is needed to
   1048       1.8  wrstuden 			 * guard against ioctl requests with a buf ptr of
   1049       1.8  wrstuden 			 * 0 and also aen notifications. Looking for
   1050       1.8  wrstuden 			 * external cmds only.
   1051       1.8  wrstuden 			 */
   1052       1.8  wrstuden 			panic("cannot submit same buf more than once");
   1053       1.8  wrstuden 		} else {
   1054       1.8  wrstuden 			/* Empty else statement */
   1055       1.8  wrstuden 		}
   1056       1.8  wrstuden 	}
   1057       1.8  wrstuden }
   1058       1.8  wrstuden #endif
   1059       1.8  wrstuden 
   1060       1.1  wrstuden static int
   1061       1.1  wrstuden twa_start(struct twa_request *tr)
   1062       1.1  wrstuden {
   1063       1.1  wrstuden 	struct twa_softc	*sc = tr->tr_sc;
   1064       1.7    simonb 	uint32_t		status_reg;
   1065       1.1  wrstuden 	int			s;
   1066       1.1  wrstuden 	int			error;
   1067       1.1  wrstuden 
   1068       1.1  wrstuden 	s = splbio();
   1069      1.22     joerg 
   1070      1.22     joerg 	/*
   1071      1.36  dholland 	 * The 9650 and 9690 have a bug in the detection of the full queue
   1072      1.36  dholland 	 * condition.
   1073      1.36  dholland 	 *
   1074      1.22     joerg 	 * If a write operation has filled the queue and is directly followed
   1075      1.22     joerg 	 * by a status read, it sometimes doesn't return the correct result.
   1076      1.22     joerg 	 * To work around this, the upper 32bit are written first.
   1077      1.22     joerg 	 * This effectively serialises the hardware, but does not change
   1078      1.22     joerg 	 * the state of the queue.
   1079      1.22     joerg 	 */
   1080      1.36  dholland 	if (sc->sc_quirks & TWA_QUIRK_QUEUEFULL_BUG) {
   1081      1.22     joerg 		/* Write lower 32 bits of address */
   1082      1.36  dholland 		TWA_WRITE_COMMAND_QUEUE_LOW(sc, tr->tr_cmd_phys +
   1083      1.22     joerg 			sizeof(struct twa_command_header));
   1084      1.22     joerg 	}
   1085      1.22     joerg 
   1086       1.1  wrstuden 	/* Check to see if we can post a command. */
   1087       1.1  wrstuden 	status_reg = twa_inl(sc, TWA_STATUS_REGISTER_OFFSET);
   1088       1.1  wrstuden 	if ((error = twa_check_ctlr_state(sc, status_reg)))
   1089       1.1  wrstuden 		goto out;
   1090       1.1  wrstuden 
   1091       1.1  wrstuden 	if (status_reg & TWA_STATUS_COMMAND_QUEUE_FULL) {
   1092       1.1  wrstuden 			if (tr->tr_status != TWA_CMD_PENDING) {
   1093       1.1  wrstuden 				tr->tr_status = TWA_CMD_PENDING;
   1094       1.1  wrstuden 				TAILQ_INSERT_TAIL(&tr->tr_sc->twa_pending,
   1095       1.1  wrstuden 					tr, tr_link);
   1096       1.1  wrstuden 			}
   1097       1.1  wrstuden 			twa_outl(sc, TWA_CONTROL_REGISTER_OFFSET,
   1098       1.1  wrstuden 					TWA_CONTROL_UNMASK_COMMAND_INTERRUPT);
   1099       1.1  wrstuden 			error = EBUSY;
   1100       1.1  wrstuden 	} else {
   1101       1.1  wrstuden 	   	bus_dmamap_sync(sc->twa_dma_tag, sc->twa_cmd_map,
   1102      1.17  christos 			(char *)tr->tr_command - (char *)sc->twa_cmds,
   1103       1.1  wrstuden 			sizeof(struct twa_command_packet),
   1104       1.1  wrstuden 			BUS_DMASYNC_PREWRITE | BUS_DMASYNC_PREREAD);
   1105       1.1  wrstuden 
   1106      1.36  dholland 		if (sc->sc_quirks & TWA_QUIRK_QUEUEFULL_BUG) {
   1107      1.22     joerg 			/*
   1108      1.36  dholland 			 * Cmd queue is not full.  Post the command
   1109      1.22     joerg 			 * by writing upper 32 bits of address.
   1110      1.22     joerg 			 */
   1111      1.36  dholland 			TWA_WRITE_COMMAND_QUEUE_HIGH(sc, tr->tr_cmd_phys +
   1112      1.22     joerg 				sizeof(struct twa_command_header));
   1113      1.22     joerg 		} else {
   1114      1.22     joerg 			/* Cmd queue is not full.  Post the command. */
   1115      1.22     joerg 			TWA_WRITE_COMMAND_QUEUE(sc, tr->tr_cmd_phys +
   1116      1.22     joerg 				sizeof(struct twa_command_header));
   1117      1.22     joerg 		}
   1118       1.1  wrstuden 
   1119       1.1  wrstuden 		/* Mark the request as currently being processed. */
   1120       1.1  wrstuden 		tr->tr_status = TWA_CMD_BUSY;
   1121       1.8  wrstuden 
   1122       1.8  wrstuden #ifdef	DIAGNOSTIC
   1123       1.8  wrstuden 		twa_check_busy_q(tr);
   1124       1.8  wrstuden #endif
   1125       1.8  wrstuden 
   1126       1.1  wrstuden 		/* Move the request into the busy queue. */
   1127       1.1  wrstuden 		TAILQ_INSERT_TAIL(&tr->tr_sc->twa_busy, tr, tr_link);
   1128       1.1  wrstuden 	}
   1129       1.1  wrstuden out:
   1130       1.1  wrstuden 	splx(s);
   1131       1.1  wrstuden 	return(error);
   1132       1.1  wrstuden }
   1133       1.1  wrstuden 
   1134       1.1  wrstuden static int
   1135       1.1  wrstuden twa_drain_response_queue(struct twa_softc *sc)
   1136       1.1  wrstuden {
   1137       1.7    simonb 	uint32_t			status_reg;
   1138       1.1  wrstuden 
   1139       1.1  wrstuden 	for (;;) {
   1140       1.1  wrstuden 		status_reg = twa_inl(sc, TWA_STATUS_REGISTER_OFFSET);
   1141       1.1  wrstuden 		if (twa_check_ctlr_state(sc, status_reg))
   1142       1.1  wrstuden 			return(1);
   1143       1.1  wrstuden 		if (status_reg & TWA_STATUS_RESPONSE_QUEUE_EMPTY)
   1144       1.1  wrstuden 			return(0); /* no more response queue entries */
   1145      1.45  christos 		(void)twa_inl(sc, TWA_RESPONSE_QUEUE_OFFSET);
   1146       1.1  wrstuden 	}
   1147       1.1  wrstuden }
   1148       1.1  wrstuden 
   1149      1.21     joerg /*
   1150      1.21     joerg  * twa_drain_response_queue_large:
   1151      1.21     joerg  *
   1152      1.22     joerg  * specific to the 9550 and 9650 controller to remove requests.
   1153      1.21     joerg  *
   1154      1.21     joerg  * Removes all requests from "large" response queue on the 9550 controller.
   1155      1.21     joerg  * This procedure is called as part of the 9550 controller reset sequence.
   1156      1.21     joerg  */
   1157      1.21     joerg static int
   1158      1.21     joerg twa_drain_response_queue_large(struct twa_softc *sc, uint32_t timeout)
   1159      1.21     joerg {
   1160      1.35  uebayasi 	uint32_t	start_time = 0, end_time;
   1161      1.35  uebayasi 	uint32_t	response = 0;
   1162      1.27  gmcgarry 
   1163      1.35  uebayasi 	if (sc->sc_product_id == PCI_PRODUCT_3WARE_9550 ||
   1164      1.35  uebayasi 	    sc->sc_product_id == PCI_PRODUCT_3WARE_9650 ) {
   1165      1.35  uebayasi 	       start_time = 0;
   1166      1.35  uebayasi 	       end_time = (timeout * TWA_MICROSECOND);
   1167      1.21     joerg 
   1168      1.35  uebayasi 	       while ((response &
   1169      1.35  uebayasi 		   TWA_9550SX_DRAIN_COMPLETE) != TWA_9550SX_DRAIN_COMPLETE) {
   1170      1.21     joerg 			response = twa_inl(sc, TWA_RESPONSE_QUEUE_LARGE_OFFSET);
   1171      1.21     joerg 			if (start_time >= end_time)
   1172      1.35  uebayasi 			       return (1);
   1173      1.35  uebayasi 			DELAY(1);
   1174      1.35  uebayasi 			start_time++;
   1175      1.35  uebayasi 	       }
   1176      1.35  uebayasi 	       /* P-chip delay */
   1177      1.35  uebayasi 	       DELAY(500000);
   1178      1.21     joerg        }
   1179      1.21     joerg        return (0);
   1180      1.21     joerg }
   1181      1.21     joerg 
   1182       1.1  wrstuden static void
   1183       1.1  wrstuden twa_drain_busy_queue(struct twa_softc *sc)
   1184       1.1  wrstuden {
   1185       1.1  wrstuden 	struct twa_request	*tr;
   1186       1.1  wrstuden 
   1187       1.1  wrstuden 	/* Walk the busy queue. */
   1188       1.1  wrstuden 
   1189       1.1  wrstuden 	while ((tr = TAILQ_FIRST(&sc->twa_busy)) != NULL) {
   1190       1.1  wrstuden 		TAILQ_REMOVE(&sc->twa_busy, tr, tr_link);
   1191       1.1  wrstuden 
   1192       1.1  wrstuden 		twa_unmap_request(tr);
   1193       1.1  wrstuden 		if ((tr->tr_cmd_pkt_type & TWA_CMD_PKT_TYPE_INTERNAL) ||
   1194       1.1  wrstuden 			(tr->tr_cmd_pkt_type & TWA_CMD_PKT_TYPE_IOCTL)) {
   1195       1.1  wrstuden 			/* It's an internal/ioctl request.  Simply free it. */
   1196       1.1  wrstuden 			if (tr->tr_data)
   1197       1.1  wrstuden 				free(tr->tr_data, M_DEVBUF);
   1198       1.1  wrstuden 			twa_release_request(tr);
   1199       1.1  wrstuden 		} else {
   1200       1.1  wrstuden 			/* It's a SCSI request.  Complete it. */
   1201       1.1  wrstuden 			tr->tr_command->command.cmd_pkt_9k.status = EIO;
   1202       1.1  wrstuden 			if (tr->tr_callback)
   1203       1.1  wrstuden 				tr->tr_callback(tr);
   1204       1.1  wrstuden 		}
   1205       1.1  wrstuden 	}
   1206       1.1  wrstuden }
   1207       1.1  wrstuden 
   1208       1.1  wrstuden static int
   1209       1.1  wrstuden twa_drain_pending_queue(struct twa_softc *sc)
   1210       1.1  wrstuden {
   1211       1.1  wrstuden 	struct twa_request	*tr;
   1212       1.1  wrstuden 	int			s, error = 0;
   1213       1.1  wrstuden 
   1214       1.1  wrstuden 	/*
   1215       1.1  wrstuden 	 * Pull requests off the pending queue, and submit them.
   1216       1.1  wrstuden 	 */
   1217       1.1  wrstuden 	s = splbio();
   1218       1.1  wrstuden 	while ((tr = TAILQ_FIRST(&sc->twa_pending)) != NULL) {
   1219       1.1  wrstuden 		TAILQ_REMOVE(&sc->twa_pending, tr, tr_link);
   1220       1.1  wrstuden 
   1221       1.1  wrstuden 		if ((error = twa_start(tr))) {
   1222       1.1  wrstuden 			if (error == EBUSY) {
   1223       1.1  wrstuden 				tr->tr_status = TWA_CMD_PENDING;
   1224       1.1  wrstuden 
   1225       1.1  wrstuden 				/* queue at the head */
   1226       1.1  wrstuden 				TAILQ_INSERT_HEAD(&tr->tr_sc->twa_pending,
   1227       1.1  wrstuden 					tr, tr_link);
   1228       1.1  wrstuden 				error = 0;
   1229       1.1  wrstuden 				break;
   1230       1.1  wrstuden 			} else {
   1231       1.1  wrstuden 				if (tr->tr_flags & TWA_CMD_SLEEP_ON_REQUEST) {
   1232       1.1  wrstuden 					tr->tr_error = error;
   1233       1.1  wrstuden 					tr->tr_callback(tr);
   1234       1.1  wrstuden 					error = EIO;
   1235       1.1  wrstuden 				}
   1236       1.1  wrstuden 			}
   1237       1.1  wrstuden 		}
   1238       1.1  wrstuden 	}
   1239       1.1  wrstuden 	splx(s);
   1240       1.1  wrstuden 
   1241       1.1  wrstuden 	return(error);
   1242       1.1  wrstuden }
   1243       1.1  wrstuden 
   1244       1.1  wrstuden static int
   1245       1.1  wrstuden twa_drain_aen_queue(struct twa_softc *sc)
   1246       1.1  wrstuden {
   1247       1.8  wrstuden 	int				s, error = 0;
   1248       1.1  wrstuden 	struct twa_request		*tr;
   1249       1.1  wrstuden 	struct twa_command_header	*cmd_hdr;
   1250       1.1  wrstuden 	struct timeval	t1;
   1251       1.7    simonb 	uint32_t		timeout;
   1252       1.1  wrstuden 
   1253       1.1  wrstuden 	for (;;) {
   1254       1.1  wrstuden 		if ((tr = twa_get_request(sc, 0)) == NULL) {
   1255       1.1  wrstuden 			error = EIO;
   1256       1.1  wrstuden 			break;
   1257       1.1  wrstuden 		}
   1258       1.1  wrstuden 		tr->tr_cmd_pkt_type |= TWA_CMD_PKT_TYPE_INTERNAL;
   1259       1.1  wrstuden 		tr->tr_callback = NULL;
   1260       1.1  wrstuden 
   1261       1.1  wrstuden 		tr->tr_data = malloc(TWA_SECTOR_SIZE, M_DEVBUF, M_NOWAIT);
   1262       1.1  wrstuden 
   1263       1.1  wrstuden 		if (tr->tr_data == NULL) {
   1264       1.1  wrstuden 			error = 1;
   1265       1.1  wrstuden 			goto out;
   1266       1.1  wrstuden 		}
   1267       1.1  wrstuden 
   1268       1.1  wrstuden 		if (twa_request_sense(tr, 0) != 0) {
   1269       1.1  wrstuden 			error = 1;
   1270       1.1  wrstuden 			break;
   1271       1.1  wrstuden 		}
   1272       1.1  wrstuden 
   1273       1.1  wrstuden 		timeout = (1000/*ms*/ * 100/*us*/ * TWA_REQUEST_TIMEOUT_PERIOD);
   1274       1.1  wrstuden 
   1275       1.1  wrstuden 		microtime(&t1);
   1276       1.1  wrstuden 
   1277       1.1  wrstuden 		timeout += t1.tv_usec;
   1278       1.1  wrstuden 
   1279       1.1  wrstuden 		do {
   1280       1.8  wrstuden 			s = splbio();
   1281       1.1  wrstuden 			twa_done(tr->tr_sc);
   1282       1.8  wrstuden 			splx(s);
   1283       1.1  wrstuden 			if (tr->tr_status != TWA_CMD_BUSY)
   1284       1.1  wrstuden 				break;
   1285       1.1  wrstuden 			microtime(&t1);
   1286       1.1  wrstuden 		} while (t1.tv_usec <= timeout);
   1287       1.1  wrstuden 
   1288       1.1  wrstuden 		if (tr->tr_status != TWA_CMD_COMPLETE) {
   1289       1.1  wrstuden 			error = ETIMEDOUT;
   1290       1.1  wrstuden 			break;
   1291       1.1  wrstuden 		}
   1292       1.1  wrstuden 
   1293       1.1  wrstuden 		if ((error = tr->tr_command->command.cmd_pkt_9k.status))
   1294       1.1  wrstuden 			break;
   1295       1.1  wrstuden 
   1296       1.1  wrstuden 		cmd_hdr = (struct twa_command_header *)(tr->tr_data);
   1297       1.1  wrstuden 		if ((cmd_hdr->status_block.error) /* aen_code */
   1298       1.1  wrstuden 				== TWA_AEN_QUEUE_EMPTY)
   1299       1.1  wrstuden 			break;
   1300       1.1  wrstuden 		(void)twa_enqueue_aen(sc, cmd_hdr);
   1301       1.1  wrstuden 
   1302       1.1  wrstuden 		free(tr->tr_data, M_DEVBUF);
   1303       1.1  wrstuden 		twa_release_request(tr);
   1304       1.1  wrstuden 	}
   1305       1.1  wrstuden out:
   1306       1.1  wrstuden 	if (tr) {
   1307       1.1  wrstuden 		if (tr->tr_data)
   1308       1.1  wrstuden 			free(tr->tr_data, M_DEVBUF);
   1309       1.1  wrstuden 
   1310       1.1  wrstuden 		twa_release_request(tr);
   1311       1.1  wrstuden 	}
   1312       1.1  wrstuden 	return(error);
   1313       1.1  wrstuden }
   1314       1.1  wrstuden 
   1315       1.8  wrstuden 
   1316      1.32    bouyer #if 0
   1317       1.8  wrstuden static void
   1318       1.8  wrstuden twa_check_response_q(struct twa_request *tr, int clear)
   1319       1.8  wrstuden {
   1320       1.8  wrstuden 	int j;
   1321       1.8  wrstuden 	static int i = 0;
   1322       1.8  wrstuden 	static struct twa_request	*req = 0;
   1323       1.8  wrstuden 	static struct buf		*hist[255];
   1324       1.8  wrstuden 
   1325       1.8  wrstuden 
   1326       1.8  wrstuden 	if (clear) {
   1327       1.8  wrstuden 		i = 0;
   1328       1.8  wrstuden 		for (j = 0; j < 255; j++)
   1329       1.8  wrstuden 			hist[j] = 0;
   1330       1.8  wrstuden 		return;
   1331       1.8  wrstuden 	}
   1332       1.8  wrstuden 
   1333       1.8  wrstuden 	if (req == 0)
   1334       1.8  wrstuden 		req = tr;
   1335       1.8  wrstuden 
   1336       1.8  wrstuden 	if ((tr->tr_cmd_pkt_type & TWA_CMD_PKT_TYPE_EXTERNAL) != 0) {
   1337      1.33  drochner 		/* XXX this is bogus ! req can't be anything else but tr ! */
   1338       1.8  wrstuden 		if (req->tr_request_id == tr->tr_request_id)
   1339       1.8  wrstuden 			panic("req id: %d on controller queue twice",
   1340       1.8  wrstuden 		    	    tr->tr_request_id);
   1341       1.8  wrstuden 
   1342       1.8  wrstuden 		for (j = 0; j < i; j++)
   1343       1.8  wrstuden 			if (tr->bp == hist[j])
   1344       1.8  wrstuden 				panic("req id: %d buf found twice",
   1345       1.8  wrstuden 		    	    	    tr->tr_request_id);
   1346       1.8  wrstuden 		}
   1347       1.8  wrstuden 	req = tr;
   1348       1.8  wrstuden 
   1349       1.8  wrstuden 	hist[i++] = req->bp;
   1350       1.8  wrstuden }
   1351       1.8  wrstuden #endif
   1352       1.8  wrstuden 
   1353       1.1  wrstuden static int
   1354       1.1  wrstuden twa_done(struct twa_softc *sc)
   1355       1.1  wrstuden {
   1356       1.1  wrstuden 	union twa_response_queue	rq;
   1357       1.1  wrstuden 	struct twa_request		*tr;
   1358       1.8  wrstuden 	int				rv = 0;
   1359       1.7    simonb 	uint32_t			status_reg;
   1360       1.1  wrstuden 
   1361       1.1  wrstuden 	for (;;) {
   1362       1.1  wrstuden 		status_reg = twa_inl(sc, TWA_STATUS_REGISTER_OFFSET);
   1363       1.8  wrstuden 		if ((rv = twa_check_ctlr_state(sc, status_reg)))
   1364       1.1  wrstuden 			break;
   1365       1.1  wrstuden 		if (status_reg & TWA_STATUS_RESPONSE_QUEUE_EMPTY)
   1366       1.1  wrstuden 			break;
   1367       1.1  wrstuden 		/* Response queue is not empty. */
   1368      1.28     joerg 		rq.value = twa_inl(sc, TWA_RESPONSE_QUEUE_OFFSET);
   1369       1.1  wrstuden 		tr = sc->sc_twa_request + rq.u.response_id;
   1370      1.32    bouyer #if 0
   1371       1.8  wrstuden 		twa_check_response_q(tr, 0);
   1372       1.8  wrstuden #endif
   1373       1.1  wrstuden 		/* Unmap the command packet, and any associated data buffer. */
   1374       1.1  wrstuden 		twa_unmap_request(tr);
   1375       1.8  wrstuden 
   1376       1.1  wrstuden 		tr->tr_status = TWA_CMD_COMPLETE;
   1377       1.1  wrstuden 		TAILQ_REMOVE(&tr->tr_sc->twa_busy, tr, tr_link);
   1378       1.1  wrstuden 
   1379       1.1  wrstuden 		if (tr->tr_callback)
   1380       1.1  wrstuden 			tr->tr_callback(tr);
   1381       1.1  wrstuden 	}
   1382       1.1  wrstuden 	(void)twa_drain_pending_queue(sc);
   1383       1.8  wrstuden 
   1384      1.32    bouyer #if 0
   1385       1.8  wrstuden 	twa_check_response_q(NULL, 1);
   1386       1.8  wrstuden #endif
   1387       1.8  wrstuden 	return(rv);
   1388       1.1  wrstuden }
   1389       1.1  wrstuden 
   1390       1.1  wrstuden /*
   1391       1.1  wrstuden  * Function name:	twa_init_ctlr
   1392       1.1  wrstuden  * Description:		Establishes a logical connection with the controller.
   1393       1.1  wrstuden  *			If bundled with firmware, determines whether or not
   1394      1.23     joerg  *			the driver is compatible with the firmware on the
   1395      1.23     joerg  *			controller, before proceeding to work with it.
   1396       1.1  wrstuden  *
   1397       1.1  wrstuden  * Input:		sc	-- ptr to per ctlr structure
   1398       1.1  wrstuden  * Output:		None
   1399       1.1  wrstuden  * Return value:	0	-- success
   1400       1.1  wrstuden  *			non-zero-- failure
   1401       1.1  wrstuden  */
   1402       1.1  wrstuden static int
   1403       1.1  wrstuden twa_init_ctlr(struct twa_softc *sc)
   1404       1.1  wrstuden {
   1405       1.7    simonb 	uint16_t	fw_on_ctlr_srl = 0;
   1406       1.7    simonb 	uint16_t	fw_on_ctlr_arch_id = 0;
   1407       1.7    simonb 	uint16_t	fw_on_ctlr_branch = 0;
   1408       1.7    simonb 	uint16_t	fw_on_ctlr_build = 0;
   1409       1.7    simonb 	uint32_t	init_connect_result = 0;
   1410       1.1  wrstuden 	int		error = 0;
   1411       1.1  wrstuden 
   1412       1.1  wrstuden 	/* Wait for the controller to become ready. */
   1413       1.1  wrstuden 	if (twa_wait_status(sc, TWA_STATUS_MICROCONTROLLER_READY,
   1414       1.1  wrstuden 					TWA_REQUEST_TIMEOUT_PERIOD)) {
   1415       1.1  wrstuden 		return(ENXIO);
   1416       1.1  wrstuden 	}
   1417       1.1  wrstuden 	/* Drain the response queue. */
   1418       1.1  wrstuden 	if (twa_drain_response_queue(sc))
   1419       1.1  wrstuden 		return(1);
   1420       1.1  wrstuden 
   1421       1.1  wrstuden 	/* Establish a logical connection with the controller. */
   1422       1.1  wrstuden 	if ((error = twa_init_connection(sc, TWA_INIT_MESSAGE_CREDITS,
   1423       1.1  wrstuden 			TWA_EXTENDED_INIT_CONNECT, TWA_CURRENT_FW_SRL,
   1424       1.1  wrstuden 			TWA_9000_ARCH_ID, TWA_CURRENT_FW_BRANCH,
   1425       1.1  wrstuden 			TWA_CURRENT_FW_BUILD, &fw_on_ctlr_srl,
   1426       1.1  wrstuden 			&fw_on_ctlr_arch_id, &fw_on_ctlr_branch,
   1427       1.1  wrstuden 			&fw_on_ctlr_build, &init_connect_result))) {
   1428       1.1  wrstuden 		return(error);
   1429       1.1  wrstuden 	}
   1430       1.1  wrstuden 	twa_drain_aen_queue(sc);
   1431       1.1  wrstuden 
   1432       1.1  wrstuden 	/* Set controller state to initialized. */
   1433       1.1  wrstuden 	sc->twa_state &= ~TWA_STATE_SHUTDOWN;
   1434       1.1  wrstuden 	return(0);
   1435       1.1  wrstuden }
   1436       1.1  wrstuden 
   1437       1.1  wrstuden static int
   1438      1.54  pgoyette twa_setup(device_t self)
   1439       1.1  wrstuden {
   1440      1.54  pgoyette 	struct twa_softc *sc;
   1441       1.1  wrstuden 	struct tw_cl_event_packet *aen_queue;
   1442       1.1  wrstuden 	uint32_t		i = 0;
   1443       1.1  wrstuden 	int			error = 0;
   1444       1.1  wrstuden 
   1445      1.54  pgoyette 	sc = device_private(self);
   1446      1.54  pgoyette 
   1447       1.1  wrstuden 	/* Initialize request queues. */
   1448       1.1  wrstuden 	TAILQ_INIT(&sc->twa_free);
   1449       1.1  wrstuden 	TAILQ_INIT(&sc->twa_busy);
   1450       1.1  wrstuden 	TAILQ_INIT(&sc->twa_pending);
   1451       1.1  wrstuden 
   1452       1.1  wrstuden 	sc->twa_sc_flags = 0;
   1453       1.1  wrstuden 
   1454       1.1  wrstuden 	if (twa_alloc_req_pkts(sc, TWA_Q_LENGTH)) {
   1455       1.1  wrstuden 
   1456       1.1  wrstuden 		return(ENOMEM);
   1457       1.1  wrstuden 	}
   1458       1.1  wrstuden 
   1459       1.1  wrstuden 	/* Allocate memory for the AEN queue. */
   1460       1.6    simonb 	if ((aen_queue = malloc(sizeof(struct tw_cl_event_packet) *
   1461       1.6    simonb 	    TWA_Q_LENGTH, M_DEVBUF, M_WAITOK)) == NULL) {
   1462       1.1  wrstuden 		/*
   1463       1.1  wrstuden 		 * This should not cause us to return error.  We will only be
   1464       1.1  wrstuden 		 * unable to support AEN's.  But then, we will have to check
   1465       1.1  wrstuden 		 * time and again to see if we can support AEN's, if we
   1466       1.1  wrstuden 		 * continue.  So, we will just return error.
   1467       1.1  wrstuden 		 */
   1468       1.1  wrstuden 		return (ENOMEM);
   1469       1.1  wrstuden 	}
   1470       1.1  wrstuden 	/* Initialize the aen queue. */
   1471       1.1  wrstuden 	memset(aen_queue, 0, sizeof(struct tw_cl_event_packet) * TWA_Q_LENGTH);
   1472       1.1  wrstuden 
   1473       1.1  wrstuden 	for (i = 0; i < TWA_Q_LENGTH; i++)
   1474       1.1  wrstuden 		sc->twa_aen_queue[i] = &(aen_queue[i]);
   1475       1.1  wrstuden 
   1476       1.1  wrstuden 	twa_outl(sc, TWA_CONTROL_REGISTER_OFFSET,
   1477       1.1  wrstuden 		TWA_CONTROL_DISABLE_INTERRUPTS);
   1478       1.1  wrstuden 
   1479       1.1  wrstuden 	/* Initialize the controller. */
   1480       1.1  wrstuden 	if ((error = twa_init_ctlr(sc))) {
   1481       1.1  wrstuden 		/* Soft reset the controller, and try one more time. */
   1482       1.1  wrstuden 
   1483       1.6    simonb 		printf("%s: controller initialization failed. "
   1484      1.41  jakllsch 		    "Retrying initialization\n", device_xname(sc->twa_dv));
   1485       1.1  wrstuden 
   1486       1.1  wrstuden 		if ((error = twa_soft_reset(sc)) == 0)
   1487       1.1  wrstuden 			error = twa_init_ctlr(sc);
   1488       1.1  wrstuden 	}
   1489       1.1  wrstuden 
   1490       1.1  wrstuden 	twa_describe_controller(sc);
   1491       1.1  wrstuden 
   1492      1.59   thorpej 	error = twa_request_bus_scan(self, NULL, NULL);
   1493       1.1  wrstuden 
   1494       1.1  wrstuden 	twa_outl(sc, TWA_CONTROL_REGISTER_OFFSET,
   1495       1.1  wrstuden 		TWA_CONTROL_CLEAR_ATTENTION_INTERRUPT |
   1496       1.1  wrstuden 		TWA_CONTROL_UNMASK_RESPONSE_INTERRUPT |
   1497       1.1  wrstuden 		TWA_CONTROL_ENABLE_INTERRUPTS);
   1498       1.1  wrstuden 
   1499       1.1  wrstuden 	return (error);
   1500       1.1  wrstuden }
   1501       1.1  wrstuden 
   1502       1.1  wrstuden void *twa_sdh;
   1503       1.1  wrstuden 
   1504       1.1  wrstuden static void
   1505      1.30    cegger twa_attach(device_t parent, device_t self, void *aux)
   1506       1.1  wrstuden {
   1507       1.1  wrstuden 	struct pci_attach_args *pa;
   1508       1.1  wrstuden 	struct twa_softc *sc;
   1509       1.1  wrstuden 	pci_chipset_tag_t pc;
   1510       1.1  wrstuden 	pcireg_t csr;
   1511       1.1  wrstuden 	pci_intr_handle_t ih;
   1512       1.1  wrstuden 	const char *intrstr;
   1513      1.13      manu 	const struct sysctlnode *node;
   1514      1.43       chs 	const struct twa_pci_identity *entry;
   1515      1.13      manu 	int i;
   1516      1.22     joerg 	bool use_64bit;
   1517      1.49  christos 	char intrbuf[PCI_INTRSTR_LEN];
   1518       1.1  wrstuden 
   1519      1.31    cegger 	sc = device_private(self);
   1520       1.1  wrstuden 
   1521      1.41  jakllsch 	sc->twa_dv = self;
   1522      1.41  jakllsch 
   1523       1.1  wrstuden 	pa = aux;
   1524       1.1  wrstuden 	pc = pa->pa_pc;
   1525       1.1  wrstuden 	sc->pc = pa->pa_pc;
   1526       1.1  wrstuden 	sc->tag = pa->pa_tag;
   1527       1.1  wrstuden 
   1528      1.43       chs 	entry = twa_lookup(pa->pa_id);
   1529      1.43       chs 	pci_aprint_devinfo_fancy(pa, "RAID controller", entry->name, 1);
   1530      1.36  dholland 
   1531      1.36  dholland 	sc->sc_quirks = 0;
   1532       1.1  wrstuden 
   1533       1.1  wrstuden 	if (PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_3WARE_9000) {
   1534      1.21     joerg 		sc->sc_nunits = TWA_MAX_UNITS;
   1535      1.22     joerg 		use_64bit = false;
   1536       1.1  wrstuden 		if (pci_mapreg_map(pa, PCI_MAPREG_START, PCI_MAPREG_TYPE_IO, 0,
   1537       1.1  wrstuden 	    	    &sc->twa_bus_iot, &sc->twa_bus_ioh, NULL, NULL)) {
   1538      1.41  jakllsch 			aprint_error_dev(sc->twa_dv, "can't map i/o space\n");
   1539       1.1  wrstuden 			return;
   1540       1.1  wrstuden 		}
   1541       1.1  wrstuden 	} else if (PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_3WARE_9550) {
   1542      1.21     joerg 		sc->sc_nunits = TWA_MAX_UNITS;
   1543      1.22     joerg 		use_64bit = true;
   1544      1.22     joerg 		if (pci_mapreg_map(pa, PCI_MAPREG_START + 0x08,
   1545      1.22     joerg 	    	    PCI_MAPREG_MEM_TYPE_64BIT, 0, &sc->twa_bus_iot,
   1546      1.22     joerg 		    &sc->twa_bus_ioh, NULL, NULL)) {
   1547      1.41  jakllsch 			aprint_error_dev(sc->twa_dv, "can't map mem space\n");
   1548      1.22     joerg 			return;
   1549      1.22     joerg 		}
   1550      1.22     joerg 	} else if (PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_3WARE_9650) {
   1551      1.22     joerg 		sc->sc_nunits = TWA_9650_MAX_UNITS;
   1552      1.22     joerg 		use_64bit = true;
   1553      1.22     joerg 		if (pci_mapreg_map(pa, PCI_MAPREG_START + 0x08,
   1554      1.22     joerg 	    	    PCI_MAPREG_MEM_TYPE_64BIT, 0, &sc->twa_bus_iot,
   1555      1.22     joerg 		    &sc->twa_bus_ioh, NULL, NULL)) {
   1556      1.41  jakllsch 			aprint_error_dev(sc->twa_dv, "can't map mem space\n");
   1557      1.22     joerg 			return;
   1558      1.22     joerg 		}
   1559      1.36  dholland 		sc->sc_quirks |= TWA_QUIRK_QUEUEFULL_BUG;
   1560      1.22     joerg 	} else if (PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_3WARE_9690) {
   1561      1.22     joerg 		sc->sc_nunits = TWA_9690_MAX_UNITS;
   1562      1.22     joerg 		use_64bit = true;
   1563       1.1  wrstuden 		if (pci_mapreg_map(pa, PCI_MAPREG_START + 0x08,
   1564       1.1  wrstuden 	    	    PCI_MAPREG_MEM_TYPE_64BIT, 0, &sc->twa_bus_iot,
   1565       1.1  wrstuden 		    &sc->twa_bus_ioh, NULL, NULL)) {
   1566      1.41  jakllsch 			aprint_error_dev(sc->twa_dv, "can't map mem space\n");
   1567       1.1  wrstuden 			return;
   1568       1.1  wrstuden 		}
   1569      1.36  dholland 		sc->sc_quirks |= TWA_QUIRK_QUEUEFULL_BUG;
   1570       1.1  wrstuden 	} else {
   1571      1.21     joerg 		sc->sc_nunits = 0;
   1572      1.22     joerg 		use_64bit = false;
   1573      1.53   msaitoh 		aprint_error_dev(sc->twa_dv,
   1574      1.53   msaitoh 		    "product id 0x%02x not recognized\n",
   1575      1.19    cegger 		    PCI_PRODUCT(pa->pa_id));
   1576       1.1  wrstuden 		return;
   1577       1.1  wrstuden 	}
   1578      1.22     joerg 
   1579      1.25     joerg 	if (pci_dma64_available(pa) && use_64bit) {
   1580      1.41  jakllsch 		aprint_verbose_dev(self, "64-bit DMA addressing active\n");
   1581      1.22     joerg 		sc->twa_dma_tag = pa->pa_dmat64;
   1582      1.25     joerg 	} else {
   1583      1.22     joerg 		sc->twa_dma_tag = pa->pa_dmat;
   1584      1.25     joerg 	}
   1585      1.22     joerg 
   1586      1.21     joerg  	sc->sc_product_id = PCI_PRODUCT(pa->pa_id);
   1587       1.1  wrstuden 	/* Enable the device. */
   1588       1.1  wrstuden 	csr = pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_COMMAND_STATUS_REG);
   1589       1.1  wrstuden 
   1590       1.1  wrstuden 	pci_conf_write(pa->pa_pc, pa->pa_tag, PCI_COMMAND_STATUS_REG,
   1591       1.1  wrstuden 	    csr | PCI_COMMAND_MASTER_ENABLE);
   1592       1.1  wrstuden 
   1593       1.1  wrstuden 	/* Map and establish the interrupt. */
   1594       1.1  wrstuden 	if (pci_intr_map(pa, &ih)) {
   1595      1.41  jakllsch 		aprint_error_dev(sc->twa_dv, "can't map interrupt\n");
   1596       1.1  wrstuden 		return;
   1597       1.1  wrstuden 	}
   1598      1.49  christos 	intrstr = pci_intr_string(pc, ih, intrbuf, sizeof(intrbuf));
   1599       1.1  wrstuden 
   1600      1.57  jdolecek 	sc->twa_ih = pci_intr_establish_xname(pc, ih, IPL_BIO, twa_intr, sc,
   1601      1.57  jdolecek 	    device_xname(self));
   1602       1.1  wrstuden 	if (sc->twa_ih == NULL) {
   1603      1.41  jakllsch 		aprint_error_dev(sc->twa_dv, "can't establish interrupt%s%s\n",
   1604       1.1  wrstuden 			(intrstr) ? " at " : "",
   1605       1.1  wrstuden 			(intrstr) ? intrstr : "");
   1606       1.1  wrstuden 		return;
   1607       1.1  wrstuden 	}
   1608       1.1  wrstuden 
   1609       1.1  wrstuden 	if (intrstr != NULL)
   1610      1.53   msaitoh 		aprint_normal_dev(sc->twa_dv, "interrupting at %s\n", intrstr);
   1611       1.1  wrstuden 
   1612      1.54  pgoyette 	twa_setup(self);
   1613       1.1  wrstuden 
   1614       1.1  wrstuden 	if (twa_sdh == NULL)
   1615       1.1  wrstuden 		twa_sdh = shutdownhook_establish(twa_shutdown, NULL);
   1616       1.1  wrstuden 
   1617      1.13      manu 	/* sysctl set-up for 3ware cli */
   1618      1.13      manu 	if (sysctl_createv(NULL, 0, NULL, &node,
   1619      1.41  jakllsch 				0, CTLTYPE_NODE, device_xname(sc->twa_dv),
   1620      1.35  uebayasi 				SYSCTL_DESCR("twa driver information"),
   1621      1.35  uebayasi 				NULL, 0, NULL, 0,
   1622      1.13      manu 				CTL_HW, CTL_CREATE, CTL_EOL) != 0) {
   1623      1.53   msaitoh 		aprint_error_dev(sc->twa_dv,
   1624      1.53   msaitoh 		    "could not create %s.%s sysctl node\n",
   1625      1.53   msaitoh 		    "hw", device_xname(sc->twa_dv));
   1626      1.13      manu 		return;
   1627      1.13      manu 	}
   1628      1.13      manu 	if ((i = sysctl_createv(NULL, 0, NULL, NULL,
   1629      1.35  uebayasi 				0, CTLTYPE_STRING, "driver_version",
   1630      1.35  uebayasi 				SYSCTL_DESCR("twa driver version"),
   1631      1.37     joerg 				NULL, 0, __UNCONST(&twaver), 0,
   1632      1.13      manu 				CTL_HW, node->sysctl_num, CTL_CREATE, CTL_EOL))
   1633      1.13      manu 				!= 0) {
   1634      1.53   msaitoh 		aprint_error_dev(sc->twa_dv,
   1635      1.53   msaitoh 		    "could not create %s.%s.driver_version sysctl\n",
   1636      1.53   msaitoh 		    "hw", device_xname(sc->twa_dv));
   1637      1.13      manu 		return;
   1638      1.13      manu 	}
   1639      1.13      manu 
   1640       1.1  wrstuden 	return;
   1641       1.1  wrstuden }
   1642       1.1  wrstuden 
   1643       1.1  wrstuden static void
   1644      1.16  christos twa_shutdown(void *arg)
   1645       1.1  wrstuden {
   1646       1.1  wrstuden 	extern struct cfdriver twa_cd;
   1647       1.1  wrstuden 	struct twa_softc *sc;
   1648      1.45  christos 	int i, unit;
   1649       1.1  wrstuden 
   1650       1.1  wrstuden 	for (i = 0; i < twa_cd.cd_ndevs; i++) {
   1651      1.24   tsutsui 		if ((sc = device_lookup_private(&twa_cd, i)) == NULL)
   1652       1.1  wrstuden 			continue;
   1653       1.1  wrstuden 
   1654      1.21     joerg 		for (unit = 0; unit < sc->sc_nunits; unit++)
   1655       1.1  wrstuden 			if (sc->sc_units[unit].td_dev != NULL)
   1656       1.1  wrstuden 				(void) config_detach(sc->sc_units[unit].td_dev,
   1657       1.1  wrstuden 					DETACH_FORCE | DETACH_QUIET);
   1658       1.1  wrstuden 
   1659       1.1  wrstuden 		twa_outl(sc, TWA_CONTROL_REGISTER_OFFSET,
   1660       1.1  wrstuden 			TWA_CONTROL_DISABLE_INTERRUPTS);
   1661       1.1  wrstuden 
   1662       1.1  wrstuden 		/* Let the controller know that we are going down. */
   1663      1.45  christos 		(void)twa_init_connection(sc, TWA_SHUTDOWN_MESSAGE_CREDITS,
   1664       1.1  wrstuden 				0, 0, 0, 0, 0,
   1665       1.1  wrstuden 				NULL, NULL, NULL, NULL, NULL);
   1666       1.1  wrstuden 	}
   1667       1.1  wrstuden }
   1668       1.1  wrstuden 
   1669       1.1  wrstuden void
   1670       1.1  wrstuden twa_register_callbacks(struct twa_softc *sc, int unit,
   1671       1.1  wrstuden     const struct twa_callbacks *tcb)
   1672       1.1  wrstuden {
   1673       1.1  wrstuden 
   1674       1.1  wrstuden 	sc->sc_units[unit].td_callbacks = tcb;
   1675       1.1  wrstuden }
   1676       1.1  wrstuden 
   1677       1.1  wrstuden /*
   1678       1.1  wrstuden  * Print autoconfiguration message for a sub-device
   1679       1.1  wrstuden  */
   1680       1.1  wrstuden static int
   1681       1.1  wrstuden twa_print(void *aux, const char *pnp)
   1682       1.1  wrstuden {
   1683       1.1  wrstuden 	struct twa_attach_args *twaa;
   1684       1.1  wrstuden 
   1685       1.1  wrstuden 	twaa = aux;
   1686       1.1  wrstuden 
   1687       1.1  wrstuden 	if (pnp !=NULL)
   1688       1.1  wrstuden 		aprint_normal("block device at %s\n", pnp);
   1689       1.1  wrstuden 	aprint_normal(" unit %d\n", twaa->twaa_unit);
   1690       1.1  wrstuden 	return (UNCONF);
   1691       1.1  wrstuden }
   1692       1.1  wrstuden 
   1693       1.1  wrstuden static void
   1694       1.1  wrstuden twa_fillin_sgl(struct twa_sg *sgl, bus_dma_segment_t *segs, int nsegments)
   1695       1.1  wrstuden {
   1696       1.1  wrstuden 	int	i;
   1697       1.1  wrstuden 	for (i = 0; i < nsegments; i++) {
   1698       1.1  wrstuden 		sgl[i].address = segs[i].ds_addr;
   1699       1.7    simonb 		sgl[i].length = (uint32_t)(segs[i].ds_len);
   1700       1.1  wrstuden 	}
   1701       1.1  wrstuden }
   1702       1.1  wrstuden 
   1703       1.1  wrstuden static int
   1704       1.1  wrstuden twa_submit_io(struct twa_request *tr)
   1705       1.1  wrstuden {
   1706       1.1  wrstuden 	int	error;
   1707       1.1  wrstuden 
   1708       1.1  wrstuden 	if ((error = twa_start(tr))) {
   1709       1.1  wrstuden 		if (error == EBUSY)
   1710       1.1  wrstuden 			error = 0; /* request is in the pending queue */
   1711       1.1  wrstuden 		else {
   1712       1.1  wrstuden 			tr->tr_error = error;
   1713       1.1  wrstuden 		}
   1714       1.1  wrstuden 	}
   1715       1.1  wrstuden 	return(error);
   1716       1.1  wrstuden }
   1717       1.1  wrstuden 
   1718       1.1  wrstuden /*
   1719       1.1  wrstuden  * Function name:	twa_setup_data_dmamap
   1720       1.1  wrstuden  * Description:		Callback of bus_dmamap_load for the buffer associated
   1721       1.1  wrstuden  *			with data.  Updates the cmd pkt (size/sgl_entries
   1722       1.1  wrstuden  *			fields, as applicable) to reflect the number of sg
   1723       1.1  wrstuden  *			elements.
   1724       1.1  wrstuden  *
   1725       1.1  wrstuden  * Input:		arg	-- ptr to request pkt
   1726       1.1  wrstuden  *			segs	-- ptr to a list of segment descriptors
   1727       1.1  wrstuden  *			nsegments--# of segments
   1728       1.1  wrstuden  *			error	-- 0 if no errors encountered before callback,
   1729       1.1  wrstuden  *				   non-zero if errors were encountered
   1730       1.1  wrstuden  * Output:		None
   1731       1.1  wrstuden  * Return value:	None
   1732       1.1  wrstuden  */
   1733       1.1  wrstuden static int
   1734      1.21     joerg twa_setup_data_dmamap(void *arg, bus_dma_segment_t *segs, int nsegments)
   1735       1.1  wrstuden {
   1736       1.1  wrstuden 	struct twa_request		*tr = (struct twa_request *)arg;
   1737       1.1  wrstuden 	struct twa_command_packet	*cmdpkt = tr->tr_command;
   1738       1.1  wrstuden 	struct twa_command_9k		*cmd9k;
   1739       1.1  wrstuden 	union twa_command_7k		*cmd7k;
   1740       1.7    simonb 	uint8_t				sgl_offset;
   1741      1.21     joerg 	int				error;
   1742       1.1  wrstuden 
   1743       1.1  wrstuden 	if (tr->tr_cmd_pkt_type & TWA_CMD_PKT_TYPE_9K) {
   1744       1.1  wrstuden 		cmd9k = &(cmdpkt->command.cmd_pkt_9k);
   1745       1.1  wrstuden 		twa_fillin_sgl(&(cmd9k->sg_list[0]), segs, nsegments);
   1746       1.1  wrstuden 		cmd9k->sgl_entries += nsegments - 1;
   1747       1.1  wrstuden 	} else {
   1748       1.1  wrstuden 		/* It's a 7000 command packet. */
   1749       1.1  wrstuden 		cmd7k = &(cmdpkt->command.cmd_pkt_7k);
   1750       1.1  wrstuden 		if ((sgl_offset = cmdpkt->command.cmd_pkt_7k.generic.sgl_offset))
   1751       1.1  wrstuden 			twa_fillin_sgl((struct twa_sg *)
   1752       1.7    simonb 					(((uint32_t *)cmd7k) + sgl_offset),
   1753       1.1  wrstuden 					segs, nsegments);
   1754       1.1  wrstuden 		/* Modify the size field, based on sg address size. */
   1755       1.1  wrstuden 		cmd7k->generic.size +=
   1756       1.1  wrstuden 			((TWA_64BIT_ADDRESSES ? 3 : 2) * nsegments);
   1757       1.1  wrstuden 	}
   1758       1.1  wrstuden 	if (tr->tr_flags & TWA_CMD_DATA_IN)
   1759       1.1  wrstuden 		bus_dmamap_sync(tr->tr_sc->twa_dma_tag, tr->tr_dma_map, 0,
   1760      1.22     joerg 			tr->tr_length, BUS_DMASYNC_PREWRITE);
   1761       1.1  wrstuden 	if (tr->tr_flags & TWA_CMD_DATA_OUT) {
   1762       1.1  wrstuden 		/*
   1763       1.1  wrstuden 		 * If we're using an alignment buffer, and we're
   1764       1.1  wrstuden 		 * writing data, copy the real data out.
   1765       1.1  wrstuden 		 */
   1766       1.1  wrstuden 		if (tr->tr_flags & TWA_CMD_DATA_COPY_NEEDED)
   1767       1.1  wrstuden 			memcpy(tr->tr_data, tr->tr_real_data,
   1768       1.1  wrstuden 				tr->tr_real_length);
   1769       1.1  wrstuden 		bus_dmamap_sync(tr->tr_sc->twa_dma_tag, tr->tr_dma_map, 0,
   1770      1.22     joerg 			tr->tr_length, BUS_DMASYNC_PREREAD);
   1771       1.1  wrstuden 	}
   1772       1.1  wrstuden 	error = twa_submit_io(tr);
   1773       1.1  wrstuden 
   1774       1.1  wrstuden 	if (error) {
   1775       1.1  wrstuden 		twa_unmap_request(tr);
   1776       1.1  wrstuden 		/*
   1777       1.1  wrstuden 		 * If the caller had been returned EINPROGRESS, and he has
   1778       1.1  wrstuden 		 * registered a callback for handling completion, the callback
   1779       1.1  wrstuden 		 * will never get called because we were unable to submit the
   1780       1.1  wrstuden 		 * request.  So, free up the request right here.
   1781       1.1  wrstuden 		 */
   1782      1.21     joerg 		if (tr->tr_callback)
   1783       1.1  wrstuden 			twa_release_request(tr);
   1784       1.1  wrstuden 	}
   1785       1.1  wrstuden 	return (error);
   1786       1.1  wrstuden }
   1787       1.1  wrstuden 
   1788       1.1  wrstuden /*
   1789       1.1  wrstuden  * Function name:	twa_map_request
   1790       1.1  wrstuden  * Description:		Maps a cmd pkt and data associated with it, into
   1791       1.1  wrstuden  *			DMA'able memory.
   1792       1.1  wrstuden  *
   1793       1.1  wrstuden  * Input:		tr	-- ptr to request pkt
   1794       1.1  wrstuden  * Output:		None
   1795       1.1  wrstuden  * Return value:	0	-- success
   1796       1.1  wrstuden  *			non-zero-- failure
   1797       1.1  wrstuden  */
   1798       1.1  wrstuden int
   1799       1.1  wrstuden twa_map_request(struct twa_request *tr)
   1800       1.1  wrstuden {
   1801       1.1  wrstuden 	struct twa_softc	*sc = tr->tr_sc;
   1802      1.39      para 	int			 s, rv, rc;
   1803       1.1  wrstuden 
   1804       1.1  wrstuden 	/* If the command involves data, map that too. */
   1805       1.1  wrstuden 	if (tr->tr_data != NULL) {
   1806       1.1  wrstuden 
   1807       1.1  wrstuden 		if (((u_long)tr->tr_data & (511)) != 0) {
   1808       1.1  wrstuden 			tr->tr_flags |= TWA_CMD_DATA_COPY_NEEDED;
   1809       1.1  wrstuden 			tr->tr_real_data = tr->tr_data;
   1810       1.1  wrstuden 			tr->tr_real_length = tr->tr_length;
   1811       1.1  wrstuden 			s = splvm();
   1812      1.39      para 			rc = uvm_km_kmem_alloc(kmem_va_arena,
   1813      1.39      para 			    tr->tr_length, (VM_NOSLEEP | VM_INSTANTFIT),
   1814      1.39      para 			    (vmem_addr_t *)&tr->tr_data);
   1815       1.1  wrstuden 			splx(s);
   1816       1.1  wrstuden 
   1817      1.39      para 			if (rc != 0) {
   1818       1.1  wrstuden 				tr->tr_data = tr->tr_real_data;
   1819       1.1  wrstuden 				tr->tr_length = tr->tr_real_length;
   1820       1.1  wrstuden 				return(ENOMEM);
   1821       1.1  wrstuden 			}
   1822       1.1  wrstuden 			if ((tr->tr_flags & TWA_CMD_DATA_IN) != 0)
   1823       1.1  wrstuden 				memcpy(tr->tr_data, tr->tr_real_data,
   1824       1.1  wrstuden 					tr->tr_length);
   1825       1.1  wrstuden 		}
   1826       1.1  wrstuden 
   1827       1.1  wrstuden 		/*
   1828       1.1  wrstuden 		 * Map the data buffer into bus space and build the S/G list.
   1829       1.1  wrstuden 		 */
   1830       1.1  wrstuden 		rv = bus_dmamap_load(sc->twa_dma_tag, tr->tr_dma_map,
   1831      1.22     joerg 			tr->tr_data, tr->tr_length, NULL,
   1832      1.22     joerg 			BUS_DMA_NOWAIT | BUS_DMA_STREAMING);
   1833       1.1  wrstuden 
   1834       1.1  wrstuden 		if (rv != 0) {
   1835       1.1  wrstuden 			if ((tr->tr_flags & TWA_CMD_DATA_COPY_NEEDED) != 0) {
   1836       1.1  wrstuden 				s = splvm();
   1837      1.39      para 				uvm_km_kmem_free(kmem_va_arena,
   1838      1.53   msaitoh 				    (vaddr_t)tr->tr_data, tr->tr_length);
   1839       1.1  wrstuden 				splx(s);
   1840       1.1  wrstuden 			}
   1841       1.1  wrstuden 			return (rv);
   1842       1.1  wrstuden 		}
   1843       1.1  wrstuden 
   1844       1.1  wrstuden 		if ((rv = twa_setup_data_dmamap(tr,
   1845       1.1  wrstuden 				tr->tr_dma_map->dm_segs,
   1846      1.21     joerg 				tr->tr_dma_map->dm_nsegs))) {
   1847       1.1  wrstuden 
   1848       1.1  wrstuden 			if (tr->tr_flags & TWA_CMD_DATA_COPY_NEEDED) {
   1849       1.9    bouyer 				s = splvm();
   1850      1.53   msaitoh 				uvm_km_kmem_free(kmem_va_arena,
   1851      1.53   msaitoh 				    (vaddr_t)tr->tr_data, tr->tr_length);
   1852       1.9    bouyer 				splx(s);
   1853       1.1  wrstuden 				tr->tr_data = tr->tr_real_data;
   1854       1.1  wrstuden 				tr->tr_length = tr->tr_real_length;
   1855       1.1  wrstuden 			}
   1856      1.21     joerg 		}
   1857       1.1  wrstuden 
   1858       1.1  wrstuden 	} else
   1859       1.1  wrstuden 		if ((rv = twa_submit_io(tr)))
   1860       1.1  wrstuden 			twa_unmap_request(tr);
   1861       1.1  wrstuden 
   1862       1.1  wrstuden 	return (rv);
   1863       1.1  wrstuden }
   1864       1.1  wrstuden 
   1865       1.1  wrstuden /*
   1866       1.1  wrstuden  * Function name:	twa_intr
   1867       1.1  wrstuden  * Description:		Interrupt handler.  Determines the kind of interrupt,
   1868       1.1  wrstuden  *			and calls the appropriate handler.
   1869       1.1  wrstuden  *
   1870       1.1  wrstuden  * Input:		sc	-- ptr to per ctlr structure
   1871       1.1  wrstuden  * Output:		None
   1872       1.1  wrstuden  * Return value:	None
   1873       1.1  wrstuden  */
   1874       1.1  wrstuden 
   1875       1.1  wrstuden static int
   1876       1.1  wrstuden twa_intr(void *arg)
   1877       1.1  wrstuden {
   1878      1.47   hannken 	int	caught, s, rv __diagused;
   1879       1.1  wrstuden 	struct twa_softc *sc;
   1880       1.7    simonb 	uint32_t	status_reg;
   1881       1.1  wrstuden 	sc = (struct twa_softc *)arg;
   1882       1.1  wrstuden 
   1883       1.1  wrstuden 	caught = 0;
   1884       1.1  wrstuden 	/* Collect current interrupt status. */
   1885       1.1  wrstuden 	status_reg = twa_inl(sc, TWA_STATUS_REGISTER_OFFSET);
   1886       1.1  wrstuden 	if (twa_check_ctlr_state(sc, status_reg)) {
   1887       1.1  wrstuden 		caught = 1;
   1888       1.1  wrstuden 		goto bail;
   1889       1.1  wrstuden 	}
   1890       1.1  wrstuden 	/* Dispatch based on the kind of interrupt. */
   1891       1.1  wrstuden 	if (status_reg & TWA_STATUS_HOST_INTERRUPT) {
   1892       1.1  wrstuden 		twa_outl(sc, TWA_CONTROL_REGISTER_OFFSET,
   1893       1.1  wrstuden 			TWA_CONTROL_CLEAR_HOST_INTERRUPT);
   1894       1.1  wrstuden 		caught = 1;
   1895       1.1  wrstuden 	}
   1896       1.1  wrstuden 	if ((status_reg & TWA_STATUS_ATTENTION_INTERRUPT) != 0) {
   1897       1.1  wrstuden 		twa_outl(sc, TWA_CONTROL_REGISTER_OFFSET,
   1898       1.1  wrstuden 			TWA_CONTROL_CLEAR_ATTENTION_INTERRUPT);
   1899       1.1  wrstuden 		rv = twa_fetch_aen(sc);
   1900       1.1  wrstuden #ifdef DIAGNOSTIC
   1901       1.1  wrstuden 		if (rv != 0)
   1902       1.1  wrstuden 			printf("%s: unable to retrieve AEN (%d)\n",
   1903      1.41  jakllsch 				device_xname(sc->twa_dv), rv);
   1904       1.1  wrstuden #endif
   1905       1.1  wrstuden 		caught = 1;
   1906       1.1  wrstuden 	}
   1907       1.1  wrstuden 	if (status_reg & TWA_STATUS_COMMAND_INTERRUPT) {
   1908       1.1  wrstuden 		/* Start any requests that might be in the pending queue. */
   1909       1.1  wrstuden 		twa_outl(sc, TWA_CONTROL_REGISTER_OFFSET,
   1910       1.1  wrstuden 			TWA_CONTROL_MASK_COMMAND_INTERRUPT);
   1911       1.1  wrstuden 		(void)twa_drain_pending_queue(sc);
   1912       1.1  wrstuden 		caught = 1;
   1913       1.1  wrstuden 	}
   1914       1.1  wrstuden 	if (status_reg & TWA_STATUS_RESPONSE_INTERRUPT) {
   1915       1.8  wrstuden 		s = splbio();
   1916       1.1  wrstuden 		twa_done(sc);
   1917       1.8  wrstuden 		splx(s);
   1918       1.1  wrstuden 		caught = 1;
   1919       1.1  wrstuden 	}
   1920       1.1  wrstuden bail:
   1921       1.1  wrstuden 	return (caught);
   1922       1.1  wrstuden }
   1923       1.1  wrstuden 
   1924       1.1  wrstuden /*
   1925       1.1  wrstuden  * Accept an open operation on the control device.
   1926       1.1  wrstuden  */
   1927       1.2  wrstuden static int
   1928      1.16  christos twaopen(dev_t dev, int flag, int mode, struct lwp *l)
   1929       1.1  wrstuden {
   1930       1.1  wrstuden 	struct twa_softc *twa;
   1931       1.1  wrstuden 
   1932      1.24   tsutsui 	if ((twa = device_lookup_private(&twa_cd, minor(dev))) == NULL)
   1933       1.1  wrstuden 		return (ENXIO);
   1934      1.21     joerg 	if ((twa->twa_sc_flags & TWA_STATE_OPEN) != 0)
   1935      1.21     joerg 		return (EBUSY);
   1936       1.1  wrstuden 
   1937       1.1  wrstuden 	twa->twa_sc_flags |= TWA_STATE_OPEN;
   1938       1.1  wrstuden 
   1939       1.1  wrstuden 	return (0);
   1940       1.1  wrstuden }
   1941       1.1  wrstuden 
   1942       1.1  wrstuden /*
   1943       1.1  wrstuden  * Accept the last close on the control device.
   1944       1.1  wrstuden  */
   1945       1.2  wrstuden static int
   1946      1.16  christos twaclose(dev_t dev, int flag, int mode,
   1947      1.16  christos     struct lwp *l)
   1948       1.1  wrstuden {
   1949       1.1  wrstuden 	struct twa_softc *twa;
   1950       1.1  wrstuden 
   1951      1.24   tsutsui 	twa = device_lookup_private(&twa_cd, minor(dev));
   1952       1.1  wrstuden 	twa->twa_sc_flags &= ~TWA_STATE_OPEN;
   1953       1.1  wrstuden 	return (0);
   1954       1.1  wrstuden }
   1955       1.1  wrstuden 
   1956       1.1  wrstuden /*
   1957       1.1  wrstuden  * Function name:	twaioctl
   1958       1.1  wrstuden  * Description:		ioctl handler.
   1959       1.1  wrstuden  *
   1960       1.1  wrstuden  * Input:		sc	-- ptr to per ctlr structure
   1961       1.1  wrstuden  *			cmd	-- ioctl cmd
   1962       1.1  wrstuden  *			buf	-- ptr to buffer in kernel memory, which is
   1963       1.1  wrstuden  *				   a copy of the input buffer in user-space
   1964       1.1  wrstuden  * Output:		buf	-- ptr to buffer in kernel memory, which will
   1965       1.1  wrstuden  *				   be copied of the output buffer in user-space
   1966       1.1  wrstuden  * Return value:	0	-- success
   1967       1.1  wrstuden  *			non-zero-- failure
   1968       1.1  wrstuden  */
   1969       1.2  wrstuden static int
   1970      1.17  christos twaioctl(dev_t dev, u_long cmd, void *data, int flag,
   1971      1.16  christos     struct lwp *l)
   1972       1.1  wrstuden {
   1973       1.1  wrstuden 	struct twa_softc *sc;
   1974       1.1  wrstuden 	struct twa_ioctl_9k	*user_buf = (struct twa_ioctl_9k *)data;
   1975       1.1  wrstuden 	struct tw_cl_event_packet event_buf;
   1976       1.1  wrstuden 	struct twa_request 	*tr = 0;
   1977       1.1  wrstuden 	int32_t			event_index = 0;
   1978       1.1  wrstuden 	int32_t			start_index;
   1979       1.1  wrstuden 	int			s, error = 0;
   1980       1.1  wrstuden 
   1981      1.24   tsutsui 	sc = device_lookup_private(&twa_cd, minor(dev));
   1982       1.1  wrstuden 
   1983       1.1  wrstuden 	switch (cmd) {
   1984       1.1  wrstuden 	case TW_OSL_IOCTL_FIRMWARE_PASS_THROUGH:
   1985       1.1  wrstuden 	{
   1986       1.1  wrstuden 		struct twa_command_packet	*cmdpkt;
   1987       1.7    simonb 		uint32_t			data_buf_size_adjusted;
   1988       1.1  wrstuden 
   1989       1.1  wrstuden 		/* Get a request packet */
   1990       1.1  wrstuden 		tr = twa_get_request_wait(sc, 0);
   1991       1.1  wrstuden 		KASSERT(tr != NULL);
   1992       1.1  wrstuden 		/*
   1993       1.1  wrstuden 		 * Make sure that the data buffer sent to firmware is a
   1994       1.1  wrstuden 		 * 512 byte multiple in size.
   1995       1.1  wrstuden 		 */
   1996       1.1  wrstuden 		data_buf_size_adjusted =
   1997       1.1  wrstuden 			(user_buf->twa_drvr_pkt.buffer_length + 511) & ~511;
   1998       1.1  wrstuden 
   1999       1.1  wrstuden 		if ((tr->tr_length = data_buf_size_adjusted)) {
   2000       1.1  wrstuden 			if ((tr->tr_data = malloc(data_buf_size_adjusted,
   2001       1.1  wrstuden 			    M_DEVBUF, M_WAITOK)) == NULL) {
   2002       1.1  wrstuden 				error = ENOMEM;
   2003       1.1  wrstuden 				goto fw_passthru_done;
   2004       1.1  wrstuden 			}
   2005       1.1  wrstuden 			/* Copy the payload. */
   2006       1.1  wrstuden 			if ((error = copyin((void *) (user_buf->pdata),
   2007       1.1  wrstuden 				(void *) (tr->tr_data),
   2008       1.1  wrstuden 				user_buf->twa_drvr_pkt.buffer_length)) != 0) {
   2009       1.1  wrstuden 					goto fw_passthru_done;
   2010       1.1  wrstuden 			}
   2011       1.1  wrstuden 			tr->tr_flags |= TWA_CMD_DATA_IN | TWA_CMD_DATA_OUT;
   2012       1.1  wrstuden 		}
   2013       1.1  wrstuden 		tr->tr_cmd_pkt_type |= TWA_CMD_PKT_TYPE_IOCTL;
   2014       1.1  wrstuden 		cmdpkt = tr->tr_command;
   2015       1.1  wrstuden 
   2016       1.1  wrstuden 		/* Copy the command packet. */
   2017       1.1  wrstuden 		memcpy(cmdpkt, &(user_buf->twa_cmd_pkt),
   2018       1.1  wrstuden 			sizeof(struct twa_command_packet));
   2019       1.1  wrstuden 		cmdpkt->command.cmd_pkt_7k.generic.request_id =
   2020       1.1  wrstuden 			tr->tr_request_id;
   2021       1.1  wrstuden 
   2022       1.1  wrstuden 		/* Send down the request, and wait for it to complete. */
   2023       1.1  wrstuden 		if ((error = twa_wait_request(tr, TWA_REQUEST_TIMEOUT_PERIOD))) 		{
   2024       1.1  wrstuden 			if (error == ETIMEDOUT)
   2025       1.1  wrstuden 				break; /* clean-up done by twa_wait_request */
   2026       1.1  wrstuden 			goto fw_passthru_done;
   2027       1.1  wrstuden 		}
   2028       1.1  wrstuden 
   2029       1.1  wrstuden 		/* Copy the command packet back into user space. */
   2030       1.1  wrstuden 		memcpy(&user_buf->twa_cmd_pkt, cmdpkt,
   2031       1.1  wrstuden 			sizeof(struct twa_command_packet));
   2032       1.1  wrstuden 
   2033       1.1  wrstuden 		/* If there was a payload, copy it back too. */
   2034       1.1  wrstuden 		if (tr->tr_length)
   2035       1.1  wrstuden 			error = copyout(tr->tr_data, user_buf->pdata,
   2036       1.1  wrstuden 					user_buf->twa_drvr_pkt.buffer_length);
   2037       1.1  wrstuden fw_passthru_done:
   2038       1.1  wrstuden 		/* Free resources. */
   2039       1.1  wrstuden 		if (tr->tr_data)
   2040       1.1  wrstuden 			free(tr->tr_data, M_DEVBUF);
   2041       1.1  wrstuden 
   2042       1.1  wrstuden 		if (tr)
   2043       1.1  wrstuden 			twa_release_request(tr);
   2044       1.1  wrstuden 		break;
   2045       1.1  wrstuden 	}
   2046       1.1  wrstuden 
   2047       1.1  wrstuden 	case TW_OSL_IOCTL_SCAN_BUS:
   2048      1.54  pgoyette 		twa_request_bus_scan(sc->twa_dv, "twa", 0);
   2049       1.1  wrstuden 		break;
   2050       1.1  wrstuden 
   2051       1.1  wrstuden 	case TW_CL_IOCTL_GET_FIRST_EVENT:
   2052       1.1  wrstuden 		if (sc->twa_aen_queue_wrapped) {
   2053       1.1  wrstuden 			if (sc->twa_aen_queue_overflow) {
   2054       1.1  wrstuden 				/*
   2055       1.1  wrstuden 				 * The aen queue has wrapped, even before some
   2056       1.1  wrstuden 				 * events have been retrieved.  Let the caller
   2057       1.1  wrstuden 				 * know that he missed out on some AEN's.
   2058       1.1  wrstuden 				 */
   2059       1.1  wrstuden 				user_buf->twa_drvr_pkt.status =
   2060       1.1  wrstuden 					TWA_ERROR_AEN_OVERFLOW;
   2061       1.1  wrstuden 				sc->twa_aen_queue_overflow = FALSE;
   2062       1.1  wrstuden 			} else
   2063       1.1  wrstuden 				user_buf->twa_drvr_pkt.status = 0;
   2064       1.1  wrstuden 			event_index = sc->twa_aen_head;
   2065       1.1  wrstuden 		} else {
   2066       1.1  wrstuden 			if (sc->twa_aen_head == sc->twa_aen_tail) {
   2067       1.1  wrstuden 				user_buf->twa_drvr_pkt.status =
   2068       1.1  wrstuden 					TWA_ERROR_AEN_NO_EVENTS;
   2069       1.1  wrstuden 				break;
   2070       1.1  wrstuden 			}
   2071       1.1  wrstuden 			user_buf->twa_drvr_pkt.status = 0;
   2072       1.1  wrstuden 			event_index = sc->twa_aen_tail;	/* = 0 */
   2073       1.1  wrstuden 		}
   2074       1.1  wrstuden 		if ((error = copyout(sc->twa_aen_queue[event_index],
   2075       1.6    simonb 		    user_buf->pdata, sizeof(struct tw_cl_event_packet))) != 0)
   2076       1.6    simonb 			(sc->twa_aen_queue[event_index])->retrieved =
   2077       1.6    simonb 			    TWA_AEN_RETRIEVED;
   2078       1.1  wrstuden 		break;
   2079       1.1  wrstuden 
   2080       1.1  wrstuden 	case TW_CL_IOCTL_GET_LAST_EVENT:
   2081       1.1  wrstuden 		if (sc->twa_aen_queue_wrapped) {
   2082       1.1  wrstuden 			if (sc->twa_aen_queue_overflow) {
   2083       1.1  wrstuden 				/*
   2084       1.1  wrstuden 				 * The aen queue has wrapped, even before some
   2085       1.1  wrstuden 				 * events have been retrieved.  Let the caller
   2086       1.1  wrstuden 				 * know that he missed out on some AEN's.
   2087       1.1  wrstuden 				 */
   2088       1.1  wrstuden 				user_buf->twa_drvr_pkt.status =
   2089       1.1  wrstuden 					TWA_ERROR_AEN_OVERFLOW;
   2090       1.1  wrstuden 				sc->twa_aen_queue_overflow = FALSE;
   2091       1.1  wrstuden 			} else
   2092       1.1  wrstuden 				user_buf->twa_drvr_pkt.status = 0;
   2093       1.1  wrstuden 		} else {
   2094       1.1  wrstuden 			if (sc->twa_aen_head == sc->twa_aen_tail) {
   2095       1.1  wrstuden 				user_buf->twa_drvr_pkt.status =
   2096       1.1  wrstuden 					TWA_ERROR_AEN_NO_EVENTS;
   2097       1.1  wrstuden 				break;
   2098       1.1  wrstuden 			}
   2099       1.1  wrstuden 			user_buf->twa_drvr_pkt.status = 0;
   2100       1.1  wrstuden 		}
   2101       1.6    simonb 		event_index =
   2102       1.6    simonb 		    (sc->twa_aen_head - 1 + TWA_Q_LENGTH) % TWA_Q_LENGTH;
   2103       1.6    simonb 		if ((error = copyout(sc->twa_aen_queue[event_index],
   2104       1.6    simonb 		    user_buf->pdata, sizeof(struct tw_cl_event_packet))) != 0)
   2105       1.6    simonb 			(sc->twa_aen_queue[event_index])->retrieved =
   2106       1.6    simonb 			    TWA_AEN_RETRIEVED;
   2107       1.1  wrstuden 		break;
   2108       1.1  wrstuden 
   2109       1.1  wrstuden 	case TW_CL_IOCTL_GET_NEXT_EVENT:
   2110       1.1  wrstuden 		user_buf->twa_drvr_pkt.status = 0;
   2111       1.1  wrstuden 		if (sc->twa_aen_queue_wrapped) {
   2112       1.1  wrstuden 
   2113       1.1  wrstuden 			if (sc->twa_aen_queue_overflow) {
   2114       1.1  wrstuden 				/*
   2115       1.1  wrstuden 				 * The aen queue has wrapped, even before some
   2116       1.1  wrstuden 				 * events have been retrieved.  Let the caller
   2117       1.1  wrstuden 				 * know that he missed out on some AEN's.
   2118       1.1  wrstuden 				 */
   2119       1.1  wrstuden 				user_buf->twa_drvr_pkt.status =
   2120       1.1  wrstuden 					TWA_ERROR_AEN_OVERFLOW;
   2121       1.1  wrstuden 				sc->twa_aen_queue_overflow = FALSE;
   2122       1.1  wrstuden 			}
   2123       1.1  wrstuden 			start_index = sc->twa_aen_head;
   2124       1.1  wrstuden 		} else {
   2125       1.1  wrstuden 			if (sc->twa_aen_head == sc->twa_aen_tail) {
   2126       1.1  wrstuden 				user_buf->twa_drvr_pkt.status =
   2127       1.1  wrstuden 					TWA_ERROR_AEN_NO_EVENTS;
   2128       1.1  wrstuden 				break;
   2129       1.1  wrstuden 			}
   2130       1.1  wrstuden 			start_index = sc->twa_aen_tail;	/* = 0 */
   2131       1.1  wrstuden 		}
   2132       1.1  wrstuden 		error = copyin(user_buf->pdata, &event_buf,
   2133       1.1  wrstuden 				sizeof(struct tw_cl_event_packet));
   2134       1.1  wrstuden 
   2135       1.1  wrstuden 		event_index = (start_index + event_buf.sequence_id -
   2136       1.6    simonb 		    (sc->twa_aen_queue[start_index])->sequence_id + 1)
   2137       1.6    simonb 		    % TWA_Q_LENGTH;
   2138       1.1  wrstuden 
   2139       1.6    simonb 		if (!((sc->twa_aen_queue[event_index])->sequence_id >
   2140       1.6    simonb 		    event_buf.sequence_id)) {
   2141       1.6    simonb 			if (user_buf->twa_drvr_pkt.status ==
   2142       1.6    simonb 			    TWA_ERROR_AEN_OVERFLOW)
   2143       1.6    simonb 				/* so we report the overflow next time */
   2144       1.6    simonb 				sc->twa_aen_queue_overflow = TRUE;
   2145       1.6    simonb 			user_buf->twa_drvr_pkt.status = TWA_ERROR_AEN_NO_EVENTS;
   2146       1.1  wrstuden 			break;
   2147       1.1  wrstuden 		}
   2148       1.6    simonb 		if ((error = copyout(sc->twa_aen_queue[event_index],
   2149       1.6    simonb 		    user_buf->pdata, sizeof(struct tw_cl_event_packet))) != 0)
   2150       1.6    simonb 			(sc->twa_aen_queue[event_index])->retrieved =
   2151       1.6    simonb 			    TWA_AEN_RETRIEVED;
   2152       1.1  wrstuden 		break;
   2153       1.1  wrstuden 
   2154       1.1  wrstuden 	case TW_CL_IOCTL_GET_PREVIOUS_EVENT:
   2155       1.1  wrstuden 		user_buf->twa_drvr_pkt.status = 0;
   2156       1.1  wrstuden 		if (sc->twa_aen_queue_wrapped) {
   2157       1.1  wrstuden 			if (sc->twa_aen_queue_overflow) {
   2158       1.1  wrstuden 				/*
   2159       1.1  wrstuden 				 * The aen queue has wrapped, even before some
   2160       1.1  wrstuden 				 * events have been retrieved.  Let the caller
   2161       1.1  wrstuden 				 * know that he missed out on some AEN's.
   2162       1.1  wrstuden 				 */
   2163       1.1  wrstuden 				user_buf->twa_drvr_pkt.status =
   2164       1.1  wrstuden 					TWA_ERROR_AEN_OVERFLOW;
   2165       1.1  wrstuden 				sc->twa_aen_queue_overflow = FALSE;
   2166       1.1  wrstuden 			}
   2167       1.1  wrstuden 			start_index = sc->twa_aen_head;
   2168       1.1  wrstuden 		} else {
   2169       1.1  wrstuden 			if (sc->twa_aen_head == sc->twa_aen_tail) {
   2170       1.1  wrstuden 				user_buf->twa_drvr_pkt.status =
   2171       1.1  wrstuden 					TWA_ERROR_AEN_NO_EVENTS;
   2172       1.1  wrstuden 				break;
   2173       1.1  wrstuden 			}
   2174       1.1  wrstuden 			start_index = sc->twa_aen_tail;	/* = 0 */
   2175       1.1  wrstuden 		}
   2176       1.1  wrstuden 		if ((error = copyin(user_buf->pdata, &event_buf,
   2177       1.1  wrstuden 				sizeof(struct tw_cl_event_packet))) != 0)
   2178       1.1  wrstuden 
   2179       1.1  wrstuden 		event_index = (start_index + event_buf.sequence_id -
   2180       1.6    simonb 		    (sc->twa_aen_queue[start_index])->sequence_id - 1)
   2181       1.6    simonb 		    % TWA_Q_LENGTH;
   2182       1.6    simonb 		if (!((sc->twa_aen_queue[event_index])->sequence_id <
   2183       1.6    simonb 		    event_buf.sequence_id)) {
   2184       1.6    simonb 			if (user_buf->twa_drvr_pkt.status ==
   2185       1.6    simonb 			    TWA_ERROR_AEN_OVERFLOW)
   2186       1.6    simonb 				/* so we report the overflow next time */
   2187       1.6    simonb 				sc->twa_aen_queue_overflow = TRUE;
   2188       1.1  wrstuden 			user_buf->twa_drvr_pkt.status =
   2189       1.1  wrstuden 				TWA_ERROR_AEN_NO_EVENTS;
   2190       1.1  wrstuden 			break;
   2191       1.1  wrstuden 		}
   2192       1.6    simonb 		if ((error = copyout(sc->twa_aen_queue [event_index],
   2193       1.6    simonb 		    user_buf->pdata, sizeof(struct tw_cl_event_packet))) != 0)
   2194      1.53   msaitoh 			aprint_error_dev(sc->twa_dv, "get_previous: Could not "
   2195      1.53   msaitoh 			    "copyout to event_buf. error = %x\n", error);
   2196       1.1  wrstuden 		(sc->twa_aen_queue[event_index])->retrieved = TWA_AEN_RETRIEVED;
   2197       1.1  wrstuden 		break;
   2198       1.1  wrstuden 
   2199       1.1  wrstuden 	case TW_CL_IOCTL_GET_LOCK:
   2200       1.1  wrstuden 	{
   2201       1.1  wrstuden 		struct tw_cl_lock_packet	twa_lock;
   2202       1.1  wrstuden 
   2203       1.1  wrstuden 		copyin(user_buf->pdata, &twa_lock,
   2204       1.1  wrstuden 				sizeof(struct tw_cl_lock_packet));
   2205       1.1  wrstuden 		s = splbio();
   2206       1.1  wrstuden 		if ((sc->twa_ioctl_lock.lock == TWA_LOCK_FREE) ||
   2207       1.1  wrstuden 			(twa_lock.force_flag) ||
   2208       1.4    simonb 			(time_second >= sc->twa_ioctl_lock.timeout)) {
   2209       1.1  wrstuden 
   2210       1.1  wrstuden 			sc->twa_ioctl_lock.lock = TWA_LOCK_HELD;
   2211       1.4    simonb 			sc->twa_ioctl_lock.timeout = time_second +
   2212       1.1  wrstuden 				(twa_lock.timeout_msec / 1000);
   2213       1.1  wrstuden 			twa_lock.time_remaining_msec = twa_lock.timeout_msec;
   2214       1.1  wrstuden 			user_buf->twa_drvr_pkt.status = 0;
   2215       1.1  wrstuden 		} else {
   2216       1.1  wrstuden 			twa_lock.time_remaining_msec =
   2217       1.4    simonb 				(sc->twa_ioctl_lock.timeout - time_second) *
   2218       1.1  wrstuden 				1000;
   2219       1.1  wrstuden 			user_buf->twa_drvr_pkt.status =
   2220       1.1  wrstuden 					TWA_ERROR_IOCTL_LOCK_ALREADY_HELD;
   2221       1.1  wrstuden 		}
   2222       1.1  wrstuden 		splx(s);
   2223       1.1  wrstuden 		copyout(&twa_lock, user_buf->pdata,
   2224       1.1  wrstuden 				sizeof(struct tw_cl_lock_packet));
   2225       1.1  wrstuden 		break;
   2226       1.1  wrstuden 	}
   2227       1.1  wrstuden 
   2228       1.1  wrstuden 	case TW_CL_IOCTL_RELEASE_LOCK:
   2229       1.1  wrstuden 		s = splbio();
   2230       1.1  wrstuden 		if (sc->twa_ioctl_lock.lock == TWA_LOCK_FREE) {
   2231       1.1  wrstuden 			user_buf->twa_drvr_pkt.status =
   2232       1.1  wrstuden 				TWA_ERROR_IOCTL_LOCK_NOT_HELD;
   2233       1.1  wrstuden 		} else {
   2234       1.1  wrstuden 			sc->twa_ioctl_lock.lock = TWA_LOCK_FREE;
   2235       1.1  wrstuden 			user_buf->twa_drvr_pkt.status = 0;
   2236       1.1  wrstuden 		}
   2237       1.1  wrstuden 		splx(s);
   2238       1.1  wrstuden 		break;
   2239       1.1  wrstuden 
   2240       1.1  wrstuden 	case TW_CL_IOCTL_GET_COMPATIBILITY_INFO:
   2241       1.1  wrstuden 	{
   2242       1.1  wrstuden 		struct tw_cl_compatibility_packet	comp_pkt;
   2243       1.1  wrstuden 
   2244       1.1  wrstuden 		memcpy(comp_pkt.driver_version, TWA_DRIVER_VERSION_STRING,
   2245       1.1  wrstuden 					sizeof(TWA_DRIVER_VERSION_STRING));
   2246       1.1  wrstuden 		comp_pkt.working_srl = sc->working_srl;
   2247       1.1  wrstuden 		comp_pkt.working_branch = sc->working_branch;
   2248       1.1  wrstuden 		comp_pkt.working_build = sc->working_build;
   2249       1.1  wrstuden 		user_buf->twa_drvr_pkt.status = 0;
   2250       1.1  wrstuden 
   2251       1.1  wrstuden 		/* Copy compatibility information to user space. */
   2252       1.1  wrstuden 		copyout(&comp_pkt, user_buf->pdata,
   2253      1.56  riastrad 				uimin(sizeof(struct tw_cl_compatibility_packet),
   2254       1.1  wrstuden 					user_buf->twa_drvr_pkt.buffer_length));
   2255       1.1  wrstuden 		break;
   2256       1.1  wrstuden 	}
   2257       1.1  wrstuden 
   2258       1.1  wrstuden 	case TWA_IOCTL_GET_UNITNAME:	/* WASABI EXTENSION */
   2259       1.1  wrstuden 	{
   2260       1.1  wrstuden 		struct twa_unitname	*tn;
   2261       1.1  wrstuden 		struct twa_drive	*tdr;
   2262       1.1  wrstuden 
   2263       1.1  wrstuden 		tn = (struct twa_unitname *)data;
   2264       1.1  wrstuden 			/* XXX mutex */
   2265      1.21     joerg 		if (tn->tn_unit < 0 || tn->tn_unit >= sc->sc_nunits)
   2266       1.1  wrstuden 			return (EINVAL);
   2267       1.1  wrstuden 		tdr = &sc->sc_units[tn->tn_unit];
   2268       1.1  wrstuden 		if (tdr->td_dev == NULL)
   2269       1.1  wrstuden 			tn->tn_name[0] = '\0';
   2270       1.1  wrstuden 		else
   2271      1.19    cegger 			strlcpy(tn->tn_name, device_xname(tdr->td_dev),
   2272       1.1  wrstuden 			    sizeof(tn->tn_name));
   2273       1.1  wrstuden 		return (0);
   2274       1.1  wrstuden 	}
   2275       1.1  wrstuden 
   2276       1.1  wrstuden 	default:
   2277       1.1  wrstuden 		/* Unknown opcode. */
   2278       1.1  wrstuden 		error = ENOTTY;
   2279       1.1  wrstuden 	}
   2280       1.1  wrstuden 
   2281       1.1  wrstuden 	return(error);
   2282       1.1  wrstuden }
   2283       1.1  wrstuden 
   2284       1.2  wrstuden const struct cdevsw twa_cdevsw = {
   2285      1.48  dholland 	.d_open = twaopen,
   2286      1.48  dholland 	.d_close = twaclose,
   2287      1.48  dholland 	.d_read = noread,
   2288      1.48  dholland 	.d_write = nowrite,
   2289      1.48  dholland 	.d_ioctl = twaioctl,
   2290      1.48  dholland 	.d_stop = nostop,
   2291      1.48  dholland 	.d_tty = notty,
   2292      1.48  dholland 	.d_poll = nopoll,
   2293      1.48  dholland 	.d_mmap = nommap,
   2294      1.48  dholland 	.d_kqfilter = nokqfilter,
   2295      1.50  dholland 	.d_discard = nodiscard,
   2296      1.48  dholland 	.d_flag = D_OTHER
   2297       1.2  wrstuden };
   2298       1.2  wrstuden 
   2299       1.1  wrstuden /*
   2300       1.1  wrstuden  * Function name:	twa_get_param
   2301       1.1  wrstuden  * Description:		Get a firmware parameter.
   2302       1.1  wrstuden  *
   2303       1.1  wrstuden  * Input:		sc		-- ptr to per ctlr structure
   2304       1.1  wrstuden  *			table_id	-- parameter table #
   2305       1.1  wrstuden  *			param_id	-- index of the parameter in the table
   2306       1.1  wrstuden  *			param_size	-- size of the parameter in bytes
   2307       1.1  wrstuden  *			callback	-- ptr to function, if any, to be called
   2308       1.1  wrstuden  *					back on completion; NULL if no callback.
   2309       1.1  wrstuden  * Output:		None
   2310       1.1  wrstuden  * Return value:	ptr to param structure	-- success
   2311       1.1  wrstuden  *			NULL			-- failure
   2312       1.1  wrstuden  */
   2313       1.1  wrstuden static int
   2314       1.1  wrstuden twa_get_param(struct twa_softc *sc, int table_id, int param_id,
   2315       1.6    simonb     size_t param_size, void (* callback)(struct twa_request *tr),
   2316       1.6    simonb     struct twa_param_9k **param)
   2317       1.1  wrstuden {
   2318       1.1  wrstuden 	int			rv = 0;
   2319       1.1  wrstuden 	struct twa_request	*tr;
   2320       1.1  wrstuden 	union twa_command_7k	*cmd;
   2321       1.1  wrstuden 
   2322       1.1  wrstuden 	/* Get a request packet. */
   2323       1.1  wrstuden 	if ((tr = twa_get_request(sc, 0)) == NULL) {
   2324       1.1  wrstuden 		rv = EAGAIN;
   2325       1.1  wrstuden 		goto out;
   2326       1.1  wrstuden 	}
   2327       1.1  wrstuden 
   2328       1.1  wrstuden 	tr->tr_cmd_pkt_type |= TWA_CMD_PKT_TYPE_INTERNAL;
   2329       1.1  wrstuden 
   2330       1.1  wrstuden 	/* Allocate memory to read data into. */
   2331       1.1  wrstuden 	if ((*param = (struct twa_param_9k *)
   2332       1.1  wrstuden 		malloc(TWA_SECTOR_SIZE, M_DEVBUF, M_NOWAIT)) == NULL) {
   2333       1.1  wrstuden 		rv = ENOMEM;
   2334       1.1  wrstuden 		goto out;
   2335       1.1  wrstuden 	}
   2336       1.1  wrstuden 
   2337       1.1  wrstuden 	memset(*param, 0, sizeof(struct twa_param_9k) - 1 + param_size);
   2338       1.1  wrstuden 	tr->tr_data = *param;
   2339       1.1  wrstuden 	tr->tr_length = TWA_SECTOR_SIZE;
   2340       1.1  wrstuden 	tr->tr_flags = TWA_CMD_DATA_IN | TWA_CMD_DATA_OUT;
   2341       1.1  wrstuden 
   2342       1.1  wrstuden 	/* Build the cmd pkt. */
   2343       1.1  wrstuden 	cmd = &(tr->tr_command->command.cmd_pkt_7k);
   2344       1.1  wrstuden 
   2345       1.1  wrstuden 	tr->tr_command->cmd_hdr.header_desc.size_header = 128;
   2346       1.1  wrstuden 
   2347       1.1  wrstuden 	cmd->param.opcode = TWA_OP_GET_PARAM;
   2348       1.1  wrstuden 	cmd->param.sgl_offset = 2;
   2349       1.1  wrstuden 	cmd->param.size = 2;
   2350       1.1  wrstuden 	cmd->param.request_id = tr->tr_request_id;
   2351       1.1  wrstuden 	cmd->param.unit = 0;
   2352       1.1  wrstuden 	cmd->param.param_count = 1;
   2353       1.1  wrstuden 
   2354       1.1  wrstuden 	/* Specify which parameter we need. */
   2355       1.1  wrstuden 	(*param)->table_id = table_id | TWA_9K_PARAM_DESCRIPTOR;
   2356       1.1  wrstuden 	(*param)->parameter_id = param_id;
   2357       1.1  wrstuden 	(*param)->parameter_size_bytes = param_size;
   2358       1.1  wrstuden 
   2359       1.1  wrstuden 	/* Submit the command. */
   2360       1.1  wrstuden 	if (callback == NULL) {
   2361       1.1  wrstuden 		/* There's no call back; wait till the command completes. */
   2362       1.1  wrstuden 		rv = twa_immediate_request(tr, TWA_REQUEST_TIMEOUT_PERIOD);
   2363       1.1  wrstuden 
   2364       1.1  wrstuden 		if (rv != 0)
   2365       1.1  wrstuden 			goto out;
   2366       1.1  wrstuden 
   2367       1.1  wrstuden 		if ((rv = cmd->param.status) != 0) {
   2368       1.1  wrstuden 		     /* twa_drain_complete_queue will have done the unmapping */
   2369       1.1  wrstuden 		     goto out;
   2370       1.1  wrstuden 		}
   2371       1.1  wrstuden 		twa_release_request(tr);
   2372       1.1  wrstuden 		return (rv);
   2373       1.1  wrstuden 	} else {
   2374       1.1  wrstuden 		/* There's a call back.  Simply submit the command. */
   2375       1.1  wrstuden 		tr->tr_callback = callback;
   2376       1.1  wrstuden 		rv = twa_map_request(tr);
   2377       1.1  wrstuden 		return (rv);
   2378       1.1  wrstuden 	}
   2379       1.1  wrstuden out:
   2380       1.1  wrstuden 	if (tr)
   2381       1.1  wrstuden 		twa_release_request(tr);
   2382       1.1  wrstuden 	return(rv);
   2383       1.1  wrstuden }
   2384       1.1  wrstuden 
   2385       1.1  wrstuden /*
   2386       1.1  wrstuden  * Function name:	twa_set_param
   2387       1.1  wrstuden  * Description:		Set a firmware parameter.
   2388       1.1  wrstuden  *
   2389       1.1  wrstuden  * Input:		sc		-- ptr to per ctlr structure
   2390       1.1  wrstuden  *			table_id	-- parameter table #
   2391       1.1  wrstuden  *			param_id	-- index of the parameter in the table
   2392       1.1  wrstuden  *			param_size	-- size of the parameter in bytes
   2393       1.1  wrstuden  *			callback	-- ptr to function, if any, to be called
   2394       1.1  wrstuden  *					back on completion; NULL if no callback.
   2395       1.1  wrstuden  * Output:		None
   2396       1.1  wrstuden  * Return value:	0	-- success
   2397       1.1  wrstuden  *			non-zero-- failure
   2398       1.1  wrstuden  */
   2399       1.1  wrstuden static int
   2400       1.6    simonb twa_set_param(struct twa_softc *sc, int table_id, int param_id, int param_size,
   2401       1.6    simonb     void *data, void (* callback)(struct twa_request *tr))
   2402       1.1  wrstuden {
   2403       1.1  wrstuden 	struct twa_request	*tr;
   2404       1.1  wrstuden 	union twa_command_7k	*cmd;
   2405       1.1  wrstuden 	struct twa_param_9k	*param = NULL;
   2406       1.1  wrstuden 	int			error = ENOMEM;
   2407       1.1  wrstuden 
   2408       1.1  wrstuden 	tr = twa_get_request(sc, 0);
   2409       1.1  wrstuden 	if (tr == NULL)
   2410       1.1  wrstuden 		return (EAGAIN);
   2411       1.1  wrstuden 
   2412       1.1  wrstuden 	tr->tr_cmd_pkt_type |= TWA_CMD_PKT_TYPE_INTERNAL;
   2413       1.1  wrstuden 
   2414       1.1  wrstuden 	/* Allocate memory to send data using. */
   2415       1.1  wrstuden 	if ((param = (struct twa_param_9k *)
   2416       1.1  wrstuden 			malloc(TWA_SECTOR_SIZE, M_DEVBUF, M_NOWAIT)) == NULL)
   2417       1.1  wrstuden 		goto out;
   2418       1.1  wrstuden 	memset(param, 0, sizeof(struct twa_param_9k) - 1 + param_size);
   2419       1.1  wrstuden 	tr->tr_data = param;
   2420       1.1  wrstuden 	tr->tr_length = TWA_SECTOR_SIZE;
   2421       1.1  wrstuden 	tr->tr_flags = TWA_CMD_DATA_IN | TWA_CMD_DATA_OUT;
   2422       1.1  wrstuden 
   2423       1.1  wrstuden 	/* Build the cmd pkt. */
   2424       1.1  wrstuden 	cmd = &(tr->tr_command->command.cmd_pkt_7k);
   2425       1.1  wrstuden 
   2426       1.1  wrstuden 	tr->tr_command->cmd_hdr.header_desc.size_header = 128;
   2427       1.1  wrstuden 
   2428       1.1  wrstuden 	cmd->param.opcode = TWA_OP_SET_PARAM;
   2429       1.1  wrstuden 	cmd->param.sgl_offset = 2;
   2430       1.1  wrstuden 	cmd->param.size = 2;
   2431       1.1  wrstuden 	cmd->param.request_id = tr->tr_request_id;
   2432       1.1  wrstuden 	cmd->param.unit = 0;
   2433       1.1  wrstuden 	cmd->param.param_count = 1;
   2434       1.1  wrstuden 
   2435       1.1  wrstuden 	/* Specify which parameter we want to set. */
   2436       1.1  wrstuden 	param->table_id = table_id | TWA_9K_PARAM_DESCRIPTOR;
   2437       1.1  wrstuden 	param->parameter_id = param_id;
   2438       1.1  wrstuden 	param->parameter_size_bytes = param_size;
   2439       1.1  wrstuden 	memcpy(param->data, data, param_size);
   2440       1.1  wrstuden 
   2441       1.1  wrstuden 	/* Submit the command. */
   2442       1.1  wrstuden 	if (callback == NULL) {
   2443       1.1  wrstuden 		/* There's no call back;  wait till the command completes. */
   2444       1.1  wrstuden 		error = twa_immediate_request(tr, TWA_REQUEST_TIMEOUT_PERIOD);
   2445       1.1  wrstuden 		if (error == ETIMEDOUT)
   2446       1.6    simonb 			/* clean-up done by twa_immediate_request */
   2447       1.6    simonb 			return(error);
   2448       1.1  wrstuden 		if (error)
   2449       1.1  wrstuden 			goto out;
   2450       1.1  wrstuden 		if ((error = cmd->param.status)) {
   2451       1.6    simonb 			/*
   2452       1.6    simonb 			 * twa_drain_complete_queue will have done the
   2453       1.6    simonb 			 * unmapping.
   2454       1.6    simonb 			 */
   2455       1.6    simonb 			goto out;
   2456       1.1  wrstuden 		}
   2457       1.1  wrstuden 		free(param, M_DEVBUF);
   2458       1.1  wrstuden 		twa_release_request(tr);
   2459       1.1  wrstuden 		return(error);
   2460       1.1  wrstuden 	} else {
   2461       1.1  wrstuden 		/* There's a call back.  Simply submit the command. */
   2462       1.1  wrstuden 		tr->tr_callback = callback;
   2463       1.1  wrstuden 		if ((error = twa_map_request(tr)))
   2464       1.1  wrstuden 			goto out;
   2465       1.1  wrstuden 
   2466       1.1  wrstuden 		return (0);
   2467       1.1  wrstuden 	}
   2468       1.1  wrstuden out:
   2469       1.1  wrstuden 	if (param)
   2470       1.1  wrstuden 		free(param, M_DEVBUF);
   2471       1.1  wrstuden 	if (tr)
   2472       1.1  wrstuden 		twa_release_request(tr);
   2473       1.1  wrstuden 	return(error);
   2474       1.1  wrstuden }
   2475       1.1  wrstuden 
   2476       1.1  wrstuden /*
   2477       1.1  wrstuden  * Function name:	twa_init_connection
   2478       1.1  wrstuden  * Description:		Send init_connection cmd to firmware
   2479       1.1  wrstuden  *
   2480       1.1  wrstuden  * Input:		sc		-- ptr to per ctlr structure
   2481       1.1  wrstuden  *			message_credits	-- max # of requests that we might send
   2482       1.1  wrstuden  *					 down simultaneously.  This will be
   2483       1.1  wrstuden  *					 typically set to 256 at init-time or
   2484       1.1  wrstuden  *					after a reset, and to 1 at shutdown-time
   2485       1.1  wrstuden  *			set_features	-- indicates if we intend to use 64-bit
   2486       1.1  wrstuden  *					sg, also indicates if we want to do a
   2487       1.1  wrstuden  *					basic or an extended init_connection;
   2488       1.1  wrstuden  *
   2489       1.1  wrstuden  * Note: The following input/output parameters are valid, only in case of an
   2490       1.1  wrstuden  *		extended init_connection:
   2491       1.1  wrstuden  *
   2492       1.1  wrstuden  *			current_fw_srl		-- srl of fw we are bundled
   2493       1.1  wrstuden  *						with, if any; 0 otherwise
   2494       1.1  wrstuden  *			current_fw_arch_id	-- arch_id of fw we are bundled
   2495       1.1  wrstuden  *						with, if any; 0 otherwise
   2496       1.1  wrstuden  *			current_fw_branch	-- branch # of fw we are bundled
   2497       1.1  wrstuden  *						with, if any; 0 otherwise
   2498       1.1  wrstuden  *			current_fw_build	-- build # of fw we are bundled
   2499       1.1  wrstuden  *						with, if any; 0 otherwise
   2500       1.1  wrstuden  * Output:		fw_on_ctlr_srl		-- srl of fw on ctlr
   2501       1.1  wrstuden  *			fw_on_ctlr_arch_id	-- arch_id of fw on ctlr
   2502       1.1  wrstuden  *			fw_on_ctlr_branch	-- branch # of fw on ctlr
   2503       1.1  wrstuden  *			fw_on_ctlr_build	-- build # of fw on ctlr
   2504       1.1  wrstuden  *			init_connect_result	-- result bitmap of fw response
   2505       1.1  wrstuden  * Return value:	0	-- success
   2506       1.1  wrstuden  *			non-zero-- failure
   2507       1.1  wrstuden  */
   2508       1.1  wrstuden static int
   2509       1.7    simonb twa_init_connection(struct twa_softc *sc, uint16_t message_credits,
   2510       1.7    simonb     uint32_t set_features, uint16_t current_fw_srl,
   2511       1.7    simonb     uint16_t current_fw_arch_id, uint16_t current_fw_branch,
   2512      1.16  christos     uint16_t current_fw_build, uint16_t *fw_on_ctlr_srl,
   2513       1.7    simonb     uint16_t *fw_on_ctlr_arch_id, uint16_t *fw_on_ctlr_branch,
   2514       1.7    simonb     uint16_t *fw_on_ctlr_build, uint32_t *init_connect_result)
   2515       1.1  wrstuden {
   2516       1.1  wrstuden 	struct twa_request		*tr;
   2517       1.1  wrstuden 	struct twa_command_init_connect	*init_connect;
   2518       1.1  wrstuden 	int				error = 1;
   2519       1.1  wrstuden 
   2520       1.1  wrstuden 	/* Get a request packet. */
   2521       1.1  wrstuden 	if ((tr = twa_get_request(sc, 0)) == NULL)
   2522       1.1  wrstuden 		goto out;
   2523       1.1  wrstuden 	tr->tr_cmd_pkt_type |= TWA_CMD_PKT_TYPE_INTERNAL;
   2524       1.1  wrstuden 	/* Build the cmd pkt. */
   2525       1.1  wrstuden 	init_connect = &(tr->tr_command->command.cmd_pkt_7k.init_connect);
   2526       1.1  wrstuden 
   2527       1.1  wrstuden 	tr->tr_command->cmd_hdr.header_desc.size_header = 128;
   2528       1.1  wrstuden 
   2529       1.1  wrstuden 	init_connect->opcode = TWA_OP_INIT_CONNECTION;
   2530       1.1  wrstuden    	init_connect->request_id = tr->tr_request_id;
   2531       1.1  wrstuden 	init_connect->message_credits = message_credits;
   2532       1.1  wrstuden 	init_connect->features = set_features;
   2533      1.25     joerg 	if (TWA_64BIT_ADDRESSES)
   2534       1.1  wrstuden 		init_connect->features |= TWA_64BIT_SG_ADDRESSES;
   2535       1.1  wrstuden 	if (set_features & TWA_EXTENDED_INIT_CONNECT) {
   2536       1.1  wrstuden 		/*
   2537       1.1  wrstuden 		 * Fill in the extra fields needed for
   2538       1.1  wrstuden 		 * an extended init_connect.
   2539       1.1  wrstuden 		 */
   2540       1.1  wrstuden 		init_connect->size = 6;
   2541       1.1  wrstuden 		init_connect->fw_srl = current_fw_srl;
   2542       1.1  wrstuden 		init_connect->fw_arch_id = current_fw_arch_id;
   2543       1.1  wrstuden 		init_connect->fw_branch = current_fw_branch;
   2544       1.1  wrstuden 	} else
   2545       1.1  wrstuden 		init_connect->size = 3;
   2546       1.1  wrstuden 
   2547       1.1  wrstuden 	/* Submit the command, and wait for it to complete. */
   2548       1.1  wrstuden 	error = twa_immediate_request(tr, TWA_REQUEST_TIMEOUT_PERIOD);
   2549       1.1  wrstuden 	if (error == ETIMEDOUT)
   2550       1.1  wrstuden 		return(error); /* clean-up done by twa_immediate_request */
   2551       1.1  wrstuden 	if (error)
   2552       1.1  wrstuden 		goto out;
   2553       1.1  wrstuden 	if ((error = init_connect->status)) {
   2554       1.6    simonb 		/* twa_drain_complete_queue will have done the unmapping */
   2555       1.6    simonb 		goto out;
   2556       1.1  wrstuden 	}
   2557       1.1  wrstuden 	if (set_features & TWA_EXTENDED_INIT_CONNECT) {
   2558       1.1  wrstuden 		*fw_on_ctlr_srl = init_connect->fw_srl;
   2559       1.1  wrstuden 		*fw_on_ctlr_arch_id = init_connect->fw_arch_id;
   2560       1.1  wrstuden 		*fw_on_ctlr_branch = init_connect->fw_branch;
   2561       1.1  wrstuden 		*fw_on_ctlr_build = init_connect->fw_build;
   2562       1.1  wrstuden 		*init_connect_result = init_connect->result;
   2563       1.1  wrstuden 	}
   2564       1.1  wrstuden 	twa_release_request(tr);
   2565       1.1  wrstuden 	return(error);
   2566       1.1  wrstuden 
   2567       1.1  wrstuden out:
   2568       1.1  wrstuden 	if (tr)
   2569       1.1  wrstuden 		twa_release_request(tr);
   2570       1.1  wrstuden 	return(error);
   2571       1.1  wrstuden }
   2572       1.1  wrstuden 
   2573       1.1  wrstuden static int
   2574       1.1  wrstuden twa_reset(struct twa_softc *sc)
   2575       1.1  wrstuden {
   2576       1.1  wrstuden 	int	s;
   2577       1.1  wrstuden 	int	error = 0;
   2578       1.1  wrstuden 
   2579      1.21     joerg 	/* Set the 'in reset' flag. */
   2580      1.21     joerg 	sc->twa_sc_flags |= TWA_STATE_IN_RESET;
   2581      1.21     joerg 
   2582       1.1  wrstuden 	/*
   2583       1.1  wrstuden 	 * Disable interrupts from the controller, and mask any
   2584       1.1  wrstuden 	 * accidental entry into our interrupt handler.
   2585       1.1  wrstuden 	 */
   2586       1.1  wrstuden 	twa_outl(sc, TWA_CONTROL_REGISTER_OFFSET,
   2587       1.1  wrstuden 		TWA_CONTROL_DISABLE_INTERRUPTS);
   2588       1.1  wrstuden 
   2589       1.1  wrstuden 	s = splbio();
   2590       1.1  wrstuden 
   2591       1.1  wrstuden 	/* Soft reset the controller. */
   2592       1.1  wrstuden 	if ((error = twa_soft_reset(sc)))
   2593       1.1  wrstuden 		goto out;
   2594       1.1  wrstuden 
   2595       1.1  wrstuden 	/* Re-establish logical connection with the controller. */
   2596       1.1  wrstuden 	if ((error = twa_init_connection(sc, TWA_INIT_MESSAGE_CREDITS,
   2597       1.1  wrstuden 					0, 0, 0, 0, 0,
   2598       1.1  wrstuden 					NULL, NULL, NULL, NULL, NULL))) {
   2599       1.1  wrstuden 		goto out;
   2600       1.1  wrstuden 	}
   2601       1.1  wrstuden 	/*
   2602       1.1  wrstuden 	 * Complete all requests in the complete queue; error back all requests
   2603       1.1  wrstuden 	 * in the busy queue.  Any internal requests will be simply freed.
   2604       1.1  wrstuden 	 * Re-submit any requests in the pending queue.
   2605       1.1  wrstuden 	 */
   2606       1.1  wrstuden 	twa_drain_busy_queue(sc);
   2607       1.1  wrstuden 
   2608       1.1  wrstuden out:
   2609       1.1  wrstuden 	splx(s);
   2610       1.1  wrstuden 	/*
   2611       1.1  wrstuden 	 * Enable interrupts, and also clear attention and response interrupts.
   2612       1.1  wrstuden 	 */
   2613       1.1  wrstuden 	twa_outl(sc, TWA_CONTROL_REGISTER_OFFSET,
   2614       1.1  wrstuden 		TWA_CONTROL_CLEAR_ATTENTION_INTERRUPT |
   2615       1.1  wrstuden 		TWA_CONTROL_UNMASK_RESPONSE_INTERRUPT |
   2616       1.1  wrstuden 		TWA_CONTROL_ENABLE_INTERRUPTS);
   2617      1.21     joerg 
   2618      1.21     joerg 	/* Clear the 'in reset' flag. */
   2619      1.21     joerg 	sc->twa_sc_flags &= ~TWA_STATE_IN_RESET;
   2620      1.21     joerg 
   2621       1.1  wrstuden 	return(error);
   2622       1.1  wrstuden }
   2623       1.1  wrstuden 
   2624       1.1  wrstuden static int
   2625       1.1  wrstuden twa_soft_reset(struct twa_softc *sc)
   2626       1.1  wrstuden {
   2627       1.7    simonb 	uint32_t	status_reg;
   2628       1.1  wrstuden 
   2629       1.1  wrstuden 	twa_outl(sc, TWA_CONTROL_REGISTER_OFFSET,
   2630       1.1  wrstuden 			TWA_CONTROL_ISSUE_SOFT_RESET |
   2631       1.1  wrstuden 			TWA_CONTROL_CLEAR_HOST_INTERRUPT |
   2632       1.1  wrstuden 			TWA_CONTROL_CLEAR_ATTENTION_INTERRUPT |
   2633       1.1  wrstuden 			TWA_CONTROL_MASK_COMMAND_INTERRUPT |
   2634       1.1  wrstuden 			TWA_CONTROL_MASK_RESPONSE_INTERRUPT |
   2635       1.1  wrstuden 			TWA_CONTROL_DISABLE_INTERRUPTS);
   2636       1.1  wrstuden 
   2637      1.21     joerg 	if (twa_drain_response_queue_large(sc, 30) != 0) {
   2638      1.41  jakllsch 		aprint_error_dev(sc->twa_dv,
   2639      1.21     joerg 		    "response queue not empty after reset.\n");
   2640      1.21     joerg 		return(1);
   2641      1.21     joerg 	}
   2642       1.1  wrstuden 	if (twa_wait_status(sc, TWA_STATUS_MICROCONTROLLER_READY |
   2643       1.1  wrstuden 				TWA_STATUS_ATTENTION_INTERRUPT, 30)) {
   2644      1.53   msaitoh 		aprint_error_dev(sc->twa_dv,
   2645      1.53   msaitoh 		    "no attention interrupt after reset.\n");
   2646       1.1  wrstuden 		return(1);
   2647       1.1  wrstuden 	}
   2648       1.1  wrstuden 	twa_outl(sc, TWA_CONTROL_REGISTER_OFFSET,
   2649       1.1  wrstuden 		TWA_CONTROL_CLEAR_ATTENTION_INTERRUPT);
   2650       1.1  wrstuden 
   2651       1.1  wrstuden 	if (twa_drain_response_queue(sc)) {
   2652      1.41  jakllsch 		aprint_error_dev(sc->twa_dv, "cannot drain response queue.\n");
   2653       1.1  wrstuden 		return(1);
   2654       1.1  wrstuden 	}
   2655       1.1  wrstuden 	if (twa_drain_aen_queue(sc)) {
   2656      1.41  jakllsch 		aprint_error_dev(sc->twa_dv, "cannot drain AEN queue.\n");
   2657       1.1  wrstuden 		return(1);
   2658       1.1  wrstuden 	}
   2659       1.1  wrstuden 	if (twa_find_aen(sc, TWA_AEN_SOFT_RESET)) {
   2660      1.53   msaitoh 		aprint_error_dev(sc->twa_dv,
   2661      1.53   msaitoh 		    "reset not reported by controller.\n");
   2662       1.1  wrstuden 		return(1);
   2663       1.1  wrstuden 	}
   2664       1.1  wrstuden 	status_reg = twa_inl(sc, TWA_STATUS_REGISTER_OFFSET);
   2665       1.1  wrstuden 	if (TWA_STATUS_ERRORS(status_reg) ||
   2666       1.6    simonb 	    twa_check_ctlr_state(sc, status_reg)) {
   2667      1.41  jakllsch 		aprint_error_dev(sc->twa_dv, "controller errors detected.\n");
   2668       1.1  wrstuden 		return(1);
   2669       1.1  wrstuden 	}
   2670       1.1  wrstuden 	return(0);
   2671       1.1  wrstuden }
   2672       1.1  wrstuden 
   2673       1.1  wrstuden static int
   2674       1.7    simonb twa_wait_status(struct twa_softc *sc, uint32_t status, uint32_t timeout)
   2675       1.1  wrstuden {
   2676       1.1  wrstuden 	struct timeval		t1;
   2677       1.1  wrstuden 	time_t		end_time;
   2678       1.7    simonb 	uint32_t	status_reg;
   2679       1.1  wrstuden 
   2680       1.1  wrstuden 	timeout = (timeout * 1000 * 100);
   2681       1.1  wrstuden 
   2682       1.1  wrstuden 	microtime(&t1);
   2683       1.1  wrstuden 
   2684       1.1  wrstuden 	end_time = t1.tv_usec + timeout;
   2685       1.1  wrstuden 
   2686       1.1  wrstuden 	do {
   2687       1.1  wrstuden 		status_reg = twa_inl(sc, TWA_STATUS_REGISTER_OFFSET);
   2688       1.6    simonb 		/* got the required bit(s)? */
   2689       1.6    simonb 		if ((status_reg & status) == status)
   2690       1.1  wrstuden 			return(0);
   2691       1.1  wrstuden 		DELAY(100000);
   2692       1.1  wrstuden 		microtime(&t1);
   2693       1.1  wrstuden 	} while (t1.tv_usec <= end_time);
   2694       1.1  wrstuden 
   2695       1.1  wrstuden 	return(1);
   2696       1.1  wrstuden }
   2697       1.1  wrstuden 
   2698       1.1  wrstuden static int
   2699       1.1  wrstuden twa_fetch_aen(struct twa_softc *sc)
   2700       1.1  wrstuden {
   2701       1.1  wrstuden 	struct twa_request	*tr;
   2702       1.1  wrstuden 	int			s, error = 0;
   2703       1.1  wrstuden 
   2704       1.1  wrstuden 	s = splbio();
   2705       1.1  wrstuden 
   2706       1.8  wrstuden 	if ((tr = twa_get_request(sc, TWA_CMD_AEN)) == NULL) {
   2707       1.8  wrstuden 		splx(s);
   2708       1.1  wrstuden 		return(EIO);
   2709       1.8  wrstuden 	}
   2710       1.1  wrstuden 	tr->tr_cmd_pkt_type |= TWA_CMD_PKT_TYPE_INTERNAL;
   2711       1.1  wrstuden 	tr->tr_callback = twa_aen_callback;
   2712       1.1  wrstuden 	tr->tr_data = malloc(TWA_SECTOR_SIZE, M_DEVBUF, M_NOWAIT);
   2713       1.1  wrstuden 	if (twa_request_sense(tr, 0) != 0) {
   2714       1.1  wrstuden 		if (tr->tr_data)
   2715       1.1  wrstuden 			free(tr->tr_data, M_DEVBUF);
   2716       1.1  wrstuden 		twa_release_request(tr);
   2717       1.1  wrstuden 		error = 1;
   2718       1.1  wrstuden 	}
   2719       1.1  wrstuden 	splx(s);
   2720       1.1  wrstuden 
   2721       1.1  wrstuden 	return(error);
   2722       1.1  wrstuden }
   2723       1.1  wrstuden 
   2724       1.1  wrstuden /*
   2725       1.1  wrstuden  * Function name:	twa_aen_callback
   2726       1.1  wrstuden  * Description:		Callback for requests to fetch AEN's.
   2727       1.1  wrstuden  *
   2728       1.1  wrstuden  * Input:		tr	-- ptr to completed request pkt
   2729       1.1  wrstuden  * Output:		None
   2730       1.1  wrstuden  * Return value:	None
   2731       1.1  wrstuden  */
   2732       1.1  wrstuden static void
   2733       1.1  wrstuden twa_aen_callback(struct twa_request *tr)
   2734       1.1  wrstuden {
   2735       1.1  wrstuden 	int i;
   2736       1.1  wrstuden 	int fetch_more_aens = 0;
   2737       1.1  wrstuden 	struct twa_softc		*sc = tr->tr_sc;
   2738       1.1  wrstuden 	struct twa_command_header	*cmd_hdr =
   2739       1.1  wrstuden 		(struct twa_command_header *)(tr->tr_data);
   2740       1.1  wrstuden 	struct twa_command_9k		*cmd =
   2741       1.1  wrstuden 		&(tr->tr_command->command.cmd_pkt_9k);
   2742       1.1  wrstuden 
   2743       1.1  wrstuden 	if (! cmd->status) {
   2744       1.1  wrstuden 		if ((tr->tr_cmd_pkt_type & TWA_CMD_PKT_TYPE_9K) &&
   2745       1.1  wrstuden 			(cmd->cdb[0] == 0x3 /* REQUEST_SENSE */))
   2746       1.1  wrstuden 			if (twa_enqueue_aen(sc, cmd_hdr)
   2747       1.1  wrstuden 				!= TWA_AEN_QUEUE_EMPTY)
   2748       1.1  wrstuden 				fetch_more_aens = 1;
   2749       1.1  wrstuden 	} else {
   2750       1.1  wrstuden 		cmd_hdr->err_specific_desc[sizeof(cmd_hdr->err_specific_desc) - 1] = '\0';
   2751       1.1  wrstuden 		for (i = 0; i < 18; i++)
   2752       1.1  wrstuden 			printf("%x\t", tr->tr_command->cmd_hdr.sense_data[i]);
   2753      1.54  pgoyette 		printf("\n"); /* print new line */
   2754       1.1  wrstuden 
   2755       1.1  wrstuden 		for (i = 0; i < 128; i++)
   2756       1.1  wrstuden 			printf("%x\t", ((int8_t *)(tr->tr_data))[i]);
   2757      1.54  pgoyette 		printf("\n"); /* print new line */
   2758       1.1  wrstuden 	}
   2759       1.1  wrstuden 	if (tr->tr_data)
   2760       1.1  wrstuden 		free(tr->tr_data, M_DEVBUF);
   2761       1.1  wrstuden 	twa_release_request(tr);
   2762       1.1  wrstuden 
   2763       1.1  wrstuden 	if (fetch_more_aens)
   2764       1.1  wrstuden 		twa_fetch_aen(sc);
   2765       1.1  wrstuden }
   2766       1.1  wrstuden 
   2767       1.1  wrstuden /*
   2768       1.1  wrstuden  * Function name:	twa_enqueue_aen
   2769       1.1  wrstuden  * Description:		Queues AEN's to be supplied to user-space tools on request.
   2770       1.1  wrstuden  *
   2771       1.1  wrstuden  * Input:		sc	-- ptr to per ctlr structure
   2772       1.1  wrstuden  *			cmd_hdr	-- ptr to hdr of fw cmd pkt, from where the AEN
   2773       1.1  wrstuden  *				   details can be retrieved.
   2774       1.1  wrstuden  * Output:		None
   2775       1.1  wrstuden  * Return value:	None
   2776       1.1  wrstuden  */
   2777       1.1  wrstuden static uint16_t
   2778       1.1  wrstuden twa_enqueue_aen(struct twa_softc *sc, struct twa_command_header *cmd_hdr)
   2779       1.1  wrstuden {
   2780      1.47   hannken 	int			rv __diagused, s;
   2781       1.1  wrstuden 	struct tw_cl_event_packet *event;
   2782       1.1  wrstuden 	uint16_t		aen_code;
   2783       1.1  wrstuden 	unsigned long		sync_time;
   2784       1.1  wrstuden 
   2785       1.1  wrstuden 	s = splbio();
   2786       1.1  wrstuden 	aen_code = cmd_hdr->status_block.error;
   2787       1.1  wrstuden 
   2788       1.1  wrstuden 	switch (aen_code) {
   2789       1.1  wrstuden 	case TWA_AEN_SYNC_TIME_WITH_HOST:
   2790       1.1  wrstuden 
   2791       1.4    simonb 		sync_time = (time_second - (3 * 86400)) % 604800;
   2792       1.1  wrstuden 		rv = twa_set_param(sc, TWA_PARAM_TIME_TABLE,
   2793       1.1  wrstuden 				TWA_PARAM_TIME_SchedulerTime, 4,
   2794       1.1  wrstuden 				&sync_time, twa_aen_callback);
   2795       1.1  wrstuden #ifdef DIAGNOSTIC
   2796       1.1  wrstuden 		if (rv != 0)
   2797      1.53   msaitoh 			aprint_error_dev(sc->twa_dv,
   2798      1.53   msaitoh 			    "unable to sync time with ctlr\n");
   2799       1.1  wrstuden #endif
   2800       1.1  wrstuden 		break;
   2801       1.1  wrstuden 
   2802       1.1  wrstuden 	case TWA_AEN_QUEUE_EMPTY:
   2803       1.1  wrstuden 		break;
   2804       1.1  wrstuden 
   2805       1.1  wrstuden 	default:
   2806       1.1  wrstuden 		/* Queue the event. */
   2807       1.1  wrstuden 		event = sc->twa_aen_queue[sc->twa_aen_head];
   2808       1.1  wrstuden 		if (event->retrieved == TWA_AEN_NOT_RETRIEVED)
   2809       1.1  wrstuden 			sc->twa_aen_queue_overflow = TRUE;
   2810       1.1  wrstuden 		event->severity =
   2811       1.1  wrstuden 			cmd_hdr->status_block.substatus_block.severity;
   2812       1.4    simonb 		event->time_stamp_sec = time_second;
   2813       1.1  wrstuden 		event->aen_code = aen_code;
   2814       1.1  wrstuden 		event->retrieved = TWA_AEN_NOT_RETRIEVED;
   2815       1.1  wrstuden 		event->sequence_id = ++(sc->twa_current_sequence_id);
   2816       1.1  wrstuden 		cmd_hdr->err_specific_desc[sizeof(cmd_hdr->err_specific_desc) - 1] = '\0';
   2817       1.1  wrstuden 		event->parameter_len = strlen(cmd_hdr->err_specific_desc);
   2818       1.1  wrstuden 		memcpy(event->parameter_data, cmd_hdr->err_specific_desc,
   2819       1.1  wrstuden 			event->parameter_len);
   2820       1.1  wrstuden 
   2821       1.1  wrstuden 		if (event->severity < TWA_AEN_SEVERITY_DEBUG) {
   2822       1.1  wrstuden 			printf("%s: AEN 0x%04X: %s: %s: %s\n",
   2823      1.41  jakllsch 				device_xname(sc->twa_dv),
   2824       1.1  wrstuden 				aen_code,
   2825       1.1  wrstuden 				twa_aen_severity_table[event->severity],
   2826       1.1  wrstuden 				twa_find_msg_string(twa_aen_table, aen_code),
   2827       1.1  wrstuden 				event->parameter_data);
   2828       1.1  wrstuden 		}
   2829       1.1  wrstuden 
   2830       1.1  wrstuden 		if ((sc->twa_aen_head + 1) == TWA_Q_LENGTH)
   2831       1.1  wrstuden 			sc->twa_aen_queue_wrapped = TRUE;
   2832       1.1  wrstuden 		sc->twa_aen_head = (sc->twa_aen_head + 1) % TWA_Q_LENGTH;
   2833       1.1  wrstuden 		break;
   2834       1.1  wrstuden 	} /* switch */
   2835       1.1  wrstuden 	splx(s);
   2836       1.1  wrstuden 
   2837       1.1  wrstuden 	return (aen_code);
   2838       1.1  wrstuden }
   2839       1.1  wrstuden 
   2840       1.1  wrstuden /*
   2841       1.1  wrstuden  * Function name:	twa_find_aen
   2842       1.1  wrstuden  * Description:		Reports whether a given AEN ever occurred.
   2843       1.1  wrstuden  *
   2844       1.1  wrstuden  * Input:		sc	-- ptr to per ctlr structure
   2845       1.1  wrstuden  *			aen_code-- AEN to look for
   2846       1.1  wrstuden  * Output:		None
   2847       1.1  wrstuden  * Return value:	0	-- success
   2848       1.1  wrstuden  *			non-zero-- failure
   2849       1.1  wrstuden  */
   2850       1.1  wrstuden static int
   2851       1.7    simonb twa_find_aen(struct twa_softc *sc, uint16_t aen_code)
   2852       1.1  wrstuden {
   2853       1.7    simonb 	uint32_t	last_index;
   2854       1.1  wrstuden 	int		s;
   2855       1.1  wrstuden 	int		i;
   2856       1.1  wrstuden 
   2857       1.1  wrstuden 	s = splbio();
   2858       1.1  wrstuden 
   2859       1.1  wrstuden 	if (sc->twa_aen_queue_wrapped)
   2860       1.1  wrstuden 		last_index = sc->twa_aen_head;
   2861       1.1  wrstuden 	else
   2862       1.1  wrstuden 		last_index = 0;
   2863       1.1  wrstuden 
   2864       1.1  wrstuden 	i = sc->twa_aen_head;
   2865       1.1  wrstuden 	do {
   2866       1.1  wrstuden 		i = (i + TWA_Q_LENGTH - 1) % TWA_Q_LENGTH;
   2867       1.1  wrstuden 		if ((sc->twa_aen_queue[i])->aen_code == aen_code) {
   2868       1.1  wrstuden 			splx(s);
   2869       1.1  wrstuden 			return(0);
   2870       1.1  wrstuden 		}
   2871       1.1  wrstuden 	} while (i != last_index);
   2872       1.1  wrstuden 
   2873       1.1  wrstuden 	splx(s);
   2874       1.1  wrstuden 	return(1);
   2875       1.1  wrstuden }
   2876       1.1  wrstuden 
   2877      1.12  christos static inline void
   2878       1.1  wrstuden twa_request_init(struct twa_request *tr, int flags)
   2879       1.1  wrstuden {
   2880       1.1  wrstuden 	tr->tr_data = NULL;
   2881       1.1  wrstuden 	tr->tr_real_data = NULL;
   2882       1.1  wrstuden 	tr->tr_length = 0;
   2883       1.1  wrstuden 	tr->tr_real_length = 0;
   2884       1.1  wrstuden 	tr->tr_status = TWA_CMD_SETUP;/* command is in setup phase */
   2885       1.1  wrstuden 	tr->tr_flags = flags;
   2886       1.1  wrstuden 	tr->tr_error = 0;
   2887       1.1  wrstuden 	tr->tr_callback = NULL;
   2888       1.1  wrstuden 	tr->tr_cmd_pkt_type = 0;
   2889       1.8  wrstuden 	tr->bp = 0;
   2890       1.1  wrstuden 
   2891       1.1  wrstuden 	/*
   2892       1.1  wrstuden 	 * Look at the status field in the command packet to see how
   2893       1.1  wrstuden 	 * it completed the last time it was used, and zero out only
   2894       1.1  wrstuden 	 * the portions that might have changed.  Note that we don't
   2895       1.1  wrstuden 	 * care to zero out the sglist.
   2896       1.1  wrstuden 	 */
   2897       1.1  wrstuden 	if (tr->tr_command->command.cmd_pkt_9k.status)
   2898       1.1  wrstuden 		memset(tr->tr_command, 0,
   2899       1.1  wrstuden 			sizeof(struct twa_command_header) + 28);
   2900       1.1  wrstuden 	else
   2901       1.1  wrstuden 		memset(&(tr->tr_command->command), 0, 28);
   2902       1.1  wrstuden }
   2903       1.1  wrstuden 
   2904       1.1  wrstuden struct twa_request *
   2905       1.1  wrstuden twa_get_request_wait(struct twa_softc *sc, int flags)
   2906       1.1  wrstuden {
   2907       1.1  wrstuden 	struct twa_request *tr;
   2908       1.1  wrstuden 	int s;
   2909       1.1  wrstuden 
   2910       1.1  wrstuden 	KASSERT((flags & TWA_CMD_AEN) == 0);
   2911       1.1  wrstuden 
   2912       1.1  wrstuden 	s = splbio();
   2913       1.1  wrstuden 	while ((tr = TAILQ_FIRST(&sc->twa_free)) == NULL) {
   2914       1.1  wrstuden 		sc->twa_sc_flags |= TWA_STATE_REQUEST_WAIT;
   2915       1.1  wrstuden 		(void) tsleep(&sc->twa_free, PRIBIO, "twaccb", hz);
   2916       1.1  wrstuden 	}
   2917       1.1  wrstuden 	TAILQ_REMOVE(&sc->twa_free, tr, tr_link);
   2918       1.1  wrstuden 
   2919       1.1  wrstuden 	splx(s);
   2920       1.1  wrstuden 
   2921       1.1  wrstuden 	twa_request_init(tr, flags);
   2922       1.1  wrstuden 
   2923       1.1  wrstuden 	return(tr);
   2924       1.1  wrstuden }
   2925       1.1  wrstuden 
   2926       1.1  wrstuden struct twa_request *
   2927       1.1  wrstuden twa_get_request(struct twa_softc *sc, int flags)
   2928       1.1  wrstuden {
   2929       1.1  wrstuden 	int s;
   2930       1.1  wrstuden 	struct twa_request *tr;
   2931       1.1  wrstuden 
   2932       1.1  wrstuden 	/* Get a free request packet. */
   2933       1.1  wrstuden 	s = splbio();
   2934       1.1  wrstuden 	if (__predict_false((flags & TWA_CMD_AEN) != 0)) {
   2935       1.1  wrstuden 
   2936       1.1  wrstuden 		if ((sc->sc_twa_request->tr_flags & TWA_CMD_AEN_BUSY) == 0) {
   2937       1.1  wrstuden 			tr = sc->sc_twa_request;
   2938       1.1  wrstuden 			flags |= TWA_CMD_AEN_BUSY;
   2939       1.1  wrstuden 		} else {
   2940       1.1  wrstuden 			splx(s);
   2941       1.1  wrstuden 			return (NULL);
   2942       1.1  wrstuden 		}
   2943       1.1  wrstuden 	} else {
   2944       1.1  wrstuden 		if (__predict_false((tr =
   2945       1.1  wrstuden 				TAILQ_FIRST(&sc->twa_free)) == NULL)) {
   2946       1.1  wrstuden 			splx(s);
   2947       1.1  wrstuden 			return (NULL);
   2948       1.1  wrstuden 		}
   2949       1.1  wrstuden 		TAILQ_REMOVE(&sc->twa_free, tr, tr_link);
   2950       1.1  wrstuden 	}
   2951       1.1  wrstuden 	splx(s);
   2952       1.1  wrstuden 
   2953       1.1  wrstuden 	twa_request_init(tr, flags);
   2954       1.1  wrstuden 
   2955       1.1  wrstuden 	return(tr);
   2956       1.1  wrstuden }
   2957       1.1  wrstuden 
   2958       1.1  wrstuden /*
   2959       1.1  wrstuden  * Print some information about the controller
   2960       1.1  wrstuden  */
   2961       1.1  wrstuden static void
   2962       1.1  wrstuden twa_describe_controller(struct twa_softc *sc)
   2963       1.1  wrstuden {
   2964       1.1  wrstuden 	struct twa_param_9k	*p[10];
   2965       1.1  wrstuden 	int			i, rv = 0;
   2966       1.1  wrstuden 	uint32_t		dsize;
   2967       1.1  wrstuden 	uint8_t			ports;
   2968       1.1  wrstuden 
   2969      1.52  christos 	memset(p, 0, sizeof(p));
   2970       1.1  wrstuden 
   2971       1.1  wrstuden 	/* Get the port count. */
   2972       1.1  wrstuden 	rv |= twa_get_param(sc, TWA_PARAM_CONTROLLER,
   2973       1.1  wrstuden 		TWA_PARAM_CONTROLLER_PortCount, 1, NULL, &p[0]);
   2974       1.1  wrstuden 
   2975       1.1  wrstuden 	/* get version strings */
   2976       1.1  wrstuden 	rv |= twa_get_param(sc, TWA_PARAM_VERSION, TWA_PARAM_VERSION_FW,
   2977       1.1  wrstuden 		16, NULL, &p[1]);
   2978       1.1  wrstuden 	rv |= twa_get_param(sc, TWA_PARAM_VERSION, TWA_PARAM_VERSION_BIOS,
   2979       1.1  wrstuden 		16, NULL, &p[2]);
   2980       1.1  wrstuden 	rv |= twa_get_param(sc, TWA_PARAM_VERSION, TWA_PARAM_VERSION_Mon,
   2981       1.1  wrstuden 		16, NULL, &p[3]);
   2982       1.1  wrstuden 	rv |= twa_get_param(sc, TWA_PARAM_VERSION, TWA_PARAM_VERSION_PCBA,
   2983       1.1  wrstuden 		8, NULL, &p[4]);
   2984       1.1  wrstuden 	rv |= twa_get_param(sc, TWA_PARAM_VERSION, TWA_PARAM_VERSION_ATA,
   2985       1.1  wrstuden 		8, NULL, &p[5]);
   2986       1.1  wrstuden 	rv |= twa_get_param(sc, TWA_PARAM_VERSION, TWA_PARAM_VERSION_PCI,
   2987       1.1  wrstuden 		8, NULL, &p[6]);
   2988       1.1  wrstuden 	rv |= twa_get_param(sc, TWA_PARAM_DRIVESUMMARY, TWA_PARAM_DRIVESTATUS,
   2989       1.1  wrstuden 		16, NULL, &p[7]);
   2990       1.1  wrstuden 
   2991       1.1  wrstuden 	if (rv) {
   2992       1.1  wrstuden 		/* some error occurred */
   2993      1.53   msaitoh 		aprint_error_dev(sc->twa_dv,
   2994      1.53   msaitoh 		    "failed to fetch version information\n");
   2995       1.1  wrstuden 		goto bail;
   2996       1.1  wrstuden 	}
   2997       1.1  wrstuden 
   2998       1.7    simonb 	ports = *(uint8_t *)(p[0]->data);
   2999       1.1  wrstuden 
   3000      1.41  jakllsch 	aprint_normal_dev(sc->twa_dv, "%d ports, Firmware %.16s, BIOS %.16s\n",
   3001      1.19    cegger 		ports, p[1]->data, p[2]->data);
   3002       1.1  wrstuden 
   3003      1.53   msaitoh 	aprint_verbose_dev(sc->twa_dv,
   3004      1.53   msaitoh 	    "Monitor %.16s, PCB %.8s, Achip %.8s, Pchip %.8s\n",
   3005       1.1  wrstuden 		p[3]->data, p[4]->data,
   3006       1.1  wrstuden 		p[5]->data, p[6]->data);
   3007       1.1  wrstuden 
   3008       1.1  wrstuden 	for (i = 0; i < ports; i++) {
   3009       1.1  wrstuden 
   3010       1.1  wrstuden 		if ((*((char *)(p[7]->data + i)) & TWA_DRIVE_DETECTED) == 0)
   3011       1.1  wrstuden 			continue;
   3012       1.1  wrstuden 
   3013      1.11  christos 		rv = twa_get_param(sc, TWA_PARAM_DRIVE_TABLE + i,
   3014       1.1  wrstuden 			TWA_PARAM_DRIVEMODELINDEX,
   3015       1.1  wrstuden 			TWA_PARAM_DRIVEMODEL_LENGTH, NULL, &p[8]);
   3016       1.1  wrstuden 
   3017       1.1  wrstuden 		if (rv != 0) {
   3018      1.53   msaitoh 			aprint_error_dev(sc->twa_dv,
   3019      1.53   msaitoh 			    "unable to get drive model for port %d\n", i);
   3020       1.1  wrstuden 			continue;
   3021       1.1  wrstuden 		}
   3022       1.1  wrstuden 
   3023      1.11  christos 		rv = twa_get_param(sc, TWA_PARAM_DRIVE_TABLE + i,
   3024       1.1  wrstuden 			TWA_PARAM_DRIVESIZEINDEX,
   3025       1.1  wrstuden 			TWA_PARAM_DRIVESIZE_LENGTH, NULL, &p[9]);
   3026       1.1  wrstuden 
   3027       1.1  wrstuden 		if (rv != 0) {
   3028      1.41  jakllsch 			aprint_error_dev(sc->twa_dv, "unable to get drive size"
   3029      1.53   msaitoh 			    " for port %d\n", i);
   3030       1.1  wrstuden 			free(p[8], M_DEVBUF);
   3031       1.1  wrstuden 			continue;
   3032       1.1  wrstuden 		}
   3033       1.1  wrstuden 
   3034       1.1  wrstuden 		dsize = *(uint32_t *)(p[9]->data);
   3035       1.1  wrstuden 
   3036      1.41  jakllsch 		aprint_verbose_dev(sc->twa_dv, "port %d: %.40s %d MB\n",
   3037      1.19    cegger 		    i, p[8]->data, dsize / 2048);
   3038       1.1  wrstuden 
   3039       1.1  wrstuden 		if (p[8])
   3040       1.1  wrstuden 			free(p[8], M_DEVBUF);
   3041       1.1  wrstuden 		if (p[9])
   3042       1.1  wrstuden 			free(p[9], M_DEVBUF);
   3043       1.1  wrstuden 	}
   3044       1.1  wrstuden bail:
   3045       1.1  wrstuden 	if (p[0])
   3046       1.1  wrstuden 		free(p[0], M_DEVBUF);
   3047       1.1  wrstuden 	if (p[1])
   3048       1.1  wrstuden 		free(p[1], M_DEVBUF);
   3049       1.1  wrstuden 	if (p[2])
   3050       1.1  wrstuden 		free(p[2], M_DEVBUF);
   3051       1.1  wrstuden 	if (p[3])
   3052       1.1  wrstuden 		free(p[3], M_DEVBUF);
   3053       1.1  wrstuden 	if (p[4])
   3054       1.1  wrstuden 		free(p[4], M_DEVBUF);
   3055       1.1  wrstuden 	if (p[5])
   3056       1.1  wrstuden 		free(p[5], M_DEVBUF);
   3057       1.1  wrstuden 	if (p[6])
   3058       1.1  wrstuden 		free(p[6], M_DEVBUF);
   3059       1.1  wrstuden }
   3060       1.1  wrstuden 
   3061       1.1  wrstuden /*
   3062       1.1  wrstuden  * Function name:	twa_check_ctlr_state
   3063       1.1  wrstuden  * Description:		Makes sure that the fw status register reports a
   3064       1.1  wrstuden  *			proper status.
   3065       1.1  wrstuden  *
   3066       1.1  wrstuden  * Input:		sc		-- ptr to per ctlr structure
   3067       1.1  wrstuden  *			status_reg	-- value in the status register
   3068       1.1  wrstuden  * Output:		None
   3069       1.1  wrstuden  * Return value:	0	-- no errors
   3070       1.1  wrstuden  *			non-zero-- errors
   3071       1.1  wrstuden  */
   3072       1.1  wrstuden static int
   3073       1.7    simonb twa_check_ctlr_state(struct twa_softc *sc, uint32_t status_reg)
   3074       1.1  wrstuden {
   3075       1.1  wrstuden 	int		result = 0;
   3076       1.1  wrstuden 	struct timeval	t1;
   3077       1.1  wrstuden 	static time_t	last_warning[2] = {0, 0};
   3078       1.1  wrstuden 
   3079       1.1  wrstuden 	/* Check if the 'micro-controller ready' bit is not set. */
   3080       1.1  wrstuden 	if ((status_reg & TWA_STATUS_EXPECTED_BITS) !=
   3081       1.1  wrstuden 				TWA_STATUS_EXPECTED_BITS) {
   3082       1.1  wrstuden 
   3083       1.1  wrstuden 		microtime(&t1);
   3084       1.1  wrstuden 
   3085       1.1  wrstuden 		last_warning[0] += (5 * 1000 * 100);
   3086       1.1  wrstuden 
   3087       1.1  wrstuden 		if (t1.tv_usec > last_warning[0]) {
   3088       1.1  wrstuden 			microtime(&t1);
   3089       1.1  wrstuden 			last_warning[0] = t1.tv_usec;
   3090       1.1  wrstuden 		}
   3091       1.1  wrstuden 		result = 1;
   3092       1.1  wrstuden 	}
   3093       1.1  wrstuden 
   3094       1.1  wrstuden 	/* Check if any error bits are set. */
   3095       1.1  wrstuden 	if ((status_reg & TWA_STATUS_UNEXPECTED_BITS) != 0) {
   3096       1.1  wrstuden 
   3097       1.1  wrstuden 		microtime(&t1);
   3098       1.1  wrstuden 		last_warning[1] += (5 * 1000 * 100);
   3099       1.1  wrstuden 		if (t1.tv_usec > last_warning[1]) {
   3100       1.1  wrstuden 		     	microtime(&t1);
   3101       1.1  wrstuden 			last_warning[1] = t1.tv_usec;
   3102       1.1  wrstuden 		}
   3103       1.1  wrstuden 		if (status_reg & TWA_STATUS_PCI_PARITY_ERROR_INTERRUPT) {
   3104      1.53   msaitoh 			aprint_error_dev(sc->twa_dv, "clearing PCI parity "
   3105      1.53   msaitoh 			    "error re-seat/move/replace card.\n");
   3106       1.1  wrstuden 			twa_outl(sc, TWA_CONTROL_REGISTER_OFFSET,
   3107       1.1  wrstuden 				TWA_CONTROL_CLEAR_PARITY_ERROR);
   3108       1.1  wrstuden 			pci_conf_write(sc->pc, sc->tag,
   3109       1.1  wrstuden 				PCI_COMMAND_STATUS_REG,
   3110       1.1  wrstuden 				TWA_PCI_CONFIG_CLEAR_PARITY_ERROR);
   3111       1.1  wrstuden 		}
   3112       1.1  wrstuden 		if (status_reg & TWA_STATUS_PCI_ABORT_INTERRUPT) {
   3113      1.41  jakllsch 			aprint_error_dev(sc->twa_dv, "clearing PCI abort\n");
   3114       1.1  wrstuden 			twa_outl(sc, TWA_CONTROL_REGISTER_OFFSET,
   3115       1.1  wrstuden 				TWA_CONTROL_CLEAR_PCI_ABORT);
   3116       1.1  wrstuden 			pci_conf_write(sc->pc, sc->tag,
   3117       1.1  wrstuden 				PCI_COMMAND_STATUS_REG,
   3118       1.1  wrstuden 				TWA_PCI_CONFIG_CLEAR_PCI_ABORT);
   3119       1.1  wrstuden 		}
   3120       1.1  wrstuden 		if (status_reg & TWA_STATUS_QUEUE_ERROR_INTERRUPT) {
   3121      1.22     joerg  			/*
   3122      1.22     joerg 			 * As documented by 3ware, the 9650 erroneously
   3123      1.22     joerg 			 * flags queue errors during resets.
   3124      1.22     joerg 			 * Just ignore them during the reset instead of
   3125      1.22     joerg 			 * bothering the console.
   3126      1.22     joerg  			 */
   3127      1.22     joerg  			if ((sc->sc_product_id != PCI_PRODUCT_3WARE_9650) ||
   3128      1.22     joerg  			    ((sc->twa_sc_flags & TWA_STATE_IN_RESET) == 0)) {
   3129      1.41  jakllsch  				aprint_error_dev(sc->twa_dv,
   3130      1.22     joerg  				    "clearing controller queue error\n");
   3131      1.22     joerg  			}
   3132      1.22     joerg 
   3133      1.22     joerg   			twa_outl(sc, TWA_CONTROL_REGISTER_OFFSET,
   3134      1.22     joerg  				TWA_CONTROL_CLEAR_QUEUE_ERROR);
   3135       1.1  wrstuden 		}
   3136       1.1  wrstuden 		if (status_reg & TWA_STATUS_MICROCONTROLLER_ERROR) {
   3137      1.53   msaitoh 			aprint_error_dev(sc->twa_dv,
   3138      1.53   msaitoh 			    "micro-controller error\n");
   3139       1.1  wrstuden 			result = 1;
   3140       1.1  wrstuden 		}
   3141       1.1  wrstuden 	}
   3142       1.1  wrstuden 	return(result);
   3143       1.1  wrstuden }
   3144      1.54  pgoyette 
   3145      1.54  pgoyette MODULE(MODULE_CLASS_DRIVER, twa, "pci");
   3146      1.54  pgoyette 
   3147      1.54  pgoyette #ifdef _MODULE
   3148      1.54  pgoyette #include "ioconf.c"
   3149      1.54  pgoyette #endif
   3150      1.54  pgoyette 
   3151      1.54  pgoyette static int
   3152      1.54  pgoyette twa_modcmd(modcmd_t cmd, void *opaque)
   3153      1.54  pgoyette {
   3154      1.54  pgoyette 	int error = 0;
   3155      1.54  pgoyette 
   3156      1.54  pgoyette #ifdef _MODULE
   3157      1.54  pgoyette 	switch (cmd) {
   3158      1.54  pgoyette 	case MODULE_CMD_INIT:
   3159      1.54  pgoyette 		error = config_init_component(cfdriver_ioconf_twa,
   3160      1.54  pgoyette 		    cfattach_ioconf_twa, cfdata_ioconf_twa);
   3161      1.54  pgoyette 		break;
   3162      1.54  pgoyette 	case MODULE_CMD_FINI:
   3163      1.54  pgoyette 		error = config_fini_component(cfdriver_ioconf_twa,
   3164      1.54  pgoyette 		    cfattach_ioconf_twa, cfdata_ioconf_twa);
   3165      1.54  pgoyette 		break;
   3166      1.54  pgoyette 	default:
   3167      1.54  pgoyette 		error = ENOTTY;
   3168      1.54  pgoyette 		break;
   3169      1.54  pgoyette 	}
   3170      1.54  pgoyette #endif
   3171      1.54  pgoyette 
   3172      1.54  pgoyette 	return error;
   3173      1.54  pgoyette }
   3174