(2006-08-06) rescue-bootcd
This commit is contained in:
6
extra/linux-2.6.10/drivers/message/Makefile
Normal file
6
extra/linux-2.6.10/drivers/message/Makefile
Normal file
@@ -0,0 +1,6 @@
|
||||
#
|
||||
# Makefile for MPT based block devices
|
||||
#
|
||||
|
||||
obj-$(CONFIG_I2O) += i2o/
|
||||
obj-$(CONFIG_FUSION) += fusion/
|
||||
66
extra/linux-2.6.10/drivers/message/fusion/Kconfig
Normal file
66
extra/linux-2.6.10/drivers/message/fusion/Kconfig
Normal file
@@ -0,0 +1,66 @@
|
||||
|
||||
menu "Fusion MPT device support"
|
||||
|
||||
config FUSION
|
||||
tristate "Fusion MPT (base + ScsiHost) drivers"
|
||||
depends on PCI && SCSI
|
||||
---help---
|
||||
LSI Logic Fusion(TM) Message Passing Technology (MPT) device support
|
||||
provides high performance SCSI host initiator, and LAN [1] interface
|
||||
services to a host system. The Fusion architecture is capable of
|
||||
duplexing these protocols on high-speed Fibre Channel
|
||||
(up to 2 GHz x 2 ports = 4 GHz) and parallel SCSI (up to Ultra-320)
|
||||
physical medium.
|
||||
|
||||
[1] LAN is not supported on parallel SCSI medium.
|
||||
|
||||
config FUSION_MAX_SGE
|
||||
int "Maximum number of scatter gather entries"
|
||||
depends on FUSION
|
||||
default "40"
|
||||
help
|
||||
This option allows you to specify the maximum number of scatter-
|
||||
gather entries per I/O. The driver defaults to 40, a reasonable number
|
||||
for most systems. However, the user may increase this up to 128.
|
||||
Increasing this parameter will require significantly more memory
|
||||
on a per controller instance. Increasing the parameter is not
|
||||
necessary (or recommended) unless the user will be running
|
||||
large I/O's via the raw interface.
|
||||
|
||||
config FUSION_CTL
|
||||
tristate "Fusion MPT misc device (ioctl) driver"
|
||||
depends on FUSION
|
||||
---help---
|
||||
The Fusion MPT misc device driver provides specialized control
|
||||
of MPT adapters via system ioctl calls. Use of ioctl calls to
|
||||
the MPT driver requires that you create and use a misc device
|
||||
node ala:
|
||||
mknod /dev/mptctl c 10 240
|
||||
|
||||
One use of this ioctl interface is to perform an upgrade (reflash)
|
||||
of the MPT adapter firmware. Refer to readme file(s) distributed
|
||||
with the Fusion MPT linux driver for additional details.
|
||||
|
||||
If enabled by saying M to this, a driver named: mptctl
|
||||
will be compiled.
|
||||
|
||||
If unsure whether you really want or need this, say N.
|
||||
|
||||
config FUSION_LAN
|
||||
tristate "Fusion MPT LAN driver"
|
||||
depends on FUSION && NET_FC
|
||||
---help---
|
||||
This module supports LAN IP traffic over Fibre Channel port(s)
|
||||
on Fusion MPT compatible hardware (LSIFC9xx chips).
|
||||
The physical interface used is defined in RFC 2625.
|
||||
Please refer to that document for details.
|
||||
|
||||
Installing this driver requires the knowledge to configure and
|
||||
activate a new network interface, "fc0", using standard Linux tools.
|
||||
|
||||
If enabled by saying M to this, a driver named: mptlan
|
||||
will be compiled.
|
||||
|
||||
If unsure whether you really want or need this, say N.
|
||||
|
||||
endmenu
|
||||
52
extra/linux-2.6.10/drivers/message/fusion/Makefile
Normal file
52
extra/linux-2.6.10/drivers/message/fusion/Makefile
Normal file
@@ -0,0 +1,52 @@
|
||||
#
|
||||
# Makefile for the LSI Logic Fusion MPT (Message Passing Technology) drivers.
|
||||
#
|
||||
# Note! If you want to turn on various debug defines for an extended period of
|
||||
# time but don't want them lingering around in the Makefile when you pass it on
|
||||
# to someone else, use the MPT_CFLAGS env variable (thanks Steve). -nromer
|
||||
|
||||
#=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-{ LSI_LOGIC
|
||||
|
||||
# Architecture-specific...
|
||||
# # intel
|
||||
#EXTRA_CFLAGS += -g
|
||||
# # sparc64
|
||||
#EXTRA_CFLAGS += -gstabs+
|
||||
|
||||
EXTRA_CFLAGS += ${MPT_CFLAGS}
|
||||
|
||||
# Fusion MPT drivers; recognized debug defines...
|
||||
# MPT general:
|
||||
#EXTRA_CFLAGS += -DMPT_DEBUG_SCSI
|
||||
#EXTRA_CFLAGS += -DMPT_DEBUG
|
||||
#EXTRA_CFLAGS += -DMPT_DEBUG_MSG_FRAME
|
||||
#EXTRA_CFLAGS += -DMPT_DEBUG_SG
|
||||
|
||||
#
|
||||
# driver/module specifics...
|
||||
#
|
||||
# For mptbase:
|
||||
#CFLAGS_mptbase.o += -DMPT_DEBUG_HANDSHAKE
|
||||
#CFLAGS_mptbase.o += -DMPT_DEBUG_IRQ
|
||||
#
|
||||
# For mptscsih:
|
||||
#CFLAGS_mptscsih.o += -DMPT_DEBUG_SCANDV
|
||||
#CFLAGS_mptscsih.o += -DMPT_DEBUG_RESET
|
||||
#CFLAGS_mptscsih.o += -DMPT_DEBUG_NEH
|
||||
#
|
||||
# For mptctl:
|
||||
#CFLAGS_mptctl.o += -DMPT_DEBUG_IOCTL
|
||||
#
|
||||
# For mptlan:
|
||||
#CFLAGS_mptlan.o += -DMPT_LAN_IO_DEBUG
|
||||
#
|
||||
# For isense:
|
||||
|
||||
# EXP...
|
||||
##mptscsih-objs := scsihost.o scsiherr.o
|
||||
|
||||
#=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-} LSI_LOGIC
|
||||
|
||||
obj-$(CONFIG_FUSION) += mptbase.o mptscsih.o
|
||||
obj-$(CONFIG_FUSION_CTL) += mptctl.o
|
||||
obj-$(CONFIG_FUSION_LAN) += mptlan.o
|
||||
18
extra/linux-2.6.10/drivers/message/fusion/linux_compat.h
Normal file
18
extra/linux-2.6.10/drivers/message/fusion/linux_compat.h
Normal file
@@ -0,0 +1,18 @@
|
||||
/* drivers/message/fusion/linux_compat.h */
|
||||
|
||||
#ifndef FUSION_LINUX_COMPAT_H
|
||||
#define FUSION_LINUX_COMPAT_H
|
||||
|
||||
#include <linux/version.h>
|
||||
#include <scsi/scsi_device.h>
|
||||
|
||||
#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,6))
|
||||
static int inline scsi_device_online(struct scsi_device *sdev)
|
||||
{
|
||||
return sdev->online;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
/*}-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
|
||||
#endif /* _LINUX_COMPAT_H */
|
||||
89
extra/linux-2.6.10/drivers/message/fusion/lsi/fc_log.h
Normal file
89
extra/linux-2.6.10/drivers/message/fusion/lsi/fc_log.h
Normal file
@@ -0,0 +1,89 @@
|
||||
/*
|
||||
* Copyright (c) 2000-2001 LSI Logic Corporation. All rights reserved.
|
||||
*
|
||||
* NAME: fc_log.h
|
||||
* SUMMARY: MPI IocLogInfo definitions for the SYMFC9xx chips
|
||||
* DESCRIPTION: Contains the enumerated list of values that may be returned
|
||||
* in the IOCLogInfo field of a MPI Default Reply Message.
|
||||
*
|
||||
* CREATION DATE: 6/02/2000
|
||||
* ID: $Id: fc_log.h,v 4.6 2001/07/26 14:41:33 sschremm Exp $
|
||||
*/
|
||||
|
||||
|
||||
/*
|
||||
* MpiIocLogInfo_t enum
|
||||
*
|
||||
* These 32 bit values are used in the IOCLogInfo field of the MPI reply
|
||||
* messages.
|
||||
* The value is 0xabcccccc where
|
||||
* a = The type of log info as per the MPI spec. Since these codes are
|
||||
* all for Fibre Channel this value will always be 2.
|
||||
* b = Specifies a subclass of the firmware where
|
||||
* 0 = FCP Initiator
|
||||
* 1 = FCP Target
|
||||
* 2 = LAN
|
||||
* 3 = MPI Message Layer
|
||||
* 4 = FC Link
|
||||
* 5 = Context Manager
|
||||
* 6 = Invalid Field Offset
|
||||
* 7 = State Change Info
|
||||
* all others are reserved for future use
|
||||
* c = A specific value within the subclass.
|
||||
*
|
||||
* NOTE: Any new values should be added to the end of each subclass so that the
|
||||
* codes remain consistent across firmware releases.
|
||||
*/
|
||||
typedef enum _MpiIocLogInfoFc
|
||||
{
|
||||
MPI_IOCLOGINFO_FC_INIT_BASE = 0x20000000,
|
||||
MPI_IOCLOGINFO_FC_INIT_ERROR_OUT_OF_ORDER_FRAME = 0x20000001, /* received an out of order frame - unsupported */
|
||||
MPI_IOCLOGINFO_FC_INIT_ERROR_BAD_START_OF_FRAME = 0x20000002, /* Bad Rx Frame, bad start of frame primative */
|
||||
MPI_IOCLOGINFO_FC_INIT_ERROR_BAD_END_OF_FRAME = 0x20000003, /* Bad Rx Frame, bad end of frame primative */
|
||||
MPI_IOCLOGINFO_FC_INIT_ERROR_OVER_RUN = 0x20000004, /* Bad Rx Frame, overrun */
|
||||
MPI_IOCLOGINFO_FC_INIT_ERROR_RX_OTHER = 0x20000005, /* Other errors caught by IOC which require retries */
|
||||
MPI_IOCLOGINFO_FC_INIT_ERROR_SUBPROC_DEAD = 0x20000006, /* Main processor could not initialize sub-processor */
|
||||
MPI_IOCLOGINFO_FC_INIT_ERROR_RX_OVERRUN = 0x20000007, /* Scatter Gather overrun */
|
||||
MPI_IOCLOGINFO_FC_INIT_ERROR_RX_BAD_STATUS = 0x20000008, /* Receiver detected context mismatch via invalid header */
|
||||
MPI_IOCLOGINFO_FC_INIT_ERROR_RX_UNEXPECTED_FRAME= 0x20000009, /* CtxMgr detected unsupported frame type */
|
||||
MPI_IOCLOGINFO_FC_INIT_ERROR_LINK_FAILURE = 0x2000000A, /* Link failure occurred */
|
||||
MPI_IOCLOGINFO_FC_INIT_ERROR_TX_TIMEOUT = 0x2000000B, /* Transmitter timeout error */
|
||||
|
||||
MPI_IOCLOGINFO_FC_TARGET_BASE = 0x21000000,
|
||||
MPI_IOCLOGINFO_FC_TARGET_NO_PDISC = 0x21000001, /* not sent because we are waiting for a PDISC from the initiator */
|
||||
MPI_IOCLOGINFO_FC_TARGET_NO_LOGIN = 0x21000002, /* not sent because we are not logged in to the remote node */
|
||||
MPI_IOCLOGINFO_FC_TARGET_DOAR_KILLED_BY_LIP = 0x21000003, /* Data Out, Auto Response, not sent due to a LIP */
|
||||
MPI_IOCLOGINFO_FC_TARGET_DIAR_KILLED_BY_LIP = 0x21000004, /* Data In, Auto Response, not sent due to a LIP */
|
||||
MPI_IOCLOGINFO_FC_TARGET_DIAR_MISSING_DATA = 0x21000005, /* Data In, Auto Response, missing data frames */
|
||||
MPI_IOCLOGINFO_FC_TARGET_DONR_KILLED_BY_LIP = 0x21000006, /* Data Out, No Response, not sent due to a LIP */
|
||||
MPI_IOCLOGINFO_FC_TARGET_WRSP_KILLED_BY_LIP = 0x21000007, /* Auto-response after a write not sent due to a LIP */
|
||||
MPI_IOCLOGINFO_FC_TARGET_DINR_KILLED_BY_LIP = 0x21000008, /* Data In, No Response, not completed due to a LIP */
|
||||
MPI_IOCLOGINFO_FC_TARGET_DINR_MISSING_DATA = 0x21000009, /* Data In, No Response, missing data frames */
|
||||
MPI_IOCLOGINFO_FC_TARGET_MRSP_KILLED_BY_LIP = 0x2100000a, /* Manual Response not sent due to a LIP */
|
||||
MPI_IOCLOGINFO_FC_TARGET_NO_CLASS_3 = 0x2100000b, /* not sent because remote node does not support Class 3 */
|
||||
MPI_IOCLOGINFO_FC_TARGET_LOGIN_NOT_VALID = 0x2100000c, /* not sent because login to remote node not validated */
|
||||
MPI_IOCLOGINFO_FC_TARGET_FROM_OUTBOUND = 0x2100000e, /* cleared from the outbound queue after a logout */
|
||||
MPI_IOCLOGINFO_FC_TARGET_WAITING_FOR_DATA_IN = 0x2100000f, /* cleared waiting for data after a logout */
|
||||
|
||||
MPI_IOCLOGINFO_FC_LAN_BASE = 0x22000000,
|
||||
MPI_IOCLOGINFO_FC_LAN_TRANS_SGL_MISSING = 0x22000001, /* Transaction Context Sgl Missing */
|
||||
MPI_IOCLOGINFO_FC_LAN_TRANS_WRONG_PLACE = 0x22000002, /* Transaction Context found before an EOB */
|
||||
MPI_IOCLOGINFO_FC_LAN_TRANS_RES_BITS_SET = 0x22000003, /* Transaction Context value has reserved bits set */
|
||||
MPI_IOCLOGINFO_FC_LAN_WRONG_SGL_FLAG = 0x22000004, /* Invalid SGL Flags */
|
||||
|
||||
MPI_IOCLOGINFO_FC_MSG_BASE = 0x23000000,
|
||||
|
||||
MPI_IOCLOGINFO_FC_LINK_BASE = 0x24000000,
|
||||
MPI_IOCLOGINFO_FC_LINK_LOOP_INIT_TIMEOUT = 0x24000001, /* Loop initialization timed out */
|
||||
MPI_IOCLOGINFO_FC_LINK_ALREADY_INITIALIZED = 0x24000002, /* Another system controller already initialized the loop */
|
||||
MPI_IOCLOGINFO_FC_LINK_LINK_NOT_ESTABLISHED = 0x24000003, /* Not synchronized to signal or still negotiating (possible cable problem) */
|
||||
MPI_IOCLOGINFO_FC_LINK_CRC_ERROR = 0x24000004, /* CRC check detected error on received frame */
|
||||
|
||||
MPI_IOCLOGINFO_FC_CTX_BASE = 0x25000000,
|
||||
|
||||
MPI_IOCLOGINFO_FC_INVALID_FIELD_BYTE_OFFSET = 0x26000000, /* The lower 24 bits give the byte offset of the field in the request message that is invalid */
|
||||
MPI_IOCLOGINFO_FC_INVALID_FIELD_MAX_OFFSET = 0x26ffffff,
|
||||
|
||||
MPI_IOCLOGINFO_FC_STATE_CHANGE = 0x27000000 /* The lower 24 bits give additional information concerning state change */
|
||||
|
||||
} MpiIocLogInfoFc_t;
|
||||
746
extra/linux-2.6.10/drivers/message/fusion/lsi/mpi.h
Normal file
746
extra/linux-2.6.10/drivers/message/fusion/lsi/mpi.h
Normal file
@@ -0,0 +1,746 @@
|
||||
/*
|
||||
* Copyright (c) 2000-2003 LSI Logic Corporation.
|
||||
*
|
||||
*
|
||||
* Name: mpi.h
|
||||
* Title: MPI Message independent structures and definitions
|
||||
* Creation Date: July 27, 2000
|
||||
*
|
||||
* mpi.h Version: 01.05.xx
|
||||
*
|
||||
* Version History
|
||||
* ---------------
|
||||
*
|
||||
* Date Version Description
|
||||
* -------- -------- ------------------------------------------------------
|
||||
* 05-08-00 00.10.01 Original release for 0.10 spec dated 4/26/2000.
|
||||
* 05-24-00 00.10.02 Added MPI_IOCSTATUS_SCSI_RESIDUAL_MISMATCH definition.
|
||||
* 06-06-00 01.00.01 Update MPI_VERSION_MAJOR and MPI_VERSION_MINOR.
|
||||
* 06-22-00 01.00.02 Added MPI_IOCSTATUS_LAN_ definitions.
|
||||
* Removed LAN_SUSPEND function definition.
|
||||
* Added MPI_MSGFLAGS_CONTINUATION_REPLY definition.
|
||||
* 06-30-00 01.00.03 Added MPI_CONTEXT_REPLY_TYPE_LAN definition.
|
||||
* Added MPI_GET/SET_CONTEXT_REPLY_TYPE macros.
|
||||
* 07-27-00 01.00.04 Added MPI_FAULT_ definitions.
|
||||
* Removed MPI_IOCSTATUS_MSG/DATA_XFER_ERROR definitions.
|
||||
* Added MPI_IOCSTATUS_INTERNAL_ERROR definition.
|
||||
* Added MPI_IOCSTATUS_TARGET_XFER_COUNT_MISMATCH.
|
||||
* 11-02-00 01.01.01 Original release for post 1.0 work.
|
||||
* 12-04-00 01.01.02 Added new function codes.
|
||||
* 01-09-01 01.01.03 Added more definitions to the system interface section
|
||||
* Added MPI_IOCSTATUS_TARGET_STS_DATA_NOT_SENT.
|
||||
* 01-25-01 01.01.04 Changed MPI_VERSION_MINOR from 0x00 to 0x01.
|
||||
* 02-20-01 01.01.05 Started using MPI_POINTER.
|
||||
* Fixed value for MPI_DIAG_RW_ENABLE.
|
||||
* Added defines for MPI_DIAG_PREVENT_IOC_BOOT and
|
||||
* MPI_DIAG_CLEAR_FLASH_BAD_SIG.
|
||||
* Obsoleted MPI_IOCSTATUS_TARGET_FC_ defines.
|
||||
* 02-27-01 01.01.06 Removed MPI_HOST_INDEX_REGISTER define.
|
||||
* Added function codes for RAID.
|
||||
* 04-09-01 01.01.07 Added alternate define for MPI_DOORBELL_ACTIVE,
|
||||
* MPI_DOORBELL_USED, to better match the spec.
|
||||
* 08-08-01 01.02.01 Original release for v1.2 work.
|
||||
* Changed MPI_VERSION_MINOR from 0x01 to 0x02.
|
||||
* Added define MPI_FUNCTION_TOOLBOX.
|
||||
* 09-28-01 01.02.02 New function code MPI_SCSI_ENCLOSURE_PROCESSOR.
|
||||
* 11-01-01 01.02.03 Changed name to MPI_FUNCTION_SCSI_ENCLOSURE_PROCESSOR.
|
||||
* 03-14-02 01.02.04 Added MPI_HEADER_VERSION_ defines.
|
||||
* 05-31-02 01.02.05 Bumped MPI_HEADER_VERSION_UNIT.
|
||||
* 07-12-02 01.02.06 Added define for MPI_FUNCTION_MAILBOX.
|
||||
* 09-16-02 01.02.07 Bumped value for MPI_HEADER_VERSION_UNIT.
|
||||
* 11-15-02 01.02.08 Added define MPI_IOCSTATUS_TARGET_INVALID_IO_INDEX and
|
||||
* obsoleted define MPI_IOCSTATUS_TARGET_INVALID_IOCINDEX.
|
||||
* 04-01-03 01.02.09 New IOCStatus code: MPI_IOCSTATUS_FC_EXCHANGE_CANCELED
|
||||
* 06-26-03 01.02.10 Bumped MPI_HEADER_VERSION_UNIT value.
|
||||
* --------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#ifndef MPI_H
|
||||
#define MPI_H
|
||||
|
||||
|
||||
/*****************************************************************************
|
||||
*
|
||||
* M P I V e r s i o n D e f i n i t i o n s
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
#define MPI_VERSION_MAJOR (0x01)
|
||||
#define MPI_VERSION_MINOR (0x05)
|
||||
#define MPI_VERSION_MAJOR_MASK (0xFF00)
|
||||
#define MPI_VERSION_MAJOR_SHIFT (8)
|
||||
#define MPI_VERSION_MINOR_MASK (0x00FF)
|
||||
#define MPI_VERSION_MINOR_SHIFT (0)
|
||||
#define MPI_VERSION ((MPI_VERSION_MAJOR << MPI_VERSION_MAJOR_SHIFT) | \
|
||||
MPI_VERSION_MINOR)
|
||||
|
||||
#define MPI_VERSION_01_00 (0x0100)
|
||||
#define MPI_VERSION_01_01 (0x0101)
|
||||
#define MPI_VERSION_01_02 (0x0102)
|
||||
#define MPI_VERSION_01_03 (0x0103)
|
||||
#define MPI_VERSION_01_05 (0x0105)
|
||||
/* Note: The major versions of 0xe0 through 0xff are reserved */
|
||||
|
||||
/* versioning for this MPI header set */
|
||||
#define MPI_HEADER_VERSION_UNIT (0x00)
|
||||
#define MPI_HEADER_VERSION_DEV (0x00)
|
||||
#define MPI_HEADER_VERSION_UNIT_MASK (0xFF00)
|
||||
#define MPI_HEADER_VERSION_UNIT_SHIFT (8)
|
||||
#define MPI_HEADER_VERSION_DEV_MASK (0x00FF)
|
||||
#define MPI_HEADER_VERSION_DEV_SHIFT (0)
|
||||
#define MPI_HEADER_VERSION ((MPI_HEADER_VERSION_UNIT << 8) | MPI_HEADER_VERSION_DEV)
|
||||
|
||||
/*****************************************************************************
|
||||
*
|
||||
* I O C S t a t e D e f i n i t i o n s
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
#define MPI_IOC_STATE_RESET (0x00000000)
|
||||
#define MPI_IOC_STATE_READY (0x10000000)
|
||||
#define MPI_IOC_STATE_OPERATIONAL (0x20000000)
|
||||
#define MPI_IOC_STATE_FAULT (0x40000000)
|
||||
|
||||
#define MPI_IOC_STATE_MASK (0xF0000000)
|
||||
#define MPI_IOC_STATE_SHIFT (28)
|
||||
|
||||
/* Fault state codes (product independent range 0x8000-0xFFFF) */
|
||||
|
||||
#define MPI_FAULT_REQUEST_MESSAGE_PCI_PARITY_ERROR (0x8111)
|
||||
#define MPI_FAULT_REQUEST_MESSAGE_PCI_BUS_FAULT (0x8112)
|
||||
#define MPI_FAULT_REPLY_MESSAGE_PCI_PARITY_ERROR (0x8113)
|
||||
#define MPI_FAULT_REPLY_MESSAGE_PCI_BUS_FAULT (0x8114)
|
||||
#define MPI_FAULT_DATA_SEND_PCI_PARITY_ERROR (0x8115)
|
||||
#define MPI_FAULT_DATA_SEND_PCI_BUS_FAULT (0x8116)
|
||||
#define MPI_FAULT_DATA_RECEIVE_PCI_PARITY_ERROR (0x8117)
|
||||
#define MPI_FAULT_DATA_RECEIVE_PCI_BUS_FAULT (0x8118)
|
||||
|
||||
|
||||
/*****************************************************************************
|
||||
*
|
||||
* P C I S y s t e m I n t e r f a c e R e g i s t e r s
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
/* S y s t e m D o o r b e l l */
|
||||
#define MPI_DOORBELL_OFFSET (0x00000000)
|
||||
#define MPI_DOORBELL_ACTIVE (0x08000000) /* DoorbellUsed */
|
||||
#define MPI_DOORBELL_USED (MPI_DOORBELL_ACTIVE)
|
||||
#define MPI_DOORBELL_ACTIVE_SHIFT (27)
|
||||
#define MPI_DOORBELL_WHO_INIT_MASK (0x07000000)
|
||||
#define MPI_DOORBELL_WHO_INIT_SHIFT (24)
|
||||
#define MPI_DOORBELL_FUNCTION_MASK (0xFF000000)
|
||||
#define MPI_DOORBELL_FUNCTION_SHIFT (24)
|
||||
#define MPI_DOORBELL_ADD_DWORDS_MASK (0x00FF0000)
|
||||
#define MPI_DOORBELL_ADD_DWORDS_SHIFT (16)
|
||||
#define MPI_DOORBELL_DATA_MASK (0x0000FFFF)
|
||||
|
||||
|
||||
#define MPI_WRITE_SEQUENCE_OFFSET (0x00000004)
|
||||
#define MPI_WRSEQ_KEY_VALUE_MASK (0x0000000F)
|
||||
#define MPI_WRSEQ_1ST_KEY_VALUE (0x04)
|
||||
#define MPI_WRSEQ_2ND_KEY_VALUE (0x0B)
|
||||
#define MPI_WRSEQ_3RD_KEY_VALUE (0x02)
|
||||
#define MPI_WRSEQ_4TH_KEY_VALUE (0x07)
|
||||
#define MPI_WRSEQ_5TH_KEY_VALUE (0x0D)
|
||||
|
||||
#define MPI_DIAGNOSTIC_OFFSET (0x00000008)
|
||||
#define MPI_DIAG_CLEAR_FLASH_BAD_SIG (0x00000400)
|
||||
#define MPI_DIAG_PREVENT_IOC_BOOT (0x00000200)
|
||||
#define MPI_DIAG_DRWE (0x00000080)
|
||||
#define MPI_DIAG_FLASH_BAD_SIG (0x00000040)
|
||||
#define MPI_DIAG_RESET_HISTORY (0x00000020)
|
||||
#define MPI_DIAG_RW_ENABLE (0x00000010)
|
||||
#define MPI_DIAG_RESET_ADAPTER (0x00000004)
|
||||
#define MPI_DIAG_DISABLE_ARM (0x00000002)
|
||||
#define MPI_DIAG_MEM_ENABLE (0x00000001)
|
||||
|
||||
#define MPI_TEST_BASE_ADDRESS_OFFSET (0x0000000C)
|
||||
|
||||
#define MPI_DIAG_RW_DATA_OFFSET (0x00000010)
|
||||
|
||||
#define MPI_DIAG_RW_ADDRESS_OFFSET (0x00000014)
|
||||
|
||||
#define MPI_HOST_INTERRUPT_STATUS_OFFSET (0x00000030)
|
||||
#define MPI_HIS_IOP_DOORBELL_STATUS (0x80000000)
|
||||
#define MPI_HIS_REPLY_MESSAGE_INTERRUPT (0x00000008)
|
||||
#define MPI_HIS_DOORBELL_INTERRUPT (0x00000001)
|
||||
|
||||
#define MPI_HOST_INTERRUPT_MASK_OFFSET (0x00000034)
|
||||
#define MPI_HIM_RIM (0x00000008)
|
||||
#define MPI_HIM_DIM (0x00000001)
|
||||
|
||||
#define MPI_REQUEST_QUEUE_OFFSET (0x00000040)
|
||||
#define MPI_REQUEST_POST_FIFO_OFFSET (0x00000040)
|
||||
|
||||
#define MPI_REPLY_QUEUE_OFFSET (0x00000044)
|
||||
#define MPI_REPLY_POST_FIFO_OFFSET (0x00000044)
|
||||
#define MPI_REPLY_FREE_FIFO_OFFSET (0x00000044)
|
||||
|
||||
#define MPI_HI_PRI_REQUEST_QUEUE_OFFSET (0x00000048)
|
||||
|
||||
|
||||
|
||||
/*****************************************************************************
|
||||
*
|
||||
* M e s s a g e F r a m e D e s c r i p t o r s
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
#define MPI_REQ_MF_DESCRIPTOR_NB_MASK (0x00000003)
|
||||
#define MPI_REQ_MF_DESCRIPTOR_F_BIT (0x00000004)
|
||||
#define MPI_REQ_MF_DESCRIPTOR_ADDRESS_MASK (0xFFFFFFF8)
|
||||
|
||||
#define MPI_ADDRESS_REPLY_A_BIT (0x80000000)
|
||||
#define MPI_ADDRESS_REPLY_ADDRESS_MASK (0x7FFFFFFF)
|
||||
|
||||
#define MPI_CONTEXT_REPLY_A_BIT (0x80000000)
|
||||
#define MPI_CONTEXT_REPLY_TYPE_MASK (0x60000000)
|
||||
#define MPI_CONTEXT_REPLY_TYPE_SCSI_INIT (0x00)
|
||||
#define MPI_CONTEXT_REPLY_TYPE_SCSI_TARGET (0x01)
|
||||
#define MPI_CONTEXT_REPLY_TYPE_LAN (0x02)
|
||||
#define MPI_CONTEXT_REPLY_TYPE_SHIFT (29)
|
||||
#define MPI_CONTEXT_REPLY_CONTEXT_MASK (0x1FFFFFFF)
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* Context Reply macros */
|
||||
/****************************************************************************/
|
||||
|
||||
#define MPI_GET_CONTEXT_REPLY_TYPE(x) (((x) & MPI_CONTEXT_REPLY_TYPE_MASK) \
|
||||
>> MPI_CONTEXT_REPLY_TYPE_SHIFT)
|
||||
|
||||
#define MPI_SET_CONTEXT_REPLY_TYPE(x, typ) \
|
||||
((x) = ((x) & ~MPI_CONTEXT_REPLY_TYPE_MASK) | \
|
||||
(((typ) << MPI_CONTEXT_REPLY_TYPE_SHIFT) & \
|
||||
MPI_CONTEXT_REPLY_TYPE_MASK))
|
||||
|
||||
|
||||
/*****************************************************************************
|
||||
*
|
||||
* M e s s a g e F u n c t i o n s
|
||||
* 0x80 -> 0x8F reserved for private message use per product
|
||||
*
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
#define MPI_FUNCTION_SCSI_IO_REQUEST (0x00)
|
||||
#define MPI_FUNCTION_SCSI_TASK_MGMT (0x01)
|
||||
#define MPI_FUNCTION_IOC_INIT (0x02)
|
||||
#define MPI_FUNCTION_IOC_FACTS (0x03)
|
||||
#define MPI_FUNCTION_CONFIG (0x04)
|
||||
#define MPI_FUNCTION_PORT_FACTS (0x05)
|
||||
#define MPI_FUNCTION_PORT_ENABLE (0x06)
|
||||
#define MPI_FUNCTION_EVENT_NOTIFICATION (0x07)
|
||||
#define MPI_FUNCTION_EVENT_ACK (0x08)
|
||||
#define MPI_FUNCTION_FW_DOWNLOAD (0x09)
|
||||
#define MPI_FUNCTION_TARGET_CMD_BUFFER_POST (0x0A)
|
||||
#define MPI_FUNCTION_TARGET_ASSIST (0x0B)
|
||||
#define MPI_FUNCTION_TARGET_STATUS_SEND (0x0C)
|
||||
#define MPI_FUNCTION_TARGET_MODE_ABORT (0x0D)
|
||||
#define MPI_FUNCTION_FC_LINK_SRVC_BUF_POST (0x0E)
|
||||
#define MPI_FUNCTION_FC_LINK_SRVC_RSP (0x0F)
|
||||
#define MPI_FUNCTION_FC_EX_LINK_SRVC_SEND (0x10)
|
||||
#define MPI_FUNCTION_FC_ABORT (0x11)
|
||||
#define MPI_FUNCTION_FW_UPLOAD (0x12)
|
||||
#define MPI_FUNCTION_FC_COMMON_TRANSPORT_SEND (0x13)
|
||||
#define MPI_FUNCTION_FC_PRIMITIVE_SEND (0x14)
|
||||
|
||||
#define MPI_FUNCTION_RAID_ACTION (0x15)
|
||||
#define MPI_FUNCTION_RAID_SCSI_IO_PASSTHROUGH (0x16)
|
||||
|
||||
#define MPI_FUNCTION_TOOLBOX (0x17)
|
||||
|
||||
#define MPI_FUNCTION_SCSI_ENCLOSURE_PROCESSOR (0x18)
|
||||
|
||||
#define MPI_FUNCTION_MAILBOX (0x19)
|
||||
|
||||
#define MPI_FUNCTION_SMP_PASSTHROUGH (0x1A)
|
||||
#define MPI_FUNCTION_SAS_IO_UNIT_CONTROL (0x1B)
|
||||
|
||||
#define MPI_DIAG_BUFFER_POST (0x1D)
|
||||
#define MPI_DIAG_RELEASE (0x1E)
|
||||
|
||||
#define MPI_FUNCTION_SCSI_IO_32 (0x1F)
|
||||
|
||||
#define MPI_FUNCTION_LAN_SEND (0x20)
|
||||
#define MPI_FUNCTION_LAN_RECEIVE (0x21)
|
||||
#define MPI_FUNCTION_LAN_RESET (0x22)
|
||||
|
||||
#define MPI_FUNCTION_INBAND_BUFFER_POST (0x28)
|
||||
#define MPI_FUNCTION_INBAND_SEND (0x29)
|
||||
#define MPI_FUNCTION_INBAND_RSP (0x2A)
|
||||
#define MPI_FUNCTION_INBAND_ABORT (0x2B)
|
||||
|
||||
#define MPI_FUNCTION_IOC_MESSAGE_UNIT_RESET (0x40)
|
||||
#define MPI_FUNCTION_IO_UNIT_RESET (0x41)
|
||||
#define MPI_FUNCTION_HANDSHAKE (0x42)
|
||||
#define MPI_FUNCTION_REPLY_FRAME_REMOVAL (0x43)
|
||||
|
||||
|
||||
/* standard version format */
|
||||
typedef struct _MPI_VERSION_STRUCT
|
||||
{
|
||||
U8 Dev; /* 00h */
|
||||
U8 Unit; /* 01h */
|
||||
U8 Minor; /* 02h */
|
||||
U8 Major; /* 03h */
|
||||
} MPI_VERSION_STRUCT, MPI_POINTER PTR_MPI_VERSION_STRUCT,
|
||||
MpiVersionStruct_t, MPI_POINTER pMpiVersionStruct;
|
||||
|
||||
typedef union _MPI_VERSION_FORMAT
|
||||
{
|
||||
MPI_VERSION_STRUCT Struct;
|
||||
U32 Word;
|
||||
} MPI_VERSION_FORMAT, MPI_POINTER PTR_MPI_VERSION_FORMAT,
|
||||
MpiVersionFormat_t, MPI_POINTER pMpiVersionFormat_t;
|
||||
|
||||
|
||||
/*****************************************************************************
|
||||
*
|
||||
* S c a t t e r G a t h e r E l e m e n t s
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
/****************************************************************************/
|
||||
/* Simple element structures */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _SGE_SIMPLE32
|
||||
{
|
||||
U32 FlagsLength;
|
||||
U32 Address;
|
||||
} SGE_SIMPLE32, MPI_POINTER PTR_SGE_SIMPLE32,
|
||||
SGESimple32_t, MPI_POINTER pSGESimple32_t;
|
||||
|
||||
typedef struct _SGE_SIMPLE64
|
||||
{
|
||||
U32 FlagsLength;
|
||||
U64 Address;
|
||||
} SGE_SIMPLE64, MPI_POINTER PTR_SGE_SIMPLE64,
|
||||
SGESimple64_t, MPI_POINTER pSGESimple64_t;
|
||||
|
||||
typedef struct _SGE_SIMPLE_UNION
|
||||
{
|
||||
U32 FlagsLength;
|
||||
union
|
||||
{
|
||||
U32 Address32;
|
||||
U64 Address64;
|
||||
}u;
|
||||
} SGESimpleUnion_t, MPI_POINTER pSGESimpleUnion_t,
|
||||
SGE_SIMPLE_UNION, MPI_POINTER PTR_SGE_SIMPLE_UNION;
|
||||
|
||||
/****************************************************************************/
|
||||
/* Chain element structures */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _SGE_CHAIN32
|
||||
{
|
||||
U16 Length;
|
||||
U8 NextChainOffset;
|
||||
U8 Flags;
|
||||
U32 Address;
|
||||
} SGE_CHAIN32, MPI_POINTER PTR_SGE_CHAIN32,
|
||||
SGEChain32_t, MPI_POINTER pSGEChain32_t;
|
||||
|
||||
typedef struct _SGE_CHAIN64
|
||||
{
|
||||
U16 Length;
|
||||
U8 NextChainOffset;
|
||||
U8 Flags;
|
||||
U64 Address;
|
||||
} SGE_CHAIN64, MPI_POINTER PTR_SGE_CHAIN64,
|
||||
SGEChain64_t, MPI_POINTER pSGEChain64_t;
|
||||
|
||||
typedef struct _SGE_CHAIN_UNION
|
||||
{
|
||||
U16 Length;
|
||||
U8 NextChainOffset;
|
||||
U8 Flags;
|
||||
union
|
||||
{
|
||||
U32 Address32;
|
||||
U64 Address64;
|
||||
}u;
|
||||
} SGE_CHAIN_UNION, MPI_POINTER PTR_SGE_CHAIN_UNION,
|
||||
SGEChainUnion_t, MPI_POINTER pSGEChainUnion_t;
|
||||
|
||||
/****************************************************************************/
|
||||
/* Transaction Context element */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _SGE_TRANSACTION32
|
||||
{
|
||||
U8 Reserved;
|
||||
U8 ContextSize;
|
||||
U8 DetailsLength;
|
||||
U8 Flags;
|
||||
U32 TransactionContext[1];
|
||||
U32 TransactionDetails[1];
|
||||
} SGE_TRANSACTION32, MPI_POINTER PTR_SGE_TRANSACTION32,
|
||||
SGETransaction32_t, MPI_POINTER pSGETransaction32_t;
|
||||
|
||||
typedef struct _SGE_TRANSACTION64
|
||||
{
|
||||
U8 Reserved;
|
||||
U8 ContextSize;
|
||||
U8 DetailsLength;
|
||||
U8 Flags;
|
||||
U32 TransactionContext[2];
|
||||
U32 TransactionDetails[1];
|
||||
} SGE_TRANSACTION64, MPI_POINTER PTR_SGE_TRANSACTION64,
|
||||
SGETransaction64_t, MPI_POINTER pSGETransaction64_t;
|
||||
|
||||
typedef struct _SGE_TRANSACTION96
|
||||
{
|
||||
U8 Reserved;
|
||||
U8 ContextSize;
|
||||
U8 DetailsLength;
|
||||
U8 Flags;
|
||||
U32 TransactionContext[3];
|
||||
U32 TransactionDetails[1];
|
||||
} SGE_TRANSACTION96, MPI_POINTER PTR_SGE_TRANSACTION96,
|
||||
SGETransaction96_t, MPI_POINTER pSGETransaction96_t;
|
||||
|
||||
typedef struct _SGE_TRANSACTION128
|
||||
{
|
||||
U8 Reserved;
|
||||
U8 ContextSize;
|
||||
U8 DetailsLength;
|
||||
U8 Flags;
|
||||
U32 TransactionContext[4];
|
||||
U32 TransactionDetails[1];
|
||||
} SGE_TRANSACTION128, MPI_POINTER PTR_SGE_TRANSACTION128,
|
||||
SGETransaction_t128, MPI_POINTER pSGETransaction_t128;
|
||||
|
||||
typedef struct _SGE_TRANSACTION_UNION
|
||||
{
|
||||
U8 Reserved;
|
||||
U8 ContextSize;
|
||||
U8 DetailsLength;
|
||||
U8 Flags;
|
||||
union
|
||||
{
|
||||
U32 TransactionContext32[1];
|
||||
U32 TransactionContext64[2];
|
||||
U32 TransactionContext96[3];
|
||||
U32 TransactionContext128[4];
|
||||
}u;
|
||||
U32 TransactionDetails[1];
|
||||
} SGE_TRANSACTION_UNION, MPI_POINTER PTR_SGE_TRANSACTION_UNION,
|
||||
SGETransactionUnion_t, MPI_POINTER pSGETransactionUnion_t;
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* SGE IO types union for IO SGL's */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _SGE_IO_UNION
|
||||
{
|
||||
union
|
||||
{
|
||||
SGE_SIMPLE_UNION Simple;
|
||||
SGE_CHAIN_UNION Chain;
|
||||
} u;
|
||||
} SGE_IO_UNION, MPI_POINTER PTR_SGE_IO_UNION,
|
||||
SGEIOUnion_t, MPI_POINTER pSGEIOUnion_t;
|
||||
|
||||
/****************************************************************************/
|
||||
/* SGE union for SGL's with Simple and Transaction elements */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _SGE_TRANS_SIMPLE_UNION
|
||||
{
|
||||
union
|
||||
{
|
||||
SGE_SIMPLE_UNION Simple;
|
||||
SGE_TRANSACTION_UNION Transaction;
|
||||
} u;
|
||||
} SGE_TRANS_SIMPLE_UNION, MPI_POINTER PTR_SGE_TRANS_SIMPLE_UNION,
|
||||
SGETransSimpleUnion_t, MPI_POINTER pSGETransSimpleUnion_t;
|
||||
|
||||
/****************************************************************************/
|
||||
/* All SGE types union */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _SGE_MPI_UNION
|
||||
{
|
||||
union
|
||||
{
|
||||
SGE_SIMPLE_UNION Simple;
|
||||
SGE_CHAIN_UNION Chain;
|
||||
SGE_TRANSACTION_UNION Transaction;
|
||||
} u;
|
||||
} SGE_MPI_UNION, MPI_POINTER PTR_SGE_MPI_UNION,
|
||||
MPI_SGE_UNION_t, MPI_POINTER pMPI_SGE_UNION_t,
|
||||
SGEAllUnion_t, MPI_POINTER pSGEAllUnion_t;
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* SGE field definition and masks */
|
||||
/****************************************************************************/
|
||||
|
||||
/* Flags field bit definitions */
|
||||
|
||||
#define MPI_SGE_FLAGS_LAST_ELEMENT (0x80)
|
||||
#define MPI_SGE_FLAGS_END_OF_BUFFER (0x40)
|
||||
#define MPI_SGE_FLAGS_ELEMENT_TYPE_MASK (0x30)
|
||||
#define MPI_SGE_FLAGS_LOCAL_ADDRESS (0x08)
|
||||
#define MPI_SGE_FLAGS_DIRECTION (0x04)
|
||||
#define MPI_SGE_FLAGS_ADDRESS_SIZE (0x02)
|
||||
#define MPI_SGE_FLAGS_END_OF_LIST (0x01)
|
||||
|
||||
#define MPI_SGE_FLAGS_SHIFT (24)
|
||||
|
||||
#define MPI_SGE_LENGTH_MASK (0x00FFFFFF)
|
||||
#define MPI_SGE_CHAIN_LENGTH_MASK (0x0000FFFF)
|
||||
|
||||
/* Element Type */
|
||||
|
||||
#define MPI_SGE_FLAGS_TRANSACTION_ELEMENT (0x00)
|
||||
#define MPI_SGE_FLAGS_SIMPLE_ELEMENT (0x10)
|
||||
#define MPI_SGE_FLAGS_CHAIN_ELEMENT (0x30)
|
||||
#define MPI_SGE_FLAGS_ELEMENT_MASK (0x30)
|
||||
|
||||
/* Address location */
|
||||
|
||||
#define MPI_SGE_FLAGS_SYSTEM_ADDRESS (0x00)
|
||||
|
||||
/* Direction */
|
||||
|
||||
#define MPI_SGE_FLAGS_IOC_TO_HOST (0x00)
|
||||
#define MPI_SGE_FLAGS_HOST_TO_IOC (0x04)
|
||||
|
||||
/* Address Size */
|
||||
|
||||
#define MPI_SGE_FLAGS_32_BIT_ADDRESSING (0x00)
|
||||
#define MPI_SGE_FLAGS_64_BIT_ADDRESSING (0x02)
|
||||
|
||||
/* Context Size */
|
||||
|
||||
#define MPI_SGE_FLAGS_32_BIT_CONTEXT (0x00)
|
||||
#define MPI_SGE_FLAGS_64_BIT_CONTEXT (0x02)
|
||||
#define MPI_SGE_FLAGS_96_BIT_CONTEXT (0x04)
|
||||
#define MPI_SGE_FLAGS_128_BIT_CONTEXT (0x06)
|
||||
|
||||
#define MPI_SGE_CHAIN_OFFSET_MASK (0x00FF0000)
|
||||
#define MPI_SGE_CHAIN_OFFSET_SHIFT (16)
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* SGE operation Macros */
|
||||
/****************************************************************************/
|
||||
|
||||
/* SIMPLE FlagsLength manipulations... */
|
||||
#define MPI_SGE_SET_FLAGS(f) ((U32)(f) << MPI_SGE_FLAGS_SHIFT)
|
||||
#define MPI_SGE_GET_FLAGS(fl) (((fl) & ~MPI_SGE_LENGTH_MASK) >> MPI_SGE_FLAGS_SHIFT)
|
||||
#define MPI_SGE_LENGTH(fl) ((fl) & MPI_SGE_LENGTH_MASK)
|
||||
#define MPI_SGE_CHAIN_LENGTH(fl) ((fl) & MPI_SGE_CHAIN_LENGTH_MASK)
|
||||
|
||||
#define MPI_SGE_SET_FLAGS_LENGTH(f,l) (MPI_SGE_SET_FLAGS(f) | MPI_SGE_LENGTH(l))
|
||||
|
||||
#define MPI_pSGE_GET_FLAGS(psg) MPI_SGE_GET_FLAGS((psg)->FlagsLength)
|
||||
#define MPI_pSGE_GET_LENGTH(psg) MPI_SGE_LENGTH((psg)->FlagsLength)
|
||||
#define MPI_pSGE_SET_FLAGS_LENGTH(psg,f,l) (psg)->FlagsLength = MPI_SGE_SET_FLAGS_LENGTH(f,l)
|
||||
/* CAUTION - The following are READ-MODIFY-WRITE! */
|
||||
#define MPI_pSGE_SET_FLAGS(psg,f) (psg)->FlagsLength |= MPI_SGE_SET_FLAGS(f)
|
||||
#define MPI_pSGE_SET_LENGTH(psg,l) (psg)->FlagsLength |= MPI_SGE_LENGTH(l)
|
||||
|
||||
#define MPI_GET_CHAIN_OFFSET(x) ((x&MPI_SGE_CHAIN_OFFSET_MASK)>>MPI_SGE_CHAIN_OFFSET_SHIFT)
|
||||
|
||||
|
||||
|
||||
/*****************************************************************************
|
||||
*
|
||||
* S t a n d a r d M e s s a g e S t r u c t u r e s
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
/****************************************************************************/
|
||||
/* Standard message request header for all request messages */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_REQUEST_HEADER
|
||||
{
|
||||
U8 Reserved[2]; /* function specific */
|
||||
U8 ChainOffset;
|
||||
U8 Function;
|
||||
U8 Reserved1[3]; /* function specific */
|
||||
U8 MsgFlags;
|
||||
U32 MsgContext;
|
||||
} MSG_REQUEST_HEADER, MPI_POINTER PTR_MSG_REQUEST_HEADER,
|
||||
MPIHeader_t, MPI_POINTER pMPIHeader_t;
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* Default Reply */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_DEFAULT_REPLY
|
||||
{
|
||||
U8 Reserved[2]; /* function specific */
|
||||
U8 MsgLength;
|
||||
U8 Function;
|
||||
U8 Reserved1[3]; /* function specific */
|
||||
U8 MsgFlags;
|
||||
U32 MsgContext;
|
||||
U8 Reserved2[2]; /* function specific */
|
||||
U16 IOCStatus;
|
||||
U32 IOCLogInfo;
|
||||
} MSG_DEFAULT_REPLY, MPI_POINTER PTR_MSG_DEFAULT_REPLY,
|
||||
MPIDefaultReply_t, MPI_POINTER pMPIDefaultReply_t;
|
||||
|
||||
|
||||
/* MsgFlags definition for all replies */
|
||||
|
||||
#define MPI_MSGFLAGS_CONTINUATION_REPLY (0x80)
|
||||
|
||||
|
||||
/*****************************************************************************
|
||||
*
|
||||
* I O C S t a t u s V a l u e s
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
/****************************************************************************/
|
||||
/* Common IOCStatus values for all replies */
|
||||
/****************************************************************************/
|
||||
|
||||
#define MPI_IOCSTATUS_SUCCESS (0x0000)
|
||||
#define MPI_IOCSTATUS_INVALID_FUNCTION (0x0001)
|
||||
#define MPI_IOCSTATUS_BUSY (0x0002)
|
||||
#define MPI_IOCSTATUS_INVALID_SGL (0x0003)
|
||||
#define MPI_IOCSTATUS_INTERNAL_ERROR (0x0004)
|
||||
#define MPI_IOCSTATUS_RESERVED (0x0005)
|
||||
#define MPI_IOCSTATUS_INSUFFICIENT_RESOURCES (0x0006)
|
||||
#define MPI_IOCSTATUS_INVALID_FIELD (0x0007)
|
||||
#define MPI_IOCSTATUS_INVALID_STATE (0x0008)
|
||||
#define MPI_IOCSTATUS_OP_STATE_NOT_SUPPORTED (0x0009)
|
||||
|
||||
/****************************************************************************/
|
||||
/* Config IOCStatus values */
|
||||
/****************************************************************************/
|
||||
|
||||
#define MPI_IOCSTATUS_CONFIG_INVALID_ACTION (0x0020)
|
||||
#define MPI_IOCSTATUS_CONFIG_INVALID_TYPE (0x0021)
|
||||
#define MPI_IOCSTATUS_CONFIG_INVALID_PAGE (0x0022)
|
||||
#define MPI_IOCSTATUS_CONFIG_INVALID_DATA (0x0023)
|
||||
#define MPI_IOCSTATUS_CONFIG_NO_DEFAULTS (0x0024)
|
||||
#define MPI_IOCSTATUS_CONFIG_CANT_COMMIT (0x0025)
|
||||
|
||||
/****************************************************************************/
|
||||
/* SCSIIO Reply (SPI & FCP) initiator values */
|
||||
/****************************************************************************/
|
||||
|
||||
#define MPI_IOCSTATUS_SCSI_RECOVERED_ERROR (0x0040)
|
||||
#define MPI_IOCSTATUS_SCSI_INVALID_BUS (0x0041)
|
||||
#define MPI_IOCSTATUS_SCSI_INVALID_TARGETID (0x0042)
|
||||
#define MPI_IOCSTATUS_SCSI_DEVICE_NOT_THERE (0x0043)
|
||||
#define MPI_IOCSTATUS_SCSI_DATA_OVERRUN (0x0044)
|
||||
#define MPI_IOCSTATUS_SCSI_DATA_UNDERRUN (0x0045)
|
||||
#define MPI_IOCSTATUS_SCSI_IO_DATA_ERROR (0x0046)
|
||||
#define MPI_IOCSTATUS_SCSI_PROTOCOL_ERROR (0x0047)
|
||||
#define MPI_IOCSTATUS_SCSI_TASK_TERMINATED (0x0048)
|
||||
#define MPI_IOCSTATUS_SCSI_RESIDUAL_MISMATCH (0x0049)
|
||||
#define MPI_IOCSTATUS_SCSI_TASK_MGMT_FAILED (0x004A)
|
||||
#define MPI_IOCSTATUS_SCSI_IOC_TERMINATED (0x004B)
|
||||
#define MPI_IOCSTATUS_SCSI_EXT_TERMINATED (0x004C)
|
||||
|
||||
/****************************************************************************/
|
||||
/* For use by SCSI Initiator and SCSI Target end-to-end data protection */
|
||||
/****************************************************************************/
|
||||
|
||||
#define MPI_IOCSTATUS_EEDP_CRC_ERROR (0x004D)
|
||||
#define MPI_IOCSTATUS_EEDP_LBA_TAG_ERROR (0x004E)
|
||||
#define MPI_IOCSTATUS_EEDP_APP_TAG_ERROR (0x004F)
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* SCSI (SPI & FCP) target values */
|
||||
/****************************************************************************/
|
||||
|
||||
#define MPI_IOCSTATUS_TARGET_PRIORITY_IO (0x0060)
|
||||
#define MPI_IOCSTATUS_TARGET_INVALID_PORT (0x0061)
|
||||
#define MPI_IOCSTATUS_TARGET_INVALID_IOCINDEX (0x0062) /* obsolete */
|
||||
#define MPI_IOCSTATUS_TARGET_INVALID_IO_INDEX (0x0062)
|
||||
#define MPI_IOCSTATUS_TARGET_ABORTED (0x0063)
|
||||
#define MPI_IOCSTATUS_TARGET_NO_CONN_RETRYABLE (0x0064)
|
||||
#define MPI_IOCSTATUS_TARGET_NO_CONNECTION (0x0065)
|
||||
#define MPI_IOCSTATUS_TARGET_XFER_COUNT_MISMATCH (0x006A)
|
||||
#define MPI_IOCSTATUS_TARGET_STS_DATA_NOT_SENT (0x006B)
|
||||
|
||||
/****************************************************************************/
|
||||
/* Additional FCP target values (obsolete) */
|
||||
/****************************************************************************/
|
||||
|
||||
#define MPI_IOCSTATUS_TARGET_FC_ABORTED (0x0066) /* obsolete */
|
||||
#define MPI_IOCSTATUS_TARGET_FC_RX_ID_INVALID (0x0067) /* obsolete */
|
||||
#define MPI_IOCSTATUS_TARGET_FC_DID_INVALID (0x0068) /* obsolete */
|
||||
#define MPI_IOCSTATUS_TARGET_FC_NODE_LOGGED_OUT (0x0069) /* obsolete */
|
||||
|
||||
/****************************************************************************/
|
||||
/* Fibre Channel Direct Access values */
|
||||
/****************************************************************************/
|
||||
|
||||
#define MPI_IOCSTATUS_FC_ABORTED (0x0066)
|
||||
#define MPI_IOCSTATUS_FC_RX_ID_INVALID (0x0067)
|
||||
#define MPI_IOCSTATUS_FC_DID_INVALID (0x0068)
|
||||
#define MPI_IOCSTATUS_FC_NODE_LOGGED_OUT (0x0069)
|
||||
#define MPI_IOCSTATUS_FC_EXCHANGE_CANCELED (0x006C)
|
||||
|
||||
/****************************************************************************/
|
||||
/* LAN values */
|
||||
/****************************************************************************/
|
||||
|
||||
#define MPI_IOCSTATUS_LAN_DEVICE_NOT_FOUND (0x0080)
|
||||
#define MPI_IOCSTATUS_LAN_DEVICE_FAILURE (0x0081)
|
||||
#define MPI_IOCSTATUS_LAN_TRANSMIT_ERROR (0x0082)
|
||||
#define MPI_IOCSTATUS_LAN_TRANSMIT_ABORTED (0x0083)
|
||||
#define MPI_IOCSTATUS_LAN_RECEIVE_ERROR (0x0084)
|
||||
#define MPI_IOCSTATUS_LAN_RECEIVE_ABORTED (0x0085)
|
||||
#define MPI_IOCSTATUS_LAN_PARTIAL_PACKET (0x0086)
|
||||
#define MPI_IOCSTATUS_LAN_CANCELED (0x0087)
|
||||
|
||||
/****************************************************************************/
|
||||
/* Serial Attached SCSI values */
|
||||
/****************************************************************************/
|
||||
|
||||
#define MPI_IOCSTATUS_SAS_SMP_REQUEST_FAILED (0x0090)
|
||||
|
||||
/****************************************************************************/
|
||||
/* Inband values */
|
||||
/****************************************************************************/
|
||||
|
||||
#define MPI_IOCSTATUS_INBAND_ABORTED (0x0098)
|
||||
#define MPI_IOCSTATUS_INBAND_NO_CONNECTION (0x0099)
|
||||
|
||||
/****************************************************************************/
|
||||
/* Diagnostic Tools values */
|
||||
/****************************************************************************/
|
||||
|
||||
#define MPI_IOCSTATUS_DIAGNOSTIC_RELEASED (0x00A0)
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* IOCStatus flag to indicate that log info is available */
|
||||
/****************************************************************************/
|
||||
|
||||
#define MPI_IOCSTATUS_FLAG_LOG_INFO_AVAILABLE (0x8000)
|
||||
#define MPI_IOCSTATUS_MASK (0x7FFF)
|
||||
|
||||
/****************************************************************************/
|
||||
/* LogInfo Types */
|
||||
/****************************************************************************/
|
||||
|
||||
#define MPI_IOCLOGINFO_TYPE_MASK (0xF0000000)
|
||||
#define MPI_IOCLOGINFO_TYPE_SHIFT (28)
|
||||
#define MPI_IOCLOGINFO_TYPE_NONE (0x0)
|
||||
#define MPI_IOCLOGINFO_TYPE_SCSI (0x1)
|
||||
#define MPI_IOCLOGINFO_TYPE_FC (0x2)
|
||||
#define MPI_IOCLOGINFO_TYPE_SAS (0x3)
|
||||
#define MPI_IOCLOGINFO_TYPE_ISCSI (0x4)
|
||||
#define MPI_IOCLOGINFO_LOG_DATA_MASK (0x0FFFFFFF)
|
||||
|
||||
|
||||
#endif
|
||||
2105
extra/linux-2.6.10/drivers/message/fusion/lsi/mpi_cnfg.h
Normal file
2105
extra/linux-2.6.10/drivers/message/fusion/lsi/mpi_cnfg.h
Normal file
File diff suppressed because it is too large
Load Diff
363
extra/linux-2.6.10/drivers/message/fusion/lsi/mpi_fc.h
Normal file
363
extra/linux-2.6.10/drivers/message/fusion/lsi/mpi_fc.h
Normal file
@@ -0,0 +1,363 @@
|
||||
/*
|
||||
* Copyright (c) 2000-2003 LSI Logic Corporation.
|
||||
*
|
||||
*
|
||||
* Name: mpi_fc.h
|
||||
* Title: MPI Fibre Channel messages and structures
|
||||
* Creation Date: June 12, 2000
|
||||
*
|
||||
* mpi_fc.h Version: 01.05.xx
|
||||
*
|
||||
* Version History
|
||||
* ---------------
|
||||
*
|
||||
* Date Version Description
|
||||
* -------- -------- ------------------------------------------------------
|
||||
* 05-08-00 00.10.01 Original release for 0.10 spec dated 4/26/2000.
|
||||
* 06-06-00 01.00.01 Update version number for 1.0 release.
|
||||
* 06-12-00 01.00.02 Added _MSG_FC_ABORT_REPLY structure.
|
||||
* 11-02-00 01.01.01 Original release for post 1.0 work
|
||||
* 12-04-00 01.01.02 Added messages for Common Transport Send and
|
||||
* Primitive Send.
|
||||
* 01-09-01 01.01.03 Modifed some of the new flags to have an MPI prefix
|
||||
* and modified the FcPrimitiveSend flags.
|
||||
* 01-25-01 01.01.04 Move InitiatorIndex in LinkServiceRsp reply to a larger
|
||||
* field.
|
||||
* Added FC_ABORT_TYPE_CT_SEND_REQUEST and
|
||||
* FC_ABORT_TYPE_EXLINKSEND_REQUEST for FcAbort request.
|
||||
* Added MPI_FC_PRIM_SEND_FLAGS_STOP_SEND.
|
||||
* 02-20-01 01.01.05 Started using MPI_POINTER.
|
||||
* 03-27-01 01.01.06 Added Flags field to MSG_LINK_SERVICE_BUFFER_POST_REPLY
|
||||
* and defined MPI_LS_BUF_POST_REPLY_FLAG_NO_RSP_NEEDED.
|
||||
* Added MPI_FC_PRIM_SEND_FLAGS_RESET_LINK define.
|
||||
* Added structure offset comments.
|
||||
* 04-09-01 01.01.07 Added RspLength field to MSG_LINK_SERVICE_RSP_REQUEST.
|
||||
* 08-08-01 01.02.01 Original release for v1.2 work.
|
||||
* 09-28-01 01.02.02 Change name of reserved field in
|
||||
* MSG_LINK_SERVICE_RSP_REPLY.
|
||||
* 05-31-02 01.02.03 Adding AliasIndex to FC Direct Access requests.
|
||||
* --------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#ifndef MPI_FC_H
|
||||
#define MPI_FC_H
|
||||
|
||||
|
||||
/*****************************************************************************
|
||||
*
|
||||
* F C D i r e c t A c c e s s M e s s a g e s
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
/****************************************************************************/
|
||||
/* Link Service Buffer Post messages */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_LINK_SERVICE_BUFFER_POST_REQUEST
|
||||
{
|
||||
U8 BufferPostFlags; /* 00h */
|
||||
U8 BufferCount; /* 01h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved; /* 04h */
|
||||
U8 Reserved1; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
SGE_TRANS_SIMPLE_UNION SGL;
|
||||
} MSG_LINK_SERVICE_BUFFER_POST_REQUEST,
|
||||
MPI_POINTER PTR_MSG_LINK_SERVICE_BUFFER_POST_REQUEST,
|
||||
LinkServiceBufferPostRequest_t, MPI_POINTER pLinkServiceBufferPostRequest_t;
|
||||
|
||||
#define LINK_SERVICE_BUFFER_POST_FLAGS_PORT_MASK (0x01)
|
||||
|
||||
typedef struct _WWNFORMAT
|
||||
{
|
||||
U32 PortNameHigh; /* 00h */
|
||||
U32 PortNameLow; /* 04h */
|
||||
U32 NodeNameHigh; /* 08h */
|
||||
U32 NodeNameLow; /* 0Ch */
|
||||
} WWNFORMAT,
|
||||
WwnFormat_t;
|
||||
|
||||
/* Link Service Buffer Post Reply */
|
||||
typedef struct _MSG_LINK_SERVICE_BUFFER_POST_REPLY
|
||||
{
|
||||
U8 Flags; /* 00h */
|
||||
U8 Reserved; /* 01h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved1; /* 04h */
|
||||
U8 PortNumber; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U16 Reserved2; /* 0Ch */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
U32 TransferLength; /* 14h */
|
||||
U32 TransactionContext; /* 18h */
|
||||
U32 Rctl_Did; /* 1Ch */
|
||||
U32 Csctl_Sid; /* 20h */
|
||||
U32 Type_Fctl; /* 24h */
|
||||
U16 SeqCnt; /* 28h */
|
||||
U8 Dfctl; /* 2Ah */
|
||||
U8 SeqId; /* 2Bh */
|
||||
U16 Rxid; /* 2Ch */
|
||||
U16 Oxid; /* 2Eh */
|
||||
U32 Parameter; /* 30h */
|
||||
WWNFORMAT Wwn; /* 34h */
|
||||
} MSG_LINK_SERVICE_BUFFER_POST_REPLY, MPI_POINTER PTR_MSG_LINK_SERVICE_BUFFER_POST_REPLY,
|
||||
LinkServiceBufferPostReply_t, MPI_POINTER pLinkServiceBufferPostReply_t;
|
||||
|
||||
#define MPI_LS_BUF_POST_REPLY_FLAG_NO_RSP_NEEDED (0x80)
|
||||
|
||||
#define MPI_FC_DID_MASK (0x00FFFFFF)
|
||||
#define MPI_FC_DID_SHIFT (0)
|
||||
#define MPI_FC_RCTL_MASK (0xFF000000)
|
||||
#define MPI_FC_RCTL_SHIFT (24)
|
||||
#define MPI_FC_SID_MASK (0x00FFFFFF)
|
||||
#define MPI_FC_SID_SHIFT (0)
|
||||
#define MPI_FC_CSCTL_MASK (0xFF000000)
|
||||
#define MPI_FC_CSCTL_SHIFT (24)
|
||||
#define MPI_FC_FCTL_MASK (0x00FFFFFF)
|
||||
#define MPI_FC_FCTL_SHIFT (0)
|
||||
#define MPI_FC_TYPE_MASK (0xFF000000)
|
||||
#define MPI_FC_TYPE_SHIFT (24)
|
||||
|
||||
/* obsolete name for the above */
|
||||
#define FCP_TARGET_DID_MASK (0x00FFFFFF)
|
||||
#define FCP_TARGET_DID_SHIFT (0)
|
||||
#define FCP_TARGET_RCTL_MASK (0xFF000000)
|
||||
#define FCP_TARGET_RCTL_SHIFT (24)
|
||||
#define FCP_TARGET_SID_MASK (0x00FFFFFF)
|
||||
#define FCP_TARGET_SID_SHIFT (0)
|
||||
#define FCP_TARGET_CSCTL_MASK (0xFF000000)
|
||||
#define FCP_TARGET_CSCTL_SHIFT (24)
|
||||
#define FCP_TARGET_FCTL_MASK (0x00FFFFFF)
|
||||
#define FCP_TARGET_FCTL_SHIFT (0)
|
||||
#define FCP_TARGET_TYPE_MASK (0xFF000000)
|
||||
#define FCP_TARGET_TYPE_SHIFT (24)
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* Link Service Response messages */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_LINK_SERVICE_RSP_REQUEST
|
||||
{
|
||||
U8 RspFlags; /* 00h */
|
||||
U8 RspLength; /* 01h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved1; /* 04h */
|
||||
U8 Reserved2; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U32 Rctl_Did; /* 0Ch */
|
||||
U32 Csctl_Sid; /* 10h */
|
||||
U32 Type_Fctl; /* 14h */
|
||||
U16 SeqCnt; /* 18h */
|
||||
U8 Dfctl; /* 1Ah */
|
||||
U8 SeqId; /* 1Bh */
|
||||
U16 Rxid; /* 1Ch */
|
||||
U16 Oxid; /* 1Eh */
|
||||
U32 Parameter; /* 20h */
|
||||
SGE_SIMPLE_UNION SGL; /* 24h */
|
||||
} MSG_LINK_SERVICE_RSP_REQUEST, MPI_POINTER PTR_MSG_LINK_SERVICE_RSP_REQUEST,
|
||||
LinkServiceRspRequest_t, MPI_POINTER pLinkServiceRspRequest_t;
|
||||
|
||||
#define LINK_SERVICE_RSP_FLAGS_IMMEDIATE (0x80)
|
||||
#define LINK_SERVICE_RSP_FLAGS_PORT_MASK (0x01)
|
||||
|
||||
|
||||
/* Link Service Response Reply */
|
||||
typedef struct _MSG_LINK_SERVICE_RSP_REPLY
|
||||
{
|
||||
U16 Reserved; /* 00h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved1; /* 04h */
|
||||
U8 Reserved_0100_InitiatorIndex; /* 06h */ /* obsolete InitiatorIndex */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U16 Reserved3; /* 0Ch */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
U32 InitiatorIndex; /* 14h */
|
||||
} MSG_LINK_SERVICE_RSP_REPLY, MPI_POINTER PTR_MSG_LINK_SERVICE_RSP_REPLY,
|
||||
LinkServiceRspReply_t, MPI_POINTER pLinkServiceRspReply_t;
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* Extended Link Service Send messages */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_EXLINK_SERVICE_SEND_REQUEST
|
||||
{
|
||||
U8 SendFlags; /* 00h */
|
||||
U8 AliasIndex; /* 01h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U32 MsgFlags_Did; /* 04h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U32 ElsCommandCode; /* 0Ch */
|
||||
SGE_SIMPLE_UNION SGL; /* 10h */
|
||||
} MSG_EXLINK_SERVICE_SEND_REQUEST, MPI_POINTER PTR_MSG_EXLINK_SERVICE_SEND_REQUEST,
|
||||
ExLinkServiceSendRequest_t, MPI_POINTER pExLinkServiceSendRequest_t;
|
||||
|
||||
#define EX_LINK_SERVICE_SEND_DID_MASK (0x00FFFFFF)
|
||||
#define EX_LINK_SERVICE_SEND_DID_SHIFT (0)
|
||||
#define EX_LINK_SERVICE_SEND_MSGFLAGS_MASK (0xFF000000)
|
||||
#define EX_LINK_SERVICE_SEND_MSGFLAGS_SHIFT (24)
|
||||
|
||||
|
||||
/* Extended Link Service Send Reply */
|
||||
typedef struct _MSG_EXLINK_SERVICE_SEND_REPLY
|
||||
{
|
||||
U8 Reserved; /* 00h */
|
||||
U8 AliasIndex; /* 01h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved1; /* 04h */
|
||||
U8 Reserved2; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U16 Reserved3; /* 0Ch */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
U32 ResponseLength; /* 14h */
|
||||
} MSG_EXLINK_SERVICE_SEND_REPLY, MPI_POINTER PTR_MSG_EXLINK_SERVICE_SEND_REPLY,
|
||||
ExLinkServiceSendReply_t, MPI_POINTER pExLinkServiceSendReply_t;
|
||||
|
||||
/****************************************************************************/
|
||||
/* FC Abort messages */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_FC_ABORT_REQUEST
|
||||
{
|
||||
U8 AbortFlags; /* 00h */
|
||||
U8 AbortType; /* 01h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved1; /* 04h */
|
||||
U8 Reserved2; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U32 TransactionContextToAbort; /* 0Ch */
|
||||
} MSG_FC_ABORT_REQUEST, MPI_POINTER PTR_MSG_FC_ABORT_REQUEST,
|
||||
FcAbortRequest_t, MPI_POINTER pFcAbortRequest_t;
|
||||
|
||||
#define FC_ABORT_FLAG_PORT_MASK (0x01)
|
||||
|
||||
#define FC_ABORT_TYPE_ALL_FC_BUFFERS (0x00)
|
||||
#define FC_ABORT_TYPE_EXACT_FC_BUFFER (0x01)
|
||||
#define FC_ABORT_TYPE_CT_SEND_REQUEST (0x02)
|
||||
#define FC_ABORT_TYPE_EXLINKSEND_REQUEST (0x03)
|
||||
|
||||
/* FC Abort Reply */
|
||||
typedef struct _MSG_FC_ABORT_REPLY
|
||||
{
|
||||
U16 Reserved; /* 00h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved1; /* 04h */
|
||||
U8 Reserved2; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U16 Reserved3; /* 0Ch */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
} MSG_FC_ABORT_REPLY, MPI_POINTER PTR_MSG_FC_ABORT_REPLY,
|
||||
FcAbortReply_t, MPI_POINTER pFcAbortReply_t;
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* FC Common Transport Send messages */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_FC_COMMON_TRANSPORT_SEND_REQUEST
|
||||
{
|
||||
U8 SendFlags; /* 00h */
|
||||
U8 AliasIndex; /* 01h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U32 MsgFlags_Did; /* 04h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U16 CTCommandCode; /* 0Ch */
|
||||
U8 FsType; /* 0Eh */
|
||||
U8 Reserved1; /* 0Fh */
|
||||
SGE_SIMPLE_UNION SGL; /* 10h */
|
||||
} MSG_FC_COMMON_TRANSPORT_SEND_REQUEST,
|
||||
MPI_POINTER PTR_MSG_FC_COMMON_TRANSPORT_SEND_REQUEST,
|
||||
FcCommonTransportSendRequest_t, MPI_POINTER pFcCommonTransportSendRequest_t;
|
||||
|
||||
#define MPI_FC_CT_SEND_DID_MASK (0x00FFFFFF)
|
||||
#define MPI_FC_CT_SEND_DID_SHIFT (0)
|
||||
#define MPI_FC_CT_SEND_MSGFLAGS_MASK (0xFF000000)
|
||||
#define MPI_FC_CT_SEND_MSGFLAGS_SHIFT (24)
|
||||
|
||||
|
||||
/* FC Common Transport Send Reply */
|
||||
typedef struct _MSG_FC_COMMON_TRANSPORT_SEND_REPLY
|
||||
{
|
||||
U8 Reserved; /* 00h */
|
||||
U8 AliasIndex; /* 01h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved1; /* 04h */
|
||||
U8 Reserved2; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U16 Reserved3; /* 0Ch */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
U32 ResponseLength; /* 14h */
|
||||
} MSG_FC_COMMON_TRANSPORT_SEND_REPLY, MPI_POINTER PTR_MSG_FC_COMMON_TRANSPORT_SEND_REPLY,
|
||||
FcCommonTransportSendReply_t, MPI_POINTER pFcCommonTransportSendReply_t;
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* FC Primitive Send messages */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_FC_PRIMITIVE_SEND_REQUEST
|
||||
{
|
||||
U8 SendFlags; /* 00h */
|
||||
U8 Reserved; /* 01h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved1; /* 04h */
|
||||
U8 Reserved2; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U8 FcPrimitive[4]; /* 0Ch */
|
||||
} MSG_FC_PRIMITIVE_SEND_REQUEST, MPI_POINTER PTR_MSG_FC_PRIMITIVE_SEND_REQUEST,
|
||||
FcPrimitiveSendRequest_t, MPI_POINTER pFcPrimitiveSendRequest_t;
|
||||
|
||||
#define MPI_FC_PRIM_SEND_FLAGS_PORT_MASK (0x01)
|
||||
#define MPI_FC_PRIM_SEND_FLAGS_ML_RESET_LINK (0x02)
|
||||
#define MPI_FC_PRIM_SEND_FLAGS_RESET_LINK (0x04)
|
||||
#define MPI_FC_PRIM_SEND_FLAGS_STOP_SEND (0x08)
|
||||
#define MPI_FC_PRIM_SEND_FLAGS_SEND_ONCE (0x10)
|
||||
#define MPI_FC_PRIM_SEND_FLAGS_SEND_AROUND (0x20)
|
||||
#define MPI_FC_PRIM_SEND_FLAGS_UNTIL_FULL (0x40)
|
||||
#define MPI_FC_PRIM_SEND_FLAGS_FOREVER (0x80)
|
||||
|
||||
/* FC Primitive Send Reply */
|
||||
typedef struct _MSG_FC_PRIMITIVE_SEND_REPLY
|
||||
{
|
||||
U8 SendFlags; /* 00h */
|
||||
U8 Reserved; /* 01h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved1; /* 04h */
|
||||
U8 Reserved2; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U16 Reserved3; /* 0Ch */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
} MSG_FC_PRIMITIVE_SEND_REPLY, MPI_POINTER PTR_MSG_FC_PRIMITIVE_SEND_REPLY,
|
||||
FcPrimitiveSendReply_t, MPI_POINTER pFcPrimitiveSendReply_t;
|
||||
|
||||
#endif
|
||||
|
||||
276
extra/linux-2.6.10/drivers/message/fusion/lsi/mpi_history.txt
Normal file
276
extra/linux-2.6.10/drivers/message/fusion/lsi/mpi_history.txt
Normal file
@@ -0,0 +1,276 @@
|
||||
|
||||
==============================
|
||||
MPI Header File Change History
|
||||
==============================
|
||||
|
||||
Copyright (c) 2000-2001 LSI Logic Corporation.
|
||||
|
||||
---------------------------------------
|
||||
Header Set Release Version: 01.01.10
|
||||
Header Set Release Date: 04-09-01
|
||||
---------------------------------------
|
||||
|
||||
Filename Current version Prior version
|
||||
---------- --------------- -------------
|
||||
mpi.h 01.01.07 01.01.06
|
||||
mpi_ioc.h 01.01.07 01.01.06
|
||||
mpi_cnfg.h 01.01.11 01.01.10
|
||||
mpi_init.h 01.01.05 01.01.04
|
||||
mpi_targ.h 01.01.04 01.01.04
|
||||
mpi_fc.h 01.01.07 01.01.06
|
||||
mpi_lan.h 01.01.03 01.01.03
|
||||
mpi_raid.h 01.01.02 01.01.02
|
||||
mpi_type.h 01.01.02 01.01.02
|
||||
mpi_history.txt 01.01.09 01.01.09
|
||||
|
||||
|
||||
* Date Version Description
|
||||
* -------- -------- ------------------------------------------------------
|
||||
|
||||
mpi.h
|
||||
* 05-08-00 00.10.01 Original release for 0.10 spec dated 4/26/2000.
|
||||
* 05-24-00 00.10.02 Added MPI_IOCSTATUS_SCSI_RESIDUAL_MISMATCH definition.
|
||||
* 06-06-00 01.00.01 Update MPI_VERSION_MAJOR and MPI_VERSION_MINOR.
|
||||
* 06-22-00 01.00.02 Added MPI_IOCSTATUS_LAN_ definitions.
|
||||
* Removed LAN_SUSPEND function definition.
|
||||
* Added MPI_MSGFLAGS_CONTINUATION_REPLY definition.
|
||||
* 06-30-00 01.00.03 Added MPI_CONTEXT_REPLY_TYPE_LAN definition.
|
||||
* Added MPI_GET/SET_CONTEXT_REPLY_TYPE macros.
|
||||
* 07-27-00 01.00.04 Added MPI_FAULT_ definitions.
|
||||
* Removed MPI_IOCSTATUS_MSG/DATA_XFER_ERROR definitions.
|
||||
* Added MPI_IOCSTATUS_INTERNAL_ERROR definition.
|
||||
* Added MPI_IOCSTATUS_TARGET_XFER_COUNT_MISMATCH.
|
||||
* 11-02-00 01.01.01 Original release for post 1.0 work
|
||||
* 12-04-00 01.01.02 Added new function codes.
|
||||
* 01-09-01 01.01.03 Added more definitions to the system interface section
|
||||
* Added MPI_IOCSTATUS_TARGET_STS_DATA_NOT_SENT.
|
||||
* 01-25-01 01.01.04 Changed MPI_VERSION_MINOR from 0x00 to 0x01.
|
||||
* 02-20-01 01.01.05 Started using MPI_POINTER.
|
||||
* Added defines for MPI_DIAG_PREVENT_IOC_BOOT and
|
||||
* MPI_DIAG_CLEAR_FLASH_BAD_SIG.
|
||||
* Obsoleted MPI_IOCSTATUS_TARGET_FC_ defines.
|
||||
* 02-27-01 01.01.06 Removed MPI_HOST_INDEX_REGISTER define.
|
||||
* Added function codes for RAID.
|
||||
* 04-09-01 01.01.07 Added alternate define for MPI_DOORBELL_ACTIVE,
|
||||
* MPI_DOORBELL_USED, to better match the spec.
|
||||
* --------------------------------------------------------------------------
|
||||
|
||||
mpi_ioc.h
|
||||
* 05-08-00 00.10.01 Original release for 0.10 spec dated 4/26/2000.
|
||||
* 05-24-00 00.10.02 Added _MSG_IOC_INIT_REPLY structure.
|
||||
* 06-06-00 01.00.01 Added CurReplyFrameSize field to _MSG_IOC_FACTS_REPLY.
|
||||
* 06-12-00 01.00.02 Added _MSG_PORT_ENABLE_REPLY structure.
|
||||
* Added _MSG_EVENT_ACK_REPLY structure.
|
||||
* Added _MSG_FW_DOWNLOAD_REPLY structure.
|
||||
* Added _MSG_TOOLBOX_REPLY structure.
|
||||
* 06-30-00 01.00.03 Added MaxLanBuckets to _PORT_FACT_REPLY structure.
|
||||
* 07-27-00 01.00.04 Added _EVENT_DATA structure definitions for _SCSI,
|
||||
* _LINK_STATUS, _LOOP_STATE and _LOGOUT.
|
||||
* 08-11-00 01.00.05 Switched positions of MsgLength and Function fields in
|
||||
* _MSG_EVENT_ACK_REPLY structure to match specification.
|
||||
* 11-02-00 01.01.01 Original release for post 1.0 work
|
||||
* Added a value for Manufacturer to WhoInit
|
||||
* 12-04-00 01.01.02 Modified IOCFacts reply, added FWUpload messages, and
|
||||
* removed toolbox message.
|
||||
* 01-09-01 01.01.03 Added event enabled and disabled defines.
|
||||
* Added structures for FwHeader and DataHeader.
|
||||
* Added ImageType to FwUpload reply.
|
||||
* 02-20-01 01.01.04 Started using MPI_POINTER.
|
||||
* 02-27-01 01.01.05 Added event for RAID status change and its event data.
|
||||
* Added IocNumber field to MSG_IOC_FACTS_REPLY.
|
||||
* 03-27-01 01.01.06 Added defines for ProductId field of MPI_FW_HEADER.
|
||||
* Added structure offset comments.
|
||||
* 04-09-01 01.01.07 Added structure EVENT_DATA_EVENT_CHANGE.
|
||||
* --------------------------------------------------------------------------
|
||||
|
||||
mpi_cnfg.h
|
||||
* 05-08-00 00.10.01 Original release for 0.10 spec dated 4/26/2000.
|
||||
* 06-06-00 01.00.01 Update version number for 1.0 release.
|
||||
* 06-08-00 01.00.02 Added _PAGEVERSION definitions for all pages.
|
||||
* Added FcPhLowestVersion, FcPhHighestVersion, Reserved2
|
||||
* fields to FC_DEVICE_0 page, updated the page version.
|
||||
* Changed _FREE_RUNNING_CLOCK to _PACING_TRANSFERS in
|
||||
* SCSI_PORT_0, SCSI_DEVICE_0 and SCSI_DEVICE_1 pages
|
||||
* and updated the page versions.
|
||||
* Added _RESPONSE_ID_MASK definition to SCSI_PORT_1
|
||||
* page and updated the page version.
|
||||
* Added Information field and _INFO_PARAMS_NEGOTIATED
|
||||
* definitionto SCSI_DEVICE_0 page.
|
||||
* 06-22-00 01.00.03 Removed batch controls from LAN_0 page and updated the
|
||||
* page version.
|
||||
* Added BucketsRemaining to LAN_1 page, redefined the
|
||||
* state values, and updated the page version.
|
||||
* Revised bus width definitions in SCSI_PORT_0,
|
||||
* SCSI_DEVICE_0 and SCSI_DEVICE_1 pages.
|
||||
* 06-30-00 01.00.04 Added MaxReplySize to LAN_1 page and updated the page
|
||||
* version.
|
||||
* Moved FC_DEVICE_0 PageAddress description to spec.
|
||||
* 07-27-00 01.00.05 Corrected the SubsystemVendorID and SubsystemID field
|
||||
* widths in IOC_0 page and updated the page version.
|
||||
* 11-02-00 01.01.01 Original release for post 1.0 work
|
||||
* Added Manufacturing pages, IO Unit Page 2, SCSI SPI
|
||||
* Port Page 2, FC Port Page 4, FC Port Page 5
|
||||
* 12-04-00 01.01.03 Config page changes to match MPI rev 1.00.01.
|
||||
* 12-05-00 01.01.04 Modified config page actions.
|
||||
* 01-09-01 01.01.05 Added defines for page address formats.
|
||||
* Data size for Manufacturing pages 2 and 3 no longer
|
||||
* defined here.
|
||||
* Io Unit Page 2 size is fixed at 4 adapters and some
|
||||
* flags were changed.
|
||||
* SCSI Port Page 2 Device Settings modified.
|
||||
* New fields added to FC Port Page 0 and some flags
|
||||
* cleaned up.
|
||||
* Removed impedance flash from FC Port Page 1.
|
||||
* Added FC Port pages 6 and 7.
|
||||
* 01-25-01 01.01.06 Added MaxInitiators field to FcPortPage0.
|
||||
* 01-29-01 01.01.07 Changed some defines to make them 32 character unique.
|
||||
* Added some LinkType defines for FcPortPage0.
|
||||
* 02-20-01 01.01.08 Started using MPI_POINTER.
|
||||
* 02-27-01 01.01.09 Replaced MPI_CONFIG_PAGETYPE_SCSI_LUN with
|
||||
* MPI_CONFIG_PAGETYPE_RAID_VOLUME.
|
||||
* Added definitions and structures for IOC Page 2 and
|
||||
* RAID Volume Page 2.
|
||||
* 03-27-01 01.01.10 Added CONFIG_PAGE_FC_PORT_8 and CONFIG_PAGE_FC_PORT_9.
|
||||
* CONFIG_PAGE_FC_PORT_3 now supports persistent by DID.
|
||||
* Added VendorId and ProductRevLevel fields to
|
||||
* RAIDVOL2_IM_PHYS_ID struct.
|
||||
* Modified values for MPI_FCPORTPAGE0_FLAGS_ATTACH_
|
||||
* defines to make them compatible to MPI version 1.0.
|
||||
* Added structure offset comments.
|
||||
* 04-09-01 01.01.11 Added some new defines for the PageAddress field and
|
||||
* removed some obsolete ones.
|
||||
* Added IO Unit Page 3.
|
||||
* Modified defines for Scsi Port Page 2.
|
||||
* Modified RAID Volume Pages.
|
||||
* --------------------------------------------------------------------------
|
||||
|
||||
mpi_init.h
|
||||
* 05-08-00 00.10.01 Original release for 0.10 spec dated 4/26/2000.
|
||||
* 05-24-00 00.10.02 Added SenseBufferLength to _MSG_SCSI_IO_REPLY.
|
||||
* 06-06-00 01.00.01 Update version number for 1.0 release.
|
||||
* 06-08-00 01.00.02 Added MPI_SCSI_RSP_INFO_ definitions.
|
||||
* 11-02-00 01.01.01 Original release for post 1.0 work
|
||||
* 12-04-00 01.01.02 Added MPI_SCSIIO_CONTROL_NO_DISCONNECT.
|
||||
* 02-20-01 01.01.03 Started using MPI_POINTER.
|
||||
* 03-27-01 01.01.04 Added structure offset comments.
|
||||
* 04-10-01 01.01.05 Added new MsgFlag for MSG_SCSI_TASK_MGMT.
|
||||
* --------------------------------------------------------------------------
|
||||
|
||||
mpi_targ.h
|
||||
* 05-08-00 00.10.01 Original release for 0.10 spec dated 4/26/2000.
|
||||
* 06-06-00 01.00.01 Update version number for 1.0 release.
|
||||
* 06-22-00 01.00.02 Added _MSG_TARGET_CMD_BUFFER_POST_REPLY structure.
|
||||
* Corrected DECSRIPTOR typo to DESCRIPTOR.
|
||||
* 11-02-00 01.01.01 Original release for post 1.0 work
|
||||
* Modified target mode to use IoIndex instead of
|
||||
* HostIndex and IocIndex. Added Alias.
|
||||
* 01-09-01 01.01.02 Added defines for TARGET_ASSIST_FLAGS_REPOST_CMD_BUFFER
|
||||
* and TARGET_STATUS_SEND_FLAGS_REPOST_CMD_BUFFER.
|
||||
* 02-20-01 01.01.03 Started using MPI_POINTER.
|
||||
* Added structures for MPI_TARGET_SCSI_SPI_CMD_BUFFER and
|
||||
* MPI_TARGET_FCP_CMD_BUFFER.
|
||||
* 03-27-01 01.01.04 Added structure offset comments.
|
||||
* --------------------------------------------------------------------------
|
||||
|
||||
mpi_fc.h
|
||||
* 05-08-00 00.10.01 Original release for 0.10 spec dated 4/26/2000.
|
||||
* 06-06-00 01.00.01 Update version number for 1.0 release.
|
||||
* 06-12-00 01.00.02 Added _MSG_FC_ABORT_REPLY structure.
|
||||
* 11-02-00 01.01.01 Original release for post 1.0 work
|
||||
* 12-04-00 01.01.02 Added messages for Common Transport Send and
|
||||
* Primitive Send.
|
||||
* 01-09-01 01.01.03 Modifed some of the new flags to have an MPI prefix
|
||||
* and modified the FcPrimitiveSend flags.
|
||||
* 01-25-01 01.01.04 Move InitiatorIndex in LinkServiceRsp reply to a larger
|
||||
* field.
|
||||
* Added FC_ABORT_TYPE_CT_SEND_REQUEST and
|
||||
* FC_ABORT_TYPE_EXLINKSEND_REQUEST for FcAbort request.
|
||||
* Added MPI_FC_PRIM_SEND_FLAGS_STOP_SEND.
|
||||
* 02-20-01 01.01.05 Started using MPI_POINTER.
|
||||
* 03-27-01 01.01.06 Added Flags field to MSG_LINK_SERVICE_BUFFER_POST_REPLY
|
||||
* and defined MPI_LS_BUF_POST_REPLY_FLAG_NO_RSP_NEEDED.
|
||||
* Added MPI_FC_PRIM_SEND_FLAGS_RESET_LINK define.
|
||||
* Added structure offset comments.
|
||||
* 04-09-01 01.01.07 Added RspLength field to MSG_LINK_SERVICE_RSP_REQUEST.
|
||||
* --------------------------------------------------------------------------
|
||||
|
||||
mpi_lan.h
|
||||
* 05-08-00 00.10.01 Original release for 0.10 spec dated 4/26/2000.
|
||||
* 05-24-00 00.10.02 Added LANStatus field to _MSG_LAN_SEND_REPLY.
|
||||
* Added LANStatus field to _MSG_LAN_RECEIVE_POST_REPLY.
|
||||
* Moved ListCount field in _MSG_LAN_RECEIVE_POST_REPLY.
|
||||
* 06-06-00 01.00.01 Update version number for 1.0 release.
|
||||
* 06-12-00 01.00.02 Added MPI_ to BUCKETSTATUS_ definitions.
|
||||
* 06-22-00 01.00.03 Major changes to match new LAN definition in 1.0 spec.
|
||||
* 06-30-00 01.00.04 Added Context Reply definitions per revised proposal.
|
||||
* Changed transaction context usage to bucket/buffer.
|
||||
* 07-05-00 01.00.05 Removed LAN_RECEIVE_POST_BUCKET_CONTEXT_MASK definition
|
||||
* to lan private header file
|
||||
* 11-02-00 01.01.01 Original release for post 1.0 work
|
||||
* 02-20-01 01.01.02 Started using MPI_POINTER.
|
||||
* 03-27-01 01.01.03 Added structure offset comments.
|
||||
* --------------------------------------------------------------------------
|
||||
|
||||
mpi_raid.h
|
||||
* 02-27-01 01.01.01 Original release for this file.
|
||||
* 03-27-01 01.01.02 Added structure offset comments.
|
||||
* --------------------------------------------------------------------------
|
||||
|
||||
mpi_type.h
|
||||
* 05-08-00 00.10.01 Original release for 0.10 spec dated 4/26/2000.
|
||||
* 06-06-00 01.00.01 Update version number for 1.0 release.
|
||||
* 11-02-00 01.01.01 Original release for post 1.0 work
|
||||
* 02-20-01 01.01.02 Added define and ifdef for MPI_POINTER.
|
||||
* --------------------------------------------------------------------------
|
||||
|
||||
mpi_history.txt Parts list history
|
||||
|
||||
Filename 01.01.10
|
||||
---------- --------
|
||||
mpi.h 01.01.07
|
||||
mpi_ioc.h 01.01.07
|
||||
mpi_cnfg.h 01.01.11
|
||||
mpi_init.h 01.01.05
|
||||
mpi_targ.h 01.01.04
|
||||
mpi_fc.h 01.01.07
|
||||
mpi_lan.h 01.01.03
|
||||
mpi_raid.h 01.01.02
|
||||
mpi_type.h 01.01.02
|
||||
|
||||
Filename 01.01.09 01.01.08 01.01.07 01.01.06 01.01.05 01.01.04
|
||||
---------- -------- -------- -------- -------- -------- --------
|
||||
mpi.h 01.01.06 01.01.06 01.01.05 01.01.04 01.01.04 01.01.03
|
||||
mpi_ioc.h 01.01.06 01.01.05 01.01.04 01.01.03 01.01.03 01.01.03
|
||||
mpi_cnfg.h 01.01.10 01.01.09 01.01.08 01.01.07 01.01.06 01.01.05
|
||||
mpi_init.h 01.01.04 01.01.03 01.01.03 01.01.02 01.01.02 01.01.02
|
||||
mpi_targ.h 01.01.04 01.01.03 01.01.03 01.01.02 01.01.02 01.01.02
|
||||
mpi_fc.h 01.01.06 01.01.05 01.01.05 01.01.04 01.01.04 01.01.03
|
||||
mpi_lan.h 01.01.03 01.01.02 01.01.02 01.01.01 01.01.01 01.01.01
|
||||
mpi_raid.h 01.01.02 01.01.01
|
||||
mpi_type.h 01.01.02 01.01.02 01.01.02 01.01.01 01.01.01 01.01.01
|
||||
|
||||
Filename 01.01.03 01.01.02 01.01.01 01.00.07 01.00.06 01.00.05
|
||||
---------- -------- -------- -------- -------- -------- --------
|
||||
mpi.h 01.01.02 01.01.02 01.01.01 01.00.04 01.00.04 01.00.03
|
||||
mpi_ioc.h 01.01.02 01.01.02 01.01.01 01.00.05 01.00.04 01.00.03
|
||||
mpi_cnfg.h 01.01.04 01.01.03 01.01.01 01.00.05 01.00.05 01.00.04
|
||||
mpi_init.h 01.01.02 01.01.02 01.01.01 01.00.02 01.00.02 01.00.02
|
||||
mpi_targ.h 01.01.01 01.01.01 01.01.01 01.00.02 01.00.02 01.00.02
|
||||
mpi_fc.h 01.01.02 01.01.02 01.01.01 01.00.02 01.00.02 01.00.02
|
||||
mpi_lan.h 01.01.01 01.01.01 01.01.01 01.00.05 01.00.05 01.00.05
|
||||
mpi_type.h 01.01.01 01.01.01 01.01.01 01.00.01 01.00.01 01.00.01
|
||||
|
||||
Filename 01.00.04 01.00.03 01.00.02 01.00.01 00.10.02 00.10.01
|
||||
---------- -------- -------- -------- -------- -------- --------
|
||||
mpi.h 01.00.02 01.00.01 01.00.01 01.00.01 00.10.02 00.10.01
|
||||
mpi_ioc.h 01.00.02 01.00.02 01.00.01 01.00.01 00.10.02 00.10.01
|
||||
mpi_cnfg.h 01.00.03 01.00.02 01.00.02 01.00.01 00.10.01 00.10.01
|
||||
mpi_init.h 01.00.02 01.00.02 01.00.02 01.00.01 00.10.02 00.10.01
|
||||
mpi_targ.h 01.00.02 01.00.01 01.00.01 01.00.01 00.10.01 00.10.01
|
||||
mpi_fc.h 01.00.02 01.00.02 01.00.01 01.00.01 00.10.01 00.10.01
|
||||
mpi_lan.h 01.00.03 01.00.02 01.00.01 01.00.01 00.10.02 00.10.01
|
||||
mpi_type.h 01.00.01 01.00.01 01.00.01 01.00.01 00.10.01 00.10.01
|
||||
|
||||
|
||||
* --------------------------------------------------------------------------
|
||||
|
||||
220
extra/linux-2.6.10/drivers/message/fusion/lsi/mpi_inb.h
Normal file
220
extra/linux-2.6.10/drivers/message/fusion/lsi/mpi_inb.h
Normal file
@@ -0,0 +1,220 @@
|
||||
/*
|
||||
* Copyright (c) 2003 LSI Logic Corporation.
|
||||
*
|
||||
*
|
||||
* Name: mpi_inb.h
|
||||
* Title: MPI Inband structures and definitions
|
||||
* Creation Date: September 30, 2003
|
||||
*
|
||||
* mpi_inb.h Version: 01.03.xx
|
||||
*
|
||||
* Version History
|
||||
* ---------------
|
||||
*
|
||||
* Date Version Description
|
||||
* -------- -------- ------------------------------------------------------
|
||||
* ??-??-?? 01.03.01 Original release.
|
||||
* --------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#ifndef MPI_INB_H
|
||||
#define MPI_INB_H
|
||||
|
||||
/******************************************************************************
|
||||
*
|
||||
* I n b a n d M e s s a g e s
|
||||
*
|
||||
*******************************************************************************/
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* Inband Buffer Post Request */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_INBAND_BUFFER_POST_REQUEST
|
||||
{
|
||||
U8 Reserved1; /* 00h */
|
||||
U8 BufferCount; /* 01h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved2; /* 04h */
|
||||
U8 Reserved3; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U32 Reserved4; /* 0Ch */
|
||||
SGE_TRANS_SIMPLE_UNION SGL; /* 10h */
|
||||
} MSG_INBAND_BUFFER_POST_REQUEST, MPI_POINTER PTR_MSG_INBAND_BUFFER_POST_REQUEST,
|
||||
MpiInbandBufferPostRequest_t , MPI_POINTER pMpiInbandBufferPostRequest_t;
|
||||
|
||||
|
||||
typedef struct _WWN_FC_FORMAT
|
||||
{
|
||||
U64 NodeName; /* 00h */
|
||||
U64 PortName; /* 08h */
|
||||
} WWN_FC_FORMAT, MPI_POINTER PTR_WWN_FC_FORMAT,
|
||||
WwnFcFormat_t, MPI_POINTER pWwnFcFormat_t;
|
||||
|
||||
typedef struct _WWN_SAS_FORMAT
|
||||
{
|
||||
U64 WorldWideID; /* 00h */
|
||||
U32 Reserved1; /* 08h */
|
||||
U32 Reserved2; /* 0Ch */
|
||||
} WWN_SAS_FORMAT, MPI_POINTER PTR_WWN_SAS_FORMAT,
|
||||
WwnSasFormat_t, MPI_POINTER pWwnSasFormat_t;
|
||||
|
||||
typedef union _WWN_INBAND_FORMAT
|
||||
{
|
||||
WWN_FC_FORMAT Fc;
|
||||
WWN_SAS_FORMAT Sas;
|
||||
} WWN_INBAND_FORMAT, MPI_POINTER PTR_WWN_INBAND_FORMAT,
|
||||
WwnInbandFormat, MPI_POINTER pWwnInbandFormat;
|
||||
|
||||
|
||||
/* Inband Buffer Post reply message */
|
||||
|
||||
typedef struct _MSG_INBAND_BUFFER_POST_REPLY
|
||||
{
|
||||
U16 Reserved1; /* 00h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved2; /* 04h */
|
||||
U8 Reserved3; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U16 Reserved4; /* 0Ch */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
U32 TransferLength; /* 14h */
|
||||
U32 TransactionContext; /* 18h */
|
||||
WWN_INBAND_FORMAT Wwn; /* 1Ch */
|
||||
U32 IOCIdentifier[4]; /* 2Ch */
|
||||
} MSG_INBAND_BUFFER_POST_REPLY, MPI_POINTER PTR_MSG_INBAND_BUFFER_POST_REPLY,
|
||||
MpiInbandBufferPostReply_t, MPI_POINTER pMpiInbandBufferPostReply_t;
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* Inband Send Request */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_INBAND_SEND_REQUEST
|
||||
{
|
||||
U16 Reserved1; /* 00h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved2; /* 04h */
|
||||
U8 Reserved3; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U32 Reserved4; /* 0Ch */
|
||||
WWN_INBAND_FORMAT Wwn; /* 10h */
|
||||
U32 Reserved5; /* 20h */
|
||||
SGE_IO_UNION SGL; /* 24h */
|
||||
} MSG_INBAND_SEND_REQUEST, MPI_POINTER PTR_MSG_INBAND_SEND_REQUEST,
|
||||
MpiInbandSendRequest_t , MPI_POINTER pMpiInbandSendRequest_t;
|
||||
|
||||
|
||||
/* Inband Send reply message */
|
||||
|
||||
typedef struct _MSG_INBAND_SEND_REPLY
|
||||
{
|
||||
U16 Reserved1; /* 00h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved2; /* 04h */
|
||||
U8 Reserved3; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U16 Reserved4; /* 0Ch */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
U32 ResponseLength; /* 14h */
|
||||
} MSG_INBAND_SEND_REPLY, MPI_POINTER PTR_MSG_INBAND_SEND_REPLY,
|
||||
MpiInbandSendReply_t, MPI_POINTER pMpiInbandSendReply_t;
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* Inband Response Request */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_INBAND_RSP_REQUEST
|
||||
{
|
||||
U16 Reserved1; /* 00h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved2; /* 04h */
|
||||
U8 Reserved3; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U32 Reserved4; /* 0Ch */
|
||||
WWN_INBAND_FORMAT Wwn; /* 10h */
|
||||
U32 IOCIdentifier[4]; /* 20h */
|
||||
U32 ResponseLength; /* 30h */
|
||||
SGE_IO_UNION SGL; /* 34h */
|
||||
} MSG_INBAND_RSP_REQUEST, MPI_POINTER PTR_MSG_INBAND_RSP_REQUEST,
|
||||
MpiInbandRspRequest_t , MPI_POINTER pMpiInbandRspRequest_t;
|
||||
|
||||
|
||||
/* Inband Response reply message */
|
||||
|
||||
typedef struct _MSG_INBAND_RSP_REPLY
|
||||
{
|
||||
U16 Reserved1; /* 00h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved2; /* 04h */
|
||||
U8 Reserved3; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U16 Reserved4; /* 0Ch */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
} MSG_INBAND_RSP_REPLY, MPI_POINTER PTR_MSG_INBAND_RSP_REPLY,
|
||||
MpiInbandRspReply_t, MPI_POINTER pMpiInbandRspReply_t;
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* Inband Abort Request */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_INBAND_ABORT_REQUEST
|
||||
{
|
||||
U8 Reserved1; /* 00h */
|
||||
U8 AbortType; /* 01h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved2; /* 04h */
|
||||
U8 Reserved3; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U32 Reserved4; /* 0Ch */
|
||||
U32 ContextToAbort; /* 10h */
|
||||
} MSG_INBAND_ABORT_REQUEST, MPI_POINTER PTR_MSG_INBAND_ABORT_REQUEST,
|
||||
MpiInbandAbortRequest_t , MPI_POINTER pMpiInbandAbortRequest_t;
|
||||
|
||||
#define MPI_INBAND_ABORT_TYPE_ALL_BUFFERS (0x00)
|
||||
#define MPI_INBAND_ABORT_TYPE_EXACT_BUFFER (0x01)
|
||||
#define MPI_INBAND_ABORT_TYPE_SEND_REQUEST (0x02)
|
||||
#define MPI_INBAND_ABORT_TYPE_RESPONSE_REQUEST (0x03)
|
||||
|
||||
|
||||
/* Inband Abort reply message */
|
||||
|
||||
typedef struct _MSG_INBAND_ABORT_REPLY
|
||||
{
|
||||
U8 Reserved1; /* 00h */
|
||||
U8 AbortType; /* 01h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved2; /* 04h */
|
||||
U8 Reserved3; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U16 Reserved4; /* 0Ch */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
} MSG_INBAND_ABORT_REPLY, MPI_POINTER PTR_MSG_INBAND_ABORT_REPLY,
|
||||
MpiInbandAbortReply_t, MPI_POINTER pMpiInbandAbortReply_t;
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
362
extra/linux-2.6.10/drivers/message/fusion/lsi/mpi_init.h
Normal file
362
extra/linux-2.6.10/drivers/message/fusion/lsi/mpi_init.h
Normal file
@@ -0,0 +1,362 @@
|
||||
/*
|
||||
* Copyright (c) 2000-2003 LSI Logic Corporation.
|
||||
*
|
||||
*
|
||||
* Name: mpi_init.h
|
||||
* Title: MPI initiator mode messages and structures
|
||||
* Creation Date: June 8, 2000
|
||||
*
|
||||
* mpi_init.h Version: 01.05.xx
|
||||
*
|
||||
* Version History
|
||||
* ---------------
|
||||
*
|
||||
* Date Version Description
|
||||
* -------- -------- ------------------------------------------------------
|
||||
* 05-08-00 00.10.01 Original release for 0.10 spec dated 4/26/2000.
|
||||
* 05-24-00 00.10.02 Added SenseBufferLength to _MSG_SCSI_IO_REPLY.
|
||||
* 06-06-00 01.00.01 Update version number for 1.0 release.
|
||||
* 06-08-00 01.00.02 Added MPI_SCSI_RSP_INFO_ definitions.
|
||||
* 11-02-00 01.01.01 Original release for post 1.0 work.
|
||||
* 12-04-00 01.01.02 Added MPI_SCSIIO_CONTROL_NO_DISCONNECT.
|
||||
* 02-20-01 01.01.03 Started using MPI_POINTER.
|
||||
* 03-27-01 01.01.04 Added structure offset comments.
|
||||
* 04-10-01 01.01.05 Added new MsgFlag for MSG_SCSI_TASK_MGMT.
|
||||
* 08-08-01 01.02.01 Original release for v1.2 work.
|
||||
* 08-29-01 01.02.02 Added MPI_SCSITASKMGMT_TASKTYPE_LOGICAL_UNIT_RESET.
|
||||
* Added MPI_SCSI_STATE_QUEUE_TAG_REJECTED for
|
||||
* MSG_SCSI_IO_REPLY.
|
||||
* 09-28-01 01.02.03 Added structures and defines for SCSI Enclosure
|
||||
* Processor messages.
|
||||
* 10-04-01 01.02.04 Added defines for SEP request Action field.
|
||||
* 05-31-02 01.02.05 Added MPI_SCSIIO_MSGFLGS_CMD_DETERMINES_DATA_DIR define
|
||||
* for SCSI IO requests.
|
||||
* 11-15-02 01.02.06 Added special extended SCSI Status defines for FCP.
|
||||
* 06-26-03 01.02.07 Added MPI_SCSI_STATUS_FCPEXT_UNASSIGNED define.
|
||||
* --------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#ifndef MPI_INIT_H
|
||||
#define MPI_INIT_H
|
||||
|
||||
|
||||
/*****************************************************************************
|
||||
*
|
||||
* S C S I I n i t i a t o r M e s s a g e s
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
/****************************************************************************/
|
||||
/* SCSI IO messages and associated structures */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_SCSI_IO_REQUEST
|
||||
{
|
||||
U8 TargetID; /* 00h */
|
||||
U8 Bus; /* 01h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U8 CDBLength; /* 04h */
|
||||
U8 SenseBufferLength; /* 05h */
|
||||
U8 Reserved; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U8 LUN[8]; /* 0Ch */
|
||||
U32 Control; /* 14h */
|
||||
U8 CDB[16]; /* 18h */
|
||||
U32 DataLength; /* 28h */
|
||||
U32 SenseBufferLowAddr; /* 2Ch */
|
||||
SGE_IO_UNION SGL; /* 30h */
|
||||
} MSG_SCSI_IO_REQUEST, MPI_POINTER PTR_MSG_SCSI_IO_REQUEST,
|
||||
SCSIIORequest_t, MPI_POINTER pSCSIIORequest_t;
|
||||
|
||||
|
||||
/* SCSI IO MsgFlags bits */
|
||||
|
||||
#define MPI_SCSIIO_MSGFLGS_SENSE_WIDTH (0x01)
|
||||
#define MPI_SCSIIO_MSGFLGS_SENSE_WIDTH_32 (0x00)
|
||||
#define MPI_SCSIIO_MSGFLGS_SENSE_WIDTH_64 (0x01)
|
||||
#define MPI_SCSIIO_MSGFLGS_SENSE_LOCATION (0x02)
|
||||
#define MPI_SCSIIO_MSGFLGS_SENSE_LOC_HOST (0x00)
|
||||
#define MPI_SCSIIO_MSGFLGS_SENSE_LOC_IOC (0x02)
|
||||
#define MPI_SCSIIO_MSGFLGS_CMD_DETERMINES_DATA_DIR (0x04)
|
||||
#define MPI_SCSIIO_MSGFLGS_EEDP_TYPE_MASK (0xE0)
|
||||
#define MPI_SCSIIO_MSGFLGS_EEDP_NONE (0x00)
|
||||
#define MPI_SCSIIO_MSGFLGS_EEDP_RDPROTECT_T10 (0x20)
|
||||
#define MPI_SCSIIO_MSGFLGS_EEDP_VRPROTECT_T10 (0x40)
|
||||
#define MPI_SCSIIO_MSGFLGS_EEDP_WRPROTECT_T10 (0x60)
|
||||
#define MPI_SCSIIO_MSGFLGS_EEDP_520_READ_MODE1 (0x20)
|
||||
#define MPI_SCSIIO_MSGFLGS_EEDP_520_WRITE_MODE1 (0x40)
|
||||
#define MPI_SCSIIO_MSGFLGS_EEDP_8_9_READ_MODE1 (0x60)
|
||||
#define MPI_SCSIIO_MSGFLGS_EEDP_8_9_WRITE_MODE1 (0x80)
|
||||
|
||||
|
||||
/* SCSI IO LUN fields */
|
||||
|
||||
#define MPI_SCSIIO_LUN_FIRST_LEVEL_ADDRESSING (0x0000FFFF)
|
||||
#define MPI_SCSIIO_LUN_SECOND_LEVEL_ADDRESSING (0xFFFF0000)
|
||||
#define MPI_SCSIIO_LUN_THIRD_LEVEL_ADDRESSING (0x0000FFFF)
|
||||
#define MPI_SCSIIO_LUN_FOURTH_LEVEL_ADDRESSING (0xFFFF0000)
|
||||
#define MPI_SCSIIO_LUN_LEVEL_1_WORD (0xFF00)
|
||||
#define MPI_SCSIIO_LUN_LEVEL_1_DWORD (0x0000FF00)
|
||||
|
||||
/* SCSI IO Control bits */
|
||||
|
||||
#define MPI_SCSIIO_CONTROL_DATADIRECTION_MASK (0x03000000)
|
||||
#define MPI_SCSIIO_CONTROL_NODATATRANSFER (0x00000000)
|
||||
#define MPI_SCSIIO_CONTROL_WRITE (0x01000000)
|
||||
#define MPI_SCSIIO_CONTROL_READ (0x02000000)
|
||||
|
||||
#define MPI_SCSIIO_CONTROL_ADDCDBLEN_MASK (0x3C000000)
|
||||
#define MPI_SCSIIO_CONTROL_ADDCDBLEN_SHIFT (26)
|
||||
|
||||
#define MPI_SCSIIO_CONTROL_TASKATTRIBUTE_MASK (0x00000700)
|
||||
#define MPI_SCSIIO_CONTROL_SIMPLEQ (0x00000000)
|
||||
#define MPI_SCSIIO_CONTROL_HEADOFQ (0x00000100)
|
||||
#define MPI_SCSIIO_CONTROL_ORDEREDQ (0x00000200)
|
||||
#define MPI_SCSIIO_CONTROL_ACAQ (0x00000400)
|
||||
#define MPI_SCSIIO_CONTROL_UNTAGGED (0x00000500)
|
||||
#define MPI_SCSIIO_CONTROL_NO_DISCONNECT (0x00000700)
|
||||
|
||||
#define MPI_SCSIIO_CONTROL_TASKMANAGE_MASK (0x00FF0000)
|
||||
#define MPI_SCSIIO_CONTROL_OBSOLETE (0x00800000)
|
||||
#define MPI_SCSIIO_CONTROL_CLEAR_ACA_RSV (0x00400000)
|
||||
#define MPI_SCSIIO_CONTROL_TARGET_RESET (0x00200000)
|
||||
#define MPI_SCSIIO_CONTROL_LUN_RESET_RSV (0x00100000)
|
||||
#define MPI_SCSIIO_CONTROL_RESERVED (0x00080000)
|
||||
#define MPI_SCSIIO_CONTROL_CLR_TASK_SET_RSV (0x00040000)
|
||||
#define MPI_SCSIIO_CONTROL_ABORT_TASK_SET (0x00020000)
|
||||
#define MPI_SCSIIO_CONTROL_RESERVED2 (0x00010000)
|
||||
|
||||
|
||||
/* SCSI IO reply structure */
|
||||
typedef struct _MSG_SCSI_IO_REPLY
|
||||
{
|
||||
U8 TargetID; /* 00h */
|
||||
U8 Bus; /* 01h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U8 CDBLength; /* 04h */
|
||||
U8 SenseBufferLength; /* 05h */
|
||||
U8 Reserved; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U8 SCSIStatus; /* 0Ch */
|
||||
U8 SCSIState; /* 0Dh */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
U32 TransferCount; /* 14h */
|
||||
U32 SenseCount; /* 18h */
|
||||
U32 ResponseInfo; /* 1Ch */
|
||||
} MSG_SCSI_IO_REPLY, MPI_POINTER PTR_MSG_SCSI_IO_REPLY,
|
||||
SCSIIOReply_t, MPI_POINTER pSCSIIOReply_t;
|
||||
|
||||
|
||||
/* SCSI IO Reply SCSIStatus values (SAM-2 status codes) */
|
||||
|
||||
#define MPI_SCSI_STATUS_SUCCESS (0x00)
|
||||
#define MPI_SCSI_STATUS_CHECK_CONDITION (0x02)
|
||||
#define MPI_SCSI_STATUS_CONDITION_MET (0x04)
|
||||
#define MPI_SCSI_STATUS_BUSY (0x08)
|
||||
#define MPI_SCSI_STATUS_INTERMEDIATE (0x10)
|
||||
#define MPI_SCSI_STATUS_INTERMEDIATE_CONDMET (0x14)
|
||||
#define MPI_SCSI_STATUS_RESERVATION_CONFLICT (0x18)
|
||||
#define MPI_SCSI_STATUS_COMMAND_TERMINATED (0x22)
|
||||
#define MPI_SCSI_STATUS_TASK_SET_FULL (0x28)
|
||||
#define MPI_SCSI_STATUS_ACA_ACTIVE (0x30)
|
||||
|
||||
#define MPI_SCSI_STATUS_FCPEXT_DEVICE_LOGGED_OUT (0x80)
|
||||
#define MPI_SCSI_STATUS_FCPEXT_NO_LINK (0x81)
|
||||
#define MPI_SCSI_STATUS_FCPEXT_UNASSIGNED (0x82)
|
||||
|
||||
|
||||
/* SCSI IO Reply SCSIState values */
|
||||
|
||||
#define MPI_SCSI_STATE_AUTOSENSE_VALID (0x01)
|
||||
#define MPI_SCSI_STATE_AUTOSENSE_FAILED (0x02)
|
||||
#define MPI_SCSI_STATE_NO_SCSI_STATUS (0x04)
|
||||
#define MPI_SCSI_STATE_TERMINATED (0x08)
|
||||
#define MPI_SCSI_STATE_RESPONSE_INFO_VALID (0x10)
|
||||
#define MPI_SCSI_STATE_QUEUE_TAG_REJECTED (0x20)
|
||||
|
||||
/* SCSI IO Reply ResponseInfo values */
|
||||
/* (FCP-1 RSP_CODE values and SPI-3 Packetized Failure codes) */
|
||||
|
||||
#define MPI_SCSI_RSP_INFO_FUNCTION_COMPLETE (0x00000000)
|
||||
#define MPI_SCSI_RSP_INFO_FCP_BURST_LEN_ERROR (0x01000000)
|
||||
#define MPI_SCSI_RSP_INFO_CMND_FIELDS_INVALID (0x02000000)
|
||||
#define MPI_SCSI_RSP_INFO_FCP_DATA_RO_ERROR (0x03000000)
|
||||
#define MPI_SCSI_RSP_INFO_TASK_MGMT_UNSUPPORTED (0x04000000)
|
||||
#define MPI_SCSI_RSP_INFO_TASK_MGMT_FAILED (0x05000000)
|
||||
#define MPI_SCSI_RSP_INFO_SPI_LQ_INVALID_TYPE (0x06000000)
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* SCSI IO 32 Request message structure */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_SCSI_IO32_REQUEST
|
||||
{
|
||||
U8 TargetID; /* 00h */
|
||||
U8 Bus; /* 01h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U8 CDBLength; /* 04h */
|
||||
U8 SenseBufferLength; /* 05h */
|
||||
U8 Reserved; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U8 LUN[8]; /* 0Ch */
|
||||
U32 Control; /* 14h */
|
||||
U8 CDB[32]; /* 18h */
|
||||
U32 DataLength; /* 38h */
|
||||
U32 SenseBufferLowAddr; /* 3Ch */
|
||||
SGE_IO_UNION SGL; /* 40h */
|
||||
} MSG_SCSI_IO32_REQUEST, MPI_POINTER PTR_MSG_SCSI_IO32_REQUEST,
|
||||
SCSIIO32Request_t, MPI_POINTER pSCSIIO32Request_t;
|
||||
|
||||
/* SCSI IO 32 uses the same defines as above for SCSI IO */
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* SCSI Task Management messages */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_SCSI_TASK_MGMT
|
||||
{
|
||||
U8 TargetID; /* 00h */
|
||||
U8 Bus; /* 01h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U8 Reserved; /* 04h */
|
||||
U8 TaskType; /* 05h */
|
||||
U8 Reserved1; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U8 LUN[8]; /* 0Ch */
|
||||
U32 Reserved2[7]; /* 14h */
|
||||
U32 TaskMsgContext; /* 30h */
|
||||
} MSG_SCSI_TASK_MGMT, MPI_POINTER PTR_SCSI_TASK_MGMT,
|
||||
SCSITaskMgmt_t, MPI_POINTER pSCSITaskMgmt_t;
|
||||
|
||||
/* TaskType values */
|
||||
|
||||
#define MPI_SCSITASKMGMT_TASKTYPE_ABORT_TASK (0x01)
|
||||
#define MPI_SCSITASKMGMT_TASKTYPE_ABRT_TASK_SET (0x02)
|
||||
#define MPI_SCSITASKMGMT_TASKTYPE_TARGET_RESET (0x03)
|
||||
#define MPI_SCSITASKMGMT_TASKTYPE_RESET_BUS (0x04)
|
||||
#define MPI_SCSITASKMGMT_TASKTYPE_LOGICAL_UNIT_RESET (0x05)
|
||||
#define MPI_SCSITASKMGMT_TASKTYPE_CLEAR_TASK_SET (0x06)
|
||||
|
||||
/* MsgFlags bits */
|
||||
#define MPI_SCSITASKMGMT_MSGFLAGS_TARGET_RESET_OPTION (0x00)
|
||||
#define MPI_SCSITASKMGMT_MSGFLAGS_LIP_RESET_OPTION (0x02)
|
||||
#define MPI_SCSITASKMGMT_MSGFLAGS_LIPRESET_RESET_OPTION (0x04)
|
||||
|
||||
/* SCSI Task Management Reply */
|
||||
typedef struct _MSG_SCSI_TASK_MGMT_REPLY
|
||||
{
|
||||
U8 TargetID; /* 00h */
|
||||
U8 Bus; /* 01h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U8 Reserved; /* 04h */
|
||||
U8 TaskType; /* 05h */
|
||||
U8 Reserved1; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U8 Reserved2[2]; /* 0Ch */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
U32 TerminationCount; /* 14h */
|
||||
} MSG_SCSI_TASK_MGMT_REPLY, MPI_POINTER PTR_MSG_SCSI_TASK_MGMT_REPLY,
|
||||
SCSITaskMgmtReply_t, MPI_POINTER pSCSITaskMgmtReply_t;
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* SCSI Enclosure Processor messages */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_SEP_REQUEST
|
||||
{
|
||||
U8 TargetID; /* 00h */
|
||||
U8 Bus; /* 01h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U8 Action; /* 04h */
|
||||
U8 Reserved1; /* 05h */
|
||||
U8 Reserved2; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U32 SlotStatus; /* 0Ch */
|
||||
} MSG_SEP_REQUEST, MPI_POINTER PTR_MSG_SEP_REQUEST,
|
||||
SEPRequest_t, MPI_POINTER pSEPRequest_t;
|
||||
|
||||
/* Action defines */
|
||||
#define MPI_SEP_REQ_ACTION_WRITE_STATUS (0x00)
|
||||
#define MPI_SEP_REQ_ACTION_READ_STATUS (0x01)
|
||||
|
||||
/* SlotStatus bits for MSG_SEP_REQUEST */
|
||||
#define MPI_SEP_REQ_SLOTSTATUS_NO_ERROR (0x00000001)
|
||||
#define MPI_SEP_REQ_SLOTSTATUS_DEV_FAULTY (0x00000002)
|
||||
#define MPI_SEP_REQ_SLOTSTATUS_DEV_REBUILDING (0x00000004)
|
||||
#define MPI_SEP_REQ_SLOTSTATUS_IN_FAILED_ARRAY (0x00000008)
|
||||
#define MPI_SEP_REQ_SLOTSTATUS_IN_CRITICAL_ARRAY (0x00000010)
|
||||
#define MPI_SEP_REQ_SLOTSTATUS_PARITY_CHECK (0x00000020)
|
||||
#define MPI_SEP_REQ_SLOTSTATUS_PREDICTED_FAULT (0x00000040)
|
||||
#define MPI_SEP_REQ_SLOTSTATUS_UNCONFIGURED (0x00000080)
|
||||
#define MPI_SEP_REQ_SLOTSTATUS_HOT_SPARE (0x00000100)
|
||||
#define MPI_SEP_REQ_SLOTSTATUS_REBUILD_STOPPED (0x00000200)
|
||||
#define MPI_SEP_REQ_SLOTSTATUS_IDENTIFY_REQUEST (0x00020000)
|
||||
#define MPI_SEP_REQ_SLOTSTATUS_REQUEST_REMOVE (0x00040000)
|
||||
#define MPI_SEP_REQ_SLOTSTATUS_REQUEST_INSERT (0x00080000)
|
||||
#define MPI_SEP_REQ_SLOTSTATUS_DO_NOT_MOVE (0x00400000)
|
||||
#define MPI_SEP_REQ_SLOTSTATUS_B_ENABLE_BYPASS (0x04000000)
|
||||
#define MPI_SEP_REQ_SLOTSTATUS_A_ENABLE_BYPASS (0x08000000)
|
||||
#define MPI_SEP_REQ_SLOTSTATUS_DEV_OFF (0x10000000)
|
||||
#define MPI_SEP_REQ_SLOTSTATUS_SWAP_RESET (0x80000000)
|
||||
|
||||
|
||||
typedef struct _MSG_SEP_REPLY
|
||||
{
|
||||
U8 TargetID; /* 00h */
|
||||
U8 Bus; /* 01h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U8 Action; /* 04h */
|
||||
U8 Reserved1; /* 05h */
|
||||
U8 Reserved2; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U16 Reserved3; /* 0Ch */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
U32 SlotStatus; /* 14h */
|
||||
} MSG_SEP_REPLY, MPI_POINTER PTR_MSG_SEP_REPLY,
|
||||
SEPReply_t, MPI_POINTER pSEPReply_t;
|
||||
|
||||
/* SlotStatus bits for MSG_SEP_REPLY */
|
||||
#define MPI_SEP_REPLY_SLOTSTATUS_NO_ERROR (0x00000001)
|
||||
#define MPI_SEP_REPLY_SLOTSTATUS_DEV_FAULTY (0x00000002)
|
||||
#define MPI_SEP_REPLY_SLOTSTATUS_DEV_REBUILDING (0x00000004)
|
||||
#define MPI_SEP_REPLY_SLOTSTATUS_IN_FAILED_ARRAY (0x00000008)
|
||||
#define MPI_SEP_REPLY_SLOTSTATUS_IN_CRITICAL_ARRAY (0x00000010)
|
||||
#define MPI_SEP_REPLY_SLOTSTATUS_PARITY_CHECK (0x00000020)
|
||||
#define MPI_SEP_REPLY_SLOTSTATUS_PREDICTED_FAULT (0x00000040)
|
||||
#define MPI_SEP_REPLY_SLOTSTATUS_UNCONFIGURED (0x00000080)
|
||||
#define MPI_SEP_REPLY_SLOTSTATUS_HOT_SPARE (0x00000100)
|
||||
#define MPI_SEP_REPLY_SLOTSTATUS_REBUILD_STOPPED (0x00000200)
|
||||
#define MPI_SEP_REPLY_SLOTSTATUS_REPORT (0x00010000)
|
||||
#define MPI_SEP_REPLY_SLOTSTATUS_IDENTIFY_REQUEST (0x00020000)
|
||||
#define MPI_SEP_REPLY_SLOTSTATUS_REMOVE_READY (0x00040000)
|
||||
#define MPI_SEP_REPLY_SLOTSTATUS_INSERT_READY (0x00080000)
|
||||
#define MPI_SEP_REPLY_SLOTSTATUS_DO_NOT_REMOVE (0x00400000)
|
||||
#define MPI_SEP_REPLY_SLOTSTATUS_B_BYPASS_ENABLED (0x01000000)
|
||||
#define MPI_SEP_REPLY_SLOTSTATUS_A_BYPASS_ENABLED (0x02000000)
|
||||
#define MPI_SEP_REPLY_SLOTSTATUS_B_ENABLE_BYPASS (0x04000000)
|
||||
#define MPI_SEP_REPLY_SLOTSTATUS_A_ENABLE_BYPASS (0x08000000)
|
||||
#define MPI_SEP_REPLY_SLOTSTATUS_DEV_OFF (0x10000000)
|
||||
#define MPI_SEP_REPLY_SLOTSTATUS_FAULT_SENSED (0x40000000)
|
||||
#define MPI_SEP_REPLY_SLOTSTATUS_SWAPPED (0x80000000)
|
||||
|
||||
#endif
|
||||
770
extra/linux-2.6.10/drivers/message/fusion/lsi/mpi_ioc.h
Normal file
770
extra/linux-2.6.10/drivers/message/fusion/lsi/mpi_ioc.h
Normal file
@@ -0,0 +1,770 @@
|
||||
/*
|
||||
* Copyright (c) 2000-2003 LSI Logic Corporation.
|
||||
*
|
||||
*
|
||||
* Name: mpi_ioc.h
|
||||
* Title: MPI IOC, Port, Event, FW Download, and FW Upload messages
|
||||
* Creation Date: August 11, 2000
|
||||
*
|
||||
* mpi_ioc.h Version: 01.05.xx
|
||||
*
|
||||
* Version History
|
||||
* ---------------
|
||||
*
|
||||
* Date Version Description
|
||||
* -------- -------- ------------------------------------------------------
|
||||
* 05-08-00 00.10.01 Original release for 0.10 spec dated 4/26/2000.
|
||||
* 05-24-00 00.10.02 Added _MSG_IOC_INIT_REPLY structure.
|
||||
* 06-06-00 01.00.01 Added CurReplyFrameSize field to _MSG_IOC_FACTS_REPLY.
|
||||
* 06-12-00 01.00.02 Added _MSG_PORT_ENABLE_REPLY structure.
|
||||
* Added _MSG_EVENT_ACK_REPLY structure.
|
||||
* Added _MSG_FW_DOWNLOAD_REPLY structure.
|
||||
* Added _MSG_TOOLBOX_REPLY structure.
|
||||
* 06-30-00 01.00.03 Added MaxLanBuckets to _PORT_FACT_REPLY structure.
|
||||
* 07-27-00 01.00.04 Added _EVENT_DATA structure definitions for _SCSI,
|
||||
* _LINK_STATUS, _LOOP_STATE and _LOGOUT.
|
||||
* 08-11-00 01.00.05 Switched positions of MsgLength and Function fields in
|
||||
* _MSG_EVENT_ACK_REPLY structure to match specification.
|
||||
* 11-02-00 01.01.01 Original release for post 1.0 work.
|
||||
* Added a value for Manufacturer to WhoInit.
|
||||
* 12-04-00 01.01.02 Modified IOCFacts reply, added FWUpload messages, and
|
||||
* removed toolbox message.
|
||||
* 01-09-01 01.01.03 Added event enabled and disabled defines.
|
||||
* Added structures for FwHeader and DataHeader.
|
||||
* Added ImageType to FwUpload reply.
|
||||
* 02-20-01 01.01.04 Started using MPI_POINTER.
|
||||
* 02-27-01 01.01.05 Added event for RAID status change and its event data.
|
||||
* Added IocNumber field to MSG_IOC_FACTS_REPLY.
|
||||
* 03-27-01 01.01.06 Added defines for ProductId field of MPI_FW_HEADER.
|
||||
* Added structure offset comments.
|
||||
* 04-09-01 01.01.07 Added structure EVENT_DATA_EVENT_CHANGE.
|
||||
* 08-08-01 01.02.01 Original release for v1.2 work.
|
||||
* New format for FWVersion and ProductId in
|
||||
* MSG_IOC_FACTS_REPLY and MPI_FW_HEADER.
|
||||
* 08-31-01 01.02.02 Addded event MPI_EVENT_SCSI_DEVICE_STATUS_CHANGE and
|
||||
* related structure and defines.
|
||||
* Added event MPI_EVENT_ON_BUS_TIMER_EXPIRED.
|
||||
* Added MPI_IOCINIT_FLAGS_DISCARD_FW_IMAGE.
|
||||
* Replaced a reserved field in MSG_IOC_FACTS_REPLY with
|
||||
* IOCExceptions and changed DataImageSize to reserved.
|
||||
* Added MPI_FW_DOWNLOAD_ITYPE_NVSTORE_DATA and
|
||||
* MPI_FW_UPLOAD_ITYPE_NVDATA.
|
||||
* 09-28-01 01.02.03 Modified Event Data for Integrated RAID.
|
||||
* 11-01-01 01.02.04 Added defines for MPI_EXT_IMAGE_HEADER ImageType field.
|
||||
* 03-14-02 01.02.05 Added HeaderVersion field to MSG_IOC_FACTS_REPLY.
|
||||
* 05-31-02 01.02.06 Added define for
|
||||
* MPI_IOCFACTS_EXCEPT_RAID_CONFIG_INVALID.
|
||||
* Added AliasIndex to EVENT_DATA_LOGOUT structure.
|
||||
* 04-01-03 01.02.07 Added defines for MPI_FW_HEADER_SIGNATURE_.
|
||||
* 06-26-03 01.02.08 Added new values to the product family defines.
|
||||
* --------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#ifndef MPI_IOC_H
|
||||
#define MPI_IOC_H
|
||||
|
||||
|
||||
/*****************************************************************************
|
||||
*
|
||||
* I O C M e s s a g e s
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
/****************************************************************************/
|
||||
/* IOCInit message */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_IOC_INIT
|
||||
{
|
||||
U8 WhoInit; /* 00h */
|
||||
U8 Reserved; /* 01h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U8 Flags; /* 04h */
|
||||
U8 MaxDevices; /* 05h */
|
||||
U8 MaxBuses; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U16 ReplyFrameSize; /* 0Ch */
|
||||
U8 Reserved1[2]; /* 0Eh */
|
||||
U32 HostMfaHighAddr; /* 10h */
|
||||
U32 SenseBufferHighAddr; /* 14h */
|
||||
U32 ReplyFifoHostSignalingAddr; /* 18h */
|
||||
} MSG_IOC_INIT, MPI_POINTER PTR_MSG_IOC_INIT,
|
||||
IOCInit_t, MPI_POINTER pIOCInit_t;
|
||||
|
||||
/* WhoInit values */
|
||||
#define MPI_WHOINIT_NO_ONE (0x00)
|
||||
#define MPI_WHOINIT_SYSTEM_BIOS (0x01)
|
||||
#define MPI_WHOINIT_ROM_BIOS (0x02)
|
||||
#define MPI_WHOINIT_PCI_PEER (0x03)
|
||||
#define MPI_WHOINIT_HOST_DRIVER (0x04)
|
||||
#define MPI_WHOINIT_MANUFACTURER (0x05)
|
||||
|
||||
/* Flags values */
|
||||
#define MPI_IOCINIT_FLAGS_DISCARD_FW_IMAGE (0x01)
|
||||
#define MPI_IOCINIT_FLAGS_REPLY_FIFO_HOST_SIGNAL (0x02)
|
||||
|
||||
typedef struct _MSG_IOC_INIT_REPLY
|
||||
{
|
||||
U8 WhoInit; /* 00h */
|
||||
U8 Reserved; /* 01h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U8 Flags; /* 04h */
|
||||
U8 MaxDevices; /* 05h */
|
||||
U8 MaxBuses; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U16 Reserved2; /* 0Ch */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
} MSG_IOC_INIT_REPLY, MPI_POINTER PTR_MSG_IOC_INIT_REPLY,
|
||||
IOCInitReply_t, MPI_POINTER pIOCInitReply_t;
|
||||
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* IOC Facts message */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_IOC_FACTS
|
||||
{
|
||||
U8 Reserved[2]; /* 00h */
|
||||
U8 ChainOffset; /* 01h */
|
||||
U8 Function; /* 02h */
|
||||
U8 Reserved1[3]; /* 03h */
|
||||
U8 MsgFlags; /* 04h */
|
||||
U32 MsgContext; /* 08h */
|
||||
} MSG_IOC_FACTS, MPI_POINTER PTR_IOC_FACTS,
|
||||
IOCFacts_t, MPI_POINTER pIOCFacts_t;
|
||||
|
||||
typedef struct _MPI_FW_VERSION_STRUCT
|
||||
{
|
||||
U8 Dev; /* 00h */
|
||||
U8 Unit; /* 01h */
|
||||
U8 Minor; /* 02h */
|
||||
U8 Major; /* 03h */
|
||||
} MPI_FW_VERSION_STRUCT;
|
||||
|
||||
typedef union _MPI_FW_VERSION
|
||||
{
|
||||
MPI_FW_VERSION_STRUCT Struct;
|
||||
U32 Word;
|
||||
} MPI_FW_VERSION;
|
||||
|
||||
/* IOC Facts Reply */
|
||||
typedef struct _MSG_IOC_FACTS_REPLY
|
||||
{
|
||||
U16 MsgVersion; /* 00h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 HeaderVersion; /* 04h */
|
||||
U8 IOCNumber; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U16 IOCExceptions; /* 0Ch */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
U8 MaxChainDepth; /* 14h */
|
||||
U8 WhoInit; /* 15h */
|
||||
U8 BlockSize; /* 16h */
|
||||
U8 Flags; /* 17h */
|
||||
U16 ReplyQueueDepth; /* 18h */
|
||||
U16 RequestFrameSize; /* 1Ah */
|
||||
U16 Reserved_0101_FWVersion; /* 1Ch */ /* obsolete 16-bit FWVersion */
|
||||
U16 ProductID; /* 1Eh */
|
||||
U32 CurrentHostMfaHighAddr; /* 20h */
|
||||
U16 GlobalCredits; /* 24h */
|
||||
U8 NumberOfPorts; /* 26h */
|
||||
U8 EventState; /* 27h */
|
||||
U32 CurrentSenseBufferHighAddr; /* 28h */
|
||||
U16 CurReplyFrameSize; /* 2Ch */
|
||||
U8 MaxDevices; /* 2Eh */
|
||||
U8 MaxBuses; /* 2Fh */
|
||||
U32 FWImageSize; /* 30h */
|
||||
U32 IOCCapabilities; /* 34h */
|
||||
MPI_FW_VERSION FWVersion; /* 38h */
|
||||
U16 HighPriorityQueueDepth; /* 3Ch */
|
||||
U16 Reserved2; /* 3Eh */
|
||||
} MSG_IOC_FACTS_REPLY, MPI_POINTER PTR_MSG_IOC_FACTS_REPLY,
|
||||
IOCFactsReply_t, MPI_POINTER pIOCFactsReply_t;
|
||||
|
||||
#define MPI_IOCFACTS_MSGVERSION_MAJOR_MASK (0xFF00)
|
||||
#define MPI_IOCFACTS_MSGVERSION_MINOR_MASK (0x00FF)
|
||||
|
||||
#define MPI_IOCFACTS_HEADERVERSION_UNIT_MASK (0xFF00)
|
||||
#define MPI_IOCFACTS_HEADERVERSION_DEV_MASK (0x00FF)
|
||||
|
||||
#define MPI_IOCFACTS_EXCEPT_CONFIG_CHECKSUM_FAIL (0x0001)
|
||||
#define MPI_IOCFACTS_EXCEPT_RAID_CONFIG_INVALID (0x0002)
|
||||
#define MPI_IOCFACTS_EXCEPT_FW_CHECKSUM_FAIL (0x0004)
|
||||
#define MPI_IOCFACTS_EXCEPT_PERSISTENT_TABLE_FULL (0x0008)
|
||||
|
||||
#define MPI_IOCFACTS_FLAGS_FW_DOWNLOAD_BOOT (0x01)
|
||||
|
||||
#define MPI_IOCFACTS_EVENTSTATE_DISABLED (0x00)
|
||||
#define MPI_IOCFACTS_EVENTSTATE_ENABLED (0x01)
|
||||
|
||||
#define MPI_IOCFACTS_CAPABILITY_HIGH_PRI_Q (0x00000001)
|
||||
#define MPI_IOCFACTS_CAPABILITY_REPLY_HOST_SIGNAL (0x00000002)
|
||||
#define MPI_IOCFACTS_CAPABILITY_QUEUE_FULL_HANDLING (0x00000004)
|
||||
#define MPI_IOCFACTS_CAPABILITY_DIAG_TRACE_BUFFER (0x00000008)
|
||||
#define MPI_IOCFACTS_CAPABILITY_SNAPSHOT_BUFFER (0x00000010)
|
||||
#define MPI_IOCFACTS_CAPABILITY_EXTENDED_BUFFER (0x00000020)
|
||||
#define MPI_IOCFACTS_CAPABILITY_EEDP (0x00000040)
|
||||
|
||||
|
||||
|
||||
/*****************************************************************************
|
||||
*
|
||||
* P o r t M e s s a g e s
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
/****************************************************************************/
|
||||
/* Port Facts message and Reply */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_PORT_FACTS
|
||||
{
|
||||
U8 Reserved[2]; /* 00h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U8 Reserved1[2]; /* 04h */
|
||||
U8 PortNumber; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
} MSG_PORT_FACTS, MPI_POINTER PTR_MSG_PORT_FACTS,
|
||||
PortFacts_t, MPI_POINTER pPortFacts_t;
|
||||
|
||||
typedef struct _MSG_PORT_FACTS_REPLY
|
||||
{
|
||||
U16 Reserved; /* 00h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved1; /* 04h */
|
||||
U8 PortNumber; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U16 Reserved2; /* 0Ch */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
U8 Reserved3; /* 14h */
|
||||
U8 PortType; /* 15h */
|
||||
U16 MaxDevices; /* 16h */
|
||||
U16 PortSCSIID; /* 18h */
|
||||
U16 ProtocolFlags; /* 1Ah */
|
||||
U16 MaxPostedCmdBuffers; /* 1Ch */
|
||||
U16 MaxPersistentIDs; /* 1Eh */
|
||||
U16 MaxLanBuckets; /* 20h */
|
||||
U16 Reserved4; /* 22h */
|
||||
U32 Reserved5; /* 24h */
|
||||
} MSG_PORT_FACTS_REPLY, MPI_POINTER PTR_MSG_PORT_FACTS_REPLY,
|
||||
PortFactsReply_t, MPI_POINTER pPortFactsReply_t;
|
||||
|
||||
|
||||
/* PortTypes values */
|
||||
|
||||
#define MPI_PORTFACTS_PORTTYPE_INACTIVE (0x00)
|
||||
#define MPI_PORTFACTS_PORTTYPE_SCSI (0x01)
|
||||
#define MPI_PORTFACTS_PORTTYPE_FC (0x10)
|
||||
#define MPI_PORTFACTS_PORTTYPE_ISCSI (0x20)
|
||||
#define MPI_PORTFACTS_PORTTYPE_SAS (0x30)
|
||||
|
||||
/* ProtocolFlags values */
|
||||
|
||||
#define MPI_PORTFACTS_PROTOCOL_LOGBUSADDR (0x01)
|
||||
#define MPI_PORTFACTS_PROTOCOL_LAN (0x02)
|
||||
#define MPI_PORTFACTS_PROTOCOL_TARGET (0x04)
|
||||
#define MPI_PORTFACTS_PROTOCOL_INITIATOR (0x08)
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* Port Enable Message */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_PORT_ENABLE
|
||||
{
|
||||
U8 Reserved[2]; /* 00h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U8 Reserved1[2]; /* 04h */
|
||||
U8 PortNumber; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
} MSG_PORT_ENABLE, MPI_POINTER PTR_MSG_PORT_ENABLE,
|
||||
PortEnable_t, MPI_POINTER pPortEnable_t;
|
||||
|
||||
typedef struct _MSG_PORT_ENABLE_REPLY
|
||||
{
|
||||
U8 Reserved[2]; /* 00h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U8 Reserved1[2]; /* 04h */
|
||||
U8 PortNumber; /* 05h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U16 Reserved2; /* 0Ch */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
} MSG_PORT_ENABLE_REPLY, MPI_POINTER PTR_MSG_PORT_ENABLE_REPLY,
|
||||
PortEnableReply_t, MPI_POINTER pPortEnableReply_t;
|
||||
|
||||
|
||||
/*****************************************************************************
|
||||
*
|
||||
* E v e n t M e s s a g e s
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
/****************************************************************************/
|
||||
/* Event Notification messages */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_EVENT_NOTIFY
|
||||
{
|
||||
U8 Switch; /* 00h */
|
||||
U8 Reserved; /* 01h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U8 Reserved1[3]; /* 04h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
} MSG_EVENT_NOTIFY, MPI_POINTER PTR_MSG_EVENT_NOTIFY,
|
||||
EventNotification_t, MPI_POINTER pEventNotification_t;
|
||||
|
||||
/* Event Notification Reply */
|
||||
|
||||
typedef struct _MSG_EVENT_NOTIFY_REPLY
|
||||
{
|
||||
U16 EventDataLength; /* 00h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U8 Reserved1[2]; /* 04h */
|
||||
U8 AckRequired; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U8 Reserved2[2]; /* 0Ch */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
U32 Event; /* 14h */
|
||||
U32 EventContext; /* 18h */
|
||||
U32 Data[1]; /* 1Ch */
|
||||
} MSG_EVENT_NOTIFY_REPLY, MPI_POINTER PTR_MSG_EVENT_NOTIFY_REPLY,
|
||||
EventNotificationReply_t, MPI_POINTER pEventNotificationReply_t;
|
||||
|
||||
/* Event Acknowledge */
|
||||
|
||||
typedef struct _MSG_EVENT_ACK
|
||||
{
|
||||
U8 Reserved[2]; /* 00h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U8 Reserved1[3]; /* 04h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U32 Event; /* 0Ch */
|
||||
U32 EventContext; /* 10h */
|
||||
} MSG_EVENT_ACK, MPI_POINTER PTR_MSG_EVENT_ACK,
|
||||
EventAck_t, MPI_POINTER pEventAck_t;
|
||||
|
||||
typedef struct _MSG_EVENT_ACK_REPLY
|
||||
{
|
||||
U8 Reserved[2]; /* 00h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U8 Reserved1[3]; /* 04h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U16 Reserved2; /* 0Ch */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
} MSG_EVENT_ACK_REPLY, MPI_POINTER PTR_MSG_EVENT_ACK_REPLY,
|
||||
EventAckReply_t, MPI_POINTER pEventAckReply_t;
|
||||
|
||||
/* Switch */
|
||||
|
||||
#define MPI_EVENT_NOTIFICATION_SWITCH_OFF (0x00)
|
||||
#define MPI_EVENT_NOTIFICATION_SWITCH_ON (0x01)
|
||||
|
||||
/* Event */
|
||||
|
||||
#define MPI_EVENT_NONE (0x00000000)
|
||||
#define MPI_EVENT_LOG_DATA (0x00000001)
|
||||
#define MPI_EVENT_STATE_CHANGE (0x00000002)
|
||||
#define MPI_EVENT_UNIT_ATTENTION (0x00000003)
|
||||
#define MPI_EVENT_IOC_BUS_RESET (0x00000004)
|
||||
#define MPI_EVENT_EXT_BUS_RESET (0x00000005)
|
||||
#define MPI_EVENT_RESCAN (0x00000006)
|
||||
#define MPI_EVENT_LINK_STATUS_CHANGE (0x00000007)
|
||||
#define MPI_EVENT_LOOP_STATE_CHANGE (0x00000008)
|
||||
#define MPI_EVENT_LOGOUT (0x00000009)
|
||||
#define MPI_EVENT_EVENT_CHANGE (0x0000000A)
|
||||
#define MPI_EVENT_INTEGRATED_RAID (0x0000000B)
|
||||
#define MPI_EVENT_SCSI_DEVICE_STATUS_CHANGE (0x0000000C)
|
||||
#define MPI_EVENT_ON_BUS_TIMER_EXPIRED (0x0000000D)
|
||||
#define MPI_EVENT_QUEUE_FULL (0x0000000E)
|
||||
#define MPI_EVENT_SAS_DEVICE_STATUS_CHANGE (0x0000000F)
|
||||
#define MPI_EVENT_SAS_SES (0x00000010)
|
||||
#define MPI_EVENT_PERSISTENT_TABLE_FULL (0x00000011)
|
||||
|
||||
/* AckRequired field values */
|
||||
|
||||
#define MPI_EVENT_NOTIFICATION_ACK_NOT_REQUIRED (0x00)
|
||||
#define MPI_EVENT_NOTIFICATION_ACK_REQUIRED (0x01)
|
||||
|
||||
/* EventChange Event data */
|
||||
|
||||
typedef struct _EVENT_DATA_EVENT_CHANGE
|
||||
{
|
||||
U8 EventState; /* 00h */
|
||||
U8 Reserved; /* 01h */
|
||||
U16 Reserved1; /* 02h */
|
||||
} EVENT_DATA_EVENT_CHANGE, MPI_POINTER PTR_EVENT_DATA_EVENT_CHANGE,
|
||||
EventDataEventChange_t, MPI_POINTER pEventDataEventChange_t;
|
||||
|
||||
/* SCSI Event data for Port, Bus and Device forms */
|
||||
|
||||
typedef struct _EVENT_DATA_SCSI
|
||||
{
|
||||
U8 TargetID; /* 00h */
|
||||
U8 BusPort; /* 01h */
|
||||
U16 Reserved; /* 02h */
|
||||
} EVENT_DATA_SCSI, MPI_POINTER PTR_EVENT_DATA_SCSI,
|
||||
EventDataScsi_t, MPI_POINTER pEventDataScsi_t;
|
||||
|
||||
/* SCSI Device Status Change Event data */
|
||||
|
||||
typedef struct _EVENT_DATA_SCSI_DEVICE_STATUS_CHANGE
|
||||
{
|
||||
U8 TargetID; /* 00h */
|
||||
U8 Bus; /* 01h */
|
||||
U8 ReasonCode; /* 02h */
|
||||
U8 LUN; /* 03h */
|
||||
U8 ASC; /* 04h */
|
||||
U8 ASCQ; /* 05h */
|
||||
U16 Reserved; /* 06h */
|
||||
} EVENT_DATA_SCSI_DEVICE_STATUS_CHANGE,
|
||||
MPI_POINTER PTR_EVENT_DATA_SCSI_DEVICE_STATUS_CHANGE,
|
||||
MpiEventDataScsiDeviceStatusChange_t,
|
||||
MPI_POINTER pMpiEventDataScsiDeviceStatusChange_t;
|
||||
|
||||
/* MPI SCSI Device Status Change Event data ReasonCode values */
|
||||
#define MPI_EVENT_SCSI_DEV_STAT_RC_ADDED (0x03)
|
||||
#define MPI_EVENT_SCSI_DEV_STAT_RC_NOT_RESPONDING (0x04)
|
||||
#define MPI_EVENT_SCSI_DEV_STAT_RC_SMART_DATA (0x05)
|
||||
|
||||
/* SAS Device Status Change Event data */
|
||||
|
||||
typedef struct _EVENT_DATA_SAS_DEVICE_STATUS_CHANGE
|
||||
{
|
||||
U8 TargetID; /* 00h */
|
||||
U8 Bus; /* 01h */
|
||||
U8 ReasonCode; /* 02h */
|
||||
U8 Reserved; /* 03h */
|
||||
U8 ASC; /* 04h */
|
||||
U8 ASCQ; /* 05h */
|
||||
U16 DevHandle; /* 06h */
|
||||
U32 DeviceInfo; /* 08h */
|
||||
} EVENT_DATA_SAS_DEVICE_STATUS_CHANGE,
|
||||
MPI_POINTER PTR_EVENT_DATA_SAS_DEVICE_STATUS_CHANGE,
|
||||
MpiEventDataSasDeviceStatusChange_t,
|
||||
MPI_POINTER pMpiEventDataSasDeviceStatusChange_t;
|
||||
|
||||
/* MPI SAS Device Status Change Event data ReasonCode values */
|
||||
#define MPI_EVENT_SAS_DEV_STAT_RC_ADDED (0x03)
|
||||
#define MPI_EVENT_SAS_DEV_STAT_RC_NOT_RESPONDING (0x04)
|
||||
#define MPI_EVENT_SAS_DEV_STAT_RC_SMART_DATA (0x05)
|
||||
#define MPI_EVENT_SAS_DEV_STAT_RC_NO_PERSIST_ADDED (0x06)
|
||||
|
||||
/* SCSI Event data for Queue Full event */
|
||||
|
||||
typedef struct _EVENT_DATA_QUEUE_FULL
|
||||
{
|
||||
U8 TargetID; /* 00h */
|
||||
U8 Bus; /* 01h */
|
||||
U16 CurrentDepth; /* 02h */
|
||||
} EVENT_DATA_QUEUE_FULL, MPI_POINTER PTR_EVENT_DATA_QUEUE_FULL,
|
||||
EventDataQueueFull_t, MPI_POINTER pEventDataQueueFull_t;
|
||||
|
||||
/* MPI Link Status Change Event data */
|
||||
|
||||
typedef struct _EVENT_DATA_LINK_STATUS
|
||||
{
|
||||
U8 State; /* 00h */
|
||||
U8 Reserved; /* 01h */
|
||||
U16 Reserved1; /* 02h */
|
||||
U8 Reserved2; /* 04h */
|
||||
U8 Port; /* 05h */
|
||||
U16 Reserved3; /* 06h */
|
||||
} EVENT_DATA_LINK_STATUS, MPI_POINTER PTR_EVENT_DATA_LINK_STATUS,
|
||||
EventDataLinkStatus_t, MPI_POINTER pEventDataLinkStatus_t;
|
||||
|
||||
#define MPI_EVENT_LINK_STATUS_FAILURE (0x00000000)
|
||||
#define MPI_EVENT_LINK_STATUS_ACTIVE (0x00000001)
|
||||
|
||||
/* MPI Loop State Change Event data */
|
||||
|
||||
typedef struct _EVENT_DATA_LOOP_STATE
|
||||
{
|
||||
U8 Character4; /* 00h */
|
||||
U8 Character3; /* 01h */
|
||||
U8 Type; /* 02h */
|
||||
U8 Reserved; /* 03h */
|
||||
U8 Reserved1; /* 04h */
|
||||
U8 Port; /* 05h */
|
||||
U16 Reserved2; /* 06h */
|
||||
} EVENT_DATA_LOOP_STATE, MPI_POINTER PTR_EVENT_DATA_LOOP_STATE,
|
||||
EventDataLoopState_t, MPI_POINTER pEventDataLoopState_t;
|
||||
|
||||
#define MPI_EVENT_LOOP_STATE_CHANGE_LIP (0x0001)
|
||||
#define MPI_EVENT_LOOP_STATE_CHANGE_LPE (0x0002)
|
||||
#define MPI_EVENT_LOOP_STATE_CHANGE_LPB (0x0003)
|
||||
|
||||
/* MPI LOGOUT Event data */
|
||||
|
||||
typedef struct _EVENT_DATA_LOGOUT
|
||||
{
|
||||
U32 NPortID; /* 00h */
|
||||
U8 AliasIndex; /* 04h */
|
||||
U8 Port; /* 05h */
|
||||
U16 Reserved1; /* 06h */
|
||||
} EVENT_DATA_LOGOUT, MPI_POINTER PTR_EVENT_DATA_LOGOUT,
|
||||
EventDataLogout_t, MPI_POINTER pEventDataLogout_t;
|
||||
|
||||
#define MPI_EVENT_LOGOUT_ALL_ALIASES (0xFF)
|
||||
|
||||
|
||||
/* MPI Integrated RAID Event data */
|
||||
|
||||
typedef struct _EVENT_DATA_RAID
|
||||
{
|
||||
U8 VolumeID; /* 00h */
|
||||
U8 VolumeBus; /* 01h */
|
||||
U8 ReasonCode; /* 02h */
|
||||
U8 PhysDiskNum; /* 03h */
|
||||
U8 ASC; /* 04h */
|
||||
U8 ASCQ; /* 05h */
|
||||
U16 Reserved; /* 06h */
|
||||
U32 SettingsStatus; /* 08h */
|
||||
} EVENT_DATA_RAID, MPI_POINTER PTR_EVENT_DATA_RAID,
|
||||
MpiEventDataRaid_t, MPI_POINTER pMpiEventDataRaid_t;
|
||||
|
||||
/* MPI Integrated RAID Event data ReasonCode values */
|
||||
#define MPI_EVENT_RAID_RC_VOLUME_CREATED (0x00)
|
||||
#define MPI_EVENT_RAID_RC_VOLUME_DELETED (0x01)
|
||||
#define MPI_EVENT_RAID_RC_VOLUME_SETTINGS_CHANGED (0x02)
|
||||
#define MPI_EVENT_RAID_RC_VOLUME_STATUS_CHANGED (0x03)
|
||||
#define MPI_EVENT_RAID_RC_VOLUME_PHYSDISK_CHANGED (0x04)
|
||||
#define MPI_EVENT_RAID_RC_PHYSDISK_CREATED (0x05)
|
||||
#define MPI_EVENT_RAID_RC_PHYSDISK_DELETED (0x06)
|
||||
#define MPI_EVENT_RAID_RC_PHYSDISK_SETTINGS_CHANGED (0x07)
|
||||
#define MPI_EVENT_RAID_RC_PHYSDISK_STATUS_CHANGED (0x08)
|
||||
#define MPI_EVENT_RAID_RC_DOMAIN_VAL_NEEDED (0x09)
|
||||
#define MPI_EVENT_RAID_RC_SMART_DATA (0x0A)
|
||||
#define MPI_EVENT_RAID_RC_REPLACE_ACTION_STARTED (0x0B)
|
||||
|
||||
|
||||
/*****************************************************************************
|
||||
*
|
||||
* F i r m w a r e L o a d M e s s a g e s
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
/****************************************************************************/
|
||||
/* Firmware Download message and associated structures */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_FW_DOWNLOAD
|
||||
{
|
||||
U8 ImageType; /* 00h */
|
||||
U8 Reserved; /* 01h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U8 Reserved1[3]; /* 04h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
SGE_MPI_UNION SGL; /* 0Ch */
|
||||
} MSG_FW_DOWNLOAD, MPI_POINTER PTR_MSG_FW_DOWNLOAD,
|
||||
FWDownload_t, MPI_POINTER pFWDownload_t;
|
||||
|
||||
#define MPI_FW_DOWNLOAD_ITYPE_RESERVED (0x00)
|
||||
#define MPI_FW_DOWNLOAD_ITYPE_FW (0x01)
|
||||
#define MPI_FW_DOWNLOAD_ITYPE_BIOS (0x02)
|
||||
#define MPI_FW_DOWNLOAD_ITYPE_NVDATA (0x03)
|
||||
#define MPI_FW_DOWNLOAD_ITYPE_BOOTLOADER (0x04)
|
||||
|
||||
|
||||
typedef struct _FWDownloadTCSGE
|
||||
{
|
||||
U8 Reserved; /* 00h */
|
||||
U8 ContextSize; /* 01h */
|
||||
U8 DetailsLength; /* 02h */
|
||||
U8 Flags; /* 03h */
|
||||
U32 Reserved_0100_Checksum; /* 04h */ /* obsolete Checksum */
|
||||
U32 ImageOffset; /* 08h */
|
||||
U32 ImageSize; /* 0Ch */
|
||||
} FW_DOWNLOAD_TCSGE, MPI_POINTER PTR_FW_DOWNLOAD_TCSGE,
|
||||
FWDownloadTCSGE_t, MPI_POINTER pFWDownloadTCSGE_t;
|
||||
|
||||
/* Firmware Download reply */
|
||||
typedef struct _MSG_FW_DOWNLOAD_REPLY
|
||||
{
|
||||
U8 ImageType; /* 00h */
|
||||
U8 Reserved; /* 01h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U8 Reserved1[3]; /* 04h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U16 Reserved2; /* 0Ch */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
} MSG_FW_DOWNLOAD_REPLY, MPI_POINTER PTR_MSG_FW_DOWNLOAD_REPLY,
|
||||
FWDownloadReply_t, MPI_POINTER pFWDownloadReply_t;
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* Firmware Upload message and associated structures */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_FW_UPLOAD
|
||||
{
|
||||
U8 ImageType; /* 00h */
|
||||
U8 Reserved; /* 01h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U8 Reserved1[3]; /* 04h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
SGE_MPI_UNION SGL; /* 0Ch */
|
||||
} MSG_FW_UPLOAD, MPI_POINTER PTR_MSG_FW_UPLOAD,
|
||||
FWUpload_t, MPI_POINTER pFWUpload_t;
|
||||
|
||||
#define MPI_FW_UPLOAD_ITYPE_FW_IOC_MEM (0x00)
|
||||
#define MPI_FW_UPLOAD_ITYPE_FW_FLASH (0x01)
|
||||
#define MPI_FW_UPLOAD_ITYPE_BIOS_FLASH (0x02)
|
||||
#define MPI_FW_UPLOAD_ITYPE_NVDATA (0x03)
|
||||
#define MPI_FW_UPLOAD_ITYPE_BOOTLOADER (0x04)
|
||||
|
||||
typedef struct _FWUploadTCSGE
|
||||
{
|
||||
U8 Reserved; /* 00h */
|
||||
U8 ContextSize; /* 01h */
|
||||
U8 DetailsLength; /* 02h */
|
||||
U8 Flags; /* 03h */
|
||||
U32 Reserved1; /* 04h */
|
||||
U32 ImageOffset; /* 08h */
|
||||
U32 ImageSize; /* 0Ch */
|
||||
} FW_UPLOAD_TCSGE, MPI_POINTER PTR_FW_UPLOAD_TCSGE,
|
||||
FWUploadTCSGE_t, MPI_POINTER pFWUploadTCSGE_t;
|
||||
|
||||
/* Firmware Upload reply */
|
||||
typedef struct _MSG_FW_UPLOAD_REPLY
|
||||
{
|
||||
U8 ImageType; /* 00h */
|
||||
U8 Reserved; /* 01h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U8 Reserved1[3]; /* 04h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U16 Reserved2; /* 0Ch */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
U32 ActualImageSize; /* 14h */
|
||||
} MSG_FW_UPLOAD_REPLY, MPI_POINTER PTR_MSG_FW_UPLOAD_REPLY,
|
||||
FWUploadReply_t, MPI_POINTER pFWUploadReply_t;
|
||||
|
||||
|
||||
typedef struct _MPI_FW_HEADER
|
||||
{
|
||||
U32 ArmBranchInstruction0; /* 00h */
|
||||
U32 Signature0; /* 04h */
|
||||
U32 Signature1; /* 08h */
|
||||
U32 Signature2; /* 0Ch */
|
||||
U32 ArmBranchInstruction1; /* 10h */
|
||||
U32 ArmBranchInstruction2; /* 14h */
|
||||
U32 Reserved; /* 18h */
|
||||
U32 Checksum; /* 1Ch */
|
||||
U16 VendorId; /* 20h */
|
||||
U16 ProductId; /* 22h */
|
||||
MPI_FW_VERSION FWVersion; /* 24h */
|
||||
U32 SeqCodeVersion; /* 28h */
|
||||
U32 ImageSize; /* 2Ch */
|
||||
U32 NextImageHeaderOffset; /* 30h */
|
||||
U32 LoadStartAddress; /* 34h */
|
||||
U32 IopResetVectorValue; /* 38h */
|
||||
U32 IopResetRegAddr; /* 3Ch */
|
||||
U32 VersionNameWhat; /* 40h */
|
||||
U8 VersionName[32]; /* 44h */
|
||||
U32 VendorNameWhat; /* 64h */
|
||||
U8 VendorName[32]; /* 68h */
|
||||
} MPI_FW_HEADER, MPI_POINTER PTR_MPI_FW_HEADER,
|
||||
MpiFwHeader_t, MPI_POINTER pMpiFwHeader_t;
|
||||
|
||||
#define MPI_FW_HEADER_WHAT_SIGNATURE (0x29232840)
|
||||
|
||||
/* defines for using the ProductId field */
|
||||
#define MPI_FW_HEADER_PID_TYPE_MASK (0xF000)
|
||||
#define MPI_FW_HEADER_PID_TYPE_SCSI (0x0000)
|
||||
#define MPI_FW_HEADER_PID_TYPE_FC (0x1000)
|
||||
#define MPI_FW_HEADER_PID_TYPE_SAS (0x2000)
|
||||
|
||||
#define MPI_FW_HEADER_SIGNATURE_0 (0x5AEAA55A)
|
||||
#define MPI_FW_HEADER_SIGNATURE_1 (0xA55AEAA5)
|
||||
#define MPI_FW_HEADER_SIGNATURE_2 (0x5AA55AEA)
|
||||
|
||||
#define MPI_FW_HEADER_PID_PROD_MASK (0x0F00)
|
||||
#define MPI_FW_HEADER_PID_PROD_INITIATOR_SCSI (0x0100)
|
||||
#define MPI_FW_HEADER_PID_PROD_TARGET_INITIATOR_SCSI (0x0200)
|
||||
#define MPI_FW_HEADER_PID_PROD_TARGET_SCSI (0x0300)
|
||||
#define MPI_FW_HEADER_PID_PROD_IM_SCSI (0x0400)
|
||||
#define MPI_FW_HEADER_PID_PROD_IS_SCSI (0x0500)
|
||||
#define MPI_FW_HEADER_PID_PROD_CTX_SCSI (0x0600)
|
||||
|
||||
#define MPI_FW_HEADER_PID_FAMILY_MASK (0x00FF)
|
||||
/* SCSI */
|
||||
#define MPI_FW_HEADER_PID_FAMILY_1030A0_SCSI (0x0001)
|
||||
#define MPI_FW_HEADER_PID_FAMILY_1030B0_SCSI (0x0002)
|
||||
#define MPI_FW_HEADER_PID_FAMILY_1030B1_SCSI (0x0003)
|
||||
#define MPI_FW_HEADER_PID_FAMILY_1030C0_SCSI (0x0004)
|
||||
#define MPI_FW_HEADER_PID_FAMILY_1020A0_SCSI (0x0005)
|
||||
#define MPI_FW_HEADER_PID_FAMILY_1020B0_SCSI (0x0006)
|
||||
#define MPI_FW_HEADER_PID_FAMILY_1020B1_SCSI (0x0007)
|
||||
#define MPI_FW_HEADER_PID_FAMILY_1020C0_SCSI (0x0008)
|
||||
#define MPI_FW_HEADER_PID_FAMILY_1035A0_SCSI (0x0009)
|
||||
#define MPI_FW_HEADER_PID_FAMILY_1035B0_SCSI (0x000A)
|
||||
#define MPI_FW_HEADER_PID_FAMILY_1030TA0_SCSI (0x000B)
|
||||
#define MPI_FW_HEADER_PID_FAMILY_1020TA0_SCSI (0x000C)
|
||||
/* Fibre Channel */
|
||||
#define MPI_FW_HEADER_PID_FAMILY_909_FC (0x0000)
|
||||
#define MPI_FW_HEADER_PID_FAMILY_919_FC (0x0001)
|
||||
#define MPI_FW_HEADER_PID_FAMILY_919X_FC (0x0002)
|
||||
#define MPI_FW_HEADER_PID_FAMILY_919XL_FC (0x0003)
|
||||
#define MPI_FW_HEADER_PID_FAMILY_949_FC (0x0004)
|
||||
#define MPI_FW_HEADER_PID_FAMILY_959_FC (0x0005)
|
||||
/* SAS */
|
||||
#define MPI_FW_HEADER_PID_FAMILY_1064_SAS (0x0001)
|
||||
|
||||
typedef struct _MPI_EXT_IMAGE_HEADER
|
||||
{
|
||||
U8 ImageType; /* 00h */
|
||||
U8 Reserved; /* 01h */
|
||||
U16 Reserved1; /* 02h */
|
||||
U32 Checksum; /* 04h */
|
||||
U32 ImageSize; /* 08h */
|
||||
U32 NextImageHeaderOffset; /* 0Ch */
|
||||
U32 LoadStartAddress; /* 10h */
|
||||
U32 Reserved2; /* 14h */
|
||||
} MPI_EXT_IMAGE_HEADER, MPI_POINTER PTR_MPI_EXT_IMAGE_HEADER,
|
||||
MpiExtImageHeader_t, MPI_POINTER pMpiExtImageHeader_t;
|
||||
|
||||
/* defines for the ImageType field */
|
||||
#define MPI_EXT_IMAGE_TYPE_UNSPECIFIED (0x00)
|
||||
#define MPI_EXT_IMAGE_TYPE_FW (0x01)
|
||||
#define MPI_EXT_IMAGE_TYPE_NVDATA (0x03)
|
||||
#define MPI_EXT_IMAGE_TYPE_BOOTLOADER (0x04)
|
||||
|
||||
#endif
|
||||
212
extra/linux-2.6.10/drivers/message/fusion/lsi/mpi_lan.h
Normal file
212
extra/linux-2.6.10/drivers/message/fusion/lsi/mpi_lan.h
Normal file
@@ -0,0 +1,212 @@
|
||||
/*
|
||||
* Copyright (c) 2000-2003 LSI Logic Corporation.
|
||||
*
|
||||
*
|
||||
* Name: mpi_lan.h
|
||||
* Title: MPI LAN messages and structures
|
||||
* Creation Date: June 30, 2000
|
||||
*
|
||||
* mpi_lan.h Version: 01.05.xx
|
||||
*
|
||||
* Version History
|
||||
* ---------------
|
||||
*
|
||||
* Date Version Description
|
||||
* -------- -------- ------------------------------------------------------
|
||||
* 05-08-00 00.10.01 Original release for 0.10 spec dated 4/26/2000.
|
||||
* 05-24-00 00.10.02 Added LANStatus field to _MSG_LAN_SEND_REPLY.
|
||||
* Added LANStatus field to _MSG_LAN_RECEIVE_POST_REPLY.
|
||||
* Moved ListCount field in _MSG_LAN_RECEIVE_POST_REPLY.
|
||||
* 06-06-00 01.00.01 Update version number for 1.0 release.
|
||||
* 06-12-00 01.00.02 Added MPI_ to BUCKETSTATUS_ definitions.
|
||||
* 06-22-00 01.00.03 Major changes to match new LAN definition in 1.0 spec.
|
||||
* 06-30-00 01.00.04 Added Context Reply definitions per revised proposal.
|
||||
* Changed transaction context usage to bucket/buffer.
|
||||
* 07-05-00 01.00.05 Removed LAN_RECEIVE_POST_BUCKET_CONTEXT_MASK definition
|
||||
* to lan private header file
|
||||
* 11-02-00 01.01.01 Original release for post 1.0 work
|
||||
* 02-20-01 01.01.02 Started using MPI_POINTER.
|
||||
* 03-27-01 01.01.03 Added structure offset comments.
|
||||
* 08-08-01 01.02.01 Original release for v1.2 work.
|
||||
* --------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#ifndef MPI_LAN_H
|
||||
#define MPI_LAN_H
|
||||
|
||||
|
||||
/******************************************************************************
|
||||
*
|
||||
* L A N M e s s a g e s
|
||||
*
|
||||
*******************************************************************************/
|
||||
|
||||
/* LANSend messages */
|
||||
|
||||
typedef struct _MSG_LAN_SEND_REQUEST
|
||||
{
|
||||
U16 Reserved; /* 00h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved2; /* 04h */
|
||||
U8 PortNumber; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
SGE_MPI_UNION SG_List[1]; /* 0Ch */
|
||||
} MSG_LAN_SEND_REQUEST, MPI_POINTER PTR_MSG_LAN_SEND_REQUEST,
|
||||
LANSendRequest_t, MPI_POINTER pLANSendRequest_t;
|
||||
|
||||
|
||||
typedef struct _MSG_LAN_SEND_REPLY
|
||||
{
|
||||
U16 Reserved; /* 00h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U8 Reserved2; /* 04h */
|
||||
U8 NumberOfContexts; /* 05h */
|
||||
U8 PortNumber; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U16 Reserved3; /* 0Ch */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
U32 BufferContext; /* 14h */
|
||||
} MSG_LAN_SEND_REPLY, MPI_POINTER PTR_MSG_LAN_SEND_REPLY,
|
||||
LANSendReply_t, MPI_POINTER pLANSendReply_t;
|
||||
|
||||
|
||||
/* LANReceivePost */
|
||||
|
||||
typedef struct _MSG_LAN_RECEIVE_POST_REQUEST
|
||||
{
|
||||
U16 Reserved; /* 00h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved2; /* 04h */
|
||||
U8 PortNumber; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U32 BucketCount; /* 0Ch */
|
||||
SGE_MPI_UNION SG_List[1]; /* 10h */
|
||||
} MSG_LAN_RECEIVE_POST_REQUEST, MPI_POINTER PTR_MSG_LAN_RECEIVE_POST_REQUEST,
|
||||
LANReceivePostRequest_t, MPI_POINTER pLANReceivePostRequest_t;
|
||||
|
||||
|
||||
typedef struct _MSG_LAN_RECEIVE_POST_REPLY
|
||||
{
|
||||
U16 Reserved; /* 00h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U8 Reserved2; /* 04h */
|
||||
U8 NumberOfContexts; /* 05h */
|
||||
U8 PortNumber; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U16 Reserved3; /* 0Ch */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
U32 BucketsRemaining; /* 14h */
|
||||
U32 PacketOffset; /* 18h */
|
||||
U32 PacketLength; /* 1Ch */
|
||||
U32 BucketContext[1]; /* 20h */
|
||||
} MSG_LAN_RECEIVE_POST_REPLY, MPI_POINTER PTR_MSG_LAN_RECEIVE_POST_REPLY,
|
||||
LANReceivePostReply_t, MPI_POINTER pLANReceivePostReply_t;
|
||||
|
||||
|
||||
/* LANReset */
|
||||
|
||||
typedef struct _MSG_LAN_RESET_REQUEST
|
||||
{
|
||||
U16 Reserved; /* 00h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved2; /* 04h */
|
||||
U8 PortNumber; /* 05h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
} MSG_LAN_RESET_REQUEST, MPI_POINTER PTR_MSG_LAN_RESET_REQUEST,
|
||||
LANResetRequest_t, MPI_POINTER pLANResetRequest_t;
|
||||
|
||||
|
||||
typedef struct _MSG_LAN_RESET_REPLY
|
||||
{
|
||||
U16 Reserved; /* 00h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved2; /* 04h */
|
||||
U8 PortNumber; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U16 Reserved3; /* 0Ch */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
} MSG_LAN_RESET_REPLY, MPI_POINTER PTR_MSG_LAN_RESET_REPLY,
|
||||
LANResetReply_t, MPI_POINTER pLANResetReply_t;
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* LAN Context Reply defines and macros */
|
||||
/****************************************************************************/
|
||||
|
||||
#define LAN_REPLY_PACKET_LENGTH_MASK (0x0000FFFF)
|
||||
#define LAN_REPLY_PACKET_LENGTH_SHIFT (0)
|
||||
#define LAN_REPLY_BUCKET_CONTEXT_MASK (0x07FF0000)
|
||||
#define LAN_REPLY_BUCKET_CONTEXT_SHIFT (16)
|
||||
#define LAN_REPLY_BUFFER_CONTEXT_MASK (0x07FFFFFF)
|
||||
#define LAN_REPLY_BUFFER_CONTEXT_SHIFT (0)
|
||||
#define LAN_REPLY_FORM_MASK (0x18000000)
|
||||
#define LAN_REPLY_FORM_RECEIVE_SINGLE (0x00)
|
||||
#define LAN_REPLY_FORM_RECEIVE_MULTIPLE (0x01)
|
||||
#define LAN_REPLY_FORM_SEND_SINGLE (0x02)
|
||||
#define LAN_REPLY_FORM_MESSAGE_CONTEXT (0x03)
|
||||
#define LAN_REPLY_FORM_SHIFT (27)
|
||||
|
||||
#define GET_LAN_PACKET_LENGTH(x) (((x) & LAN_REPLY_PACKET_LENGTH_MASK) \
|
||||
>> LAN_REPLY_PACKET_LENGTH_SHIFT)
|
||||
|
||||
#define SET_LAN_PACKET_LENGTH(x, lth) \
|
||||
((x) = ((x) & ~LAN_REPLY_PACKET_LENGTH_MASK) | \
|
||||
(((lth) << LAN_REPLY_PACKET_LENGTH_SHIFT) & \
|
||||
LAN_REPLY_PACKET_LENGTH_MASK))
|
||||
|
||||
#define GET_LAN_BUCKET_CONTEXT(x) (((x) & LAN_REPLY_BUCKET_CONTEXT_MASK) \
|
||||
>> LAN_REPLY_BUCKET_CONTEXT_SHIFT)
|
||||
|
||||
#define SET_LAN_BUCKET_CONTEXT(x, ctx) \
|
||||
((x) = ((x) & ~LAN_REPLY_BUCKET_CONTEXT_MASK) | \
|
||||
(((ctx) << LAN_REPLY_BUCKET_CONTEXT_SHIFT) & \
|
||||
LAN_REPLY_BUCKET_CONTEXT_MASK))
|
||||
|
||||
#define GET_LAN_BUFFER_CONTEXT(x) (((x) & LAN_REPLY_BUFFER_CONTEXT_MASK) \
|
||||
>> LAN_REPLY_BUFFER_CONTEXT_SHIFT)
|
||||
|
||||
#define SET_LAN_BUFFER_CONTEXT(x, ctx) \
|
||||
((x) = ((x) & ~LAN_REPLY_BUFFER_CONTEXT_MASK) | \
|
||||
(((ctx) << LAN_REPLY_BUFFER_CONTEXT_SHIFT) & \
|
||||
LAN_REPLY_BUFFER_CONTEXT_MASK))
|
||||
|
||||
#define GET_LAN_FORM(x) (((x) & LAN_REPLY_FORM_MASK) \
|
||||
>> LAN_REPLY_FORM_SHIFT)
|
||||
|
||||
#define SET_LAN_FORM(x, frm) \
|
||||
((x) = ((x) & ~LAN_REPLY_FORM_MASK) | \
|
||||
(((frm) << LAN_REPLY_FORM_SHIFT) & \
|
||||
LAN_REPLY_FORM_MASK))
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* LAN Current Device State defines */
|
||||
/****************************************************************************/
|
||||
|
||||
#define MPI_LAN_DEVICE_STATE_RESET (0x00)
|
||||
#define MPI_LAN_DEVICE_STATE_OPERATIONAL (0x01)
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* LAN Loopback defines */
|
||||
/****************************************************************************/
|
||||
|
||||
#define MPI_LAN_TX_MODES_ENABLE_LOOPBACK_SUPPRESSION (0x01)
|
||||
|
||||
#endif
|
||||
|
||||
232
extra/linux-2.6.10/drivers/message/fusion/lsi/mpi_raid.h
Normal file
232
extra/linux-2.6.10/drivers/message/fusion/lsi/mpi_raid.h
Normal file
@@ -0,0 +1,232 @@
|
||||
/*
|
||||
* Copyright (c) 2001-2003 LSI Logic Corporation.
|
||||
*
|
||||
*
|
||||
* Name: mpi_raid.h
|
||||
* Title: MPI RAID message and structures
|
||||
* Creation Date: February 27, 2001
|
||||
*
|
||||
* mpi_raid.h Version: 01.05.xx
|
||||
*
|
||||
* Version History
|
||||
* ---------------
|
||||
*
|
||||
* Date Version Description
|
||||
* -------- -------- ------------------------------------------------------
|
||||
* 02-27-01 01.01.01 Original release for this file.
|
||||
* 03-27-01 01.01.02 Added structure offset comments.
|
||||
* 08-08-01 01.02.01 Original release for v1.2 work.
|
||||
* 09-28-01 01.02.02 Major rework for MPI v1.2 Integrated RAID changes.
|
||||
* 10-04-01 01.02.03 Added ActionData defines for
|
||||
* MPI_RAID_ACTION_DELETE_VOLUME action.
|
||||
* 11-01-01 01.02.04 Added define for MPI_RAID_ACTION_ADATA_DO_NOT_SYNC.
|
||||
* 03-14-02 01.02.05 Added define for MPI_RAID_ACTION_ADATA_LOW_LEVEL_INIT.
|
||||
* 05-07-02 01.02.06 Added define for MPI_RAID_ACTION_ACTIVATE_VOLUME,
|
||||
* MPI_RAID_ACTION_INACTIVATE_VOLUME, and
|
||||
* MPI_RAID_ACTION_ADATA_INACTIVATE_ALL.
|
||||
* 07-12-02 01.02.07 Added structures for Mailbox request and reply.
|
||||
* 11-15-02 01.02.08 Added missing MsgContext field to MSG_MAILBOX_REQUEST.
|
||||
* 04-01-03 01.02.09 New action data option flag for
|
||||
* MPI_RAID_ACTION_DELETE_VOLUME.
|
||||
* --------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#ifndef MPI_RAID_H
|
||||
#define MPI_RAID_H
|
||||
|
||||
|
||||
/******************************************************************************
|
||||
*
|
||||
* R A I D M e s s a g e s
|
||||
*
|
||||
*******************************************************************************/
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* RAID Action Request */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_RAID_ACTION
|
||||
{
|
||||
U8 Action; /* 00h */
|
||||
U8 Reserved1; /* 01h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U8 VolumeID; /* 04h */
|
||||
U8 VolumeBus; /* 05h */
|
||||
U8 PhysDiskNum; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U32 Reserved2; /* 0Ch */
|
||||
U32 ActionDataWord; /* 10h */
|
||||
SGE_SIMPLE_UNION ActionDataSGE; /* 14h */
|
||||
} MSG_RAID_ACTION_REQUEST, MPI_POINTER PTR_MSG_RAID_ACTION_REQUEST,
|
||||
MpiRaidActionRequest_t , MPI_POINTER pMpiRaidActionRequest_t;
|
||||
|
||||
|
||||
/* RAID Action request Action values */
|
||||
|
||||
#define MPI_RAID_ACTION_STATUS (0x00)
|
||||
#define MPI_RAID_ACTION_INDICATOR_STRUCT (0x01)
|
||||
#define MPI_RAID_ACTION_CREATE_VOLUME (0x02)
|
||||
#define MPI_RAID_ACTION_DELETE_VOLUME (0x03)
|
||||
#define MPI_RAID_ACTION_DISABLE_VOLUME (0x04)
|
||||
#define MPI_RAID_ACTION_ENABLE_VOLUME (0x05)
|
||||
#define MPI_RAID_ACTION_QUIESCE_PHYS_IO (0x06)
|
||||
#define MPI_RAID_ACTION_ENABLE_PHYS_IO (0x07)
|
||||
#define MPI_RAID_ACTION_CHANGE_VOLUME_SETTINGS (0x08)
|
||||
#define MPI_RAID_ACTION_PHYSDISK_OFFLINE (0x0A)
|
||||
#define MPI_RAID_ACTION_PHYSDISK_ONLINE (0x0B)
|
||||
#define MPI_RAID_ACTION_CHANGE_PHYSDISK_SETTINGS (0x0C)
|
||||
#define MPI_RAID_ACTION_CREATE_PHYSDISK (0x0D)
|
||||
#define MPI_RAID_ACTION_DELETE_PHYSDISK (0x0E)
|
||||
#define MPI_RAID_ACTION_FAIL_PHYSDISK (0x0F)
|
||||
#define MPI_RAID_ACTION_REPLACE_PHYSDISK (0x10)
|
||||
#define MPI_RAID_ACTION_ACTIVATE_VOLUME (0x11)
|
||||
#define MPI_RAID_ACTION_INACTIVATE_VOLUME (0x12)
|
||||
|
||||
/* ActionDataWord defines for use with MPI_RAID_ACTION_CREATE_VOLUME action */
|
||||
#define MPI_RAID_ACTION_ADATA_DO_NOT_SYNC (0x00000001)
|
||||
#define MPI_RAID_ACTION_ADATA_LOW_LEVEL_INIT (0x00000002)
|
||||
|
||||
/* ActionDataWord defines for use with MPI_RAID_ACTION_DELETE_VOLUME action */
|
||||
#define MPI_RAID_ACTION_ADATA_KEEP_PHYS_DISKS (0x00000000)
|
||||
#define MPI_RAID_ACTION_ADATA_DEL_PHYS_DISKS (0x00000001)
|
||||
|
||||
#define MPI_RAID_ACTION_ADATA_KEEP_LBA0 (0x00000000)
|
||||
#define MPI_RAID_ACTION_ADATA_ZERO_LBA0 (0x00000002)
|
||||
|
||||
/* ActionDataWord defines for use with MPI_RAID_ACTION_ACTIVATE_VOLUME action */
|
||||
#define MPI_RAID_ACTION_ADATA_INACTIVATE_ALL (0x00000001)
|
||||
|
||||
|
||||
/* RAID Action reply message */
|
||||
|
||||
typedef struct _MSG_RAID_ACTION_REPLY
|
||||
{
|
||||
U8 Action; /* 00h */
|
||||
U8 Reserved; /* 01h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U8 VolumeID; /* 04h */
|
||||
U8 VolumeBus; /* 05h */
|
||||
U8 PhysDiskNum; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U16 ActionStatus; /* 0Ch */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
U32 VolumeStatus; /* 14h */
|
||||
U32 ActionData; /* 18h */
|
||||
} MSG_RAID_ACTION_REPLY, MPI_POINTER PTR_MSG_RAID_ACTION_REPLY,
|
||||
MpiRaidActionReply_t, MPI_POINTER pMpiRaidActionReply_t;
|
||||
|
||||
|
||||
/* RAID Volume reply ActionStatus values */
|
||||
|
||||
#define MPI_RAID_ACTION_ASTATUS_SUCCESS (0x0000)
|
||||
#define MPI_RAID_ACTION_ASTATUS_INVALID_ACTION (0x0001)
|
||||
#define MPI_RAID_ACTION_ASTATUS_FAILURE (0x0002)
|
||||
#define MPI_RAID_ACTION_ASTATUS_IN_PROGRESS (0x0003)
|
||||
|
||||
|
||||
/* RAID Volume reply RAID Volume Indicator structure */
|
||||
|
||||
typedef struct _MPI_RAID_VOL_INDICATOR
|
||||
{
|
||||
U64 TotalBlocks; /* 00h */
|
||||
U64 BlocksRemaining; /* 08h */
|
||||
} MPI_RAID_VOL_INDICATOR, MPI_POINTER PTR_MPI_RAID_VOL_INDICATOR,
|
||||
MpiRaidVolIndicator_t, MPI_POINTER pMpiRaidVolIndicator_t;
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* SCSI IO RAID Passthrough Request */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_SCSI_IO_RAID_PT_REQUEST
|
||||
{
|
||||
U8 PhysDiskNum; /* 00h */
|
||||
U8 Reserved1; /* 01h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U8 CDBLength; /* 04h */
|
||||
U8 SenseBufferLength; /* 05h */
|
||||
U8 Reserved2; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U8 LUN[8]; /* 0Ch */
|
||||
U32 Control; /* 14h */
|
||||
U8 CDB[16]; /* 18h */
|
||||
U32 DataLength; /* 28h */
|
||||
U32 SenseBufferLowAddr; /* 2Ch */
|
||||
SGE_IO_UNION SGL; /* 30h */
|
||||
} MSG_SCSI_IO_RAID_PT_REQUEST, MPI_POINTER PTR_MSG_SCSI_IO_RAID_PT_REQUEST,
|
||||
SCSIIORaidPassthroughRequest_t, MPI_POINTER pSCSIIORaidPassthroughRequest_t;
|
||||
|
||||
|
||||
/* SCSI IO RAID Passthrough reply structure */
|
||||
|
||||
typedef struct _MSG_SCSI_IO_RAID_PT_REPLY
|
||||
{
|
||||
U8 PhysDiskNum; /* 00h */
|
||||
U8 Reserved1; /* 01h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U8 CDBLength; /* 04h */
|
||||
U8 SenseBufferLength; /* 05h */
|
||||
U8 Reserved2; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U8 SCSIStatus; /* 0Ch */
|
||||
U8 SCSIState; /* 0Dh */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
U32 TransferCount; /* 14h */
|
||||
U32 SenseCount; /* 18h */
|
||||
U32 ResponseInfo; /* 1Ch */
|
||||
} MSG_SCSI_IO_RAID_PT_REPLY, MPI_POINTER PTR_MSG_SCSI_IO_RAID_PT_REPLY,
|
||||
SCSIIORaidPassthroughReply_t, MPI_POINTER pSCSIIORaidPassthroughReply_t;
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* Mailbox reqeust structure */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_MAILBOX_REQUEST
|
||||
{
|
||||
U16 Reserved1;
|
||||
U8 ChainOffset;
|
||||
U8 Function;
|
||||
U16 Reserved2;
|
||||
U8 Reserved3;
|
||||
U8 MsgFlags;
|
||||
U32 MsgContext;
|
||||
U8 Command[10];
|
||||
U16 Reserved4;
|
||||
SGE_IO_UNION SGL;
|
||||
} MSG_MAILBOX_REQUEST, MPI_POINTER PTR_MSG_MAILBOX_REQUEST,
|
||||
MailboxRequest_t, MPI_POINTER pMailboxRequest_t;
|
||||
|
||||
|
||||
/* Mailbox reply structure */
|
||||
typedef struct _MSG_MAILBOX_REPLY
|
||||
{
|
||||
U16 Reserved1; /* 00h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved2; /* 04h */
|
||||
U8 Reserved3; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U16 MailboxStatus; /* 0Ch */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
U32 Reserved4; /* 14h */
|
||||
} MSG_MAILBOX_REPLY, MPI_POINTER PTR_MSG_MAILBOX_REPLY,
|
||||
MailboxReply_t, MPI_POINTER pMailboxReply_t;
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
181
extra/linux-2.6.10/drivers/message/fusion/lsi/mpi_sas.h
Normal file
181
extra/linux-2.6.10/drivers/message/fusion/lsi/mpi_sas.h
Normal file
@@ -0,0 +1,181 @@
|
||||
/*
|
||||
* Copyright (c) 2003 LSI Logic Corporation.
|
||||
*
|
||||
*
|
||||
* Name: mpi_sas.h
|
||||
* Title: MPI Serial Attached SCSI structures and definitions
|
||||
* Creation Date: April 23, 2003
|
||||
*
|
||||
* mpi_sas.h Version: 01.05.xx
|
||||
*
|
||||
* Version History
|
||||
* ---------------
|
||||
*
|
||||
* Date Version Description
|
||||
* -------- -------- ------------------------------------------------------
|
||||
* xx-yy-zz 01.05.01 Original release.
|
||||
* --------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#ifndef MPI_SAS_H
|
||||
#define MPI_SAS_H
|
||||
|
||||
/*****************************************************************************
|
||||
*
|
||||
* S e r i a l A t t a c h e d S C S I M e s s a g e s
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
/****************************************************************************/
|
||||
/* Serial Management Protocol Passthrough Request */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_SMP_PASSTHROUGH_REQUEST
|
||||
{
|
||||
U8 PassthroughFlags; /* 00h */
|
||||
U8 PhysicalPort; /* 01h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 RequestDataLength; /* 04h */
|
||||
U8 ConnectionRate; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U32 Reserved1; /* 0Ch */
|
||||
U64 SASAddress; /* 10h */
|
||||
U32 Reserved2; /* 18h */
|
||||
U32 Reserved3; /* 1Ch */
|
||||
SGE_SIMPLE_UNION SGL; /* 20h */
|
||||
} MSG_SMP_PASSTHROUGH_REQUEST, MPI_POINTER PTR_MSG_SMP_PASSTHROUGH_REQUEST,
|
||||
SmpPassthroughRequest_t, MPI_POINTER pSmpPassthroughRequest_t;
|
||||
|
||||
#define MPI_SMP_PT_REQ_PT_FLAGS_IMMEDIATE (0x80)
|
||||
|
||||
#define MPI_SMP_PT_REQ_CONNECT_RATE_NEGOTIATED (0x00)
|
||||
#define MPI_SMP_PT_REQ_CONNECT_RATE_1_5 (0x08)
|
||||
#define MPI_SMP_PT_REQ_CONNECT_RATE_3_0 (0x09)
|
||||
|
||||
|
||||
/* Serial Management Protocol Passthrough Reply */
|
||||
typedef struct _MSG_SMP_PASSTHROUGH_REPLY
|
||||
{
|
||||
U8 PassthroughFlags; /* 00h */
|
||||
U8 PhysicalPort; /* 01h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 ResponseDataLength; /* 04h */
|
||||
U8 Reserved1; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U8 Reserved2; /* 0Ch */
|
||||
U8 SASStatus; /* 0Dh */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
U32 Reserved3; /* 14h */
|
||||
U8 ResponseData[4]; /* 18h */
|
||||
} MSG_SMP_PASSTHROUGH_REPLY, MPI_POINTER PTR_MSG_SMP_PASSTHROUGH_REPLY,
|
||||
SmpPassthroughReply_t, MPI_POINTER pSmpPassthroughReply_t;
|
||||
|
||||
#define MPI_SMP_PT_REPLY_PT_FLAGS_IMMEDIATE (0x80)
|
||||
|
||||
/* values for the SASStatus field */
|
||||
#define MPI_SASSTATUS_SUCCESS (0x00)
|
||||
#define MPI_SASSTATUS_UNKNOWN_ERROR (0x01)
|
||||
#define MPI_SASSTATUS_INVALID_FRAME (0x02)
|
||||
#define MPI_SASSTATUS_UTC_BAD_DEST (0x03)
|
||||
#define MPI_SASSTATUS_UTC_BREAK_RECEIVED (0x04)
|
||||
#define MPI_SASSTATUS_UTC_CONNECT_RATE_NOT_SUPPORTED (0x05)
|
||||
#define MPI_SASSTATUS_UTC_PORT_LAYER_REQUEST (0x06)
|
||||
#define MPI_SASSTATUS_UTC_PROTOCOL_NOT_SUPPORTED (0x07)
|
||||
#define MPI_SASSTATUS_UTC_STP_RESOURCES_BUSY (0x08)
|
||||
#define MPI_SASSTATUS_UTC_WRONG_DESTINATION (0x09)
|
||||
#define MPI_SASSTATUS_SHORT_INFORMATION_UNIT (0x0A)
|
||||
#define MPI_SASSTATUS_LONG_INFORMATION_UNIT (0x0B)
|
||||
#define MPI_SASSTATUS_XFER_RDY_INCORRECT_WRITE_DATA (0x0C)
|
||||
#define MPI_SASSTATUS_XFER_RDY_REQUEST_OFFSET_ERROR (0x0D)
|
||||
#define MPI_SASSTATUS_XFER_RDY_NOT_EXPECTED (0x0E)
|
||||
#define MPI_SASSTATUS_DATA_INCORRECT_DATA_LENGTH (0x0F)
|
||||
#define MPI_SASSTATUS_DATA_TOO_MUCH_READ_DATA (0x10)
|
||||
#define MPI_SASSTATUS_DATA_OFFSET_ERROR (0x11)
|
||||
#define MPI_SASSTATUS_SDSF_NAK_RECEIVED (0x12)
|
||||
#define MPI_SASSTATUS_SDSF_CONNECTION_FAILED (0x13)
|
||||
#define MPI_SASSTATUS_INITIATOR_RESPONSE_TIMEOUT (0x14)
|
||||
|
||||
|
||||
/*
|
||||
* Values for the SAS DeviceInfo field used in SAS Device Status Change Event
|
||||
* data and SAS IO Unit Configuration pages.
|
||||
*/
|
||||
#define MPI_SAS_DEVICE_INFO_ATAPI_DEVICE (0x00002000)
|
||||
#define MPI_SAS_DEVICE_INFO_LSI_DEVICE (0x00001000)
|
||||
#define MPI_SAS_DEVICE_INFO_DIRECT_ATTACH (0x00000800)
|
||||
#define MPI_SAS_DEVICE_INFO_SSP_TARGET (0x00000400)
|
||||
#define MPI_SAS_DEVICE_INFO_STP_TARGET (0x00000200)
|
||||
#define MPI_SAS_DEVICE_INFO_SMP_TARGET (0x00000100)
|
||||
#define MPI_SAS_DEVICE_INFO_SATA_DEVICE (0x00000080)
|
||||
#define MPI_SAS_DEVICE_INFO_SSP_INITIATOR (0x00000040)
|
||||
#define MPI_SAS_DEVICE_INFO_STP_INITIATOR (0x00000020)
|
||||
#define MPI_SAS_DEVICE_INFO_SMP_INITIATOR (0x00000010)
|
||||
#define MPI_SAS_DEVICE_INFO_SATA_HOST (0x00000008)
|
||||
|
||||
#define MPI_SAS_DEVICE_INFO_MASK_DEVICE_TYPE (0x00000007)
|
||||
#define MPI_SAS_DEVICE_INFO_NO_DEVICE (0x00000000)
|
||||
#define MPI_SAS_DEVICE_INFO_END_DEVICE (0x00000001)
|
||||
#define MPI_SAS_DEVICE_INFO_EDGE_EXPANDER (0x00000002)
|
||||
#define MPI_SAS_DEVICE_INFO_FANOUT_EXPANDER (0x00000003)
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* SAS IO Unit Control Request */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_SAS_IOUNIT_CONTROL_REQUEST
|
||||
{
|
||||
U8 Operation; /* 00h */
|
||||
U8 Reserved1; /* 01h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved2; /* 04h */
|
||||
U8 Reserved3; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U8 TargetID; /* 0Ch */
|
||||
U8 Bus; /* 0Dh */
|
||||
U8 PhyNum; /* 0Eh */
|
||||
U8 Reserved4; /* 0Fh */
|
||||
U32 Reserved5; /* 10h */
|
||||
U64 SASAddress; /* 14h */
|
||||
U32 Reserved6; /* 1Ch */
|
||||
} MSG_SAS_IOUNIT_CONTROL_REQUEST, MPI_POINTER PTR_MSG_SAS_IOUNIT_CONTROL_REQUEST,
|
||||
SasIoUnitControlRequest_t, MPI_POINTER pSasIoUnitControlRequest_t;
|
||||
|
||||
/* values for the ... field */
|
||||
#define MPI_SAS_OP_CLEAR_NOT_PRESENT (0x01)
|
||||
#define MPI_SAS_OP_CLEAR_ALL (0x02)
|
||||
#define MPI_SAS_OP_MAP (0x03)
|
||||
#define MPI_SAS_OP_MOVE (0x04)
|
||||
#define MPI_SAS_OP_CLEAR (0x05)
|
||||
#define MPI_SAS_OP_PHY_LINK_RESET (0x06)
|
||||
#define MPI_SAS_OP_PHY_HARD_RESET (0x07)
|
||||
#define MPI_SAS_OP_PHY_CLEAR_ERROR_LOG (0x08)
|
||||
|
||||
|
||||
/* SAS IO Unit Control Reply */
|
||||
typedef struct _MSG_SAS_IOUNIT_CONTROL_REPLY
|
||||
{
|
||||
U8 Operation; /* 00h */
|
||||
U8 Reserved1; /* 01h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved2; /* 04h */
|
||||
U8 Reserved3; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U16 Reserved4; /* 0Ch */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
} MSG_SAS_IOUNIT_CONTROL_REPLY, MPI_POINTER PTR_MSG_SAS_IOUNIT_CONTROL_REPLY,
|
||||
SasIoUnitControlReply_t, MPI_POINTER pSasIoUnitControlReply_t;
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
435
extra/linux-2.6.10/drivers/message/fusion/lsi/mpi_targ.h
Normal file
435
extra/linux-2.6.10/drivers/message/fusion/lsi/mpi_targ.h
Normal file
@@ -0,0 +1,435 @@
|
||||
/*
|
||||
* Copyright (c) 2000-2003 LSI Logic Corporation.
|
||||
*
|
||||
*
|
||||
* Name: mpi_targ.h
|
||||
* Title: MPI Target mode messages and structures
|
||||
* Creation Date: June 22, 2000
|
||||
*
|
||||
* mpi_targ.h Version: 01.05.xx
|
||||
*
|
||||
* Version History
|
||||
* ---------------
|
||||
*
|
||||
* Date Version Description
|
||||
* -------- -------- ------------------------------------------------------
|
||||
* 05-08-00 00.10.01 Original release for 0.10 spec dated 4/26/2000.
|
||||
* 06-06-00 01.00.01 Update version number for 1.0 release.
|
||||
* 06-22-00 01.00.02 Added _MSG_TARGET_CMD_BUFFER_POST_REPLY structure.
|
||||
* Corrected DECSRIPTOR typo to DESCRIPTOR.
|
||||
* 11-02-00 01.01.01 Original release for post 1.0 work
|
||||
* Modified target mode to use IoIndex instead of
|
||||
* HostIndex and IocIndex. Added Alias.
|
||||
* 01-09-01 01.01.02 Added defines for TARGET_ASSIST_FLAGS_REPOST_CMD_BUFFER
|
||||
* and TARGET_STATUS_SEND_FLAGS_REPOST_CMD_BUFFER.
|
||||
* 02-20-01 01.01.03 Started using MPI_POINTER.
|
||||
* Added structures for MPI_TARGET_SCSI_SPI_CMD_BUFFER and
|
||||
* MPI_TARGET_FCP_CMD_BUFFER.
|
||||
* 03-27-01 01.01.04 Added structure offset comments.
|
||||
* 08-08-01 01.02.01 Original release for v1.2 work.
|
||||
* 09-28-01 01.02.02 Added structure for MPI_TARGET_SCSI_SPI_STATUS_IU.
|
||||
* Added PriorityReason field to some replies and
|
||||
* defined more PriorityReason codes.
|
||||
* Added some defines for to support previous version
|
||||
* of MPI.
|
||||
* 10-04-01 01.02.03 Added PriorityReason to MSG_TARGET_ERROR_REPLY.
|
||||
* 11-01-01 01.02.04 Added define for TARGET_STATUS_SEND_FLAGS_HIGH_PRIORITY.
|
||||
* 03-14-02 01.02.05 Modified MPI_TARGET_FCP_RSP_BUFFER to get the proper
|
||||
* byte ordering.
|
||||
* 05-31-02 01.02.06 Modified TARGET_MODE_REPLY_ALIAS_MASK to only include
|
||||
* one bit.
|
||||
* Added AliasIndex field to MPI_TARGET_FCP_CMD_BUFFER.
|
||||
* 09-16-02 01.02.07 Added flags for confirmed completion.
|
||||
* Added PRIORITY_REASON_TARGET_BUSY.
|
||||
* 11-15-02 01.02.08 Added AliasID field to MPI_TARGET_SCSI_SPI_CMD_BUFFER.
|
||||
* 04-01-03 01.02.09 Added OptionalOxid field to MPI_TARGET_FCP_CMD_BUFFER.
|
||||
* --------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#ifndef MPI_TARG_H
|
||||
#define MPI_TARG_H
|
||||
|
||||
|
||||
/******************************************************************************
|
||||
*
|
||||
* S C S I T a r g e t M e s s a g e s
|
||||
*
|
||||
*******************************************************************************/
|
||||
|
||||
typedef struct _CMD_BUFFER_DESCRIPTOR
|
||||
{
|
||||
U16 IoIndex; /* 00h */
|
||||
U16 Reserved; /* 02h */
|
||||
union /* 04h */
|
||||
{
|
||||
U32 PhysicalAddress32;
|
||||
U64 PhysicalAddress64;
|
||||
} u;
|
||||
} CMD_BUFFER_DESCRIPTOR, MPI_POINTER PTR_CMD_BUFFER_DESCRIPTOR,
|
||||
CmdBufferDescriptor_t, MPI_POINTER pCmdBufferDescriptor_t;
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* Target Command Buffer Post Request */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_TARGET_CMD_BUFFER_POST_REQUEST
|
||||
{
|
||||
U8 BufferPostFlags; /* 00h */
|
||||
U8 BufferCount; /* 01h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U8 BufferLength; /* 04h */
|
||||
U8 Reserved; /* 05h */
|
||||
U8 Reserved1; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
CMD_BUFFER_DESCRIPTOR Buffer[1]; /* 0Ch */
|
||||
} MSG_TARGET_CMD_BUFFER_POST_REQUEST, MPI_POINTER PTR_MSG_TARGET_CMD_BUFFER_POST_REQUEST,
|
||||
TargetCmdBufferPostRequest_t, MPI_POINTER pTargetCmdBufferPostRequest_t;
|
||||
|
||||
#define CMD_BUFFER_POST_FLAGS_PORT_MASK (0x01)
|
||||
#define CMD_BUFFER_POST_FLAGS_ADDR_MODE_MASK (0x80)
|
||||
#define CMD_BUFFER_POST_FLAGS_ADDR_MODE_32 (0)
|
||||
#define CMD_BUFFER_POST_FLAGS_ADDR_MODE_64 (1)
|
||||
#define CMD_BUFFER_POST_FLAGS_64_BIT_ADDR (0x80)
|
||||
|
||||
#define CMD_BUFFER_POST_IO_INDEX_MASK (0x00003FFF)
|
||||
#define CMD_BUFFER_POST_IO_INDEX_MASK_0100 (0x000003FF) /* obsolete */
|
||||
|
||||
|
||||
typedef struct _MSG_TARGET_CMD_BUFFER_POST_REPLY
|
||||
{
|
||||
U8 BufferPostFlags; /* 00h */
|
||||
U8 BufferCount; /* 01h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U8 BufferLength; /* 04h */
|
||||
U8 Reserved; /* 05h */
|
||||
U8 Reserved1; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U16 Reserved2; /* 0Ch */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
} MSG_TARGET_CMD_BUFFER_POST_REPLY, MPI_POINTER PTR_MSG_TARGET_CMD_BUFFER_POST_REPLY,
|
||||
TargetCmdBufferPostReply_t, MPI_POINTER pTargetCmdBufferPostReply_t;
|
||||
|
||||
/* the following structure is obsolete as of MPI v1.2 */
|
||||
typedef struct _MSG_PRIORITY_CMD_RECEIVED_REPLY
|
||||
{
|
||||
U16 Reserved; /* 00h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved1; /* 04h */
|
||||
U8 Reserved2; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U8 PriorityReason; /* 0Ch */
|
||||
U8 Reserved3; /* 0Dh */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
U32 ReplyWord; /* 14h */
|
||||
} MSG_PRIORITY_CMD_RECEIVED_REPLY, MPI_POINTER PTR_MSG_PRIORITY_CMD_RECEIVED_REPLY,
|
||||
PriorityCommandReceivedReply_t, MPI_POINTER pPriorityCommandReceivedReply_t;
|
||||
|
||||
#define PRIORITY_REASON_NO_DISCONNECT (0x00)
|
||||
#define PRIORITY_REASON_SCSI_TASK_MANAGEMENT (0x01)
|
||||
#define PRIORITY_REASON_CMD_PARITY_ERR (0x02)
|
||||
#define PRIORITY_REASON_MSG_OUT_PARITY_ERR (0x03)
|
||||
#define PRIORITY_REASON_LQ_CRC_ERR (0x04)
|
||||
#define PRIORITY_REASON_CMD_CRC_ERR (0x05)
|
||||
#define PRIORITY_REASON_PROTOCOL_ERR (0x06)
|
||||
#define PRIORITY_REASON_DATA_OUT_PARITY_ERR (0x07)
|
||||
#define PRIORITY_REASON_DATA_OUT_CRC_ERR (0x08)
|
||||
#define PRIORITY_REASON_TARGET_BUSY (0x09)
|
||||
#define PRIORITY_REASON_UNKNOWN (0xFF)
|
||||
|
||||
|
||||
typedef struct _MSG_TARGET_CMD_BUFFER_POST_ERROR_REPLY
|
||||
{
|
||||
U16 Reserved; /* 00h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved1; /* 04h */
|
||||
U8 Reserved2; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U8 PriorityReason; /* 0Ch */
|
||||
U8 Reserved3; /* 0Dh */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
U32 ReplyWord; /* 14h */
|
||||
} MSG_TARGET_CMD_BUFFER_POST_ERROR_REPLY,
|
||||
MPI_POINTER PTR_MSG_TARGET_CMD_BUFFER_POST_ERROR_REPLY,
|
||||
TargetCmdBufferPostErrorReply_t, MPI_POINTER pTargetCmdBufferPostErrorReply_t;
|
||||
|
||||
|
||||
typedef struct _MPI_TARGET_FCP_CMD_BUFFER
|
||||
{
|
||||
U8 FcpLun[8]; /* 00h */
|
||||
U8 FcpCntl[4]; /* 08h */
|
||||
U8 FcpCdb[16]; /* 0Ch */
|
||||
U32 FcpDl; /* 1Ch */
|
||||
U8 AliasIndex; /* 20h */
|
||||
U8 Reserved1; /* 21h */
|
||||
U16 OptionalOxid; /* 22h */
|
||||
} MPI_TARGET_FCP_CMD_BUFFER, MPI_POINTER PTR_MPI_TARGET_FCP_CMD_BUFFER,
|
||||
MpiTargetFcpCmdBuffer, MPI_POINTER pMpiTargetFcpCmdBuffer;
|
||||
|
||||
|
||||
typedef struct _MPI_TARGET_SCSI_SPI_CMD_BUFFER
|
||||
{
|
||||
/* SPI L_Q information unit */
|
||||
U8 L_QType; /* 00h */
|
||||
U8 Reserved; /* 01h */
|
||||
U16 Tag; /* 02h */
|
||||
U8 LogicalUnitNumber[8]; /* 04h */
|
||||
U32 DataLength; /* 0Ch */
|
||||
/* SPI command information unit */
|
||||
U8 ReservedFirstByteOfCommandIU; /* 10h */
|
||||
U8 TaskAttribute; /* 11h */
|
||||
U8 TaskManagementFlags; /* 12h */
|
||||
U8 AdditionalCDBLength; /* 13h */
|
||||
U8 CDB[16]; /* 14h */
|
||||
/* Alias ID */
|
||||
U8 AliasID; /* 24h */
|
||||
U8 Reserved1; /* 25h */
|
||||
U16 Reserved2; /* 26h */
|
||||
} MPI_TARGET_SCSI_SPI_CMD_BUFFER,
|
||||
MPI_POINTER PTR_MPI_TARGET_SCSI_SPI_CMD_BUFFER,
|
||||
MpiTargetScsiSpiCmdBuffer, MPI_POINTER pMpiTargetScsiSpiCmdBuffer;
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* Target Assist Request */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_TARGET_ASSIST_REQUEST
|
||||
{
|
||||
U8 StatusCode; /* 00h */
|
||||
U8 TargetAssistFlags; /* 01h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 QueueTag; /* 04h */
|
||||
U8 Reserved; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U32 ReplyWord; /* 0Ch */
|
||||
U8 LUN[8]; /* 10h */
|
||||
U32 RelativeOffset; /* 18h */
|
||||
U32 DataLength; /* 1Ch */
|
||||
SGE_IO_UNION SGL[1]; /* 20h */
|
||||
} MSG_TARGET_ASSIST_REQUEST, MPI_POINTER PTR_MSG_TARGET_ASSIST_REQUEST,
|
||||
TargetAssistRequest_t, MPI_POINTER pTargetAssistRequest_t;
|
||||
|
||||
#define TARGET_ASSIST_FLAGS_DATA_DIRECTION (0x01)
|
||||
#define TARGET_ASSIST_FLAGS_AUTO_STATUS (0x02)
|
||||
#define TARGET_ASSIST_FLAGS_HIGH_PRIORITY (0x04)
|
||||
#define TARGET_ASSIST_FLAGS_CONFIRMED (0x08)
|
||||
#define TARGET_ASSIST_FLAGS_REPOST_CMD_BUFFER (0x80)
|
||||
|
||||
|
||||
typedef struct _MSG_TARGET_ERROR_REPLY
|
||||
{
|
||||
U16 Reserved; /* 00h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved1; /* 04h */
|
||||
U8 Reserved2; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U8 PriorityReason; /* 0Ch */
|
||||
U8 Reserved3; /* 0Dh */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
U32 ReplyWord; /* 14h */
|
||||
U32 TransferCount; /* 18h */
|
||||
} MSG_TARGET_ERROR_REPLY, MPI_POINTER PTR_MSG_TARGET_ERROR_REPLY,
|
||||
TargetErrorReply_t, MPI_POINTER pTargetErrorReply_t;
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* Target Status Send Request */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_TARGET_STATUS_SEND_REQUEST
|
||||
{
|
||||
U8 StatusCode; /* 00h */
|
||||
U8 StatusFlags; /* 01h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 QueueTag; /* 04h */
|
||||
U8 Reserved; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U32 ReplyWord; /* 0Ch */
|
||||
U8 LUN[8]; /* 10h */
|
||||
SGE_SIMPLE_UNION StatusDataSGE; /* 18h */
|
||||
} MSG_TARGET_STATUS_SEND_REQUEST, MPI_POINTER PTR_MSG_TARGET_STATUS_SEND_REQUEST,
|
||||
TargetStatusSendRequest_t, MPI_POINTER pTargetStatusSendRequest_t;
|
||||
|
||||
#define TARGET_STATUS_SEND_FLAGS_AUTO_GOOD_STATUS (0x01)
|
||||
#define TARGET_STATUS_SEND_FLAGS_HIGH_PRIORITY (0x04)
|
||||
#define TARGET_STATUS_SEND_FLAGS_CONFIRMED (0x08)
|
||||
#define TARGET_STATUS_SEND_FLAGS_REPOST_CMD_BUFFER (0x80)
|
||||
|
||||
/*
|
||||
* NOTE: FCP_RSP data is big-endian. When used on a little-endian system, this
|
||||
* structure properly orders the bytes.
|
||||
*/
|
||||
typedef struct _MPI_TARGET_FCP_RSP_BUFFER
|
||||
{
|
||||
U8 Reserved0[8]; /* 00h */
|
||||
U8 Reserved1[2]; /* 08h */
|
||||
U8 FcpFlags; /* 0Ah */
|
||||
U8 FcpStatus; /* 0Bh */
|
||||
U32 FcpResid; /* 0Ch */
|
||||
U32 FcpSenseLength; /* 10h */
|
||||
U32 FcpResponseLength; /* 14h */
|
||||
U8 FcpResponseData[8]; /* 18h */
|
||||
U8 FcpSenseData[32]; /* Pad to 64 bytes */ /* 20h */
|
||||
} MPI_TARGET_FCP_RSP_BUFFER, MPI_POINTER PTR_MPI_TARGET_FCP_RSP_BUFFER,
|
||||
MpiTargetFcpRspBuffer, MPI_POINTER pMpiTargetFcpRspBuffer;
|
||||
|
||||
/*
|
||||
* NOTE: The SPI status IU is big-endian. When used on a little-endian system,
|
||||
* this structure properly orders the bytes.
|
||||
*/
|
||||
typedef struct _MPI_TARGET_SCSI_SPI_STATUS_IU
|
||||
{
|
||||
U8 Reserved0; /* 00h */
|
||||
U8 Reserved1; /* 01h */
|
||||
U8 Valid; /* 02h */
|
||||
U8 Status; /* 03h */
|
||||
U32 SenseDataListLength; /* 04h */
|
||||
U32 PktFailuresListLength; /* 08h */
|
||||
U8 SenseData[52]; /* Pad the IU to 64 bytes */ /* 0Ch */
|
||||
} MPI_TARGET_SCSI_SPI_STATUS_IU, MPI_POINTER PTR_MPI_TARGET_SCSI_SPI_STATUS_IU,
|
||||
TargetScsiSpiStatusIU_t, MPI_POINTER pTargetScsiSpiStatusIU_t;
|
||||
|
||||
/****************************************************************************/
|
||||
/* Target Mode Abort Request */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_TARGET_MODE_ABORT_REQUEST
|
||||
{
|
||||
U8 AbortType; /* 00h */
|
||||
U8 Reserved; /* 01h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved1; /* 04h */
|
||||
U8 Reserved2; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U32 ReplyWord; /* 0Ch */
|
||||
U32 MsgContextToAbort; /* 10h */
|
||||
} MSG_TARGET_MODE_ABORT, MPI_POINTER PTR_MSG_TARGET_MODE_ABORT,
|
||||
TargetModeAbort_t, MPI_POINTER pTargetModeAbort_t;
|
||||
|
||||
#define TARGET_MODE_ABORT_TYPE_ALL_CMD_BUFFERS (0x00)
|
||||
#define TARGET_MODE_ABORT_TYPE_ALL_IO (0x01)
|
||||
#define TARGET_MODE_ABORT_TYPE_EXACT_IO (0x02)
|
||||
#define TARGET_MODE_ABORT_TYPE_EXACT_IO_REQUEST (0x03)
|
||||
|
||||
/* Target Mode Abort Reply */
|
||||
|
||||
typedef struct _MSG_TARGET_MODE_ABORT_REPLY
|
||||
{
|
||||
U16 Reserved; /* 00h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved1; /* 04h */
|
||||
U8 Reserved2; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U16 Reserved3; /* 0Ch */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
U32 AbortCount; /* 14h */
|
||||
} MSG_TARGET_MODE_ABORT_REPLY, MPI_POINTER PTR_MSG_TARGET_MODE_ABORT_REPLY,
|
||||
TargetModeAbortReply_t, MPI_POINTER pTargetModeAbortReply_t;
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* Target Mode Context Reply */
|
||||
/****************************************************************************/
|
||||
|
||||
#define TARGET_MODE_REPLY_IO_INDEX_MASK (0x00003FFF)
|
||||
#define TARGET_MODE_REPLY_IO_INDEX_SHIFT (0)
|
||||
#define TARGET_MODE_REPLY_INITIATOR_INDEX_MASK (0x03FFC000)
|
||||
#define TARGET_MODE_REPLY_INITIATOR_INDEX_SHIFT (14)
|
||||
#define TARGET_MODE_REPLY_ALIAS_MASK (0x04000000)
|
||||
#define TARGET_MODE_REPLY_ALIAS_SHIFT (26)
|
||||
#define TARGET_MODE_REPLY_PORT_MASK (0x10000000)
|
||||
#define TARGET_MODE_REPLY_PORT_SHIFT (28)
|
||||
|
||||
|
||||
#define GET_IO_INDEX(x) (((x) & TARGET_MODE_REPLY_IO_INDEX_MASK) \
|
||||
>> TARGET_MODE_REPLY_IO_INDEX_SHIFT)
|
||||
|
||||
#define SET_IO_INDEX(t, i) \
|
||||
((t) = ((t) & ~TARGET_MODE_REPLY_IO_INDEX_MASK) | \
|
||||
(((i) << TARGET_MODE_REPLY_IO_INDEX_SHIFT) & \
|
||||
TARGET_MODE_REPLY_IO_INDEX_MASK))
|
||||
|
||||
#define GET_INITIATOR_INDEX(x) (((x) & TARGET_MODE_REPLY_INITIATOR_INDEX_MASK) \
|
||||
>> TARGET_MODE_REPLY_INITIATOR_INDEX_SHIFT)
|
||||
|
||||
#define SET_INITIATOR_INDEX(t, ii) \
|
||||
((t) = ((t) & ~TARGET_MODE_REPLY_INITIATOR_INDEX_MASK) | \
|
||||
(((ii) << TARGET_MODE_REPLY_INITIATOR_INDEX_SHIFT) & \
|
||||
TARGET_MODE_REPLY_INITIATOR_INDEX_MASK))
|
||||
|
||||
#define GET_ALIAS(x) (((x) & TARGET_MODE_REPLY_ALIAS_MASK) \
|
||||
>> TARGET_MODE_REPLY_ALIAS_SHIFT)
|
||||
|
||||
#define SET_ALIAS(t, a) ((t) = ((t) & ~TARGET_MODE_REPLY_ALIAS_MASK) | \
|
||||
(((a) << TARGET_MODE_REPLY_ALIAS_SHIFT) & \
|
||||
TARGET_MODE_REPLY_ALIAS_MASK))
|
||||
|
||||
#define GET_PORT(x) (((x) & TARGET_MODE_REPLY_PORT_MASK) \
|
||||
>> TARGET_MODE_REPLY_PORT_SHIFT)
|
||||
|
||||
#define SET_PORT(t, p) ((t) = ((t) & ~TARGET_MODE_REPLY_PORT_MASK) | \
|
||||
(((p) << TARGET_MODE_REPLY_PORT_SHIFT) & \
|
||||
TARGET_MODE_REPLY_PORT_MASK))
|
||||
|
||||
/* the following obsolete values are for MPI v1.0 support */
|
||||
#define TARGET_MODE_REPLY_0100_MASK_HOST_INDEX (0x000003FF)
|
||||
#define TARGET_MODE_REPLY_0100_SHIFT_HOST_INDEX (0)
|
||||
#define TARGET_MODE_REPLY_0100_MASK_IOC_INDEX (0x001FF800)
|
||||
#define TARGET_MODE_REPLY_0100_SHIFT_IOC_INDEX (11)
|
||||
#define TARGET_MODE_REPLY_0100_PORT_MASK (0x00400000)
|
||||
#define TARGET_MODE_REPLY_0100_PORT_SHIFT (22)
|
||||
#define TARGET_MODE_REPLY_0100_MASK_INITIATOR_INDEX (0x1F800000)
|
||||
#define TARGET_MODE_REPLY_0100_SHIFT_INITIATOR_INDEX (23)
|
||||
|
||||
#define GET_HOST_INDEX_0100(x) (((x) & TARGET_MODE_REPLY_0100_MASK_HOST_INDEX) \
|
||||
>> TARGET_MODE_REPLY_0100_SHIFT_HOST_INDEX)
|
||||
|
||||
#define SET_HOST_INDEX_0100(t, hi) \
|
||||
((t) = ((t) & ~TARGET_MODE_REPLY_0100_MASK_HOST_INDEX) | \
|
||||
(((hi) << TARGET_MODE_REPLY_0100_SHIFT_HOST_INDEX) & \
|
||||
TARGET_MODE_REPLY_0100_MASK_HOST_INDEX))
|
||||
|
||||
#define GET_IOC_INDEX_0100(x) (((x) & TARGET_MODE_REPLY_0100_MASK_IOC_INDEX) \
|
||||
>> TARGET_MODE_REPLY_0100_SHIFT_IOC_INDEX)
|
||||
|
||||
#define SET_IOC_INDEX_0100(t, ii) \
|
||||
((t) = ((t) & ~TARGET_MODE_REPLY_0100_MASK_IOC_INDEX) | \
|
||||
(((ii) << TARGET_MODE_REPLY_0100_SHIFT_IOC_INDEX) & \
|
||||
TARGET_MODE_REPLY_0100_MASK_IOC_INDEX))
|
||||
|
||||
#define GET_INITIATOR_INDEX_0100(x) \
|
||||
(((x) & TARGET_MODE_REPLY_0100_MASK_INITIATOR_INDEX) \
|
||||
>> TARGET_MODE_REPLY_0100_SHIFT_INITIATOR_INDEX)
|
||||
|
||||
#define SET_INITIATOR_INDEX_0100(t, ii) \
|
||||
((t) = ((t) & ~TARGET_MODE_REPLY_0100_MASK_INITIATOR_INDEX) | \
|
||||
(((ii) << TARGET_MODE_REPLY_0100_SHIFT_INITIATOR_INDEX) & \
|
||||
TARGET_MODE_REPLY_0100_MASK_INITIATOR_INDEX))
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
305
extra/linux-2.6.10/drivers/message/fusion/lsi/mpi_tool.h
Normal file
305
extra/linux-2.6.10/drivers/message/fusion/lsi/mpi_tool.h
Normal file
@@ -0,0 +1,305 @@
|
||||
/*
|
||||
* Copyright (c) 2001-2003 LSI Logic Corporation.
|
||||
*
|
||||
*
|
||||
* Name: mpi_tool.h
|
||||
* Title: MPI Toolbox structures and definitions
|
||||
* Creation Date: July 30, 2001
|
||||
*
|
||||
* mpi_tool.h Version: 01.05.xx
|
||||
*
|
||||
* Version History
|
||||
* ---------------
|
||||
*
|
||||
* Date Version Description
|
||||
* -------- -------- ------------------------------------------------------
|
||||
* 08-08-01 01.02.01 Original release.
|
||||
* 08-29-01 01.02.02 Added DIAG_DATA_UPLOAD_HEADER and related defines.
|
||||
* --------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#ifndef MPI_TOOL_H
|
||||
#define MPI_TOOL_H
|
||||
|
||||
#define MPI_TOOLBOX_CLEAN_TOOL (0x00)
|
||||
#define MPI_TOOLBOX_MEMORY_MOVE_TOOL (0x01)
|
||||
#define MPI_TOOLBOX_DIAG_DATA_UPLOAD_TOOL (0x02)
|
||||
#define MPI_TOOLBOX_ISTWI_READ_WRITE_TOOL (0x03)
|
||||
#define MPI_TOOLBOX_FC_MANAGEMENT_TOOL (0x04)
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* Toolbox reply */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_TOOLBOX_REPLY
|
||||
{
|
||||
U8 Tool; /* 00h */
|
||||
U8 Reserved; /* 01h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved1; /* 04h */
|
||||
U8 Reserved2; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U16 Reserved3; /* 0Ch */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
} MSG_TOOLBOX_REPLY, MPI_POINTER PTR_MSG_TOOLBOX_REPLY,
|
||||
ToolboxReply_t, MPI_POINTER pToolboxReply_t;
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* Toolbox Clean Tool request */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_TOOLBOX_CLEAN_REQUEST
|
||||
{
|
||||
U8 Tool; /* 00h */
|
||||
U8 Reserved; /* 01h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved1; /* 04h */
|
||||
U8 Reserved2; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U32 Flags; /* 0Ch */
|
||||
} MSG_TOOLBOX_CLEAN_REQUEST, MPI_POINTER PTR_MSG_TOOLBOX_CLEAN_REQUEST,
|
||||
ToolboxCleanRequest_t, MPI_POINTER pToolboxCleanRequest_t;
|
||||
|
||||
#define MPI_TOOLBOX_CLEAN_NVSRAM (0x00000001)
|
||||
#define MPI_TOOLBOX_CLEAN_SEEPROM (0x00000002)
|
||||
#define MPI_TOOLBOX_CLEAN_FLASH (0x00000004)
|
||||
#define MPI_TOOLBOX_CLEAN_BOOTLOADER (0x04000000)
|
||||
#define MPI_TOOLBOX_CLEAN_FW_BACKUP (0x08000000)
|
||||
#define MPI_TOOLBOX_CLEAN_FW_CURRENT (0x10000000)
|
||||
#define MPI_TOOLBOX_CLEAN_OTHER_PERSIST_PAGES (0x20000000)
|
||||
#define MPI_TOOLBOX_CLEAN_PERSIST_MANUFACT_PAGES (0x40000000)
|
||||
#define MPI_TOOLBOX_CLEAN_BOOT_SERVICES (0x80000000)
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* Toolbox Memory Move request */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_TOOLBOX_MEM_MOVE_REQUEST
|
||||
{
|
||||
U8 Tool; /* 00h */
|
||||
U8 Reserved; /* 01h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved1; /* 04h */
|
||||
U8 Reserved2; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
SGE_SIMPLE_UNION SGL; /* 0Ch */
|
||||
} MSG_TOOLBOX_MEM_MOVE_REQUEST, MPI_POINTER PTR_MSG_TOOLBOX_MEM_MOVE_REQUEST,
|
||||
ToolboxMemMoveRequest_t, MPI_POINTER pToolboxMemMoveRequest_t;
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* Toolbox Diagnostic Data Upload request */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_TOOLBOX_DIAG_DATA_UPLOAD_REQUEST
|
||||
{
|
||||
U8 Tool; /* 00h */
|
||||
U8 Reserved; /* 01h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved1; /* 04h */
|
||||
U8 Reserved2; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U32 Flags; /* 0Ch */
|
||||
U32 Reserved3; /* 10h */
|
||||
SGE_SIMPLE_UNION SGL; /* 14h */
|
||||
} MSG_TOOLBOX_DIAG_DATA_UPLOAD_REQUEST, MPI_POINTER PTR_MSG_TOOLBOX_DIAG_DATA_UPLOAD_REQUEST,
|
||||
ToolboxDiagDataUploadRequest_t, MPI_POINTER pToolboxDiagDataUploadRequest_t;
|
||||
|
||||
typedef struct _DIAG_DATA_UPLOAD_HEADER
|
||||
{
|
||||
U32 DiagDataLength; /* 00h */
|
||||
U8 FormatCode; /* 04h */
|
||||
U8 Reserved; /* 05h */
|
||||
U16 Reserved1; /* 06h */
|
||||
} DIAG_DATA_UPLOAD_HEADER, MPI_POINTER PTR_DIAG_DATA_UPLOAD_HEADER,
|
||||
DiagDataUploadHeader_t, MPI_POINTER pDiagDataUploadHeader_t;
|
||||
|
||||
#define MPI_TB_DIAG_FORMAT_SCSI_PRINTF_1 (0x01)
|
||||
#define MPI_TB_DIAG_FORMAT_SCSI_2 (0x02)
|
||||
#define MPI_TB_DIAG_FORMAT_SCSI_3 (0x03)
|
||||
#define MPI_TB_DIAG_FORMAT_FC_TRACE_1 (0x04)
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* Toolbox ISTWI Read Write request */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_TOOLBOX_ISTWI_READ_WRITE_REQUEST
|
||||
{
|
||||
U8 Tool; /* 00h */
|
||||
U8 Reserved; /* 01h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved1; /* 04h */
|
||||
U8 Reserved2; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U8 Flags; /* 0Ch */
|
||||
U8 BusNum; /* 0Dh */
|
||||
U16 Reserved3; /* 0Eh */
|
||||
U8 NumAddressBytes; /* 10h */
|
||||
U8 Reserved4; /* 11h */
|
||||
U16 DataLength; /* 12h */
|
||||
U8 DeviceAddr; /* 14h */
|
||||
U8 Addr1; /* 15h */
|
||||
U8 Addr2; /* 16h */
|
||||
U8 Addr3; /* 17h */
|
||||
U32 Reserved5; /* 18h */
|
||||
SGE_SIMPLE_UNION SGL; /* 1Ch */
|
||||
} MSG_TOOLBOX_ISTWI_READ_WRITE_REQUEST, MPI_POINTER PTR_MSG_TOOLBOX_ISTWI_READ_WRITE_REQUEST,
|
||||
ToolboxIstwiReadWriteRequest_t, MPI_POINTER pToolboxIstwiReadWriteRequest_t;
|
||||
|
||||
#define MPI_TB_ISTWI_FLAGS_WRITE (0x00)
|
||||
#define MPI_TB_ISTWI_FLAGS_READ (0x01)
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* Toolbox FC Management request */
|
||||
/****************************************************************************/
|
||||
|
||||
/* ActionInfo for Bus and TargetId */
|
||||
typedef struct _MPI_TB_FC_MANAGE_BUS_TID_AI
|
||||
{
|
||||
U16 Reserved; /* 00h */
|
||||
U8 Bus; /* 02h */
|
||||
U8 TargetId; /* 03h */
|
||||
} MPI_TB_FC_MANAGE_BUS_TID_AI, MPI_POINTER PTR_MPI_TB_FC_MANAGE_BUS_TID_AI,
|
||||
MpiTbFcManageBusTidAi_t, MPI_POINTER pMpiTbFcManageBusTidAi_t;
|
||||
|
||||
/* ActionInfo for port identifier */
|
||||
typedef struct _MPI_TB_FC_MANAGE_PID_AI
|
||||
{
|
||||
U32 PortIdentifier; /* 00h */
|
||||
} MPI_TB_FC_MANAGE_PID_AI, MPI_POINTER PTR_MPI_TB_FC_MANAGE_PID_AI,
|
||||
MpiTbFcManagePidAi_t, MPI_POINTER pMpiTbFcManagePidAi_t;
|
||||
|
||||
/* union of ActionInfo */
|
||||
typedef union _MPI_TB_FC_MANAGE_AI_UNION
|
||||
{
|
||||
MPI_TB_FC_MANAGE_BUS_TID_AI BusTid;
|
||||
MPI_TB_FC_MANAGE_PID_AI Port;
|
||||
} MPI_TB_FC_MANAGE_AI_UNION, MPI_POINTER PTR_MPI_TB_FC_MANAGE_AI_UNION,
|
||||
MpiTbFcManageAiUnion_t, MPI_POINTER pMpiTbFcManageAiUnion_t;
|
||||
|
||||
typedef struct _MSG_TOOLBOX_FC_MANAGE_REQUEST
|
||||
{
|
||||
U8 Tool; /* 00h */
|
||||
U8 Reserved; /* 01h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved1; /* 04h */
|
||||
U8 Reserved2; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U8 Action; /* 0Ch */
|
||||
U8 Reserved3; /* 0Dh */
|
||||
U16 Reserved4; /* 0Eh */
|
||||
MPI_TB_FC_MANAGE_AI_UNION ActionInfo; /* 10h */
|
||||
} MSG_TOOLBOX_FC_MANAGE_REQUEST, MPI_POINTER PTR_MSG_TOOLBOX_FC_MANAGE_REQUEST,
|
||||
ToolboxFcManageRequest_t, MPI_POINTER pToolboxFcManageRequest_t;
|
||||
|
||||
/* defines for the Action field */
|
||||
#define MPI_TB_FC_MANAGE_ACTION_DISC_ALL (0x00)
|
||||
#define MPI_TB_FC_MANAGE_ACTION_DISC_PID (0x01)
|
||||
#define MPI_TB_FC_MANAGE_ACTION_DISC_BUS_TID (0x02)
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* Diagnostic Buffer Post request */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_DIAG_BUFFER_POST_REQUEST
|
||||
{
|
||||
U8 TraceLevel; /* 00h */
|
||||
U8 BufferType; /* 01h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved1; /* 04h */
|
||||
U8 Reserved2; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U32 ExtendedType; /* 0Ch */
|
||||
U32 BufferLength; /* 10h */
|
||||
U32 ProductSpecific[4]; /* 14h */
|
||||
U32 Reserved3; /* 18h */
|
||||
SGE_SIMPLE_UNION SGL; /* 28h */
|
||||
} MSG_DIAG_BUFFER_POST_REQUEST, MPI_POINTER PTR_MSG_DIAG_BUFFER_POST_REQUEST,
|
||||
DiagBufferPostRequest_t, MPI_POINTER pDiagBufferPostRequest_t;
|
||||
|
||||
#define MPI_DIAG_BUF_TYPE_TRACE (0x00)
|
||||
#define MPI_DIAG_BUF_TYPE_SNAPSHOT (0x01)
|
||||
#define MPI_DIAG_BUF_TYPE_EXTENDED (0x02)
|
||||
|
||||
#define MPI_DIAG_EXTENDED_QTAG (0x00000001)
|
||||
|
||||
|
||||
/* Diagnostic Buffer Post reply */
|
||||
typedef struct _MSG_DIAG_BUFFER_POST_REPLY
|
||||
{
|
||||
U8 Reserved1; /* 00h */
|
||||
U8 BufferType; /* 01h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved2; /* 04h */
|
||||
U8 Reserved3; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U16 Reserved4; /* 0Ch */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
U32 TransferLength; /* 14h */
|
||||
} MSG_DIAG_BUFFER_POST_REPLY, MPI_POINTER PTR_MSG_DIAG_BUFFER_POST_REPLY,
|
||||
DiagBufferPostReply_t, MPI_POINTER pDiagBufferPostReply_t;
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* Diagnostic Release request */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef struct _MSG_DIAG_RELEASE_REQUEST
|
||||
{
|
||||
U8 Reserved1; /* 00h */
|
||||
U8 BufferType; /* 01h */
|
||||
U8 ChainOffset; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved2; /* 04h */
|
||||
U8 Reserved3; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
} MSG_DIAG_RELEASE_REQUEST, MPI_POINTER PTR_MSG_DIAG_RELEASE_REQUEST,
|
||||
DiagReleaseRequest_t, MPI_POINTER pDiagReleaseRequest_t;
|
||||
|
||||
|
||||
/* Diagnostic Release reply */
|
||||
typedef struct _MSG_DIAG_RELEASE_REPLY
|
||||
{
|
||||
U8 Reserved1; /* 00h */
|
||||
U8 BufferType; /* 01h */
|
||||
U8 MsgLength; /* 02h */
|
||||
U8 Function; /* 03h */
|
||||
U16 Reserved2; /* 04h */
|
||||
U8 Reserved3; /* 06h */
|
||||
U8 MsgFlags; /* 07h */
|
||||
U32 MsgContext; /* 08h */
|
||||
U16 Reserved4; /* 0Ch */
|
||||
U16 IOCStatus; /* 0Eh */
|
||||
U32 IOCLogInfo; /* 10h */
|
||||
} MSG_DIAG_RELEASE_REPLY, MPI_POINTER PTR_MSG_DIAG_RELEASE_REPLY,
|
||||
DiagReleaseReply_t, MPI_POINTER pDiagReleaseReply_t;
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
86
extra/linux-2.6.10/drivers/message/fusion/lsi/mpi_type.h
Normal file
86
extra/linux-2.6.10/drivers/message/fusion/lsi/mpi_type.h
Normal file
@@ -0,0 +1,86 @@
|
||||
/*
|
||||
* Copyright (c) 2000-2003 LSI Logic Corporation.
|
||||
*
|
||||
*
|
||||
* Name: mpi_type.h
|
||||
* Title: MPI Basic type definitions
|
||||
* Creation Date: June 6, 2000
|
||||
*
|
||||
* mpi_type.h Version: 01.05.xx
|
||||
*
|
||||
* Version History
|
||||
* ---------------
|
||||
*
|
||||
* Date Version Description
|
||||
* -------- -------- ------------------------------------------------------
|
||||
* 05-08-00 00.10.01 Original release for 0.10 spec dated 4/26/2000.
|
||||
* 06-06-00 01.00.01 Update version number for 1.0 release.
|
||||
* 11-02-00 01.01.01 Original release for post 1.0 work
|
||||
* 02-20-01 01.01.02 Added define and ifdef for MPI_POINTER.
|
||||
* 08-08-01 01.02.01 Original release for v1.2 work.
|
||||
* --------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#ifndef MPI_TYPE_H
|
||||
#define MPI_TYPE_H
|
||||
|
||||
|
||||
/*******************************************************************************
|
||||
* Define MPI_POINTER if it hasn't already been defined. By default MPI_POINTER
|
||||
* is defined to be a near pointer. MPI_POINTER can be defined as a far pointer
|
||||
* by defining MPI_POINTER as "far *" before this header file is included.
|
||||
*/
|
||||
#ifndef MPI_POINTER
|
||||
#define MPI_POINTER *
|
||||
#endif
|
||||
|
||||
|
||||
/*****************************************************************************
|
||||
*
|
||||
* B a s i c T y p e s
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
typedef signed char S8;
|
||||
typedef unsigned char U8;
|
||||
typedef signed short S16;
|
||||
typedef unsigned short U16;
|
||||
|
||||
|
||||
typedef int32_t S32;
|
||||
typedef u_int32_t U32;
|
||||
|
||||
/*
|
||||
* The only way crap below could work on big-endian boxen would be if it
|
||||
* wasn't used at all.
|
||||
*/
|
||||
|
||||
typedef struct _S64
|
||||
{
|
||||
U32 Low;
|
||||
S32 High;
|
||||
} S64;
|
||||
|
||||
typedef struct _U64
|
||||
{
|
||||
U32 Low;
|
||||
U32 High;
|
||||
} U64;
|
||||
|
||||
|
||||
/****************************************************************************/
|
||||
/* Pointers */
|
||||
/****************************************************************************/
|
||||
|
||||
typedef S8 *PS8;
|
||||
typedef U8 *PU8;
|
||||
typedef S16 *PS16;
|
||||
typedef U16 *PU16;
|
||||
typedef S32 *PS32;
|
||||
typedef U32 *PU32;
|
||||
typedef S64 *PS64;
|
||||
typedef U64 *PU64;
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
5947
extra/linux-2.6.10/drivers/message/fusion/mptbase.c
Normal file
5947
extra/linux-2.6.10/drivers/message/fusion/mptbase.c
Normal file
File diff suppressed because it is too large
Load Diff
1027
extra/linux-2.6.10/drivers/message/fusion/mptbase.h
Normal file
1027
extra/linux-2.6.10/drivers/message/fusion/mptbase.h
Normal file
File diff suppressed because it is too large
Load Diff
3004
extra/linux-2.6.10/drivers/message/fusion/mptctl.c
Normal file
3004
extra/linux-2.6.10/drivers/message/fusion/mptctl.c
Normal file
File diff suppressed because it is too large
Load Diff
484
extra/linux-2.6.10/drivers/message/fusion/mptctl.h
Normal file
484
extra/linux-2.6.10/drivers/message/fusion/mptctl.h
Normal file
@@ -0,0 +1,484 @@
|
||||
/*
|
||||
* linux/drivers/message/fusion/mptioctl.h
|
||||
* Fusion MPT misc device (ioctl) driver.
|
||||
* For use with PCI chip/adapter(s):
|
||||
* LSIFC9xx/LSI409xx Fibre Channel
|
||||
* running LSI Logic Fusion MPT (Message Passing Technology) firmware.
|
||||
*
|
||||
* Credits:
|
||||
* This driver would not exist if not for Alan Cox's development
|
||||
* of the linux i2o driver.
|
||||
*
|
||||
* A huge debt of gratitude is owed to David S. Miller (DaveM)
|
||||
* for fixing much of the stupid and broken stuff in the early
|
||||
* driver while porting to sparc64 platform. THANK YOU!
|
||||
*
|
||||
* (see also mptbase.c)
|
||||
*
|
||||
* Copyright (c) 1999-2004 LSI Logic Corporation
|
||||
* Originally By: Steven J. Ralston
|
||||
* (mailto:sjralston1@netscape.net)
|
||||
* (mailto:mpt_linux_developer@lsil.com)
|
||||
*
|
||||
* $Id: mptctl.h,v 1.13 2002/12/03 21:26:33 pdelaney Exp $
|
||||
*/
|
||||
/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
|
||||
/*
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; version 2 of the License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
NO WARRANTY
|
||||
THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR
|
||||
CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT
|
||||
LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
|
||||
MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is
|
||||
solely responsible for determining the appropriateness of using and
|
||||
distributing the Program and assumes all risks associated with its
|
||||
exercise of rights under this Agreement, including but not limited to
|
||||
the risks and costs of program errors, damage to or loss of data,
|
||||
programs or equipment, and unavailability or interruption of operations.
|
||||
|
||||
DISCLAIMER OF LIABILITY
|
||||
NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY
|
||||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
|
||||
HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#ifndef MPTCTL_H_INCLUDED
|
||||
#define MPTCTL_H_INCLUDED
|
||||
/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
|
||||
|
||||
#include "linux/version.h"
|
||||
|
||||
|
||||
/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
|
||||
/*
|
||||
*
|
||||
*/
|
||||
#define MPT_MISCDEV_BASENAME "mptctl"
|
||||
#define MPT_MISCDEV_PATHNAME "/dev/" MPT_MISCDEV_BASENAME
|
||||
|
||||
#define MPT_PRODUCT_LENGTH 12
|
||||
|
||||
/*
|
||||
* Generic MPT Control IOCTLs and structures
|
||||
*/
|
||||
#define MPT_MAGIC_NUMBER 'm'
|
||||
|
||||
#define MPTRWPERF _IOWR(MPT_MAGIC_NUMBER,0,struct mpt_raw_r_w)
|
||||
|
||||
#define MPTFWDOWNLOAD _IOWR(MPT_MAGIC_NUMBER,15,struct mpt_fw_xfer)
|
||||
#define MPTCOMMAND _IOWR(MPT_MAGIC_NUMBER,20,struct mpt_ioctl_command)
|
||||
|
||||
#if defined(__KERNEL__) && defined(CONFIG_COMPAT)
|
||||
#define MPTFWDOWNLOAD32 _IOWR(MPT_MAGIC_NUMBER,15,struct mpt_fw_xfer32)
|
||||
#define MPTCOMMAND32 _IOWR(MPT_MAGIC_NUMBER,20,struct mpt_ioctl_command32)
|
||||
#endif
|
||||
|
||||
#define MPTIOCINFO _IOWR(MPT_MAGIC_NUMBER,17,struct mpt_ioctl_iocinfo)
|
||||
#define MPTIOCINFO1 _IOWR(MPT_MAGIC_NUMBER,17,struct mpt_ioctl_iocinfo_rev0)
|
||||
#define MPTIOCINFO2 _IOWR(MPT_MAGIC_NUMBER,17,struct mpt_ioctl_iocinfo_rev1)
|
||||
#define MPTTARGETINFO _IOWR(MPT_MAGIC_NUMBER,18,struct mpt_ioctl_targetinfo)
|
||||
#define MPTTEST _IOWR(MPT_MAGIC_NUMBER,19,struct mpt_ioctl_test)
|
||||
#define MPTEVENTQUERY _IOWR(MPT_MAGIC_NUMBER,21,struct mpt_ioctl_eventquery)
|
||||
#define MPTEVENTENABLE _IOWR(MPT_MAGIC_NUMBER,22,struct mpt_ioctl_eventenable)
|
||||
#define MPTEVENTREPORT _IOWR(MPT_MAGIC_NUMBER,23,struct mpt_ioctl_eventreport)
|
||||
#define MPTHARDRESET _IOWR(MPT_MAGIC_NUMBER,24,struct mpt_ioctl_diag_reset)
|
||||
#define MPTFWREPLACE _IOWR(MPT_MAGIC_NUMBER,25,struct mpt_ioctl_replace_fw)
|
||||
|
||||
/*
|
||||
* SPARC PLATFORM REMARKS:
|
||||
* IOCTL data structures that contain pointers
|
||||
* will have different sizes in the driver and applications
|
||||
* (as the app. will not use 8-byte pointers).
|
||||
* Apps should use MPTFWDOWNLOAD and MPTCOMMAND.
|
||||
* The driver will convert data from
|
||||
* mpt_fw_xfer32 (mpt_ioctl_command32) to mpt_fw_xfer (mpt_ioctl_command)
|
||||
* internally.
|
||||
*
|
||||
* If data structures change size, must handle as in IOCGETINFO.
|
||||
*/
|
||||
struct mpt_fw_xfer {
|
||||
unsigned int iocnum; /* IOC unit number */
|
||||
unsigned int fwlen;
|
||||
void __user *bufp; /* Pointer to firmware buffer */
|
||||
};
|
||||
|
||||
#if defined(__KERNEL__) && defined(CONFIG_COMPAT)
|
||||
struct mpt_fw_xfer32 {
|
||||
unsigned int iocnum;
|
||||
unsigned int fwlen;
|
||||
u32 bufp;
|
||||
};
|
||||
#endif /*}*/
|
||||
|
||||
/*
|
||||
* IOCTL header structure.
|
||||
* iocnum - must be defined.
|
||||
* port - must be defined for all IOCTL commands other than MPTIOCINFO
|
||||
* maxDataSize - ignored on MPTCOMMAND commands
|
||||
* - ignored on MPTFWREPLACE commands
|
||||
* - on query commands, reports the maximum number of bytes to be returned
|
||||
* to the host driver (count includes the header).
|
||||
* That is, set to sizeof(struct mpt_ioctl_iocinfo) for fixed sized commands.
|
||||
* Set to sizeof(struct mpt_ioctl_targetinfo) + datasize for variable
|
||||
* sized commands. (MPTTARGETINFO, MPTEVENTREPORT)
|
||||
*/
|
||||
typedef struct _mpt_ioctl_header {
|
||||
unsigned int iocnum; /* IOC unit number */
|
||||
unsigned int port; /* IOC port number */
|
||||
int maxDataSize; /* Maximum Num. bytes to transfer on read */
|
||||
} mpt_ioctl_header;
|
||||
|
||||
/*
|
||||
* Issue a diagnostic reset
|
||||
*/
|
||||
struct mpt_ioctl_diag_reset {
|
||||
mpt_ioctl_header hdr;
|
||||
};
|
||||
|
||||
|
||||
/*
|
||||
* PCI bus/device/function information structure.
|
||||
*/
|
||||
struct mpt_ioctl_pci_info {
|
||||
union {
|
||||
struct {
|
||||
unsigned int deviceNumber : 5;
|
||||
unsigned int functionNumber : 3;
|
||||
unsigned int busNumber : 24;
|
||||
} bits;
|
||||
unsigned int asUlong;
|
||||
} u;
|
||||
};
|
||||
|
||||
struct mpt_ioctl_pci_info2 {
|
||||
union {
|
||||
struct {
|
||||
unsigned int deviceNumber : 5;
|
||||
unsigned int functionNumber : 3;
|
||||
unsigned int busNumber : 24;
|
||||
} bits;
|
||||
unsigned int asUlong;
|
||||
} u;
|
||||
int segmentID;
|
||||
};
|
||||
|
||||
/*
|
||||
* Adapter Information Page
|
||||
* Read only.
|
||||
* Data starts at offset 0xC
|
||||
*/
|
||||
#define MPT_IOCTL_INTERFACE_FC (0x01)
|
||||
#define MPT_IOCTL_INTERFACE_SCSI (0x00)
|
||||
#define MPT_IOCTL_VERSION_LENGTH (32)
|
||||
|
||||
struct mpt_ioctl_iocinfo {
|
||||
mpt_ioctl_header hdr;
|
||||
int adapterType; /* SCSI or FCP */
|
||||
int port; /* port number */
|
||||
int pciId; /* PCI Id. */
|
||||
int hwRev; /* hardware revision */
|
||||
int subSystemDevice; /* PCI subsystem Device ID */
|
||||
int subSystemVendor; /* PCI subsystem Vendor ID */
|
||||
int numDevices; /* number of devices */
|
||||
int FWVersion; /* FW Version (integer) */
|
||||
int BIOSVersion; /* BIOS Version (integer) */
|
||||
char driverVersion[MPT_IOCTL_VERSION_LENGTH]; /* Driver Version (string) */
|
||||
char busChangeEvent;
|
||||
char hostId;
|
||||
char rsvd[2];
|
||||
struct mpt_ioctl_pci_info2 pciInfo; /* Added Rev 2 */
|
||||
};
|
||||
|
||||
struct mpt_ioctl_iocinfo_rev1 {
|
||||
mpt_ioctl_header hdr;
|
||||
int adapterType; /* SCSI or FCP */
|
||||
int port; /* port number */
|
||||
int pciId; /* PCI Id. */
|
||||
int hwRev; /* hardware revision */
|
||||
int subSystemDevice; /* PCI subsystem Device ID */
|
||||
int subSystemVendor; /* PCI subsystem Vendor ID */
|
||||
int numDevices; /* number of devices */
|
||||
int FWVersion; /* FW Version (integer) */
|
||||
int BIOSVersion; /* BIOS Version (integer) */
|
||||
char driverVersion[MPT_IOCTL_VERSION_LENGTH]; /* Driver Version (string) */
|
||||
char busChangeEvent;
|
||||
char hostId;
|
||||
char rsvd[2];
|
||||
struct mpt_ioctl_pci_info pciInfo; /* Added Rev 1 */
|
||||
};
|
||||
|
||||
/* Original structure, must always accept these
|
||||
* IOCTLs. 4 byte pads can occur based on arch with
|
||||
* above structure. Wish to re-align, but cannot.
|
||||
*/
|
||||
struct mpt_ioctl_iocinfo_rev0 {
|
||||
mpt_ioctl_header hdr;
|
||||
int adapterType; /* SCSI or FCP */
|
||||
int port; /* port number */
|
||||
int pciId; /* PCI Id. */
|
||||
int hwRev; /* hardware revision */
|
||||
int subSystemDevice; /* PCI subsystem Device ID */
|
||||
int subSystemVendor; /* PCI subsystem Vendor ID */
|
||||
int numDevices; /* number of devices */
|
||||
int FWVersion; /* FW Version (integer) */
|
||||
int BIOSVersion; /* BIOS Version (integer) */
|
||||
char driverVersion[MPT_IOCTL_VERSION_LENGTH]; /* Driver Version (string) */
|
||||
char busChangeEvent;
|
||||
char hostId;
|
||||
char rsvd[2];
|
||||
};
|
||||
|
||||
/*
|
||||
* Device Information Page
|
||||
* Report the number of, and ids of, all targets
|
||||
* on this IOC. The ids array is a packed structure
|
||||
* of the known targetInfo.
|
||||
* bits 31-24: reserved
|
||||
* 23-16: LUN
|
||||
* 15- 8: Bus Number
|
||||
* 7- 0: Target ID
|
||||
*/
|
||||
struct mpt_ioctl_targetinfo {
|
||||
mpt_ioctl_header hdr;
|
||||
int numDevices; /* Num targets on this ioc */
|
||||
int targetInfo[1];
|
||||
};
|
||||
|
||||
|
||||
/*
|
||||
* Event reporting IOCTL's. These IOCTL's will
|
||||
* use the following defines:
|
||||
*/
|
||||
struct mpt_ioctl_eventquery {
|
||||
mpt_ioctl_header hdr;
|
||||
unsigned short eventEntries;
|
||||
unsigned short reserved;
|
||||
unsigned int eventTypes;
|
||||
};
|
||||
|
||||
struct mpt_ioctl_eventenable {
|
||||
mpt_ioctl_header hdr;
|
||||
unsigned int eventTypes;
|
||||
};
|
||||
|
||||
#ifndef __KERNEL__
|
||||
typedef struct {
|
||||
uint event;
|
||||
uint eventContext;
|
||||
uint data[2];
|
||||
} MPT_IOCTL_EVENTS;
|
||||
#endif
|
||||
|
||||
struct mpt_ioctl_eventreport {
|
||||
mpt_ioctl_header hdr;
|
||||
MPT_IOCTL_EVENTS eventData[1];
|
||||
};
|
||||
|
||||
#define MPT_MAX_NAME 32
|
||||
struct mpt_ioctl_test {
|
||||
mpt_ioctl_header hdr;
|
||||
u8 name[MPT_MAX_NAME];
|
||||
int chip_type;
|
||||
u8 product [MPT_PRODUCT_LENGTH];
|
||||
};
|
||||
|
||||
/* Replace the FW image cached in host driver memory
|
||||
* newImageSize - image size in bytes
|
||||
* newImage - first byte of the new image
|
||||
*/
|
||||
typedef struct mpt_ioctl_replace_fw {
|
||||
mpt_ioctl_header hdr;
|
||||
int newImageSize;
|
||||
u8 newImage[1];
|
||||
} mpt_ioctl_replace_fw_t;
|
||||
|
||||
/* General MPT Pass through data strucutre
|
||||
*
|
||||
* iocnum
|
||||
* timeout - in seconds, command timeout. If 0, set by driver to
|
||||
* default value.
|
||||
* replyFrameBufPtr - reply location
|
||||
* dataInBufPtr - destination for read
|
||||
* dataOutBufPtr - data source for write
|
||||
* senseDataPtr - sense data location
|
||||
* maxReplyBytes - maximum number of reply bytes to be sent to app.
|
||||
* dataInSize - num bytes for data transfer in (read)
|
||||
* dataOutSize - num bytes for data transfer out (write)
|
||||
* dataSgeOffset - offset in words from the start of the request message
|
||||
* to the first SGL
|
||||
* MF[1];
|
||||
*
|
||||
* Remark: Some config pages have bi-directional transfer,
|
||||
* both a read and a write. The basic structure allows for
|
||||
* a bidirectional set up. Normal messages will have one or
|
||||
* both of these buffers NULL.
|
||||
*/
|
||||
struct mpt_ioctl_command {
|
||||
mpt_ioctl_header hdr;
|
||||
int timeout; /* optional (seconds) */
|
||||
char __user *replyFrameBufPtr;
|
||||
char __user *dataInBufPtr;
|
||||
char __user *dataOutBufPtr;
|
||||
char __user *senseDataPtr;
|
||||
int maxReplyBytes;
|
||||
int dataInSize;
|
||||
int dataOutSize;
|
||||
int maxSenseBytes;
|
||||
int dataSgeOffset;
|
||||
char MF[1];
|
||||
};
|
||||
|
||||
/*
|
||||
* SPARC PLATFORM: See earlier remark.
|
||||
*/
|
||||
#if defined(__KERNEL__) && defined(CONFIG_COMPAT)
|
||||
struct mpt_ioctl_command32 {
|
||||
mpt_ioctl_header hdr;
|
||||
int timeout;
|
||||
u32 replyFrameBufPtr;
|
||||
u32 dataInBufPtr;
|
||||
u32 dataOutBufPtr;
|
||||
u32 senseDataPtr;
|
||||
int maxReplyBytes;
|
||||
int dataInSize;
|
||||
int dataOutSize;
|
||||
int maxSenseBytes;
|
||||
int dataSgeOffset;
|
||||
char MF[1];
|
||||
};
|
||||
#endif /*}*/
|
||||
|
||||
|
||||
/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
|
||||
/*
|
||||
* HP Specific IOCTL Defines and Structures
|
||||
*/
|
||||
|
||||
#define CPQFCTS_IOC_MAGIC 'Z'
|
||||
#define HP_IOC_MAGIC 'Z'
|
||||
#define HP_GETHOSTINFO _IOR(HP_IOC_MAGIC, 20, hp_host_info_t)
|
||||
#define HP_GETHOSTINFO1 _IOR(HP_IOC_MAGIC, 20, hp_host_info_rev0_t)
|
||||
#define HP_GETTARGETINFO _IOR(HP_IOC_MAGIC, 21, hp_target_info_t)
|
||||
|
||||
/* All HP IOCTLs must include this header
|
||||
*/
|
||||
typedef struct _hp_header {
|
||||
unsigned int iocnum;
|
||||
unsigned int host;
|
||||
unsigned int channel;
|
||||
unsigned int id;
|
||||
unsigned int lun;
|
||||
} hp_header_t;
|
||||
|
||||
/*
|
||||
* Header:
|
||||
* iocnum required (input)
|
||||
* host ignored
|
||||
* channe ignored
|
||||
* id ignored
|
||||
* lun ignored
|
||||
*/
|
||||
typedef struct _hp_host_info {
|
||||
hp_header_t hdr;
|
||||
u16 vendor;
|
||||
u16 device;
|
||||
u16 subsystem_vendor;
|
||||
u16 subsystem_id;
|
||||
u8 devfn;
|
||||
u8 bus;
|
||||
ushort host_no; /* SCSI Host number, if scsi driver not loaded*/
|
||||
u8 fw_version[16]; /* string */
|
||||
u8 serial_number[24]; /* string */
|
||||
u32 ioc_status;
|
||||
u32 bus_phys_width;
|
||||
u32 base_io_addr;
|
||||
u32 rsvd;
|
||||
unsigned int hard_resets; /* driver initiated resets */
|
||||
unsigned int soft_resets; /* ioc, external resets */
|
||||
unsigned int timeouts; /* num timeouts */
|
||||
} hp_host_info_t;
|
||||
|
||||
/* replace ulongs with uints, need to preserve backwards
|
||||
* compatibility.
|
||||
*/
|
||||
typedef struct _hp_host_info_rev0 {
|
||||
hp_header_t hdr;
|
||||
u16 vendor;
|
||||
u16 device;
|
||||
u16 subsystem_vendor;
|
||||
u16 subsystem_id;
|
||||
u8 devfn;
|
||||
u8 bus;
|
||||
ushort host_no; /* SCSI Host number, if scsi driver not loaded*/
|
||||
u8 fw_version[16]; /* string */
|
||||
u8 serial_number[24]; /* string */
|
||||
u32 ioc_status;
|
||||
u32 bus_phys_width;
|
||||
u32 base_io_addr;
|
||||
u32 rsvd;
|
||||
unsigned long hard_resets; /* driver initiated resets */
|
||||
unsigned long soft_resets; /* ioc, external resets */
|
||||
unsigned long timeouts; /* num timeouts */
|
||||
} hp_host_info_rev0_t;
|
||||
|
||||
/*
|
||||
* Header:
|
||||
* iocnum required (input)
|
||||
* host required
|
||||
* channel required (bus number)
|
||||
* id required
|
||||
* lun ignored
|
||||
*
|
||||
* All error values between 0 and 0xFFFF in size.
|
||||
*/
|
||||
typedef struct _hp_target_info {
|
||||
hp_header_t hdr;
|
||||
u32 parity_errors;
|
||||
u32 phase_errors;
|
||||
u32 select_timeouts;
|
||||
u32 message_rejects;
|
||||
u32 negotiated_speed;
|
||||
u8 negotiated_width;
|
||||
u8 rsvd[7]; /* 8 byte alignment */
|
||||
} hp_target_info_t;
|
||||
|
||||
#define HP_STATUS_OTHER 1
|
||||
#define HP_STATUS_OK 2
|
||||
#define HP_STATUS_FAILED 3
|
||||
|
||||
#define HP_BUS_WIDTH_UNK 1
|
||||
#define HP_BUS_WIDTH_8 2
|
||||
#define HP_BUS_WIDTH_16 3
|
||||
#define HP_BUS_WIDTH_32 4
|
||||
|
||||
#define HP_DEV_SPEED_ASYNC 2
|
||||
#define HP_DEV_SPEED_FAST 3
|
||||
#define HP_DEV_SPEED_ULTRA 4
|
||||
#define HP_DEV_SPEED_ULTRA2 5
|
||||
#define HP_DEV_SPEED_ULTRA160 6
|
||||
#define HP_DEV_SPEED_SCSI1 7
|
||||
#define HP_DEV_SPEED_ULTRA320 8
|
||||
|
||||
/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
|
||||
|
||||
|
||||
/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
|
||||
|
||||
#endif
|
||||
|
||||
1688
extra/linux-2.6.10/drivers/message/fusion/mptlan.c
Normal file
1688
extra/linux-2.6.10/drivers/message/fusion/mptlan.c
Normal file
File diff suppressed because it is too large
Load Diff
85
extra/linux-2.6.10/drivers/message/fusion/mptlan.h
Normal file
85
extra/linux-2.6.10/drivers/message/fusion/mptlan.h
Normal file
@@ -0,0 +1,85 @@
|
||||
/* mptlan.h */
|
||||
|
||||
#ifndef LINUX_MPTLAN_H_INCLUDED
|
||||
#define LINUX_MPTLAN_H_INCLUDED
|
||||
/*****************************************************************************/
|
||||
|
||||
#if !defined(__GENKSYMS__)
|
||||
#include <linux/module.h>
|
||||
#endif
|
||||
|
||||
#include <linux/netdevice.h>
|
||||
#include <linux/errno.h>
|
||||
// #include <linux/etherdevice.h>
|
||||
#include <linux/fcdevice.h>
|
||||
// #include <linux/fddidevice.h>
|
||||
#include <linux/skbuff.h>
|
||||
#include <linux/if_arp.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/miscdevice.h>
|
||||
#include <linux/spinlock.h>
|
||||
#include <linux/version.h>
|
||||
#include <linux/workqueue.h>
|
||||
#include <linux/delay.h>
|
||||
// #include <linux/trdevice.h>
|
||||
|
||||
#include <asm/uaccess.h>
|
||||
#include <asm/io.h>
|
||||
|
||||
/* Override mptbase.h by pre-defining these! */
|
||||
#define MODULEAUTHOR "Noah Romer, Eddie C. Dost"
|
||||
|
||||
#include "mptbase.h"
|
||||
|
||||
/*****************************************************************************/
|
||||
#define LANAME "Fusion MPT LAN driver"
|
||||
#define LANVER MPT_LINUX_VERSION_COMMON
|
||||
|
||||
#ifdef MODULE
|
||||
MODULE_AUTHOR(MODULEAUTHOR);
|
||||
MODULE_DESCRIPTION(LANAME);
|
||||
#endif
|
||||
/*****************************************************************************/
|
||||
|
||||
#define MPT_LAN_MAX_BUCKETS_OUT 256
|
||||
#define MPT_LAN_BUCKET_THRESH 18 /* 9 buckets in one message */
|
||||
#define MPT_LAN_BUCKETS_REMAIN_MISMATCH_THRESH 10
|
||||
#define MPT_LAN_RX_COPYBREAK 200
|
||||
#define MPT_LAN_TX_TIMEOUT (1*HZ)
|
||||
#define MPT_TX_MAX_OUT_LIM 127
|
||||
|
||||
#define MPT_LAN_MIN_MTU 96 /* RFC2625 */
|
||||
#define MPT_LAN_MAX_MTU 65280 /* RFC2625 */
|
||||
#define MPT_LAN_MTU 13312 /* Max perf range + lower mem
|
||||
usage than 16128 */
|
||||
|
||||
#define MPT_LAN_NAA_RFC2625 0x1
|
||||
#define MPT_LAN_NAA_QLOGIC 0x2
|
||||
|
||||
/* MPT LAN Reset and Suspend Resource Flags Defines */
|
||||
|
||||
#define MPT_LAN_RESOURCE_FLAG_RETURN_POSTED_BUCKETS 0x01
|
||||
#define MPT_LAN_RESOURCE_FLAG_RETURN_PEND_TRANSMITS 0x02
|
||||
|
||||
/*****************************************************************************/
|
||||
#ifdef MPT_LAN_IO_DEBUG
|
||||
#define dioprintk(x) printk x
|
||||
#else
|
||||
#define dioprintk(x)
|
||||
#endif
|
||||
|
||||
#ifdef MPT_LAN_DEBUG
|
||||
#define dlprintk(x) printk x
|
||||
#else
|
||||
#define dlprintk(x)
|
||||
#endif
|
||||
|
||||
#define NETDEV_TO_LANPRIV_PTR(d) ((struct mpt_lan_priv *)(d)->priv)
|
||||
#define NETDEV_PTR_TO_IOC_NAME_s(d) (NETDEV_TO_LANPRIV_PTR(d)->mpt_dev->name)
|
||||
#define IOC_AND_NETDEV_NAMES_s_s(d) NETDEV_PTR_TO_IOC_NAME_s(d), (d)->name
|
||||
|
||||
/*****************************************************************************/
|
||||
#endif
|
||||
|
||||
6086
extra/linux-2.6.10/drivers/message/fusion/mptscsih.c
Normal file
6086
extra/linux-2.6.10/drivers/message/fusion/mptscsih.c
Normal file
File diff suppressed because it is too large
Load Diff
102
extra/linux-2.6.10/drivers/message/fusion/mptscsih.h
Normal file
102
extra/linux-2.6.10/drivers/message/fusion/mptscsih.h
Normal file
@@ -0,0 +1,102 @@
|
||||
/*
|
||||
* linux/drivers/message/fusion/mptscsih.h
|
||||
* High performance SCSI / Fibre Channel SCSI Host device driver.
|
||||
* For use with PCI chip/adapter(s):
|
||||
* LSIFC9xx/LSI409xx Fibre Channel
|
||||
* running LSI Logic Fusion MPT (Message Passing Technology) firmware.
|
||||
*
|
||||
* Credits:
|
||||
* This driver would not exist if not for Alan Cox's development
|
||||
* of the linux i2o driver.
|
||||
*
|
||||
* A huge debt of gratitude is owed to David S. Miller (DaveM)
|
||||
* for fixing much of the stupid and broken stuff in the early
|
||||
* driver while porting to sparc64 platform. THANK YOU!
|
||||
*
|
||||
* (see also mptbase.c)
|
||||
*
|
||||
* Copyright (c) 1999-2004 LSI Logic Corporation
|
||||
* Originally By: Steven J. Ralston
|
||||
* (mailto:netscape.net)
|
||||
* (mailto:mpt_linux_developer@lsil.com)
|
||||
*
|
||||
* $Id: mptscsih.h,v 1.21 2002/12/03 21:26:35 pdelaney Exp $
|
||||
*/
|
||||
/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
|
||||
/*
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; version 2 of the License.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
NO WARRANTY
|
||||
THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR
|
||||
CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT
|
||||
LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
|
||||
MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is
|
||||
solely responsible for determining the appropriateness of using and
|
||||
distributing the Program and assumes all risks associated with its
|
||||
exercise of rights under this Agreement, including but not limited to
|
||||
the risks and costs of program errors, damage to or loss of data,
|
||||
programs or equipment, and unavailability or interruption of operations.
|
||||
|
||||
DISCLAIMER OF LIABILITY
|
||||
NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY
|
||||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), 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 OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
|
||||
HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#ifndef SCSIHOST_H_INCLUDED
|
||||
#define SCSIHOST_H_INCLUDED
|
||||
|
||||
/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
|
||||
/*
|
||||
* SCSI Public stuff...
|
||||
*/
|
||||
|
||||
#define MPT_SCSI_CMD_PER_DEV_HIGH 31
|
||||
#define MPT_SCSI_CMD_PER_DEV_LOW 7
|
||||
|
||||
#define MPT_SCSI_CMD_PER_LUN 7
|
||||
|
||||
#define MPT_SCSI_MAX_SECTORS 8192
|
||||
|
||||
/* To disable domain validation, uncomment the
|
||||
* following line. No effect for FC devices.
|
||||
* For SCSI devices, driver will negotiate to
|
||||
* NVRAM settings (if available) or to maximum adapter
|
||||
* capabilities.
|
||||
*/
|
||||
|
||||
#define MPTSCSIH_ENABLE_DOMAIN_VALIDATION
|
||||
|
||||
|
||||
/* SCSI driver setup structure. Settings can be overridden
|
||||
* by command line options.
|
||||
*/
|
||||
#define MPTSCSIH_DOMAIN_VALIDATION 1
|
||||
#define MPTSCSIH_MAX_WIDTH 1
|
||||
#define MPTSCSIH_MIN_SYNC 0x08
|
||||
#define MPTSCSIH_SAF_TE 0
|
||||
|
||||
struct mptscsih_driver_setup
|
||||
{
|
||||
u8 dv;
|
||||
u8 max_width;
|
||||
u8 min_sync_factor;
|
||||
u8 saf_te;
|
||||
};
|
||||
|
||||
#endif
|
||||
75
extra/linux-2.6.10/drivers/message/i2o/Kconfig
Normal file
75
extra/linux-2.6.10/drivers/message/i2o/Kconfig
Normal file
@@ -0,0 +1,75 @@
|
||||
|
||||
menu "I2O device support"
|
||||
|
||||
config I2O
|
||||
tristate "I2O support"
|
||||
depends on PCI
|
||||
---help---
|
||||
The Intelligent Input/Output (I2O) architecture allows hardware
|
||||
drivers to be split into two parts: an operating system specific
|
||||
module called the OSM and an hardware specific module called the
|
||||
HDM. The OSM can talk to a whole range of HDM's, and ideally the
|
||||
HDM's are not OS dependent. This allows for the same HDM driver to
|
||||
be used under different operating systems if the relevant OSM is in
|
||||
place. In order for this to work, you need to have an I2O interface
|
||||
adapter card in your computer. This card contains a special I/O
|
||||
processor (IOP), thus allowing high speeds since the CPU does not
|
||||
have to deal with I/O.
|
||||
|
||||
If you say Y here, you will get a choice of interface adapter
|
||||
drivers and OSM's with the following questions.
|
||||
|
||||
To compile this support as a module, choose M here: the
|
||||
modules will be called i2o_core.
|
||||
|
||||
If unsure, say N.
|
||||
|
||||
config I2O_CONFIG
|
||||
tristate "I2O Configuration support"
|
||||
depends on PCI && I2O
|
||||
help
|
||||
Say Y for support of the configuration interface for the I2O adapters.
|
||||
If you have a RAID controller from Adaptec and you want to use the
|
||||
raidutils to manage your RAID array, you have to say Y here.
|
||||
|
||||
To compile this support as a module, choose M here: the
|
||||
module will be called i2o_config.
|
||||
|
||||
config I2O_BLOCK
|
||||
tristate "I2O Block OSM"
|
||||
depends on I2O
|
||||
help
|
||||
Include support for the I2O Block OSM. The Block OSM presents disk
|
||||
and other structured block devices to the operating system. If you
|
||||
are using an RAID controller, you could access the array only by
|
||||
the Block OSM driver. But it is possible to access the single disks
|
||||
by the SCSI OSM driver, for example to monitor the disks.
|
||||
|
||||
To compile this support as a module, choose M here: the
|
||||
module will be called i2o_block.
|
||||
|
||||
config I2O_SCSI
|
||||
tristate "I2O SCSI OSM"
|
||||
depends on I2O && SCSI
|
||||
help
|
||||
Allows direct SCSI access to SCSI devices on a SCSI or FibreChannel
|
||||
I2O controller. You can use both the SCSI and Block OSM together if
|
||||
you wish. To access a RAID array, you must use the Block OSM driver.
|
||||
But you could use the SCSI OSM driver to monitor the single disks.
|
||||
|
||||
To compile this support as a module, choose M here: the
|
||||
module will be called i2o_scsi.
|
||||
|
||||
config I2O_PROC
|
||||
tristate "I2O /proc support"
|
||||
depends on I2O
|
||||
help
|
||||
If you say Y here and to "/proc file system support", you will be
|
||||
able to read I2O related information from the virtual directory
|
||||
/proc/i2o.
|
||||
|
||||
To compile this support as a module, choose M here: the
|
||||
module will be called i2o_proc.
|
||||
|
||||
endmenu
|
||||
|
||||
13
extra/linux-2.6.10/drivers/message/i2o/Makefile
Normal file
13
extra/linux-2.6.10/drivers/message/i2o/Makefile
Normal file
@@ -0,0 +1,13 @@
|
||||
#
|
||||
# Makefile for the kernel I2O OSM.
|
||||
#
|
||||
# Note : at this point, these files are compiled on all systems.
|
||||
# In the future, some of these should be built conditionally.
|
||||
#
|
||||
|
||||
i2o_core-y += iop.o driver.o device.o debug.o pci.o exec-osm.o
|
||||
obj-$(CONFIG_I2O) += i2o_core.o
|
||||
obj-$(CONFIG_I2O_CONFIG)+= i2o_config.o
|
||||
obj-$(CONFIG_I2O_BLOCK) += i2o_block.o
|
||||
obj-$(CONFIG_I2O_SCSI) += i2o_scsi.o
|
||||
obj-$(CONFIG_I2O_PROC) += i2o_proc.o
|
||||
98
extra/linux-2.6.10/drivers/message/i2o/README
Normal file
98
extra/linux-2.6.10/drivers/message/i2o/README
Normal file
@@ -0,0 +1,98 @@
|
||||
|
||||
Linux I2O Support (c) Copyright 1999 Red Hat Software
|
||||
and others.
|
||||
|
||||
This program is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU General Public License
|
||||
as published by the Free Software Foundation; either version
|
||||
2 of the License, or (at your option) any later version.
|
||||
|
||||
AUTHORS (so far)
|
||||
|
||||
Alan Cox, Building Number Three Ltd.
|
||||
Core code, SCSI and Block OSMs
|
||||
|
||||
Steve Ralston, LSI Logic Corp.
|
||||
Debugging SCSI and Block OSM
|
||||
|
||||
Deepak Saxena, Intel Corp.
|
||||
Various core/block extensions
|
||||
/proc interface, bug fixes
|
||||
Ioctl interfaces for control
|
||||
Debugging LAN OSM
|
||||
|
||||
Philip Rumpf
|
||||
Fixed assorted dumb SMP locking bugs
|
||||
|
||||
Juha Sievanen, University of Helsinki Finland
|
||||
LAN OSM code
|
||||
/proc interface to LAN class
|
||||
Bug fixes
|
||||
Core code extensions
|
||||
|
||||
Auvo Häkkinen, University of Helsinki Finland
|
||||
LAN OSM code
|
||||
/Proc interface to LAN class
|
||||
Bug fixes
|
||||
Core code extensions
|
||||
|
||||
Taneli Vähäkangas, University of Helsinki Finland
|
||||
Fixes to i2o_config
|
||||
|
||||
CREDITS
|
||||
|
||||
This work was made possible by
|
||||
|
||||
Red Hat Software
|
||||
Funding for the Building #3 part of the project
|
||||
|
||||
Symbios Logic (Now LSI)
|
||||
Host adapters, hints, known to work platforms when I hit
|
||||
compatibility problems
|
||||
|
||||
BoxHill Corporation
|
||||
Loan of initial FibreChannel disk array used for development work.
|
||||
|
||||
European Comission
|
||||
Funding the work done by the University of Helsinki
|
||||
|
||||
SysKonnect
|
||||
Loan of FDDI and Gigabit Ethernet cards
|
||||
|
||||
ASUSTeK
|
||||
Loan of I2O motherboard
|
||||
|
||||
STATUS:
|
||||
|
||||
o The core setup works within limits.
|
||||
o The scsi layer seems to almost work.
|
||||
I'm still chasing down the hang bug.
|
||||
o The block OSM is mostly functional
|
||||
o LAN OSM works with FDDI and Ethernet cards.
|
||||
|
||||
TO DO:
|
||||
|
||||
General:
|
||||
o Provide hidden address space if asked
|
||||
o Long term message flow control
|
||||
o PCI IOP's without interrupts are not supported yet
|
||||
o Push FAIL handling into the core
|
||||
o DDM control interfaces for module load etc
|
||||
o Add I2O 2.0 support (Deffered to 2.5 kernel)
|
||||
|
||||
Block:
|
||||
o Multiple major numbers
|
||||
o Read ahead and cache handling stuff. Talk to Ingo and people
|
||||
o Power management
|
||||
o Finish Media changers
|
||||
|
||||
SCSI:
|
||||
o Find the right way to associate drives/luns/busses
|
||||
|
||||
Lan:
|
||||
o Performance tuning
|
||||
o Test Fibre Channel code
|
||||
|
||||
Tape:
|
||||
o Anyone seen anything implementing this ?
|
||||
(D.S: Will attempt to do so if spare cycles permit)
|
||||
394
extra/linux-2.6.10/drivers/message/i2o/README.ioctl
Normal file
394
extra/linux-2.6.10/drivers/message/i2o/README.ioctl
Normal file
@@ -0,0 +1,394 @@
|
||||
|
||||
Linux I2O User Space Interface
|
||||
rev 0.3 - 04/20/99
|
||||
|
||||
=============================================================================
|
||||
Originally written by Deepak Saxena(deepak@plexity.net)
|
||||
Currently maintained by Deepak Saxena(deepak@plexity.net)
|
||||
=============================================================================
|
||||
|
||||
I. Introduction
|
||||
|
||||
The Linux I2O subsystem provides a set of ioctl() commands that can be
|
||||
utilized by user space applications to communicate with IOPs and devices
|
||||
on individual IOPs. This document defines the specific ioctl() commands
|
||||
that are available to the user and provides examples of their uses.
|
||||
|
||||
This document assumes the reader is familiar with or has access to the
|
||||
I2O specification as no I2O message parameters are outlined. For information
|
||||
on the specification, see http://www.i2osig.org
|
||||
|
||||
This document and the I2O user space interface are currently maintained
|
||||
by Deepak Saxena. Please send all comments, errata, and bug fixes to
|
||||
deepak@csociety.purdue.edu
|
||||
|
||||
II. IOP Access
|
||||
|
||||
Access to the I2O subsystem is provided through the device file named
|
||||
/dev/i2o/ctl. This file is a character file with major number 10 and minor
|
||||
number 166. It can be created through the following command:
|
||||
|
||||
mknod /dev/i2o/ctl c 10 166
|
||||
|
||||
III. Determining the IOP Count
|
||||
|
||||
SYNOPSIS
|
||||
|
||||
ioctl(fd, I2OGETIOPS, int *count);
|
||||
|
||||
u8 count[MAX_I2O_CONTROLLERS];
|
||||
|
||||
DESCRIPTION
|
||||
|
||||
This function returns the system's active IOP table. count should
|
||||
point to a buffer containing MAX_I2O_CONTROLLERS entries. Upon
|
||||
returning, each entry will contain a non-zero value if the given
|
||||
IOP unit is active, and NULL if it is inactive or non-existent.
|
||||
|
||||
RETURN VALUE.
|
||||
|
||||
Returns 0 if no errors occur, and -1 otherwise. If an error occurs,
|
||||
errno is set appropriately:
|
||||
|
||||
EFAULT Invalid user space pointer was passed
|
||||
|
||||
IV. Getting Hardware Resource Table
|
||||
|
||||
SYNOPSIS
|
||||
|
||||
ioctl(fd, I2OHRTGET, struct i2o_cmd_hrt *hrt);
|
||||
|
||||
struct i2o_cmd_hrtlct
|
||||
{
|
||||
u32 iop; /* IOP unit number */
|
||||
void *resbuf; /* Buffer for result */
|
||||
u32 *reslen; /* Buffer length in bytes */
|
||||
};
|
||||
|
||||
DESCRIPTION
|
||||
|
||||
This function returns the Hardware Resource Table of the IOP specified
|
||||
by hrt->iop in the buffer pointed to by hrt->resbuf. The actual size of
|
||||
the data is written into *(hrt->reslen).
|
||||
|
||||
RETURNS
|
||||
|
||||
This function returns 0 if no errors occur. If an error occurs, -1
|
||||
is returned and errno is set appropriately:
|
||||
|
||||
EFAULT Invalid user space pointer was passed
|
||||
ENXIO Invalid IOP number
|
||||
ENOBUFS Buffer not large enough. If this occurs, the required
|
||||
buffer length is written into *(hrt->reslen)
|
||||
|
||||
V. Getting Logical Configuration Table
|
||||
|
||||
SYNOPSIS
|
||||
|
||||
ioctl(fd, I2OLCTGET, struct i2o_cmd_lct *lct);
|
||||
|
||||
struct i2o_cmd_hrtlct
|
||||
{
|
||||
u32 iop; /* IOP unit number */
|
||||
void *resbuf; /* Buffer for result */
|
||||
u32 *reslen; /* Buffer length in bytes */
|
||||
};
|
||||
|
||||
DESCRIPTION
|
||||
|
||||
This function returns the Logical Configuration Table of the IOP specified
|
||||
by lct->iop in the buffer pointed to by lct->resbuf. The actual size of
|
||||
the data is written into *(lct->reslen).
|
||||
|
||||
RETURNS
|
||||
|
||||
This function returns 0 if no errors occur. If an error occurs, -1
|
||||
is returned and errno is set appropriately:
|
||||
|
||||
EFAULT Invalid user space pointer was passed
|
||||
ENXIO Invalid IOP number
|
||||
ENOBUFS Buffer not large enough. If this occurs, the required
|
||||
buffer length is written into *(lct->reslen)
|
||||
|
||||
VI. Settting Parameters
|
||||
|
||||
SYNOPSIS
|
||||
|
||||
ioctl(fd, I2OPARMSET, struct i2o_parm_setget *ops);
|
||||
|
||||
struct i2o_cmd_psetget
|
||||
{
|
||||
u32 iop; /* IOP unit number */
|
||||
u32 tid; /* Target device TID */
|
||||
void *opbuf; /* Operation List buffer */
|
||||
u32 oplen; /* Operation List buffer length in bytes */
|
||||
void *resbuf; /* Result List buffer */
|
||||
u32 *reslen; /* Result List buffer length in bytes */
|
||||
};
|
||||
|
||||
DESCRIPTION
|
||||
|
||||
This function posts a UtilParamsSet message to the device identified
|
||||
by ops->iop and ops->tid. The operation list for the message is
|
||||
sent through the ops->opbuf buffer, and the result list is written
|
||||
into the buffer pointed to by ops->resbuf. The number of bytes
|
||||
written is placed into *(ops->reslen).
|
||||
|
||||
RETURNS
|
||||
|
||||
The return value is the size in bytes of the data written into
|
||||
ops->resbuf if no errors occur. If an error occurs, -1 is returned
|
||||
and errno is set appropriatly:
|
||||
|
||||
EFAULT Invalid user space pointer was passed
|
||||
ENXIO Invalid IOP number
|
||||
ENOBUFS Buffer not large enough. If this occurs, the required
|
||||
buffer length is written into *(ops->reslen)
|
||||
ETIMEDOUT Timeout waiting for reply message
|
||||
ENOMEM Kernel memory allocation error
|
||||
|
||||
A return value of 0 does not mean that the value was actually
|
||||
changed properly on the IOP. The user should check the result
|
||||
list to determine the specific status of the transaction.
|
||||
|
||||
VII. Getting Parameters
|
||||
|
||||
SYNOPSIS
|
||||
|
||||
ioctl(fd, I2OPARMGET, struct i2o_parm_setget *ops);
|
||||
|
||||
struct i2o_parm_setget
|
||||
{
|
||||
u32 iop; /* IOP unit number */
|
||||
u32 tid; /* Target device TID */
|
||||
void *opbuf; /* Operation List buffer */
|
||||
u32 oplen; /* Operation List buffer length in bytes */
|
||||
void *resbuf; /* Result List buffer */
|
||||
u32 *reslen; /* Result List buffer length in bytes */
|
||||
};
|
||||
|
||||
DESCRIPTION
|
||||
|
||||
This function posts a UtilParamsGet message to the device identified
|
||||
by ops->iop and ops->tid. The operation list for the message is
|
||||
sent through the ops->opbuf buffer, and the result list is written
|
||||
into the buffer pointed to by ops->resbuf. The actual size of data
|
||||
written is placed into *(ops->reslen).
|
||||
|
||||
RETURNS
|
||||
|
||||
EFAULT Invalid user space pointer was passed
|
||||
ENXIO Invalid IOP number
|
||||
ENOBUFS Buffer not large enough. If this occurs, the required
|
||||
buffer length is written into *(ops->reslen)
|
||||
ETIMEDOUT Timeout waiting for reply message
|
||||
ENOMEM Kernel memory allocation error
|
||||
|
||||
A return value of 0 does not mean that the value was actually
|
||||
properly retreived. The user should check the result list
|
||||
to determine the specific status of the transaction.
|
||||
|
||||
VIII. Downloading Software
|
||||
|
||||
SYNOPSIS
|
||||
|
||||
ioctl(fd, I2OSWDL, struct i2o_sw_xfer *sw);
|
||||
|
||||
struct i2o_sw_xfer
|
||||
{
|
||||
u32 iop; /* IOP unit number */
|
||||
u8 flags; /* DownloadFlags field */
|
||||
u8 sw_type; /* Software type */
|
||||
u32 sw_id; /* Software ID */
|
||||
void *buf; /* Pointer to software buffer */
|
||||
u32 *swlen; /* Length of software buffer */
|
||||
u32 *maxfrag; /* Number of fragments */
|
||||
u32 *curfrag; /* Current fragment number */
|
||||
};
|
||||
|
||||
DESCRIPTION
|
||||
|
||||
This function downloads a software fragment pointed by sw->buf
|
||||
to the iop identified by sw->iop. The DownloadFlags, SwID, SwType
|
||||
and SwSize fields of the ExecSwDownload message are filled in with
|
||||
the values of sw->flags, sw->sw_id, sw->sw_type and *(sw->swlen).
|
||||
|
||||
The fragments _must_ be sent in order and be 8K in size. The last
|
||||
fragment _may_ be shorter, however. The kernel will compute its
|
||||
size based on information in the sw->swlen field.
|
||||
|
||||
Please note that SW transfers can take a long time.
|
||||
|
||||
RETURNS
|
||||
|
||||
This function returns 0 no errors occur. If an error occurs, -1
|
||||
is returned and errno is set appropriatly:
|
||||
|
||||
EFAULT Invalid user space pointer was passed
|
||||
ENXIO Invalid IOP number
|
||||
ETIMEDOUT Timeout waiting for reply message
|
||||
ENOMEM Kernel memory allocation error
|
||||
|
||||
IX. Uploading Software
|
||||
|
||||
SYNOPSIS
|
||||
|
||||
ioctl(fd, I2OSWUL, struct i2o_sw_xfer *sw);
|
||||
|
||||
struct i2o_sw_xfer
|
||||
{
|
||||
u32 iop; /* IOP unit number */
|
||||
u8 flags; /* UploadFlags */
|
||||
u8 sw_type; /* Software type */
|
||||
u32 sw_id; /* Software ID */
|
||||
void *buf; /* Pointer to software buffer */
|
||||
u32 *swlen; /* Length of software buffer */
|
||||
u32 *maxfrag; /* Number of fragments */
|
||||
u32 *curfrag; /* Current fragment number */
|
||||
};
|
||||
|
||||
DESCRIPTION
|
||||
|
||||
This function uploads a software fragment from the IOP identified
|
||||
by sw->iop, sw->sw_type, sw->sw_id and optionally sw->swlen fields.
|
||||
The UploadFlags, SwID, SwType and SwSize fields of the ExecSwUpload
|
||||
message are filled in with the values of sw->flags, sw->sw_id,
|
||||
sw->sw_type and *(sw->swlen).
|
||||
|
||||
The fragments _must_ be requested in order and be 8K in size. The
|
||||
user is responsible for allocating memory pointed by sw->buf. The
|
||||
last fragment _may_ be shorter.
|
||||
|
||||
Please note that SW transfers can take a long time.
|
||||
|
||||
RETURNS
|
||||
|
||||
This function returns 0 if no errors occur. If an error occurs, -1
|
||||
is returned and errno is set appropriatly:
|
||||
|
||||
EFAULT Invalid user space pointer was passed
|
||||
ENXIO Invalid IOP number
|
||||
ETIMEDOUT Timeout waiting for reply message
|
||||
ENOMEM Kernel memory allocation error
|
||||
|
||||
X. Removing Software
|
||||
|
||||
SYNOPSIS
|
||||
|
||||
ioctl(fd, I2OSWDEL, struct i2o_sw_xfer *sw);
|
||||
|
||||
struct i2o_sw_xfer
|
||||
{
|
||||
u32 iop; /* IOP unit number */
|
||||
u8 flags; /* RemoveFlags */
|
||||
u8 sw_type; /* Software type */
|
||||
u32 sw_id; /* Software ID */
|
||||
void *buf; /* Unused */
|
||||
u32 *swlen; /* Length of the software data */
|
||||
u32 *maxfrag; /* Unused */
|
||||
u32 *curfrag; /* Unused */
|
||||
};
|
||||
|
||||
DESCRIPTION
|
||||
|
||||
This function removes software from the IOP identified by sw->iop.
|
||||
The RemoveFlags, SwID, SwType and SwSize fields of the ExecSwRemove message
|
||||
are filled in with the values of sw->flags, sw->sw_id, sw->sw_type and
|
||||
*(sw->swlen). Give zero in *(sw->len) if the value is unknown. IOP uses
|
||||
*(sw->swlen) value to verify correct identication of the module to remove.
|
||||
The actual size of the module is written into *(sw->swlen).
|
||||
|
||||
RETURNS
|
||||
|
||||
This function returns 0 if no errors occur. If an error occurs, -1
|
||||
is returned and errno is set appropriatly:
|
||||
|
||||
EFAULT Invalid user space pointer was passed
|
||||
ENXIO Invalid IOP number
|
||||
ETIMEDOUT Timeout waiting for reply message
|
||||
ENOMEM Kernel memory allocation error
|
||||
|
||||
X. Validating Configuration
|
||||
|
||||
SYNOPSIS
|
||||
|
||||
ioctl(fd, I2OVALIDATE, int *iop);
|
||||
u32 iop;
|
||||
|
||||
DESCRIPTION
|
||||
|
||||
This function posts an ExecConfigValidate message to the controller
|
||||
identified by iop. This message indicates that the current
|
||||
configuration is accepted. The iop changes the status of suspect drivers
|
||||
to valid and may delete old drivers from its store.
|
||||
|
||||
RETURNS
|
||||
|
||||
This function returns 0 if no erro occur. If an error occurs, -1 is
|
||||
returned and errno is set appropriatly:
|
||||
|
||||
ETIMEDOUT Timeout waiting for reply message
|
||||
ENXIO Invalid IOP number
|
||||
|
||||
XI. Configuration Dialog
|
||||
|
||||
SYNOPSIS
|
||||
|
||||
ioctl(fd, I2OHTML, struct i2o_html *htquery);
|
||||
struct i2o_html
|
||||
{
|
||||
u32 iop; /* IOP unit number */
|
||||
u32 tid; /* Target device ID */
|
||||
u32 page; /* HTML page */
|
||||
void *resbuf; /* Buffer for reply HTML page */
|
||||
u32 *reslen; /* Length in bytes of reply buffer */
|
||||
void *qbuf; /* Pointer to HTTP query string */
|
||||
u32 qlen; /* Length in bytes of query string buffer */
|
||||
};
|
||||
|
||||
DESCRIPTION
|
||||
|
||||
This function posts an UtilConfigDialog message to the device identified
|
||||
by htquery->iop and htquery->tid. The requested HTML page number is
|
||||
provided by the htquery->page field, and the resultant data is stored
|
||||
in the buffer pointed to by htquery->resbuf. If there is an HTTP query
|
||||
string that is to be sent to the device, it should be sent in the buffer
|
||||
pointed to by htquery->qbuf. If there is no query string, this field
|
||||
should be set to NULL. The actual size of the reply received is written
|
||||
into *(htquery->reslen).
|
||||
|
||||
RETURNS
|
||||
|
||||
This function returns 0 if no error occur. If an error occurs, -1
|
||||
is returned and errno is set appropriatly:
|
||||
|
||||
EFAULT Invalid user space pointer was passed
|
||||
ENXIO Invalid IOP number
|
||||
ENOBUFS Buffer not large enough. If this occurs, the required
|
||||
buffer length is written into *(ops->reslen)
|
||||
ETIMEDOUT Timeout waiting for reply message
|
||||
ENOMEM Kernel memory allocation error
|
||||
|
||||
XII. Events
|
||||
|
||||
In the process of determining this. Current idea is to have use
|
||||
the select() interface to allow user apps to periodically poll
|
||||
the /dev/i2o/ctl device for events. When select() notifies the user
|
||||
that an event is available, the user would call read() to retrieve
|
||||
a list of all the events that are pending for the specific device.
|
||||
|
||||
=============================================================================
|
||||
Revision History
|
||||
=============================================================================
|
||||
|
||||
Rev 0.1 - 04/01/99
|
||||
- Initial revision
|
||||
|
||||
Rev 0.2 - 04/06/99
|
||||
- Changed return values to match UNIX ioctl() standard. Only return values
|
||||
are 0 and -1. All errors are reported through errno.
|
||||
- Added summary of proposed possible event interfaces
|
||||
|
||||
Rev 0.3 - 04/20/99
|
||||
- Changed all ioctls() to use pointers to user data instead of actual data
|
||||
- Updated error values to match the code
|
||||
481
extra/linux-2.6.10/drivers/message/i2o/debug.c
Normal file
481
extra/linux-2.6.10/drivers/message/i2o/debug.c
Normal file
@@ -0,0 +1,481 @@
|
||||
#include <linux/config.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/pci.h>
|
||||
#include <linux/i2o.h>
|
||||
|
||||
extern struct i2o_driver **i2o_drivers;
|
||||
extern unsigned int i2o_max_drivers;
|
||||
static void i2o_report_util_cmd(u8 cmd);
|
||||
static void i2o_report_exec_cmd(u8 cmd);
|
||||
static void i2o_report_fail_status(u8 req_status, u32 * msg);
|
||||
static void i2o_report_common_status(u8 req_status);
|
||||
static void i2o_report_common_dsc(u16 detailed_status);
|
||||
|
||||
/*
|
||||
* Used for error reporting/debugging purposes.
|
||||
* Report Cmd name, Request status, Detailed Status.
|
||||
*/
|
||||
void i2o_report_status(const char *severity, const char *str,
|
||||
struct i2o_message *m)
|
||||
{
|
||||
u32 *msg = (u32 *) m;
|
||||
u8 cmd = (msg[1] >> 24) & 0xFF;
|
||||
u8 req_status = (msg[4] >> 24) & 0xFF;
|
||||
u16 detailed_status = msg[4] & 0xFFFF;
|
||||
//struct i2o_driver *h = i2o_drivers[msg[2] & (i2o_max_drivers-1)];
|
||||
|
||||
if (cmd == I2O_CMD_UTIL_EVT_REGISTER)
|
||||
return; // No status in this reply
|
||||
|
||||
printk(KERN_DEBUG "%s%s: ", severity, str);
|
||||
|
||||
if (cmd < 0x1F) // Utility cmd
|
||||
i2o_report_util_cmd(cmd);
|
||||
|
||||
else if (cmd >= 0xA0 && cmd <= 0xEF) // Executive cmd
|
||||
i2o_report_exec_cmd(cmd);
|
||||
else
|
||||
printk(KERN_DEBUG "Cmd = %0#2x, ", cmd); // Other cmds
|
||||
|
||||
if (msg[0] & MSG_FAIL) {
|
||||
i2o_report_fail_status(req_status, msg);
|
||||
return;
|
||||
}
|
||||
|
||||
i2o_report_common_status(req_status);
|
||||
|
||||
if (cmd < 0x1F || (cmd >= 0xA0 && cmd <= 0xEF))
|
||||
i2o_report_common_dsc(detailed_status);
|
||||
else
|
||||
printk(KERN_DEBUG " / DetailedStatus = %0#4x.\n",
|
||||
detailed_status);
|
||||
}
|
||||
|
||||
/* Used to dump a message to syslog during debugging */
|
||||
void i2o_dump_message(struct i2o_message *m)
|
||||
{
|
||||
#ifdef DEBUG
|
||||
u32 *msg = (u32 *) m;
|
||||
int i;
|
||||
printk(KERN_INFO "Dumping I2O message size %d @ %p\n",
|
||||
msg[0] >> 16 & 0xffff, msg);
|
||||
for (i = 0; i < ((msg[0] >> 16) & 0xffff); i++)
|
||||
printk(KERN_INFO " msg[%d] = %0#10x\n", i, msg[i]);
|
||||
#endif
|
||||
}
|
||||
|
||||
/*
|
||||
* Used for error reporting/debugging purposes.
|
||||
* Following fail status are common to all classes.
|
||||
* The preserved message must be handled in the reply handler.
|
||||
*/
|
||||
static void i2o_report_fail_status(u8 req_status, u32 * msg)
|
||||
{
|
||||
static char *FAIL_STATUS[] = {
|
||||
"0x80", /* not used */
|
||||
"SERVICE_SUSPENDED", /* 0x81 */
|
||||
"SERVICE_TERMINATED", /* 0x82 */
|
||||
"CONGESTION",
|
||||
"FAILURE",
|
||||
"STATE_ERROR",
|
||||
"TIME_OUT",
|
||||
"ROUTING_FAILURE",
|
||||
"INVALID_VERSION",
|
||||
"INVALID_OFFSET",
|
||||
"INVALID_MSG_FLAGS",
|
||||
"FRAME_TOO_SMALL",
|
||||
"FRAME_TOO_LARGE",
|
||||
"INVALID_TARGET_ID",
|
||||
"INVALID_INITIATOR_ID",
|
||||
"INVALID_INITIATOR_CONTEX", /* 0x8F */
|
||||
"UNKNOWN_FAILURE" /* 0xFF */
|
||||
};
|
||||
|
||||
if (req_status == I2O_FSC_TRANSPORT_UNKNOWN_FAILURE)
|
||||
printk(KERN_DEBUG "TRANSPORT_UNKNOWN_FAILURE (%0#2x)\n.",
|
||||
req_status);
|
||||
else
|
||||
printk(KERN_DEBUG "TRANSPORT_%s.\n",
|
||||
FAIL_STATUS[req_status & 0x0F]);
|
||||
|
||||
/* Dump some details */
|
||||
|
||||
printk(KERN_ERR " InitiatorId = %d, TargetId = %d\n",
|
||||
(msg[1] >> 12) & 0xFFF, msg[1] & 0xFFF);
|
||||
printk(KERN_ERR " LowestVersion = 0x%02X, HighestVersion = 0x%02X\n",
|
||||
(msg[4] >> 8) & 0xFF, msg[4] & 0xFF);
|
||||
printk(KERN_ERR " FailingHostUnit = 0x%04X, FailingIOP = 0x%03X\n",
|
||||
msg[5] >> 16, msg[5] & 0xFFF);
|
||||
|
||||
printk(KERN_ERR " Severity: 0x%02X ", (msg[4] >> 16) & 0xFF);
|
||||
if (msg[4] & (1 << 16))
|
||||
printk(KERN_DEBUG "(FormatError), "
|
||||
"this msg can never be delivered/processed.\n");
|
||||
if (msg[4] & (1 << 17))
|
||||
printk(KERN_DEBUG "(PathError), "
|
||||
"this msg can no longer be delivered/processed.\n");
|
||||
if (msg[4] & (1 << 18))
|
||||
printk(KERN_DEBUG "(PathState), "
|
||||
"the system state does not allow delivery.\n");
|
||||
if (msg[4] & (1 << 19))
|
||||
printk(KERN_DEBUG
|
||||
"(Congestion), resources temporarily not available;"
|
||||
"do not retry immediately.\n");
|
||||
}
|
||||
|
||||
/*
|
||||
* Used for error reporting/debugging purposes.
|
||||
* Following reply status are common to all classes.
|
||||
*/
|
||||
static void i2o_report_common_status(u8 req_status)
|
||||
{
|
||||
static char *REPLY_STATUS[] = {
|
||||
"SUCCESS",
|
||||
"ABORT_DIRTY",
|
||||
"ABORT_NO_DATA_TRANSFER",
|
||||
"ABORT_PARTIAL_TRANSFER",
|
||||
"ERROR_DIRTY",
|
||||
"ERROR_NO_DATA_TRANSFER",
|
||||
"ERROR_PARTIAL_TRANSFER",
|
||||
"PROCESS_ABORT_DIRTY",
|
||||
"PROCESS_ABORT_NO_DATA_TRANSFER",
|
||||
"PROCESS_ABORT_PARTIAL_TRANSFER",
|
||||
"TRANSACTION_ERROR",
|
||||
"PROGRESS_REPORT"
|
||||
};
|
||||
|
||||
if (req_status >= ARRAY_SIZE(REPLY_STATUS))
|
||||
printk(KERN_DEBUG "RequestStatus = %0#2x", req_status);
|
||||
else
|
||||
printk(KERN_DEBUG "%s", REPLY_STATUS[req_status]);
|
||||
}
|
||||
|
||||
/*
|
||||
* Used for error reporting/debugging purposes.
|
||||
* Following detailed status are valid for executive class,
|
||||
* utility class, DDM class and for transaction error replies.
|
||||
*/
|
||||
static void i2o_report_common_dsc(u16 detailed_status)
|
||||
{
|
||||
static char *COMMON_DSC[] = {
|
||||
"SUCCESS",
|
||||
"0x01", // not used
|
||||
"BAD_KEY",
|
||||
"TCL_ERROR",
|
||||
"REPLY_BUFFER_FULL",
|
||||
"NO_SUCH_PAGE",
|
||||
"INSUFFICIENT_RESOURCE_SOFT",
|
||||
"INSUFFICIENT_RESOURCE_HARD",
|
||||
"0x08", // not used
|
||||
"CHAIN_BUFFER_TOO_LARGE",
|
||||
"UNSUPPORTED_FUNCTION",
|
||||
"DEVICE_LOCKED",
|
||||
"DEVICE_RESET",
|
||||
"INAPPROPRIATE_FUNCTION",
|
||||
"INVALID_INITIATOR_ADDRESS",
|
||||
"INVALID_MESSAGE_FLAGS",
|
||||
"INVALID_OFFSET",
|
||||
"INVALID_PARAMETER",
|
||||
"INVALID_REQUEST",
|
||||
"INVALID_TARGET_ADDRESS",
|
||||
"MESSAGE_TOO_LARGE",
|
||||
"MESSAGE_TOO_SMALL",
|
||||
"MISSING_PARAMETER",
|
||||
"TIMEOUT",
|
||||
"UNKNOWN_ERROR",
|
||||
"UNKNOWN_FUNCTION",
|
||||
"UNSUPPORTED_VERSION",
|
||||
"DEVICE_BUSY",
|
||||
"DEVICE_NOT_AVAILABLE"
|
||||
};
|
||||
|
||||
if (detailed_status > I2O_DSC_DEVICE_NOT_AVAILABLE)
|
||||
printk(KERN_DEBUG " / DetailedStatus = %0#4x.\n",
|
||||
detailed_status);
|
||||
else
|
||||
printk(KERN_DEBUG " / %s.\n", COMMON_DSC[detailed_status]);
|
||||
}
|
||||
|
||||
/*
|
||||
* Used for error reporting/debugging purposes
|
||||
*/
|
||||
static void i2o_report_util_cmd(u8 cmd)
|
||||
{
|
||||
switch (cmd) {
|
||||
case I2O_CMD_UTIL_NOP:
|
||||
printk(KERN_DEBUG "UTIL_NOP, ");
|
||||
break;
|
||||
case I2O_CMD_UTIL_ABORT:
|
||||
printk(KERN_DEBUG "UTIL_ABORT, ");
|
||||
break;
|
||||
case I2O_CMD_UTIL_CLAIM:
|
||||
printk(KERN_DEBUG "UTIL_CLAIM, ");
|
||||
break;
|
||||
case I2O_CMD_UTIL_RELEASE:
|
||||
printk(KERN_DEBUG "UTIL_CLAIM_RELEASE, ");
|
||||
break;
|
||||
case I2O_CMD_UTIL_CONFIG_DIALOG:
|
||||
printk(KERN_DEBUG "UTIL_CONFIG_DIALOG, ");
|
||||
break;
|
||||
case I2O_CMD_UTIL_DEVICE_RESERVE:
|
||||
printk(KERN_DEBUG "UTIL_DEVICE_RESERVE, ");
|
||||
break;
|
||||
case I2O_CMD_UTIL_DEVICE_RELEASE:
|
||||
printk(KERN_DEBUG "UTIL_DEVICE_RELEASE, ");
|
||||
break;
|
||||
case I2O_CMD_UTIL_EVT_ACK:
|
||||
printk(KERN_DEBUG "UTIL_EVENT_ACKNOWLEDGE, ");
|
||||
break;
|
||||
case I2O_CMD_UTIL_EVT_REGISTER:
|
||||
printk(KERN_DEBUG "UTIL_EVENT_REGISTER, ");
|
||||
break;
|
||||
case I2O_CMD_UTIL_LOCK:
|
||||
printk(KERN_DEBUG "UTIL_LOCK, ");
|
||||
break;
|
||||
case I2O_CMD_UTIL_LOCK_RELEASE:
|
||||
printk(KERN_DEBUG "UTIL_LOCK_RELEASE, ");
|
||||
break;
|
||||
case I2O_CMD_UTIL_PARAMS_GET:
|
||||
printk(KERN_DEBUG "UTIL_PARAMS_GET, ");
|
||||
break;
|
||||
case I2O_CMD_UTIL_PARAMS_SET:
|
||||
printk(KERN_DEBUG "UTIL_PARAMS_SET, ");
|
||||
break;
|
||||
case I2O_CMD_UTIL_REPLY_FAULT_NOTIFY:
|
||||
printk(KERN_DEBUG "UTIL_REPLY_FAULT_NOTIFY, ");
|
||||
break;
|
||||
default:
|
||||
printk(KERN_DEBUG "Cmd = %0#2x, ", cmd);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Used for error reporting/debugging purposes
|
||||
*/
|
||||
static void i2o_report_exec_cmd(u8 cmd)
|
||||
{
|
||||
switch (cmd) {
|
||||
case I2O_CMD_ADAPTER_ASSIGN:
|
||||
printk(KERN_DEBUG "EXEC_ADAPTER_ASSIGN, ");
|
||||
break;
|
||||
case I2O_CMD_ADAPTER_READ:
|
||||
printk(KERN_DEBUG "EXEC_ADAPTER_READ, ");
|
||||
break;
|
||||
case I2O_CMD_ADAPTER_RELEASE:
|
||||
printk(KERN_DEBUG "EXEC_ADAPTER_RELEASE, ");
|
||||
break;
|
||||
case I2O_CMD_BIOS_INFO_SET:
|
||||
printk(KERN_DEBUG "EXEC_BIOS_INFO_SET, ");
|
||||
break;
|
||||
case I2O_CMD_BOOT_DEVICE_SET:
|
||||
printk(KERN_DEBUG "EXEC_BOOT_DEVICE_SET, ");
|
||||
break;
|
||||
case I2O_CMD_CONFIG_VALIDATE:
|
||||
printk(KERN_DEBUG "EXEC_CONFIG_VALIDATE, ");
|
||||
break;
|
||||
case I2O_CMD_CONN_SETUP:
|
||||
printk(KERN_DEBUG "EXEC_CONN_SETUP, ");
|
||||
break;
|
||||
case I2O_CMD_DDM_DESTROY:
|
||||
printk(KERN_DEBUG "EXEC_DDM_DESTROY, ");
|
||||
break;
|
||||
case I2O_CMD_DDM_ENABLE:
|
||||
printk(KERN_DEBUG "EXEC_DDM_ENABLE, ");
|
||||
break;
|
||||
case I2O_CMD_DDM_QUIESCE:
|
||||
printk(KERN_DEBUG "EXEC_DDM_QUIESCE, ");
|
||||
break;
|
||||
case I2O_CMD_DDM_RESET:
|
||||
printk(KERN_DEBUG "EXEC_DDM_RESET, ");
|
||||
break;
|
||||
case I2O_CMD_DDM_SUSPEND:
|
||||
printk(KERN_DEBUG "EXEC_DDM_SUSPEND, ");
|
||||
break;
|
||||
case I2O_CMD_DEVICE_ASSIGN:
|
||||
printk(KERN_DEBUG "EXEC_DEVICE_ASSIGN, ");
|
||||
break;
|
||||
case I2O_CMD_DEVICE_RELEASE:
|
||||
printk(KERN_DEBUG "EXEC_DEVICE_RELEASE, ");
|
||||
break;
|
||||
case I2O_CMD_HRT_GET:
|
||||
printk(KERN_DEBUG "EXEC_HRT_GET, ");
|
||||
break;
|
||||
case I2O_CMD_ADAPTER_CLEAR:
|
||||
printk(KERN_DEBUG "EXEC_IOP_CLEAR, ");
|
||||
break;
|
||||
case I2O_CMD_ADAPTER_CONNECT:
|
||||
printk(KERN_DEBUG "EXEC_IOP_CONNECT, ");
|
||||
break;
|
||||
case I2O_CMD_ADAPTER_RESET:
|
||||
printk(KERN_DEBUG "EXEC_IOP_RESET, ");
|
||||
break;
|
||||
case I2O_CMD_LCT_NOTIFY:
|
||||
printk(KERN_DEBUG "EXEC_LCT_NOTIFY, ");
|
||||
break;
|
||||
case I2O_CMD_OUTBOUND_INIT:
|
||||
printk(KERN_DEBUG "EXEC_OUTBOUND_INIT, ");
|
||||
break;
|
||||
case I2O_CMD_PATH_ENABLE:
|
||||
printk(KERN_DEBUG "EXEC_PATH_ENABLE, ");
|
||||
break;
|
||||
case I2O_CMD_PATH_QUIESCE:
|
||||
printk(KERN_DEBUG "EXEC_PATH_QUIESCE, ");
|
||||
break;
|
||||
case I2O_CMD_PATH_RESET:
|
||||
printk(KERN_DEBUG "EXEC_PATH_RESET, ");
|
||||
break;
|
||||
case I2O_CMD_STATIC_MF_CREATE:
|
||||
printk(KERN_DEBUG "EXEC_STATIC_MF_CREATE, ");
|
||||
break;
|
||||
case I2O_CMD_STATIC_MF_RELEASE:
|
||||
printk(KERN_DEBUG "EXEC_STATIC_MF_RELEASE, ");
|
||||
break;
|
||||
case I2O_CMD_STATUS_GET:
|
||||
printk(KERN_DEBUG "EXEC_STATUS_GET, ");
|
||||
break;
|
||||
case I2O_CMD_SW_DOWNLOAD:
|
||||
printk(KERN_DEBUG "EXEC_SW_DOWNLOAD, ");
|
||||
break;
|
||||
case I2O_CMD_SW_UPLOAD:
|
||||
printk(KERN_DEBUG "EXEC_SW_UPLOAD, ");
|
||||
break;
|
||||
case I2O_CMD_SW_REMOVE:
|
||||
printk(KERN_DEBUG "EXEC_SW_REMOVE, ");
|
||||
break;
|
||||
case I2O_CMD_SYS_ENABLE:
|
||||
printk(KERN_DEBUG "EXEC_SYS_ENABLE, ");
|
||||
break;
|
||||
case I2O_CMD_SYS_MODIFY:
|
||||
printk(KERN_DEBUG "EXEC_SYS_MODIFY, ");
|
||||
break;
|
||||
case I2O_CMD_SYS_QUIESCE:
|
||||
printk(KERN_DEBUG "EXEC_SYS_QUIESCE, ");
|
||||
break;
|
||||
case I2O_CMD_SYS_TAB_SET:
|
||||
printk(KERN_DEBUG "EXEC_SYS_TAB_SET, ");
|
||||
break;
|
||||
default:
|
||||
printk(KERN_DEBUG "Cmd = %#02x, ", cmd);
|
||||
}
|
||||
}
|
||||
|
||||
void i2o_debug_state(struct i2o_controller *c)
|
||||
{
|
||||
printk(KERN_INFO "%s: State = ", c->name);
|
||||
switch (((i2o_status_block *) c->status_block.virt)->iop_state) {
|
||||
case 0x01:
|
||||
printk(KERN_DEBUG "INIT\n");
|
||||
break;
|
||||
case 0x02:
|
||||
printk(KERN_DEBUG "RESET\n");
|
||||
break;
|
||||
case 0x04:
|
||||
printk(KERN_DEBUG "HOLD\n");
|
||||
break;
|
||||
case 0x05:
|
||||
printk(KERN_DEBUG "READY\n");
|
||||
break;
|
||||
case 0x08:
|
||||
printk(KERN_DEBUG "OPERATIONAL\n");
|
||||
break;
|
||||
case 0x10:
|
||||
printk(KERN_DEBUG "FAILED\n");
|
||||
break;
|
||||
case 0x11:
|
||||
printk(KERN_DEBUG "FAULTED\n");
|
||||
break;
|
||||
default:
|
||||
printk(KERN_DEBUG "%x (unknown !!)\n",
|
||||
((i2o_status_block *) c->status_block.virt)->iop_state);
|
||||
}
|
||||
};
|
||||
|
||||
void i2o_dump_hrt(struct i2o_controller *c)
|
||||
{
|
||||
u32 *rows = (u32 *) c->hrt.virt;
|
||||
u8 *p = (u8 *) c->hrt.virt;
|
||||
u8 *d;
|
||||
int count;
|
||||
int length;
|
||||
int i;
|
||||
int state;
|
||||
|
||||
if (p[3] != 0) {
|
||||
printk(KERN_ERR
|
||||
"%s: HRT table for controller is too new a version.\n",
|
||||
c->name);
|
||||
return;
|
||||
}
|
||||
|
||||
count = p[0] | (p[1] << 8);
|
||||
length = p[2];
|
||||
|
||||
printk(KERN_INFO "%s: HRT has %d entries of %d bytes each.\n",
|
||||
c->name, count, length << 2);
|
||||
|
||||
rows += 2;
|
||||
|
||||
for (i = 0; i < count; i++) {
|
||||
printk(KERN_INFO "Adapter %08X: ", rows[0]);
|
||||
p = (u8 *) (rows + 1);
|
||||
d = (u8 *) (rows + 2);
|
||||
state = p[1] << 8 | p[0];
|
||||
|
||||
printk(KERN_DEBUG "TID %04X:[", state & 0xFFF);
|
||||
state >>= 12;
|
||||
if (state & (1 << 0))
|
||||
printk(KERN_DEBUG "H"); /* Hidden */
|
||||
if (state & (1 << 2)) {
|
||||
printk(KERN_DEBUG "P"); /* Present */
|
||||
if (state & (1 << 1))
|
||||
printk(KERN_DEBUG "C"); /* Controlled */
|
||||
}
|
||||
if (state > 9)
|
||||
printk(KERN_DEBUG "*"); /* Hard */
|
||||
|
||||
printk(KERN_DEBUG "]:");
|
||||
|
||||
switch (p[3] & 0xFFFF) {
|
||||
case 0:
|
||||
/* Adapter private bus - easy */
|
||||
printk(KERN_DEBUG
|
||||
"Local bus %d: I/O at 0x%04X Mem 0x%08X", p[2],
|
||||
d[1] << 8 | d[0], *(u32 *) (d + 4));
|
||||
break;
|
||||
case 1:
|
||||
/* ISA bus */
|
||||
printk(KERN_DEBUG
|
||||
"ISA %d: CSN %d I/O at 0x%04X Mem 0x%08X", p[2],
|
||||
d[2], d[1] << 8 | d[0], *(u32 *) (d + 4));
|
||||
break;
|
||||
|
||||
case 2: /* EISA bus */
|
||||
printk(KERN_DEBUG
|
||||
"EISA %d: Slot %d I/O at 0x%04X Mem 0x%08X",
|
||||
p[2], d[3], d[1] << 8 | d[0], *(u32 *) (d + 4));
|
||||
break;
|
||||
|
||||
case 3: /* MCA bus */
|
||||
printk(KERN_DEBUG
|
||||
"MCA %d: Slot %d I/O at 0x%04X Mem 0x%08X", p[2],
|
||||
d[3], d[1] << 8 | d[0], *(u32 *) (d + 4));
|
||||
break;
|
||||
|
||||
case 4: /* PCI bus */
|
||||
printk(KERN_DEBUG
|
||||
"PCI %d: Bus %d Device %d Function %d", p[2],
|
||||
d[2], d[1], d[0]);
|
||||
break;
|
||||
|
||||
case 0x80: /* Other */
|
||||
default:
|
||||
printk(KERN_DEBUG "Unsupported bus type.");
|
||||
break;
|
||||
}
|
||||
printk(KERN_DEBUG "\n");
|
||||
rows += length;
|
||||
}
|
||||
}
|
||||
|
||||
EXPORT_SYMBOL(i2o_dump_message);
|
||||
632
extra/linux-2.6.10/drivers/message/i2o/device.c
Normal file
632
extra/linux-2.6.10/drivers/message/i2o/device.c
Normal file
@@ -0,0 +1,632 @@
|
||||
/*
|
||||
* Functions to handle I2O devices
|
||||
*
|
||||
* Copyright (C) 2004 Markus Lidel <Markus.Lidel@shadowconnect.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License as published by the
|
||||
* Free Software Foundation; either version 2 of the License, or (at your
|
||||
* option) any later version.
|
||||
*
|
||||
* Fixes/additions:
|
||||
* Markus Lidel <Markus.Lidel@shadowconnect.com>
|
||||
* initial version.
|
||||
*/
|
||||
|
||||
#include <linux/module.h>
|
||||
#include <linux/i2o.h>
|
||||
#include <linux/delay.h>
|
||||
|
||||
/* Exec OSM functions */
|
||||
extern struct bus_type i2o_bus_type;
|
||||
|
||||
/**
|
||||
* i2o_device_issue_claim - claim or release a device
|
||||
* @dev: I2O device to claim or release
|
||||
* @cmd: claim or release command
|
||||
* @type: type of claim
|
||||
*
|
||||
* Issue I2O UTIL_CLAIM or UTIL_RELEASE messages. The message to be sent
|
||||
* is set by cmd. dev is the I2O device which should be claim or
|
||||
* released and the type is the claim type (see the I2O spec).
|
||||
*
|
||||
* Returs 0 on success or negative error code on failure.
|
||||
*/
|
||||
static inline int i2o_device_issue_claim(struct i2o_device *dev, u32 cmd,
|
||||
u32 type)
|
||||
{
|
||||
struct i2o_message __iomem *msg;
|
||||
u32 m;
|
||||
|
||||
m = i2o_msg_get_wait(dev->iop, &msg, I2O_TIMEOUT_MESSAGE_GET);
|
||||
if (m == I2O_QUEUE_EMPTY)
|
||||
return -ETIMEDOUT;
|
||||
|
||||
writel(FIVE_WORD_MSG_SIZE | SGL_OFFSET_0, &msg->u.head[0]);
|
||||
writel(cmd << 24 | HOST_TID << 12 | dev->lct_data.tid, &msg->u.head[1]);
|
||||
writel(type, &msg->body[0]);
|
||||
|
||||
return i2o_msg_post_wait(dev->iop, m, 60);
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_device_claim - claim a device for use by an OSM
|
||||
* @dev: I2O device to claim
|
||||
* @drv: I2O driver which wants to claim the device
|
||||
*
|
||||
* Do the leg work to assign a device to a given OSM. If the claim succeed
|
||||
* the owner of the rimary. If the attempt fails a negative errno code
|
||||
* is returned. On success zero is returned.
|
||||
*/
|
||||
int i2o_device_claim(struct i2o_device *dev)
|
||||
{
|
||||
int rc = 0;
|
||||
|
||||
down(&dev->lock);
|
||||
|
||||
rc = i2o_device_issue_claim(dev, I2O_CMD_UTIL_CLAIM, I2O_CLAIM_PRIMARY);
|
||||
if (!rc)
|
||||
pr_debug("claim of device %d succeded\n", dev->lct_data.tid);
|
||||
else
|
||||
pr_debug("claim of device %d failed %d\n", dev->lct_data.tid,
|
||||
rc);
|
||||
|
||||
up(&dev->lock);
|
||||
|
||||
return rc;
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_device_claim_release - release a device that the OSM is using
|
||||
* @dev: device to release
|
||||
* @drv: driver which claimed the device
|
||||
*
|
||||
* Drop a claim by an OSM on a given I2O device.
|
||||
*
|
||||
* AC - some devices seem to want to refuse an unclaim until they have
|
||||
* finished internal processing. It makes sense since you don't want a
|
||||
* new device to go reconfiguring the entire system until you are done.
|
||||
* Thus we are prepared to wait briefly.
|
||||
*
|
||||
* Returns 0 on success or negative error code on failure.
|
||||
*/
|
||||
int i2o_device_claim_release(struct i2o_device *dev)
|
||||
{
|
||||
int tries;
|
||||
int rc = 0;
|
||||
|
||||
down(&dev->lock);
|
||||
|
||||
/*
|
||||
* If the controller takes a nonblocking approach to
|
||||
* releases we have to sleep/poll for a few times.
|
||||
*/
|
||||
for (tries = 0; tries < 10; tries++) {
|
||||
rc = i2o_device_issue_claim(dev, I2O_CMD_UTIL_RELEASE,
|
||||
I2O_CLAIM_PRIMARY);
|
||||
if (!rc)
|
||||
break;
|
||||
|
||||
ssleep(1);
|
||||
}
|
||||
|
||||
if (!rc)
|
||||
pr_debug("claim release of device %d succeded\n",
|
||||
dev->lct_data.tid);
|
||||
else
|
||||
pr_debug("claim release of device %d failed %d\n",
|
||||
dev->lct_data.tid, rc);
|
||||
|
||||
up(&dev->lock);
|
||||
|
||||
return rc;
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_device_release - release the memory for a I2O device
|
||||
* @dev: I2O device which should be released
|
||||
*
|
||||
* Release the allocated memory. This function is called if refcount of
|
||||
* device reaches 0 automatically.
|
||||
*/
|
||||
static void i2o_device_release(struct device *dev)
|
||||
{
|
||||
struct i2o_device *i2o_dev = to_i2o_device(dev);
|
||||
|
||||
pr_debug("Release I2O device %s\n", dev->bus_id);
|
||||
|
||||
kfree(i2o_dev);
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_device_class_release - Remove I2O device attributes
|
||||
* @cd: I2O class device which is added to the I2O device class
|
||||
*
|
||||
* Removes attributes from the I2O device again. Also search each device
|
||||
* on the controller for I2O devices which refert to this device as parent
|
||||
* or user and remove this links also.
|
||||
*/
|
||||
static void i2o_device_class_release(struct class_device *cd)
|
||||
{
|
||||
struct i2o_device *i2o_dev, *tmp;
|
||||
struct i2o_controller *c;
|
||||
|
||||
i2o_dev = to_i2o_device(cd->dev);
|
||||
c = i2o_dev->iop;
|
||||
|
||||
sysfs_remove_link(&i2o_dev->device.kobj, "parent");
|
||||
sysfs_remove_link(&i2o_dev->device.kobj, "user");
|
||||
|
||||
list_for_each_entry(tmp, &c->devices, list) {
|
||||
if (tmp->lct_data.parent_tid == i2o_dev->lct_data.tid)
|
||||
sysfs_remove_link(&tmp->device.kobj, "parent");
|
||||
if (tmp->lct_data.user_tid == i2o_dev->lct_data.tid)
|
||||
sysfs_remove_link(&tmp->device.kobj, "user");
|
||||
}
|
||||
};
|
||||
|
||||
/* I2O device class */
|
||||
static struct class i2o_device_class = {
|
||||
.name = "i2o_device",
|
||||
.release = i2o_device_class_release
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_device_alloc - Allocate a I2O device and initialize it
|
||||
*
|
||||
* Allocate the memory for a I2O device and initialize locks and lists
|
||||
*
|
||||
* Returns the allocated I2O device or a negative error code if the device
|
||||
* could not be allocated.
|
||||
*/
|
||||
static struct i2o_device *i2o_device_alloc(void)
|
||||
{
|
||||
struct i2o_device *dev;
|
||||
|
||||
dev = kmalloc(sizeof(*dev), GFP_KERNEL);
|
||||
if (!dev)
|
||||
return ERR_PTR(-ENOMEM);
|
||||
|
||||
memset(dev, 0, sizeof(*dev));
|
||||
|
||||
INIT_LIST_HEAD(&dev->list);
|
||||
init_MUTEX(&dev->lock);
|
||||
|
||||
dev->device.bus = &i2o_bus_type;
|
||||
dev->device.release = &i2o_device_release;
|
||||
dev->classdev.class = &i2o_device_class;
|
||||
dev->classdev.dev = &dev->device;
|
||||
|
||||
return dev;
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_device_add - allocate a new I2O device and add it to the IOP
|
||||
* @iop: I2O controller where the device is on
|
||||
* @entry: LCT entry of the I2O device
|
||||
*
|
||||
* Allocate a new I2O device and initialize it with the LCT entry. The
|
||||
* device is appended to the device list of the controller.
|
||||
*
|
||||
* Returns a pointer to the I2O device on success or negative error code
|
||||
* on failure.
|
||||
*/
|
||||
static struct i2o_device *i2o_device_add(struct i2o_controller *c,
|
||||
i2o_lct_entry * entry)
|
||||
{
|
||||
struct i2o_device *dev;
|
||||
|
||||
dev = i2o_device_alloc();
|
||||
if (IS_ERR(dev)) {
|
||||
printk(KERN_ERR "i2o: unable to allocate i2o device\n");
|
||||
return dev;
|
||||
}
|
||||
|
||||
dev->lct_data = *entry;
|
||||
|
||||
snprintf(dev->device.bus_id, BUS_ID_SIZE, "%d:%03x", c->unit,
|
||||
dev->lct_data.tid);
|
||||
|
||||
snprintf(dev->classdev.class_id, BUS_ID_SIZE, "%d:%03x", c->unit,
|
||||
dev->lct_data.tid);
|
||||
|
||||
dev->iop = c;
|
||||
dev->device.parent = &c->device;
|
||||
|
||||
device_register(&dev->device);
|
||||
|
||||
list_add_tail(&dev->list, &c->devices);
|
||||
|
||||
class_device_register(&dev->classdev);
|
||||
|
||||
i2o_driver_notify_device_add_all(dev);
|
||||
|
||||
pr_debug("I2O device %s added\n", dev->device.bus_id);
|
||||
|
||||
return dev;
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_device_remove - remove an I2O device from the I2O core
|
||||
* @dev: I2O device which should be released
|
||||
*
|
||||
* Is used on I2O controller removal or LCT modification, when the device
|
||||
* is removed from the system. Note that the device could still hang
|
||||
* around until the refcount reaches 0.
|
||||
*/
|
||||
void i2o_device_remove(struct i2o_device *i2o_dev)
|
||||
{
|
||||
i2o_driver_notify_device_remove_all(i2o_dev);
|
||||
class_device_unregister(&i2o_dev->classdev);
|
||||
list_del(&i2o_dev->list);
|
||||
device_unregister(&i2o_dev->device);
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_device_parse_lct - Parse a previously fetched LCT and create devices
|
||||
* @c: I2O controller from which the LCT should be parsed.
|
||||
*
|
||||
* The Logical Configuration Table tells us what we can talk to on the
|
||||
* board. For every entry we create an I2O device, which is registered in
|
||||
* the I2O core.
|
||||
*
|
||||
* Returns 0 on success or negative error code on failure.
|
||||
*/
|
||||
int i2o_device_parse_lct(struct i2o_controller *c)
|
||||
{
|
||||
struct i2o_device *dev, *tmp;
|
||||
i2o_lct *lct;
|
||||
int i;
|
||||
int max;
|
||||
|
||||
down(&c->lct_lock);
|
||||
|
||||
if (c->lct)
|
||||
kfree(c->lct);
|
||||
|
||||
lct = c->dlct.virt;
|
||||
|
||||
c->lct = kmalloc(lct->table_size * 4, GFP_KERNEL);
|
||||
if (!c->lct) {
|
||||
up(&c->lct_lock);
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
if (lct->table_size * 4 > c->dlct.len) {
|
||||
memcpy_fromio(c->lct, c->dlct.virt, c->dlct.len);
|
||||
up(&c->lct_lock);
|
||||
return -EAGAIN;
|
||||
}
|
||||
|
||||
memcpy_fromio(c->lct, c->dlct.virt, lct->table_size * 4);
|
||||
|
||||
lct = c->lct;
|
||||
|
||||
max = (lct->table_size - 3) / 9;
|
||||
|
||||
pr_debug("LCT has %d entries (LCT size: %d)\n", max, lct->table_size);
|
||||
|
||||
/* remove devices, which are not in the LCT anymore */
|
||||
list_for_each_entry_safe(dev, tmp, &c->devices, list) {
|
||||
int found = 0;
|
||||
|
||||
for (i = 0; i < max; i++) {
|
||||
if (lct->lct_entry[i].tid == dev->lct_data.tid) {
|
||||
found = 1;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (!found)
|
||||
i2o_device_remove(dev);
|
||||
}
|
||||
|
||||
/* add new devices, which are new in the LCT */
|
||||
for (i = 0; i < max; i++) {
|
||||
int found = 0;
|
||||
|
||||
list_for_each_entry_safe(dev, tmp, &c->devices, list) {
|
||||
if (lct->lct_entry[i].tid == dev->lct_data.tid) {
|
||||
found = 1;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (!found)
|
||||
i2o_device_add(c, &lct->lct_entry[i]);
|
||||
}
|
||||
up(&c->lct_lock);
|
||||
|
||||
return 0;
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_device_class_show_class_id - Displays class id of I2O device
|
||||
* @cd: class device of which the class id should be displayed
|
||||
* @buf: buffer into which the class id should be printed
|
||||
*
|
||||
* Returns the number of bytes which are printed into the buffer.
|
||||
*/
|
||||
static ssize_t i2o_device_class_show_class_id(struct class_device *cd,
|
||||
char *buf)
|
||||
{
|
||||
struct i2o_device *dev = to_i2o_device(cd->dev);
|
||||
|
||||
sprintf(buf, "%03x\n", dev->lct_data.class_id);
|
||||
return strlen(buf) + 1;
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_device_class_show_tid - Displays TID of I2O device
|
||||
* @cd: class device of which the TID should be displayed
|
||||
* @buf: buffer into which the class id should be printed
|
||||
*
|
||||
* Returns the number of bytes which are printed into the buffer.
|
||||
*/
|
||||
static ssize_t i2o_device_class_show_tid(struct class_device *cd, char *buf)
|
||||
{
|
||||
struct i2o_device *dev = to_i2o_device(cd->dev);
|
||||
|
||||
sprintf(buf, "%03x\n", dev->lct_data.tid);
|
||||
return strlen(buf) + 1;
|
||||
};
|
||||
|
||||
/* I2O device class attributes */
|
||||
static CLASS_DEVICE_ATTR(class_id, S_IRUGO, i2o_device_class_show_class_id,
|
||||
NULL);
|
||||
static CLASS_DEVICE_ATTR(tid, S_IRUGO, i2o_device_class_show_tid, NULL);
|
||||
|
||||
/**
|
||||
* i2o_device_class_add - Adds attributes to the I2O device
|
||||
* @cd: I2O class device which is added to the I2O device class
|
||||
*
|
||||
* This function get called when a I2O device is added to the class. It
|
||||
* creates the attributes for each device and creates user/parent symlink
|
||||
* if necessary.
|
||||
*
|
||||
* Returns 0 on success or negative error code on failure.
|
||||
*/
|
||||
static int i2o_device_class_add(struct class_device *cd)
|
||||
{
|
||||
struct i2o_device *i2o_dev, *tmp;
|
||||
struct i2o_controller *c;
|
||||
|
||||
i2o_dev = to_i2o_device(cd->dev);
|
||||
c = i2o_dev->iop;
|
||||
|
||||
class_device_create_file(cd, &class_device_attr_class_id);
|
||||
class_device_create_file(cd, &class_device_attr_tid);
|
||||
|
||||
/* create user entries for this device */
|
||||
tmp = i2o_iop_find_device(i2o_dev->iop, i2o_dev->lct_data.user_tid);
|
||||
if (tmp)
|
||||
sysfs_create_link(&i2o_dev->device.kobj, &tmp->device.kobj,
|
||||
"user");
|
||||
|
||||
/* create user entries refering to this device */
|
||||
list_for_each_entry(tmp, &c->devices, list)
|
||||
if (tmp->lct_data.user_tid == i2o_dev->lct_data.tid)
|
||||
sysfs_create_link(&tmp->device.kobj,
|
||||
&i2o_dev->device.kobj, "user");
|
||||
|
||||
/* create parent entries for this device */
|
||||
tmp = i2o_iop_find_device(i2o_dev->iop, i2o_dev->lct_data.parent_tid);
|
||||
if (tmp)
|
||||
sysfs_create_link(&i2o_dev->device.kobj, &tmp->device.kobj,
|
||||
"parent");
|
||||
|
||||
/* create parent entries refering to this device */
|
||||
list_for_each_entry(tmp, &c->devices, list)
|
||||
if (tmp->lct_data.parent_tid == i2o_dev->lct_data.tid)
|
||||
sysfs_create_link(&tmp->device.kobj,
|
||||
&i2o_dev->device.kobj, "parent");
|
||||
|
||||
return 0;
|
||||
};
|
||||
|
||||
/* I2O device class interface */
|
||||
static struct class_interface i2o_device_class_interface = {
|
||||
.class = &i2o_device_class,
|
||||
.add = i2o_device_class_add
|
||||
};
|
||||
|
||||
/*
|
||||
* Run time support routines
|
||||
*/
|
||||
|
||||
/* Issue UTIL_PARAMS_GET or UTIL_PARAMS_SET
|
||||
*
|
||||
* This function can be used for all UtilParamsGet/Set operations.
|
||||
* The OperationList is given in oplist-buffer,
|
||||
* and results are returned in reslist-buffer.
|
||||
* Note that the minimum sized reslist is 8 bytes and contains
|
||||
* ResultCount, ErrorInfoSize, BlockStatus and BlockSize.
|
||||
*/
|
||||
|
||||
int i2o_parm_issue(struct i2o_device *i2o_dev, int cmd, void *oplist,
|
||||
int oplen, void *reslist, int reslen)
|
||||
{
|
||||
struct i2o_message __iomem *msg;
|
||||
u32 m;
|
||||
u32 *res32 = (u32 *) reslist;
|
||||
u32 *restmp = (u32 *) reslist;
|
||||
int len = 0;
|
||||
int i = 0;
|
||||
int rc;
|
||||
struct i2o_dma res;
|
||||
struct i2o_controller *c = i2o_dev->iop;
|
||||
struct device *dev = &c->pdev->dev;
|
||||
|
||||
res.virt = NULL;
|
||||
|
||||
if (i2o_dma_alloc(dev, &res, reslen, GFP_KERNEL))
|
||||
return -ENOMEM;
|
||||
|
||||
m = i2o_msg_get_wait(c, &msg, I2O_TIMEOUT_MESSAGE_GET);
|
||||
if (m == I2O_QUEUE_EMPTY) {
|
||||
i2o_dma_free(dev, &res);
|
||||
return -ETIMEDOUT;
|
||||
}
|
||||
|
||||
i = 0;
|
||||
writel(cmd << 24 | HOST_TID << 12 | i2o_dev->lct_data.tid,
|
||||
&msg->u.head[1]);
|
||||
writel(0, &msg->body[i++]);
|
||||
writel(0x4C000000 | oplen, &msg->body[i++]); /* OperationList */
|
||||
memcpy_toio(&msg->body[i], oplist, oplen);
|
||||
i += (oplen / 4 + (oplen % 4 ? 1 : 0));
|
||||
writel(0xD0000000 | res.len, &msg->body[i++]); /* ResultList */
|
||||
writel(res.phys, &msg->body[i++]);
|
||||
|
||||
writel(I2O_MESSAGE_SIZE(i + sizeof(struct i2o_message) / 4) |
|
||||
SGL_OFFSET_5, &msg->u.head[0]);
|
||||
|
||||
rc = i2o_msg_post_wait_mem(c, m, 10, &res);
|
||||
|
||||
/* This only looks like a memory leak - don't "fix" it. */
|
||||
if (rc == -ETIMEDOUT)
|
||||
return rc;
|
||||
|
||||
memcpy_fromio(reslist, res.virt, res.len);
|
||||
i2o_dma_free(dev, &res);
|
||||
|
||||
/* Query failed */
|
||||
if (rc)
|
||||
return rc;
|
||||
/*
|
||||
* Calculate number of bytes of Result LIST
|
||||
* We need to loop through each Result BLOCK and grab the length
|
||||
*/
|
||||
restmp = res32 + 1;
|
||||
len = 1;
|
||||
for (i = 0; i < (res32[0] & 0X0000FFFF); i++) {
|
||||
if (restmp[0] & 0x00FF0000) { /* BlockStatus != SUCCESS */
|
||||
printk(KERN_WARNING
|
||||
"%s - Error:\n ErrorInfoSize = 0x%02x, "
|
||||
"BlockStatus = 0x%02x, BlockSize = 0x%04x\n",
|
||||
(cmd ==
|
||||
I2O_CMD_UTIL_PARAMS_SET) ? "PARAMS_SET" :
|
||||
"PARAMS_GET", res32[1] >> 24,
|
||||
(res32[1] >> 16) & 0xFF, res32[1] & 0xFFFF);
|
||||
|
||||
/*
|
||||
* If this is the only request,than we return an error
|
||||
*/
|
||||
if ((res32[0] & 0x0000FFFF) == 1) {
|
||||
return -((res32[1] >> 16) & 0xFF); /* -BlockStatus */
|
||||
}
|
||||
}
|
||||
len += restmp[0] & 0x0000FFFF; /* Length of res BLOCK */
|
||||
restmp += restmp[0] & 0x0000FFFF; /* Skip to next BLOCK */
|
||||
}
|
||||
return (len << 2); /* bytes used by result list */
|
||||
}
|
||||
|
||||
/*
|
||||
* Query one field group value or a whole scalar group.
|
||||
*/
|
||||
int i2o_parm_field_get(struct i2o_device *i2o_dev, int group, int field,
|
||||
void *buf, int buflen)
|
||||
{
|
||||
u16 opblk[] = { 1, 0, I2O_PARAMS_FIELD_GET, group, 1, field };
|
||||
u8 resblk[8 + buflen]; /* 8 bytes for header */
|
||||
int size;
|
||||
|
||||
if (field == -1) /* whole group */
|
||||
opblk[4] = -1;
|
||||
|
||||
size = i2o_parm_issue(i2o_dev, I2O_CMD_UTIL_PARAMS_GET, opblk,
|
||||
sizeof(opblk), resblk, sizeof(resblk));
|
||||
|
||||
memcpy(buf, resblk + 8, buflen); /* cut off header */
|
||||
|
||||
if (size > buflen)
|
||||
return buflen;
|
||||
|
||||
return size;
|
||||
}
|
||||
|
||||
/*
|
||||
* if oper == I2O_PARAMS_TABLE_GET, get from all rows
|
||||
* if fieldcount == -1 return all fields
|
||||
* ibuf and ibuflen are unused (use NULL, 0)
|
||||
* else return specific fields
|
||||
* ibuf contains fieldindexes
|
||||
*
|
||||
* if oper == I2O_PARAMS_LIST_GET, get from specific rows
|
||||
* if fieldcount == -1 return all fields
|
||||
* ibuf contains rowcount, keyvalues
|
||||
* else return specific fields
|
||||
* fieldcount is # of fieldindexes
|
||||
* ibuf contains fieldindexes, rowcount, keyvalues
|
||||
*
|
||||
* You could also use directly function i2o_issue_params().
|
||||
*/
|
||||
int i2o_parm_table_get(struct i2o_device *dev, int oper, int group,
|
||||
int fieldcount, void *ibuf, int ibuflen, void *resblk,
|
||||
int reslen)
|
||||
{
|
||||
u16 *opblk;
|
||||
int size;
|
||||
|
||||
size = 10 + ibuflen;
|
||||
if (size % 4)
|
||||
size += 4 - size % 4;
|
||||
|
||||
opblk = kmalloc(size, GFP_KERNEL);
|
||||
if (opblk == NULL) {
|
||||
printk(KERN_ERR "i2o: no memory for query buffer.\n");
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
opblk[0] = 1; /* operation count */
|
||||
opblk[1] = 0; /* pad */
|
||||
opblk[2] = oper;
|
||||
opblk[3] = group;
|
||||
opblk[4] = fieldcount;
|
||||
memcpy(opblk + 5, ibuf, ibuflen); /* other params */
|
||||
|
||||
size = i2o_parm_issue(dev, I2O_CMD_UTIL_PARAMS_GET, opblk,
|
||||
size, resblk, reslen);
|
||||
|
||||
kfree(opblk);
|
||||
if (size > reslen)
|
||||
return reslen;
|
||||
|
||||
return size;
|
||||
}
|
||||
|
||||
/**
|
||||
* i2o_device_init - Initialize I2O devices
|
||||
*
|
||||
* Registers the I2O device class.
|
||||
*
|
||||
* Returns 0 on success or negative error code on failure.
|
||||
*/
|
||||
int i2o_device_init(void)
|
||||
{
|
||||
int rc;
|
||||
|
||||
rc = class_register(&i2o_device_class);
|
||||
if (rc)
|
||||
return rc;
|
||||
|
||||
return class_interface_register(&i2o_device_class_interface);
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_device_exit - I2O devices exit function
|
||||
*
|
||||
* Unregisters the I2O device class.
|
||||
*/
|
||||
void i2o_device_exit(void)
|
||||
{
|
||||
class_interface_register(&i2o_device_class_interface);
|
||||
class_unregister(&i2o_device_class);
|
||||
};
|
||||
|
||||
EXPORT_SYMBOL(i2o_device_claim);
|
||||
EXPORT_SYMBOL(i2o_device_claim_release);
|
||||
EXPORT_SYMBOL(i2o_parm_field_get);
|
||||
EXPORT_SYMBOL(i2o_parm_table_get);
|
||||
EXPORT_SYMBOL(i2o_parm_issue);
|
||||
372
extra/linux-2.6.10/drivers/message/i2o/driver.c
Normal file
372
extra/linux-2.6.10/drivers/message/i2o/driver.c
Normal file
@@ -0,0 +1,372 @@
|
||||
/*
|
||||
* Functions to handle I2O drivers (OSMs) and I2O bus type for sysfs
|
||||
*
|
||||
* Copyright (C) 2004 Markus Lidel <Markus.Lidel@shadowconnect.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License as published by the
|
||||
* Free Software Foundation; either version 2 of the License, or (at your
|
||||
* option) any later version.
|
||||
*
|
||||
* Fixes/additions:
|
||||
* Markus Lidel <Markus.Lidel@shadowconnect.com>
|
||||
* initial version.
|
||||
*/
|
||||
|
||||
#include <linux/device.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/rwsem.h>
|
||||
#include <linux/i2o.h>
|
||||
|
||||
/* max_drivers - Maximum I2O drivers (OSMs) which could be registered */
|
||||
unsigned int i2o_max_drivers = I2O_MAX_DRIVERS;
|
||||
module_param_named(max_drivers, i2o_max_drivers, uint, 0);
|
||||
MODULE_PARM_DESC(max_drivers, "maximum number of OSM's to support");
|
||||
|
||||
/* I2O drivers lock and array */
|
||||
static spinlock_t i2o_drivers_lock;
|
||||
static struct i2o_driver **i2o_drivers;
|
||||
|
||||
/**
|
||||
* i2o_bus_match - Tell if a I2O device class id match the class ids of
|
||||
* the I2O driver (OSM)
|
||||
*
|
||||
* @dev: device which should be verified
|
||||
* @drv: the driver to match against
|
||||
*
|
||||
* Used by the bus to check if the driver wants to handle the device.
|
||||
*
|
||||
* Returns 1 if the class ids of the driver match the class id of the
|
||||
* device, otherwise 0.
|
||||
*/
|
||||
static int i2o_bus_match(struct device *dev, struct device_driver *drv)
|
||||
{
|
||||
struct i2o_device *i2o_dev = to_i2o_device(dev);
|
||||
struct i2o_driver *i2o_drv = to_i2o_driver(drv);
|
||||
struct i2o_class_id *ids = i2o_drv->classes;
|
||||
|
||||
if (ids)
|
||||
while (ids->class_id != I2O_CLASS_END) {
|
||||
if (ids->class_id == i2o_dev->lct_data.class_id)
|
||||
return 1;
|
||||
ids++;
|
||||
}
|
||||
return 0;
|
||||
};
|
||||
|
||||
/* I2O bus type */
|
||||
struct bus_type i2o_bus_type = {
|
||||
.name = "i2o",
|
||||
.match = i2o_bus_match,
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_driver_register - Register a I2O driver (OSM) in the I2O core
|
||||
* @drv: I2O driver which should be registered
|
||||
*
|
||||
* Registers the OSM drv in the I2O core and creates an event queues if
|
||||
* necessary.
|
||||
*
|
||||
* Returns 0 on success or negative error code on failure.
|
||||
*/
|
||||
int i2o_driver_register(struct i2o_driver *drv)
|
||||
{
|
||||
struct i2o_controller *c;
|
||||
int i;
|
||||
int rc = 0;
|
||||
unsigned long flags;
|
||||
|
||||
pr_debug("Register driver %s\n", drv->name);
|
||||
|
||||
if (drv->event) {
|
||||
drv->event_queue = create_workqueue(drv->name);
|
||||
if (!drv->event_queue) {
|
||||
printk(KERN_ERR "i2o: Could not initialize event queue "
|
||||
"for driver %s\n", drv->name);
|
||||
return -EFAULT;
|
||||
}
|
||||
pr_debug("Event queue initialized for driver %s\n", drv->name);
|
||||
} else
|
||||
drv->event_queue = NULL;
|
||||
|
||||
drv->driver.name = drv->name;
|
||||
drv->driver.bus = &i2o_bus_type;
|
||||
|
||||
spin_lock_irqsave(&i2o_drivers_lock, flags);
|
||||
|
||||
for (i = 0; i2o_drivers[i]; i++)
|
||||
if (i >= i2o_max_drivers) {
|
||||
printk(KERN_ERR "i2o: too many drivers registered, "
|
||||
"increase max_drivers\n");
|
||||
spin_unlock_irqrestore(&i2o_drivers_lock, flags);
|
||||
return -EFAULT;
|
||||
}
|
||||
|
||||
drv->context = i;
|
||||
i2o_drivers[i] = drv;
|
||||
|
||||
spin_unlock_irqrestore(&i2o_drivers_lock, flags);
|
||||
|
||||
pr_debug("driver %s gets context id %d\n", drv->name, drv->context);
|
||||
|
||||
list_for_each_entry(c, &i2o_controllers, list) {
|
||||
struct i2o_device *i2o_dev;
|
||||
|
||||
i2o_driver_notify_controller_add(drv, c);
|
||||
list_for_each_entry(i2o_dev, &c->devices, list)
|
||||
i2o_driver_notify_device_add(drv, i2o_dev);
|
||||
}
|
||||
|
||||
|
||||
rc = driver_register(&drv->driver);
|
||||
if (rc)
|
||||
destroy_workqueue(drv->event_queue);
|
||||
|
||||
return rc;
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_driver_unregister - Unregister a I2O driver (OSM) from the I2O core
|
||||
* @drv: I2O driver which should be unregistered
|
||||
*
|
||||
* Unregisters the OSM drv from the I2O core and cleanup event queues if
|
||||
* necessary.
|
||||
*/
|
||||
void i2o_driver_unregister(struct i2o_driver *drv)
|
||||
{
|
||||
struct i2o_controller *c;
|
||||
unsigned long flags;
|
||||
|
||||
pr_debug("unregister driver %s\n", drv->name);
|
||||
|
||||
driver_unregister(&drv->driver);
|
||||
|
||||
list_for_each_entry(c, &i2o_controllers, list) {
|
||||
struct i2o_device *i2o_dev;
|
||||
|
||||
list_for_each_entry(i2o_dev, &c->devices, list)
|
||||
i2o_driver_notify_device_remove(drv, i2o_dev);
|
||||
|
||||
i2o_driver_notify_controller_remove(drv, c);
|
||||
}
|
||||
|
||||
spin_lock_irqsave(&i2o_drivers_lock, flags);
|
||||
i2o_drivers[drv->context] = NULL;
|
||||
spin_unlock_irqrestore(&i2o_drivers_lock, flags);
|
||||
|
||||
if (drv->event_queue) {
|
||||
destroy_workqueue(drv->event_queue);
|
||||
drv->event_queue = NULL;
|
||||
pr_debug("event queue removed for %s\n", drv->name);
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_driver_dispatch - dispatch an I2O reply message
|
||||
* @c: I2O controller of the message
|
||||
* @m: I2O message number
|
||||
* @msg: I2O message to be delivered
|
||||
*
|
||||
* The reply is delivered to the driver from which the original message
|
||||
* was. This function is only called from interrupt context.
|
||||
*
|
||||
* Returns 0 on success and the message should not be flushed. Returns > 0
|
||||
* on success and if the message should be flushed afterwords. Returns
|
||||
* negative error code on failure (the message will be flushed too).
|
||||
*/
|
||||
int i2o_driver_dispatch(struct i2o_controller *c, u32 m,
|
||||
struct i2o_message __iomem *msg)
|
||||
{
|
||||
struct i2o_driver *drv;
|
||||
u32 context = readl(&msg->u.s.icntxt);
|
||||
|
||||
if (likely(context < i2o_max_drivers)) {
|
||||
spin_lock(&i2o_drivers_lock);
|
||||
drv = i2o_drivers[context];
|
||||
spin_unlock(&i2o_drivers_lock);
|
||||
|
||||
if (unlikely(!drv)) {
|
||||
printk(KERN_WARNING "i2o: Spurious reply to unknown "
|
||||
"driver %d\n", context);
|
||||
return -EIO;
|
||||
}
|
||||
|
||||
if ((readl(&msg->u.head[1]) >> 24) == I2O_CMD_UTIL_EVT_REGISTER) {
|
||||
struct i2o_device *dev, *tmp;
|
||||
struct i2o_event *evt;
|
||||
u16 size;
|
||||
u16 tid;
|
||||
|
||||
tid = readl(&msg->u.head[1]) & 0x1fff;
|
||||
|
||||
pr_debug("%s: event received from device %d\n", c->name,
|
||||
tid);
|
||||
|
||||
/* cut of header from message size (in 32-bit words) */
|
||||
size = (readl(&msg->u.head[0]) >> 16) - 5;
|
||||
|
||||
evt = kmalloc(size * 4 + sizeof(*evt), GFP_ATOMIC);
|
||||
if (!evt)
|
||||
return -ENOMEM;
|
||||
memset(evt, 0, size * 4 + sizeof(*evt));
|
||||
|
||||
evt->size = size;
|
||||
memcpy_fromio(&evt->tcntxt, &msg->u.s.tcntxt,
|
||||
(size + 2) * 4);
|
||||
|
||||
list_for_each_entry_safe(dev, tmp, &c->devices, list)
|
||||
if (dev->lct_data.tid == tid) {
|
||||
evt->i2o_dev = dev;
|
||||
break;
|
||||
}
|
||||
|
||||
INIT_WORK(&evt->work, (void (*)(void *))drv->event,
|
||||
evt);
|
||||
queue_work(drv->event_queue, &evt->work);
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (likely(drv->reply))
|
||||
return drv->reply(c, m, msg);
|
||||
else
|
||||
pr_debug("%s: Reply to driver %s, but no reply function"
|
||||
" defined!\n", c->name, drv->name);
|
||||
return -EIO;
|
||||
} else
|
||||
printk(KERN_WARNING "i2o: Spurious reply to unknown driver "
|
||||
"%d\n", readl(&msg->u.s.icntxt));
|
||||
return -EIO;
|
||||
}
|
||||
|
||||
/**
|
||||
* i2o_driver_notify_controller_add_all - Send notify of added controller
|
||||
* to all I2O drivers
|
||||
*
|
||||
* Send notifications to all registered drivers that a new controller was
|
||||
* added.
|
||||
*/
|
||||
void i2o_driver_notify_controller_add_all(struct i2o_controller *c)
|
||||
{
|
||||
int i;
|
||||
struct i2o_driver *drv;
|
||||
|
||||
for (i = 0; i < I2O_MAX_DRIVERS; i++) {
|
||||
drv = i2o_drivers[i];
|
||||
|
||||
if (drv)
|
||||
i2o_driver_notify_controller_add(drv, c);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* i2o_driver_notify_controller_remove_all - Send notify of removed
|
||||
* controller to all I2O drivers
|
||||
*
|
||||
* Send notifications to all registered drivers that a controller was
|
||||
* removed.
|
||||
*/
|
||||
void i2o_driver_notify_controller_remove_all(struct i2o_controller *c)
|
||||
{
|
||||
int i;
|
||||
struct i2o_driver *drv;
|
||||
|
||||
for (i = 0; i < I2O_MAX_DRIVERS; i++) {
|
||||
drv = i2o_drivers[i];
|
||||
|
||||
if (drv)
|
||||
i2o_driver_notify_controller_remove(drv, c);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* i2o_driver_notify_device_add_all - Send notify of added device to all
|
||||
* I2O drivers
|
||||
*
|
||||
* Send notifications to all registered drivers that a device was added.
|
||||
*/
|
||||
void i2o_driver_notify_device_add_all(struct i2o_device *i2o_dev)
|
||||
{
|
||||
int i;
|
||||
struct i2o_driver *drv;
|
||||
|
||||
for (i = 0; i < I2O_MAX_DRIVERS; i++) {
|
||||
drv = i2o_drivers[i];
|
||||
|
||||
if (drv)
|
||||
i2o_driver_notify_device_add(drv, i2o_dev);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* i2o_driver_notify_device_remove_all - Send notify of removed device to
|
||||
* all I2O drivers
|
||||
*
|
||||
* Send notifications to all registered drivers that a device was removed.
|
||||
*/
|
||||
void i2o_driver_notify_device_remove_all(struct i2o_device *i2o_dev)
|
||||
{
|
||||
int i;
|
||||
struct i2o_driver *drv;
|
||||
|
||||
for (i = 0; i < I2O_MAX_DRIVERS; i++) {
|
||||
drv = i2o_drivers[i];
|
||||
|
||||
if (drv)
|
||||
i2o_driver_notify_device_remove(drv, i2o_dev);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* i2o_driver_init - initialize I2O drivers (OSMs)
|
||||
*
|
||||
* Registers the I2O bus and allocate memory for the array of OSMs.
|
||||
*
|
||||
* Returns 0 on success or negative error code on failure.
|
||||
*/
|
||||
int __init i2o_driver_init(void)
|
||||
{
|
||||
int rc = 0;
|
||||
|
||||
spin_lock_init(&i2o_drivers_lock);
|
||||
|
||||
if ((i2o_max_drivers < 2) || (i2o_max_drivers > 64) ||
|
||||
((i2o_max_drivers ^ (i2o_max_drivers - 1)) !=
|
||||
(2 * i2o_max_drivers - 1))) {
|
||||
printk(KERN_WARNING "i2o: max_drivers set to %d, but must be "
|
||||
">=2 and <= 64 and a power of 2\n", i2o_max_drivers);
|
||||
i2o_max_drivers = I2O_MAX_DRIVERS;
|
||||
}
|
||||
printk(KERN_INFO "i2o: max_drivers=%d\n", i2o_max_drivers);
|
||||
|
||||
i2o_drivers =
|
||||
kmalloc(i2o_max_drivers * sizeof(*i2o_drivers), GFP_KERNEL);
|
||||
if (!i2o_drivers)
|
||||
return -ENOMEM;
|
||||
|
||||
memset(i2o_drivers, 0, i2o_max_drivers * sizeof(*i2o_drivers));
|
||||
|
||||
rc = bus_register(&i2o_bus_type);
|
||||
|
||||
if (rc < 0)
|
||||
kfree(i2o_drivers);
|
||||
|
||||
return rc;
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_driver_exit - clean up I2O drivers (OSMs)
|
||||
*
|
||||
* Unregisters the I2O bus and free driver array.
|
||||
*/
|
||||
void __exit i2o_driver_exit(void)
|
||||
{
|
||||
bus_unregister(&i2o_bus_type);
|
||||
kfree(i2o_drivers);
|
||||
};
|
||||
|
||||
EXPORT_SYMBOL(i2o_driver_register);
|
||||
EXPORT_SYMBOL(i2o_driver_unregister);
|
||||
EXPORT_SYMBOL(i2o_driver_notify_controller_add_all);
|
||||
EXPORT_SYMBOL(i2o_driver_notify_controller_remove_all);
|
||||
EXPORT_SYMBOL(i2o_driver_notify_device_add_all);
|
||||
EXPORT_SYMBOL(i2o_driver_notify_device_remove_all);
|
||||
504
extra/linux-2.6.10/drivers/message/i2o/exec-osm.c
Normal file
504
extra/linux-2.6.10/drivers/message/i2o/exec-osm.c
Normal file
@@ -0,0 +1,504 @@
|
||||
/*
|
||||
* Executive OSM
|
||||
*
|
||||
* Copyright (C) 1999-2002 Red Hat Software
|
||||
*
|
||||
* Written by Alan Cox, Building Number Three Ltd
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License as published by the
|
||||
* Free Software Foundation; either version 2 of the License, or (at your
|
||||
* option) any later version.
|
||||
*
|
||||
* A lot of the I2O message side code from this is taken from the Red
|
||||
* Creek RCPCI45 adapter driver by Red Creek Communications
|
||||
*
|
||||
* Fixes/additions:
|
||||
* Philipp Rumpf
|
||||
* Juha Sievänen <Juha.Sievanen@cs.Helsinki.FI>
|
||||
* Auvo Häkkinen <Auvo.Hakkinen@cs.Helsinki.FI>
|
||||
* Deepak Saxena <deepak@plexity.net>
|
||||
* Boji T Kannanthanam <boji.t.kannanthanam@intel.com>
|
||||
* Alan Cox <alan@redhat.com>:
|
||||
* Ported to Linux 2.5.
|
||||
* Markus Lidel <Markus.Lidel@shadowconnect.com>:
|
||||
* Minor fixes for 2.6.
|
||||
* Markus Lidel <Markus.Lidel@shadowconnect.com>:
|
||||
* Support for sysfs included.
|
||||
*/
|
||||
|
||||
#include <linux/module.h>
|
||||
#include <linux/i2o.h>
|
||||
#include <linux/delay.h>
|
||||
|
||||
struct i2o_driver i2o_exec_driver;
|
||||
|
||||
static int i2o_exec_lct_notify(struct i2o_controller *c, u32 change_ind);
|
||||
|
||||
/* Module internal functions from other sources */
|
||||
extern int i2o_device_parse_lct(struct i2o_controller *);
|
||||
|
||||
/* global wait list for POST WAIT */
|
||||
static LIST_HEAD(i2o_exec_wait_list);
|
||||
|
||||
/* Wait struct needed for POST WAIT */
|
||||
struct i2o_exec_wait {
|
||||
wait_queue_head_t *wq; /* Pointer to Wait queue */
|
||||
struct i2o_dma dma; /* DMA buffers to free on failure */
|
||||
u32 tcntxt; /* transaction context from reply */
|
||||
int complete; /* 1 if reply received otherwise 0 */
|
||||
u32 m; /* message id */
|
||||
struct i2o_message __iomem *msg; /* pointer to the reply message */
|
||||
struct list_head list; /* node in global wait list */
|
||||
};
|
||||
|
||||
/* Exec OSM class handling definition */
|
||||
static struct i2o_class_id i2o_exec_class_id[] = {
|
||||
{I2O_CLASS_EXECUTIVE},
|
||||
{I2O_CLASS_END}
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_exec_wait_alloc - Allocate a i2o_exec_wait struct an initialize it
|
||||
*
|
||||
* Allocate the i2o_exec_wait struct and initialize the wait.
|
||||
*
|
||||
* Returns i2o_exec_wait pointer on success or negative error code on
|
||||
* failure.
|
||||
*/
|
||||
static struct i2o_exec_wait *i2o_exec_wait_alloc(void)
|
||||
{
|
||||
struct i2o_exec_wait *wait;
|
||||
|
||||
wait = kmalloc(sizeof(*wait), GFP_KERNEL);
|
||||
if (!wait)
|
||||
return ERR_PTR(-ENOMEM);
|
||||
|
||||
memset(wait, 0, sizeof(*wait));
|
||||
|
||||
INIT_LIST_HEAD(&wait->list);
|
||||
|
||||
return wait;
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_exec_wait_free - Free a i2o_exec_wait struct
|
||||
* @i2o_exec_wait: I2O wait data which should be cleaned up
|
||||
*/
|
||||
static void i2o_exec_wait_free(struct i2o_exec_wait *wait)
|
||||
{
|
||||
kfree(wait);
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_msg_post_wait_mem - Post and wait a message with DMA buffers
|
||||
* @c: controller
|
||||
* @m: message to post
|
||||
* @timeout: time in seconds to wait
|
||||
* @dma: i2o_dma struct of the DMA buffer to free on failure
|
||||
*
|
||||
* This API allows an OSM to post a message and then be told whether or
|
||||
* not the system received a successful reply. If the message times out
|
||||
* then the value '-ETIMEDOUT' is returned. This is a special case. In
|
||||
* this situation the message may (should) complete at an indefinite time
|
||||
* in the future. When it completes it will use the memory buffer
|
||||
* attached to the request. If -ETIMEDOUT is returned then the memory
|
||||
* buffer must not be freed. Instead the event completion will free them
|
||||
* for you. In all other cases the buffer are your problem.
|
||||
*
|
||||
* Returns 0 on success or negative error code on failure.
|
||||
*/
|
||||
int i2o_msg_post_wait_mem(struct i2o_controller *c, u32 m, unsigned long
|
||||
timeout, struct i2o_dma *dma)
|
||||
{
|
||||
DECLARE_WAIT_QUEUE_HEAD(wq);
|
||||
struct i2o_exec_wait *wait;
|
||||
static u32 tcntxt = 0x80000000;
|
||||
struct i2o_message __iomem *msg = c->in_queue.virt + m;
|
||||
int rc = 0;
|
||||
|
||||
wait = i2o_exec_wait_alloc();
|
||||
if (!wait)
|
||||
return -ENOMEM;
|
||||
|
||||
if (tcntxt == 0xffffffff)
|
||||
tcntxt = 0x80000000;
|
||||
|
||||
if (dma)
|
||||
wait->dma = *dma;
|
||||
|
||||
/*
|
||||
* Fill in the message initiator context and transaction context.
|
||||
* We will only use transaction contexts >= 0x80000000 for POST WAIT,
|
||||
* so we could find a POST WAIT reply easier in the reply handler.
|
||||
*/
|
||||
writel(i2o_exec_driver.context, &msg->u.s.icntxt);
|
||||
wait->tcntxt = tcntxt++;
|
||||
writel(wait->tcntxt, &msg->u.s.tcntxt);
|
||||
|
||||
/*
|
||||
* Post the message to the controller. At some point later it will
|
||||
* return. If we time out before it returns then complete will be zero.
|
||||
*/
|
||||
i2o_msg_post(c, m);
|
||||
|
||||
if (!wait->complete) {
|
||||
wait->wq = &wq;
|
||||
/*
|
||||
* we add elements add the head, because if a entry in the list
|
||||
* will never be removed, we have to iterate over it every time
|
||||
*/
|
||||
list_add(&wait->list, &i2o_exec_wait_list);
|
||||
|
||||
wait_event_interruptible_timeout(wq, wait->complete,
|
||||
timeout * HZ);
|
||||
|
||||
wait->wq = NULL;
|
||||
}
|
||||
|
||||
barrier();
|
||||
|
||||
if (wait->complete) {
|
||||
if (readl(&wait->msg->body[0]) >> 24)
|
||||
rc = readl(&wait->msg->body[0]) & 0xff;
|
||||
i2o_flush_reply(c, wait->m);
|
||||
i2o_exec_wait_free(wait);
|
||||
} else {
|
||||
/*
|
||||
* We cannot remove it now. This is important. When it does
|
||||
* terminate (which it must do if the controller has not
|
||||
* died...) then it will otherwise scribble on stuff.
|
||||
*
|
||||
* FIXME: try abort message
|
||||
*/
|
||||
if (dma)
|
||||
dma->virt = NULL;
|
||||
|
||||
rc = -ETIMEDOUT;
|
||||
}
|
||||
|
||||
return rc;
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_msg_post_wait_complete - Reply to a i2o_msg_post request from IOP
|
||||
* @c: I2O controller which answers
|
||||
* @m: message id
|
||||
* @msg: pointer to the I2O reply message
|
||||
*
|
||||
* This function is called in interrupt context only. If the reply reached
|
||||
* before the timeout, the i2o_exec_wait struct is filled with the message
|
||||
* and the task will be waked up. The task is now responsible for returning
|
||||
* the message m back to the controller! If the message reaches us after
|
||||
* the timeout clean up the i2o_exec_wait struct (including allocated
|
||||
* DMA buffer).
|
||||
*
|
||||
* Return 0 on success and if the message m should not be given back to the
|
||||
* I2O controller, or >0 on success and if the message should be given back
|
||||
* afterwords. Returns negative error code on failure. In this case the
|
||||
* message must also be given back to the controller.
|
||||
*/
|
||||
static int i2o_msg_post_wait_complete(struct i2o_controller *c, u32 m,
|
||||
struct i2o_message __iomem *msg)
|
||||
{
|
||||
struct i2o_exec_wait *wait, *tmp;
|
||||
static spinlock_t lock;
|
||||
int rc = 1;
|
||||
u32 context;
|
||||
|
||||
spin_lock_init(&lock);
|
||||
|
||||
context = readl(&msg->u.s.tcntxt);
|
||||
|
||||
/*
|
||||
* We need to search through the i2o_exec_wait_list to see if the given
|
||||
* message is still outstanding. If not, it means that the IOP took
|
||||
* longer to respond to the message than we had allowed and timer has
|
||||
* already expired. Not much we can do about that except log it for
|
||||
* debug purposes, increase timeout, and recompile.
|
||||
*/
|
||||
spin_lock(&lock);
|
||||
list_for_each_entry_safe(wait, tmp, &i2o_exec_wait_list, list) {
|
||||
if (wait->tcntxt == context) {
|
||||
list_del(&wait->list);
|
||||
|
||||
wait->m = m;
|
||||
wait->msg = msg;
|
||||
wait->complete = 1;
|
||||
|
||||
barrier();
|
||||
|
||||
if (wait->wq) {
|
||||
wake_up_interruptible(wait->wq);
|
||||
rc = 0;
|
||||
} else {
|
||||
struct device *dev;
|
||||
|
||||
dev = &c->pdev->dev;
|
||||
|
||||
pr_debug("timedout reply received!\n");
|
||||
i2o_dma_free(dev, &wait->dma);
|
||||
i2o_exec_wait_free(wait);
|
||||
rc = -1;
|
||||
}
|
||||
|
||||
spin_unlock(&lock);
|
||||
|
||||
return rc;
|
||||
}
|
||||
}
|
||||
|
||||
spin_unlock(&lock);
|
||||
|
||||
pr_debug("i2o: Bogus reply in POST WAIT (tr-context: %08x)!\n",
|
||||
context);
|
||||
|
||||
return -1;
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_exec_probe - Called if a new I2O device (executive class) appears
|
||||
* @dev: I2O device which should be probed
|
||||
*
|
||||
* Registers event notification for every event from Executive device. The
|
||||
* return is always 0, because we want all devices of class Executive.
|
||||
*
|
||||
* Returns 0 on success.
|
||||
*/
|
||||
static int i2o_exec_probe(struct device *dev)
|
||||
{
|
||||
struct i2o_device *i2o_dev = to_i2o_device(dev);
|
||||
|
||||
i2o_event_register(i2o_dev, &i2o_exec_driver, 0, 0xffffffff);
|
||||
|
||||
i2o_dev->iop->exec = i2o_dev;
|
||||
|
||||
return 0;
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_exec_remove - Called on I2O device removal
|
||||
* @dev: I2O device which was removed
|
||||
*
|
||||
* Unregisters event notification from Executive I2O device.
|
||||
*
|
||||
* Returns 0 on success.
|
||||
*/
|
||||
static int i2o_exec_remove(struct device *dev)
|
||||
{
|
||||
i2o_event_register(to_i2o_device(dev), &i2o_exec_driver, 0, 0);
|
||||
|
||||
return 0;
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_exec_lct_modified - Called on LCT NOTIFY reply
|
||||
* @c: I2O controller on which the LCT has modified
|
||||
*
|
||||
* This function handles asynchronus LCT NOTIFY replies. It parses the
|
||||
* new LCT and if the buffer for the LCT was to small sends a LCT NOTIFY
|
||||
* again.
|
||||
*/
|
||||
static void i2o_exec_lct_modified(struct i2o_controller *c)
|
||||
{
|
||||
if (i2o_device_parse_lct(c) == -EAGAIN)
|
||||
i2o_exec_lct_notify(c, 0);
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_exec_reply - I2O Executive reply handler
|
||||
* @c: I2O controller from which the reply comes
|
||||
* @m: message id
|
||||
* @msg: pointer to the I2O reply message
|
||||
*
|
||||
* This function is always called from interrupt context. If a POST WAIT
|
||||
* reply was received, pass it to the complete function. If a LCT NOTIFY
|
||||
* reply was received, a new event is created to handle the update.
|
||||
*
|
||||
* Returns 0 on success and if the reply should not be flushed or > 0
|
||||
* on success and if the reply should be flushed. Returns negative error
|
||||
* code on failure and if the reply should be flushed.
|
||||
*/
|
||||
static int i2o_exec_reply(struct i2o_controller *c, u32 m,
|
||||
struct i2o_message *msg)
|
||||
{
|
||||
if (le32_to_cpu(msg->u.head[0]) & MSG_FAIL) { // Fail bit is set
|
||||
struct i2o_message __iomem *pmsg; /* preserved message */
|
||||
u32 pm;
|
||||
|
||||
pm = le32_to_cpu(msg->body[3]);
|
||||
|
||||
pmsg = i2o_msg_in_to_virt(c, pm);
|
||||
|
||||
i2o_report_status(KERN_INFO, "i2o_core", msg);
|
||||
|
||||
/* Release the preserved msg by resubmitting it as a NOP */
|
||||
i2o_msg_nop(c, pm);
|
||||
|
||||
/* If reply to i2o_post_wait failed, return causes a timeout */
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (le32_to_cpu(msg->u.s.tcntxt) & 0x80000000)
|
||||
return i2o_msg_post_wait_complete(c, m, msg);
|
||||
|
||||
if ((le32_to_cpu(msg->u.head[1]) >> 24) == I2O_CMD_LCT_NOTIFY) {
|
||||
struct work_struct *work;
|
||||
|
||||
pr_debug("%s: LCT notify received\n", c->name);
|
||||
|
||||
work = kmalloc(sizeof(*work), GFP_ATOMIC);
|
||||
if (!work)
|
||||
return -ENOMEM;
|
||||
|
||||
INIT_WORK(work, (void (*)(void *))i2o_exec_lct_modified, c);
|
||||
queue_work(i2o_exec_driver.event_queue, work);
|
||||
return 1;
|
||||
}
|
||||
|
||||
/*
|
||||
* If this happens, we want to dump the message to the syslog so
|
||||
* it can be sent back to the card manufacturer by the end user
|
||||
* to aid in debugging.
|
||||
*
|
||||
*/
|
||||
printk(KERN_WARNING "%s: Unsolicited message reply sent to core!"
|
||||
"Message dumped to syslog\n", c->name);
|
||||
i2o_dump_message(msg);
|
||||
|
||||
return -EFAULT;
|
||||
}
|
||||
|
||||
/**
|
||||
* i2o_exec_event - Event handling function
|
||||
* @evt: Event which occurs
|
||||
*
|
||||
* Handles events send by the Executive device. At the moment does not do
|
||||
* anything useful.
|
||||
*/
|
||||
static void i2o_exec_event(struct i2o_event *evt)
|
||||
{
|
||||
printk(KERN_INFO "Event received from device: %d\n",
|
||||
evt->i2o_dev->lct_data.tid);
|
||||
kfree(evt);
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_exec_lct_get - Get the IOP's Logical Configuration Table
|
||||
* @c: I2O controller from which the LCT should be fetched
|
||||
*
|
||||
* Send a LCT NOTIFY request to the controller, and wait
|
||||
* I2O_TIMEOUT_LCT_GET seconds until arrival of response. If the LCT is
|
||||
* to large, retry it.
|
||||
*
|
||||
* Returns 0 on success or negative error code on failure.
|
||||
*/
|
||||
int i2o_exec_lct_get(struct i2o_controller *c)
|
||||
{
|
||||
struct i2o_message __iomem *msg;
|
||||
u32 m;
|
||||
int i = 0;
|
||||
int rc = -EAGAIN;
|
||||
|
||||
for (i = 1; i <= I2O_LCT_GET_TRIES; i++) {
|
||||
m = i2o_msg_get_wait(c, &msg, I2O_TIMEOUT_MESSAGE_GET);
|
||||
if (m == I2O_QUEUE_EMPTY)
|
||||
return -ETIMEDOUT;
|
||||
|
||||
writel(EIGHT_WORD_MSG_SIZE | SGL_OFFSET_6, &msg->u.head[0]);
|
||||
writel(I2O_CMD_LCT_NOTIFY << 24 | HOST_TID << 12 | ADAPTER_TID,
|
||||
&msg->u.head[1]);
|
||||
writel(0xffffffff, &msg->body[0]);
|
||||
writel(0x00000000, &msg->body[1]);
|
||||
writel(0xd0000000 | c->dlct.len, &msg->body[2]);
|
||||
writel(c->dlct.phys, &msg->body[3]);
|
||||
|
||||
rc = i2o_msg_post_wait(c, m, I2O_TIMEOUT_LCT_GET);
|
||||
if (rc < 0)
|
||||
break;
|
||||
|
||||
rc = i2o_device_parse_lct(c);
|
||||
if (rc != -EAGAIN)
|
||||
break;
|
||||
}
|
||||
|
||||
return rc;
|
||||
}
|
||||
|
||||
/**
|
||||
* i2o_exec_lct_notify - Send a asynchronus LCT NOTIFY request
|
||||
* @c: I2O controller to which the request should be send
|
||||
* @change_ind: change indicator
|
||||
*
|
||||
* This function sends a LCT NOTIFY request to the I2O controller with
|
||||
* the change indicator change_ind. If the change_ind == 0 the controller
|
||||
* replies immediately after the request. If change_ind > 0 the reply is
|
||||
* send after change indicator of the LCT is > change_ind.
|
||||
*/
|
||||
static int i2o_exec_lct_notify(struct i2o_controller *c, u32 change_ind)
|
||||
{
|
||||
i2o_status_block *sb = c->status_block.virt;
|
||||
struct device *dev;
|
||||
struct i2o_message __iomem *msg;
|
||||
u32 m;
|
||||
|
||||
dev = &c->pdev->dev;
|
||||
|
||||
if (i2o_dma_realloc(dev, &c->dlct, sb->expected_lct_size, GFP_KERNEL))
|
||||
return -ENOMEM;
|
||||
|
||||
m = i2o_msg_get_wait(c, &msg, I2O_TIMEOUT_MESSAGE_GET);
|
||||
if (m == I2O_QUEUE_EMPTY)
|
||||
return -ETIMEDOUT;
|
||||
|
||||
writel(EIGHT_WORD_MSG_SIZE | SGL_OFFSET_6, &msg->u.head[0]);
|
||||
writel(I2O_CMD_LCT_NOTIFY << 24 | HOST_TID << 12 | ADAPTER_TID,
|
||||
&msg->u.head[1]);
|
||||
writel(i2o_exec_driver.context, &msg->u.s.icntxt);
|
||||
writel(0, &msg->u.s.tcntxt); /* FIXME */
|
||||
writel(0xffffffff, &msg->body[0]);
|
||||
writel(change_ind, &msg->body[1]);
|
||||
writel(0xd0000000 | c->dlct.len, &msg->body[2]);
|
||||
writel(c->dlct.phys, &msg->body[3]);
|
||||
|
||||
i2o_msg_post(c, m);
|
||||
|
||||
return 0;
|
||||
};
|
||||
|
||||
/* Exec OSM driver struct */
|
||||
struct i2o_driver i2o_exec_driver = {
|
||||
.name = "exec-osm",
|
||||
.reply = i2o_exec_reply,
|
||||
.event = i2o_exec_event,
|
||||
.classes = i2o_exec_class_id,
|
||||
.driver = {
|
||||
.probe = i2o_exec_probe,
|
||||
.remove = i2o_exec_remove,
|
||||
},
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_exec_init - Registers the Exec OSM
|
||||
*
|
||||
* Registers the Exec OSM in the I2O core.
|
||||
*
|
||||
* Returns 0 on success or negative error code on failure.
|
||||
*/
|
||||
int __init i2o_exec_init(void)
|
||||
{
|
||||
return i2o_driver_register(&i2o_exec_driver);
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_exec_exit - Removes the Exec OSM
|
||||
*
|
||||
* Unregisters the Exec OSM from the I2O core.
|
||||
*/
|
||||
void __exit i2o_exec_exit(void)
|
||||
{
|
||||
i2o_driver_unregister(&i2o_exec_driver);
|
||||
};
|
||||
|
||||
EXPORT_SYMBOL(i2o_msg_post_wait_mem);
|
||||
EXPORT_SYMBOL(i2o_exec_lct_get);
|
||||
1252
extra/linux-2.6.10/drivers/message/i2o/i2o_block.c
Normal file
1252
extra/linux-2.6.10/drivers/message/i2o/i2o_block.c
Normal file
File diff suppressed because it is too large
Load Diff
99
extra/linux-2.6.10/drivers/message/i2o/i2o_block.h
Normal file
99
extra/linux-2.6.10/drivers/message/i2o/i2o_block.h
Normal file
@@ -0,0 +1,99 @@
|
||||
/*
|
||||
* Block OSM structures/API
|
||||
*
|
||||
* Copyright (C) 1999-2002 Red Hat Software
|
||||
*
|
||||
* Written by Alan Cox, Building Number Three Ltd
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License as published by the
|
||||
* Free Software Foundation; either version 2 of the License, or (at your
|
||||
* option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* For the purpose of avoiding doubt the preferred form of the work
|
||||
* for making modifications shall be a standards compliant form such
|
||||
* gzipped tar and not one requiring a proprietary or patent encumbered
|
||||
* tool to unpack.
|
||||
*
|
||||
* Fixes/additions:
|
||||
* Steve Ralston:
|
||||
* Multiple device handling error fixes,
|
||||
* Added a queue depth.
|
||||
* Alan Cox:
|
||||
* FC920 has an rmw bug. Dont or in the end marker.
|
||||
* Removed queue walk, fixed for 64bitness.
|
||||
* Rewrote much of the code over time
|
||||
* Added indirect block lists
|
||||
* Handle 64K limits on many controllers
|
||||
* Don't use indirects on the Promise (breaks)
|
||||
* Heavily chop down the queue depths
|
||||
* Deepak Saxena:
|
||||
* Independent queues per IOP
|
||||
* Support for dynamic device creation/deletion
|
||||
* Code cleanup
|
||||
* Support for larger I/Os through merge* functions
|
||||
* (taken from DAC960 driver)
|
||||
* Boji T Kannanthanam:
|
||||
* Set the I2O Block devices to be detected in increasing
|
||||
* order of TIDs during boot.
|
||||
* Search and set the I2O block device that we boot off
|
||||
* from as the first device to be claimed (as /dev/i2o/hda)
|
||||
* Properly attach/detach I2O gendisk structure from the
|
||||
* system gendisk list. The I2O block devices now appear in
|
||||
* /proc/partitions.
|
||||
* Markus Lidel <Markus.Lidel@shadowconnect.com>:
|
||||
* Minor bugfixes for 2.6.
|
||||
*/
|
||||
|
||||
#ifndef I2O_BLOCK_OSM_H
|
||||
#define I2O_BLOCK_OSM_H
|
||||
|
||||
#define I2O_BLOCK_RETRY_TIME HZ/4
|
||||
#define I2O_BLOCK_MAX_OPEN_REQUESTS 50
|
||||
|
||||
/* I2O Block OSM mempool struct */
|
||||
struct i2o_block_mempool {
|
||||
kmem_cache_t *slab;
|
||||
mempool_t *pool;
|
||||
};
|
||||
|
||||
/* I2O Block device descriptor */
|
||||
struct i2o_block_device {
|
||||
struct i2o_device *i2o_dev; /* pointer to I2O device */
|
||||
struct gendisk *gd;
|
||||
spinlock_t lock; /* queue lock */
|
||||
struct list_head open_queue; /* list of transfered, but unfinished
|
||||
requests */
|
||||
unsigned int open_queue_depth; /* number of requests in the queue */
|
||||
|
||||
int rcache; /* read cache flags */
|
||||
int wcache; /* write cache flags */
|
||||
int flags;
|
||||
int power; /* power state */
|
||||
int media_change_flag; /* media changed flag */
|
||||
};
|
||||
|
||||
/* I2O Block device request */
|
||||
struct i2o_block_request
|
||||
{
|
||||
struct list_head queue;
|
||||
struct request *req; /* corresponding request */
|
||||
struct i2o_block_device *i2o_blk_dev; /* I2O block device */
|
||||
int sg_dma_direction; /* direction of DMA buffer read/write */
|
||||
int sg_nents; /* number of SG elements */
|
||||
struct scatterlist sg_table[I2O_MAX_SEGMENTS]; /* SG table */
|
||||
};
|
||||
|
||||
/* I2O Block device delayed request */
|
||||
struct i2o_block_delayed_request
|
||||
{
|
||||
struct work_struct work;
|
||||
struct request_queue *queue;
|
||||
};
|
||||
|
||||
#endif
|
||||
1167
extra/linux-2.6.10/drivers/message/i2o/i2o_config.c
Normal file
1167
extra/linux-2.6.10/drivers/message/i2o/i2o_config.c
Normal file
File diff suppressed because it is too large
Load Diff
159
extra/linux-2.6.10/drivers/message/i2o/i2o_lan.h
Normal file
159
extra/linux-2.6.10/drivers/message/i2o/i2o_lan.h
Normal file
@@ -0,0 +1,159 @@
|
||||
/*
|
||||
* i2o_lan.h I2O LAN Class definitions
|
||||
*
|
||||
* I2O LAN CLASS OSM May 26th 2000
|
||||
*
|
||||
* (C) Copyright 1999, 2000 University of Helsinki,
|
||||
* Department of Computer Science
|
||||
*
|
||||
* This code is still under development / test.
|
||||
*
|
||||
* Author: Auvo Häkkinen <Auvo.Hakkinen@cs.Helsinki.FI>
|
||||
* Juha Sievänen <Juha.Sievanen@cs.Helsinki.FI>
|
||||
* Taneli Vähäkangas <Taneli.Vahakangas@cs.Helsinki.FI>
|
||||
*/
|
||||
|
||||
#ifndef _I2O_LAN_H
|
||||
#define _I2O_LAN_H
|
||||
|
||||
/* Default values for tunable parameters first */
|
||||
|
||||
#define I2O_LAN_MAX_BUCKETS_OUT 96
|
||||
#define I2O_LAN_BUCKET_THRESH 18 /* 9 buckets in one message */
|
||||
#define I2O_LAN_RX_COPYBREAK 200
|
||||
#define I2O_LAN_TX_TIMEOUT (1*HZ)
|
||||
#define I2O_LAN_TX_BATCH_MODE 2 /* 2=automatic, 1=on, 0=off */
|
||||
#define I2O_LAN_EVENT_MASK 0 /* 0=None, 0xFFC00002=All */
|
||||
|
||||
/* LAN types */
|
||||
#define I2O_LAN_ETHERNET 0x0030
|
||||
#define I2O_LAN_100VG 0x0040
|
||||
#define I2O_LAN_TR 0x0050
|
||||
#define I2O_LAN_FDDI 0x0060
|
||||
#define I2O_LAN_FIBRE_CHANNEL 0x0070
|
||||
#define I2O_LAN_UNKNOWN 0x00000000
|
||||
|
||||
/* Connector types */
|
||||
|
||||
/* Ethernet */
|
||||
#define I2O_LAN_AUI (I2O_LAN_ETHERNET << 4) + 0x00000001
|
||||
#define I2O_LAN_10BASE5 (I2O_LAN_ETHERNET << 4) + 0x00000002
|
||||
#define I2O_LAN_FIORL (I2O_LAN_ETHERNET << 4) + 0x00000003
|
||||
#define I2O_LAN_10BASE2 (I2O_LAN_ETHERNET << 4) + 0x00000004
|
||||
#define I2O_LAN_10BROAD36 (I2O_LAN_ETHERNET << 4) + 0x00000005
|
||||
#define I2O_LAN_10BASE_T (I2O_LAN_ETHERNET << 4) + 0x00000006
|
||||
#define I2O_LAN_10BASE_FP (I2O_LAN_ETHERNET << 4) + 0x00000007
|
||||
#define I2O_LAN_10BASE_FB (I2O_LAN_ETHERNET << 4) + 0x00000008
|
||||
#define I2O_LAN_10BASE_FL (I2O_LAN_ETHERNET << 4) + 0x00000009
|
||||
#define I2O_LAN_100BASE_TX (I2O_LAN_ETHERNET << 4) + 0x0000000A
|
||||
#define I2O_LAN_100BASE_FX (I2O_LAN_ETHERNET << 4) + 0x0000000B
|
||||
#define I2O_LAN_100BASE_T4 (I2O_LAN_ETHERNET << 4) + 0x0000000C
|
||||
#define I2O_LAN_1000BASE_SX (I2O_LAN_ETHERNET << 4) + 0x0000000D
|
||||
#define I2O_LAN_1000BASE_LX (I2O_LAN_ETHERNET << 4) + 0x0000000E
|
||||
#define I2O_LAN_1000BASE_CX (I2O_LAN_ETHERNET << 4) + 0x0000000F
|
||||
#define I2O_LAN_1000BASE_T (I2O_LAN_ETHERNET << 4) + 0x00000010
|
||||
|
||||
/* AnyLAN */
|
||||
#define I2O_LAN_100VG_ETHERNET (I2O_LAN_100VG << 4) + 0x00000001
|
||||
#define I2O_LAN_100VG_TR (I2O_LAN_100VG << 4) + 0x00000002
|
||||
|
||||
/* Token Ring */
|
||||
#define I2O_LAN_4MBIT (I2O_LAN_TR << 4) + 0x00000001
|
||||
#define I2O_LAN_16MBIT (I2O_LAN_TR << 4) + 0x00000002
|
||||
|
||||
/* FDDI */
|
||||
#define I2O_LAN_125MBAUD (I2O_LAN_FDDI << 4) + 0x00000001
|
||||
|
||||
/* Fibre Channel */
|
||||
#define I2O_LAN_POINT_POINT (I2O_LAN_FIBRE_CHANNEL << 4) + 0x00000001
|
||||
#define I2O_LAN_ARB_LOOP (I2O_LAN_FIBRE_CHANNEL << 4) + 0x00000002
|
||||
#define I2O_LAN_PUBLIC_LOOP (I2O_LAN_FIBRE_CHANNEL << 4) + 0x00000003
|
||||
#define I2O_LAN_FABRIC (I2O_LAN_FIBRE_CHANNEL << 4) + 0x00000004
|
||||
|
||||
#define I2O_LAN_EMULATION 0x00000F00
|
||||
#define I2O_LAN_OTHER 0x00000F01
|
||||
#define I2O_LAN_DEFAULT 0xFFFFFFFF
|
||||
|
||||
/* LAN class functions */
|
||||
|
||||
#define LAN_PACKET_SEND 0x3B
|
||||
#define LAN_SDU_SEND 0x3D
|
||||
#define LAN_RECEIVE_POST 0x3E
|
||||
#define LAN_RESET 0x35
|
||||
#define LAN_SUSPEND 0x37
|
||||
|
||||
/* LAN DetailedStatusCode defines */
|
||||
#define I2O_LAN_DSC_SUCCESS 0x00
|
||||
#define I2O_LAN_DSC_DEVICE_FAILURE 0x01
|
||||
#define I2O_LAN_DSC_DESTINATION_NOT_FOUND 0x02
|
||||
#define I2O_LAN_DSC_TRANSMIT_ERROR 0x03
|
||||
#define I2O_LAN_DSC_TRANSMIT_ABORTED 0x04
|
||||
#define I2O_LAN_DSC_RECEIVE_ERROR 0x05
|
||||
#define I2O_LAN_DSC_RECEIVE_ABORTED 0x06
|
||||
#define I2O_LAN_DSC_DMA_ERROR 0x07
|
||||
#define I2O_LAN_DSC_BAD_PACKET_DETECTED 0x08
|
||||
#define I2O_LAN_DSC_OUT_OF_MEMORY 0x09
|
||||
#define I2O_LAN_DSC_BUCKET_OVERRUN 0x0A
|
||||
#define I2O_LAN_DSC_IOP_INTERNAL_ERROR 0x0B
|
||||
#define I2O_LAN_DSC_CANCELED 0x0C
|
||||
#define I2O_LAN_DSC_INVALID_TRANSACTION_CONTEXT 0x0D
|
||||
#define I2O_LAN_DSC_DEST_ADDRESS_DETECTED 0x0E
|
||||
#define I2O_LAN_DSC_DEST_ADDRESS_OMITTED 0x0F
|
||||
#define I2O_LAN_DSC_PARTIAL_PACKET_RETURNED 0x10
|
||||
#define I2O_LAN_DSC_SUSPENDED 0x11
|
||||
|
||||
struct i2o_packet_info {
|
||||
u32 offset : 24;
|
||||
u32 flags : 8;
|
||||
u32 len : 24;
|
||||
u32 status : 8;
|
||||
};
|
||||
|
||||
struct i2o_bucket_descriptor {
|
||||
u32 context; /* FIXME: 64bit support */
|
||||
struct i2o_packet_info packet_info[1];
|
||||
};
|
||||
|
||||
/* Event Indicator Mask Flags for LAN OSM */
|
||||
|
||||
#define I2O_LAN_EVT_LINK_DOWN 0x01
|
||||
#define I2O_LAN_EVT_LINK_UP 0x02
|
||||
#define I2O_LAN_EVT_MEDIA_CHANGE 0x04
|
||||
|
||||
#include <linux/netdevice.h>
|
||||
#include <linux/fddidevice.h>
|
||||
|
||||
struct i2o_lan_local {
|
||||
u8 unit;
|
||||
struct i2o_device *i2o_dev;
|
||||
|
||||
struct fddi_statistics stats; /* see also struct net_device_stats */
|
||||
unsigned short (*type_trans)(struct sk_buff *, struct net_device *);
|
||||
atomic_t buckets_out; /* nbr of unused buckets on DDM */
|
||||
atomic_t tx_out; /* outstanding TXes */
|
||||
u8 tx_count; /* packets in one TX message frame */
|
||||
u16 tx_max_out; /* DDM's Tx queue len */
|
||||
u8 sgl_max; /* max SGLs in one message frame */
|
||||
u32 m; /* IOP address of the batch msg frame */
|
||||
|
||||
struct work_struct i2o_batch_send_task;
|
||||
int send_active;
|
||||
struct sk_buff **i2o_fbl; /* Free bucket list (to reuse skbs) */
|
||||
int i2o_fbl_tail;
|
||||
spinlock_t fbl_lock;
|
||||
|
||||
spinlock_t tx_lock;
|
||||
|
||||
u32 max_size_mc_table; /* max number of multicast addresses */
|
||||
|
||||
/* LAN OSM configurable parameters are here: */
|
||||
|
||||
u16 max_buckets_out; /* max nbr of buckets to send to DDM */
|
||||
u16 bucket_thresh; /* send more when this many used */
|
||||
u16 rx_copybreak;
|
||||
|
||||
u8 tx_batch_mode; /* Set when using batch mode sends */
|
||||
u32 i2o_event_mask; /* To turn on interesting event flags */
|
||||
};
|
||||
|
||||
#endif /* _I2O_LAN_H */
|
||||
2108
extra/linux-2.6.10/drivers/message/i2o/i2o_proc.c
Normal file
2108
extra/linux-2.6.10/drivers/message/i2o/i2o_proc.c
Normal file
File diff suppressed because it is too large
Load Diff
839
extra/linux-2.6.10/drivers/message/i2o/i2o_scsi.c
Normal file
839
extra/linux-2.6.10/drivers/message/i2o/i2o_scsi.c
Normal file
@@ -0,0 +1,839 @@
|
||||
/*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License as published by the
|
||||
* Free Software Foundation; either version 2, or (at your option) any
|
||||
* later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* For the avoidance of doubt the "preferred form" of this code is one which
|
||||
* is in an open non patent encumbered format. Where cryptographic key signing
|
||||
* forms part of the process of creating an executable the information
|
||||
* including keys needed to generate an equivalently functional executable
|
||||
* are deemed to be part of the source code.
|
||||
*
|
||||
* Complications for I2O scsi
|
||||
*
|
||||
* o Each (bus,lun) is a logical device in I2O. We keep a map
|
||||
* table. We spoof failed selection for unmapped units
|
||||
* o Request sense buffers can come back for free.
|
||||
* o Scatter gather is a bit dynamic. We have to investigate at
|
||||
* setup time.
|
||||
* o Some of our resources are dynamically shared. The i2o core
|
||||
* needs a message reservation protocol to avoid swap v net
|
||||
* deadlocking. We need to back off queue requests.
|
||||
*
|
||||
* In general the firmware wants to help. Where its help isn't performance
|
||||
* useful we just ignore the aid. Its not worth the code in truth.
|
||||
*
|
||||
* Fixes/additions:
|
||||
* Steve Ralston:
|
||||
* Scatter gather now works
|
||||
* Markus Lidel <Markus.Lidel@shadowconnect.com>:
|
||||
* Minor fixes for 2.6.
|
||||
*
|
||||
* To Do:
|
||||
* 64bit cleanups
|
||||
* Fix the resource management problems.
|
||||
*/
|
||||
|
||||
#include <linux/module.h>
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/types.h>
|
||||
#include <linux/string.h>
|
||||
#include <linux/ioport.h>
|
||||
#include <linux/jiffies.h>
|
||||
#include <linux/interrupt.h>
|
||||
#include <linux/timer.h>
|
||||
#include <linux/delay.h>
|
||||
#include <linux/proc_fs.h>
|
||||
#include <linux/prefetch.h>
|
||||
#include <linux/pci.h>
|
||||
#include <linux/blkdev.h>
|
||||
#include <linux/i2o.h>
|
||||
|
||||
#include <asm/dma.h>
|
||||
#include <asm/system.h>
|
||||
#include <asm/io.h>
|
||||
#include <asm/atomic.h>
|
||||
|
||||
#include <scsi/scsi.h>
|
||||
#include <scsi/scsi_host.h>
|
||||
#include <scsi/scsi_device.h>
|
||||
#include <scsi/scsi_cmnd.h>
|
||||
|
||||
#define VERSION_STRING "Version 0.1.2"
|
||||
|
||||
static struct i2o_driver i2o_scsi_driver;
|
||||
|
||||
static int i2o_scsi_max_id = 16;
|
||||
static int i2o_scsi_max_lun = 8;
|
||||
|
||||
struct i2o_scsi_host {
|
||||
struct Scsi_Host *scsi_host; /* pointer to the SCSI host */
|
||||
struct i2o_controller *iop; /* pointer to the I2O controller */
|
||||
struct i2o_device *channel[0]; /* channel->i2o_dev mapping table */
|
||||
};
|
||||
|
||||
static struct scsi_host_template i2o_scsi_host_template;
|
||||
|
||||
#define I2O_SCSI_CAN_QUEUE 4
|
||||
|
||||
/* SCSI OSM class handling definition */
|
||||
static struct i2o_class_id i2o_scsi_class_id[] = {
|
||||
{I2O_CLASS_SCSI_PERIPHERAL},
|
||||
{I2O_CLASS_END}
|
||||
};
|
||||
|
||||
static struct i2o_scsi_host *i2o_scsi_host_alloc(struct i2o_controller *c)
|
||||
{
|
||||
struct i2o_scsi_host *i2o_shost;
|
||||
struct i2o_device *i2o_dev;
|
||||
struct Scsi_Host *scsi_host;
|
||||
int max_channel = 0;
|
||||
u8 type;
|
||||
int i;
|
||||
size_t size;
|
||||
i2o_status_block *sb;
|
||||
|
||||
list_for_each_entry(i2o_dev, &c->devices, list)
|
||||
if (i2o_dev->lct_data.class_id == I2O_CLASS_BUS_ADAPTER_PORT) {
|
||||
if (i2o_parm_field_get(i2o_dev, 0x0000, 0, &type, 1) || (type == 1)) /* SCSI bus */
|
||||
max_channel++;
|
||||
}
|
||||
|
||||
if (!max_channel) {
|
||||
printk(KERN_WARNING "scsi-osm: no channels found on %s\n",
|
||||
c->name);
|
||||
return ERR_PTR(-EFAULT);
|
||||
}
|
||||
|
||||
size = max_channel * sizeof(struct i2o_device *)
|
||||
+ sizeof(struct i2o_scsi_host);
|
||||
|
||||
scsi_host = scsi_host_alloc(&i2o_scsi_host_template, size);
|
||||
if (!scsi_host) {
|
||||
printk(KERN_WARNING "scsi-osm: Could not allocate SCSI host\n");
|
||||
return ERR_PTR(-ENOMEM);
|
||||
}
|
||||
|
||||
scsi_host->max_channel = max_channel - 1;
|
||||
scsi_host->max_id = i2o_scsi_max_id;
|
||||
scsi_host->max_lun = i2o_scsi_max_lun;
|
||||
scsi_host->this_id = c->unit;
|
||||
|
||||
sb = c->status_block.virt;
|
||||
|
||||
scsi_host->sg_tablesize = (sb->inbound_frame_size -
|
||||
sizeof(struct i2o_message) / 4 - 6) / 2;
|
||||
|
||||
i2o_shost = (struct i2o_scsi_host *)scsi_host->hostdata;
|
||||
i2o_shost->scsi_host = scsi_host;
|
||||
i2o_shost->iop = c;
|
||||
|
||||
i = 0;
|
||||
list_for_each_entry(i2o_dev, &c->devices, list)
|
||||
if (i2o_dev->lct_data.class_id == I2O_CLASS_BUS_ADAPTER_PORT) {
|
||||
if (i2o_parm_field_get(i2o_dev, 0x0000, 0, &type, 1) || (type == 1)) /* only SCSI bus */
|
||||
i2o_shost->channel[i++] = i2o_dev;
|
||||
|
||||
if (i >= max_channel)
|
||||
break;
|
||||
}
|
||||
|
||||
return i2o_shost;
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_scsi_get_host - Get an I2O SCSI host
|
||||
* @c: I2O controller to for which to get the SCSI host
|
||||
*
|
||||
* If the I2O controller already exists as SCSI host, the SCSI host
|
||||
* is returned, otherwise the I2O controller is added to the SCSI
|
||||
* core.
|
||||
*
|
||||
* Returns pointer to the I2O SCSI host on success or NULL on failure.
|
||||
*/
|
||||
static struct i2o_scsi_host *i2o_scsi_get_host(struct i2o_controller *c)
|
||||
{
|
||||
return c->driver_data[i2o_scsi_driver.context];
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_scsi_remove - Remove I2O device from SCSI core
|
||||
* @dev: device which should be removed
|
||||
*
|
||||
* Removes the I2O device from the SCSI core again.
|
||||
*
|
||||
* Returns 0 on success.
|
||||
*/
|
||||
static int i2o_scsi_remove(struct device *dev)
|
||||
{
|
||||
struct i2o_device *i2o_dev = to_i2o_device(dev);
|
||||
struct i2o_controller *c = i2o_dev->iop;
|
||||
struct i2o_scsi_host *i2o_shost;
|
||||
struct scsi_device *scsi_dev;
|
||||
|
||||
i2o_shost = i2o_scsi_get_host(c);
|
||||
|
||||
shost_for_each_device(scsi_dev, i2o_shost->scsi_host)
|
||||
if (scsi_dev->hostdata == i2o_dev) {
|
||||
scsi_remove_device(scsi_dev);
|
||||
scsi_device_put(scsi_dev);
|
||||
break;
|
||||
}
|
||||
|
||||
return 0;
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_scsi_probe - verify if dev is a I2O SCSI device and install it
|
||||
* @dev: device to verify if it is a I2O SCSI device
|
||||
*
|
||||
* Retrieve channel, id and lun for I2O device. If everthing goes well
|
||||
* register the I2O device as SCSI device on the I2O SCSI controller.
|
||||
*
|
||||
* Returns 0 on success or negative error code on failure.
|
||||
*/
|
||||
static int i2o_scsi_probe(struct device *dev)
|
||||
{
|
||||
struct i2o_device *i2o_dev = to_i2o_device(dev);
|
||||
struct i2o_controller *c = i2o_dev->iop;
|
||||
struct i2o_scsi_host *i2o_shost;
|
||||
struct Scsi_Host *scsi_host;
|
||||
struct i2o_device *parent;
|
||||
struct scsi_device *scsi_dev;
|
||||
u32 id;
|
||||
u64 lun;
|
||||
int channel = -1;
|
||||
int i;
|
||||
|
||||
i2o_shost = i2o_scsi_get_host(c);
|
||||
if (!i2o_shost)
|
||||
return -EFAULT;
|
||||
|
||||
scsi_host = i2o_shost->scsi_host;
|
||||
|
||||
if (i2o_parm_field_get(i2o_dev, 0, 3, &id, 4) < 0)
|
||||
return -EFAULT;
|
||||
|
||||
if (id >= scsi_host->max_id) {
|
||||
printk(KERN_WARNING "scsi-osm: SCSI device id (%d) >= max_id "
|
||||
"of I2O host (%d)", id, scsi_host->max_id);
|
||||
return -EFAULT;
|
||||
}
|
||||
|
||||
if (i2o_parm_field_get(i2o_dev, 0, 4, &lun, 8) < 0)
|
||||
return -EFAULT;
|
||||
if (lun >= scsi_host->max_lun) {
|
||||
printk(KERN_WARNING "scsi-osm: SCSI device id (%d) >= max_lun "
|
||||
"of I2O host (%d)", (unsigned int)lun,
|
||||
scsi_host->max_lun);
|
||||
return -EFAULT;
|
||||
}
|
||||
|
||||
parent = i2o_iop_find_device(c, i2o_dev->lct_data.parent_tid);
|
||||
if (!parent) {
|
||||
printk(KERN_WARNING "scsi-osm: can not find parent of device "
|
||||
"%03x\n", i2o_dev->lct_data.tid);
|
||||
return -EFAULT;
|
||||
}
|
||||
|
||||
for (i = 0; i <= i2o_shost->scsi_host->max_channel; i++)
|
||||
if (i2o_shost->channel[i] == parent)
|
||||
channel = i;
|
||||
|
||||
if (channel == -1) {
|
||||
printk(KERN_WARNING "scsi-osm: can not find channel of device "
|
||||
"%03x\n", i2o_dev->lct_data.tid);
|
||||
return -EFAULT;
|
||||
}
|
||||
|
||||
scsi_dev =
|
||||
__scsi_add_device(i2o_shost->scsi_host, channel, id, lun, i2o_dev);
|
||||
|
||||
if (!scsi_dev) {
|
||||
printk(KERN_WARNING "scsi-osm: can not add SCSI device "
|
||||
"%03x\n", i2o_dev->lct_data.tid);
|
||||
return -EFAULT;
|
||||
}
|
||||
|
||||
pr_debug("Added new SCSI device %03x (cannel: %d, id: %d, lun: %d)\n",
|
||||
i2o_dev->lct_data.tid, channel, id, (unsigned int)lun);
|
||||
|
||||
return 0;
|
||||
};
|
||||
|
||||
static const char *i2o_scsi_info(struct Scsi_Host *SChost)
|
||||
{
|
||||
struct i2o_scsi_host *hostdata;
|
||||
hostdata = (struct i2o_scsi_host *)SChost->hostdata;
|
||||
return hostdata->iop->name;
|
||||
}
|
||||
|
||||
/**
|
||||
* i2o_scsi_reply - SCSI OSM message reply handler
|
||||
* @c: controller issuing the reply
|
||||
* @m: message id for flushing
|
||||
* @msg: the message from the controller
|
||||
*
|
||||
* Process reply messages (interrupts in normal scsi controller think).
|
||||
* We can get a variety of messages to process. The normal path is
|
||||
* scsi command completions. We must also deal with IOP failures,
|
||||
* the reply to a bus reset and the reply to a LUN query.
|
||||
*
|
||||
* Returns 0 on success and if the reply should not be flushed or > 0
|
||||
* on success and if the reply should be flushed. Returns negative error
|
||||
* code on failure and if the reply should be flushed.
|
||||
*/
|
||||
static int i2o_scsi_reply(struct i2o_controller *c, u32 m,
|
||||
struct i2o_message *msg)
|
||||
{
|
||||
struct scsi_cmnd *cmd;
|
||||
struct device *dev;
|
||||
u8 as, ds, st;
|
||||
|
||||
cmd = i2o_cntxt_list_get(c, le32_to_cpu(msg->u.s.tcntxt));
|
||||
|
||||
if (msg->u.head[0] & (1 << 13)) {
|
||||
struct i2o_message __iomem *pmsg; /* preserved message */
|
||||
u32 pm;
|
||||
int err = DID_ERROR;
|
||||
|
||||
pm = le32_to_cpu(msg->body[3]);
|
||||
|
||||
pmsg = i2o_msg_in_to_virt(c, pm);
|
||||
|
||||
printk(KERN_ERR "IOP fail.\n");
|
||||
printk(KERN_ERR "From %d To %d Cmd %d.\n",
|
||||
(msg->u.head[1] >> 12) & 0xFFF,
|
||||
msg->u.head[1] & 0xFFF, msg->u.head[1] >> 24);
|
||||
printk(KERN_ERR "Failure Code %d.\n", msg->body[0] >> 24);
|
||||
if (msg->body[0] & (1 << 16))
|
||||
printk(KERN_ERR "Format error.\n");
|
||||
if (msg->body[0] & (1 << 17))
|
||||
printk(KERN_ERR "Path error.\n");
|
||||
if (msg->body[0] & (1 << 18))
|
||||
printk(KERN_ERR "Path State.\n");
|
||||
if (msg->body[0] & (1 << 18))
|
||||
{
|
||||
printk(KERN_ERR "Congestion.\n");
|
||||
err = DID_BUS_BUSY;
|
||||
}
|
||||
|
||||
printk(KERN_DEBUG "Failing message is %p.\n", pmsg);
|
||||
|
||||
cmd = i2o_cntxt_list_get(c, readl(&pmsg->u.s.tcntxt));
|
||||
if (!cmd)
|
||||
return 1;
|
||||
|
||||
cmd->result = err << 16;
|
||||
cmd->scsi_done(cmd);
|
||||
|
||||
/* Now flush the message by making it a NOP */
|
||||
i2o_msg_nop(c, pm);
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
/*
|
||||
* Low byte is device status, next is adapter status,
|
||||
* (then one byte reserved), then request status.
|
||||
*/
|
||||
ds = (u8) le32_to_cpu(msg->body[0]);
|
||||
as = (u8) (le32_to_cpu(msg->body[0]) >> 8);
|
||||
st = (u8) (le32_to_cpu(msg->body[0]) >> 24);
|
||||
|
||||
/*
|
||||
* Is this a control request coming back - eg an abort ?
|
||||
*/
|
||||
|
||||
if (!cmd) {
|
||||
if (st)
|
||||
printk(KERN_WARNING "SCSI abort: %08X",
|
||||
le32_to_cpu(msg->body[0]));
|
||||
printk(KERN_INFO "SCSI abort completed.\n");
|
||||
return -EFAULT;
|
||||
}
|
||||
|
||||
pr_debug("Completed %ld\n", cmd->serial_number);
|
||||
|
||||
if (st) {
|
||||
u32 count, error;
|
||||
/* An error has occurred */
|
||||
|
||||
switch (st) {
|
||||
case 0x06:
|
||||
count = le32_to_cpu(msg->body[1]);
|
||||
if (count < cmd->underflow) {
|
||||
int i;
|
||||
printk(KERN_ERR "SCSI: underflow 0x%08X 0x%08X"
|
||||
"\n", count, cmd->underflow);
|
||||
printk(KERN_DEBUG "Cmd: ");
|
||||
for (i = 0; i < 15; i++)
|
||||
printk(KERN_DEBUG "%02X ",
|
||||
cmd->cmnd[i]);
|
||||
printk(KERN_DEBUG ".\n");
|
||||
cmd->result = (DID_ERROR << 16);
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
error = le32_to_cpu(msg->body[0]);
|
||||
|
||||
printk(KERN_ERR "scsi-osm: SCSI error %08x\n", error);
|
||||
|
||||
if ((error & 0xff) == 0x02 /*CHECK_CONDITION */ ) {
|
||||
int i;
|
||||
u32 len = sizeof(cmd->sense_buffer);
|
||||
len = (len > 40) ? 40 : len;
|
||||
// Copy over the sense data
|
||||
memcpy(cmd->sense_buffer, (void *)&msg->body[3],
|
||||
len);
|
||||
for (i = 0; i <= len; i++)
|
||||
printk(KERN_INFO "%02x\n",
|
||||
cmd->sense_buffer[i]);
|
||||
if (cmd->sense_buffer[0] == 0x70
|
||||
&& cmd->sense_buffer[2] == DATA_PROTECT) {
|
||||
/* This is to handle an array failed */
|
||||
cmd->result = (DID_TIME_OUT << 16);
|
||||
printk(KERN_WARNING "%s: SCSI Data "
|
||||
"Protect-Device (%d,%d,%d) "
|
||||
"hba_status=0x%x, dev_status="
|
||||
"0x%x, cmd=0x%x\n", c->name,
|
||||
(u32) cmd->device->channel,
|
||||
(u32) cmd->device->id,
|
||||
(u32) cmd->device->lun,
|
||||
(error >> 8) & 0xff,
|
||||
error & 0xff, cmd->cmnd[0]);
|
||||
} else
|
||||
cmd->result = (DID_ERROR << 16);
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
switch (as) {
|
||||
case 0x0E:
|
||||
/* SCSI Reset */
|
||||
cmd->result = DID_RESET << 16;
|
||||
break;
|
||||
|
||||
case 0x0F:
|
||||
cmd->result = DID_PARITY << 16;
|
||||
break;
|
||||
|
||||
default:
|
||||
cmd->result = DID_ERROR << 16;
|
||||
break;
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
cmd->scsi_done(cmd);
|
||||
return 1;
|
||||
}
|
||||
|
||||
cmd->result = DID_OK << 16 | ds;
|
||||
|
||||
cmd->scsi_done(cmd);
|
||||
|
||||
dev = &c->pdev->dev;
|
||||
if (cmd->use_sg)
|
||||
dma_unmap_sg(dev, (struct scatterlist *)cmd->buffer,
|
||||
cmd->use_sg, cmd->sc_data_direction);
|
||||
else if (cmd->request_bufflen)
|
||||
dma_unmap_single(dev, (dma_addr_t) ((long)cmd->SCp.ptr),
|
||||
cmd->request_bufflen, cmd->sc_data_direction);
|
||||
|
||||
return 1;
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_scsi_notify_controller_add - Retrieve notifications of added
|
||||
* controllers
|
||||
* @c: the controller which was added
|
||||
*
|
||||
* If a I2O controller is added, we catch the notification to add a
|
||||
* corresponding Scsi_Host.
|
||||
*/
|
||||
static void i2o_scsi_notify_controller_add(struct i2o_controller *c)
|
||||
{
|
||||
struct i2o_scsi_host *i2o_shost;
|
||||
int rc;
|
||||
|
||||
i2o_shost = i2o_scsi_host_alloc(c);
|
||||
if (IS_ERR(i2o_shost)) {
|
||||
printk(KERN_ERR "scsi-osm: Could not initialize"
|
||||
" SCSI host\n");
|
||||
return;
|
||||
}
|
||||
|
||||
rc = scsi_add_host(i2o_shost->scsi_host, &c->device);
|
||||
if (rc) {
|
||||
printk(KERN_ERR "scsi-osm: Could not add SCSI " "host\n");
|
||||
scsi_host_put(i2o_shost->scsi_host);
|
||||
return;
|
||||
}
|
||||
|
||||
c->driver_data[i2o_scsi_driver.context] = i2o_shost;
|
||||
|
||||
pr_debug("new I2O SCSI host added\n");
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_scsi_notify_controller_remove - Retrieve notifications of removed
|
||||
* controllers
|
||||
* @c: the controller which was removed
|
||||
*
|
||||
* If a I2O controller is removed, we catch the notification to remove the
|
||||
* corresponding Scsi_Host.
|
||||
*/
|
||||
static void i2o_scsi_notify_controller_remove(struct i2o_controller *c)
|
||||
{
|
||||
struct i2o_scsi_host *i2o_shost;
|
||||
i2o_shost = i2o_scsi_get_host(c);
|
||||
if (!i2o_shost)
|
||||
return;
|
||||
|
||||
c->driver_data[i2o_scsi_driver.context] = NULL;
|
||||
|
||||
scsi_remove_host(i2o_shost->scsi_host);
|
||||
scsi_host_put(i2o_shost->scsi_host);
|
||||
pr_debug("I2O SCSI host removed\n");
|
||||
};
|
||||
|
||||
/* SCSI OSM driver struct */
|
||||
static struct i2o_driver i2o_scsi_driver = {
|
||||
.name = "scsi-osm",
|
||||
.reply = i2o_scsi_reply,
|
||||
.classes = i2o_scsi_class_id,
|
||||
.notify_controller_add = i2o_scsi_notify_controller_add,
|
||||
.notify_controller_remove = i2o_scsi_notify_controller_remove,
|
||||
.driver = {
|
||||
.probe = i2o_scsi_probe,
|
||||
.remove = i2o_scsi_remove,
|
||||
},
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_scsi_queuecommand - queue a SCSI command
|
||||
* @SCpnt: scsi command pointer
|
||||
* @done: callback for completion
|
||||
*
|
||||
* Issue a scsi command asynchronously. Return 0 on success or 1 if
|
||||
* we hit an error (normally message queue congestion). The only
|
||||
* minor complication here is that I2O deals with the device addressing
|
||||
* so we have to map the bus/dev/lun back to an I2O handle as well
|
||||
* as faking absent devices ourself.
|
||||
*
|
||||
* Locks: takes the controller lock on error path only
|
||||
*/
|
||||
|
||||
static int i2o_scsi_queuecommand(struct scsi_cmnd *SCpnt,
|
||||
void (*done) (struct scsi_cmnd *))
|
||||
{
|
||||
struct i2o_controller *c;
|
||||
struct Scsi_Host *host;
|
||||
struct i2o_device *i2o_dev;
|
||||
struct device *dev;
|
||||
int tid;
|
||||
struct i2o_message __iomem *msg;
|
||||
u32 m;
|
||||
u32 scsi_flags, sg_flags;
|
||||
u32 __iomem *mptr;
|
||||
u32 __iomem *lenptr;
|
||||
u32 len, reqlen;
|
||||
int i;
|
||||
|
||||
/*
|
||||
* Do the incoming paperwork
|
||||
*/
|
||||
|
||||
i2o_dev = SCpnt->device->hostdata;
|
||||
host = SCpnt->device->host;
|
||||
c = i2o_dev->iop;
|
||||
dev = &c->pdev->dev;
|
||||
|
||||
SCpnt->scsi_done = done;
|
||||
|
||||
if (unlikely(!i2o_dev)) {
|
||||
printk(KERN_WARNING "scsi-osm: no I2O device in request\n");
|
||||
SCpnt->result = DID_NO_CONNECT << 16;
|
||||
done(SCpnt);
|
||||
return 0;
|
||||
}
|
||||
|
||||
tid = i2o_dev->lct_data.tid;
|
||||
|
||||
pr_debug("qcmd: Tid = %03x\n", tid);
|
||||
pr_debug("Real scsi messages.\n");
|
||||
|
||||
/*
|
||||
* Obtain an I2O message. If there are none free then
|
||||
* throw it back to the scsi layer
|
||||
*/
|
||||
|
||||
m = i2o_msg_get_wait(c, &msg, I2O_TIMEOUT_MESSAGE_GET);
|
||||
if (m == I2O_QUEUE_EMPTY)
|
||||
return SCSI_MLQUEUE_HOST_BUSY;
|
||||
|
||||
/*
|
||||
* Put together a scsi execscb message
|
||||
*/
|
||||
|
||||
len = SCpnt->request_bufflen;
|
||||
|
||||
switch (SCpnt->sc_data_direction) {
|
||||
case PCI_DMA_NONE:
|
||||
scsi_flags = 0x00000000; // DATA NO XFER
|
||||
sg_flags = 0x00000000;
|
||||
break;
|
||||
|
||||
case PCI_DMA_TODEVICE:
|
||||
scsi_flags = 0x80000000; // DATA OUT (iop-->dev)
|
||||
sg_flags = 0x14000000;
|
||||
break;
|
||||
|
||||
case PCI_DMA_FROMDEVICE:
|
||||
scsi_flags = 0x40000000; // DATA IN (iop<--dev)
|
||||
sg_flags = 0x10000000;
|
||||
break;
|
||||
|
||||
default:
|
||||
/* Unknown - kill the command */
|
||||
SCpnt->result = DID_NO_CONNECT << 16;
|
||||
done(SCpnt);
|
||||
return 0;
|
||||
}
|
||||
|
||||
writel(I2O_CMD_SCSI_EXEC << 24 | HOST_TID << 12 | tid, &msg->u.head[1]);
|
||||
writel(i2o_scsi_driver.context, &msg->u.s.icntxt);
|
||||
|
||||
/* We want the SCSI control block back */
|
||||
writel(i2o_cntxt_list_add(c, SCpnt), &msg->u.s.tcntxt);
|
||||
|
||||
/* LSI_920_PCI_QUIRK
|
||||
*
|
||||
* Intermittant observations of msg frame word data corruption
|
||||
* observed on msg[4] after:
|
||||
* WRITE, READ-MODIFY-WRITE
|
||||
* operations. 19990606 -sralston
|
||||
*
|
||||
* (Hence we build this word via tag. Its good practice anyway
|
||||
* we don't want fetches over PCI needlessly)
|
||||
*/
|
||||
|
||||
/* Attach tags to the devices */
|
||||
/*
|
||||
if(SCpnt->device->tagged_supported) {
|
||||
if(SCpnt->tag == HEAD_OF_QUEUE_TAG)
|
||||
scsi_flags |= 0x01000000;
|
||||
else if(SCpnt->tag == ORDERED_QUEUE_TAG)
|
||||
scsi_flags |= 0x01800000;
|
||||
}
|
||||
*/
|
||||
|
||||
/* Direction, disconnect ok, tag, CDBLen */
|
||||
writel(scsi_flags | 0x20200000 | SCpnt->cmd_len, &msg->body[0]);
|
||||
|
||||
mptr = &msg->body[1];
|
||||
|
||||
/* Write SCSI command into the message - always 16 byte block */
|
||||
memcpy_toio(mptr, SCpnt->cmnd, 16);
|
||||
mptr += 4;
|
||||
lenptr = mptr++; /* Remember me - fill in when we know */
|
||||
|
||||
reqlen = 12; // SINGLE SGE
|
||||
|
||||
/* Now fill in the SGList and command */
|
||||
if (SCpnt->use_sg) {
|
||||
struct scatterlist *sg;
|
||||
int sg_count;
|
||||
|
||||
sg = SCpnt->request_buffer;
|
||||
len = 0;
|
||||
|
||||
sg_count = dma_map_sg(dev, sg, SCpnt->use_sg,
|
||||
SCpnt->sc_data_direction);
|
||||
|
||||
if (unlikely(sg_count <= 0))
|
||||
return -ENOMEM;
|
||||
|
||||
for (i = SCpnt->use_sg; i > 0; i--) {
|
||||
if (i == 1)
|
||||
sg_flags |= 0xC0000000;
|
||||
writel(sg_flags | sg_dma_len(sg), mptr++);
|
||||
writel(sg_dma_address(sg), mptr++);
|
||||
len += sg_dma_len(sg);
|
||||
sg++;
|
||||
}
|
||||
|
||||
reqlen = mptr - &msg->u.head[0];
|
||||
writel(len, lenptr);
|
||||
} else {
|
||||
len = SCpnt->request_bufflen;
|
||||
|
||||
writel(len, lenptr);
|
||||
|
||||
if (len > 0) {
|
||||
dma_addr_t dma_addr;
|
||||
|
||||
dma_addr = dma_map_single(dev, SCpnt->request_buffer,
|
||||
SCpnt->request_bufflen,
|
||||
SCpnt->sc_data_direction);
|
||||
if (!dma_addr)
|
||||
return -ENOMEM;
|
||||
|
||||
SCpnt->SCp.ptr = (void *)(unsigned long)dma_addr;
|
||||
sg_flags |= 0xC0000000;
|
||||
writel(sg_flags | SCpnt->request_bufflen, mptr++);
|
||||
writel(dma_addr, mptr++);
|
||||
} else
|
||||
reqlen = 9;
|
||||
}
|
||||
|
||||
/* Stick the headers on */
|
||||
writel(reqlen << 16 | SGL_OFFSET_10, &msg->u.head[0]);
|
||||
|
||||
/* Queue the message */
|
||||
i2o_msg_post(c, m);
|
||||
|
||||
pr_debug("Issued %ld\n", SCpnt->serial_number);
|
||||
|
||||
return 0;
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_scsi_abort - abort a running command
|
||||
* @SCpnt: command to abort
|
||||
*
|
||||
* Ask the I2O controller to abort a command. This is an asynchrnous
|
||||
* process and our callback handler will see the command complete with an
|
||||
* aborted message if it succeeds.
|
||||
*
|
||||
* Returns 0 if the command is successfully aborted or negative error code
|
||||
* on failure.
|
||||
*/
|
||||
static int i2o_scsi_abort(struct scsi_cmnd *SCpnt)
|
||||
{
|
||||
struct i2o_device *i2o_dev;
|
||||
struct i2o_controller *c;
|
||||
struct i2o_message __iomem *msg;
|
||||
u32 m;
|
||||
int tid;
|
||||
int status = FAILED;
|
||||
|
||||
printk(KERN_WARNING "i2o_scsi: Aborting command block.\n");
|
||||
|
||||
i2o_dev = SCpnt->device->hostdata;
|
||||
c = i2o_dev->iop;
|
||||
tid = i2o_dev->lct_data.tid;
|
||||
|
||||
m = i2o_msg_get_wait(c, &msg, I2O_TIMEOUT_MESSAGE_GET);
|
||||
if (m == I2O_QUEUE_EMPTY)
|
||||
return SCSI_MLQUEUE_HOST_BUSY;
|
||||
|
||||
writel(FIVE_WORD_MSG_SIZE | SGL_OFFSET_0, &msg->u.head[0]);
|
||||
writel(I2O_CMD_SCSI_ABORT << 24 | HOST_TID << 12 | tid,
|
||||
&msg->u.head[1]);
|
||||
writel(i2o_cntxt_list_get_ptr(c, SCpnt), &msg->body[0]);
|
||||
|
||||
if (i2o_msg_post_wait(c, m, I2O_TIMEOUT_SCSI_SCB_ABORT))
|
||||
status = SUCCESS;
|
||||
|
||||
return status;
|
||||
}
|
||||
|
||||
/**
|
||||
* i2o_scsi_bios_param - Invent disk geometry
|
||||
* @sdev: scsi device
|
||||
* @dev: block layer device
|
||||
* @capacity: size in sectors
|
||||
* @ip: geometry array
|
||||
*
|
||||
* This is anyones guess quite frankly. We use the same rules everyone
|
||||
* else appears to and hope. It seems to work.
|
||||
*/
|
||||
|
||||
static int i2o_scsi_bios_param(struct scsi_device *sdev,
|
||||
struct block_device *dev, sector_t capacity,
|
||||
int *ip)
|
||||
{
|
||||
int size;
|
||||
|
||||
size = capacity;
|
||||
ip[0] = 64; /* heads */
|
||||
ip[1] = 32; /* sectors */
|
||||
if ((ip[2] = size >> 11) > 1024) { /* cylinders, test for big disk */
|
||||
ip[0] = 255; /* heads */
|
||||
ip[1] = 63; /* sectors */
|
||||
ip[2] = size / (255 * 63); /* cylinders */
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct scsi_host_template i2o_scsi_host_template = {
|
||||
.proc_name = "SCSI-OSM",
|
||||
.name = "I2O SCSI Peripheral OSM",
|
||||
.info = i2o_scsi_info,
|
||||
.queuecommand = i2o_scsi_queuecommand,
|
||||
.eh_abort_handler = i2o_scsi_abort,
|
||||
.bios_param = i2o_scsi_bios_param,
|
||||
.can_queue = I2O_SCSI_CAN_QUEUE,
|
||||
.sg_tablesize = 8,
|
||||
.cmd_per_lun = 6,
|
||||
.use_clustering = ENABLE_CLUSTERING,
|
||||
};
|
||||
|
||||
/*
|
||||
int
|
||||
i2o_scsi_queuecommand(struct scsi_cmnd * cmd, void (*done) (struct scsi_cmnd *))
|
||||
{
|
||||
printk(KERN_INFO "queuecommand\n");
|
||||
return SCSI_MLQUEUE_HOST_BUSY;
|
||||
};
|
||||
*/
|
||||
|
||||
/**
|
||||
* i2o_scsi_init - SCSI OSM initialization function
|
||||
*
|
||||
* Register SCSI OSM into I2O core.
|
||||
*
|
||||
* Returns 0 on success or negative error code on failure.
|
||||
*/
|
||||
static int __init i2o_scsi_init(void)
|
||||
{
|
||||
int rc;
|
||||
|
||||
printk(KERN_INFO "I2O SCSI Peripheral OSM\n");
|
||||
|
||||
/* Register SCSI OSM into I2O core */
|
||||
rc = i2o_driver_register(&i2o_scsi_driver);
|
||||
if (rc) {
|
||||
printk(KERN_ERR "scsi-osm: Could not register SCSI driver\n");
|
||||
return rc;
|
||||
}
|
||||
|
||||
return 0;
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_scsi_exit - SCSI OSM exit function
|
||||
*
|
||||
* Unregisters SCSI OSM from I2O core.
|
||||
*/
|
||||
static void __exit i2o_scsi_exit(void)
|
||||
{
|
||||
/* Unregister I2O SCSI OSM from I2O core */
|
||||
i2o_driver_unregister(&i2o_scsi_driver);
|
||||
};
|
||||
|
||||
MODULE_AUTHOR("Red Hat Software");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
||||
module_init(i2o_scsi_init);
|
||||
module_exit(i2o_scsi_exit);
|
||||
1315
extra/linux-2.6.10/drivers/message/i2o/iop.c
Normal file
1315
extra/linux-2.6.10/drivers/message/i2o/iop.c
Normal file
File diff suppressed because it is too large
Load Diff
523
extra/linux-2.6.10/drivers/message/i2o/pci.c
Normal file
523
extra/linux-2.6.10/drivers/message/i2o/pci.c
Normal file
@@ -0,0 +1,523 @@
|
||||
/*
|
||||
* PCI handling of I2O controller
|
||||
*
|
||||
* Copyright (C) 1999-2002 Red Hat Software
|
||||
*
|
||||
* Written by Alan Cox, Building Number Three Ltd
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License as published by the
|
||||
* Free Software Foundation; either version 2 of the License, or (at your
|
||||
* option) any later version.
|
||||
*
|
||||
* A lot of the I2O message side code from this is taken from the Red
|
||||
* Creek RCPCI45 adapter driver by Red Creek Communications
|
||||
*
|
||||
* Fixes/additions:
|
||||
* Philipp Rumpf
|
||||
* Juha Sievänen <Juha.Sievanen@cs.Helsinki.FI>
|
||||
* Auvo Häkkinen <Auvo.Hakkinen@cs.Helsinki.FI>
|
||||
* Deepak Saxena <deepak@plexity.net>
|
||||
* Boji T Kannanthanam <boji.t.kannanthanam@intel.com>
|
||||
* Alan Cox <alan@redhat.com>:
|
||||
* Ported to Linux 2.5.
|
||||
* Markus Lidel <Markus.Lidel@shadowconnect.com>:
|
||||
* Minor fixes for 2.6.
|
||||
* Markus Lidel <Markus.Lidel@shadowconnect.com>:
|
||||
* Support for sysfs included.
|
||||
*/
|
||||
|
||||
#include <linux/pci.h>
|
||||
#include <linux/interrupt.h>
|
||||
#include <linux/i2o.h>
|
||||
|
||||
#ifdef CONFIG_MTRR
|
||||
#include <asm/mtrr.h>
|
||||
#endif // CONFIG_MTRR
|
||||
|
||||
/* Module internal functions from other sources */
|
||||
extern struct i2o_controller *i2o_iop_alloc(void);
|
||||
extern void i2o_iop_free(struct i2o_controller *);
|
||||
|
||||
extern int i2o_iop_add(struct i2o_controller *);
|
||||
extern void i2o_iop_remove(struct i2o_controller *);
|
||||
|
||||
extern int i2o_driver_dispatch(struct i2o_controller *, u32,
|
||||
struct i2o_message *);
|
||||
|
||||
/* PCI device id table for all I2O controllers */
|
||||
static struct pci_device_id __devinitdata i2o_pci_ids[] = {
|
||||
{PCI_DEVICE_CLASS(PCI_CLASS_INTELLIGENT_I2O << 8, 0xffff00)},
|
||||
{PCI_DEVICE(PCI_VENDOR_ID_DPT, 0xa511)},
|
||||
{0}
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_dma_realloc - Realloc DMA memory
|
||||
* @dev: struct device pointer to the PCI device of the I2O controller
|
||||
* @addr: pointer to a i2o_dma struct DMA buffer
|
||||
* @len: new length of memory
|
||||
* @gfp_mask: GFP mask
|
||||
*
|
||||
* If there was something allocated in the addr, free it first. If len > 0
|
||||
* than try to allocate it and write the addresses back to the addr
|
||||
* structure. If len == 0 set the virtual address to NULL.
|
||||
*
|
||||
* Returns the 0 on success or negative error code on failure.
|
||||
*/
|
||||
int i2o_dma_realloc(struct device *dev, struct i2o_dma *addr, size_t len,
|
||||
unsigned int gfp_mask)
|
||||
{
|
||||
i2o_dma_free(dev, addr);
|
||||
|
||||
if (len)
|
||||
return i2o_dma_alloc(dev, addr, len, gfp_mask);
|
||||
|
||||
return 0;
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_pci_free - Frees the DMA memory for the I2O controller
|
||||
* @c: I2O controller to free
|
||||
*
|
||||
* Remove all allocated DMA memory and unmap memory IO regions. If MTRR
|
||||
* is enabled, also remove it again.
|
||||
*/
|
||||
static void __devexit i2o_pci_free(struct i2o_controller *c)
|
||||
{
|
||||
struct device *dev;
|
||||
|
||||
dev = &c->pdev->dev;
|
||||
|
||||
i2o_dma_free(dev, &c->out_queue);
|
||||
i2o_dma_free(dev, &c->status_block);
|
||||
if (c->lct)
|
||||
kfree(c->lct);
|
||||
i2o_dma_free(dev, &c->dlct);
|
||||
i2o_dma_free(dev, &c->hrt);
|
||||
i2o_dma_free(dev, &c->status);
|
||||
|
||||
#ifdef CONFIG_MTRR
|
||||
if (c->mtrr_reg0 >= 0)
|
||||
mtrr_del(c->mtrr_reg0, 0, 0);
|
||||
if (c->mtrr_reg1 >= 0)
|
||||
mtrr_del(c->mtrr_reg1, 0, 0);
|
||||
#endif
|
||||
|
||||
if (c->raptor && c->in_queue.virt)
|
||||
iounmap(c->in_queue.virt);
|
||||
|
||||
if (c->base.virt)
|
||||
iounmap(c->base.virt);
|
||||
}
|
||||
|
||||
/**
|
||||
* i2o_pci_alloc - Allocate DMA memory, map IO memory for I2O controller
|
||||
* @c: I2O controller
|
||||
*
|
||||
* Allocate DMA memory for a PCI (or in theory AGP) I2O controller. All
|
||||
* IO mappings are also done here. If MTRR is enabled, also do add memory
|
||||
* regions here.
|
||||
*
|
||||
* Returns 0 on success or negative error code on failure.
|
||||
*/
|
||||
static int __devinit i2o_pci_alloc(struct i2o_controller *c)
|
||||
{
|
||||
struct pci_dev *pdev = c->pdev;
|
||||
struct device *dev = &pdev->dev;
|
||||
int i;
|
||||
|
||||
for (i = 0; i < 6; i++) {
|
||||
/* Skip I/O spaces */
|
||||
if (!(pci_resource_flags(pdev, i) & IORESOURCE_IO)) {
|
||||
if (!c->base.phys) {
|
||||
c->base.phys = pci_resource_start(pdev, i);
|
||||
c->base.len = pci_resource_len(pdev, i);
|
||||
|
||||
/*
|
||||
* If we know what card it is, set the size
|
||||
* correctly. Code is taken from dpt_i2o.c
|
||||
*/
|
||||
if (pdev->device == 0xa501) {
|
||||
if (pdev->subsystem_device >= 0xc032 &&
|
||||
pdev->subsystem_device <= 0xc03b) {
|
||||
if (c->base.len > 0x400000)
|
||||
c->base.len = 0x400000;
|
||||
} else {
|
||||
if (c->base.len > 0x100000)
|
||||
c->base.len = 0x100000;
|
||||
}
|
||||
}
|
||||
if (!c->raptor)
|
||||
break;
|
||||
} else {
|
||||
c->in_queue.phys = pci_resource_start(pdev, i);
|
||||
c->in_queue.len = pci_resource_len(pdev, i);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (i == 6) {
|
||||
printk(KERN_ERR "i2o: I2O controller has no memory regions"
|
||||
" defined.\n");
|
||||
i2o_pci_free(c);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
/* Map the I2O controller */
|
||||
if (c->raptor) {
|
||||
printk(KERN_INFO "i2o: PCI I2O controller\n");
|
||||
printk(KERN_INFO " BAR0 at 0x%08lX size=%ld\n",
|
||||
(unsigned long)c->base.phys, (unsigned long)c->base.len);
|
||||
printk(KERN_INFO " BAR1 at 0x%08lX size=%ld\n",
|
||||
(unsigned long)c->in_queue.phys,
|
||||
(unsigned long)c->in_queue.len);
|
||||
} else
|
||||
printk(KERN_INFO "i2o: PCI I2O controller at %08lX size=%ld\n",
|
||||
(unsigned long)c->base.phys, (unsigned long)c->base.len);
|
||||
|
||||
c->base.virt = ioremap(c->base.phys, c->base.len);
|
||||
if (!c->base.virt) {
|
||||
printk(KERN_ERR "i2o: Unable to map controller.\n");
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
if (c->raptor) {
|
||||
c->in_queue.virt = ioremap(c->in_queue.phys, c->in_queue.len);
|
||||
if (!c->in_queue.virt) {
|
||||
printk(KERN_ERR "i2o: Unable to map controller.\n");
|
||||
i2o_pci_free(c);
|
||||
return -ENOMEM;
|
||||
}
|
||||
} else
|
||||
c->in_queue = c->base;
|
||||
|
||||
c->irq_mask = c->base.virt + 0x34;
|
||||
c->post_port = c->base.virt + 0x40;
|
||||
c->reply_port = c->base.virt + 0x44;
|
||||
|
||||
#ifdef CONFIG_MTRR
|
||||
/* Enable Write Combining MTRR for IOP's memory region */
|
||||
c->mtrr_reg0 = mtrr_add(c->in_queue.phys, c->in_queue.len,
|
||||
MTRR_TYPE_WRCOMB, 1);
|
||||
c->mtrr_reg1 = -1;
|
||||
|
||||
if (c->mtrr_reg0 < 0)
|
||||
printk(KERN_WARNING "i2o: could not enable write combining "
|
||||
"MTRR\n");
|
||||
else
|
||||
printk(KERN_INFO "i2o: using write combining MTRR\n");
|
||||
|
||||
/*
|
||||
* If it is an INTEL i960 I/O processor then set the first 64K to
|
||||
* Uncacheable since the region contains the messaging unit which
|
||||
* shouldn't be cached.
|
||||
*/
|
||||
if ((pdev->vendor == PCI_VENDOR_ID_INTEL ||
|
||||
pdev->vendor == PCI_VENDOR_ID_DPT) && !c->raptor) {
|
||||
printk(KERN_INFO "i2o: MTRR workaround for Intel i960 processor"
|
||||
"\n");
|
||||
c->mtrr_reg1 = mtrr_add(c->base.phys, 0x10000,
|
||||
MTRR_TYPE_UNCACHABLE, 1);
|
||||
|
||||
if (c->mtrr_reg1 < 0) {
|
||||
printk(KERN_WARNING "i2o_pci: Error in setting "
|
||||
"MTRR_TYPE_UNCACHABLE\n");
|
||||
mtrr_del(c->mtrr_reg0, c->in_queue.phys,
|
||||
c->in_queue.len);
|
||||
c->mtrr_reg0 = -1;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
if (i2o_dma_alloc(dev, &c->status, 8, GFP_KERNEL)) {
|
||||
i2o_pci_free(c);
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
if (i2o_dma_alloc(dev, &c->hrt, sizeof(i2o_hrt), GFP_KERNEL)) {
|
||||
i2o_pci_free(c);
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
if (i2o_dma_alloc(dev, &c->dlct, 8192, GFP_KERNEL)) {
|
||||
i2o_pci_free(c);
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
if (i2o_dma_alloc(dev, &c->status_block, sizeof(i2o_status_block),
|
||||
GFP_KERNEL)) {
|
||||
i2o_pci_free(c);
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
if (i2o_dma_alloc(dev, &c->out_queue, MSG_POOL_SIZE, GFP_KERNEL)) {
|
||||
i2o_pci_free(c);
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
pci_set_drvdata(pdev, c);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* i2o_pci_interrupt - Interrupt handler for I2O controller
|
||||
* @irq: interrupt line
|
||||
* @dev_id: pointer to the I2O controller
|
||||
* @r: pointer to registers
|
||||
*
|
||||
* Handle an interrupt from a PCI based I2O controller. This turns out
|
||||
* to be rather simple. We keep the controller pointer in the cookie.
|
||||
*/
|
||||
static irqreturn_t i2o_pci_interrupt(int irq, void *dev_id, struct pt_regs *r)
|
||||
{
|
||||
struct i2o_controller *c = dev_id;
|
||||
struct device *dev = &c->pdev->dev;
|
||||
struct i2o_message *m;
|
||||
u32 mv;
|
||||
|
||||
/*
|
||||
* Old 960 steppings had a bug in the I2O unit that caused
|
||||
* the queue to appear empty when it wasn't.
|
||||
*/
|
||||
mv = I2O_REPLY_READ32(c);
|
||||
if (mv == I2O_QUEUE_EMPTY) {
|
||||
mv = I2O_REPLY_READ32(c);
|
||||
if (unlikely(mv == I2O_QUEUE_EMPTY)) {
|
||||
return IRQ_NONE;
|
||||
} else
|
||||
pr_debug("960 bug detected\n");
|
||||
}
|
||||
|
||||
while (mv != I2O_QUEUE_EMPTY) {
|
||||
/*
|
||||
* Map the message from the page frame map to kernel virtual.
|
||||
* Because bus_to_virt is deprecated, we have calculate the
|
||||
* location by ourself!
|
||||
*/
|
||||
m = i2o_msg_out_to_virt(c, mv);
|
||||
|
||||
/*
|
||||
* Ensure this message is seen coherently but cachably by
|
||||
* the processor
|
||||
*/
|
||||
dma_sync_single_for_cpu(dev, c->out_queue.phys, MSG_FRAME_SIZE,
|
||||
PCI_DMA_FROMDEVICE);
|
||||
|
||||
/* dispatch it */
|
||||
if (i2o_driver_dispatch(c, mv, m))
|
||||
/* flush it if result != 0 */
|
||||
i2o_flush_reply(c, mv);
|
||||
|
||||
/*
|
||||
* That 960 bug again...
|
||||
*/
|
||||
mv = I2O_REPLY_READ32(c);
|
||||
if (mv == I2O_QUEUE_EMPTY)
|
||||
mv = I2O_REPLY_READ32(c);
|
||||
}
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
/**
|
||||
* i2o_pci_irq_enable - Allocate interrupt for I2O controller
|
||||
*
|
||||
* Allocate an interrupt for the I2O controller, and activate interrupts
|
||||
* on the I2O controller.
|
||||
*
|
||||
* Returns 0 on success or negative error code on failure.
|
||||
*/
|
||||
static int i2o_pci_irq_enable(struct i2o_controller *c)
|
||||
{
|
||||
struct pci_dev *pdev = c->pdev;
|
||||
int rc;
|
||||
|
||||
I2O_IRQ_WRITE32(c, 0xffffffff);
|
||||
|
||||
if (pdev->irq) {
|
||||
rc = request_irq(pdev->irq, i2o_pci_interrupt, SA_SHIRQ,
|
||||
c->name, c);
|
||||
if (rc < 0) {
|
||||
printk(KERN_ERR "%s: unable to allocate interrupt %d."
|
||||
"\n", c->name, pdev->irq);
|
||||
return rc;
|
||||
}
|
||||
}
|
||||
|
||||
I2O_IRQ_WRITE32(c, 0x00000000);
|
||||
|
||||
printk(KERN_INFO "%s: Installed at IRQ %d\n", c->name, pdev->irq);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* i2o_pci_irq_disable - Free interrupt for I2O controller
|
||||
* @c: I2O controller
|
||||
*
|
||||
* Disable interrupts in I2O controller and then free interrupt.
|
||||
*/
|
||||
static void i2o_pci_irq_disable(struct i2o_controller *c)
|
||||
{
|
||||
I2O_IRQ_WRITE32(c, 0xffffffff);
|
||||
|
||||
if (c->pdev->irq > 0)
|
||||
free_irq(c->pdev->irq, c);
|
||||
}
|
||||
|
||||
/**
|
||||
* i2o_pci_probe - Probe the PCI device for an I2O controller
|
||||
* @dev: PCI device to test
|
||||
* @id: id which matched with the PCI device id table
|
||||
*
|
||||
* Probe the PCI device for any device which is a memory of the
|
||||
* Intelligent, I2O class or an Adaptec Zero Channel Controller. We
|
||||
* attempt to set up each such device and register it with the core.
|
||||
*
|
||||
* Returns 0 on success or negative error code on failure.
|
||||
*/
|
||||
static int __devinit i2o_pci_probe(struct pci_dev *pdev,
|
||||
const struct pci_device_id *id)
|
||||
{
|
||||
struct i2o_controller *c;
|
||||
int rc;
|
||||
|
||||
printk(KERN_INFO "i2o: Checking for PCI I2O controllers...\n");
|
||||
|
||||
if ((pdev->class & 0xff) > 1) {
|
||||
printk(KERN_WARNING "i2o: I2O controller found but does not "
|
||||
"support I2O 1.5 (skipping).\n");
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
if ((rc = pci_enable_device(pdev))) {
|
||||
printk(KERN_WARNING "i2o: I2O controller found but could not be"
|
||||
" enabled.\n");
|
||||
return rc;
|
||||
}
|
||||
|
||||
printk(KERN_INFO "i2o: I2O controller found on bus %d at %d.\n",
|
||||
pdev->bus->number, pdev->devfn);
|
||||
|
||||
if (pci_set_dma_mask(pdev, DMA_32BIT_MASK)) {
|
||||
printk(KERN_WARNING "i2o: I2O controller on bus %d at %d: No "
|
||||
"suitable DMA available!\n", pdev->bus->number,
|
||||
pdev->devfn);
|
||||
rc = -ENODEV;
|
||||
goto disable;
|
||||
}
|
||||
|
||||
pci_set_master(pdev);
|
||||
|
||||
c = i2o_iop_alloc();
|
||||
if (IS_ERR(c)) {
|
||||
printk(KERN_ERR "i2o: memory for I2O controller could not be "
|
||||
"allocated\n");
|
||||
rc = PTR_ERR(c);
|
||||
goto disable;
|
||||
}
|
||||
|
||||
c->pdev = pdev;
|
||||
c->device = pdev->dev;
|
||||
|
||||
/* Cards that fall apart if you hit them with large I/O loads... */
|
||||
if (pdev->vendor == PCI_VENDOR_ID_NCR && pdev->device == 0x0630) {
|
||||
c->short_req = 1;
|
||||
printk(KERN_INFO "i2o: Symbios FC920 workarounds activated.\n");
|
||||
}
|
||||
|
||||
if (pdev->subsystem_vendor == PCI_VENDOR_ID_PROMISE) {
|
||||
c->promise = 1;
|
||||
printk(KERN_INFO "i2o: Promise workarounds activated.\n");
|
||||
}
|
||||
|
||||
/* Cards that go bananas if you quiesce them before you reset them. */
|
||||
if (pdev->vendor == PCI_VENDOR_ID_DPT) {
|
||||
c->no_quiesce = 1;
|
||||
if (pdev->device == 0xa511)
|
||||
c->raptor = 1;
|
||||
}
|
||||
|
||||
if ((rc = i2o_pci_alloc(c))) {
|
||||
printk(KERN_ERR "i2o: DMA / IO allocation for I2O controller "
|
||||
" failed\n");
|
||||
goto free_controller;
|
||||
}
|
||||
|
||||
if (i2o_pci_irq_enable(c)) {
|
||||
printk(KERN_ERR "i2o: unable to enable interrupts for I2O "
|
||||
"controller\n");
|
||||
goto free_pci;
|
||||
}
|
||||
|
||||
if ((rc = i2o_iop_add(c)))
|
||||
goto uninstall;
|
||||
|
||||
return 0;
|
||||
|
||||
uninstall:
|
||||
i2o_pci_irq_disable(c);
|
||||
|
||||
free_pci:
|
||||
i2o_pci_free(c);
|
||||
|
||||
free_controller:
|
||||
i2o_iop_free(c);
|
||||
|
||||
disable:
|
||||
pci_disable_device(pdev);
|
||||
|
||||
return rc;
|
||||
}
|
||||
|
||||
/**
|
||||
* i2o_pci_remove - Removes a I2O controller from the system
|
||||
* pdev: I2O controller which should be removed
|
||||
*
|
||||
* Reset the I2O controller, disable interrupts and remove all allocated
|
||||
* resources.
|
||||
*/
|
||||
static void __devexit i2o_pci_remove(struct pci_dev *pdev)
|
||||
{
|
||||
struct i2o_controller *c;
|
||||
c = pci_get_drvdata(pdev);
|
||||
|
||||
i2o_iop_remove(c);
|
||||
i2o_pci_irq_disable(c);
|
||||
i2o_pci_free(c);
|
||||
|
||||
printk(KERN_INFO "%s: Controller removed.\n", c->name);
|
||||
|
||||
i2o_iop_free(c);
|
||||
pci_disable_device(pdev);
|
||||
};
|
||||
|
||||
/* PCI driver for I2O controller */
|
||||
static struct pci_driver i2o_pci_driver = {
|
||||
.name = "I2O controller",
|
||||
.id_table = i2o_pci_ids,
|
||||
.probe = i2o_pci_probe,
|
||||
.remove = __devexit_p(i2o_pci_remove),
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_pci_init - registers I2O PCI driver in PCI subsystem
|
||||
*
|
||||
* Returns > 0 on success or negative error code on failure.
|
||||
*/
|
||||
int __init i2o_pci_init(void)
|
||||
{
|
||||
return pci_register_driver(&i2o_pci_driver);
|
||||
};
|
||||
|
||||
/**
|
||||
* i2o_pci_exit - unregisters I2O PCI driver from PCI subsystem
|
||||
*/
|
||||
void __exit i2o_pci_exit(void)
|
||||
{
|
||||
pci_unregister_driver(&i2o_pci_driver);
|
||||
};
|
||||
|
||||
EXPORT_SYMBOL(i2o_dma_realloc);
|
||||
Reference in New Issue
Block a user