summaryrefslogtreecommitdiffstats
path: root/sys/dev/twe/twe_tables.h
diff options
context:
space:
mode:
authormsmith <msmith@FreeBSD.org>2000-10-25 06:59:06 +0000
committermsmith <msmith@FreeBSD.org>2000-10-25 06:59:06 +0000
commita020bb21aa31f25d8afabdd26ae39c3be4e2f3e8 (patch)
tree1a80409022fabbd27d947d98872637c45883493a /sys/dev/twe/twe_tables.h
parentff18363a3e5e60f38c8f7a52c7e7f4ea1c8b797f (diff)
downloadFreeBSD-src-a020bb21aa31f25d8afabdd26ae39c3be4e2f3e8.zip
FreeBSD-src-a020bb21aa31f25d8afabdd26ae39c3be4e2f3e8.tar.gz
Major update to the 'twe' driver.
- Layout reorganisation to enhance portability. The driver now has a relatively MI 'core' and a FreeBSD-specific layer over the top. Since the NetBSD people have already done their own port, this is largely just to help me with the BSD/OS port. - Request ID allocation changed to improve performance (I'd been considering switching to this approach after having failed to come up with a better way to dynamically allocate request IDs, and seeing Andy Doran use it in the NetBSD port of the driver convinced me that I was wasting my time doing it any other way). Now we just allocate all the requests up front. - Maximum request count bumped back to 255 after characterisation of a firmware issue (off-by-one causing it to crash with 256 outstanding commands). - Control interface implemented. This allows 3ware's '3dm' utility to talk to the controller. 3dm will be available from 3ware shortly. - Controller soft-reset feature added; if the controller signals a firmware or protocol error, the controller will be reset and all outstanding commands will be retried.
Diffstat (limited to 'sys/dev/twe/twe_tables.h')
-rw-r--r--sys/dev/twe/twe_tables.h161
1 files changed, 161 insertions, 0 deletions
diff --git a/sys/dev/twe/twe_tables.h b/sys/dev/twe/twe_tables.h
new file mode 100644
index 0000000..aa1ab02
--- /dev/null
+++ b/sys/dev/twe/twe_tables.h
@@ -0,0 +1,161 @@
+/*-
+ * Copyright (c) 2000 Michael Smith
+ * Copyright (c) 2000 BSDi
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ *
+ * $FreeBSD$
+ */
+
+/*
+ * Lookup table for code-to-text translations.
+ */
+struct twe_code_lookup {
+ char *string;
+ u_int32_t code;
+};
+
+extern char *twe_describe_code(struct twe_code_lookup *table, u_int32_t code);
+
+#ifndef TWE_DEFINE_TABLES
+extern struct twe_code_lookup twe_table_status[];
+extern struct twe_code_lookup twe_table_unitstate[];
+extern struct twe_code_lookup twe_table_unittype[];
+extern struct twe_code_lookup twe_table_aen[];
+extern struct twe_code_lookup twe_table_opcode[];
+#else /* TWE_DEFINE_TABLES */
+
+/********************************************************************************
+ * Look up a text description of a numeric code and return a pointer to same.
+ */
+char *
+twe_describe_code(struct twe_code_lookup *table, u_int32_t code)
+{
+ int i;
+
+ for (i = 0; table[i].string != NULL; i++)
+ if (table[i].code == code)
+ return(table[i].string);
+ return(table[i+1].string);
+}
+
+
+struct twe_code_lookup twe_table_status[] = {
+ /* success */
+ {"successful completion", 0x00},
+ /* info */
+ {"command in progress", 0x42},
+ {"retrying interface CRC error from UDMA command", 0x6c},
+ /* warning */
+ {"redundant/inconsequential request ignored", 0x81},
+ {"failed to write zeroes to LBA 0", 0x8e},
+ {"failed to profile TwinStor zones", 0x8f},
+ /* fatal */
+ {"aborted due to system command or reconfiguration", 0xc1},
+ {"aborted", 0xc4},
+ {"access error", 0xc5},
+ {"access violation", 0xc6},
+ {"device failure", 0xc7}, /* high byte may be port number */
+ {"controller error", 0xc8},
+ {"timed out", 0xc9},
+ {"invalid unit number", 0xcb},
+ {"unit not available", 0xcf},
+ {"undefined opcode", 0xd2},
+ {"request incompatible with unit", 0xdb},
+ {"invalid request", 0xdc},
+ {"firmware error, reset requested", 0xff},
+ {NULL, 0},
+ {"unknown status", 0}
+};
+
+struct twe_code_lookup twe_table_unitstate[] = {
+ {"Normal", TWE_PARAM_UNITSTATUS_Normal},
+ {"Initialising", TWE_PARAM_UNITSTATUS_Initialising},
+ {"Degraded", TWE_PARAM_UNITSTATUS_Degraded},
+ {"Rebuilding", TWE_PARAM_UNITSTATUS_Rebuilding},
+ {"Verifying", TWE_PARAM_UNITSTATUS_Verifying},
+ {"Corrupt", TWE_PARAM_UNITSTATUS_Corrupt},
+ {"Missing", TWE_PARAM_UNITSTATUS_Missing},
+ {NULL, 0},
+ {"unknown state", 0}
+};
+
+struct twe_code_lookup twe_table_unittype[] = {
+ {"RAID0", TWE_UD_CONFIG_RAID0},
+ {"RAID1", TWE_UD_CONFIG_RAID1},
+ {"TwinStor", TWE_UD_CONFIG_TwinStor},
+ {"RAID5", TWE_UD_CONFIG_RAID5},
+ {"RAID10", TWE_UD_CONFIG_RAID10},
+ {"CBOD", TWE_UD_CONFIG_CBOD},
+ {"SPARE", TWE_UD_CONFIG_SPARE},
+ {"SUBUNIT", TWE_UD_CONFIG_SUBUNIT},
+ {"JBOD", TWE_UD_CONFIG_JBOD},
+ {NULL, 0},
+ {"unknown type", 0}
+};
+
+struct twe_code_lookup twe_table_aen[] = {
+ {"q queue empty", 0x00},
+ {"q soft reset", 0x01},
+ {"c degraded mirror", 0x02},
+ {"p controller error", 0x03},
+ {"c rebuild fail", 0x04},
+ {"c rebuild done", 0x05},
+ {"c incomplete unit", 0x06},
+ {"c initialisation done", 0x07},
+ {"c unclean shutdown detected", 0x08},
+ {"c drive timeout", 0x09},
+ {"c drive error", 0x0a},
+ {"c rebuild started", 0x0b},
+ {"p aen queue full", 0xff},
+ {NULL, 0},
+ {"x unknown AEN", 0}
+};
+
+struct twe_code_lookup twe_table_opcode[] = {
+ {"NOP", 0x00},
+ {"INIT_CONNECTION", 0x01},
+ {"READ", 0x02},
+ {"WRITE", 0x03},
+ {"READVERIFY", 0x04},
+ {"VERIFY", 0x05},
+ {"ZEROUNIT", 0x08},
+ {"REPLACEUNIT", 0x09},
+ {"HOTSWAP", 0x0a},
+ {"SETATAFEATURE", 0x0c},
+ {"FLUSH", 0x0e},
+ {"ABORT", 0x0f},
+ {"CHECKSTATUS", 0x10},
+ {"GET_PARAM", 0x12},
+ {"SET_PARAM", 0x13},
+ {"CREATEUNIT", 0x14},
+ {"DELETEUNIT", 0x15},
+ {"REBUILDUNIT", 0x17},
+ {"SECTOR_INFO", 0x1a},
+ {"AEN_LISTEN", 0x1c},
+ {"CMD_PACKET", 0x1d},
+ {NULL, 0},
+ {"unknown opcode", 0}
+};
+
+#endif
OpenPOWER on IntegriCloud