1 /* 2 * linux/drivers/acorn/scsi/acornscsi.h 3 * 4 * Copyright (C) 1997 Russell King 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * Acorn SCSI driver 11 */ 12 #ifndef ACORNSCSI_H 13 #define ACORNSCSI_H 14 15 /* SBIC registers */ 16 #define OWNID 0 17 #define OWNID_FS1 (1<<7) 18 #define OWNID_FS2 (1<<6) 19 #define OWNID_EHP (1<<4) 20 #define OWNID_EAF (1<<3) 21 22 #define CTRL 1 23 #define CTRL_DMAMODE (1<<7) 24 #define CTRL_DMADBAMODE (1<<6) 25 #define CTRL_DMABURST (1<<5) 26 #define CTRL_DMAPOLLED 0 27 #define CTRL_HHP (1<<4) 28 #define CTRL_EDI (1<<3) 29 #define CTRL_IDI (1<<2) 30 #define CTRL_HA (1<<1) 31 #define CTRL_HSP (1<<0) 32 33 #define TIMEOUT 2 34 #define TOTSECTS 3 35 #define TOTHEADS 4 36 #define TOTCYLH 5 37 #define TOTCYLL 6 38 #define LOGADDRH 7 39 #define LOGADDRM2 8 40 #define LOGADDRM1 9 41 #define LOGADDRL 10 42 #define SECTORNUM 11 43 #define HEADNUM 12 44 #define CYLH 13 45 #define CYLL 14 46 #define TARGETLUN 15 47 #define TARGETLUN_TLV (1<<7) 48 #define TARGETLUN_DOK (1<<6) 49 50 #define CMNDPHASE 16 51 #define SYNCHTRANSFER 17 52 #define SYNCHTRANSFER_OF0 0x00 53 #define SYNCHTRANSFER_OF1 0x01 54 #define SYNCHTRANSFER_OF2 0x02 55 #define SYNCHTRANSFER_OF3 0x03 56 #define SYNCHTRANSFER_OF4 0x04 57 #define SYNCHTRANSFER_OF5 0x05 58 #define SYNCHTRANSFER_OF6 0x06 59 #define SYNCHTRANSFER_OF7 0x07 60 #define SYNCHTRANSFER_OF8 0x08 61 #define SYNCHTRANSFER_OF9 0x09 62 #define SYNCHTRANSFER_OF10 0x0A 63 #define SYNCHTRANSFER_OF11 0x0B 64 #define SYNCHTRANSFER_OF12 0x0C 65 #define SYNCHTRANSFER_8DBA 0x00 66 #define SYNCHTRANSFER_2DBA 0x20 67 #define SYNCHTRANSFER_3DBA 0x30 68 #define SYNCHTRANSFER_4DBA 0x40 69 #define SYNCHTRANSFER_5DBA 0x50 70 #define SYNCHTRANSFER_6DBA 0x60 71 #define SYNCHTRANSFER_7DBA 0x70 72 73 #define TRANSCNTH 18 74 #define TRANSCNTM 19 75 #define TRANSCNTL 20 76 #define DESTID 21 77 #define DESTID_SCC (1<<7) 78 #define DESTID_DPD (1<<6) 79 80 #define SOURCEID 22 81 #define SOURCEID_ER (1<<7) 82 #define SOURCEID_ES (1<<6) 83 #define SOURCEID_DSP (1<<5) 84 #define SOURCEID_SIV (1<<4) 85 86 #define SSR 23 87 #define CMND 24 88 #define CMND_RESET 0x00 89 #define CMND_ABORT 0x01 90 #define CMND_ASSERTATN 0x02 91 #define CMND_NEGATEACK 0x03 92 #define CMND_DISCONNECT 0x04 93 #define CMND_RESELECT 0x05 94 #define CMND_SELWITHATN 0x06 95 #define CMND_SELECT 0x07 96 #define CMND_SELECTATNTRANSFER 0x08 97 #define CMND_SELECTTRANSFER 0x09 98 #define CMND_RESELECTRXDATA 0x0A 99 #define CMND_RESELECTTXDATA 0x0B 100 #define CMND_WAITFORSELRECV 0x0C 101 #define CMND_SENDSTATCMD 0x0D 102 #define CMND_SENDDISCONNECT 0x0E 103 #define CMND_SETIDI 0x0F 104 #define CMND_RECEIVECMD 0x10 105 #define CMND_RECEIVEDTA 0x11 106 #define CMND_RECEIVEMSG 0x12 107 #define CMND_RECEIVEUSP 0x13 108 #define CMND_SENDCMD 0x14 109 #define CMND_SENDDATA 0x15 110 #define CMND_SENDMSG 0x16 111 #define CMND_SENDUSP 0x17 112 #define CMND_TRANSLATEADDR 0x18 113 #define CMND_XFERINFO 0x20 114 #define CMND_SBT (1<<7) 115 116 #define DATA 25 117 #define ASR 26 118 #define ASR_INT (1<<7) 119 #define ASR_LCI (1<<6) 120 #define ASR_BSY (1<<5) 121 #define ASR_CIP (1<<4) 122 #define ASR_PE (1<<1) 123 #define ASR_DBR (1<<0) 124 125 /* DMAC registers */ 126 #define INIT 0x00 127 #define INIT_8BIT (1) 128 129 #define CHANNEL 0x80 130 #define CHANNEL_0 0x00 131 #define CHANNEL_1 0x01 132 #define CHANNEL_2 0x02 133 #define CHANNEL_3 0x03 134 135 #define TXCNTLO 0x01 136 #define TXCNTHI 0x81 137 #define TXADRLO 0x02 138 #define TXADRMD 0x82 139 #define TXADRHI 0x03 140 141 #define DEVCON0 0x04 142 #define DEVCON0_AKL (1<<7) 143 #define DEVCON0_RQL (1<<6) 144 #define DEVCON0_EXW (1<<5) 145 #define DEVCON0_ROT (1<<4) 146 #define DEVCON0_CMP (1<<3) 147 #define DEVCON0_DDMA (1<<2) 148 #define DEVCON0_AHLD (1<<1) 149 #define DEVCON0_MTM (1<<0) 150 151 #define DEVCON1 0x84 152 #define DEVCON1_WEV (1<<1) 153 #define DEVCON1_BHLD (1<<0) 154 155 #define MODECON 0x05 156 #define MODECON_WOED 0x01 157 #define MODECON_VERIFY 0x00 158 #define MODECON_READ 0x04 159 #define MODECON_WRITE 0x08 160 #define MODECON_AUTOINIT 0x10 161 #define MODECON_ADDRDIR 0x20 162 #define MODECON_DEMAND 0x00 163 #define MODECON_SINGLE 0x40 164 #define MODECON_BLOCK 0x80 165 #define MODECON_CASCADE 0xC0 166 167 #define STATUS 0x85 168 #define STATUS_TC0 (1<<0) 169 #define STATUS_RQ0 (1<<4) 170 171 #define TEMPLO 0x06 172 #define TEMPHI 0x86 173 #define REQREG 0x07 174 #define MASKREG 0x87 175 #define MASKREG_M0 0x01 176 #define MASKREG_M1 0x02 177 #define MASKREG_M2 0x04 178 #define MASKREG_M3 0x08 179 180 /* miscellaneous internal variables */ 181 182 #define POD_SPACE(x) ((x) + 0xd0000) 183 #define MASK_ON (MASKREG_M3|MASKREG_M2|MASKREG_M1|MASKREG_M0) 184 #define MASK_OFF (MASKREG_M3|MASKREG_M2|MASKREG_M1) 185 186 /* 187 * SCSI driver phases 188 */ 189 typedef enum { 190 PHASE_IDLE, /* we're not planning on doing anything */ 191 PHASE_CONNECTING, /* connecting to a target */ 192 PHASE_CONNECTED, /* connected to a target */ 193 PHASE_MSGOUT, /* message out to device */ 194 PHASE_RECONNECTED, /* reconnected */ 195 PHASE_COMMANDPAUSED, /* command partly sent */ 196 PHASE_COMMAND, /* command all sent */ 197 PHASE_DATAOUT, /* data out to device */ 198 PHASE_DATAIN, /* data in from device */ 199 PHASE_STATUSIN, /* status in from device */ 200 PHASE_MSGIN, /* message in from device */ 201 PHASE_DONE, /* finished */ 202 PHASE_ABORTED, /* aborted */ 203 PHASE_DISCONNECT, /* disconnecting */ 204 } phase_t; 205 206 /* 207 * After interrupt, what to do now 208 */ 209 typedef enum { 210 INTR_IDLE, /* not expecting another IRQ */ 211 INTR_NEXT_COMMAND, /* start next command */ 212 INTR_PROCESSING, /* interrupt routine still processing */ 213 } intr_ret_t; 214 215 /* 216 * DMA direction 217 */ 218 typedef enum { 219 DMA_OUT, /* DMA from memory to chip */ 220 DMA_IN /* DMA from chip to memory */ 221 } dmadir_t; 222 223 /* 224 * Synchronous transfer state 225 */ 226 typedef enum { /* Synchronous transfer state */ 227 SYNC_ASYNCHRONOUS, /* don't negociate synchronous transfers*/ 228 SYNC_NEGOCIATE, /* start negociation */ 229 SYNC_SENT_REQUEST, /* sent SDTR message */ 230 SYNC_COMPLETED, /* received SDTR reply */ 231 } syncxfer_t; 232 233 /* 234 * Command type 235 */ 236 typedef enum { /* command type */ 237 CMD_READ, /* READ_6, READ_10, READ_12 */ 238 CMD_WRITE, /* WRITE_6, WRITE_10, WRITE_12 */ 239 CMD_MISC, /* Others */ 240 } cmdtype_t; 241 242 /* 243 * Data phase direction 244 */ 245 typedef enum { /* Data direction */ 246 DATADIR_IN, /* Data in phase expected */ 247 DATADIR_OUT /* Data out phase expected */ 248 } datadir_t; 249 250 #include "queue.h" 251 #include "msgqueue.h" 252 253 #define STATUS_BUFFER_SIZE 32 254 /* 255 * This is used to dump the previous states of the SBIC 256 */ 257 struct status_entry { 258 unsigned long when; 259 unsigned char ssr; 260 unsigned char ph; 261 unsigned char irq; 262 unsigned char unused; 263 }; 264 265 #define ADD_STATUS(_q,_ssr,_ph,_irq) \ 266 ({ \ 267 host->status[(_q)][host->status_ptr[(_q)]].when = jiffies; \ 268 host->status[(_q)][host->status_ptr[(_q)]].ssr = (_ssr); \ 269 host->status[(_q)][host->status_ptr[(_q)]].ph = (_ph); \ 270 host->status[(_q)][host->status_ptr[(_q)]].irq = (_irq); \ 271 host->status_ptr[(_q)] = (host->status_ptr[(_q)] + 1) & (STATUS_BUFFER_SIZE - 1); \ 272 }) 273 274 /* 275 * AcornSCSI host specific data 276 */ 277 typedef struct acornscsi_hostdata { 278 /* miscellaneous */ 279 struct Scsi_Host *host; /* host */ 280 Scsi_Cmnd *SCpnt; /* currently processing command */ 281 Scsi_Cmnd *origSCpnt; /* original connecting command */ 282 283 /* driver information */ 284 struct { 285 unsigned int io_port; /* base address of WD33C93 */ 286 unsigned int irq; /* interrupt */ 287 phase_t phase; /* current phase */ 288 289 struct { 290 unsigned char target; /* reconnected target */ 291 unsigned char lun; /* reconnected lun */ 292 unsigned char tag; /* reconnected tag */ 293 } reconnected; 294 295 Scsi_Pointer SCp; /* current commands data pointer */ 296 297 MsgQueue_t msgs; 298 299 unsigned short last_message; /* last message to be sent */ 300 unsigned char disconnectable:1; /* this command can be disconnected */ 301 unsigned char interrupt:1; /* interrupt active */ 302 } scsi; 303 304 /* statistics information */ 305 struct { 306 unsigned int queues; 307 unsigned int removes; 308 unsigned int fins; 309 unsigned int reads; 310 unsigned int writes; 311 unsigned int miscs; 312 unsigned int disconnects; 313 unsigned int aborts; 314 unsigned int resets; 315 } stats; 316 317 /* queue handling */ 318 struct { 319 Queue_t issue; /* issue queue */ 320 Queue_t disconnected; /* disconnected command queue */ 321 } queues; 322 323 /* per-device info */ 324 struct { 325 unsigned char sync_xfer; /* synchronous transfer (SBIC value) */ 326 syncxfer_t sync_state; /* sync xfer negociation state */ 327 unsigned char disconnect_ok:1; /* device can disconnect */ 328 } device[8]; 329 unsigned char busyluns[8]; /* array of bits indicating LUNs busy */ 330 331 /* DMA info */ 332 struct { 333 unsigned int io_port; /* base address of DMA controller */ 334 unsigned int io_intr_clear; /* address of DMA interrupt clear */ 335 unsigned int free_addr; /* next free address */ 336 unsigned int start_addr; /* start address of current transfer */ 337 dmadir_t direction; /* dma direction */ 338 unsigned int transferred; /* number of bytes transferred */ 339 unsigned int xfer_start; /* scheduled DMA transfer start */ 340 unsigned int xfer_length; /* scheduled DMA transfer length */ 341 char *xfer_ptr; /* pointer to area */ 342 unsigned char xfer_required:1; /* set if we need to transfer something */ 343 unsigned char xfer_setup:1; /* set if DMA is setup */ 344 unsigned char xfer_done:1; /* set if DMA reached end of BH list */ 345 } dma; 346 347 /* card info */ 348 struct { 349 unsigned int io_intr; /* base address of interrupt id reg */ 350 unsigned int io_page; /* base address of page reg */ 351 unsigned int io_ram; /* base address of RAM access */ 352 unsigned char page_reg; /* current setting of page reg */ 353 } card; 354 355 unsigned char status_ptr[9]; 356 struct status_entry status[9][STATUS_BUFFER_SIZE]; 357 } AS_Host; 358 359 #endif /* ACORNSCSI_H */ 360