1 /* $NetBSD: scivar.h,v 1.4 1994/10/26 02:04:47 cgd Exp $ */ 2 3 /* 4 * Copyright (c) 1990 The Regents of the University of California. 5 * All rights reserved. 6 * 7 * This code is derived from software contributed to Berkeley by 8 * Van Jacobson of Lawrence Berkeley Laboratory. 9 * 10 * Redistribution and use in source and binary forms, with or without 11 * modification, are permitted provided that the following conditions 12 * are met: 13 * 1. Redistributions of source code must retain the above copyright 14 * notice, this list of conditions and the following disclaimer. 15 * 2. Redistributions in binary form must reproduce the above copyright 16 * notice, this list of conditions and the following disclaimer in the 17 * documentation and/or other materials provided with the distribution. 18 * 3. All advertising materials mentioning features or use of this software 19 * must display the following acknowledgement: 20 * This product includes software developed by the University of 21 * California, Berkeley and its contributors. 22 * 4. Neither the name of the University nor the names of its contributors 23 * may be used to endorse or promote products derived from this software 24 * without specific prior written permission. 25 * 26 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 29 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 36 * SUCH DAMAGE. 37 * 38 * @(#)scivar.h 7.1 (Berkeley) 5/8/90 39 */ 40 #ifndef _SCIVAR_H_ 41 #define _SCIVAR_H_ 42 43 struct sci_pending { 44 TAILQ_ENTRY(sci_pending) link; 45 struct scsi_xfer *xs; 46 }; 47 48 49 struct sci_softc { 50 struct device sc_dev; 51 struct scsi_link sc_link; /* proto for sub devices */ 52 TAILQ_HEAD(,sci_pending) sc_xslist; 53 struct sci_pending sc_xsstore[8][8]; 54 struct scsi_xfer *sc_xs; /* transfer from high level code */ 55 56 volatile u_char *sci_data; /* r: Current data */ 57 volatile u_char *sci_odata; /* w: Out data */ 58 volatile u_char *sci_icmd; /* rw: Initiator command */ 59 volatile u_char *sci_mode; /* rw: Mode */ 60 volatile u_char *sci_tcmd; /* rw: Target command */ 61 volatile u_char *sci_bus_csr; /* r: Bus Status */ 62 volatile u_char *sci_sel_enb; /* w: Select enable */ 63 volatile u_char *sci_csr; /* r: Status */ 64 volatile u_char *sci_dma_send; /* w: Start dma send data */ 65 volatile u_char *sci_idata; /* r: Input data */ 66 volatile u_char *sci_trecv; /* w: Start dma receive, target */ 67 volatile u_char *sci_iack; /* r: Interrupt Acknowledge */ 68 volatile u_char *sci_irecv; /* w: Start dma receive, initiator */ 69 70 int (*dma_xfer_in)(); /* psuedo DMA transfer */ 71 int (*dma_xfer_out)(); /* psuedo DMA transfer */ 72 int (*dma_intr)(); /* board-specific interrupt */ 73 u_char sc_flags; 74 u_char sc_lun; 75 /* one for each target */ 76 struct syncpar { 77 u_char state; 78 u_char period, offset; 79 } sc_sync[8]; 80 u_char sc_slave; 81 u_char sc_scsi_addr; 82 u_char sc_stat[2]; 83 u_char sc_msg[8]; 84 }; 85 86 /* sc_flags */ 87 #define SCI_IO 0x80 /* DMA I/O in progress */ 88 #define SCI_ALIVE 0x01 /* controller initialized */ 89 #define SCI_SELECTED 0x04 /* bus is in selected state. Needed for 90 correct abort procedure. */ 91 92 /* sync states */ 93 #define SYNC_START 0 /* no sync handshake started */ 94 #define SYNC_SENT 1 /* we sent sync request, no answer yet */ 95 #define SYNC_DONE 2 /* target accepted our (or inferior) settings, 96 or it rejected the request and we stay async * 97 98 #define PHASE 0x07 /* mask for psns/pctl phase */ 99 #define DATA_OUT_PHASE 0x00 100 #define DATA_IN_PHASE 0x01 101 #define CMD_PHASE 0x02 102 #define STATUS_PHASE 0x03 103 #define BUS_FREE_PHASE 0x04 104 #define ARB_SEL_PHASE 0x05 /* Fuji chip combines arbitration with sel. */ 105 #define MESG_OUT_PHASE 0x06 106 #define MESG_IN_PHASE 0x07 107 108 #define MSG_CMD_COMPLETE 0x00 109 #define MSG_EXT_MESSAGE 0x01 110 #define MSG_SAVE_DATA_PTR 0x02 111 #define MSG_RESTORE_PTR 0x03 112 #define MSG_DISCONNECT 0x04 113 #define MSG_INIT_DETECT_ERROR 0x05 114 #define MSG_ABORT 0x06 115 #define MSG_REJECT 0x07 116 #define MSG_NOOP 0x08 117 #define MSG_PARITY_ERROR 0x09 118 #define MSG_BUS_DEVICE_RESET 0x0C 119 #define MSG_IDENTIFY 0x80 120 #define MSG_IDENTIFY_DR 0xc0 /* (disconnect/reconnect allowed) */ 121 #define MSG_SYNC_REQ 0x01 122 123 124 #define STS_CHECKCOND 0x02 /* Check Condition (ie., read sense) */ 125 #define STS_CONDMET 0x04 /* Condition Met (ie., search worked) */ 126 #define STS_BUSY 0x08 127 #define STS_INTERMED 0x10 /* Intermediate status sent */ 128 #define STS_EXT 0x80 /* Extended status valid */ 129 130 /* 131 * XXXX 132 */ 133 struct scsi_fmt_cdb { 134 int len; /* cdb length (in bytes) */ 135 u_char cdb[28]; /* cdb to use on next read/write */ 136 }; 137 138 struct buf; 139 struct scsi_xfer; 140 141 void sci_minphys __P((struct buf *bp)); 142 u_int sci_adinfo __P((void)); 143 int sci_scsicmd __P((struct scsi_xfer *)); 144 145 #endif /* _SCIVAR_H_ */ 146