/* SPDX-License-Identifier: GPL-2.0 */
/* qlogicpti.h: Performance Technologies QlogicISP sbus card defines.
*
* Copyright (C) 1996 David S. Miller (davem@caipfs.rutgers.edu)
*/
#ifndef _QLOGICPTI_H
#define _QLOGICPTI_H
/* Qlogic/SBUS controller registers. */
#define SBUS_CFG1 0 x006UL
#define SBUS_CTRL 0 x008UL
#define SBUS_STAT 0 x00aUL
#define SBUS_SEMAPHORE 0 x00cUL
#define CMD_DMA_CTRL 0 x022UL
#define DATA_DMA_CTRL 0 x042UL
#define MBOX0 0 x080UL
#define MBOX1 0 x082UL
#define MBOX2 0 x084UL
#define MBOX3 0 x086UL
#define MBOX4 0 x088UL
#define MBOX5 0 x08aUL
#define CPU_CMD 0 x214UL
#define CPU_ORIDE 0 x224UL
#define CPU_PCTRL 0 x272UL
#define CPU_PDIFF 0 x276UL
#define RISC_PSR 0 x420UL
#define RISC_MTREG 0 x42EUL
#define HCCTRL 0 x440UL
/* SCSI parameters for this driver. */
#define MAX_TARGETS 16
#define MAX_LUNS 8
/* With the qlogic interface, every queue slot can hold a SCSI
* command with up to 4 scatter/gather entries. If we need more
* than 4 entries, continuation entries can be used that hold
* another 7 entries each. Unlike for other drivers, this means
* that the maximum number of scatter/gather entries we can
* support at any given time is a function of the number of queue
* slots available. That is, host->can_queue and host->sg_tablesize
* are dynamic and _not_ independent. This all works fine because
* requests are queued serially and the scatter/gather limit is
* determined for each queue request anew.
*/
#define QLOGICPTI_REQ_QUEUE_LEN 255 /* must be power of two - 1 */
#define QLOGICPTI_MAX_SG(ql) (4 + (((ql) > 0 ) ? 7 *((ql) - 1 ) : 0 ))
/* mailbox command complete status codes */
#define MBOX_COMMAND_COMPLETE 0 x4000
#define INVALID_COMMAND 0 x4001
#define HOST_INTERFACE_ERROR 0 x4002
#define TEST_FAILED 0 x4003
#define COMMAND_ERROR 0 x4005
#define COMMAND_PARAM_ERROR 0 x4006
/* async event status codes */
#define ASYNC_SCSI_BUS_RESET 0 x8001
#define SYSTEM_ERROR 0 x8002
#define REQUEST_TRANSFER_ERROR 0 x8003
#define RESPONSE_TRANSFER_ERROR 0 x8004
#define REQUEST_QUEUE_WAKEUP 0 x8005
#define EXECUTION_TIMEOUT_RESET 0 x8006
/* Am I fucking pedantic or what? */
struct Entry_header {
#ifdef __BIG_ENDIAN
u8 entry_cnt;
u8 entry_type;
u8 flags;
u8 sys_def_1;
#else /* __LITTLE_ENDIAN */
u8 entry_type;
u8 entry_cnt;
u8 sys_def_1;
u8 flags;
#endif
};
/* entry header type commands */
#define ENTRY_COMMAND 1
#define ENTRY_CONTINUATION 2
#define ENTRY_STATUS 3
#define ENTRY_MARKER 4
#define ENTRY_EXTENDED_COMMAND 5
/* entry header flag definitions */
#define EFLAG_CONTINUATION 1
#define EFLAG_BUSY 2
#define EFLAG_BAD_HEADER 4
#define EFLAG_BAD_PAYLOAD 8
struct dataseg {
u32 d_base;
u32 d_count;
};
struct Command_Entry {
struct Entry_header hdr;
u32 handle;
#ifdef __BIG_ENDIAN
u8 target_id;
u8 target_lun;
#else /* __LITTLE_ENDIAN */
u8 target_lun;
u8 target_id;
#endif
u16 cdb_length;
u16 control_flags;
u16 rsvd;
u16 time_out;
u16 segment_cnt;
u8 cdb[12 ];
struct dataseg dataseg[4 ];
};
/* command entry control flag definitions */
#define CFLAG_NODISC 0 x01
#define CFLAG_HEAD_TAG 0 x02
#define CFLAG_ORDERED_TAG 0 x04
#define CFLAG_SIMPLE_TAG 0 x08
#define CFLAG_TAR_RTN 0 x10
#define CFLAG_READ 0 x20
#define CFLAG_WRITE 0 x40
struct Ext_Command_Entry {
struct Entry_header hdr;
u32 handle;
#ifdef __BIG_ENDIAN
u8 target_id;
u8 target_lun;
#else /* __LITTLE_ENDIAN */
u8 target_lun;
u8 target_id;
#endif
u16 cdb_length;
u16 control_flags;
u16 rsvd;
u16 time_out;
u16 segment_cnt;
u8 cdb[44 ];
};
struct Continuation_Entry {
struct Entry_header hdr;
u32 reserved;
struct dataseg dataseg[7 ];
};
struct Marker_Entry {
struct Entry_header hdr;
u32 reserved;
#ifdef __BIG_ENDIAN
u8 target_id;
u8 target_lun;
#else /* __LITTLE_ENDIAN */
u8 target_lun;
u8 target_id;
#endif
#ifdef __BIG_ENDIAN
u8 rsvd;
u8 modifier;
#else /* __LITTLE_ENDIAN */
u8 modifier;
u8 rsvd;
#endif
u8 rsvds[52 ];
};
/* marker entry modifier definitions */
#define SYNC_DEVICE 0
#define SYNC_TARGET 1
#define SYNC_ALL 2
struct Status_Entry {
struct Entry_header hdr;
u32 handle;
u16 scsi_status;
u16 completion_status;
u16 state_flags;
u16 status_flags;
u16 time;
u16 req_sense_len;
u32 residual;
u8 rsvd[8 ];
u8 req_sense_data[32 ];
};
/* status entry completion status definitions */
#define CS_COMPLETE 0 x0000
#define CS_INCOMPLETE 0 x0001
#define CS_DMA_ERROR 0 x0002
#define CS_TRANSPORT_ERROR 0 x0003
#define CS_RESET_OCCURRED 0 x0004
#define CS_ABORTED 0 x0005
#define CS_TIMEOUT 0 x0006
#define CS_DATA_OVERRUN 0 x0007
#define CS_COMMAND_OVERRUN 0 x0008
#define CS_STATUS_OVERRUN 0 x0009
#define CS_BAD_MESSAGE 0 x000a
#define CS_NO_MESSAGE_OUT 0 x000b
#define CS_EXT_ID_FAILED 0 x000c
#define CS_IDE_MSG_FAILED 0 x000d
#define CS_ABORT_MSG_FAILED 0 x000e
#define CS_REJECT_MSG_FAILED 0 x000f
#define CS_NOP_MSG_FAILED 0 x0010
#define CS_PARITY_ERROR_MSG_FAILED 0 x0011
#define CS_DEVICE_RESET_MSG_FAILED 0 x0012
#define CS_ID_MSG_FAILED 0 x0013
#define CS_UNEXP_BUS_FREE 0 x0014
#define CS_DATA_UNDERRUN 0 x0015
#define CS_BUS_RESET 0 x001c
/* status entry state flag definitions */
#define SF_GOT_BUS 0 x0100
#define SF_GOT_TARGET 0 x0200
#define SF_SENT_CDB 0 x0400
#define SF_TRANSFERRED_DATA 0 x0800
#define SF_GOT_STATUS 0 x1000
#define SF_GOT_SENSE 0 x2000
/* status entry status flag definitions */
#define STF_DISCONNECT 0 x0001
#define STF_SYNCHRONOUS 0 x0002
#define STF_PARITY_ERROR 0 x0004
#define STF_BUS_RESET 0 x0008
#define STF_DEVICE_RESET 0 x0010
#define STF_ABORTED 0 x0020
#define STF_TIMEOUT 0 x0040
#define STF_NEGOTIATION 0 x0080
/* mailbox commands */
#define MBOX_NO_OP 0 x0000
#define MBOX_LOAD_RAM 0 x0001
#define MBOX_EXEC_FIRMWARE 0 x0002
#define MBOX_DUMP_RAM 0 x0003
#define MBOX_WRITE_RAM_WORD 0 x0004
#define MBOX_READ_RAM_WORD 0 x0005
#define MBOX_MAILBOX_REG_TEST 0 x0006
#define MBOX_VERIFY_CHECKSUM 0 x0007
#define MBOX_ABOUT_FIRMWARE 0 x0008
#define MBOX_CHECK_FIRMWARE 0 x000e
#define MBOX_INIT_REQ_QUEUE 0 x0010
#define MBOX_INIT_RES_QUEUE 0 x0011
#define MBOX_EXECUTE_IOCB 0 x0012
#define MBOX_WAKE_UP 0 x0013
#define MBOX_STOP_FIRMWARE 0 x0014
#define MBOX_ABORT 0 x0015
#define MBOX_ABORT_DEVICE 0 x0016
#define MBOX_ABORT_TARGET 0 x0017
#define MBOX_BUS_RESET 0 x0018
#define MBOX_STOP_QUEUE 0 x0019
#define MBOX_START_QUEUE 0 x001a
#define MBOX_SINGLE_STEP_QUEUE 0 x001b
#define MBOX_ABORT_QUEUE 0 x001c
#define MBOX_GET_DEV_QUEUE_STATUS 0 x001d
#define MBOX_GET_FIRMWARE_STATUS 0 x001f
#define MBOX_GET_INIT_SCSI_ID 0 x0020
#define MBOX_GET_SELECT_TIMEOUT 0 x0021
#define MBOX_GET_RETRY_COUNT 0 x0022
#define MBOX_GET_TAG_AGE_LIMIT 0 x0023
#define MBOX_GET_CLOCK_RATE 0 x0024
#define MBOX_GET_ACT_NEG_STATE 0 x0025
#define MBOX_GET_ASYNC_DATA_SETUP_TIME 0 x0026
#define MBOX_GET_SBUS_PARAMS 0 x0027
#define MBOX_GET_TARGET_PARAMS 0 x0028
#define MBOX_GET_DEV_QUEUE_PARAMS 0 x0029
#define MBOX_SET_INIT_SCSI_ID 0 x0030
#define MBOX_SET_SELECT_TIMEOUT 0 x0031
#define MBOX_SET_RETRY_COUNT 0 x0032
#define MBOX_SET_TAG_AGE_LIMIT 0 x0033
#define MBOX_SET_CLOCK_RATE 0 x0034
#define MBOX_SET_ACTIVE_NEG_STATE 0 x0035
#define MBOX_SET_ASYNC_DATA_SETUP_TIME 0 x0036
#define MBOX_SET_SBUS_CONTROL_PARAMS 0 x0037
#define MBOX_SET_TARGET_PARAMS 0 x0038
#define MBOX_SET_DEV_QUEUE_PARAMS 0 x0039
struct host_param {
u_short initiator_scsi_id;
u_short bus_reset_delay;
u_short retry_count;
u_short retry_delay;
u_short async_data_setup_time;
u_short req_ack_active_negation;
u_short data_line_active_negation;
u_short data_dma_burst_enable;
u_short command_dma_burst_enable;
u_short tag_aging;
u_short selection_timeout;
u_short max_queue_depth;
};
/*
* Device Flags:
*
* Bit Name
* ---------
* 7 Disconnect Privilege
* 6 Parity Checking
* 5 Wide Data Transfers
* 4 Synchronous Data Transfers
* 3 Tagged Queuing
* 2 Automatic Request Sense
* 1 Stop Queue on Check Condition
* 0 Renegotiate on Error
*/
struct dev_param {
u_short device_flags;
u_short execution_throttle;
u_short synchronous_period;
u_short synchronous_offset;
u_short device_enable;
u_short reserved; /* pad */
};
/*
* The result queue can be quite a bit smaller since continuation entries
* do not show up there:
*/
#define RES_QUEUE_LEN 255 /* Must be power of two - 1 */
#define QUEUE_ENTRY_LEN 64
#define NEXT_REQ_PTR(wheee) (((wheee) + 1 ) & QLOGICPTI_REQ_QUEUE_LEN)
#define NEXT_RES_PTR(wheee) (((wheee) + 1 ) & RES_QUEUE_LEN)
#define PREV_REQ_PTR(wheee) (((wheee) - 1 ) & QLOGICPTI_REQ_QUEUE_LEN)
#define PREV_RES_PTR(wheee) (((wheee) - 1 ) & RES_QUEUE_LEN)
struct pti_queue_entry {
char __opaque[QUEUE_ENTRY_LEN];
};
struct scsi_cmnd;
/* Software state for the driver. */
struct qlogicpti {
/* These are the hot elements in the cache, so they come first. */
void __iomem *qregs; /* Adapter registers */
struct pti_queue_entry *res_cpu; /* Ptr to RESPONSE bufs (CPU) */
struct pti_queue_entry *req_cpu; /* Ptr to REQUEST bufs (CPU) */
u_int req_in_ptr; /* index of next request slot */
u_int res_out_ptr; /* index of next result slot */
long send_marker; /* must we send a marker? */
struct platform_device *op;
unsigned long __pad;
int cmd_count[MAX_TARGETS];
unsigned long tag_ages[MAX_TARGETS];
/* The cmd->handler is only 32-bits, so that things work even on monster
* Ex000 sparc64 machines with >4GB of ram we just keep track of the
* scsi command pointers here. This is essentially what Matt Jacob does. -DaveM
*/
struct scsi_cmnd *cmd_slots[QLOGICPTI_REQ_QUEUE_LEN + 1 ];
/* The rest of the elements are unimportant for performance. */
struct qlogicpti *next;
dma_addr_t res_dvma; /* Ptr to RESPONSE bufs (DVMA)*/
dma_addr_t req_dvma; /* Ptr to REQUEST bufs (DVMA) */
u_char fware_majrev, fware_minrev, fware_micrev;
struct Scsi_Host *qhost;
int qpti_id;
int scsi_id;
int prom_node;
int irq;
char differential, ultra, clock;
unsigned char bursts;
struct host_param host_param;
struct dev_param dev_param[MAX_TARGETS];
void __iomem *sreg;
#define SREG_TPOWER 0 x80 /* State of termpwr */
#define SREG_FUSE 0 x40 /* State of on board fuse */
#define SREG_PDISAB 0 x20 /* Disable state for power on */
#define SREG_DSENSE 0 x10 /* Sense for differential */
#define SREG_IMASK 0 x0c /* Interrupt level */
#define SREG_SPMASK 0 x03 /* Mask for switch pack */
unsigned char swsreg;
unsigned int
gotirq : 1 , /* this instance got an irq */
is_pti : 1 ; /* Non-zero if this is a PTI board. */
};
/* How to twiddle them bits... */
/* SBUS config register one. */
#define SBUS_CFG1_EPAR 0 x0100 /* Enable parity checking */
#define SBUS_CFG1_FMASK 0 x00f0 /* Forth code cycle mask */
#define SBUS_CFG1_BENAB 0 x0004 /* Burst dvma enable */
#define SBUS_CFG1_B64 0 x0003 /* Enable 64byte bursts */
#define SBUS_CFG1_B32 0 x0002 /* Enable 32byte bursts */
#define SBUS_CFG1_B16 0 x0001 /* Enable 16byte bursts */
#define SBUS_CFG1_B8 0 x0008 /* Enable 8byte bursts */
/* SBUS control register */
#define SBUS_CTRL_EDIRQ 0 x0020 /* Enable Data DVMA Interrupts */
#define SBUS_CTRL_ECIRQ 0 x0010 /* Enable Command DVMA Interrupts */
#define SBUS_CTRL_ESIRQ 0 x0008 /* Enable SCSI Processor Interrupts */
#define SBUS_CTRL_ERIRQ 0 x0004 /* Enable RISC Processor Interrupts */
#define SBUS_CTRL_GENAB 0 x0002 /* Global Interrupt Enable */
#define SBUS_CTRL_RESET 0 x0001 /* Soft Reset */
/* SBUS status register */
#define SBUS_STAT_DINT 0 x0020 /* Data DVMA IRQ pending */
#define SBUS_STAT_CINT 0 x0010 /* Command DVMA IRQ pending */
#define SBUS_STAT_SINT 0 x0008 /* SCSI Processor IRQ pending */
#define SBUS_STAT_RINT 0 x0004 /* RISC Processor IRQ pending */
#define SBUS_STAT_GINT 0 x0002 /* Global IRQ pending */
/* SBUS semaphore register */
#define SBUS_SEMAPHORE_STAT 0 x0002 /* Semaphore status bit */
#define SBUS_SEMAPHORE_LCK 0 x0001 /* Semaphore lock bit */
/* DVMA control register */
#define DMA_CTRL_CSUSPEND 0 x0010 /* DMA channel suspend */
#define DMA_CTRL_CCLEAR 0 x0008 /* DMA channel clear and reset */
#define DMA_CTRL_FCLEAR 0 x0004 /* DMA fifo clear */
#define DMA_CTRL_CIRQ 0 x0002 /* DMA irq clear */
#define DMA_CTRL_DMASTART 0 x0001 /* DMA transfer start */
/* SCSI processor override register */
#define CPU_ORIDE_ETRIG 0 x8000 /* External trigger enable */
#define CPU_ORIDE_STEP 0 x4000 /* Single step mode enable */
#define CPU_ORIDE_BKPT 0 x2000 /* Breakpoint reg enable */
#define CPU_ORIDE_PWRITE 0 x1000 /* SCSI pin write enable */
#define CPU_ORIDE_OFORCE 0 x0800 /* Force outputs on */
#define CPU_ORIDE_LBACK 0 x0400 /* SCSI loopback enable */
#define CPU_ORIDE_PTEST 0 x0200 /* Parity test enable */
#define CPU_ORIDE_TENAB 0 x0100 /* SCSI pins tristate enable */
#define CPU_ORIDE_TPINS 0 x0080 /* SCSI pins enable */
#define CPU_ORIDE_FRESET 0 x0008 /* FIFO reset */
#define CPU_ORIDE_CTERM 0 x0004 /* Command terminate */
#define CPU_ORIDE_RREG 0 x0002 /* Reset SCSI processor regs */
#define CPU_ORIDE_RMOD 0 x0001 /* Reset SCSI processor module */
/* SCSI processor commands */
#define CPU_CMD_BRESET 0 x300b /* Reset SCSI bus */
/* SCSI processor pin control register */
#define CPU_PCTRL_PVALID 0 x8000 /* Phase bits are valid */
#define CPU_PCTRL_PHI 0 x0400 /* Parity bit high */
#define CPU_PCTRL_PLO 0 x0200 /* Parity bit low */
#define CPU_PCTRL_REQ 0 x0100 /* REQ bus signal */
#define CPU_PCTRL_ACK 0 x0080 /* ACK bus signal */
#define CPU_PCTRL_RST 0 x0040 /* RST bus signal */
#define CPU_PCTRL_BSY 0 x0020 /* BSY bus signal */
#define CPU_PCTRL_SEL 0 x0010 /* SEL bus signal */
#define CPU_PCTRL_ATN 0 x0008 /* ATN bus signal */
#define CPU_PCTRL_MSG 0 x0004 /* MSG bus signal */
#define CPU_PCTRL_CD 0 x0002 /* CD bus signal */
#define CPU_PCTRL_IO 0 x0001 /* IO bus signal */
/* SCSI processor differential pins register */
#define CPU_PDIFF_SENSE 0 x0200 /* Differential sense */
#define CPU_PDIFF_MODE 0 x0100 /* Differential mode */
#define CPU_PDIFF_OENAB 0 x0080 /* Outputs enable */
#define CPU_PDIFF_PMASK 0 x007c /* Differential control pins */
#define CPU_PDIFF_TGT 0 x0002 /* Target mode enable */
#define CPU_PDIFF_INIT 0 x0001 /* Initiator mode enable */
/* RISC processor status register */
#define RISC_PSR_FTRUE 0 x8000 /* Force true */
#define RISC_PSR_LCD 0 x4000 /* Loop counter shows done status */
#define RISC_PSR_RIRQ 0 x2000 /* RISC irq status */
#define RISC_PSR_TOFLOW 0 x1000 /* Timer overflow (rollover) */
#define RISC_PSR_AOFLOW 0 x0800 /* Arithmetic overflow */
#define RISC_PSR_AMSB 0 x0400 /* Arithmetic big endian */
#define RISC_PSR_ACARRY 0 x0200 /* Arithmetic carry */
#define RISC_PSR_AZERO 0 x0100 /* Arithmetic zero */
#define RISC_PSR_ULTRA 0 x0020 /* Ultra mode */
#define RISC_PSR_DIRQ 0 x0010 /* DVMA interrupt */
#define RISC_PSR_SIRQ 0 x0008 /* SCSI processor interrupt */
#define RISC_PSR_HIRQ 0 x0004 /* Host interrupt */
#define RISC_PSR_IPEND 0 x0002 /* Interrupt pending */
#define RISC_PSR_FFALSE 0 x0001 /* Force false */
/* RISC processor memory timing register */
#define RISC_MTREG_P1DFLT 0 x1200 /* Default read/write timing, pg1 */
#define RISC_MTREG_P0DFLT 0 x0012 /* Default read/write timing, pg0 */
#define RISC_MTREG_P1ULTRA 0 x2300 /* Ultra-mode rw timing, pg1 */
#define RISC_MTREG_P0ULTRA 0 x0023 /* Ultra-mode rw timing, pg0 */
/* Host command/ctrl register */
#define HCCTRL_NOP 0 x0000 /* CMD: No operation */
#define HCCTRL_RESET 0 x1000 /* CMD: Reset RISC cpu */
#define HCCTRL_PAUSE 0 x2000 /* CMD: Pause RISC cpu */
#define HCCTRL_REL 0 x3000 /* CMD: Release paused RISC cpu */
#define HCCTRL_STEP 0 x4000 /* CMD: Single step RISC cpu */
#define HCCTRL_SHIRQ 0 x5000 /* CMD: Set host irq */
#define HCCTRL_CHIRQ 0 x6000 /* CMD: Clear host irq */
#define HCCTRL_CRIRQ 0 x7000 /* CMD: Clear RISC cpu irq */
#define HCCTRL_BKPT 0 x8000 /* CMD: Breakpoint enables change */
#define HCCTRL_TMODE 0 xf000 /* CMD: Enable test mode */
#define HCCTRL_HIRQ 0 x0080 /* Host IRQ pending */
#define HCCTRL_RRIP 0 x0040 /* RISC cpu reset in happening now */
#define HCCTRL_RPAUSED 0 x0020 /* RISC cpu is paused now */
#define HCCTRL_EBENAB 0 x0010 /* External breakpoint enable */
#define HCCTRL_B1ENAB 0 x0008 /* Breakpoint 1 enable */
#define HCCTRL_B0ENAB 0 x0004 /* Breakpoint 0 enable */
/* For our interrupt engine. */
#define for_each_qlogicpti(qp) \
for ((qp) = qptichain; (qp); (qp) = (qp)->next)
#endif /* !(_QLOGICPTI_H) */
Messung V0.5 in Prozent C=96 H=94 G=94
¤ Dauer der Verarbeitung: 0.11 Sekunden
(vorverarbeitet am 2026-06-07)
¤
*© Formatika GbR, Deutschland